diff --git a/UyTube_mobile/build.xml b/UyTube_mobile/build.xml
new file mode 100644
index 0000000000000000000000000000000000000000..435a7fa659a1f14be059b3cd8a18004e7ff17981
--- /dev/null
+++ b/UyTube_mobile/build.xml
@@ -0,0 +1,71 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- You may freely edit this file. See commented blocks below for -->
+<!-- some examples of how to customize the build. -->
+<!-- (If you delete it and reopen the project it will be recreated.) -->
+<!-- By default, only the Clean and Build commands use this build script. -->
+<!-- Commands such as Run, Debug, and Test only use this build script if -->
+<!-- the Compile on Save feature is turned off for the project. -->
+<!-- You can turn off the Compile on Save (or Deploy on Save) setting -->
+<!-- in the project's Project Properties dialog box.-->
+<project name="UyTube_mobile" default="default" basedir=".">
+    <description>Builds, tests, and runs the project UyTube_mobile.</description>
+    <import file="nbproject/build-impl.xml"/>
+    <!--
+
+    There exist several targets which are by default empty and which can be 
+    used for execution of your tasks. These targets are usually executed 
+    before and after some main targets. They are: 
+
+      -pre-init:                 called before initialization of project properties 
+      -post-init:                called after initialization of project properties 
+      -pre-compile:              called before javac compilation 
+      -post-compile:             called after javac compilation 
+      -pre-compile-single:       called before javac compilation of single file
+      -post-compile-single:      called after javac compilation of single file
+      -pre-compile-test:         called before javac compilation of JUnit tests
+      -post-compile-test:        called after javac compilation of JUnit tests
+      -pre-compile-test-single:  called before javac compilation of single JUnit test
+      -post-compile-test-single: called after javac compilation of single JUunit test
+      -pre-dist:                 called before archive building 
+      -post-dist:                called after archive building 
+      -post-clean:               called after cleaning build products 
+      -pre-run-deploy:           called before deploying
+      -post-run-deploy:          called after deploying
+
+    Example of pluging an obfuscator after the compilation could look like 
+
+        <target name="-post-compile">
+            <obfuscate>
+                <fileset dir="${build.classes.dir}"/>
+            </obfuscate>
+        </target>
+
+    For list of available properties check the imported 
+    nbproject/build-impl.xml file. 
+
+
+    Other way how to customize the build is by overriding existing main targets.
+    The target of interest are: 
+
+      init-macrodef-javac:    defines macro for javac compilation
+      init-macrodef-junit:   defines macro for junit execution
+      init-macrodef-debug:    defines macro for class debugging
+      do-dist:                archive building
+      run:                    execution of project 
+      javadoc-build:          javadoc generation 
+
+    Example of overriding the target for project execution could look like 
+
+        <target name="run" depends="<PROJNAME>-impl.jar">
+            <exec dir="bin" executable="launcher.exe">
+                <arg file="${dist.jar}"/>
+            </exec>
+        </target>
+
+    Notice that overridden target depends on jar target and not only on 
+    compile target as regular run target does. Again, for list of available 
+    properties which you can use check the target you are overriding in 
+    nbproject/build-impl.xml file. 
+
+    -->
+</project>
diff --git a/UyTube_mobile/libreria/UyTube_logica.jar b/UyTube_mobile/libreria/UyTube_logica.jar
new file mode 100644
index 0000000000000000000000000000000000000000..9703fa41502ccdffb5a3fc6e8fbe1eae2115f336
Binary files /dev/null and b/UyTube_mobile/libreria/UyTube_logica.jar differ
diff --git a/UyTube_mobile/nbproject/ant-deploy.xml b/UyTube_mobile/nbproject/ant-deploy.xml
new file mode 100644
index 0000000000000000000000000000000000000000..55566c8e821f883c40e39766dbf126d89da9ca02
--- /dev/null
+++ b/UyTube_mobile/nbproject/ant-deploy.xml
@@ -0,0 +1,76 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
+
+Copyright (c) 2006, 2016 Oracle and/or its affiliates. All rights reserved.
+
+Oracle and Java are registered trademarks of Oracle and/or its affiliates.
+Other names may be trademarks of their respective owners.
+
+The contents of this file are subject to the terms of either the GNU
+General Public License Version 2 only ("GPL") or the Common
+Development and Distribution License("CDDL") (collectively, the
+"License"). You may not use this file except in compliance with the
+License. You can obtain a copy of the License at
+http://www.netbeans.org/cddl-gplv2.html
+or nbbuild/licenses/CDDL-GPL-2-CP. See the License for the
+specific language governing permissions and limitations under the
+License.  When distributing the software, include this License Header
+Notice in each file and include the License file at
+nbbuild/licenses/CDDL-GPL-2-CP.  Oracle designates this
+particular file as subject to the "Classpath" exception as provided
+by Oracle in the GPL Version 2 section of the License file that
+accompanied this code. If applicable, add the following below the
+License Header, with the fields enclosed by brackets [] replaced by
+your own identifying information:
+"Portions Copyrighted [year] [name of copyright owner]"
+
+If you wish your version of this file to be governed by only the CDDL
+or only the GPL Version 2, indicate your decision by adding
+"[Contributor] elects to include this software in this distribution
+under the [CDDL or GPL Version 2] license." If you do not indicate a
+single choice of license, a recipient has the option to distribute
+your version of this file under either the CDDL, the GPL Version 2 or
+to extend the choice of license to its licensees as provided above.
+However, if you add GPL Version 2 code and therefore, elected the GPL
+Version 2 license, then the option applies only if the new code is
+made subject to such option by the copyright holder.
+
+Contributor(s):
+-->
+<project default="-deploy-ant" basedir=".">
+    <target name="-init" if="deploy.ant.enabled">
+        <property file="${deploy.ant.properties.file}"/>
+        <tempfile property="temp.module.folder" prefix="tomcat" destdir="${java.io.tmpdir}"/>
+        <unwar src="${deploy.ant.archive}" dest="${temp.module.folder}">
+            <patternset includes="META-INF/context.xml"/>
+        </unwar>
+        <xmlproperty file="${temp.module.folder}/META-INF/context.xml"/>
+        <delete dir="${temp.module.folder}"/>
+    </target>
+    <target name="-check-credentials" if="deploy.ant.enabled" depends="-init">
+        <fail message="Tomcat password has to be passed as tomcat.password property.">
+            <condition>
+                <not>
+                    <isset property="tomcat.password"/>
+                </not>
+            </condition>
+        </fail>
+    </target>
+    <target name="-deploy-ant" if="deploy.ant.enabled" depends="-init,-check-credentials">
+        <echo message="Deploying ${deploy.ant.archive} to ${Context(path)}"/>
+        <taskdef name="deploy" classname="org.apache.catalina.ant.DeployTask"
+                 classpath="${tomcat.home}/server/lib/catalina-ant.jar"/>
+        <deploy url="${tomcat.url}/manager" username="${tomcat.username}"
+                password="${tomcat.password}" path="${Context(path)}"
+                war="${deploy.ant.archive}"/>
+        <property name="deploy.ant.client.url" value="${tomcat.url}${Context(path)}"/>
+    </target>
+    <target name="-undeploy-ant" if="deploy.ant.enabled" depends="-init,-check-credentials">
+        <echo message="Undeploying ${Context(path)}"/>
+        <taskdef name="undeploy"  classname="org.apache.catalina.ant.UndeployTask"
+                classpath="${tomcat.home}/server/lib/catalina-ant.jar"/>
+        <undeploy url="${tomcat.url}/manager" username="${tomcat.username}" 
+                  password="${tomcat.password}" path="${Context(path)}"/>
+    </target>
+</project>
diff --git a/UyTube_mobile/nbproject/build-impl.xml b/UyTube_mobile/nbproject/build-impl.xml
new file mode 100644
index 0000000000000000000000000000000000000000..dc207f90b2f96c7ed292e63b13c3a538ab244c3f
--- /dev/null
+++ b/UyTube_mobile/nbproject/build-impl.xml
@@ -0,0 +1,1441 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+        *** GENERATED FROM project.xml - DO NOT EDIT  ***
+        ***         EDIT ../build.xml INSTEAD         ***
+
+        For the purpose of easier reading the script
+        is divided into following sections:
+        - initialization
+        - compilation
+        - dist
+        - execution
+        - debugging
+        - javadoc
+        - test compilation
+        - test execution
+        - test debugging
+        - cleanup
+
+        -->
+<project xmlns:webproject1="http://www.netbeans.org/ns/web-project/1" xmlns:webproject2="http://www.netbeans.org/ns/web-project/2" xmlns:webproject3="http://www.netbeans.org/ns/web-project/3" basedir=".." default="default" name="UyTube_mobile-impl">
+    <import file="ant-deploy.xml"/>
+    <fail message="Please build using Ant 1.7.1 or higher.">
+        <condition>
+            <not>
+                <antversion atleast="1.7.1"/>
+            </not>
+        </condition>
+    </fail>
+    <target depends="dist,javadoc" description="Build whole project." name="default"/>
+    <!--
+                INITIALIZATION SECTION
+            -->
+    <target name="-pre-init">
+        <!-- Empty placeholder for easier customization. -->
+        <!-- You can override this target in the ../build.xml file. -->
+    </target>
+    <target depends="-pre-init" name="-init-private">
+        <property file="nbproject/private/private.properties"/>
+    </target>
+    <target depends="-pre-init,-init-private" name="-init-user">
+        <property file="${user.properties.file}"/>
+        <!-- The two properties below are usually overridden -->
+        <!-- by the active platform. Just a fallback. -->
+        <property name="default.javac.source" value="1.4"/>
+        <property name="default.javac.target" value="1.4"/>
+    </target>
+    <target depends="-pre-init,-init-private,-init-user" name="-init-project">
+        <property file="nbproject/project.properties"/>
+    </target>
+    <target depends="-pre-init,-init-private,-init-user,-init-project,-init-macrodef-property" if="dist.ear.dir" name="-do-ear-init"/>
+    <target depends="-pre-init,-init-private,-init-user,-init-project,-init-macrodef-property" name="-do-init">
+        <condition property="have.tests">
+            <or>
+                <available file="${test.src.dir}"/>
+            </or>
+        </condition>
+        <condition property="have.sources">
+            <or>
+                <available file="${src.dir}"/>
+            </or>
+        </condition>
+        <condition property="netbeans.home+have.tests">
+            <and>
+                <isset property="netbeans.home"/>
+                <isset property="have.tests"/>
+            </and>
+        </condition>
+        <condition property="no.javadoc.preview">
+            <isfalse value="${javadoc.preview}"/>
+        </condition>
+        <property name="javac.compilerargs" value=""/>
+        <condition property="no.deps">
+            <and>
+                <istrue value="${no.dependencies}"/>
+            </and>
+        </condition>
+        <condition property="no.dist.ear.dir">
+            <not>
+                <isset property="dist.ear.dir"/>
+            </not>
+        </condition>
+        <property name="build.web.excludes" value="${build.classes.excludes}"/>
+        <condition property="do.compile.jsps">
+            <istrue value="${compile.jsps}"/>
+        </condition>
+        <condition property="do.debug.server">
+            <or>
+                <not>
+                    <isset property="debug.server"/>
+                </not>
+                <istrue value="${debug.server}"/>
+                <and>
+                    <not>
+                        <istrue value="${debug.server}"/>
+                    </not>
+                    <not>
+                        <istrue value="${debug.client}"/>
+                    </not>
+                </and>
+            </or>
+        </condition>
+        <condition property="do.debug.client">
+            <istrue value="${debug.client}"/>
+        </condition>
+        <condition property="do.display.browser">
+            <istrue value="${display.browser}"/>
+        </condition>
+        <condition property="do.display.browser.debug.old">
+            <and>
+                <isset property="do.display.browser"/>
+                <not>
+                    <isset property="do.debug.client"/>
+                </not>
+                <not>
+                    <isset property="browser.context"/>
+                </not>
+            </and>
+        </condition>
+        <condition property="do.display.browser.debug">
+            <and>
+                <isset property="do.display.browser"/>
+                <not>
+                    <isset property="do.debug.client"/>
+                </not>
+                <isset property="browser.context"/>
+            </and>
+        </condition>
+        <available file="${conf.dir}/MANIFEST.MF" property="has.custom.manifest"/>
+        <available file="${persistence.xml.dir}/persistence.xml" property="has.persistence.xml"/>
+        <condition property="do.war.package.with.custom.manifest">
+            <isset property="has.custom.manifest"/>
+        </condition>
+        <condition property="do.war.package.without.custom.manifest">
+            <not>
+                <isset property="has.custom.manifest"/>
+            </not>
+        </condition>
+        <condition property="do.tmp.war.package.with.custom.manifest">
+            <and>
+                <isset property="has.custom.manifest"/>
+                <or>
+                    <isfalse value="${directory.deployment.supported}"/>
+                    <isset property="dist.ear.dir"/>
+                </or>
+            </and>
+        </condition>
+        <condition property="do.tmp.war.package.without.custom.manifest">
+            <and>
+                <not>
+                    <isset property="has.custom.manifest"/>
+                </not>
+                <or>
+                    <isfalse value="${directory.deployment.supported}"/>
+                    <isset property="dist.ear.dir"/>
+                </or>
+            </and>
+        </condition>
+        <condition property="do.tmp.war.package">
+            <or>
+                <isfalse value="${directory.deployment.supported}"/>
+                <isset property="dist.ear.dir"/>
+            </or>
+        </condition>
+        <property name="build.meta.inf.dir" value="${build.web.dir}/META-INF"/>
+        <condition else="" property="application.args.param" value="${application.args}">
+            <and>
+                <isset property="application.args"/>
+                <not>
+                    <equals arg1="${application.args}" arg2="" trim="true"/>
+                </not>
+            </and>
+        </condition>
+        <property name="source.encoding" value="${file.encoding}"/>
+        <condition property="javadoc.encoding.used" value="${javadoc.encoding}">
+            <and>
+                <isset property="javadoc.encoding"/>
+                <not>
+                    <equals arg1="${javadoc.encoding}" arg2=""/>
+                </not>
+            </and>
+        </condition>
+        <property name="javadoc.encoding.used" value="${source.encoding}"/>
+        <property name="includes" value="**"/>
+        <property name="excludes" value=""/>
+        <property name="runmain.jvmargs" value=""/>
+        <path id="endorsed.classpath.path" path="${endorsed.classpath}"/>
+        <condition else="" property="endorsed.classpath.cmd.line.arg" value="-Xbootclasspath/p:'${toString:endorsed.classpath.path}'">
+            <and>
+                <isset property="endorsed.classpath"/>
+                <length length="0" string="${endorsed.classpath}" when="greater"/>
+            </and>
+        </condition>
+        <condition else="false" property="jdkBug6558476">
+            <and>
+                <matches pattern="1\.[56]" string="${java.specification.version}"/>
+                <not>
+                    <os family="unix"/>
+                </not>
+            </and>
+        </condition>
+        <property name="javac.fork" value="${jdkBug6558476}"/>
+        <condition property="junit.available">
+            <or>
+                <available classname="org.junit.Test" classpath="${run.test.classpath}"/>
+                <available classname="junit.framework.Test" classpath="${run.test.classpath}"/>
+            </or>
+        </condition>
+        <condition property="testng.available">
+            <available classname="org.testng.annotations.Test" classpath="${run.test.classpath}"/>
+        </condition>
+        <condition property="junit+testng.available">
+            <and>
+                <istrue value="${junit.available}"/>
+                <istrue value="${testng.available}"/>
+            </and>
+        </condition>
+        <condition else="testng" property="testng.mode" value="mixed">
+            <istrue value="${junit+testng.available}"/>
+        </condition>
+        <condition else="" property="testng.debug.mode" value="-mixed">
+            <istrue value="${junit+testng.available}"/>
+        </condition>
+    </target>
+    <target depends="init" name="-init-cos" unless="deploy.on.save">
+        <condition property="deploy.on.save" value="true">
+            <or>
+                <istrue value="${j2ee.deploy.on.save}"/>
+                <istrue value="${j2ee.compile.on.save}"/>
+            </or>
+        </condition>
+    </target>
+    <target name="-post-init">
+        <!-- Empty placeholder for easier customization. -->
+        <!-- You can override this target in the ../build.xml file. -->
+    </target>
+    <target depends="-pre-init,-init-private,-init-user,-init-project,-do-init" name="-init-check">
+        <fail unless="src.dir">Must set src.dir</fail>
+        <fail unless="test.src.dir">Must set test.src.dir</fail>
+        <fail unless="build.dir">Must set build.dir</fail>
+        <fail unless="build.web.dir">Must set build.web.dir</fail>
+        <fail unless="build.generated.dir">Must set build.generated.dir</fail>
+        <fail unless="dist.dir">Must set dist.dir</fail>
+        <fail unless="build.classes.dir">Must set build.classes.dir</fail>
+        <fail unless="dist.javadoc.dir">Must set dist.javadoc.dir</fail>
+        <fail unless="build.test.classes.dir">Must set build.test.classes.dir</fail>
+        <fail unless="build.test.results.dir">Must set build.test.results.dir</fail>
+        <fail unless="build.classes.excludes">Must set build.classes.excludes</fail>
+        <fail unless="dist.war">Must set dist.war</fail>
+        <condition property="missing.j2ee.server.home">
+            <and>
+                <matches pattern="j2ee.server.home" string="${j2ee.platform.classpath}"/>
+                <not>
+                    <isset property="j2ee.server.home"/>
+                </not>
+            </and>
+        </condition>
+        <fail if="missing.j2ee.server.home">
+The Java EE server classpath is not correctly set up - server home directory is missing.
+Either open the project in the IDE and assign the server or setup the server classpath manually.
+For example like this:
+   ant -Dj2ee.server.home=&lt;app_server_installation_directory&gt;
+                </fail>
+        <fail unless="j2ee.platform.classpath">
+The Java EE server classpath is not correctly set up. Your active server type is ${j2ee.server.type}.
+Either open the project in the IDE and assign the server or setup the server classpath manually.
+For example like this:
+   ant -Duser.properties.file=&lt;path_to_property_file&gt; (where you put the property "j2ee.platform.classpath" in a .properties file)
+or ant -Dj2ee.platform.classpath=&lt;server_classpath&gt; (where no properties file is used)
+                </fail>
+    </target>
+    <target name="-init-macrodef-property">
+        <macrodef name="property" uri="http://www.netbeans.org/ns/web-project/1">
+            <attribute name="name"/>
+            <attribute name="value"/>
+            <sequential>
+                <property name="@{name}" value="${@{value}}"/>
+            </sequential>
+        </macrodef>
+    </target>
+    <target depends="-init-ap-cmdline-properties" if="ap.supported.internal" name="-init-macrodef-javac-with-processors">
+        <macrodef name="javac" uri="http://www.netbeans.org/ns/web-project/2">
+            <attribute default="${src.dir}" name="srcdir"/>
+            <attribute default="${build.classes.dir}" name="destdir"/>
+            <attribute default="${javac.classpath}:${j2ee.platform.classpath}" name="classpath"/>
+            <attribute default="${javac.processorpath}" name="processorpath"/>
+            <attribute default="${build.generated.sources.dir}/ap-source-output" name="apgeneratedsrcdir"/>
+            <attribute default="${includes}" name="includes"/>
+            <attribute default="${excludes}" name="excludes"/>
+            <attribute default="${javac.debug}" name="debug"/>
+            <attribute default="${empty.dir}" name="gensrcdir"/>
+            <element name="customize" optional="true"/>
+            <sequential>
+                <property location="${build.dir}/empty" name="empty.dir"/>
+                <mkdir dir="${empty.dir}"/>
+                <mkdir dir="@{apgeneratedsrcdir}"/>
+                <javac debug="@{debug}" deprecation="${javac.deprecation}" destdir="@{destdir}" encoding="${source.encoding}" excludes="@{excludes}" fork="${javac.fork}" includeantruntime="false" includes="@{includes}" source="${javac.source}" srcdir="@{srcdir}" target="${javac.target}">
+                    <src>
+                        <dirset dir="@{gensrcdir}" erroronmissingdir="false">
+                            <include name="*"/>
+                        </dirset>
+                    </src>
+                    <classpath>
+                        <path path="@{classpath}"/>
+                    </classpath>
+                    <compilerarg line="${endorsed.classpath.cmd.line.arg}"/>
+                    <compilerarg line="${javac.compilerargs}"/>
+                    <compilerarg value="-processorpath"/>
+                    <compilerarg path="@{processorpath}:${empty.dir}"/>
+                    <compilerarg line="${ap.processors.internal}"/>
+                    <compilerarg value="-s"/>
+                    <compilerarg path="@{apgeneratedsrcdir}"/>
+                    <compilerarg line="${ap.proc.none.internal}"/>
+                    <customize/>
+                </javac>
+            </sequential>
+        </macrodef>
+    </target>
+    <target depends="-init-ap-cmdline-properties" name="-init-macrodef-javac-without-processors" unless="ap.supported.internal">
+        <macrodef name="javac" uri="http://www.netbeans.org/ns/web-project/2">
+            <attribute default="${src.dir}" name="srcdir"/>
+            <attribute default="${build.classes.dir}" name="destdir"/>
+            <attribute default="${javac.classpath}:${j2ee.platform.classpath}" name="classpath"/>
+            <attribute default="${javac.processorpath}" name="processorpath"/>
+            <attribute default="${build.generated.sources.dir}/ap-source-output" name="apgeneratedsrcdir"/>
+            <attribute default="${includes}" name="includes"/>
+            <attribute default="${excludes}" name="excludes"/>
+            <attribute default="${javac.debug}" name="debug"/>
+            <attribute default="${empty.dir}" name="gensrcdir"/>
+            <element name="customize" optional="true"/>
+            <sequential>
+                <property location="${build.dir}/empty" name="empty.dir"/>
+                <mkdir dir="${empty.dir}"/>
+                <javac debug="@{debug}" deprecation="${javac.deprecation}" destdir="@{destdir}" encoding="${source.encoding}" excludes="@{excludes}" includeantruntime="false" includes="@{includes}" source="${javac.source}" srcdir="@{srcdir}" target="${javac.target}">
+                    <src>
+                        <dirset dir="@{gensrcdir}" erroronmissingdir="false">
+                            <include name="*"/>
+                        </dirset>
+                    </src>
+                    <classpath>
+                        <path path="@{classpath}"/>
+                    </classpath>
+                    <compilerarg line="${endorsed.classpath.cmd.line.arg}"/>
+                    <compilerarg line="${javac.compilerargs}"/>
+                    <customize/>
+                </javac>
+            </sequential>
+        </macrodef>
+    </target>
+    <target depends="-init-macrodef-javac-with-processors,-init-macrodef-javac-without-processors" name="-init-macrodef-javac">
+        <macrodef name="depend" uri="http://www.netbeans.org/ns/web-project/2">
+            <attribute default="${src.dir}" name="srcdir"/>
+            <attribute default="${build.classes.dir}" name="destdir"/>
+            <attribute default="${javac.classpath}:${j2ee.platform.classpath}" name="classpath"/>
+            <sequential>
+                <depend cache="${build.dir}/depcache" destdir="@{destdir}" excludes="${excludes}" includes="${includes}" srcdir="@{srcdir}">
+                    <classpath>
+                        <path path="@{classpath}"/>
+                    </classpath>
+                </depend>
+            </sequential>
+        </macrodef>
+        <macrodef name="force-recompile" uri="http://www.netbeans.org/ns/web-project/2">
+            <attribute default="${build.classes.dir}" name="destdir"/>
+            <sequential>
+                <fail unless="javac.includes">Must set javac.includes</fail>
+                <pathconvert pathsep="${line.separator}" property="javac.includes.binary">
+                    <path>
+                        <filelist dir="@{destdir}" files="${javac.includes}"/>
+                    </path>
+                    <globmapper from="*.java" to="*.class"/>
+                </pathconvert>
+                <tempfile deleteonexit="true" property="javac.includesfile.binary"/>
+                <echo file="${javac.includesfile.binary}" message="${javac.includes.binary}"/>
+                <delete>
+                    <files includesfile="${javac.includesfile.binary}"/>
+                </delete>
+                <delete file="${javac.includesfile.binary}"/>
+            </sequential>
+        </macrodef>
+    </target>
+    <target if="${junit.available}" name="-init-macrodef-junit-init">
+        <condition else="false" property="nb.junit.batch" value="true">
+            <and>
+                <istrue value="${junit.available}"/>
+                <not>
+                    <isset property="test.method"/>
+                </not>
+            </and>
+        </condition>
+        <condition else="false" property="nb.junit.single" value="true">
+            <and>
+                <istrue value="${junit.available}"/>
+                <isset property="test.method"/>
+            </and>
+        </condition>
+    </target>
+    <target name="-init-test-properties">
+        <property name="test.binaryincludes" value="&lt;nothing&gt;"/>
+        <property name="test.binarytestincludes" value=""/>
+        <property name="test.binaryexcludes" value=""/>
+    </target>
+    <target if="${nb.junit.single}" name="-init-macrodef-junit-single" unless="${nb.junit.batch}">
+        <macrodef name="junit" uri="http://www.netbeans.org/ns/web-project/2">
+            <attribute default="${includes}" name="includes"/>
+            <attribute default="${excludes}" name="excludes"/>
+            <attribute default="**" name="testincludes"/>
+            <attribute default="" name="testmethods"/>
+            <element name="customize" optional="true"/>
+            <sequential>
+                <junit dir="${basedir}" errorproperty="tests.failed" failureproperty="tests.failed" fork="true" showoutput="true" tempdir="${java.io.tmpdir}">
+                    <test methods="@{testmethods}" name="@{testincludes}" todir="${build.test.results.dir}"/>
+                    <syspropertyset>
+                        <propertyref prefix="test-sys-prop."/>
+                        <mapper from="test-sys-prop.*" to="*" type="glob"/>
+                    </syspropertyset>
+                    <formatter type="brief" usefile="false"/>
+                    <formatter type="xml"/>
+                    <jvmarg value="-ea"/>
+                    <customize/>
+                </junit>
+            </sequential>
+        </macrodef>
+    </target>
+    <target depends="-init-test-properties" if="${nb.junit.batch}" name="-init-macrodef-junit-batch" unless="${nb.junit.single}">
+        <macrodef name="junit" uri="http://www.netbeans.org/ns/web-project/2">
+            <attribute default="${includes}" name="includes"/>
+            <attribute default="${excludes}" name="excludes"/>
+            <attribute default="**" name="testincludes"/>
+            <attribute default="" name="testmethods"/>
+            <element name="customize" optional="true"/>
+            <sequential>
+                <property name="run.jvmargs.ide" value=""/>
+                <junit dir="${basedir}" errorproperty="tests.failed" failureproperty="tests.failed" fork="true" showoutput="true" tempdir="${build.dir}">
+                    <batchtest todir="${build.test.results.dir}">
+                        <fileset dir="${test.src.dir}" excludes="@{excludes},${excludes}" includes="@{includes}">
+                            <filename name="@{testincludes}"/>
+                        </fileset>
+                        <fileset dir="${build.test.classes.dir}" excludes="@{excludes},${excludes},${test.binaryexcludes}" includes="${test.binaryincludes}">
+                            <filename name="${test.binarytestincludes}"/>
+                        </fileset>
+                    </batchtest>
+                    <syspropertyset>
+                        <propertyref prefix="test-sys-prop."/>
+                        <mapper from="test-sys-prop.*" to="*" type="glob"/>
+                    </syspropertyset>
+                    <formatter type="brief" usefile="false"/>
+                    <formatter type="xml"/>
+                    <jvmarg value="-ea"/>
+                    <jvmarg line="${run.jvmargs.ide}"/>
+                    <customize/>
+                </junit>
+            </sequential>
+        </macrodef>
+    </target>
+    <target depends="-init-macrodef-junit-init,-init-macrodef-junit-single, -init-macrodef-junit-batch" if="${junit.available}" name="-init-macrodef-junit"/>
+    <target if="${testng.available}" name="-init-macrodef-testng">
+        <macrodef name="testng" uri="http://www.netbeans.org/ns/web-project/2">
+            <attribute default="${includes}" name="includes"/>
+            <attribute default="${excludes}" name="excludes"/>
+            <attribute default="**" name="testincludes"/>
+            <attribute default="" name="testmethods"/>
+            <element name="customize" optional="true"/>
+            <sequential>
+                <condition else="" property="testng.methods.arg" value="@{testincludes}.@{testmethods}">
+                    <isset property="test.method"/>
+                </condition>
+                <union id="test.set">
+                    <fileset dir="${test.src.dir}" excludes="@{excludes},**/*.xml,${excludes}" includes="@{includes}">
+                        <filename name="@{testincludes}"/>
+                    </fileset>
+                </union>
+                <taskdef classname="org.testng.TestNGAntTask" classpath="${run.test.classpath}" name="testng"/>
+                <testng classfilesetref="test.set" failureProperty="tests.failed" listeners="org.testng.reporters.VerboseReporter" methods="${testng.methods.arg}" mode="${testng.mode}" outputdir="${build.test.results.dir}" suitename="UyTube_mobile" testname="TestNG tests" workingDir="${basedir}">
+                    <xmlfileset dir="${build.test.classes.dir}" includes="@{testincludes}"/>
+                    <propertyset>
+                        <propertyref prefix="test-sys-prop."/>
+                        <mapper from="test-sys-prop.*" to="*" type="glob"/>
+                    </propertyset>
+                    <customize/>
+                </testng>
+            </sequential>
+        </macrodef>
+    </target>
+    <target name="-init-macrodef-test-impl">
+        <macrodef name="test-impl" uri="http://www.netbeans.org/ns/web-project/2">
+            <attribute default="${includes}" name="includes"/>
+            <attribute default="${excludes}" name="excludes"/>
+            <attribute default="**" name="testincludes"/>
+            <attribute default="" name="testmethods"/>
+            <element implicit="true" name="customize" optional="true"/>
+            <sequential>
+                <echo>No tests executed.</echo>
+            </sequential>
+        </macrodef>
+    </target>
+    <target depends="-init-macrodef-junit" if="${junit.available}" name="-init-macrodef-junit-impl">
+        <macrodef name="test-impl" uri="http://www.netbeans.org/ns/web-project/2">
+            <attribute default="${includes}" name="includes"/>
+            <attribute default="${excludes}" name="excludes"/>
+            <attribute default="**" name="testincludes"/>
+            <attribute default="" name="testmethods"/>
+            <element implicit="true" name="customize" optional="true"/>
+            <sequential>
+                <webproject2:junit excludes="@{excludes}" includes="@{includes}" testincludes="@{testincludes}" testmethods="@{testmethods}">
+                    <customize/>
+                </webproject2:junit>
+            </sequential>
+        </macrodef>
+    </target>
+    <target depends="-init-macrodef-testng" if="${testng.available}" name="-init-macrodef-testng-impl">
+        <macrodef name="test-impl" uri="http://www.netbeans.org/ns/web-project/2">
+            <attribute default="${includes}" name="includes"/>
+            <attribute default="${excludes}" name="excludes"/>
+            <attribute default="**" name="testincludes"/>
+            <attribute default="" name="testmethods"/>
+            <element implicit="true" name="customize" optional="true"/>
+            <sequential>
+                <webproject2:testng excludes="@{excludes}" includes="@{includes}" testincludes="@{testincludes}" testmethods="@{testmethods}">
+                    <customize/>
+                </webproject2:testng>
+            </sequential>
+        </macrodef>
+    </target>
+    <target depends="-init-macrodef-test-impl,-init-macrodef-junit-impl,-init-macrodef-testng-impl" name="-init-macrodef-test">
+        <macrodef name="test" uri="http://www.netbeans.org/ns/web-project/2">
+            <attribute default="${includes}" name="includes"/>
+            <attribute default="${excludes}" name="excludes"/>
+            <attribute default="**" name="testincludes"/>
+            <attribute default="" name="testmethods"/>
+            <sequential>
+                <webproject2:test-impl excludes="@{excludes}" includes="@{includes}" testincludes="@{testincludes}" testmethods="@{testmethods}">
+                    <customize>
+                        <classpath>
+                            <path path="${run.test.classpath}:${j2ee.platform.classpath}:${j2ee.platform.embeddableejb.classpath}"/>
+                        </classpath>
+                        <jvmarg line="${endorsed.classpath.cmd.line.arg}"/>
+                        <jvmarg line="${runmain.jvmargs}"/>
+                    </customize>
+                </webproject2:test-impl>
+            </sequential>
+        </macrodef>
+    </target>
+    <target if="${junit.available}" name="-init-macrodef-junit-debug" unless="${nb.junit.batch}">
+        <macrodef name="junit-debug" uri="http://www.netbeans.org/ns/web-project/2">
+            <attribute default="${includes}" name="includes"/>
+            <attribute default="${excludes}" name="excludes"/>
+            <attribute default="**" name="testincludes"/>
+            <attribute default="" name="testmethods"/>
+            <element name="customize" optional="true"/>
+            <sequential>
+                <junit dir="${basedir}" errorproperty="tests.failed" failureproperty="tests.failed" fork="true" showoutput="true" tempdir="${java.io.tmpdir}">
+                    <test methods="@{testmethods}" name="@{testincludes}" todir="${build.test.results.dir}"/>
+                    <syspropertyset>
+                        <propertyref prefix="test-sys-prop."/>
+                        <mapper from="test-sys-prop.*" to="*" type="glob"/>
+                    </syspropertyset>
+                    <formatter type="brief" usefile="false"/>
+                    <formatter type="xml"/>
+                    <jvmarg value="-ea"/>
+                    <jvmarg line="${debug-args-line}"/>
+                    <jvmarg value="-Xrunjdwp:transport=${debug-transport},address=${jpda.address}"/>
+                    <customize/>
+                </junit>
+            </sequential>
+        </macrodef>
+    </target>
+    <target depends="-init-test-properties" if="${nb.junit.batch}" name="-init-macrodef-junit-debug-batch">
+        <macrodef name="junit-debug" uri="http://www.netbeans.org/ns/web-project/2">
+            <attribute default="${includes}" name="includes"/>
+            <attribute default="${excludes}" name="excludes"/>
+            <attribute default="**" name="testincludes"/>
+            <attribute default="" name="testmethods"/>
+            <element name="customize" optional="true"/>
+            <sequential>
+                <property name="run.jvmargs.ide" value=""/>
+                <junit dir="${basedir}" errorproperty="tests.failed" failureproperty="tests.failed" fork="true" showoutput="true" tempdir="${build.dir}">
+                    <batchtest todir="${build.test.results.dir}">
+                        <fileset dir="${test.src.dir}" excludes="@{excludes},${excludes}" includes="@{includes}">
+                            <filename name="@{testincludes}"/>
+                        </fileset>
+                        <fileset dir="${build.test.classes.dir}" excludes="@{excludes},${excludes},${test.binaryexcludes}" includes="${test.binaryincludes}">
+                            <filename name="${test.binarytestincludes}"/>
+                        </fileset>
+                    </batchtest>
+                    <syspropertyset>
+                        <propertyref prefix="test-sys-prop."/>
+                        <mapper from="test-sys-prop.*" to="*" type="glob"/>
+                    </syspropertyset>
+                    <formatter type="brief" usefile="false"/>
+                    <formatter type="xml"/>
+                    <jvmarg value="-ea"/>
+                    <jvmarg line="${run.jvmargs.ide}"/>
+                    <jvmarg line="${debug-args-line}"/>
+                    <jvmarg value="-Xrunjdwp:transport=${debug-transport},address=${jpda.address}"/>
+                    <customize/>
+                </junit>
+            </sequential>
+        </macrodef>
+    </target>
+    <target depends="-init-macrodef-junit-debug,-init-macrodef-junit-debug-batch" if="${junit.available}" name="-init-macrodef-junit-debug-impl">
+        <macrodef name="test-debug-impl" uri="http://www.netbeans.org/ns/web-project/2">
+            <attribute default="${includes}" name="includes"/>
+            <attribute default="${excludes}" name="excludes"/>
+            <attribute default="**" name="testincludes"/>
+            <attribute default="" name="testmethods"/>
+            <element implicit="true" name="customize" optional="true"/>
+            <sequential>
+                <webproject2:junit-debug excludes="@{excludes}" includes="@{includes}" testincludes="@{testincludes}" testmethods="@{testmethods}">
+                    <customize/>
+                </webproject2:junit-debug>
+            </sequential>
+        </macrodef>
+    </target>
+    <target if="${testng.available}" name="-init-macrodef-testng-debug">
+        <macrodef name="testng-debug" uri="http://www.netbeans.org/ns/web-project/2">
+            <attribute default="${main.class}" name="testClass"/>
+            <attribute default="" name="testMethod"/>
+            <element name="customize2" optional="true"/>
+            <sequential>
+                <condition else="-testclass @{testClass}" property="test.class.or.method" value="-methods @{testClass}.@{testMethod}">
+                    <isset property="test.method"/>
+                </condition>
+                <condition else="-suitename UyTube_mobile -testname @{testClass} ${test.class.or.method}" property="testng.cmd.args" value="@{testClass}">
+                    <matches pattern=".*\.xml" string="@{testClass}"/>
+                </condition>
+                <delete dir="${build.test.results.dir}" quiet="true"/>
+                <mkdir dir="${build.test.results.dir}"/>
+                <webproject1:debug args="${testng.cmd.args}" classname="org.testng.TestNG" classpath="${debug.test.classpath}:${j2ee.platform.embeddableejb.classpath}">
+                    <customize>
+                        <customize2/>
+                        <jvmarg value="-ea"/>
+                        <arg line="${testng.debug.mode}"/>
+                        <arg line="-d ${build.test.results.dir}"/>
+                        <arg line="-listener org.testng.reporters.VerboseReporter"/>
+                    </customize>
+                </webproject1:debug>
+            </sequential>
+        </macrodef>
+    </target>
+    <target depends="-init-macrodef-testng-debug" if="${testng.available}" name="-init-macrodef-testng-debug-impl">
+        <macrodef name="testng-debug-impl" uri="http://www.netbeans.org/ns/web-project/2">
+            <attribute default="${main.class}" name="testClass"/>
+            <attribute default="" name="testMethod"/>
+            <element implicit="true" name="customize2" optional="true"/>
+            <sequential>
+                <webproject2:testng-debug testClass="@{testClass}" testMethod="@{testMethod}">
+                    <customize2/>
+                </webproject2:testng-debug>
+            </sequential>
+        </macrodef>
+    </target>
+    <target depends="-init-macrodef-junit-debug-impl" if="${junit.available}" name="-init-macrodef-test-debug-junit">
+        <macrodef name="test-debug" uri="http://www.netbeans.org/ns/web-project/2">
+            <attribute default="${includes}" name="includes"/>
+            <attribute default="${excludes}" name="excludes"/>
+            <attribute default="**" name="testincludes"/>
+            <attribute default="" name="testmethods"/>
+            <attribute default="${main.class}" name="testClass"/>
+            <attribute default="" name="testMethod"/>
+            <sequential>
+                <webproject2:test-debug-impl excludes="@{excludes}" includes="@{includes}" testincludes="@{testincludes}" testmethods="@{testmethods}">
+                    <customize>
+                        <classpath>
+                            <path path="${run.test.classpath}:${j2ee.platform.classpath}:${j2ee.platform.embeddableejb.classpath}"/>
+                        </classpath>
+                        <jvmarg line="${endorsed.classpath.cmd.line.arg}"/>
+                        <jvmarg line="${runmain.jvmargs}"/>
+                    </customize>
+                </webproject2:test-debug-impl>
+            </sequential>
+        </macrodef>
+    </target>
+    <target depends="-init-macrodef-testng-debug-impl" if="${testng.available}" name="-init-macrodef-test-debug-testng">
+        <macrodef name="test-debug" uri="http://www.netbeans.org/ns/web-project/2">
+            <attribute default="${includes}" name="includes"/>
+            <attribute default="${excludes}" name="excludes"/>
+            <attribute default="**" name="testincludes"/>
+            <attribute default="" name="testmethods"/>
+            <attribute default="${main.class}" name="testClass"/>
+            <attribute default="" name="testMethod"/>
+            <sequential>
+                <webproject2:testng-debug-impl testClass="@{testClass}" testMethod="@{testMethod}">
+                    <customize2>
+                        <syspropertyset>
+                            <propertyref prefix="test-sys-prop."/>
+                            <mapper from="test-sys-prop.*" to="*" type="glob"/>
+                        </syspropertyset>
+                    </customize2>
+                </webproject2:testng-debug-impl>
+            </sequential>
+        </macrodef>
+    </target>
+    <target depends="-init-macrodef-test-debug-junit,-init-macrodef-test-debug-testng" name="-init-macrodef-test-debug"/>
+    <target name="-init-macrodef-java">
+        <macrodef name="java" uri="http://www.netbeans.org/ns/web-project/1">
+            <attribute default="${main.class}" name="classname"/>
+            <attribute default="${debug.classpath}" name="classpath"/>
+            <element name="customize" optional="true"/>
+            <sequential>
+                <java classname="@{classname}" fork="true">
+                    <jvmarg line="${endorsed.classpath.cmd.line.arg}"/>
+                    <jvmarg line="${runmain.jvmargs}"/>
+                    <classpath>
+                        <path path="@{classpath}:${j2ee.platform.classpath}"/>
+                    </classpath>
+                    <syspropertyset>
+                        <propertyref prefix="run-sys-prop."/>
+                        <mapper from="run-sys-prop.*" to="*" type="glob"/>
+                    </syspropertyset>
+                    <customize/>
+                </java>
+            </sequential>
+        </macrodef>
+    </target>
+    <target name="-init-macrodef-nbjsdebug">
+        <macrodef name="nbjsdebugstart" uri="http://www.netbeans.org/ns/web-project/1">
+            <attribute default="${client.url}" name="webUrl"/>
+            <sequential>
+                <nbjsdebugstart urlPart="${client.urlPart}" webUrl="@{webUrl}"/>
+            </sequential>
+        </macrodef>
+    </target>
+    <target depends="-init-debug-args" name="-init-macrodef-nbjpda">
+        <macrodef name="nbjpdastart" uri="http://www.netbeans.org/ns/web-project/1">
+            <attribute default="${main.class}" name="name"/>
+            <attribute default="${debug.classpath}:${j2ee.platform.classpath}" name="classpath"/>
+            <sequential>
+                <nbjpdastart addressproperty="jpda.address" name="@{name}" transport="${debug-transport}">
+                    <classpath>
+                        <path path="@{classpath}"/>
+                    </classpath>
+                </nbjpdastart>
+            </sequential>
+        </macrodef>
+        <macrodef name="nbjpdareload" uri="http://www.netbeans.org/ns/web-project/1">
+            <attribute default="${build.classes.dir}" name="dir"/>
+            <sequential>
+                <nbjpdareload>
+                    <fileset dir="@{dir}" includes="${fix.classes}">
+                        <include name="${fix.includes}*.class"/>
+                    </fileset>
+                </nbjpdareload>
+            </sequential>
+        </macrodef>
+        <macrodef name="nbjpdaappreloaded" uri="http://www.netbeans.org/ns/web-project/1">
+            <sequential>
+                <nbjpdaappreloaded/>
+            </sequential>
+        </macrodef>
+    </target>
+    <target name="-init-debug-args">
+        <property name="version-output" value="java version &quot;${ant.java.version}"/>
+        <condition property="have-jdk-older-than-1.4">
+            <or>
+                <contains string="${version-output}" substring="java version &quot;1.0"/>
+                <contains string="${version-output}" substring="java version &quot;1.1"/>
+                <contains string="${version-output}" substring="java version &quot;1.2"/>
+                <contains string="${version-output}" substring="java version &quot;1.3"/>
+            </or>
+        </condition>
+        <condition else="-Xdebug" property="debug-args-line" value="-Xdebug -Xnoagent -Djava.compiler=none">
+            <istrue value="${have-jdk-older-than-1.4}"/>
+        </condition>
+        <condition else="dt_socket" property="debug-transport-by-os" value="dt_shmem">
+            <os family="windows"/>
+        </condition>
+        <condition else="${debug-transport-by-os}" property="debug-transport" value="${debug.transport}">
+            <isset property="debug.transport"/>
+        </condition>
+    </target>
+    <target depends="-init-debug-args" name="-init-macrodef-debug">
+        <macrodef name="debug" uri="http://www.netbeans.org/ns/web-project/1">
+            <attribute default="${main.class}" name="classname"/>
+            <attribute default="${debug.classpath}:${j2ee.platform.classpath}" name="classpath"/>
+            <attribute default="${application.args.param}" name="args"/>
+            <element name="customize" optional="true"/>
+            <sequential>
+                <java classname="@{classname}" fork="true">
+                    <jvmarg line="${endorsed.classpath.cmd.line.arg}"/>
+                    <jvmarg line="${debug-args-line}"/>
+                    <jvmarg value="-Xrunjdwp:transport=${debug-transport},address=${jpda.address}"/>
+                    <jvmarg line="${runmain.jvmargs}"/>
+                    <classpath>
+                        <path path="@{classpath}"/>
+                    </classpath>
+                    <syspropertyset>
+                        <propertyref prefix="run-sys-prop."/>
+                        <mapper from="run-sys-prop.*" to="*" type="glob"/>
+                    </syspropertyset>
+                    <arg line="@{args}"/>
+                    <customize/>
+                </java>
+            </sequential>
+        </macrodef>
+    </target>
+    <target name="-init-taskdefs">
+        <fail unless="libs.CopyLibs.classpath">
+The libs.CopyLibs.classpath property is not set up.
+This property must point to 
+org-netbeans-modules-java-j2seproject-copylibstask.jar file which is part
+of NetBeans IDE installation and is usually located at 
+&lt;netbeans_installation&gt;/java&lt;version&gt;/ant/extra folder.
+Either open the project in the IDE and make sure CopyLibs library
+exists or setup the property manually. For example like this:
+ ant -Dlibs.CopyLibs.classpath=a/path/to/org-netbeans-modules-java-j2seproject-copylibstask.jar
+                </fail>
+        <taskdef classpath="${libs.CopyLibs.classpath}" resource="org/netbeans/modules/java/j2seproject/copylibstask/antlib.xml"/>
+    </target>
+    <target name="-init-ap-cmdline-properties">
+        <property name="annotation.processing.enabled" value="true"/>
+        <property name="annotation.processing.processors.list" value=""/>
+        <property name="annotation.processing.run.all.processors" value="true"/>
+        <property name="javac.processorpath" value="${javac.classpath}"/>
+        <property name="javac.test.processorpath" value="${javac.test.classpath}"/>
+        <condition property="ap.supported.internal" value="true">
+            <not>
+                <matches pattern="1\.[0-5](\..*)?" string="${javac.source}"/>
+            </not>
+        </condition>
+    </target>
+    <target depends="-init-ap-cmdline-properties" if="ap.supported.internal" name="-init-ap-cmdline-supported">
+        <condition else="" property="ap.processors.internal" value="-processor ${annotation.processing.processors.list}">
+            <isfalse value="${annotation.processing.run.all.processors}"/>
+        </condition>
+        <condition else="" property="ap.proc.none.internal" value="-proc:none">
+            <isfalse value="${annotation.processing.enabled}"/>
+        </condition>
+    </target>
+    <target depends="-init-ap-cmdline-properties,-init-ap-cmdline-supported" name="-init-ap-cmdline">
+        <property name="ap.cmd.line.internal" value=""/>
+    </target>
+    <!--
+                pre NB7.2 profiling section; consider it deprecated
+            -->
+    <target depends="-profile-pre-init, init, -profile-post-init, -profile-init-check" if="profiler.info.jvmargs.agent" name="profile-init"/>
+    <target if="profiler.info.jvmargs.agent" name="-profile-pre-init">
+        <!-- Empty placeholder for easier customization. -->
+        <!-- You can override this target in the ../build.xml file. -->
+    </target>
+    <target if="profiler.info.jvmargs.agent" name="-profile-post-init">
+        <!-- Empty placeholder for easier customization. -->
+        <!-- You can override this target in the ../build.xml file. -->
+    </target>
+    <target depends="-profile-pre-init, init, -profile-post-init" if="profiler.info.jvmargs.agent" name="-profile-init-check">
+        <fail unless="profiler.info.jvm">Must set JVM to use for profiling in profiler.info.jvm</fail>
+        <fail unless="profiler.info.jvmargs.agent">Must set profiler agent JVM arguments in profiler.info.jvmargs.agent</fail>
+    </target>
+    <!--
+                end of pre NB7.2 profiling section
+            -->
+    <target depends="-pre-init,-init-private,-init-user,-init-project,-do-init,-post-init,-init-check,-init-macrodef-property,-init-macrodef-javac,-init-macrodef-test,-init-macrodef-test-debug,-init-macrodef-java,-init-macrodef-nbjpda,-init-macrodef-nbjsdebug,-init-macrodef-debug,-init-taskdefs,-init-ap-cmdline" name="init"/>
+    <!--
+                COMPILATION SECTION
+            -->
+    <target depends="init" if="no.dist.ear.dir" name="deps-module-jar" unless="no.deps"/>
+    <target depends="init" if="dist.ear.dir" name="deps-ear-jar" unless="no.deps"/>
+    <target depends="init, deps-module-jar, deps-ear-jar" name="deps-jar" unless="no.deps"/>
+    <target depends="init,deps-jar" name="-pre-pre-compile">
+        <mkdir dir="${build.classes.dir}"/>
+    </target>
+    <target name="-pre-compile">
+        <!-- Empty placeholder for easier customization. -->
+        <!-- You can override this target in the ../build.xml file. -->
+    </target>
+    <target name="-copy-webdir">
+        <copy todir="${build.web.dir}">
+            <fileset dir="${web.docbase.dir}" excludes="${build.web.excludes},${excludes}" includes="${includes}"/>
+        </copy>
+        <copy todir="${build.web.dir}/WEB-INF">
+            <fileset dir="${webinf.dir}" excludes="${build.web.excludes}"/>
+        </copy>
+    </target>
+    <target depends="init, deps-jar, -pre-pre-compile, -pre-compile, -copy-manifest, -copy-persistence-xml, -copy-webdir, library-inclusion-in-archive,library-inclusion-in-manifest" if="have.sources" name="-do-compile">
+        <webproject2:javac destdir="${build.classes.dir}" gensrcdir="${build.generated.sources.dir}"/>
+        <copy todir="${build.classes.dir}">
+            <fileset dir="${src.dir}" excludes="${build.classes.excludes},${excludes}" includes="${includes}"/>
+        </copy>
+    </target>
+    <target if="has.custom.manifest" name="-copy-manifest">
+        <mkdir dir="${build.meta.inf.dir}"/>
+        <copy todir="${build.meta.inf.dir}">
+            <fileset dir="${conf.dir}" includes="MANIFEST.MF"/>
+        </copy>
+    </target>
+    <target if="has.persistence.xml" name="-copy-persistence-xml">
+        <mkdir dir="${build.web.dir}/WEB-INF/classes/META-INF"/>
+        <copy todir="${build.web.dir}/WEB-INF/classes/META-INF">
+            <fileset dir="${persistence.xml.dir}" includes="persistence.xml orm.xml"/>
+        </copy>
+    </target>
+    <target name="-post-compile">
+        <!-- Empty placeholder for easier customization. -->
+        <!-- You can override this target in the ../build.xml file. -->
+    </target>
+    <target depends="init,deps-jar,-pre-pre-compile,-pre-compile,-do-compile,-post-compile" description="Compile project." name="compile"/>
+    <target name="-pre-compile-single">
+        <!-- Empty placeholder for easier customization. -->
+        <!-- You can override this target in the ../build.xml file. -->
+    </target>
+    <target depends="init,deps-jar,-pre-pre-compile" name="-do-compile-single">
+        <fail unless="javac.includes">Must select some files in the IDE or set javac.includes</fail>
+        <webproject2:javac excludes="" gensrcdir="${build.generated.sources.dir}" includes="${javac.includes}"/>
+        <copy todir="${build.classes.dir}">
+            <fileset dir="${src.dir}" excludes="${build.classes.excludes},${excludes}" includes="${includes}"/>
+        </copy>
+    </target>
+    <target name="-post-compile-single">
+        <!-- Empty placeholder for easier customization. -->
+        <!-- You can override this target in the ../build.xml file. -->
+    </target>
+    <target depends="init,deps-jar,-pre-pre-compile,-pre-compile-single,-do-compile-single,-post-compile-single" name="compile-single"/>
+    <property name="jspc.schemas" value="/resources/schemas/"/>
+    <property name="jspc.dtds" value="/resources/dtds/"/>
+    <target depends="compile" description="Test compile JSP pages to expose compilation errors." if="do.compile.jsps" name="compile-jsps">
+        <mkdir dir="${build.generated.dir}/src"/>
+        <java classname="org.netbeans.modules.web.project.ant.JspC" failonerror="true" fork="true">
+            <arg value="-uriroot"/>
+            <arg file="${basedir}/${build.web.dir}"/>
+            <arg value="-d"/>
+            <arg file="${basedir}/${build.generated.dir}/src"/>
+            <arg value="-die1"/>
+            <arg value="-schemas ${jspc.schemas}"/>
+            <arg value="-dtds ${jspc.dtds}"/>
+            <arg value="-compilerSourceVM ${javac.source}"/>
+            <arg value="-compilerTargetVM ${javac.target}"/>
+            <arg value="-javaEncoding ${source.encoding}"/>
+            <arg value="-sysClasspath ${libs.jsp-compilation-syscp.classpath}"/>
+            <classpath path="${java.home}/../lib/tools.jar:${libs.jsp-compiler.classpath}:${libs.jsp-compilation.classpath}"/>
+        </java>
+        <mkdir dir="${build.generated.dir}/classes"/>
+        <webproject2:javac classpath="${build.classes.dir}:${libs.jsp-compilation.classpath}:${javac.classpath}:${j2ee.platform.classpath}" destdir="${build.generated.dir}/classes" srcdir="${build.generated.dir}/src"/>
+    </target>
+    <target depends="compile" if="jsp.includes" name="-do-compile-single-jsp">
+        <fail unless="javac.jsp.includes">Must select some files in the IDE or set javac.jsp.includes</fail>
+        <mkdir dir="${build.generated.dir}/src"/>
+        <java classname="org.netbeans.modules.web.project.ant.JspCSingle" failonerror="true" fork="true">
+            <arg value="-uriroot"/>
+            <arg file="${basedir}/${build.web.dir}"/>
+            <arg value="-d"/>
+            <arg file="${basedir}/${build.generated.dir}/src"/>
+            <arg value="-die1"/>
+            <arg value="-schemas ${jspc.schemas}"/>
+            <arg value="-dtds ${jspc.dtds}"/>
+            <arg value="-sysClasspath ${libs.jsp-compilation-syscp.classpath}"/>
+            <arg value="-jspc.files"/>
+            <arg path="${jsp.includes}"/>
+            <arg value="-compilerSourceVM ${javac.source}"/>
+            <arg value="-compilerTargetVM ${javac.target}"/>
+            <arg value="-javaEncoding ${source.encoding}"/>
+            <classpath path="${java.home}/../lib/tools.jar:${libs.jsp-compiler.classpath}:${libs.jsp-compilation.classpath}"/>
+        </java>
+        <mkdir dir="${build.generated.dir}/classes"/>
+        <webproject2:javac classpath="${build.classes.dir}:${libs.jsp-compilation.classpath}:${javac.classpath}:${j2ee.platform.classpath}" destdir="${build.generated.dir}/classes" srcdir="${build.generated.dir}/src">
+            <customize>
+                <patternset includes="${javac.jsp.includes}"/>
+            </customize>
+        </webproject2:javac>
+    </target>
+    <target name="compile-single-jsp">
+        <fail unless="jsp.includes">Must select a file in the IDE or set jsp.includes</fail>
+        <antcall target="-do-compile-single-jsp"/>
+    </target>
+    <!--
+                DIST BUILDING SECTION
+            -->
+    <target name="-pre-dist">
+        <!-- Empty placeholder for easier customization. -->
+        <!-- You can override this target in the ../build.xml file. -->
+    </target>
+    <target depends="init,compile,compile-jsps,-pre-dist" if="do.war.package.without.custom.manifest" name="-do-dist-without-manifest">
+        <dirname file="${dist.war}" property="dist.jar.dir"/>
+        <mkdir dir="${dist.jar.dir}"/>
+        <jar compress="${jar.compress}" jarfile="${dist.war}">
+            <fileset dir="${build.web.dir}" excludes="WEB-INF/classes/.netbeans_*,${dist.archive.excludes}"/>
+        </jar>
+    </target>
+    <target depends="init,compile,compile-jsps,-pre-dist" if="do.war.package.with.custom.manifest" name="-do-dist-with-manifest">
+        <dirname file="${dist.war}" property="dist.jar.dir"/>
+        <mkdir dir="${dist.jar.dir}"/>
+        <jar compress="${jar.compress}" jarfile="${dist.war}" manifest="${build.meta.inf.dir}/MANIFEST.MF">
+            <fileset dir="${build.web.dir}" excludes="WEB-INF/classes/.netbeans_*,${dist.archive.excludes}"/>
+        </jar>
+    </target>
+    <target depends="init,compile,compile-jsps,-pre-dist" if="do.tmp.war.package.without.custom.manifest" name="-do-tmp-dist-without-manifest">
+        <dirname file="${dist.war}" property="dist.jar.dir"/>
+        <mkdir dir="${dist.jar.dir}"/>
+        <jar compress="${jar.compress}" jarfile="${dist.war}">
+            <fileset dir="${build.web.dir}" excludes="WEB-INF/classes/.netbeans_*,${dist.archive.excludes}"/>
+        </jar>
+    </target>
+    <target depends="init,compile,compile-jsps,-pre-dist" if="do.tmp.war.package.with.custom.manifest" name="-do-tmp-dist-with-manifest">
+        <dirname file="${dist.war}" property="dist.jar.dir"/>
+        <mkdir dir="${dist.jar.dir}"/>
+        <jar compress="${jar.compress}" jarfile="${dist.war}" manifest="${build.meta.inf.dir}/MANIFEST.MF">
+            <fileset dir="${build.web.dir}" excludes="WEB-INF/classes/.netbeans_*,${dist.archive.excludes}"/>
+        </jar>
+    </target>
+    <target depends="init,compile,compile-jsps,-pre-dist,-do-dist-with-manifest,-do-dist-without-manifest" name="do-dist"/>
+    <target depends="init" if="dist.ear.dir" name="library-inclusion-in-manifest">
+        <mkdir dir="${build.web.dir}/META-INF"/>
+        <manifest file="${build.web.dir}/META-INF/MANIFEST.MF" mode="update"/>
+    </target>
+    <target depends="init" name="library-inclusion-in-archive" unless="dist.ear.dir"/>
+    <target depends="init" if="dist.ear.dir" name="-clean-webinf-lib">
+        <delete dir="${build.web.dir}/WEB-INF/lib"/>
+    </target>
+    <target depends="init,-clean-webinf-lib,compile,compile-jsps,-pre-dist,library-inclusion-in-manifest" if="do.tmp.war.package" name="do-ear-dist">
+        <dirname file="${dist.ear.war}" property="dist.jar.dir"/>
+        <mkdir dir="${dist.jar.dir}"/>
+        <jar compress="${jar.compress}" jarfile="${dist.ear.war}" manifest="${build.web.dir}/META-INF/MANIFEST.MF">
+            <fileset dir="${build.web.dir}" excludes="WEB-INF/classes/.netbeans_*,${dist.archive.excludes}"/>
+        </jar>
+    </target>
+    <target name="-post-dist">
+        <!-- Empty placeholder for easier customization. -->
+        <!-- You can override this target in the ../build.xml file. -->
+    </target>
+    <target depends="init,compile,-pre-dist,do-dist,-post-dist" description="Build distribution (WAR)." name="dist"/>
+    <target depends="init,-clean-webinf-lib,-init-cos,compile,-pre-dist,do-ear-dist,-post-dist" description="Build distribution (WAR) to be packaged into an EAR." name="dist-ear"/>
+    <!--
+                EXECUTION SECTION
+            -->
+    <target depends="run-deploy,run-display-browser" description="Deploy to server and show in browser." name="run"/>
+    <target name="-pre-run-deploy">
+        <!-- Empty placeholder for easier customization. -->
+        <!-- You can override this target in the ../build.xml file. -->
+    </target>
+    <target name="-post-run-deploy">
+        <!-- Empty placeholder for easier customization. -->
+        <!-- You can override this target in the ../build.xml file. -->
+    </target>
+    <target name="-pre-nbmodule-run-deploy">
+        <!-- Empty placeholder for easier customization. -->
+        <!-- This target can be overriden by NetBeans modules. Don't override it directly, use -pre-run-deploy task instead. -->
+    </target>
+    <target name="-post-nbmodule-run-deploy">
+        <!-- Empty placeholder for easier customization. -->
+        <!-- This target can be overriden by NetBeans modules. Don't override it directly, use -post-run-deploy task instead. -->
+    </target>
+    <target name="-run-deploy-am">
+        <!-- Task to deploy to the Access Manager runtime. -->
+    </target>
+    <target depends="init,-init-cos,compile,compile-jsps,-do-compile-single-jsp,-pre-dist,-do-tmp-dist-with-manifest,-do-tmp-dist-without-manifest,-pre-run-deploy,-pre-nbmodule-run-deploy,-run-deploy-nb,-init-deploy-ant,-deploy-ant,-run-deploy-am,-post-nbmodule-run-deploy,-post-run-deploy,-do-update-breakpoints" name="run-deploy"/>
+    <target if="netbeans.home" name="-run-deploy-nb">
+        <nbdeploy clientUrlPart="${client.urlPart}" debugmode="false" forceRedeploy="${forceRedeploy}"/>
+    </target>
+    <target name="-init-deploy-ant" unless="netbeans.home">
+        <property name="deploy.ant.archive" value="${dist.war}"/>
+        <property name="deploy.ant.docbase.dir" value="${web.docbase.dir}"/>
+        <property name="deploy.ant.resource.dir" value="${resource.dir}"/>
+        <property name="deploy.ant.enabled" value="true"/>
+    </target>
+    <target depends="dist,-run-undeploy-nb,-init-deploy-ant,-undeploy-ant" name="run-undeploy"/>
+    <target if="netbeans.home" name="-run-undeploy-nb">
+        <fail message="Undeploy is not supported from within the IDE"/>
+    </target>
+    <target depends="init,-pre-dist,dist,-post-dist" name="verify">
+        <nbverify file="${dist.war}"/>
+    </target>
+    <target depends="run-deploy,-init-display-browser,-display-browser-nb-old,-display-browser-nb,-display-browser-cl" name="run-display-browser"/>
+    <target if="do.display.browser" name="-init-display-browser">
+        <condition property="do.display.browser.nb.old">
+            <and>
+                <isset property="netbeans.home"/>
+                <not>
+                    <isset property="browser.context"/>
+                </not>
+            </and>
+        </condition>
+        <condition property="do.display.browser.nb">
+            <and>
+                <isset property="netbeans.home"/>
+                <isset property="browser.context"/>
+            </and>
+        </condition>
+        <condition property="do.display.browser.cl">
+            <isset property="deploy.ant.enabled"/>
+        </condition>
+    </target>
+    <target if="do.display.browser.nb.old" name="-display-browser-nb-old">
+        <nbbrowse url="${client.url}"/>
+    </target>
+    <target if="do.display.browser.nb" name="-display-browser-nb">
+        <nbbrowse context="${browser.context}" url="${client.url}" urlPath="${client.urlPart}"/>
+    </target>
+    <target if="do.display.browser.cl" name="-get-browser" unless="browser">
+        <condition property="browser" value="rundll32">
+            <os family="windows"/>
+        </condition>
+        <condition else="" property="browser.args" value="url.dll,FileProtocolHandler">
+            <os family="windows"/>
+        </condition>
+        <condition property="browser" value="/usr/bin/open">
+            <os family="mac"/>
+        </condition>
+        <property environment="env"/>
+        <condition property="browser" value="${env.BROWSER}">
+            <isset property="env.BROWSER"/>
+        </condition>
+        <condition property="browser" value="/usr/bin/firefox">
+            <available file="/usr/bin/firefox"/>
+        </condition>
+        <condition property="browser" value="/usr/local/firefox/firefox">
+            <available file="/usr/local/firefox/firefox"/>
+        </condition>
+        <condition property="browser" value="/usr/bin/mozilla">
+            <available file="/usr/bin/mozilla"/>
+        </condition>
+        <condition property="browser" value="/usr/local/mozilla/mozilla">
+            <available file="/usr/local/mozilla/mozilla"/>
+        </condition>
+        <condition property="browser" value="/usr/sfw/lib/firefox/firefox">
+            <available file="/usr/sfw/lib/firefox/firefox"/>
+        </condition>
+        <condition property="browser" value="/opt/csw/bin/firefox">
+            <available file="/opt/csw/bin/firefox"/>
+        </condition>
+        <condition property="browser" value="/usr/sfw/lib/mozilla/mozilla">
+            <available file="/usr/sfw/lib/mozilla/mozilla"/>
+        </condition>
+        <condition property="browser" value="/opt/csw/bin/mozilla">
+            <available file="/opt/csw/bin/mozilla"/>
+        </condition>
+    </target>
+    <target depends="-get-browser" if="do.display.browser.cl" name="-display-browser-cl">
+        <fail unless="browser">
+                    Browser not found, cannot launch the deployed application. Try to set the BROWSER environment variable.
+                </fail>
+        <property name="browse.url" value="${deploy.ant.client.url}${client.urlPart}"/>
+        <echo>Launching ${browse.url}</echo>
+        <exec executable="${browser}" spawn="true">
+            <arg line="${browser.args} ${browse.url}"/>
+        </exec>
+    </target>
+    <target depends="init,-init-cos,compile-single" name="run-main">
+        <fail unless="run.class">Must select one file in the IDE or set run.class</fail>
+        <webproject1:java classname="${run.class}"/>
+    </target>
+    <target depends="init,compile-test-single,-pre-test-run-single" name="run-test-with-main">
+        <fail unless="run.class">Must select one file in the IDE or set run.class</fail>
+        <webproject1:java classname="${run.class}" classpath="${run.test.classpath}"/>
+    </target>
+    <target depends="init" if="netbeans.home" name="-do-update-breakpoints">
+        <webproject1:nbjpdaappreloaded/>
+    </target>
+    <!--
+                DEBUGGING SECTION
+            -->
+    <target depends="init,-init-cos,compile,compile-jsps,-do-compile-single-jsp,-pre-dist,-do-tmp-dist-with-manifest,-do-tmp-dist-without-manifest" description="Debug project in IDE." if="netbeans.home" name="debug">
+        <nbstartserver debugmode="true"/>
+        <antcall target="connect-debugger"/>
+        <nbdeploy clientUrlPart="${client.urlPart}" debugmode="true" forceRedeploy="true"/>
+        <antcall target="debug-display-browser-old"/>
+        <antcall target="debug-display-browser"/>
+        <antcall target="connect-client-debugger"/>
+    </target>
+    <target if="do.debug.server" name="connect-debugger" unless="is.debugged">
+        <condition property="listeningcp" value="sourcepath">
+            <istrue value="${j2ee.compile.on.save}"/>
+        </condition>
+        <nbjpdaconnect address="${jpda.address}" host="${jpda.host}" listeningcp="${listeningcp}" name="${name}" transport="${jpda.transport}">
+            <classpath>
+                <path path="${debug.classpath}:${j2ee.platform.classpath}"/>
+            </classpath>
+            <sourcepath>
+                <path path="${web.docbase.dir}"/>
+            </sourcepath>
+        </nbjpdaconnect>
+    </target>
+    <target if="do.display.browser.debug.old" name="debug-display-browser-old">
+        <nbbrowse url="${client.url}"/>
+    </target>
+    <target if="do.display.browser.debug" name="debug-display-browser">
+        <nbbrowse context="${browser.context}" url="${client.url}" urlPath="${client.urlPart}"/>
+    </target>
+    <target if="do.debug.client" name="connect-client-debugger">
+        <webproject1:nbjsdebugstart webUrl="${client.url}"/>
+    </target>
+    <target depends="init,compile-test-single" if="netbeans.home" name="-debug-start-debuggee-main-test">
+        <fail unless="debug.class">Must select one file in the IDE or set debug.class</fail>
+        <webproject1:debug classname="${debug.class}" classpath="${debug.test.classpath}"/>
+    </target>
+    <target depends="init,compile-test-single,-debug-start-debugger-main-test,-debug-start-debuggee-main-test" if="netbeans.home" name="debug-test-with-main"/>
+    <target depends="init,compile,compile-jsps,-do-compile-single-jsp,debug" if="netbeans.home" name="debug-single"/>
+    <target depends="init" if="netbeans.home" name="-debug-start-debugger-main-test">
+        <webproject1:nbjpdastart classpath="${debug.test.classpath}" name="${debug.class}"/>
+    </target>
+    <target depends="init" if="netbeans.home" name="-debug-start-debugger">
+        <webproject1:nbjpdastart name="${debug.class}"/>
+    </target>
+    <target depends="init,compile-single" if="netbeans.home" name="-debug-start-debuggee-single">
+        <fail unless="debug.class">Must select one file in the IDE or set debug.class</fail>
+        <webproject1:debug classname="${debug.class}"/>
+    </target>
+    <target depends="init,compile-single,-debug-start-debugger,-debug-start-debuggee-single" if="netbeans.home" name="debug-single-main"/>
+    <target depends="init" name="-pre-debug-fix">
+        <fail unless="fix.includes">Must set fix.includes</fail>
+        <property name="javac.includes" value="${fix.includes}.java"/>
+    </target>
+    <target depends="init,-pre-debug-fix,compile-single" if="netbeans.home" name="-do-debug-fix">
+        <webproject1:nbjpdareload/>
+    </target>
+    <target depends="init,-pre-debug-fix,-do-debug-fix" if="netbeans.home" name="debug-fix"/>
+    <!--
+            =================
+            PROFILING SECTION
+            =================
+            -->
+    <!--
+                pre NB7.2 profiling section; consider it deprecated
+            -->
+    <target description="Profile a J2EE project in the IDE." if="profiler.info.jvmargs.agent" name="-profile-pre72">
+        <condition else="start-profiled-server" property="profiler.startserver.target" value="start-profiled-server-extraargs">
+            <isset property="profiler.info.jvmargs.extra"/>
+        </condition>
+        <antcall target="${profiler.startserver.target}"/>
+        <antcall target="run"/>
+        <antcall target="-profile-start-loadgen"/>
+    </target>
+    <target if="profiler.info.jvmargs.agent" name="start-profiled-server">
+        <nbstartprofiledserver forceRestart="${profiler.j2ee.serverForceRestart}" javaPlatform="${profiler.info.javaPlatform}" startupTimeout="${profiler.j2ee.serverStartupTimeout}">
+            <jvmarg value="${profiler.info.jvmargs.agent}"/>
+            <jvmarg value="${profiler.j2ee.agentID}"/>
+        </nbstartprofiledserver>
+    </target>
+    <target if="profiler.info.jvmargs.agent" name="start-profiled-server-extraargs">
+        <nbstartprofiledserver forceRestart="${profiler.j2ee.serverForceRestart}" javaPlatform="${profiler.info.javaPlatform}" startupTimeout="${profiler.j2ee.serverStartupTimeout}">
+            <jvmarg value="${profiler.info.jvmargs.extra}"/>
+            <jvmarg value="${profiler.info.jvmargs.agent}"/>
+            <jvmarg value="${profiler.j2ee.agentID}"/>
+        </nbstartprofiledserver>
+    </target>
+    <target depends="profile-init,compile-test-single" if="profiler.info.jvmargs.agent" name="-profile-test-single-pre72">
+        <fail unless="netbeans.home">This target only works when run from inside the NetBeans IDE.</fail>
+        <nbprofiledirect>
+            <classpath>
+                <path path="${run.test.classpath}"/>
+                <path path="${j2ee.platform.classpath}"/>
+            </classpath>
+        </nbprofiledirect>
+        <junit dir="${profiler.info.dir}" errorproperty="tests.failed" failureproperty="tests.failed" fork="true" jvm="${profiler.info.jvm}" showoutput="true">
+            <env key="${profiler.info.pathvar}" path="${profiler.info.agentpath}:${profiler.current.path}"/>
+            <jvmarg value="${profiler.info.jvmargs.agent}"/>
+            <jvmarg line="${profiler.info.jvmargs}"/>
+            <test name="${profile.class}"/>
+            <classpath>
+                <path path="${run.test.classpath}"/>
+                <path path="${j2ee.platform.classpath}"/>
+            </classpath>
+            <syspropertyset>
+                <propertyref prefix="test-sys-prop."/>
+                <mapper from="test-sys-prop.*" to="*" type="glob"/>
+            </syspropertyset>
+            <formatter type="brief" usefile="false"/>
+            <formatter type="xml"/>
+        </junit>
+    </target>
+    <target if="netbeans.home" name="-profile-check">
+        <condition property="profiler.configured">
+            <or>
+                <contains casesensitive="true" string="${run.jvmargs.ide}" substring="-agentpath:"/>
+                <contains casesensitive="true" string="${run.jvmargs.ide}" substring="-javaagent:"/>
+            </or>
+        </condition>
+    </target>
+    <target depends="init,-init-cos,compile,compile-jsps,-do-compile-single-jsp,-pre-dist,-do-tmp-dist-with-manifest,-do-tmp-dist-without-manifest" name="-do-profile">
+        <startprofiler/>
+        <nbstartserver profilemode="true"/>
+        <nbdeploy clientUrlPart="${client.urlPart}" forceRedeploy="true" profilemode="true"/>
+        <antcall target="debug-display-browser-old"/>
+        <antcall target="debug-display-browser"/>
+        <antcall target="-profile-start-loadgen"/>
+    </target>
+    <target depends="-profile-check,-profile-pre72" description="Profile a J2EE project in the IDE." if="profiler.configured" name="profile" unless="profiler.info.jvmargs.agent">
+        <antcall target="-do-profile"/>
+    </target>
+    <target depends="-profile-test-single-pre72" name="profile-test-single"/>
+    <target depends="-profile-check" if="profiler.configured" name="profile-test" unless="profiler.info.jvmargs.agent">
+        <startprofiler/>
+        <antcall target="test-single"/>
+    </target>
+    <target if="profiler.loadgen.path" name="-profile-start-loadgen">
+        <loadgenstart path="${profiler.loadgen.path}"/>
+    </target>
+    <!--
+                JAVADOC SECTION
+            -->
+    <target depends="init" if="have.sources" name="javadoc-build">
+        <mkdir dir="${dist.javadoc.dir}"/>
+        <javadoc additionalparam="${javadoc.additionalparam}" author="${javadoc.author}" charset="UTF-8" destdir="${dist.javadoc.dir}" docencoding="UTF-8" encoding="${javadoc.encoding.used}" failonerror="true" noindex="${javadoc.noindex}" nonavbar="${javadoc.nonavbar}" notree="${javadoc.notree}" private="${javadoc.private}" source="${javac.source}" splitindex="${javadoc.splitindex}" use="${javadoc.use}" useexternalfile="true" version="${javadoc.version}" windowtitle="${javadoc.windowtitle}">
+            <classpath>
+                <path path="${javac.classpath}:${j2ee.platform.classpath}"/>
+            </classpath>
+            <fileset dir="${src.dir}" excludes="${excludes}" includes="${includes}">
+                <filename name="**/*.java"/>
+            </fileset>
+            <fileset dir="${build.generated.sources.dir}" erroronmissingdir="false">
+                <include name="**/*.java"/>
+            </fileset>
+        </javadoc>
+        <copy todir="${dist.javadoc.dir}">
+            <fileset dir="${src.dir}" excludes="${excludes}" includes="${includes}">
+                <filename name="**/doc-files/**"/>
+            </fileset>
+            <fileset dir="${build.generated.sources.dir}" erroronmissingdir="false">
+                <include name="**/doc-files/**"/>
+            </fileset>
+        </copy>
+    </target>
+    <target depends="init,javadoc-build" if="netbeans.home" name="javadoc-browse" unless="no.javadoc.preview">
+        <nbbrowse file="${dist.javadoc.dir}/index.html"/>
+    </target>
+    <target depends="init,javadoc-build,javadoc-browse" description="Build Javadoc." name="javadoc"/>
+    <!--
+                
+                TEST COMPILATION SECTION
+            -->
+    <target depends="init,compile" if="have.tests" name="-pre-pre-compile-test">
+        <mkdir dir="${build.test.classes.dir}"/>
+        <property name="j2ee.platform.embeddableejb.classpath" value=""/>
+    </target>
+    <target name="-pre-compile-test">
+        <!-- Empty placeholder for easier customization. -->
+        <!-- You can override this target in the ../build.xml file. -->
+    </target>
+    <target depends="init,compile,-pre-pre-compile-test,-pre-compile-test" if="have.tests" name="-do-compile-test">
+        <webproject2:javac classpath="${javac.test.classpath}:${j2ee.platform.classpath}:${j2ee.platform.embeddableejb.classpath}" debug="true" destdir="${build.test.classes.dir}" srcdir="${test.src.dir}"/>
+        <copy todir="${build.test.classes.dir}">
+            <fileset dir="${test.src.dir}" excludes="${build.classes.excludes},${excludes}" includes="${includes}"/>
+        </copy>
+    </target>
+    <target name="-post-compile-test">
+        <!-- Empty placeholder for easier customization. -->
+        <!-- You can override this target in the ../build.xml file. -->
+    </target>
+    <target depends="init,compile,-pre-pre-compile-test,-pre-compile-test,-do-compile-test,-post-compile-test" name="compile-test"/>
+    <target name="-pre-compile-test-single">
+        <!-- Empty placeholder for easier customization. -->
+        <!-- You can override this target in the ../build.xml file. -->
+    </target>
+    <target depends="init,compile,-pre-pre-compile-test,-pre-compile-test-single" if="have.tests" name="-do-compile-test-single">
+        <fail unless="javac.includes">Must select some files in the IDE or set javac.includes</fail>
+        <webproject2:javac classpath="${javac.test.classpath}:${j2ee.platform.classpath}:${j2ee.platform.embeddableejb.classpath}" debug="true" destdir="${build.test.classes.dir}" excludes="" includes="${javac.includes}" srcdir="${test.src.dir}"/>
+        <copy todir="${build.test.classes.dir}">
+            <fileset dir="${test.src.dir}" excludes="${build.classes.excludes},${excludes}" includes="${includes}"/>
+        </copy>
+    </target>
+    <target name="-post-compile-test-single">
+        <!-- Empty placeholder for easier customization. -->
+        <!-- You can override this target in the ../build.xml file. -->
+    </target>
+    <target depends="init,compile,-pre-pre-compile-test,-pre-compile-test-single,-do-compile-test-single,-post-compile-test-single" name="compile-test-single"/>
+    <!--
+                
+                TEST EXECUTION SECTION
+            -->
+    <target depends="init" if="have.tests" name="-pre-test-run">
+        <mkdir dir="${build.test.results.dir}"/>
+    </target>
+    <target depends="init,compile-test,-pre-test-run" if="have.tests" name="-do-test-run">
+        <webproject2:test includes="${includes}" testincludes="**/*Test.java"/>
+    </target>
+    <target depends="init,compile-test,-pre-test-run,-do-test-run" if="have.tests" name="-post-test-run">
+        <fail if="tests.failed" unless="ignore.failing.tests">Some tests failed; see details above.</fail>
+    </target>
+    <target depends="init" if="have.tests" name="test-report"/>
+    <target depends="init" if="netbeans.home+have.tests" name="-test-browse"/>
+    <target depends="init,compile-test,-pre-test-run,-do-test-run,test-report,-post-test-run,-test-browse" description="Run unit tests." name="test"/>
+    <target depends="init" if="have.tests" name="-pre-test-run-single">
+        <mkdir dir="${build.test.results.dir}"/>
+    </target>
+    <target depends="init,compile-test-single,-pre-test-run-single" if="have.tests" name="-do-test-run-single">
+        <fail unless="test.includes">Must select some files in the IDE or set test.includes</fail>
+        <webproject2:test excludes="" includes="${test.includes}" testincludes="${test.includes}"/>
+    </target>
+    <target depends="init,compile-test-single,-pre-test-run-single,-do-test-run-single" if="have.tests" name="-post-test-run-single">
+        <fail if="tests.failed" unless="ignore.failing.tests">Some tests failed; see details above.</fail>
+    </target>
+    <target depends="init,compile-test-single,-pre-test-run-single,-do-test-run-single,-post-test-run-single" description="Run single unit test." name="test-single"/>
+    <target depends="init,compile-test-single,-pre-test-run-single" if="have.tests" name="-do-test-run-single-method">
+        <fail unless="test.class">Must select some files in the IDE or set test.class</fail>
+        <fail unless="test.method">Must select some method in the IDE or set test.method</fail>
+        <webproject2:test excludes="" includes="${javac.includes}" testincludes="${test.class}" testmethods="${test.method}"/>
+    </target>
+    <target depends="init,compile-test-single,-pre-test-run-single,-do-test-run-single-method" if="have.tests" name="-post-test-run-single-method">
+        <fail if="tests.failed" unless="ignore.failing.tests">Some tests failed; see details above.</fail>
+    </target>
+    <target depends="init,compile-test-single,-pre-test-run-single,-do-test-run-single-method,-post-test-run-single-method" description="Run single unit test." name="test-single-method"/>
+    <!--
+                
+                TEST DEBUGGING SECTION
+            -->
+    <target depends="init,compile-test-single,-pre-test-run-single" if="have.tests" name="-debug-start-debuggee-test">
+        <fail unless="test.class">Must select one file in the IDE or set test.class</fail>
+        <webproject2:test-debug excludes="" includes="${javac.includes}" testClass="${test.class}" testincludes="${javac.includes}"/>
+    </target>
+    <target depends="init,compile-test-single,-pre-test-run-single" if="have.tests" name="-debug-start-debuggee-test-method">
+        <fail unless="test.class">Must select one file in the IDE or set test.class</fail>
+        <fail unless="test.method">Must select some method in the IDE or set test.method</fail>
+        <webproject2:test-debug excludes="" includes="${javac.includes}" testClass="${test.class}" testMethod="${test.method}" testincludes="${test.class}" testmethods="${test.method}"/>
+    </target>
+    <target depends="init,compile-test" if="netbeans.home+have.tests" name="-debug-start-debugger-test">
+        <webproject1:nbjpdastart classpath="${debug.test.classpath}" name="${test.class}"/>
+    </target>
+    <target depends="init,compile-test,-debug-start-debugger-test,-debug-start-debuggee-test" name="debug-test"/>
+    <target depends="init,compile-test-single,-debug-start-debugger-test,-debug-start-debuggee-test-method" name="debug-test-method"/>
+    <target depends="init,-pre-debug-fix,compile-test-single" if="netbeans.home" name="-do-debug-fix-test">
+        <webproject1:nbjpdareload dir="${build.test.classes.dir}"/>
+    </target>
+    <target depends="init,-pre-debug-fix,-do-debug-fix-test" if="netbeans.home" name="debug-fix-test"/>
+    <!--
+                
+                CLEANUP SECTION
+            -->
+    <target depends="init" name="deps-clean" unless="no.deps"/>
+    <target depends="init" name="do-clean">
+        <condition property="build.dir.to.clean" value="${build.web.dir}">
+            <isset property="dist.ear.dir"/>
+        </condition>
+        <property name="build.dir.to.clean" value="${build.web.dir}"/>
+        <delete includeEmptyDirs="true" quiet="true">
+            <fileset dir="${build.dir.to.clean}/WEB-INF/lib"/>
+        </delete>
+        <delete dir="${build.dir}"/>
+        <available file="${build.dir.to.clean}/WEB-INF/lib" property="status.clean-failed" type="dir"/>
+        <delete dir="${dist.dir}"/>
+    </target>
+    <target depends="do-clean" if="status.clean-failed" name="check-clean">
+        <echo message="Warning: unable to delete some files in ${build.web.dir}/WEB-INF/lib - they are probably locked by the J2EE server. "/>
+        <echo level="info" message="To delete all files undeploy the module from Server Registry in Runtime tab and then use Clean again."/>
+    </target>
+    <target depends="init" if="netbeans.home" name="undeploy-clean">
+        <nbundeploy failOnError="false" startServer="false"/>
+    </target>
+    <target name="-post-clean">
+        <!-- Empty placeholder for easier customization. -->
+        <!-- You can override this target in the ../build.xml file. -->
+    </target>
+    <target depends="init,undeploy-clean,deps-clean,do-clean,check-clean,-post-clean" description="Clean build products." name="clean"/>
+    <target depends="clean" description="Clean build products." name="clean-ear"/>
+</project>
diff --git a/UyTube_mobile/nbproject/genfiles.properties b/UyTube_mobile/nbproject/genfiles.properties
new file mode 100644
index 0000000000000000000000000000000000000000..683579b8042f9d6db74c25e461a397340aec415b
--- /dev/null
+++ b/UyTube_mobile/nbproject/genfiles.properties
@@ -0,0 +1,8 @@
+build.xml.data.CRC32=f41934aa
+build.xml.script.CRC32=8c35e951
+build.xml.stylesheet.CRC32=651128d4@1.77.1.1
+# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml.
+# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you.
+nbproject/build-impl.xml.data.CRC32=f41934aa
+nbproject/build-impl.xml.script.CRC32=08adcbe2
+nbproject/build-impl.xml.stylesheet.CRC32=99ea4b56@1.77.1.1
diff --git a/UyTube_mobile/nbproject/project.properties b/UyTube_mobile/nbproject/project.properties
new file mode 100644
index 0000000000000000000000000000000000000000..ef95e796a06f9dfe3cff805652b474c5eb48f666
--- /dev/null
+++ b/UyTube_mobile/nbproject/project.properties
@@ -0,0 +1,84 @@
+annotation.processing.enabled=true
+annotation.processing.enabled.in.editor=true
+annotation.processing.processors.list=
+annotation.processing.run.all.processors=true
+annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output
+build.classes.dir=${build.web.dir}/WEB-INF/classes
+build.classes.excludes=**/*.java,**/*.form
+build.dir=build
+build.generated.dir=${build.dir}/generated
+build.generated.sources.dir=${build.dir}/generated-sources
+build.test.classes.dir=${build.dir}/test/classes
+build.test.results.dir=${build.dir}/test/results
+build.web.dir=${build.dir}/web
+build.web.excludes=${build.classes.excludes}
+client.urlPart=
+compile.jsps=false
+conf.dir=${source.root}/conf
+debug.classpath=${build.classes.dir}:${javac.classpath}
+debug.test.classpath=\
+    ${run.test.classpath}
+display.browser=true
+# Files to be excluded from distribution war
+dist.archive.excludes=
+dist.dir=dist
+dist.ear.war=${dist.dir}/${war.ear.name}
+dist.javadoc.dir=${dist.dir}/javadoc
+dist.war=${dist.dir}/${war.name}
+endorsed.classpath=\
+    ${libs.javaee-endorsed-api-7.0.classpath}
+excludes=
+includes=**
+j2ee.compile.on.save=true
+j2ee.copy.static.files.on.save=true
+j2ee.deploy.on.save=true
+j2ee.platform=1.7-web
+j2ee.platform.classpath=${j2ee.server.home}/lib/annotations-api.jar:${j2ee.server.home}/lib/catalina-ant.jar:${j2ee.server.home}/lib/catalina-ha.jar:${j2ee.server.home}/lib/catalina-storeconfig.jar:${j2ee.server.home}/lib/catalina-tribes.jar:${j2ee.server.home}/lib/catalina.jar:${j2ee.server.home}/lib/ecj-4.4.2.jar:${j2ee.server.home}/lib/el-api.jar:${j2ee.server.home}/lib/jasper-el.jar:${j2ee.server.home}/lib/jasper.jar:${j2ee.server.home}/lib/jsp-api.jar:${j2ee.server.home}/lib/servlet-api.jar:${j2ee.server.home}/lib/tomcat-api.jar:${j2ee.server.home}/lib/tomcat-coyote.jar:${j2ee.server.home}/lib/tomcat-dbcp.jar:${j2ee.server.home}/lib/tomcat-i18n-es.jar:${j2ee.server.home}/lib/tomcat-i18n-fr.jar:${j2ee.server.home}/lib/tomcat-i18n-ja.jar:${j2ee.server.home}/lib/tomcat-jdbc.jar:${j2ee.server.home}/lib/tomcat-jni.jar:${j2ee.server.home}/lib/tomcat-util-scan.jar:${j2ee.server.home}/lib/tomcat-util.jar:${j2ee.server.home}/lib/tomcat-websocket.jar:${j2ee.server.home}/lib/websocket-api.jar
+j2ee.server.type=Tomcat
+jar.compress=false
+javac.classpath=
+# Space-separated list of extra javac options
+javac.compilerargs=
+javac.debug=true
+javac.deprecation=false
+javac.processorpath=\
+    ${javac.classpath}
+javac.source=1.8
+javac.target=1.8
+javac.test.classpath=\
+    ${javac.classpath}:\
+    ${build.classes.dir}
+javac.test.processorpath=\
+    ${javac.test.classpath}
+javadoc.additionalparam=
+javadoc.author=false
+javadoc.encoding=${source.encoding}
+javadoc.noindex=false
+javadoc.nonavbar=false
+javadoc.notree=false
+javadoc.preview=true
+javadoc.private=false
+javadoc.splitindex=true
+javadoc.use=true
+javadoc.version=false
+javadoc.windowtitle=
+lib.dir=${web.docbase.dir}/WEB-INF/lib
+no.dependencies=false
+persistence.xml.dir=${conf.dir}
+platform.active=default_platform
+resource.dir=setup
+run.test.classpath=\
+    ${javac.test.classpath}:\
+    ${build.test.classes.dir}
+# Space-separated list of JVM arguments used when running a class with a main method or a unit test
+# (you may also define separate properties like run-sys-prop.name=value instead of -Dname=value):
+runmain.jvmargs=
+source.encoding=UTF-8
+source.root=src
+src.dir=${source.root}/java
+test.src.dir=test
+war.content.additional=
+war.ear.name=${war.name}
+war.name=UyTube_mobile.war
+web.docbase.dir=web
+webinf.dir=web/WEB-INF
diff --git a/UyTube_mobile/nbproject/project.xml b/UyTube_mobile/nbproject/project.xml
new file mode 100644
index 0000000000000000000000000000000000000000..371581341827f8634c2c49ced9499f1583d4feb0
--- /dev/null
+++ b/UyTube_mobile/nbproject/project.xml
@@ -0,0 +1,18 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project xmlns="http://www.netbeans.org/ns/project/1">
+    <type>org.netbeans.modules.web.project</type>
+    <configuration>
+        <data xmlns="http://www.netbeans.org/ns/web-project/3">
+            <name>UyTube_mobile</name>
+            <minimum-ant-version>1.6.5</minimum-ant-version>
+            <web-module-libraries/>
+            <web-module-additional-libraries/>
+            <source-roots>
+                <root id="src.dir" name="Source Packages"/>
+            </source-roots>
+            <test-roots>
+                <root id="test.src.dir" name="Test Packages"/>
+            </test-roots>
+        </data>
+    </configuration>
+</project>
diff --git a/UyTube_mobile/src/conf/MANIFEST.MF b/UyTube_mobile/src/conf/MANIFEST.MF
new file mode 100644
index 0000000000000000000000000000000000000000..59499bce4a2bd51cba227b7c00fcf745b19c95a4
--- /dev/null
+++ b/UyTube_mobile/src/conf/MANIFEST.MF
@@ -0,0 +1,2 @@
+Manifest-Version: 1.0
+
diff --git a/UyTube_mobile/src/java/Funciones/Funciones.java b/UyTube_mobile/src/java/Funciones/Funciones.java
new file mode 100644
index 0000000000000000000000000000000000000000..2efa50a013be5004c4b9278b464f2edd31fa9825
--- /dev/null
+++ b/UyTube_mobile/src/java/Funciones/Funciones.java
@@ -0,0 +1,191 @@
+package Funciones;
+
+import java.util.Map;
+import javax.servlet.http.HttpServletRequest;
+import logica.controladores.Fecha;
+
+/**
+ *
+ * @author Juan
+ */
+public class Funciones {
+
+    /**
+     * Extrae el ID del video
+     *
+     * @param URLYoutube URL del video de Youtube
+     * @return ID del video
+     */
+    public static String extraerIDYoutube(String URLYoutube) {
+        //https://www.youtube.com/embed/fepmsnGBwJo
+        String idYoutube = "";
+        String urlDT = URLYoutube;
+        int i = 0;
+        i = URLYoutube.indexOf("v=") + 2;
+
+        for (; i < urlDT.length(); i++) {
+            if (urlDT.charAt(i) == '&') {
+                break;
+            }
+            idYoutube += urlDT.charAt(i);
+        }
+        return idYoutube;
+    }
+
+    /**
+     * Enlace para embeber video en una página
+     *
+     * @param idYoutube ID del video de Youtube
+     * @return En lace para embeber video
+     */
+    public static String obtenerEnlaceEmbebido(String idYoutube) {
+        return "https://www.youtube.com/embed/" + idYoutube;
+    }
+
+    /**
+     * Obtiene la url de la miniatura del video original en YouTube
+     *
+     * @param idYoutube ID del video de Youtube
+     * @param tamanio Tamaño de la imagen [1 a 4]
+     * @return URL de la miniatura del video
+     */
+    public static String obtenerImagenDeVideo(String idYoutube, int tamanio) {
+        /*
+        http://img.youtube.com/vi/VideoID/default.jpg
+        http://img.youtube.com/vi/VideoID/mqdefault.jpg
+        http://img.youtube.com/vi/VideoID/hqdefault.jpg
+        http://img.youtube.com/vi/VideoID/sddefault.jpg
+         */
+        String strTamanio = "/default.jpg";
+        switch (tamanio) {
+            case 1:
+                strTamanio = "/default.jpg";
+                break;
+            case 2:
+                strTamanio = "/mqdefault.jpg";
+                break;
+            case 3:
+                strTamanio = "/hqdefault.jpg";
+                break;
+            case 4:
+                strTamanio = "/sddefault.jpg";
+                break;
+        }
+        return "https://i.ytimg.com/vi/" + idYoutube + strTamanio;
+    }
+
+    public static java.sql.Date fechaActual() {
+        java.util.Date today = new java.util.Date();
+        java.sql.Date ret = new java.sql.Date(today.getTime());
+        return ret;
+    }
+
+    public static void showLog(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response) {
+        try {
+            String inicio = "-------- " + request.getMethod() + " " + request.getRequestURI() + " --------";
+            System.out.println(inicio);
+
+            if (request.getParameterMap().size() > 0) {
+                System.out.println("Atributos:");
+                for (Map.Entry<String, String[]> it : request.getParameterMap().entrySet()) {
+                    if (it.getValue().length > 0) {
+                        for (int i = 0; i < it.getValue().length; i++) {
+                            System.out.println(it.getKey() + ": '" + it.getValue()[i] + "'");
+                        }
+                    } else {
+                        System.out.println(it.getKey() + ": '''");
+                    }
+                }
+            } else {
+                System.out.println("No hay parametros");
+            }
+            for (int i = 0; i < inicio.length(); i++) {
+                System.out.print("-");
+            }
+            System.out.println("");
+        } catch (Exception e) {
+            System.out.println("---- Error al intentar mostrar el log ----");
+            System.out.println(e.getMessage());
+            System.out.println("------------------------------------------");
+        }
+    }
+
+    public static void showLog(String titulo, String log) {
+        try {
+            if (titulo == null) {
+                titulo = "No hay titulo";
+            }
+            if (log == null) {
+                log = "No hay mensaje";
+            }
+            titulo = "---- " + titulo + " ----";
+
+            System.out.println(titulo);
+            System.out.println(log);
+            for (int i = 0; i < titulo.length(); i++) {
+                System.out.print("-");
+            }
+            System.out.println("");
+        } catch (Exception e) {
+            System.out.println("");
+            System.out.println("///// No se pudo mostrar el log ////");
+            System.out.println("");
+        }
+    }
+
+    public static void showLog(Exception e) {
+        System.out.println();
+        System.out.println("//////////// Exception ////////////");
+        System.out.println(e.getMessage());
+        System.out.println("///////////////////////////////////");
+    }
+    
+    private boolean esUnDispositivoMovil(HttpServletRequest request){
+        /**
+         * El plan B en caso de que esta funcion no funcione (osea, que sea una
+         * disfuncion) es utilizar esta clase: 
+         * https://github.com/ahand/mobileesp/tree/master/Java
+         */
+        String ua = request.getHeader("User-Agent");
+        //System.out.println("El cliente es: " + ua);
+        String[] so = {"Linux", "Windows", "Mac OS", "Iphone", "Android"};
+        //String cliente = "";
+        for (String item : so) {
+            switch (item) {
+                case "Linux":
+                    //console.log(ua);
+                    if (ua.indexOf("Android") != -1 && ua.indexOf("Linux") != -1) {
+                        //cliente = "Estás usando android";
+                        return true;
+                    }
+                    if (ua.indexOf("Linux") != -1) {
+                        return false;
+                    }
+                    break;
+                case "Mac OS":
+                    if (ua.indexOf("iPhone OS") != -1 && ua.indexOf("Mac OS") != -1) {
+                        //cliente  = "Estás usando iphone";
+                        return true;
+                    }
+                    if (ua.indexOf("Mac OS") != -1) {
+                        //cliente  = "Estas usando Mac";
+                        return false;
+                    }
+                    break;
+                case "Windows":
+                    if (ua.indexOf("Win64") != -1 || ua.indexOf("Win32") != -1 || ua.indexOf("Win86") != -1) {
+                        //cliente  = "Estas en Windows";
+                        return false;
+                    }
+                    break;
+
+            }
+        }
+        return false;
+    }
+    
+    public static String darFormatoFecha(Fecha f){
+        return f.getAnio() + "-" + f.getMes() + "-" + f.getDia();
+    }
+    
+}
diff --git a/UyTube_mobile/src/java/com/uytube/AgregarComentario.java b/UyTube_mobile/src/java/com/uytube/AgregarComentario.java
new file mode 100644
index 0000000000000000000000000000000000000000..309ae0f7935beabf52a0029c5917eb7772caed08
--- /dev/null
+++ b/UyTube_mobile/src/java/com/uytube/AgregarComentario.java
@@ -0,0 +1,86 @@
+/*
+ * To change this license header, choose License Headers in Project Properties.
+ * To change this template file, choose Tools | Templates
+ * and open the template in the editor.
+ */
+package com.uytube;
+
+import java.io.IOException;
+import java.io.PrintWriter;
+import javax.servlet.ServletException;
+import javax.servlet.http.HttpServlet;
+import javax.servlet.http.HttpServletRequest;
+import javax.servlet.http.HttpServletResponse;
+
+/**
+ *
+ * @author administrador
+ */
+public class AgregarComentario extends HttpServlet {
+
+    /**
+     * Processes requests for both HTTP <code>GET</code> and <code>POST</code>
+     * methods.
+     *
+     * @param request servlet request
+     * @param response servlet response
+     * @throws ServletException if a servlet-specific error occurs
+     * @throws IOException if an I/O error occurs
+     */
+    protected void processRequest(HttpServletRequest request, HttpServletResponse response)
+            throws ServletException, IOException {
+        response.setContentType("text/html;charset=UTF-8");
+        try (PrintWriter out = response.getWriter()) {
+            /* TODO output your page here. You may use following sample code. */
+            out.println("<!DOCTYPE html>");
+            out.println("<html>");
+            out.println("<head>");
+            out.println("<title>Servlet AgregarComentario</title>");            
+            out.println("</head>");
+            out.println("<body>");
+            out.println("<h1>Servlet AgregarComentario at " + request.getContextPath() + "</h1>");
+            out.println("</body>");
+            out.println("</html>");
+        }
+    }
+
+    // <editor-fold defaultstate="collapsed" desc="HttpServlet methods. Click on the + sign on the left to edit the code.">
+    /**
+     * Handles the HTTP <code>GET</code> method.
+     *
+     * @param request servlet request
+     * @param response servlet response
+     * @throws ServletException if a servlet-specific error occurs
+     * @throws IOException if an I/O error occurs
+     */
+    @Override
+    protected void doGet(HttpServletRequest request, HttpServletResponse response)
+            throws ServletException, IOException {
+        processRequest(request, response);
+    }
+
+    /**
+     * Handles the HTTP <code>POST</code> method.
+     *
+     * @param request servlet request
+     * @param response servlet response
+     * @throws ServletException if a servlet-specific error occurs
+     * @throws IOException if an I/O error occurs
+     */
+    @Override
+    protected void doPost(HttpServletRequest request, HttpServletResponse response)
+            throws ServletException, IOException {
+        processRequest(request, response);
+    }
+
+    /**
+     * Returns a short description of the servlet.
+     *
+     * @return a String containing servlet description
+     */
+    @Override
+    public String getServletInfo() {
+        return "Short description";
+    }// </editor-fold>
+
+}
diff --git a/UyTube_mobile/src/java/com/uytube/AgregarValoracion.java b/UyTube_mobile/src/java/com/uytube/AgregarValoracion.java
new file mode 100644
index 0000000000000000000000000000000000000000..966633ed70f6f9dc8508fae05461d8d0023bb708
--- /dev/null
+++ b/UyTube_mobile/src/java/com/uytube/AgregarValoracion.java
@@ -0,0 +1,86 @@
+/*
+ * To change this license header, choose License Headers in Project Properties.
+ * To change this template file, choose Tools | Templates
+ * and open the template in the editor.
+ */
+package com.uytube;
+
+import java.io.IOException;
+import java.io.PrintWriter;
+import javax.servlet.ServletException;
+import javax.servlet.http.HttpServlet;
+import javax.servlet.http.HttpServletRequest;
+import javax.servlet.http.HttpServletResponse;
+
+/**
+ *
+ * @author administrador
+ */
+public class AgregarValoracion extends HttpServlet {
+
+    /**
+     * Processes requests for both HTTP <code>GET</code> and <code>POST</code>
+     * methods.
+     *
+     * @param request servlet request
+     * @param response servlet response
+     * @throws ServletException if a servlet-specific error occurs
+     * @throws IOException if an I/O error occurs
+     */
+    protected void processRequest(HttpServletRequest request, HttpServletResponse response)
+            throws ServletException, IOException {
+        response.setContentType("text/html;charset=UTF-8");
+        try (PrintWriter out = response.getWriter()) {
+            /* TODO output your page here. You may use following sample code. */
+            out.println("<!DOCTYPE html>");
+            out.println("<html>");
+            out.println("<head>");
+            out.println("<title>Servlet AgregarValoracion</title>");            
+            out.println("</head>");
+            out.println("<body>");
+            out.println("<h1>Servlet AgregarValoracion at " + request.getContextPath() + "</h1>");
+            out.println("</body>");
+            out.println("</html>");
+        }
+    }
+
+    // <editor-fold defaultstate="collapsed" desc="HttpServlet methods. Click on the + sign on the left to edit the code.">
+    /**
+     * Handles the HTTP <code>GET</code> method.
+     *
+     * @param request servlet request
+     * @param response servlet response
+     * @throws ServletException if a servlet-specific error occurs
+     * @throws IOException if an I/O error occurs
+     */
+    @Override
+    protected void doGet(HttpServletRequest request, HttpServletResponse response)
+            throws ServletException, IOException {
+        processRequest(request, response);
+    }
+
+    /**
+     * Handles the HTTP <code>POST</code> method.
+     *
+     * @param request servlet request
+     * @param response servlet response
+     * @throws ServletException if a servlet-specific error occurs
+     * @throws IOException if an I/O error occurs
+     */
+    @Override
+    protected void doPost(HttpServletRequest request, HttpServletResponse response)
+            throws ServletException, IOException {
+        processRequest(request, response);
+    }
+
+    /**
+     * Returns a short description of the servlet.
+     *
+     * @return a String containing servlet description
+     */
+    @Override
+    public String getServletInfo() {
+        return "Short description";
+    }// </editor-fold>
+
+}
diff --git a/UyTube_mobile/src/java/com/uytube/AgregarVideoAListaReproduccion.java b/UyTube_mobile/src/java/com/uytube/AgregarVideoAListaReproduccion.java
new file mode 100644
index 0000000000000000000000000000000000000000..afd303fd119efc082d54c22beca30044337c4d56
--- /dev/null
+++ b/UyTube_mobile/src/java/com/uytube/AgregarVideoAListaReproduccion.java
@@ -0,0 +1,73 @@
+/*
+ * To change this license header, choose License Headers in Project Properties.
+ * To change this template file, choose Tools | Templates
+ * and open the template in the editor.
+ */
+package com.uytube;
+
+import logica.controladores.DtUsuario;
+import java.io.IOException;
+import javax.servlet.RequestDispatcher;
+import javax.servlet.ServletException;
+import javax.servlet.http.HttpServlet;
+import javax.servlet.http.HttpServletRequest;
+import javax.servlet.http.HttpServletResponse;
+import logica.controladores.CUsuario;
+import logica.controladores.CUsuarioService;
+
+/**
+ *
+ * @author administrador
+ */
+public class AgregarVideoAListaReproduccion extends HttpServlet {
+    // Ejemplo: localhost:8084/uytube/lista-agregar-video?idvideo=13&idlista=10
+
+    @Override
+    protected void doGet(HttpServletRequest request, HttpServletResponse response)
+            throws ServletException, IOException {
+        Funciones.Funciones.showLog(request, response);
+        try {
+            CUsuarioService servicio = new CUsuarioService();
+            CUsuario sys = servicio.getCUsuarioPort();
+            
+            if (!sys.sesionIniciada()){
+                String msj = "No puedes acceder a esta página";
+                Funciones.Funciones.showLog("Acceso denegado", msj);
+                RequestDispatcher rd; //objeto para despachar
+                request.setAttribute("mensajeError", msj);
+                rd = request.getRequestDispatcher("/401.jsp");
+                rd.forward(request, response);
+                return;
+            }
+            
+            String pIDVideo = request.getParameter("idvideo");
+            String pIDLista = request.getParameter("idlista");
+            int IDVideo = Integer.valueOf(pIDVideo);
+            int IDLista = Integer.valueOf(pIDLista);
+
+            DtUsuario usuActual = sys.obtenerUsuarioActual();
+            sys.seleccionarUsuario(sys.obtenerPropietarioDeVideo(IDVideo).getNickname());
+            sys.seleccionarVideo(IDVideo);
+            sys.agregarVideoAListaDeReproduccion(IDLista);
+
+            response.sendRedirect("lista-consultar?id="+IDLista);
+        } catch (Exception e) {
+            Funciones.Funciones.showLog(e);
+            RequestDispatcher rd; //objeto para despachar
+            request.setAttribute("mensajeError", e.getMessage());
+            rd = request.getRequestDispatcher("/404.jsp");
+            rd.forward(request, response);
+        }
+    }
+
+    /**
+     * Returns a short description of the servlet.
+     *
+     * @return a String containing servlet description
+     */
+    @Override
+    public String getServletInfo() {
+        return "Short description";
+    }// </editor-fold>
+
+}
diff --git a/UyTube_mobile/src/java/com/uytube/AltaListaReproduccion.java b/UyTube_mobile/src/java/com/uytube/AltaListaReproduccion.java
new file mode 100644
index 0000000000000000000000000000000000000000..cf93b5016ac8a4393c84dacc66d7fa0c5fd16549
--- /dev/null
+++ b/UyTube_mobile/src/java/com/uytube/AltaListaReproduccion.java
@@ -0,0 +1,153 @@
+/*
+ * To change this license header, choose License Headers in Project Properties.
+ * To change this template file, choose Tools | Templates
+ * and open the template in the editor.
+ */
+package com.uytube;
+
+import logica.controladores.DtListaDeReproduccion;
+import logica.controladores.DtUsuario;
+import logica.controladores.Privacidad;
+import logica.controladores.TipoListaDeReproduccion;
+import java.io.IOException;
+import java.util.ArrayList;
+import javax.servlet.RequestDispatcher;
+import javax.servlet.ServletException;
+import javax.servlet.http.HttpServlet;
+import javax.servlet.http.HttpServletRequest;
+import javax.servlet.http.HttpServletResponse;
+import logica.controladores.CUsuario;
+import logica.controladores.CUsuarioService;
+
+/**
+ *
+ * @author administrador
+ */
+public class AltaListaReproduccion extends HttpServlet {
+
+    // <editor-fold defaultstate="collapsed" desc="HttpServlet methods. Click on the + sign on the left to edit the code.">
+    /**
+     * Handles the HTTP <code>GET</code> method.
+     *
+     * @param request servlet request
+     * @param response servlet response
+     * @throws ServletException if a servlet-specific error occurs
+     * @throws IOException if an I/O error occurs
+     */
+    @Override
+    protected void doGet(HttpServletRequest request, HttpServletResponse response)
+            throws ServletException, IOException {
+        Funciones.Funciones.showLog(request, response);
+        try {
+            //IUsuario sys = Fabrica.getInstancia().getIUsuario();
+            CUsuarioService servicio = new CUsuarioService();
+            CUsuario sys = servicio.getCUsuarioPort();
+
+            if (!sys.sesionIniciada()) {
+                String msj = "No puedes acceder a esta página";
+                Funciones.Funciones.showLog("Acceso denegado", msj);
+                RequestDispatcher rd; //objeto para despachar
+                request.setAttribute("mensajeError", msj);
+                rd = request.getRequestDispatcher("/401.jsp");
+                rd.forward(request, response);
+                return;
+            }
+
+            boolean sesionIniciada = sys.sesionIniciada();
+            ArrayList<String> cate = (ArrayList<String>) sys.listarCategorias();
+
+            request.setAttribute("Categorias", cate);
+            request.setAttribute("sesionIniciada", sesionIniciada);
+
+            RequestDispatcher rd; //objeto para despachar
+            rd = request.getRequestDispatcher("/AltaListaReproduccion.jsp");
+            rd.forward(request, response);
+        } catch (Exception e) {
+            Funciones.Funciones.showLog(e);
+            RequestDispatcher rd; //objeto para despachar
+            request.setAttribute("mensajeError", e.getMessage());
+            rd = request.getRequestDispatcher("/404.jsp");
+            rd.forward(request, response);
+        }
+
+    }
+
+    /**
+     * Handles the HTTP <code>POST</code> method.
+     *
+     * @param request servlet request
+     * @param response servlet response
+     * @throws ServletException if a servlet-specific error occurs
+     * @throws IOException if an I/O error occurs
+     */
+    @Override
+    protected void doPost(HttpServletRequest request, HttpServletResponse response)
+            throws ServletException, IOException {
+        Funciones.Funciones.showLog(request, response);
+        try {
+            CUsuarioService servicio = new CUsuarioService();
+            CUsuario sys = servicio.getCUsuarioPort();
+
+            if (!sys.sesionIniciada()) {
+                String msj = "No puedes acceder a esta página";
+                Funciones.Funciones.showLog("Acceso denegado", msj);
+                RequestDispatcher rd; //objeto para despachar
+                request.setAttribute("mensajeError", msj);
+                rd = request.getRequestDispatcher("/401.jsp");
+                rd.forward(request, response);
+                return;
+            }
+
+            String pNombreLista = request.getParameter("nombreL");
+            String pPrivacidad = request.getParameter("privacidad_1");
+            String pCategoria = request.getParameter("categoria");
+
+            DtUsuario usu = sys.obtenerUsuarioActual();
+
+            Privacidad priv = Privacidad.PRIVADO;
+            if (pPrivacidad != null && pPrivacidad.equals("PUBLICO")) {
+                priv = Privacidad.PUBLICO;
+            }
+
+            DtListaDeReproduccion listRepo = new DtListaDeReproduccion();
+            listRepo.setId(0);
+            listRepo.setNombre(pNombreLista);
+            listRepo.setPrivacidad(priv);
+            listRepo.setTipo(TipoListaDeReproduccion.PARTICULAR);
+            listRepo.setCategoria(pCategoria);
+            
+            sys.altaListaDeReproduccionParticular(listRepo);
+
+            sys.seleccionarUsuario(sys.obtenerUsuarioActual().getNickname());
+            ArrayList<DtListaDeReproduccion> listas = (ArrayList<DtListaDeReproduccion>)sys.listarListasDeReproduccionDeUsuario(true);
+
+            int idNuevaLista = 0;
+            for (DtListaDeReproduccion l : listas) {
+                if (l.getId() > idNuevaLista) {
+                    idNuevaLista = l.getId();
+                }
+            }
+
+            response.sendRedirect("lista-consultar?id=" + idNuevaLista);
+
+        } catch (Exception e) {
+            Funciones.Funciones.showLog(e);
+            RequestDispatcher rd; //objeto para despachar
+            request.setAttribute("mensajeError", e.getMessage());
+            rd = request.getRequestDispatcher("/404.jsp");
+            rd.forward(request, response);
+        }
+
+    }
+
+    /**
+     * Returns a short description of the servlet.
+     *
+     * @return a String containing servlet description
+     */
+    @Override
+    public String getServletInfo() {
+        return "Short description";
+    }// </editor-fold>
+
+}
diff --git a/UyTube_mobile/src/java/com/uytube/AltaUsuario.java b/UyTube_mobile/src/java/com/uytube/AltaUsuario.java
new file mode 100644
index 0000000000000000000000000000000000000000..c399688f988641a464266448e56cc6b91802c090
--- /dev/null
+++ b/UyTube_mobile/src/java/com/uytube/AltaUsuario.java
@@ -0,0 +1,172 @@
+/*
+ * To change this license header, choose License Headers in Project Properties.
+ * To change this template file, choose Tools | Templates
+ * and open the template in the editor.
+ */
+package com.uytube;
+
+import logica.controladores.DtCanal;
+import logica.controladores.DtImagenUsuario;
+import logica.controladores.DtUsuario;
+import logica.controladores.Filtrado;
+import logica.controladores.Privacidad;
+import java.io.IOException;
+import java.io.InputStream;
+import java.nio.file.Paths;
+import java.text.SimpleDateFormat;
+import java.text.ParseException;
+import java.util.Date;
+import javax.servlet.RequestDispatcher;
+import javax.servlet.ServletException;
+import javax.servlet.annotation.MultipartConfig;
+import javax.servlet.http.HttpServlet;
+import javax.servlet.http.HttpServletRequest;
+import javax.servlet.http.HttpServletResponse;
+import javax.servlet.http.Part;
+import logica.controladores.CUsuario;
+import logica.controladores.CUsuarioService;
+import logica.controladores.Fecha;
+
+@MultipartConfig
+public class AltaUsuario extends HttpServlet {
+
+    // <editor-fold defaultstate="collapsed" desc="HttpServlet methods. Click on the + sign on the left to edit the code.">
+    /**
+     * Handles the HTTP <code>GET</code> method.
+     *
+     * @param request servlet request
+     * @param response servlet response
+     * @throws ServletException if a servlet-specific error occurs
+     * @throws IOException if an I/O error occurs
+     */
+    @Override
+    protected void doGet(HttpServletRequest request, HttpServletResponse response)
+            throws ServletException, IOException {
+        Funciones.Funciones.showLog(request, response);
+        try {
+            CUsuarioService servicio = new CUsuarioService();
+            CUsuario sys = servicio.getCUsuarioPort();
+            if (sys.sesionIniciada()){
+                response.sendRedirect("");
+                return;
+            }
+            
+            RequestDispatcher rd; //objeto para despachar
+            rd = request.getRequestDispatcher("/AltaUsuario.jsp");
+            rd.forward(request, response);
+        } catch (Exception e) {
+            Funciones.Funciones.showLog(e);
+            RequestDispatcher rd; //objeto para despachar
+            request.setAttribute("mensajeError", e.getMessage());
+            rd = request.getRequestDispatcher("/404.jsp");
+            rd.forward(request, response);
+        }
+
+    }
+
+    /**
+     * Handles the HTTP <code>POST</code> method.
+     *
+     * @param request servlet request
+     * @param response servlet response
+     * @throws ServletException if a servlet-specific error occurs
+     * @throws IOException if an I/O error occurs
+     */
+    @Override
+    protected void doPost(HttpServletRequest request, HttpServletResponse response)
+            throws ServletException, IOException {
+        Funciones.Funciones.showLog(request, response);
+        try {
+            String pNickname = request.getParameter("nickname");
+            String pNombre = request.getParameter("nombre");
+            String pApellido = request.getParameter("apellido");
+            String pEmail = request.getParameter("email");
+            String pFechaNa = request.getParameter("fechaNa");
+            String pPassword = request.getParameter("password");
+            String pImaguen = request.getParameter("imagen");
+            String pPrivacidad = request.getParameter("privacidad");
+            String pCanal = request.getParameter("canal");
+            String pDescripcion = request.getParameter("descripcion");
+            
+            CUsuarioService servicio = new CUsuarioService();
+            CUsuario sys = servicio.getCUsuarioPort();
+
+            SimpleDateFormat formato = new SimpleDateFormat("yyyy-mm-dd");
+            Date fechaDate = null;
+
+            try {
+                fechaDate = formato.parse(pFechaNa);
+            } catch (ParseException ex) {
+                RequestDispatcher rd; //objeto para despachar
+                rd = request.getRequestDispatcher("/");
+                rd.forward(request, response);
+            }
+            java.sql.Date data = new java.sql.Date(fechaDate.getTime());
+            
+            
+            Fecha f = new Fecha();
+            f.setAnio(data.getYear()-1900);
+            f.setDia(data.getDate());
+            f.setMes(data.getMonth());
+                    
+            DtUsuario Usu = new DtUsuario();
+            Usu.setNickname(pNickname);
+            Usu.setNombre(pNombre);
+            Usu.setApellido(pApellido);
+            Usu.setContrasenia(pPassword);
+            Usu.setFechaNacimiento(f);
+            Usu.setCorreo(pEmail);
+            Usu.setImagen(pImaguen);
+            Usu.setCantSeguidores(0);
+            
+              
+            Privacidad Priv = Privacidad.PRIVADO;
+            if (pPrivacidad != null && pPrivacidad.equals("PUBLICO")) {
+                Priv = Privacidad.PUBLICO;
+            }
+            DtCanal CanUsu = new DtCanal();
+            CanUsu.setId(0);
+            CanUsu.setNombre(pCanal);
+            CanUsu.setDescripcion(pDescripcion);
+            CanUsu.setPrivacidad(Priv);
+            
+            sys.altaUsuarioCanal(Usu, CanUsu);
+            DtUsuario nuevoUsuario = sys.obtenerUsuarioActual();
+            
+            Part partImagen = request.getPart("imagen");
+            String nombreArchivo = Paths.get(partImagen.getSubmittedFileName()).getFileName().toString();
+            InputStream archivoContenido = partImagen.getInputStream();
+            if (archivoContenido.available() > 0) {
+                byte[] byteArr = new byte[archivoContenido.available()];
+                archivoContenido.read(byteArr);
+                DtImagenUsuario dtiu = new DtImagenUsuario();
+                dtiu.setNickname(nuevoUsuario.getNickname());
+                dtiu.setImagen(byteArr);
+                dtiu.setNombreArchivo(nombreArchivo);
+                sys.altaImagenDeUsuario(dtiu);
+            }
+            
+            request.getSession().setMaxInactiveInterval(14400);
+            request.getSession().setAttribute("usuario", nuevoUsuario);
+            response.sendRedirect("usuario-consultar?id=" + Usu.getNickname());
+            
+        } catch (Exception e) {
+            Funciones.Funciones.showLog(e);
+            RequestDispatcher rd; //objeto para despachar
+            request.setAttribute("mensajeError", e.getMessage());
+            rd = request.getRequestDispatcher("/404.jsp");
+            rd.forward(request, response);
+        }
+    }
+
+    @Override
+    protected void doDelete(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
+        super.doDelete(req, resp); //To change body of generated methods, choose Tools | Templates.
+    }
+
+    @Override
+    public String getServletInfo() {
+        return "Short description";
+    }// </editor-fold>
+
+}
diff --git a/UyTube_mobile/src/java/com/uytube/AltaVideo.java b/UyTube_mobile/src/java/com/uytube/AltaVideo.java
new file mode 100644
index 0000000000000000000000000000000000000000..5843962d9e03666d5d64cda3b1b74d5dd6121b7e
--- /dev/null
+++ b/UyTube_mobile/src/java/com/uytube/AltaVideo.java
@@ -0,0 +1,184 @@
+/*
+ * To change this license header, choose License Headers in Project Properties.
+ * To change this template file, choose Tools | Templates
+ * and open the template in the editor.
+ */
+package com.uytube;
+
+import logica.controladores.DtVideo;
+import logica.controladores.Privacidad;
+import java.io.IOException;
+import java.text.ParseException;
+import java.text.SimpleDateFormat;
+import java.util.Date;
+import java.sql.Time;
+import java.util.ArrayList;
+import javax.servlet.RequestDispatcher;
+import javax.servlet.ServletException;
+import javax.servlet.http.HttpServlet;
+import javax.servlet.http.HttpServletRequest;
+import javax.servlet.http.HttpServletResponse;
+import logica.controladores.CUsuario;
+import logica.controladores.CUsuarioService;
+import logica.controladores.Duracion;
+import logica.controladores.Fecha;
+
+/**
+ *
+ * @author administrador
+ */
+public class AltaVideo extends HttpServlet {
+
+    /**
+     * Handles the HTTP <code>GET</code> method.
+     *
+     * @param request servlet request
+     * @param response servlet response
+     * @throws ServletException if a servlet-specific error occurs
+     * @throws IOException if an I/O error occurs
+     */
+    @Override
+    protected void doGet(HttpServletRequest request, HttpServletResponse response)
+            throws ServletException, IOException {
+        Funciones.Funciones.showLog(request, response);
+        try {
+            CUsuarioService servicio = new CUsuarioService();
+            CUsuario sys = servicio.getCUsuarioPort();
+            
+            if (!sys.sesionIniciada()){
+                String msj = "No puedes acceder a esta página";
+                Funciones.Funciones.showLog("Acceso denegado", msj);
+                RequestDispatcher rd; //objeto para despachar
+                request.setAttribute("mensajeError", msj);
+                rd = request.getRequestDispatcher("/401.jsp");
+                rd.forward(request, response);
+                return;
+            }
+            
+            boolean sesionIniciada = sys.sesionIniciada();
+            ArrayList<String> cate = (ArrayList<String>)sys.listarCategorias();
+
+            request.setAttribute("Categorias", cate);
+            request.setAttribute("sesionIniciada", sesionIniciada);
+
+            RequestDispatcher rd; //objeto para despachar
+            rd = request.getRequestDispatcher("/AltaVideo.jsp");
+            rd.forward(request, response);
+        } catch (Exception e) {
+            Funciones.Funciones.showLog(e);
+            RequestDispatcher rd; //objeto para despachar
+            request.setAttribute("mensajeError", e.getMessage());
+            rd = request.getRequestDispatcher("/404.jsp");
+            rd.forward(request, response);
+        }
+
+    }
+
+    /**
+     * Handles the HTTP <code>POST</code> method.
+     *
+     * @param request servlet request
+     * @param response servlet response
+     * @throws ServletException if a servlet-specific error occurs
+     * @throws IOException if an I/O error occurs
+     */
+    @Override
+    protected void doPost(HttpServletRequest request, HttpServletResponse response)
+            throws ServletException, IOException {
+        Funciones.Funciones.showLog(request, response);
+        try {
+            CUsuarioService servicio = new CUsuarioService();
+            CUsuario sys = servicio.getCUsuarioPort();
+            
+            if (!sys.sesionIniciada()){
+                String msj = "No puedes acceder a esta página";
+                Funciones.Funciones.showLog("Acceso denegado", msj);
+                RequestDispatcher rd; //objeto para despachar
+                request.setAttribute("mensajeError", msj);
+                rd = request.getRequestDispatcher("/401.jsp");
+                rd.forward(request, response);
+                return;
+            }
+            
+            String pNombre = request.getParameter("nombre");
+            String pDuracion = request.getParameter("duracion");
+            String pUrl = request.getParameter("url");
+            String pFecha = request.getParameter("fecha");
+            String pDescripcion = request.getParameter("descripcion");
+            String pCategoria = request.getParameter("categoria");
+            
+            //============ Casteo de string a date =================================
+            SimpleDateFormat formato = new SimpleDateFormat("yyyy-mm-dd");
+            Date fechaDate = null;
+            try {
+                fechaDate = formato.parse(pFecha);
+            } catch (ParseException ex) {
+                RequestDispatcher rd; //objeto para despachar
+                rd = request.getRequestDispatcher("/");
+                rd.forward(request, response);
+            }
+            java.sql.Date data = new java.sql.Date(fechaDate.getTime());
+            //======================================================================
+            
+            //============= Casteo de string a Time ================================
+            Time duracion = java.sql.Time.valueOf(pDuracion);
+            //======================================================================
+
+            Fecha f = new Fecha();
+            f.setAnio(data.getYear());
+            f.setMes(data.getMonth());
+            f.setDia(data.getDate());
+            
+            Duracion d = new Duracion();
+            d.setHoras(duracion.getHours());
+            d.setMinutos(duracion.getMinutes());
+            d.setSegundos(duracion.getSeconds());
+            
+            DtVideo vid = new DtVideo();
+            vid.setId(0);
+            vid.setNombre(pNombre);
+            vid.setDescripcion(pDescripcion);
+            vid.setDuracion(d);
+            vid.setFechaPublicacion(f);
+            vid.setUrlVideoOriginal(pUrl);
+            vid.setPrivacidad(Privacidad.PRIVADO);
+            vid.setCategoria(pCategoria);
+            vid.setCantLikes(0);
+            vid.setCantDisLikes(0);
+                    
+                    
+            sys.altaVideo(vid);
+            
+            sys.seleccionarUsuario(sys.obtenerUsuarioActual().getNickname());
+            ArrayList<DtVideo> videos = (ArrayList<DtVideo>)sys.listarVideosDeUsuario();
+            
+            int idNuevoVideo = 0;
+            for (DtVideo v : videos){
+                if (v.getId() > idNuevoVideo){
+                    idNuevoVideo = v.getId();
+                }
+            }
+            
+            response.sendRedirect("video-consultar?id=" + idNuevoVideo);
+            
+        } catch (Exception e) {
+            Funciones.Funciones.showLog(e);
+            RequestDispatcher rd; //objeto para despachar
+            request.setAttribute("mensajeError", e.getMessage());
+            rd = request.getRequestDispatcher("/404.jsp");
+            rd.forward(request, response);
+        }
+
+    }
+
+    /**
+     * Returns a short description of the servlet.
+     *
+     * @return a String containing servlet description
+     */
+    @Override
+    public String getServletInfo() {
+        return "Short description";
+    }// </editor-fold>
+
+}
diff --git a/UyTube_mobile/src/java/com/uytube/BorrarUsuario.java b/UyTube_mobile/src/java/com/uytube/BorrarUsuario.java
new file mode 100644
index 0000000000000000000000000000000000000000..6c1cb4805a6a5e94df10e01104a70f502f5f7c26
--- /dev/null
+++ b/UyTube_mobile/src/java/com/uytube/BorrarUsuario.java
@@ -0,0 +1,62 @@
+/*
+ * To change this license header, choose License Headers in Project Properties.
+ * To change this template file, choose Tools | Templates
+ * and open the template in the editor.
+ */
+package com.uytube;
+
+import logica.controladores.CUsuario;
+import logica.controladores.CUsuarioService;
+import java.io.IOException;
+import javax.servlet.RequestDispatcher;
+import javax.servlet.ServletException;
+import javax.servlet.annotation.WebServlet;
+import javax.servlet.http.HttpServlet;
+import javax.servlet.http.HttpServletRequest;
+import javax.servlet.http.HttpServletResponse;
+
+/**
+ *
+ * @author Dofus
+ */
+@WebServlet(name = "BorrarUsuario", urlPatterns = {"/usuario-borrar"})
+public class BorrarUsuario extends HttpServlet {
+
+    protected void processRequest(HttpServletRequest request, HttpServletResponse response)
+            throws ServletException, IOException {
+    }
+
+    @Override
+    protected void doGet(HttpServletRequest request, HttpServletResponse response)
+            throws ServletException, IOException {
+        Funciones.Funciones.showLog(request, response);
+        try {
+            CUsuarioService Servicio = new CUsuarioService();
+            CUsuario sys = Servicio.getCUsuarioPort();
+            
+            if (!sys.sesionIniciada()){
+                String msj = "No puedes realizar esta acción";
+                Funciones.Funciones.showLog("Acceso denegado", msj);
+                RequestDispatcher rd; //objeto para despachar
+                request.setAttribute("mensajeError", msj);
+                rd = request.getRequestDispatcher("/401.jsp");
+                rd.forward(request, response);
+                return;
+            }
+            
+            sys.bajaUsuario();
+            request.getSession().invalidate();
+            
+            RequestDispatcher rd; //objeto para despachar
+            rd = request.getRequestDispatcher("/");
+            rd.forward(request, response);
+        } catch (Exception e) {
+            Funciones.Funciones.showLog(e);
+            RequestDispatcher rd; //objeto para despachar
+            request.setAttribute("mensajeError", e.getMessage());
+            rd = request.getRequestDispatcher("/404.jsp");
+            rd.forward(request, response);
+        }
+    }
+
+}
diff --git a/UyTube_mobile/src/java/com/uytube/Buscar.java b/UyTube_mobile/src/java/com/uytube/Buscar.java
new file mode 100644
index 0000000000000000000000000000000000000000..1a3555928180a4ffcf73272f181d9f695728ff38
--- /dev/null
+++ b/UyTube_mobile/src/java/com/uytube/Buscar.java
@@ -0,0 +1,108 @@
+/*
+ * To change this license header, choose License Headers in Project Properties.
+ * To change this template file, choose Tools | Templates
+ * and open the template in the editor.
+ */
+package com.uytube;
+
+import logica.controladores.Filtrado;
+import logica.controladores.Ordenacion;
+import java.io.IOException;
+import java.util.ArrayList;
+import javax.servlet.RequestDispatcher;
+import javax.servlet.ServletException;
+import javax.servlet.http.HttpServlet;
+import javax.servlet.http.HttpServletRequest;
+import javax.servlet.http.HttpServletResponse;
+import logica.controladores.CUsuario;
+import logica.controladores.CUsuarioService;
+
+/**
+ *
+ * @author administrador
+ */
+public class Buscar extends HttpServlet {
+
+    // <editor-fold defaultstate="collapsed" desc="HttpServlet methods. Click on the + sign on the left to edit the code.">
+    /**
+     * Handles the HTTP <code>GET</code> method.
+     *
+     * @param request servlet request
+     * @param response servlet response
+     * @throws ServletException if a servlet-specific error occurs
+     * @throws IOException if an I/O error occurs
+     */
+    @Override
+    protected void doGet(HttpServletRequest request, HttpServletResponse response)
+            throws ServletException, IOException {
+        Funciones.Funciones.showLog(request, response);
+        try {
+            CUsuarioService servicio = new CUsuarioService();
+            CUsuario sys = servicio.getCUsuarioPort();
+            //-----------------------------------------------------
+            String Categoria = request.getParameter("categoria");
+            String Texto = request.getParameter("texto");
+            String Filtro = request.getParameter("filtro");
+            String Orden = request.getParameter("orden");
+            //------------------------------------------------------
+            ArrayList<Object> Ret = null;
+            
+            if (Categoria == null || Categoria.equalsIgnoreCase("")) {
+                Filtrado Fil = Filtrado.TODO;
+                Ordenacion ord = Ordenacion.FECHA_DESCENDENTE;
+
+                if (Filtro != null && Filtro.equalsIgnoreCase("CANALES")) {
+                    Fil = Filtrado.CANALES;
+                }
+                if (Filtro != null && (Filtro.equalsIgnoreCase("LISTAS DE REPRODUCCION") || Filtro.equalsIgnoreCase("LISTAS_DE_REPRODUCCION") || Filtro.equalsIgnoreCase("LISTAS DE REPRODUCCIóN") || Filtro.equalsIgnoreCase("LISTAS_DE_REPRODUCCIÓN"))) {
+                    Fil = Filtrado.LISTAS_DE_REPRODUCCION;
+                }
+                if (Filtro != null && Filtro.equalsIgnoreCase("VIDEOS")) {
+                    Fil = Filtrado.VIDEOS;
+                }
+                if (Orden != null && (Orden.equalsIgnoreCase("ALFABÉTICO") || Orden.equalsIgnoreCase("ALFABETICO"))) {
+                    ord = Ordenacion.ALFABETICA_ASCENDENTE;
+                }
+
+                String comilla = "" + (char) 34;
+                String vacio = "";
+
+                if (Texto == null){
+                    Texto = "";
+                }else{
+                    Texto = Texto.replaceAll(comilla, vacio);
+                }
+                
+                Ret = (ArrayList<Object>) sys.buscar(Texto, Fil, ord);
+            } else {
+                Categoria = Categoria.toUpperCase();
+                Ret = (ArrayList<Object>) sys.buscarPorCategoria(Categoria);
+            }
+            Funciones.Funciones.showLog("Cantidad de resultados a devolver: ", String.valueOf(Ret.size()));
+
+            request.setAttribute("Lista", Ret);
+
+            RequestDispatcher rd; //objeto para despachar
+            rd = request.getRequestDispatcher("/Buscar.jsp");
+            rd.forward(request, response);
+            
+        } catch (Exception e) {
+            Funciones.Funciones.showLog(e);
+            RequestDispatcher rd; //objeto para despachar
+            request.setAttribute("mensajeError", e.getMessage());
+            rd = request.getRequestDispatcher("/404.jsp");
+            rd.forward(request, response);
+        }
+    }
+
+    /**
+     * Returns a short description of the servlet.
+     *
+     * @return a String containing servlet description
+     */
+    @Override
+    public String getServletInfo() {
+        return "Short description";
+    }// </editor-fold>
+
+}
diff --git a/UyTube_mobile/src/java/com/uytube/CerrarSesion.java b/UyTube_mobile/src/java/com/uytube/CerrarSesion.java
new file mode 100644
index 0000000000000000000000000000000000000000..f327567c92845cabf41dbaa67f4c37a1f7c1b863
--- /dev/null
+++ b/UyTube_mobile/src/java/com/uytube/CerrarSesion.java
@@ -0,0 +1,69 @@
+/*
+ * To change this license header, choose License Headers in Project Properties.
+ * To change this template file, choose Tools | Templates
+ * and open the template in the editor.
+ */
+package com.uytube;
+
+import java.io.IOException;
+import javax.servlet.RequestDispatcher;
+import javax.servlet.ServletException;
+import javax.servlet.http.HttpServlet;
+import javax.servlet.http.HttpServletRequest;
+import javax.servlet.http.HttpServletResponse;
+import javax.servlet.http.HttpSession;
+import logica.controladores.CUsuario;
+import logica.controladores.CUsuarioService;
+
+/**
+ *
+ * @author administrador
+ */
+public class CerrarSesion extends HttpServlet {
+
+    /**
+     * Handles the HTTP <code>GET</code> method.
+     *
+     * @param request servlet request
+     * @param response servlet response
+     * @throws ServletException if a servlet-specific error occurs
+     * @throws IOException if an I/O error occurs
+     */
+    @Override
+    protected void doGet(HttpServletRequest request, HttpServletResponse response)
+            throws ServletException, IOException {
+        Funciones.Funciones.showLog(request, response);
+        try {
+            CUsuarioService servicio = new CUsuarioService();
+            CUsuario sys = servicio.getCUsuarioPort();
+
+            // cierra la sesion HTTP (si es que hay una iniciada)
+            HttpSession session = request.getSession(false);
+            if (session != null) {
+                session.invalidate();
+            }
+            // Cierra la sesion en el sistema (si es que hay una iniciada)
+            if (sys.sesionIniciada()) {
+                sys.cerrarSesion();
+            }
+            response.sendRedirect("presentacion");
+        } catch (Exception e) {
+            Funciones.Funciones.showLog(e);
+            RequestDispatcher rd; //objeto para despachar
+            request.setAttribute("mensajeError", e.getMessage());
+            rd = request.getRequestDispatcher("/404.jsp");
+            rd.forward(request, response);
+        }
+    }
+
+    /**
+     * Returns a short description of the servlet.
+     *
+     * @return a String containing servlet description
+     */
+    @Override
+    public String getServletInfo() {
+        return "Short description";
+    }// </editor-fold>
+
+}
diff --git a/UyTube_mobile/src/java/com/uytube/ConsultaListaReproducion.java b/UyTube_mobile/src/java/com/uytube/ConsultaListaReproducion.java
new file mode 100644
index 0000000000000000000000000000000000000000..d22aab73e4a7f2a72985ac03391af34b90a04fda
--- /dev/null
+++ b/UyTube_mobile/src/java/com/uytube/ConsultaListaReproducion.java
@@ -0,0 +1,88 @@
+/*
+ * To change this license header, choose License Headers in Project Properties.
+ * To change this template file, choose Tools | Templates
+ * and open the template in the editor.
+ */
+package com.uytube;
+
+import logica.controladores.DtListaDeReproduccion;
+import logica.controladores.DtVideo;
+import java.io.IOException;
+import java.util.ArrayList;
+import javax.servlet.RequestDispatcher;
+import javax.servlet.ServletException;
+import javax.servlet.http.HttpServlet;
+import javax.servlet.http.HttpServletRequest;
+import javax.servlet.http.HttpServletResponse;
+import logica.controladores.CUsuario;
+import logica.controladores.CUsuarioService;
+
+/**
+ *
+ * @author administrador
+ */
+public class ConsultaListaReproducion extends HttpServlet {
+
+    // <editor-fold defaultstate="collapsed" desc="HttpServlet methods. Click on the + sign on the left to edit the code.">
+    /**
+     * Handles the HTTP <code>GET</code> method.
+     *
+     * @param request servlet request
+     * @param response servlet response
+     * @throws ServletException if a servlet-specific error occurs
+     * @throws IOException if an I/O error occurs
+     */
+    @Override
+    protected void doGet(HttpServletRequest request, HttpServletResponse response)
+            throws ServletException, IOException {
+        Funciones.Funciones.showLog(request, response);
+        try {
+            CUsuarioService servicio = new CUsuarioService();
+            CUsuario sys = servicio.getCUsuarioPort();
+            
+            boolean sesionIniciada = sys.sesionIniciada();
+            String lista = request.getParameter("id");
+            int idLista = Integer.parseInt(lista);
+            String usuario = sys.obtenerPropietarioDeListaDeReproduccion(idLista).getNickname();
+            
+            sys.seleccionarUsuario(usuario);
+            
+            DtListaDeReproduccion listas = sys.seleccionarListaDeReproduccion(idLista);
+            ArrayList <DtVideo> videos = (ArrayList <DtVideo>) sys.listarVideosDeListaDeReproduccion();
+            
+            boolean usuarioPropietario = false;
+            if (sesionIniciada) {
+                usuarioPropietario = sys.obtenerUsuarioActual().getNickname().equals(usuario);
+            }
+            
+            request.setAttribute("usuario", usuario);
+            request.setAttribute("propietario", usuarioPropietario);
+            request.setAttribute("videos", videos);
+            request.setAttribute("sesionIniciada", sesionIniciada);
+            request.setAttribute("listas", listas);
+            
+            RequestDispatcher rd; //objeto para despachar
+            rd = request.getRequestDispatcher("/ConsultarListaReproduccion.jsp");
+            rd.forward(request, response);
+            
+        } catch (Exception e) {
+            Funciones.Funciones.showLog(e);
+            RequestDispatcher rd; //objeto para despachar
+            request.setAttribute("mensajeError", e.getMessage());
+            rd = request.getRequestDispatcher("/404.jsp");
+            rd.forward(request, response);
+        }
+
+    }
+
+    /**
+     * Returns a short description of the servlet.
+     *
+     * @return a String containing servlet description
+     */
+    @Override
+    public String getServletInfo() {
+        return "Short description";
+    }// </editor-fold>
+
+}
diff --git a/UyTube_mobile/src/java/com/uytube/ConsultaUsuario.java b/UyTube_mobile/src/java/com/uytube/ConsultaUsuario.java
new file mode 100644
index 0000000000000000000000000000000000000000..85c0e446633dfcc83671f375d583180fcdaeacbf
--- /dev/null
+++ b/UyTube_mobile/src/java/com/uytube/ConsultaUsuario.java
@@ -0,0 +1,96 @@
+/*
+ * To change this license header, choose License Headers in Project Properties.
+ * To change this template file, choose Tools | Templates
+ * and open the template in the editor.
+ */
+package com.uytube;
+
+import logica.controladores.DtCanal;
+import logica.controladores.DtListaDeReproduccion;
+import logica.controladores.DtUsuario;
+import logica.controladores.DtVideo;
+import java.io.IOException;
+import java.util.ArrayList;
+import javax.servlet.RequestDispatcher;
+import javax.servlet.ServletException;
+import javax.servlet.http.HttpServlet;
+import javax.servlet.http.HttpServletRequest;
+import javax.servlet.http.HttpServletResponse;
+import logica.controladores.CUsuario;
+import logica.controladores.CUsuarioService;
+
+/**
+ *
+ * @author administrador
+ */
+public class ConsultaUsuario extends HttpServlet {
+
+    /**
+     * Handles the HTTP <code>GET</code> method.
+     *
+     * @param request servlet request
+     * @param response servlet response
+     * @throws ServletException if a servlet-specific error occurs
+     * @throws IOException if an I/O error occurs
+     */
+    @Override
+    protected void doGet(HttpServletRequest request, HttpServletResponse response)
+            throws ServletException, IOException {
+        Funciones.Funciones.showLog(request, response);
+        try {
+            CUsuarioService servicio = new CUsuarioService();
+            CUsuario sys = servicio.getCUsuarioPort();
+
+            String nick = request.getParameter("id");
+            String ps = request.getParameter("ps");
+            if (ps == null || ps.equals("")) {
+                ps = "VIDEOS";
+            }
+
+            DtUsuario usuario = sys.seleccionarUsuario(nick);
+            DtCanal canal = sys.obtenerCanalDeUsuario();
+            ArrayList<DtUsuario> seguidos = (ArrayList<DtUsuario>)sys.listarUsuarioSeguidos();
+            ArrayList<DtUsuario> seguidores = (ArrayList<DtUsuario>)sys.listarUsuarioSeguidores();
+            ArrayList<DtVideo> videos = (ArrayList<DtVideo>)sys.listarVideosDeUsuario();
+            ArrayList<DtListaDeReproduccion> listasRep = (ArrayList<DtListaDeReproduccion>)sys.listarListasDeReproduccionDeUsuario(true);
+            boolean sesionIniciada = sys.sesionIniciada();
+
+            boolean usuarioPropietario = false;
+            if (sesionIniciada) {
+                usuarioPropietario = sys.obtenerUsuarioActual().getNickname().equals(nick);
+            }
+
+            request.setAttribute("ps", ps);
+            request.setAttribute("usuario", usuario);
+            request.setAttribute("canal", canal);
+            request.setAttribute("seguidos", seguidos);
+            request.setAttribute("seguidores", seguidores);
+            request.setAttribute("videos", videos);
+            request.setAttribute("listasRep", listasRep);
+            request.setAttribute("propietario", usuarioPropietario);
+            request.setAttribute("sesionIniciada", sesionIniciada);
+
+            RequestDispatcher rd; //objeto para despachar
+            rd = request.getRequestDispatcher("/ConsultaUsuario.jsp");
+            rd.forward(request, response);
+
+        } catch (Exception e) {
+            Funciones.Funciones.showLog(e);
+            RequestDispatcher rd; //objeto para despachar
+            request.setAttribute("mensajeError", e.getMessage());
+            rd = request.getRequestDispatcher("/404.jsp");
+            rd.forward(request, response);
+        }
+    }
+
+    /**
+     * Returns a short description of the servlet.
+     *
+     * @return a String containing servlet description
+     */
+    @Override
+    public String getServletInfo() {
+        return "Short description";
+    }// </editor-fold>
+
+}
diff --git a/UyTube_mobile/src/java/com/uytube/ConsultaVideo.java b/UyTube_mobile/src/java/com/uytube/ConsultaVideo.java
new file mode 100644
index 0000000000000000000000000000000000000000..d36f3cc724b59af27dc377c690376463eaffde04
--- /dev/null
+++ b/UyTube_mobile/src/java/com/uytube/ConsultaVideo.java
@@ -0,0 +1,359 @@
+package com.uytube;
+
+import Funciones.Funciones;
+import logica.controladores.DtCanal;
+import logica.controladores.DtComentario;
+import logica.controladores.DtListaDeReproduccion;
+import logica.controladores.DtUsuario;
+import logica.controladores.DtValoracion;
+import logica.controladores.DtVideo;
+import logica.controladores.TipoValoracion;
+import java.io.IOException;
+import java.text.SimpleDateFormat;
+import java.util.ArrayList;
+import javax.servlet.RequestDispatcher;
+import javax.servlet.ServletException;
+import javax.servlet.http.HttpServlet;
+import javax.servlet.http.HttpServletRequest;
+import javax.servlet.http.HttpServletResponse;
+import logica.controladores.CUsuario;
+import logica.controladores.CUsuarioService;
+import logica.controladores.Fecha;
+
+public class ConsultaVideo extends HttpServlet {
+    
+    /**
+     * Handles the HTTP <code>GET</code> method.
+     *
+     * @param request servlet request
+     * @param response servlet response
+     * @throws ServletException if a servlet-specific error occurs
+     * @throws IOException if an I/O error occurs
+     */
+    @Override
+    protected void doGet(HttpServletRequest request, HttpServletResponse response)
+            throws ServletException, IOException {
+        Funciones.showLog(request, response);
+        try {
+            
+            CUsuarioService servicio = new CUsuarioService();
+            CUsuario sys = servicio.getCUsuarioPort();
+            
+            String strIDVideo = request.getParameter("id");
+            int idVideo = Integer.valueOf(strIDVideo);
+            
+            DtUsuario usuario = sys.obtenerPropietarioDeVideo(idVideo);
+            sys.seleccionarUsuario(usuario.getNickname());
+            DtCanal canal = sys.obtenerCanalDeUsuario();
+            DtVideo video = sys.seleccionarVideo(idVideo);
+            ArrayList<DtComentario> comentarios = (ArrayList<DtComentario>) sys.listarComentariosDeVideo();
+            DtValoracion valoracionDada = null;
+            ArrayList<DtValoracion> valoraciones = null;
+            boolean sesionIniciada = sys.sesionIniciada();
+            boolean propietarioDelVideo = false;
+            ArrayList<DtListaDeReproduccion> listas = null;
+            if (sesionIniciada) {
+                propietarioDelVideo = usuario.getNickname().equals(sys.obtenerUsuarioActual().getNickname());
+                valoracionDada = sys.obtenerValoracionDada();
+                if (propietarioDelVideo){
+                    valoraciones = (ArrayList<DtValoracion>) sys.obtenerValoracionesDeVideo();
+                }
+                sys.seleccionarUsuario(sys.obtenerUsuarioActual().getNickname());
+                listas = (ArrayList<DtListaDeReproduccion>) sys.listarListasDeReproduccionDeUsuario(true);
+                sys.seleccionarUsuario(sys.obtenerPropietarioDeVideo(idVideo).getNickname());
+            }
+            
+            String htmlComentarios = htmlDeSeccionDeComentarios(comentarios, sesionIniciada);
+            // no se si la siguiente linea es necesaria, pero por las dudas la pongo, para no dejar incoherencias en la logica
+            sys.seleccionarUsuario(usuario.getNickname());
+            request.setAttribute("usuario", usuario);
+            request.setAttribute("canal", canal);
+            request.setAttribute("video", video);
+            request.setAttribute("comentarios", htmlComentarios);
+            request.setAttribute("sesionIniciada", sesionIniciada);
+            request.setAttribute("propietarioDelVideo", propietarioDelVideo);
+            request.setAttribute("valoracionDada", valoracionDada);
+            request.setAttribute("valoraciones", valoraciones);
+            request.setAttribute("listas", listas);
+            RequestDispatcher rd; //objeto para despachar
+            rd = request.getRequestDispatcher("/ConsultaVideo.jsp");
+            rd.forward(request, response);
+        } catch (Exception e) {
+            Funciones.showLog(e);
+            RequestDispatcher rd; //objeto para despachar
+            request.setAttribute("mensajeError", e.getMessage());
+            rd = request.getRequestDispatcher("/404.jsp");
+            rd.forward(request, response);
+        }
+    }
+
+    /**
+     * Handles the HTTP <code>POST</code> method.
+     *
+     * @param request servlet request
+     * @param response servlet response
+     * @throws ServletException if a servlet-specific error occurs
+     * @throws IOException if an I/O error occurs
+     */
+    @Override
+    protected void doPost(HttpServletRequest request, HttpServletResponse response)
+            throws ServletException, IOException {
+        Funciones.showLog(request, response);
+        try {
+            CUsuarioService servicio = new CUsuarioService();
+            CUsuario sys = servicio.getCUsuarioPort();
+            
+            String accion = request.getParameter("accion");
+            String respuesta;
+            response.setContentType("text/html");  // Tipo de dato de la respuesta
+            response.setCharacterEncoding("UTF-8"); // Tipo de Codificación de caracteres
+            
+            // ---- Acciones relacionadas a VALORAR VIDEO ----
+            switch (accion) {
+                case "like":
+                case "disLike": {
+                    /**
+                     * Estimado programador que está leyendo esto:
+                     * El codigo que comento a continuacion deberia ser el
+                     * correcto para esta funcionalidad, pero por alguna extraña
+                     * razon no funciona y debi implementar un parche. El codigo
+                     * en cuestion falla al hacer la siguiente secuencia de
+                     * pasos: 1- Iniciar sesion en el sitio web 2- Consultar un
+                     * video que no posee ninguna valoracion 3- Indicar que te
+                     * gusta el video Sibien la página muestra los contadores
+                     * correctamente, este cambio no se ve reflejado en la base
+                     * de datos, lo cual genera inconsistencias al recargar la
+                     * página
+                     * Si
+                     * usted encuentra el verdadero problema y lo logra
+                     * solucionar de manera correcta, por favor comuniquese
+                     * conmigo
+                     */
+                    /**
+                     * En respuesta al comentario anterior:
+                     * Parece ser que el
+                     * error estaba en la logica, JPA hacia cosas raras.
+                     * Modifiqué la funcion seleccionarUsuario(nickname) en la
+                     * Logica para que si se intenta seleccionar al usuario que
+                     * tiene la sesion iniciada, se apunte a usuarioActual y no
+                     * a una copia de la entidad (generada por JPA)
+                     * Descomento
+                     * el codigo que parecia no funcionar y comento el otro
+                     * (aunque sospecho que tampoco funcionaba)
+                     */
+                    int idVideo = Integer.valueOf(request.getParameter("idVideo"));
+                    DtValoracion dtVal = null;
+                    switch (accion) {
+                        case "like":
+                            dtVal = new DtValoracion();
+                            dtVal.setVal(TipoValoracion.LIKE);
+                            dtVal.setNickname("");
+                            break;
+                        case "disLike":
+                            dtVal = new DtValoracion();
+                            dtVal.setVal(TipoValoracion.DISLIKE);
+                            dtVal.setNickname("");
+                            break;
+                    }       // se seleccionan el usuario due;o del video y el video (por las dudas)
+                    DtUsuario usuarioDuenioDelVideo = sys.obtenerPropietarioDeVideo(idVideo);
+                    sys.seleccionarUsuario(usuarioDuenioDelVideo.getNickname());
+                    sys.seleccionarVideo(idVideo);
+                    sys.valorarVideo(dtVal);
+                    // obtiene las cantidades de valoraciones
+                    DtVideo dtv = sys.seleccionarVideo(idVideo);
+                    String strCantLikes = String.valueOf(dtv.getCantLikes());
+                    String strCantDisLikes = String.valueOf(dtv.getCantDisLikes());
+                    // Las concatena para devolverlas
+                    respuesta = strCantLikes + ":" + strCantDisLikes;
+                    response.getWriter().write(respuesta);
+                    break;
+                    
+                    /*
+                    IAdmin parche = Fabrica.getInstancia().getIAdmin();
+                    
+                    int idVideo = Integer.valueOf(request.getParameter("idVideo"));
+                    DtValoracion dtVal = null;
+                    switch (accion) {
+                        case "like":
+                            dtVal = new DtValoracion(TipoValoracion.LIKE, "");
+                            break;
+                        case "disLike":
+                            dtVal = new DtValoracion(TipoValoracion.DISLIKE, "");
+                            break;
+                    }       // se seleccionan el usuario due;o del video y el video (por las dudas)
+                    DtUsuario usuarioDuenioDelVideo = parche.obtenerPropietarioDeVideo(idVideo);
+                    parche.seleccionarUsuarioActual(((DtUsuario)request.getSession().getAttribute("usuario")).getNickname());
+                    parche.seleccionarUsuario(usuarioDuenioDelVideo.getNickname());
+                    parche.seleccionarVideo(idVideo);
+                    parche.altaValoracion(dtVal);
+                    // obtiene las cantidades de valoraciones
+                    DtVideo dtv = parche.seleccionarVideo(idVideo);
+                    String strCantLikes = String.valueOf(dtv.getCantLikes());
+                    String strCantDisLikes = String.valueOf(dtv.getCantDisLikes());
+                    // Las concatena para devolverlas
+                    respuesta = strCantLikes + ":" + strCantDisLikes;
+                    response.getWriter().write(respuesta);
+                    break;
+                    */
+                }
+                // ---- Acciones relacionadas a COMENTAR VIDEO ----
+                case "comentarVideo":
+                case "responderComentario": {
+                    // Se extraen los datos recibidos
+                    String texto = request.getParameter("texto");
+                    int idVideo = Integer.valueOf(request.getParameter("idVideo"));
+                    int idComentario = -1;
+                    if (request.getParameter("idComentario") != null) {
+                        idComentario = Integer.valueOf(request.getParameter("idComentario"));
+                    }       // se seleccionan el usuario due;o del video y el video (por las dudas)
+                    DtUsuario usuarioDuenioDelVideo = sys.obtenerPropietarioDeVideo(idVideo);
+                    sys.seleccionarUsuario(usuarioDuenioDelVideo.getNickname());
+                    sys.seleccionarVideo(idVideo);
+                    // Crea el DT y lo manda al sistema
+                    DtComentario dtc = new DtComentario();
+                    dtc.setId(0);
+                    dtc.setNickname("");
+                    Fecha f = new Fecha();
+                    f.setAnio(Funciones.fechaActual().getYear()-1900);
+                    f.setDia(Funciones.fechaActual().getDate());
+                    f.setMes(Funciones.fechaActual().getMonth());
+                    dtc.setFecha(f);
+                    dtc.setTexto(texto);
+                    dtc.setNivelSubComentario(0);
+                    
+                    if (idComentario <= 0) {
+                        sys.altaComentario(dtc);
+                    } else {
+                        sys.altaSubComentario(dtc, idComentario);
+                    }       // se obtienen los comentarios y se genera el HTML para actualizar la p'pagina
+                    ArrayList<DtComentario> comentarios = (ArrayList<DtComentario>) sys.listarComentariosDeVideo();
+                    String htmlComentarios = htmlDeSeccionDeComentarios(comentarios, true);
+                    // la funcion 'obtenerImagenesDeUsuarios' selecciona usuarios asi que por las dudas lo vuelvo a seleccionar para que la logica quede coherente
+                    sys.seleccionarUsuario(usuarioDuenioDelVideo.getNickname());
+                    respuesta = htmlComentarios;
+                    response.getWriter().write(respuesta);
+                    break;
+                }
+                // ---- Acciones relacionadas a AGREGAR VIDEO A LISTA DE REPRODUCCION----
+                case "agregarALista":{
+                    
+                    int idVideo = Integer.valueOf(request.getParameter("idVideo"));
+                    int idLista = Integer.valueOf(request.getParameter("idLista"));
+                    
+                    sys.seleccionarUsuario(sys.obtenerPropietarioDeVideo(idVideo).getNickname());
+                    sys.seleccionarVideo(idVideo);
+                    sys.agregarVideoAListaDeReproduccion(idLista);
+                     
+                    
+                    respuesta = "ok";
+                    response.getWriter().write(respuesta);
+                    break;
+                }
+                case "quitarDeLista":{
+                    
+                    int idVideo = Integer.valueOf(request.getParameter("idVideo"));
+                    int idLista = Integer.valueOf(request.getParameter("idLista"));
+                    
+                    sys.seleccionarUsuario(sys.obtenerUsuarioActual().getNickname());
+                    sys.seleccionarListaDeReproduccion(idLista);
+                    sys.quitarVideoDeListaDeReproduccion(idVideo);
+                    sys.seleccionarUsuario(sys.obtenerPropietarioDeVideo(idVideo).getNickname());
+                    
+                    respuesta = "ok";
+                    response.getWriter().write(respuesta);
+                    break;
+                }
+                    
+                case "listarValoraciones":{
+                    int idVideo = Integer.valueOf(request.getParameter("idVideo"));
+                    respuesta = "";
+                    sys.seleccionarVideo(idVideo);
+                    ArrayList<DtValoracion> valoraciones = (ArrayList<DtValoracion>) sys.obtenerValoracionesDeVideo();
+                    for (DtValoracion val : valoraciones){
+                        respuesta += val.getNickname() + ":" + val.getVal() + ";";
+                    }
+                    response.getWriter().write(respuesta);
+                    break;
+                }
+                default:
+                    break;
+            }
+        } catch (Exception e) {
+            Funciones.showLog(e);
+            RequestDispatcher rd; //objeto para despachar
+            request.setAttribute("mensajeError", e.getMessage());
+            rd = request.getRequestDispatcher("/404.jsp");
+            rd.forward(request, response);
+        }
+    }
+    
+    /**
+     * Returns a short description of the servlet.
+     *
+     * @return a String containing servlet description
+     */
+    @Override
+    public String getServletInfo() {
+        return "Short description";
+    }// </editor-fold>
+    
+    
+    private String htmlDeSeccionDeComentarios(ArrayList<DtComentario> comentarios, boolean  mostrarBotonResponder){
+        if (comentarios == null || comentarios.isEmpty()){
+            return "";
+        }
+        
+        String ret = "";
+        DtComentario c = comentarios.remove(0);
+        String imgPerfil = "usuario-imagen?id=" + c.getNickname();
+        String strFecha = (c.getFecha().getAnio()) + "-" + (c.getFecha().getMes()) + "-" + (c.getFecha().getDia());
+        
+        ret += "    <div class=\"media\">";
+        ret += "        <img class=\"mr-3\" src=\"" + imgPerfil + "\" width=\"50\" height=\"50\">";
+        ret += "        <div class=\"media-body\">";
+        ret += "            <h5 class=\"mt-0\">";
+        ret += "                <a href=\"usuario-consultar?id=" + c.getNickname() + "\">";
+        ret += "                   " + c.getNickname();
+        ret += "                </a>";
+        ret += "            </h5>";
+        ret += "            " + c.getTexto() + " (" + strFecha + ")";
+        ret += "            <br>";
+        if (mostrarBotonResponder){
+            ret += "            <button type=\"button\" onmouseover=\"idComentario = this.getAttribute('value');\" value=\"" + c.getId() + "\" class=\"btn btn-primary responder\" data-toggle=\"modal\" data-target=\"#exampleModal\" data-whatever=\"@mdo\">Responder</button>";
+        }
+        ret += "            <br>";
+        
+        if ( (!comentarios.isEmpty()) && (comentarios.get(0).getNivelSubComentario() > c.getNivelSubComentario())){
+                ret += htmlDeSeccionDeComentarios(comentarios, mostrarBotonResponder);
+        }
+        
+        ret += "    </div>";
+        ret += "</div>";
+        
+        if ( (!comentarios.isEmpty()) && (comentarios.get(0).getNivelSubComentario() == c.getNivelSubComentario())){
+                ret += htmlDeSeccionDeComentarios(comentarios, mostrarBotonResponder);
+        }
+        return ret;
+    }
+    /*
+    // ESTRUCTURA DE UN COMENTARIO: 
+    <div class="media">
+        <img class="mr-3" src="IMAGEN DE PERFIL" width="50" height="50">
+        <div class="media-body">
+            <h5 class="mt-0">
+                <a href="usuario-consulta?id=NICKNAME DEL USUARIO">
+                    NICKNAME DEL USUARIO
+                </a>
+            </h5>
+            TEXTO DEL COMENTARIO (dd/mm/yyyy)
+            <br>
+            <button type="button" onmouseover="idComentario = this.getAttribute('value');" value="ID DE COMENTARIO" class="btn btn-primary responder" data-toggle="modal" data-target="#exampleModal" data-whatever="@mdo">Responder</button>
+            <br>
+            // RESPUESTAS DEL COMENTARIO
+        </div>
+    </div>
+    */
+    
+    
+    
+}
diff --git a/UyTube_mobile/src/java/com/uytube/ImagenUsuario.java b/UyTube_mobile/src/java/com/uytube/ImagenUsuario.java
new file mode 100644
index 0000000000000000000000000000000000000000..d93c8c1a4cfcf7708237421247b2c5b5f267cbc7
--- /dev/null
+++ b/UyTube_mobile/src/java/com/uytube/ImagenUsuario.java
@@ -0,0 +1,96 @@
+/*
+ * To change this license header, choose License Headers in Project Properties.
+ * To change this template file, choose Tools | Templates
+ * and open the template in the editor.
+ */
+package com.uytube;
+
+import logica.controladores.DtImagenUsuario;
+import java.io.IOException;
+import java.io.OutputStream;
+import javax.servlet.RequestDispatcher;
+import javax.servlet.ServletException;
+import javax.servlet.annotation.WebServlet;
+import javax.servlet.http.HttpServlet;
+import javax.servlet.http.HttpServletRequest;
+import javax.servlet.http.HttpServletResponse;
+import logica.controladores.CUsuario;
+import logica.controladores.CUsuarioService;
+
+/**
+ *
+ * @author Juan
+ */
+@WebServlet(name = "ImagenUsuario", urlPatterns = {"/usuario-imagen"})
+public class ImagenUsuario extends HttpServlet {
+
+    @Override
+    protected void doGet(HttpServletRequest request, HttpServletResponse response)
+            throws ServletException, IOException {
+        Funciones.Funciones.showLog(request, response);
+        try {
+            CUsuarioService servicio = new CUsuarioService();
+            CUsuario sys = servicio.getCUsuarioPort();
+            
+            String id = request.getParameter("id");
+            if (id == null)  id = "";
+            
+            byte[] byteArr;
+            
+            DtImagenUsuario iu = sys.obtenerImagenDeUsuario(id);
+            byteArr = iu.getImagen();
+            
+            
+            //byte[] byteArr = ImagePersistController.pathToByteArray("C:\\cnf.jpg");
+            
+            response.setContentType("image/" + getExtension(iu));
+            OutputStream sos = response.getOutputStream();
+            sos.write(byteArr);
+            sos.flush();
+            sos.close();
+            
+        } catch (Exception e) {
+            Funciones.Funciones.showLog(e);
+            RequestDispatcher rd; //objeto para despachar
+            request.setAttribute("mensajeError", e.getMessage());
+            rd = request.getRequestDispatcher("/404.jsp");
+            rd.forward(request, response);
+        }
+    }
+    
+    @Override
+    protected void doPost(HttpServletRequest request, HttpServletResponse response)
+            throws ServletException, IOException {
+        
+    }
+
+    /**
+     * Returns a short description of the servlet.
+     *
+     * @return a String containing servlet description
+     */
+    @Override
+    public String getServletInfo() {
+        return "Short description";
+    }// </editor-fold>
+    
+    //----------------------------------------
+    public String getExtension(DtImagenUsuario dtiu){
+        String ret = "";
+        String nombreArchivo = dtiu.getNombreArchivo();
+        
+        // recorre desde el final hacia el principio hasta encontrar un '.'  extrayendo la extension del archivo
+        for (int i = nombreArchivo.length() - 1; i >= 0; i--) {
+            if (nombreArchivo.charAt(i) == '.') {
+                break;
+            }
+            ret = nombreArchivo.charAt(i) + ret;
+        }
+        // si la extension obtenida es igual al nombre del archivo, entonces no se encontro ningun punto y el archivo no tienee extension
+        if (ret.equals(nombreArchivo)) {
+            return "";
+        }
+        // sino devuelve la extension obtenida
+        return ret;
+    }
+}
diff --git a/UyTube_mobile/src/java/com/uytube/IniciarSesion.java b/UyTube_mobile/src/java/com/uytube/IniciarSesion.java
new file mode 100644
index 0000000000000000000000000000000000000000..afbf53f0264bc08ae3096c100d384ab92c3d3d4b
--- /dev/null
+++ b/UyTube_mobile/src/java/com/uytube/IniciarSesion.java
@@ -0,0 +1,145 @@
+/*
+ * To change this license header, choose License Headers in Project Properties.
+ * To change this template file, choose Tools | Templates
+ * and open the template in the editor.
+ */
+package com.uytube;
+
+import logica.controladores.DtUsuario;
+import java.io.IOException;
+import javax.servlet.RequestDispatcher;
+import javax.servlet.ServletException;
+import javax.servlet.annotation.WebServlet;
+import javax.servlet.http.HttpServlet;
+import javax.servlet.http.HttpServletRequest;
+import javax.servlet.http.HttpServletResponse;
+import javax.servlet.http.HttpSession;
+import logica.controladores.CUsuario;
+import logica.controladores.CUsuarioService;
+
+/**
+ *
+ * @author administrador
+ */
+@WebServlet("/inicio-sescion")
+public class IniciarSesion extends HttpServlet {
+
+    /**
+     * Handles the HTTP <code>GET</code> method.
+     *
+     * @param request servlet request
+     * @param response servlet response
+     * @throws ServletException if a servlet-specific error occurs
+     * @throws IOException if an I/O error occurs
+     */
+    @Override
+    protected void doGet(HttpServletRequest request, HttpServletResponse response)
+            throws ServletException, IOException {
+        Funciones.Funciones.showLog(request, response);
+        try {
+            CUsuarioService servicio = new CUsuarioService();
+            CUsuario sys = servicio.getCUsuarioPort();
+            
+            if (sys.sesionIniciada()){
+                response.sendRedirect("");
+                return;
+            }
+
+            DtUsuario usuario = (DtUsuario) request.getSession().getAttribute("usuario");
+            boolean sesReq = usuario != null;
+            boolean sesSys = sys.sesionIniciada();
+
+            String tit = "Intento de carga de pagina /inicio-sesion";
+            String msj = "Sesion en req: " + sesReq;
+            msj += "\nSesion en sys: " + sesSys;
+            Funciones.Funciones.showLog(tit, msj);
+
+            /**
+             * Descripción del siguiente IF sesReq sesSys accion a realizar 0 0
+             * Redirigir a iniciar-sesion 0 1 Cerrar la sesion en sys y
+             * redirigir a iniciar-sesion 1 0 Cerrar la sesion en req y
+             * redirigir a iniciar-sesion 1 1 Redirigir a la pagina de inicio
+             */
+            if (!sesReq && !sesSys) {
+                // no se hace nada
+                // Abajo se envia a iniciar-sesion
+            } else if (!sesReq && sesSys) {
+                sys.cerrarSesion();
+                // Abajo se envia a iniciar-sesion
+            } else if (sesReq && !sesSys) {
+                request.getSession().invalidate();
+                // Abajo se envia a iniciar-sesion
+            } else if (sesReq && sesSys) {
+                response.sendRedirect("");
+                return;
+            }
+
+            RequestDispatcher rd; //objeto para despachar
+            rd = request.getRequestDispatcher("/IniciarSesion.jsp");
+            rd.forward(request, response);
+        } catch (Exception e) {
+            Funciones.Funciones.showLog(e);
+            RequestDispatcher rd; //objeto para despachar
+            request.setAttribute("mensajeError", e.getMessage());
+            rd = request.getRequestDispatcher("/404.jsp");
+            rd.forward(request, response);
+        }
+    }
+
+    /**
+     * Handles the HTTP <code>POST</code> method.
+     *
+     * @param request servlet request
+     * @param response servlet response
+     * @throws ServletException if a servlet-specific error occurs
+     * @throws IOException if an I/O error occurs
+     */
+    @Override
+    protected void doPost(HttpServletRequest request, HttpServletResponse response)
+            throws ServletException, IOException {
+        Funciones.Funciones.showLog(request, response);
+        try {
+            CUsuarioService servicio = new CUsuarioService();
+            CUsuario sys = servicio.getCUsuarioPort();
+
+            String paramUser = request.getParameter("user");
+            String paramPassword = request.getParameter("password");
+            RequestDispatcher rd; //objeto para despachar
+            
+            HttpSession sesion = request.getSession();
+            //sesion.invalidate();
+            
+            if (sys.iniciarSesionUsuario(paramUser, paramPassword) && sesion.getAttribute("usuario") == null) {
+                DtUsuario usuario = sys.obtenerUsuarioActual();
+                //si coincide usuario y password y además no hay sesión iniciada
+                sesion.setMaxInactiveInterval(14400);
+                sesion.setAttribute("usuario", usuario);
+
+                //redirijo a página con información de login exitoso
+                rd = request.getRequestDispatcher("/");
+            } else {
+                //lógica para login inválido
+                request.setAttribute("mostrarMsjError", true);
+                rd = request.getRequestDispatcher("/IniciarSesion.jsp");
+            }
+            rd.forward(request, response);
+        } catch (Exception e) {
+            Funciones.Funciones.showLog(e);
+            RequestDispatcher rd; //objeto para despachar
+            request.setAttribute("mensajeError", e.getMessage());
+            rd = request.getRequestDispatcher("/404.jsp");
+            rd.forward(request, response);
+        }
+    }
+
+    /**
+     * Returns a short description of the servlet.
+     *
+     * @return a String containing servlet description
+     */
+    @Override
+    public String getServletInfo() {
+        return "Short description";
+    }// </editor-fold>
+
+}
diff --git a/UyTube_mobile/src/java/com/uytube/ListarCategoria.java b/UyTube_mobile/src/java/com/uytube/ListarCategoria.java
new file mode 100644
index 0000000000000000000000000000000000000000..4d9b82ef7eee8c08bcadd68ab2576a7a29b45e3b
--- /dev/null
+++ b/UyTube_mobile/src/java/com/uytube/ListarCategoria.java
@@ -0,0 +1,86 @@
+/*
+ * To change this license header, choose License Headers in Project Properties.
+ * To change this template file, choose Tools | Templates
+ * and open the template in the editor.
+ */
+package com.uytube;
+
+import java.io.IOException;
+import java.io.PrintWriter;
+import javax.servlet.ServletException;
+import javax.servlet.http.HttpServlet;
+import javax.servlet.http.HttpServletRequest;
+import javax.servlet.http.HttpServletResponse;
+
+/**
+ *
+ * @author administrador
+ */
+public class ListarCategoria extends HttpServlet {
+
+    /**
+     * Processes requests for both HTTP <code>GET</code> and <code>POST</code>
+     * methods.
+     *
+     * @param request servlet request
+     * @param response servlet response
+     * @throws ServletException if a servlet-specific error occurs
+     * @throws IOException if an I/O error occurs
+     */
+    protected void processRequest(HttpServletRequest request, HttpServletResponse response)
+            throws ServletException, IOException {
+        response.setContentType("text/html;charset=UTF-8");
+        try (PrintWriter out = response.getWriter()) {
+            /* TODO output your page here. You may use following sample code. */
+            out.println("<!DOCTYPE html>");
+            out.println("<html>");
+            out.println("<head>");
+            out.println("<title>Servlet ListarCategoria</title>");            
+            out.println("</head>");
+            out.println("<body>");
+            out.println("<h1>Servlet ListarCategoria at " + request.getContextPath() + "</h1>");
+            out.println("</body>");
+            out.println("</html>");
+        }
+    }
+
+    // <editor-fold defaultstate="collapsed" desc="HttpServlet methods. Click on the + sign on the left to edit the code.">
+    /**
+     * Handles the HTTP <code>GET</code> method.
+     *
+     * @param request servlet request
+     * @param response servlet response
+     * @throws ServletException if a servlet-specific error occurs
+     * @throws IOException if an I/O error occurs
+     */
+    @Override
+    protected void doGet(HttpServletRequest request, HttpServletResponse response)
+            throws ServletException, IOException {
+        processRequest(request, response);
+    }
+
+    /**
+     * Handles the HTTP <code>POST</code> method.
+     *
+     * @param request servlet request
+     * @param response servlet response
+     * @throws ServletException if a servlet-specific error occurs
+     * @throws IOException if an I/O error occurs
+     */
+    @Override
+    protected void doPost(HttpServletRequest request, HttpServletResponse response)
+            throws ServletException, IOException {
+        processRequest(request, response);
+    }
+
+    /**
+     * Returns a short description of the servlet.
+     *
+     * @return a String containing servlet description
+     */
+    @Override
+    public String getServletInfo() {
+        return "Short description";
+    }// </editor-fold>
+
+}
diff --git a/UyTube_mobile/src/java/com/uytube/ListarUsuario.java b/UyTube_mobile/src/java/com/uytube/ListarUsuario.java
new file mode 100644
index 0000000000000000000000000000000000000000..27a648e3444943422443f8c2ae27a9008703aa0d
--- /dev/null
+++ b/UyTube_mobile/src/java/com/uytube/ListarUsuario.java
@@ -0,0 +1,86 @@
+/*
+ * To change this license header, choose License Headers in Project Properties.
+ * To change this template file, choose Tools | Templates
+ * and open the template in the editor.
+ */
+package com.uytube;
+
+import java.io.IOException;
+import java.io.PrintWriter;
+import javax.servlet.ServletException;
+import javax.servlet.http.HttpServlet;
+import javax.servlet.http.HttpServletRequest;
+import javax.servlet.http.HttpServletResponse;
+
+/**
+ *
+ * @author administrador
+ */
+public class ListarUsuario extends HttpServlet {
+
+    /**
+     * Processes requests for both HTTP <code>GET</code> and <code>POST</code>
+     * methods.
+     *
+     * @param request servlet request
+     * @param response servlet response
+     * @throws ServletException if a servlet-specific error occurs
+     * @throws IOException if an I/O error occurs
+     */
+    protected void processRequest(HttpServletRequest request, HttpServletResponse response)
+            throws ServletException, IOException {
+        response.setContentType("text/html;charset=UTF-8");
+        try (PrintWriter out = response.getWriter()) {
+            /* TODO output your page here. You may use following sample code. */
+            out.println("<!DOCTYPE html>");
+            out.println("<html>");
+            out.println("<head>");
+            out.println("<title>Servlet ListarUsuario</title>");            
+            out.println("</head>");
+            out.println("<body>");
+            out.println("<h1>Servlet ListarUsuario at " + request.getContextPath() + "</h1>");
+            out.println("</body>");
+            out.println("</html>");
+        }
+    }
+
+    // <editor-fold defaultstate="collapsed" desc="HttpServlet methods. Click on the + sign on the left to edit the code.">
+    /**
+     * Handles the HTTP <code>GET</code> method.
+     *
+     * @param request servlet request
+     * @param response servlet response
+     * @throws ServletException if a servlet-specific error occurs
+     * @throws IOException if an I/O error occurs
+     */
+    @Override
+    protected void doGet(HttpServletRequest request, HttpServletResponse response)
+            throws ServletException, IOException {
+        processRequest(request, response);
+    }
+
+    /**
+     * Handles the HTTP <code>POST</code> method.
+     *
+     * @param request servlet request
+     * @param response servlet response
+     * @throws ServletException if a servlet-specific error occurs
+     * @throws IOException if an I/O error occurs
+     */
+    @Override
+    protected void doPost(HttpServletRequest request, HttpServletResponse response)
+            throws ServletException, IOException {
+        processRequest(request, response);
+    }
+
+    /**
+     * Returns a short description of the servlet.
+     *
+     * @return a String containing servlet description
+     */
+    @Override
+    public String getServletInfo() {
+        return "Short description";
+    }// </editor-fold>
+
+}
diff --git a/UyTube_mobile/src/java/com/uytube/ModificarListaReproduccion.java b/UyTube_mobile/src/java/com/uytube/ModificarListaReproduccion.java
new file mode 100644
index 0000000000000000000000000000000000000000..20f6f34dc4d42c102dc7f1e30010916ee1b76f87
--- /dev/null
+++ b/UyTube_mobile/src/java/com/uytube/ModificarListaReproduccion.java
@@ -0,0 +1,161 @@
+/*
+ * To change this license header, choose License Headers in Project Properties.
+ * To change this template file, choose Tools | Templates
+ * and open the template in the editor.
+ */
+package com.uytube;
+
+import logica.controladores.DtListaDeReproduccion;
+import logica.controladores.DtUsuario;
+import logica.controladores.Privacidad;
+import logica.controladores.TipoListaDeReproduccion;
+import logica.controladores.CUsuario;
+import logica.controladores.CUsuarioService;
+import java.io.IOException;
+import java.util.ArrayList;
+import javax.servlet.RequestDispatcher;
+import javax.servlet.ServletException;
+import javax.servlet.http.HttpServlet;
+import javax.servlet.http.HttpServletRequest;
+import javax.servlet.http.HttpServletResponse;
+
+/**
+ *
+ * @author administrador
+ */
+public class ModificarListaReproduccion extends HttpServlet {
+
+    // <editor-fold defaultstate="collapsed" desc="HttpServlet methods. Click on the + sign on the left to edit the code.">
+    /**
+     * Handles the HTTP <code>GET</code> method.
+     *
+     * @param request servlet request
+     * @param response servlet response
+     * @throws ServletException if a servlet-specific error occurs
+     * @throws IOException if an I/O error occurs
+     */
+    
+    
+    @Override
+    protected void doGet(HttpServletRequest request, HttpServletResponse response)
+            throws ServletException, IOException {
+        Funciones.Funciones.showLog(request, response);
+        try {
+           // IUsuario sys = Fabrica.getInstancia().getIUsuario();
+            CUsuarioService servicio = new CUsuarioService();
+            CUsuario sys = servicio.getCUsuarioPort();
+            if (!sys.sesionIniciada()){
+                String msj = "No puedes acceder a esta página";
+                Funciones.Funciones.showLog("Acceso denegado", msj);
+                RequestDispatcher rd; //objeto para despachar
+                request.setAttribute("mensajeError", msj);
+                rd = request.getRequestDispatcher("/401.jsp");
+                rd.forward(request, response);
+                return;
+            }
+            
+            boolean sesionIniciada = sys.sesionIniciada();
+            ArrayList<String> cate =(ArrayList<String>) sys.listarCategorias();
+            String usuario = request.getParameter("idUsu");
+            String lista = request.getParameter("idList");
+            
+            sys.seleccionarUsuario(usuario);
+            int idLista = Integer.parseInt(lista);
+            
+            DtListaDeReproduccion listas = sys.seleccionarListaDeReproduccion(idLista);
+            
+            request.setAttribute("Categorias", cate);
+            request.setAttribute("sesionIniciada", sesionIniciada);
+            request.setAttribute("listas", listas);
+            
+            RequestDispatcher rd; //objeto para despachar
+            rd = request.getRequestDispatcher("/ModificarListaReproduccion.jsp");
+            rd.forward(request, response);
+            
+        } catch (Exception e) {
+            Funciones.Funciones.showLog(e);
+            RequestDispatcher rd; //objeto para despachar
+            request.setAttribute("mensajeError", e.getMessage());
+            rd = request.getRequestDispatcher("/404.jsp");
+            rd.forward(request, response);
+        }
+    }
+
+    /**
+     * Handles the HTTP <code>POST</code> method.
+     *
+     * @param request servlet request
+     * @param response servlet response
+     * @throws ServletException if a servlet-specific error occurs
+     * @throws IOException if an I/O error occurs
+     */
+    @Override
+    protected void doPost(HttpServletRequest request, HttpServletResponse response)
+            throws ServletException, IOException {
+        Funciones.Funciones.showLog(request, response);
+         try {
+            CUsuarioService servicio = new CUsuarioService();
+            CUsuario sys = servicio.getCUsuarioPort();
+            
+            if (!sys.sesionIniciada()){
+                String msj = "No puedes acceder a esta página";
+                Funciones.Funciones.showLog("Acceso denegado", msj);
+                RequestDispatcher rd; //objeto para despachar
+                request.setAttribute("mensajeError", msj);
+                rd = request.getRequestDispatcher("/401.jsp");
+                rd.forward(request, response);
+                return;
+            }
+            
+            String pPrivacidad = request.getParameter("privacidad");
+            String pCategoria = request.getParameter("categoria");
+            String pNombre = request.getParameter("nombre");
+            
+            DtUsuario usu = sys.obtenerUsuarioActual();
+            
+            Privacidad priv = Privacidad.PRIVADO;
+            if (pPrivacidad != null && pPrivacidad.equals("PUBLICO")) {
+                priv = Privacidad.PUBLICO;
+            }
+            
+            DtListaDeReproduccion listRepo = new DtListaDeReproduccion();
+            listRepo.setId(0);
+            listRepo.setNombre(pNombre);
+            listRepo.setPrivacidad(priv);
+            listRepo.setTipo(TipoListaDeReproduccion.PARTICULAR);
+            listRepo.setCategoria(pCategoria);
+            
+            sys.modificarListaDeReproduccion(listRepo);
+            
+            sys.seleccionarUsuario(sys.obtenerUsuarioActual().getNickname());
+            ArrayList<DtListaDeReproduccion> listas =(ArrayList<DtListaDeReproduccion>) sys.listarListasDeReproduccionDeUsuario(true);
+            
+            int idNuevaLista = 0;
+            for (DtListaDeReproduccion l : listas){
+                if (l.getNombre().equals(listRepo.getNombre())){
+                    idNuevaLista = l.getId();
+                }
+            }
+            response.sendRedirect("lista-consultar?id=" + idNuevaLista);
+            
+        } catch (Exception e) {
+            Funciones.Funciones.showLog(e);
+            RequestDispatcher rd; //objeto para despachar
+            request.setAttribute("mensajeError", e.getMessage());
+            rd = request.getRequestDispatcher("/404.jsp");
+            rd.forward(request, response);
+            
+        }
+    }
+
+    /**
+     * Returns a short description of the servlet.
+     *
+     * @return a String containing servlet description
+     */
+    @Override
+    public String getServletInfo() {
+        return "Short description";
+    }// </editor-fold>
+
+}
diff --git a/UyTube_mobile/src/java/com/uytube/ModificarUsuario.java b/UyTube_mobile/src/java/com/uytube/ModificarUsuario.java
new file mode 100644
index 0000000000000000000000000000000000000000..3abf3b8ee700e596fbbe4658270b59612982d284
--- /dev/null
+++ b/UyTube_mobile/src/java/com/uytube/ModificarUsuario.java
@@ -0,0 +1,203 @@
+/*
+ * To change this license header, choose License Headers in Project Properties.
+ * To change this template file, choose Tools | Templates
+ * and open the template in the editor.
+ */
+package com.uytube;
+
+import logica.controladores.DtCanal;
+import logica.controladores.DtImagenUsuario;
+import logica.controladores.DtUsuario;
+import logica.controladores.Privacidad;
+import java.io.IOException;
+import java.io.InputStream;
+import java.nio.file.Paths;
+import java.text.ParseException;
+import java.text.SimpleDateFormat;
+import java.util.Date;
+import javax.servlet.RequestDispatcher;
+import javax.servlet.ServletException;
+import javax.servlet.annotation.MultipartConfig;
+import javax.servlet.http.HttpServlet;
+import javax.servlet.http.HttpServletRequest;
+import javax.servlet.http.HttpServletResponse;
+import javax.servlet.http.Part;
+import logica.controladores.CUsuario;
+import logica.controladores.CUsuarioService;
+import logica.controladores.Fecha;
+
+/**
+ *
+ * @author administrador
+ */
+@MultipartConfig
+public class ModificarUsuario extends HttpServlet {
+
+    // <editor-fold defaultstate="collapsed" desc="HttpServlet methods. Click on the + sign on the left to edit the code.">
+    /**
+     * Handles the HTTP <code>GET</code> method.
+     *
+     * @param request servlet request
+     * @param response servlet response
+     * @throws ServletException if a servlet-specific error occurs
+     * @throws IOException if an I/O error occurs
+     */
+    @Override
+    protected void doGet(HttpServletRequest request, HttpServletResponse response)
+            throws ServletException, IOException {
+        Funciones.Funciones.showLog(request, response);
+        try {
+            CUsuarioService servicio = new CUsuarioService();
+            CUsuario sys = servicio.getCUsuarioPort();
+            
+            if (!sys.sesionIniciada()){
+                String msj = "No puedes acceder a esta página";
+                Funciones.Funciones.showLog("Acceso denegado", msj);
+                RequestDispatcher rd; //objeto para despachar
+                request.setAttribute("mensajeError", msj);
+                rd = request.getRequestDispatcher("/401.jsp");
+                rd.forward(request, response);
+                return;
+            }
+            
+            String nick = request.getParameter("id");
+
+            DtUsuario usuario = sys.seleccionarUsuario(nick);
+            DtCanal canal = sys.obtenerCanalDeUsuario();
+            boolean sesionIniciada = sys.sesionIniciada();
+
+            boolean usuarioPropietario = false;
+            if (sesionIniciada) {
+                usuarioPropietario = sys.obtenerUsuarioActual().getNickname().equals(nick);
+            }
+
+            request.setAttribute("sesionIniciada", sesionIniciada);
+            request.setAttribute("usuario", usuario);
+            request.setAttribute("canal", canal);
+
+            RequestDispatcher rd; //objeto para despachar
+            rd = request.getRequestDispatcher("/ModificarUsuario.jsp");
+            rd.forward(request, response);
+
+        } catch (Exception e) {
+            Funciones.Funciones.showLog(e);
+            RequestDispatcher rd; //objeto para despachar
+            request.setAttribute("mensajeError", e.getMessage());
+            rd = request.getRequestDispatcher("/404.jsp");
+            rd.forward(request, response);
+        }
+
+    }
+
+    /**
+     * Handles the HTTP <code>POST</code> method.
+     *
+     * @param request servlet request
+     * @param response servlet response
+     * @throws ServletException if a servlet-specific error occurs
+     * @throws IOException if an I/O error occurs
+     */
+    @Override
+    protected void doPost(HttpServletRequest request, HttpServletResponse response)
+            throws ServletException, IOException {
+        Funciones.Funciones.showLog(request, response);
+        try {
+            CUsuarioService servicio = new CUsuarioService();
+            CUsuario sys = servicio.getCUsuarioPort();
+            
+            if (!sys.sesionIniciada()){
+                String msj = "No puedes acceder a esta página";
+                Funciones.Funciones.showLog("Acceso denegado", msj);
+                RequestDispatcher rd; //objeto para despachar
+                request.setAttribute("mensajeError", msj);
+                rd = request.getRequestDispatcher("/401.jsp");
+                rd.forward(request, response);
+                return;
+            }
+            
+            String pNickname = request.getParameter("nickname");
+            String pNombre = request.getParameter("nombre");
+            String pApellido = request.getParameter("apellido");
+            String pEmail = request.getParameter("email");
+            String pFechaNa = request.getParameter("fechaNa");
+            String pPassword = request.getParameter("password");
+            String pPrivacidad = request.getParameter("privacidad");
+            String pCanal = request.getParameter("canal");
+            String pDescripcion = request.getParameter("descripcion");
+            String pImaguen = request.getParameter("imagen");
+
+            SimpleDateFormat formato = new SimpleDateFormat("yyyy-mm-dd");
+            Date fechaDate = null;
+            try {
+                fechaDate = formato.parse(pFechaNa);
+            } catch (ParseException ex) {
+                RequestDispatcher rd; //objeto para despachar
+                rd = request.getRequestDispatcher("/");
+                rd.forward(request, response);
+            }
+            java.sql.Date fecha_Nac = new java.sql.Date(fechaDate.getTime());
+
+            Privacidad Priv = Privacidad.PRIVADO;
+            if (pPrivacidad != null && pPrivacidad.equals("PUBLICO")) {
+                Priv = Privacidad.PUBLICO;
+            }
+            
+            DtCanal CanUsu = new DtCanal();
+            CanUsu.setId(0);
+            CanUsu.setNombre(pCanal);
+            CanUsu.setDescripcion(pDescripcion);
+            CanUsu.setPrivacidad(Priv);
+            
+            DtUsuario Usu = new DtUsuario();
+            Fecha f = new Fecha();
+            f.setAnio(fecha_Nac.getYear()-1900);
+            f.setDia(fecha_Nac.getDate());
+            f.setMes(fecha_Nac.getMonth());
+            
+            
+            Usu.setNickname(pNickname);
+            Usu.setContrasenia(pPassword);
+            Usu.setNombre(pNombre);
+            Usu.setApellido(pApellido);
+            Usu.setCorreo(pEmail);
+            Usu.setFechaNacimiento(f);
+            Usu.setImagen(pImaguen);
+            Usu.setCantSeguidores(0);
+
+            sys.modificarUsuarioYCanal(Usu, CanUsu);
+
+            Part partImagen = request.getPart("imagen");
+            String nombreArchivo = Paths.get(partImagen.getSubmittedFileName()).getFileName().toString();
+            InputStream archivoContenido = partImagen.getInputStream();
+            if (archivoContenido.available() > 0) {
+                byte[] byteArr = new byte[archivoContenido.available()];
+                archivoContenido.read(byteArr);
+                DtImagenUsuario dtiu = new DtImagenUsuario();
+                dtiu.setNickname(Usu.getNickname());
+                dtiu.setImagen(byteArr);
+                dtiu.setNombreArchivo(nombreArchivo);
+                sys.altaImagenDeUsuario(dtiu);
+            }
+            
+            response.sendRedirect("usuario-consultar?id=" + Usu.getNickname());
+
+        } catch (Exception e) {
+            Funciones.Funciones.showLog(e);
+            RequestDispatcher rd; //objeto para despachar
+            request.setAttribute("mensajeError", e.getMessage());
+            rd = request.getRequestDispatcher("/404.jsp");
+            rd.forward(request, response);
+        }
+    }
+
+    /**
+     * Returns a short description of the servlet.
+     *
+     * @return a String containing servlet description
+     */
+    @Override
+    public String getServletInfo() {
+        return "Short description";
+    }// </editor-fold>
+
+}
diff --git a/UyTube_mobile/src/java/com/uytube/ModificarVideo.java b/UyTube_mobile/src/java/com/uytube/ModificarVideo.java
new file mode 100644
index 0000000000000000000000000000000000000000..81a19423baf81c55e4385aa60a495ee3b99fb370
--- /dev/null
+++ b/UyTube_mobile/src/java/com/uytube/ModificarVideo.java
@@ -0,0 +1,190 @@
+/*
+ * To change this license header, choose License Headers in Project Properties.
+ * To change this template file, choose Tools | Templates
+ * and open the template in the editor.
+ */
+package com.uytube;
+
+import logica.controladores.DtVideo;
+import logica.controladores.Privacidad;
+
+import java.io.IOException;
+import java.sql.Time;
+import java.text.ParseException;
+import java.text.SimpleDateFormat;
+import java.util.ArrayList;
+import java.util.Date;
+import javax.servlet.RequestDispatcher;
+import javax.servlet.ServletException;
+import javax.servlet.http.HttpServlet;
+import javax.servlet.http.HttpServletRequest;
+import javax.servlet.http.HttpServletResponse;
+import logica.controladores.CUsuario;
+import logica.controladores.CUsuarioService;
+import logica.controladores.Duracion;
+import logica.controladores.Fecha;
+
+/**
+ *
+ * @author administrador
+ */
+public class ModificarVideo extends HttpServlet {
+
+    // <editor-fold defaultstate="collapsed" desc="HttpServlet methods. Click on the + sign on the left to edit the code.">
+    /**
+     * Handles the HTTP <code>GET</code> method.
+     *
+     * @param request servlet request
+     * @param response servlet response
+     * @throws ServletException if a servlet-specific error occurs
+     * @throws IOException if an I/O error occurs
+     */
+    @Override
+    protected void doGet(HttpServletRequest request, HttpServletResponse response)
+            throws ServletException, IOException {
+        Funciones.Funciones.showLog(request, response);
+        try {
+            CUsuarioService servicio = new CUsuarioService();
+            CUsuario sys = servicio.getCUsuarioPort();
+            
+            if (!sys.sesionIniciada()){
+                String msj = "No puedes acceder a esta página";
+                Funciones.Funciones.showLog("Acceso denegado", msj);
+                RequestDispatcher rd; //objeto para despachar
+                request.setAttribute("mensajeError", msj);
+                rd = request.getRequestDispatcher("/401.jsp");
+                rd.forward(request, response);
+                return;
+            }
+            
+            int id = Integer.parseInt(request.getParameter("id"));
+
+            boolean sesionIniciada = sys.sesionIniciada();
+            ArrayList<String> cate = (ArrayList<String>)sys.listarCategorias();
+            DtVideo video = sys.seleccionarVideo(id);
+
+            request.setAttribute("video", video);
+            request.setAttribute("Categorias", cate);
+            request.setAttribute("sesionIniciada", sesionIniciada);
+            RequestDispatcher rd; //objeto para despachar
+            rd = request.getRequestDispatcher("/ModificarVideo.jsp");
+            rd.forward(request, response);
+        } catch (Exception e) {
+            Funciones.Funciones.showLog(e);
+            RequestDispatcher rd; //objeto para despachar
+            request.setAttribute("mensajeError", e.getMessage());
+            rd = request.getRequestDispatcher("/404.jsp");
+            rd.forward(request, response);
+        }
+    }
+
+    /**
+     * Handles the HTTP <code>POST</code> method.
+     *
+     * @param request servlet request
+     * @param response servlet response
+     * @throws ServletException if a servlet-specific error occurs
+     * @throws IOException if an I/O error occurs
+     */
+    @Override
+    protected void doPost(HttpServletRequest request, HttpServletResponse response)
+            throws ServletException, IOException {
+        Funciones.Funciones.showLog(request, response);
+        try {
+            CUsuarioService servicio = new CUsuarioService();
+            CUsuario sys = servicio.getCUsuarioPort();
+            
+            if (!sys.sesionIniciada()){
+                String msj = "No puedes acceder a esta página";
+                Funciones.Funciones.showLog("Acceso denegado", msj);
+                RequestDispatcher rd; //objeto para despachar
+                request.setAttribute("mensajeError", msj);
+                rd = request.getRequestDispatcher("/401.jsp");
+                rd.forward(request, response);
+                return;
+            }
+            
+            String pNombre = request.getParameter("nombre");
+            String pDuracion = request.getParameter("duracion");
+            String pUrl = request.getParameter("url");
+            String pDescripcion = request.getParameter("descripcion");
+            String pCategoria = request.getParameter("categoria");
+            String pPrivacidad = request.getParameter("privacidad");
+            String pFecha = request.getParameter("fecha");
+
+            Privacidad Priv = Privacidad.PRIVADO;
+            if (pPrivacidad != null && pPrivacidad.equals("PUBLICO")) {
+                Priv = Privacidad.PUBLICO;
+            }
+            //============ Casteo de string a date =================================
+            SimpleDateFormat formato = new SimpleDateFormat("yyyy-mm-dd");
+            Date fechaDate = null;
+            try {
+                fechaDate = formato.parse(pFecha);
+            } catch (ParseException ex) {
+                RequestDispatcher rd; //objeto para despachar
+                rd = request.getRequestDispatcher("/");
+                rd.forward(request, response);
+            }
+            java.sql.Date data = new java.sql.Date(fechaDate.getTime());
+            //======================================================================
+            //============= Casteo de string a Time ================================
+            Time duracion = java.sql.Time.valueOf(pDuracion);
+            //======================================================================
+            //DtVideo vid = new DtVideo(0, pNombre, pDescripcion, duracion, data, pUrl, Priv, pCategoria, 0, 0);
+            Fecha f = new Fecha();
+            f.setAnio(data.getYear());
+            f.setMes(data.getMonth());
+            f.setDia(data.getDate());
+            
+            Duracion d = new Duracion();
+            d.setHoras(duracion.getHours());
+            d.setMinutos(duracion.getMinutes());
+            d.setSegundos(duracion.getSeconds());
+            
+            DtVideo vid = new DtVideo();
+            vid.setId(0);
+            vid.setNombre(pNombre);
+            vid.setDescripcion(pDescripcion);
+            vid.setDuracion(d);
+            vid.setFechaPublicacion(f);
+            vid.setUrlVideoOriginal(pUrl);
+            vid.setPrivacidad(Priv);
+            vid.setCategoria(pCategoria);
+            vid.setCantLikes(0);
+            vid.setCantDisLikes(0);
+            
+            sys.modificarVideo(vid);
+            
+            
+            sys.seleccionarUsuario(sys.obtenerUsuarioActual().getNickname());
+            ArrayList<DtVideo> videos = (ArrayList<DtVideo>)sys.listarVideosDeUsuario();
+            int idNuevoVideo = 0;
+            for (DtVideo v : videos){
+                if (v.getNombre().equals(vid.getNombre())){
+                    idNuevoVideo = v.getId();
+                    break;
+                }
+            }
+            
+            response.sendRedirect("video-consultar?id=" + idNuevoVideo);
+        } catch (Exception e) {
+            Funciones.Funciones.showLog(e);
+            RequestDispatcher rd; //objeto para despachar
+            request.setAttribute("mensajeError", e.getMessage());
+            rd = request.getRequestDispatcher("/404.jsp");
+            rd.forward(request, response);
+        }
+    }
+
+    /**
+     * Returns a short description of the servlet.
+     *
+     * @return a String containing servlet description
+     */
+    @Override
+    public String getServletInfo() {
+        return "Short description";
+    }// </editor-fold>
+
+}
diff --git a/UyTube_mobile/src/java/com/uytube/PeticionAjax.java b/UyTube_mobile/src/java/com/uytube/PeticionAjax.java
new file mode 100644
index 0000000000000000000000000000000000000000..fe5d214dceaf33a0da42d9f1e4aaf25fc32eb015
--- /dev/null
+++ b/UyTube_mobile/src/java/com/uytube/PeticionAjax.java
@@ -0,0 +1,110 @@
+/*
+ * To change this license header, choose License Headers in Project Properties.
+ * To change this template file, choose Tools | Templates
+ * and open the template in the editor.
+ */
+package com.uytube;
+
+import java.io.IOException;
+import javax.servlet.RequestDispatcher;
+import javax.servlet.ServletException;
+import javax.servlet.http.HttpServlet;
+import javax.servlet.http.HttpServletRequest;
+import javax.servlet.http.HttpServletResponse;
+import logica.controladores.CUsuario;
+import logica.controladores.CUsuarioService;
+
+/**
+ *
+ * @author administrador
+ */
+public class PeticionAjax extends HttpServlet {
+
+    // <editor-fold defaultstate="collapsed" desc="HttpServlet methods. Click on the + sign on the left to edit the code.">
+    /**
+     * Handles the HTTP <code>GET</code> method.
+     *
+     * @param request servlet request
+     * @param response servlet response
+     * @throws ServletException if a servlet-specific error occurs
+     * @throws IOException if an I/O error occurs
+     */
+    @Override
+    protected void doGet(HttpServletRequest request, HttpServletResponse response)
+            throws ServletException, IOException {
+        try {
+            /*
+         Aca debe recibir un parametor de nombre accion el cual define cual es la funcion
+         que se debe ejecutar
+             */
+            CUsuarioService servicio = new CUsuarioService();
+            CUsuario sys = servicio.getCUsuarioPort();
+            
+            // datos recibidos
+            String accion = request.getParameter("accion"); // obtiene lo enviado por AJAX
+            String dato = request.getParameter("dato"); // obtiene lo enviado por AJAX
+            
+            // prepara respuesta
+            response.setContentType("text/plain");  //Set content type of the response so that jQuery knows what it can expect.
+            response.setCharacterEncoding("UTF-8"); //You want world domination, huh?
+            String respuesta = "";
+            
+            
+            switch (accion){
+                case "validarNickname":
+                    if (sys.existeNickname(dato)){
+                        respuesta = "Este nickname no está disponible";
+                    }
+                    break;
+                case "validarEmail":
+                    if (sys.existeEmail(dato)){
+                        respuesta = "Este email no está disponible";
+                    }
+                    break;
+                case "validarNombreVideo":
+                    int idVideo = 0;
+                    if (request.getParameter("idVideo") != null){
+                        idVideo = Integer.valueOf(request.getParameter("idVideo"));
+                    }
+                    
+                    if (dato == null || dato.equals("")){
+                        break;
+                    }
+                    if ( ! sys.validarNuevoVideo(dato, idVideo)){
+                        respuesta = "El canal ya posee un video con ese nombre";
+                    }
+                    break;
+                case "validarNombreLista":
+                    int idLista = 0;
+                    if (request.getParameter("idLista") != null){
+                        idLista = Integer.valueOf(request.getParameter("idLista"));
+                    }
+                    
+                    if ( ! sys.validarNuevaListaParticular(dato, idLista)){
+                        respuesta = "El canal ya posee una lista con ese nombre";
+                    }
+                    break;
+            }
+            Funciones.Funciones.showLog(request, response);
+            Funciones.Funciones.showLog("Respuesta", respuesta);
+            response.getWriter().write(respuesta);
+        } catch (Exception e) {
+            Funciones.Funciones.showLog(e);
+            RequestDispatcher rd; //objeto para despachar
+            request.setAttribute("mensajeError", e.getMessage());
+            rd = request.getRequestDispatcher("/404.jsp");
+            rd.forward(request, response);
+        }
+    }
+
+    /**
+     * Returns a short description of the servlet.
+     *
+     * @return a String containing servlet description
+     */
+    @Override
+    public String getServletInfo() {
+        return "Short description";
+    }// </editor-fold>
+
+}
diff --git a/UyTube_mobile/src/java/com/uytube/Presentacion.java b/UyTube_mobile/src/java/com/uytube/Presentacion.java
new file mode 100644
index 0000000000000000000000000000000000000000..274dcdfdb861b25b2e7f8e1eb948b393f3f6d134
--- /dev/null
+++ b/UyTube_mobile/src/java/com/uytube/Presentacion.java
@@ -0,0 +1,74 @@
+/*
+ * To change this license header, choose License Headers in Project Properties.
+ * To change this template file, choose Tools | Templates
+ * and open the template in the editor.
+ */
+package com.uytube;
+
+import logica.controladores.Filtrado;
+import logica.controladores.Ordenacion;
+import java.io.IOException;
+import java.util.ArrayList;
+import javax.servlet.RequestDispatcher;
+import javax.servlet.ServletException;
+import javax.servlet.annotation.WebServlet;
+import javax.servlet.http.HttpServlet;
+import javax.servlet.http.HttpServletRequest;
+import javax.servlet.http.HttpServletResponse;
+import logica.controladores.CUsuario;
+import logica.controladores.CUsuarioService;
+
+/**
+ *
+ * @author administrador
+ */
+@WebServlet(name = "Presentacion", urlPatterns = {"/"})
+public class Presentacion extends HttpServlet {
+
+    // <editor-fold defaultstate="collapsed" desc="HttpServlet methods. Click on the + sign on the left to edit the code.">
+    /**
+     * Handles the HTTP <code>GET</code> method.
+     *
+     * @param request servlet request
+     * @param response servlet response
+     * @throws ServletException if a servlet-specific error occurs
+     * @throws IOException if an I/O error occurs
+     */
+    @Override
+    protected void doGet(HttpServletRequest request, HttpServletResponse response)
+            throws ServletException, IOException {
+        Funciones.Funciones.showLog(request, response);
+        try {
+            CUsuarioService servicio = new CUsuarioService();
+            CUsuario sys = servicio.getCUsuarioPort();
+            
+            boolean sesionIniciada = sys.sesionIniciada();
+            ArrayList<Object> videos = (ArrayList<Object>) sys.buscar("", Filtrado.VIDEOS, Ordenacion.FECHA_DESCENDENTE);
+
+            request.setAttribute("sesionIniciada", sesionIniciada);
+            request.setAttribute("videos", videos);
+
+            RequestDispatcher rd; //objeto para despachar
+            rd = request.getRequestDispatcher("/Presentacion.jsp");
+            rd.forward(request, response);
+        } catch (Exception e) {
+            Funciones.Funciones.showLog(e);
+            RequestDispatcher rd; //objeto para despachar
+            request.setAttribute("mensajeError", e.getMessage());
+            rd = request.getRequestDispatcher("/404.jsp");
+            rd.forward(request, response);
+        }
+
+    }
+
+    /**
+     * Returns a short description of the servlet.
+     *
+     * @return a String containing servlet description
+     */
+    @Override
+    public String getServletInfo() {
+        return "Short description";
+    }// </editor-fold>
+
+}
diff --git a/UyTube_mobile/src/java/com/uytube/QuitarVideoDeListaReproduccion.java b/UyTube_mobile/src/java/com/uytube/QuitarVideoDeListaReproduccion.java
new file mode 100644
index 0000000000000000000000000000000000000000..8b60226a699f0872affc742f7ac7a5505763890e
--- /dev/null
+++ b/UyTube_mobile/src/java/com/uytube/QuitarVideoDeListaReproduccion.java
@@ -0,0 +1,81 @@
+/*
+ * To change this license header, choose License Headers in Project Properties.
+ * To change this template file, choose Tools | Templates
+ * and open the template in the editor.
+ */
+package com.uytube;
+
+import logica.controladores.DtUsuario;
+import logica.controladores.CUsuario;
+import logica.controladores.CUsuarioService;
+import java.io.IOException;
+import javax.servlet.RequestDispatcher;
+import javax.servlet.ServletException;
+import javax.servlet.http.HttpServlet;
+import javax.servlet.http.HttpServletRequest;
+import javax.servlet.http.HttpServletResponse;
+
+/**
+ *
+ * @author administrador
+ */
+public class QuitarVideoDeListaReproduccion extends HttpServlet {
+
+    // <editor-fold defaultstate="collapsed" desc="HttpServlet methods. Click on the + sign on the left to edit the code.">
+    /**
+     * Handles the HTTP <code>GET</code> method.
+     *
+     * @param request servlet request
+     * @param response servlet response
+     * @throws ServletException if a servlet-specific error occurs
+     * @throws IOException if an I/O error occurs
+     */
+    @Override
+    protected void doGet(HttpServletRequest request, HttpServletResponse response)
+            throws ServletException, IOException {
+        Funciones.Funciones.showLog(request, response);
+        try {
+            CUsuarioService Servicio = new CUsuarioService();
+            CUsuario sys = Servicio.getCUsuarioPort();
+            
+            if (!sys.sesionIniciada()){
+                String msj = "No puedes acceder a esta página";
+                Funciones.Funciones.showLog("Acceso denegado", msj);
+                RequestDispatcher rd; //objeto para despachar
+                request.setAttribute("mensajeError", msj);
+                rd = request.getRequestDispatcher("/401.jsp");
+                rd.forward(request, response);
+                return;
+            }
+            
+            String pIDVideo = request.getParameter("idvideo");
+            String pIDLista = request.getParameter("idlista");
+            int IDVideo = Integer.valueOf(pIDVideo);
+            int IDLista = Integer.valueOf(pIDLista);
+
+            DtUsuario usuActual = sys.obtenerUsuarioActual();
+            sys.seleccionarUsuario(usuActual.getNickname());
+            sys.seleccionarListaDeReproduccion(IDLista);
+            sys.quitarVideoDeListaDeReproduccion(IDVideo);
+
+            response.sendRedirect("lista-consultar?id="+IDLista);
+        } catch (Exception e) {
+            Funciones.Funciones.showLog(e);
+            RequestDispatcher rd; //objeto para despachar
+            request.setAttribute("mensajeError", e.getMessage());
+            rd = request.getRequestDispatcher("/404.jsp");
+            rd.forward(request, response);
+        }
+    }
+
+    /**
+     * Returns a short description of the servlet.
+     *
+     * @return a String containing servlet description
+     */
+    @Override
+    public String getServletInfo() {
+        return "Short description";
+    }// </editor-fold>
+
+}
diff --git a/UyTube_mobile/src/java/com/uytube/SeguirUsuario.java b/UyTube_mobile/src/java/com/uytube/SeguirUsuario.java
new file mode 100644
index 0000000000000000000000000000000000000000..939396e47cb93793f91d13be4bf68bdaef0f8ad8
--- /dev/null
+++ b/UyTube_mobile/src/java/com/uytube/SeguirUsuario.java
@@ -0,0 +1,73 @@
+/*
+ * To change this license header, choose License Headers in Project Properties.
+ * To change this template file, choose Tools | Templates
+ * and open the template in the editor.
+ */
+package com.uytube;
+
+import java.io.IOException;
+import javax.servlet.RequestDispatcher;
+import javax.servlet.ServletException;
+import javax.servlet.http.HttpServlet;
+import javax.servlet.http.HttpServletRequest;
+import javax.servlet.http.HttpServletResponse;
+import logica.controladores.CUsuario;
+import logica.controladores.CUsuarioService;
+
+/**
+ *
+ * @author administrador
+ */
+public class SeguirUsuario extends HttpServlet {
+
+    /**
+     * Processes requests for both HTTP <code>GET</code> and <code>POST</code>
+     * methods.
+     *
+     * @param request servlet request
+     * @param response servlet response
+     * @throws ServletException if a servlet-specific error occurs
+     * @throws IOException if an I/O error occurs
+     */
+    protected void processRequest(HttpServletRequest request, HttpServletResponse response)
+            throws ServletException, IOException {
+    }
+
+    
+    @Override
+    protected void doGet(HttpServletRequest request, HttpServletResponse response)
+            throws ServletException, IOException {
+        Funciones.Funciones.showLog(request, response);
+        try {
+            CUsuarioService servicio = new CUsuarioService();
+            CUsuario sys = servicio.getCUsuarioPort();
+            
+            String nick = request.getParameter("id");
+            sys.seleccionarUsuario(nick);
+            sys.seguirUsuario();
+            
+            response.sendRedirect("usuario-consultar?id=" + nick);
+            
+        } catch (Exception e) {
+            Funciones.Funciones.showLog(e);
+            RequestDispatcher rd; //objeto para despachar
+            request.setAttribute("mensajeError", e.getMessage());
+            rd = request.getRequestDispatcher("/404.jsp");
+            rd.forward(request, response);
+        }
+    }
+
+    /**
+     * Handles the HTTP <code>POST</code> method.
+     *
+     * @param request servlet request
+     * @param response servlet response
+     * @throws ServletException if a servlet-specific error occurs
+     * @throws IOException if an I/O error occurs
+     */
+    @Override
+    protected void doPost(HttpServletRequest request, HttpServletResponse response)
+            throws ServletException, IOException {
+        
+    }
+}
diff --git a/UyTube_mobile/src/java/logica/controladores/AgregarVideoAListaDeReproduccion.class b/UyTube_mobile/src/java/logica/controladores/AgregarVideoAListaDeReproduccion.class
new file mode 100644
index 0000000000000000000000000000000000000000..29f5a2ad20c76cce3cf7d23a20ef8920ba1e3c98
Binary files /dev/null and b/UyTube_mobile/src/java/logica/controladores/AgregarVideoAListaDeReproduccion.class differ
diff --git a/UyTube_mobile/src/java/logica/controladores/AgregarVideoAListaDeReproduccion.java b/UyTube_mobile/src/java/logica/controladores/AgregarVideoAListaDeReproduccion.java
new file mode 100644
index 0000000000000000000000000000000000000000..c02a42f7a8a9c69124fa59973091b4d68d07b94b
--- /dev/null
+++ b/UyTube_mobile/src/java/logica/controladores/AgregarVideoAListaDeReproduccion.java
@@ -0,0 +1,52 @@
+
+package logica.controladores;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Clase Java para agregarVideoAListaDeReproduccion complex type.
+ * 
+ * <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
+ * 
+ * <pre>
+ * &lt;complexType name="agregarVideoAListaDeReproduccion">
+ *   &lt;complexContent>
+ *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       &lt;sequence>
+ *         &lt;element name="arg0" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *       &lt;/sequence>
+ *     &lt;/restriction>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * 
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "agregarVideoAListaDeReproduccion", propOrder = {
+    "arg0"
+})
+public class AgregarVideoAListaDeReproduccion {
+
+    protected int arg0;
+
+    /**
+     * Obtiene el valor de la propiedad arg0.
+     * 
+     */
+    public int getArg0() {
+        return arg0;
+    }
+
+    /**
+     * Define el valor de la propiedad arg0.
+     * 
+     */
+    public void setArg0(int value) {
+        this.arg0 = value;
+    }
+
+}
diff --git a/UyTube_mobile/src/java/logica/controladores/AgregarVideoAListaDeReproduccionResponse.class b/UyTube_mobile/src/java/logica/controladores/AgregarVideoAListaDeReproduccionResponse.class
new file mode 100644
index 0000000000000000000000000000000000000000..95630f9c5a35671108e6b48e1f3b009c326e898b
Binary files /dev/null and b/UyTube_mobile/src/java/logica/controladores/AgregarVideoAListaDeReproduccionResponse.class differ
diff --git a/UyTube_mobile/src/java/logica/controladores/AgregarVideoAListaDeReproduccionResponse.java b/UyTube_mobile/src/java/logica/controladores/AgregarVideoAListaDeReproduccionResponse.java
new file mode 100644
index 0000000000000000000000000000000000000000..029d0615d716f528b2f674c14223ddd644026289
--- /dev/null
+++ b/UyTube_mobile/src/java/logica/controladores/AgregarVideoAListaDeReproduccionResponse.java
@@ -0,0 +1,32 @@
+
+package logica.controladores;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Clase Java para agregarVideoAListaDeReproduccionResponse complex type.
+ * 
+ * <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
+ * 
+ * <pre>
+ * &lt;complexType name="agregarVideoAListaDeReproduccionResponse">
+ *   &lt;complexContent>
+ *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       &lt;sequence>
+ *       &lt;/sequence>
+ *     &lt;/restriction>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * 
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "agregarVideoAListaDeReproduccionResponse")
+public class AgregarVideoAListaDeReproduccionResponse {
+
+
+}
diff --git a/UyTube_mobile/src/java/logica/controladores/AltaComentario.class b/UyTube_mobile/src/java/logica/controladores/AltaComentario.class
new file mode 100644
index 0000000000000000000000000000000000000000..41ce04f3e36299878449308b03d26285cc17748a
Binary files /dev/null and b/UyTube_mobile/src/java/logica/controladores/AltaComentario.class differ
diff --git a/UyTube_mobile/src/java/logica/controladores/AltaComentario.java b/UyTube_mobile/src/java/logica/controladores/AltaComentario.java
new file mode 100644
index 0000000000000000000000000000000000000000..e23c146cef812308e9903ab8747581c9b5f0dc4d
--- /dev/null
+++ b/UyTube_mobile/src/java/logica/controladores/AltaComentario.java
@@ -0,0 +1,60 @@
+
+package logica.controladores;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Clase Java para altaComentario complex type.
+ * 
+ * <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
+ * 
+ * <pre>
+ * &lt;complexType name="altaComentario">
+ *   &lt;complexContent>
+ *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       &lt;sequence>
+ *         &lt;element name="arg0" type="{http://Controladores.Logica/}dtComentario" minOccurs="0"/>
+ *       &lt;/sequence>
+ *     &lt;/restriction>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * 
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "altaComentario", propOrder = {
+    "arg0"
+})
+public class AltaComentario {
+
+    protected DtComentario arg0;
+
+    /**
+     * Obtiene el valor de la propiedad arg0.
+     * 
+     * @return
+     *     possible object is
+     *     {@link DtComentario }
+     *     
+     */
+    public DtComentario getArg0() {
+        return arg0;
+    }
+
+    /**
+     * Define el valor de la propiedad arg0.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link DtComentario }
+     *     
+     */
+    public void setArg0(DtComentario value) {
+        this.arg0 = value;
+    }
+
+}
diff --git a/UyTube_mobile/src/java/logica/controladores/AltaComentarioResponse.class b/UyTube_mobile/src/java/logica/controladores/AltaComentarioResponse.class
new file mode 100644
index 0000000000000000000000000000000000000000..70d8d8ff602b7a39bec5c03a8bbb4618622a9af2
Binary files /dev/null and b/UyTube_mobile/src/java/logica/controladores/AltaComentarioResponse.class differ
diff --git a/UyTube_mobile/src/java/logica/controladores/AltaComentarioResponse.java b/UyTube_mobile/src/java/logica/controladores/AltaComentarioResponse.java
new file mode 100644
index 0000000000000000000000000000000000000000..5b1c28c743c8bfe780c883bb8ae75d6041253f9e
--- /dev/null
+++ b/UyTube_mobile/src/java/logica/controladores/AltaComentarioResponse.java
@@ -0,0 +1,32 @@
+
+package logica.controladores;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Clase Java para altaComentarioResponse complex type.
+ * 
+ * <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
+ * 
+ * <pre>
+ * &lt;complexType name="altaComentarioResponse">
+ *   &lt;complexContent>
+ *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       &lt;sequence>
+ *       &lt;/sequence>
+ *     &lt;/restriction>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * 
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "altaComentarioResponse")
+public class AltaComentarioResponse {
+
+
+}
diff --git a/UyTube_mobile/src/java/logica/controladores/AltaImagenDeUsuario.class b/UyTube_mobile/src/java/logica/controladores/AltaImagenDeUsuario.class
new file mode 100644
index 0000000000000000000000000000000000000000..b489bbed4bd4512703efdaf3acc5a3e8a702d9cd
Binary files /dev/null and b/UyTube_mobile/src/java/logica/controladores/AltaImagenDeUsuario.class differ
diff --git a/UyTube_mobile/src/java/logica/controladores/AltaImagenDeUsuario.java b/UyTube_mobile/src/java/logica/controladores/AltaImagenDeUsuario.java
new file mode 100644
index 0000000000000000000000000000000000000000..e64187ef581d5472cf8eeac052e98bce0f466932
--- /dev/null
+++ b/UyTube_mobile/src/java/logica/controladores/AltaImagenDeUsuario.java
@@ -0,0 +1,60 @@
+
+package logica.controladores;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Clase Java para altaImagenDeUsuario complex type.
+ * 
+ * <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
+ * 
+ * <pre>
+ * &lt;complexType name="altaImagenDeUsuario">
+ *   &lt;complexContent>
+ *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       &lt;sequence>
+ *         &lt;element name="arg0" type="{http://Controladores.Logica/}dtImagenUsuario" minOccurs="0"/>
+ *       &lt;/sequence>
+ *     &lt;/restriction>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * 
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "altaImagenDeUsuario", propOrder = {
+    "arg0"
+})
+public class AltaImagenDeUsuario {
+
+    protected DtImagenUsuario arg0;
+
+    /**
+     * Obtiene el valor de la propiedad arg0.
+     * 
+     * @return
+     *     possible object is
+     *     {@link DtImagenUsuario }
+     *     
+     */
+    public DtImagenUsuario getArg0() {
+        return arg0;
+    }
+
+    /**
+     * Define el valor de la propiedad arg0.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link DtImagenUsuario }
+     *     
+     */
+    public void setArg0(DtImagenUsuario value) {
+        this.arg0 = value;
+    }
+
+}
diff --git a/UyTube_mobile/src/java/logica/controladores/AltaImagenDeUsuarioResponse.class b/UyTube_mobile/src/java/logica/controladores/AltaImagenDeUsuarioResponse.class
new file mode 100644
index 0000000000000000000000000000000000000000..c2f124f008a1d1ed22080b6df0d9d49d4a8a2f2f
Binary files /dev/null and b/UyTube_mobile/src/java/logica/controladores/AltaImagenDeUsuarioResponse.class differ
diff --git a/UyTube_mobile/src/java/logica/controladores/AltaImagenDeUsuarioResponse.java b/UyTube_mobile/src/java/logica/controladores/AltaImagenDeUsuarioResponse.java
new file mode 100644
index 0000000000000000000000000000000000000000..b3fd044e308f501359c918a0c90cbd54645bbbe0
--- /dev/null
+++ b/UyTube_mobile/src/java/logica/controladores/AltaImagenDeUsuarioResponse.java
@@ -0,0 +1,32 @@
+
+package logica.controladores;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Clase Java para altaImagenDeUsuarioResponse complex type.
+ * 
+ * <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
+ * 
+ * <pre>
+ * &lt;complexType name="altaImagenDeUsuarioResponse">
+ *   &lt;complexContent>
+ *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       &lt;sequence>
+ *       &lt;/sequence>
+ *     &lt;/restriction>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * 
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "altaImagenDeUsuarioResponse")
+public class AltaImagenDeUsuarioResponse {
+
+
+}
diff --git a/UyTube_mobile/src/java/logica/controladores/AltaListaDeReproduccionParticular.class b/UyTube_mobile/src/java/logica/controladores/AltaListaDeReproduccionParticular.class
new file mode 100644
index 0000000000000000000000000000000000000000..59fa9d72e9fb71fd4a52bc55161833aad80b0ae9
Binary files /dev/null and b/UyTube_mobile/src/java/logica/controladores/AltaListaDeReproduccionParticular.class differ
diff --git a/UyTube_mobile/src/java/logica/controladores/AltaListaDeReproduccionParticular.java b/UyTube_mobile/src/java/logica/controladores/AltaListaDeReproduccionParticular.java
new file mode 100644
index 0000000000000000000000000000000000000000..c96e548003a9a0d154b7a9c5cbbb798cb90ec6da
--- /dev/null
+++ b/UyTube_mobile/src/java/logica/controladores/AltaListaDeReproduccionParticular.java
@@ -0,0 +1,60 @@
+
+package logica.controladores;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Clase Java para altaListaDeReproduccionParticular complex type.
+ * 
+ * <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
+ * 
+ * <pre>
+ * &lt;complexType name="altaListaDeReproduccionParticular">
+ *   &lt;complexContent>
+ *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       &lt;sequence>
+ *         &lt;element name="arg0" type="{http://Controladores.Logica/}dtListaDeReproduccion" minOccurs="0"/>
+ *       &lt;/sequence>
+ *     &lt;/restriction>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * 
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "altaListaDeReproduccionParticular", propOrder = {
+    "arg0"
+})
+public class AltaListaDeReproduccionParticular {
+
+    protected DtListaDeReproduccion arg0;
+
+    /**
+     * Obtiene el valor de la propiedad arg0.
+     * 
+     * @return
+     *     possible object is
+     *     {@link DtListaDeReproduccion }
+     *     
+     */
+    public DtListaDeReproduccion getArg0() {
+        return arg0;
+    }
+
+    /**
+     * Define el valor de la propiedad arg0.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link DtListaDeReproduccion }
+     *     
+     */
+    public void setArg0(DtListaDeReproduccion value) {
+        this.arg0 = value;
+    }
+
+}
diff --git a/UyTube_mobile/src/java/logica/controladores/AltaListaDeReproduccionParticularResponse.class b/UyTube_mobile/src/java/logica/controladores/AltaListaDeReproduccionParticularResponse.class
new file mode 100644
index 0000000000000000000000000000000000000000..fa620c07057a22d972661809e8fcf117b59fc2f7
Binary files /dev/null and b/UyTube_mobile/src/java/logica/controladores/AltaListaDeReproduccionParticularResponse.class differ
diff --git a/UyTube_mobile/src/java/logica/controladores/AltaListaDeReproduccionParticularResponse.java b/UyTube_mobile/src/java/logica/controladores/AltaListaDeReproduccionParticularResponse.java
new file mode 100644
index 0000000000000000000000000000000000000000..65acd62c2ccf67455fdcc11e106fb5f4f026b592
--- /dev/null
+++ b/UyTube_mobile/src/java/logica/controladores/AltaListaDeReproduccionParticularResponse.java
@@ -0,0 +1,32 @@
+
+package logica.controladores;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Clase Java para altaListaDeReproduccionParticularResponse complex type.
+ * 
+ * <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
+ * 
+ * <pre>
+ * &lt;complexType name="altaListaDeReproduccionParticularResponse">
+ *   &lt;complexContent>
+ *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       &lt;sequence>
+ *       &lt;/sequence>
+ *     &lt;/restriction>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * 
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "altaListaDeReproduccionParticularResponse")
+public class AltaListaDeReproduccionParticularResponse {
+
+
+}
diff --git a/UyTube_mobile/src/java/logica/controladores/AltaSubComentario.class b/UyTube_mobile/src/java/logica/controladores/AltaSubComentario.class
new file mode 100644
index 0000000000000000000000000000000000000000..6c2d08dcb1cdd6b9b545120070dbf9a1628463ba
Binary files /dev/null and b/UyTube_mobile/src/java/logica/controladores/AltaSubComentario.class differ
diff --git a/UyTube_mobile/src/java/logica/controladores/AltaSubComentario.java b/UyTube_mobile/src/java/logica/controladores/AltaSubComentario.java
new file mode 100644
index 0000000000000000000000000000000000000000..9cf17ffc6c5e8f91cb1710a01596f44d62f07751
--- /dev/null
+++ b/UyTube_mobile/src/java/logica/controladores/AltaSubComentario.java
@@ -0,0 +1,79 @@
+
+package logica.controladores;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Clase Java para altaSubComentario complex type.
+ * 
+ * <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
+ * 
+ * <pre>
+ * &lt;complexType name="altaSubComentario">
+ *   &lt;complexContent>
+ *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       &lt;sequence>
+ *         &lt;element name="arg0" type="{http://Controladores.Logica/}dtComentario" minOccurs="0"/>
+ *         &lt;element name="arg1" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *       &lt;/sequence>
+ *     &lt;/restriction>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * 
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "altaSubComentario", propOrder = {
+    "arg0",
+    "arg1"
+})
+public class AltaSubComentario {
+
+    protected DtComentario arg0;
+    protected int arg1;
+
+    /**
+     * Obtiene el valor de la propiedad arg0.
+     * 
+     * @return
+     *     possible object is
+     *     {@link DtComentario }
+     *     
+     */
+    public DtComentario getArg0() {
+        return arg0;
+    }
+
+    /**
+     * Define el valor de la propiedad arg0.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link DtComentario }
+     *     
+     */
+    public void setArg0(DtComentario value) {
+        this.arg0 = value;
+    }
+
+    /**
+     * Obtiene el valor de la propiedad arg1.
+     * 
+     */
+    public int getArg1() {
+        return arg1;
+    }
+
+    /**
+     * Define el valor de la propiedad arg1.
+     * 
+     */
+    public void setArg1(int value) {
+        this.arg1 = value;
+    }
+
+}
diff --git a/UyTube_mobile/src/java/logica/controladores/AltaSubComentarioResponse.class b/UyTube_mobile/src/java/logica/controladores/AltaSubComentarioResponse.class
new file mode 100644
index 0000000000000000000000000000000000000000..c8d9621d91e0b963784e50554f822c742cb79068
Binary files /dev/null and b/UyTube_mobile/src/java/logica/controladores/AltaSubComentarioResponse.class differ
diff --git a/UyTube_mobile/src/java/logica/controladores/AltaSubComentarioResponse.java b/UyTube_mobile/src/java/logica/controladores/AltaSubComentarioResponse.java
new file mode 100644
index 0000000000000000000000000000000000000000..db93b8cbd088964afe8af264c9946489d70fd8aa
--- /dev/null
+++ b/UyTube_mobile/src/java/logica/controladores/AltaSubComentarioResponse.java
@@ -0,0 +1,32 @@
+
+package logica.controladores;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Clase Java para altaSubComentarioResponse complex type.
+ * 
+ * <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
+ * 
+ * <pre>
+ * &lt;complexType name="altaSubComentarioResponse">
+ *   &lt;complexContent>
+ *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       &lt;sequence>
+ *       &lt;/sequence>
+ *     &lt;/restriction>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * 
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "altaSubComentarioResponse")
+public class AltaSubComentarioResponse {
+
+
+}
diff --git a/UyTube_mobile/src/java/logica/controladores/AltaUsuarioCanal.class b/UyTube_mobile/src/java/logica/controladores/AltaUsuarioCanal.class
new file mode 100644
index 0000000000000000000000000000000000000000..738311de8a69395e9b2c04c83a3d385ae5c570f4
Binary files /dev/null and b/UyTube_mobile/src/java/logica/controladores/AltaUsuarioCanal.class differ
diff --git a/UyTube_mobile/src/java/logica/controladores/AltaUsuarioCanal.java b/UyTube_mobile/src/java/logica/controladores/AltaUsuarioCanal.java
new file mode 100644
index 0000000000000000000000000000000000000000..0e924bbb00e993fd1cec09e78991f0af4f5dd1ce
--- /dev/null
+++ b/UyTube_mobile/src/java/logica/controladores/AltaUsuarioCanal.java
@@ -0,0 +1,87 @@
+
+package logica.controladores;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Clase Java para altaUsuarioCanal complex type.
+ * 
+ * <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
+ * 
+ * <pre>
+ * &lt;complexType name="altaUsuarioCanal">
+ *   &lt;complexContent>
+ *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       &lt;sequence>
+ *         &lt;element name="arg0" type="{http://Controladores.Logica/}dtUsuario" minOccurs="0"/>
+ *         &lt;element name="arg1" type="{http://Controladores.Logica/}dtCanal" minOccurs="0"/>
+ *       &lt;/sequence>
+ *     &lt;/restriction>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * 
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "altaUsuarioCanal", propOrder = {
+    "arg0",
+    "arg1"
+})
+public class AltaUsuarioCanal {
+
+    protected DtUsuario arg0;
+    protected DtCanal arg1;
+
+    /**
+     * Obtiene el valor de la propiedad arg0.
+     * 
+     * @return
+     *     possible object is
+     *     {@link DtUsuario }
+     *     
+     */
+    public DtUsuario getArg0() {
+        return arg0;
+    }
+
+    /**
+     * Define el valor de la propiedad arg0.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link DtUsuario }
+     *     
+     */
+    public void setArg0(DtUsuario value) {
+        this.arg0 = value;
+    }
+
+    /**
+     * Obtiene el valor de la propiedad arg1.
+     * 
+     * @return
+     *     possible object is
+     *     {@link DtCanal }
+     *     
+     */
+    public DtCanal getArg1() {
+        return arg1;
+    }
+
+    /**
+     * Define el valor de la propiedad arg1.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link DtCanal }
+     *     
+     */
+    public void setArg1(DtCanal value) {
+        this.arg1 = value;
+    }
+
+}
diff --git a/UyTube_mobile/src/java/logica/controladores/AltaUsuarioCanalResponse.class b/UyTube_mobile/src/java/logica/controladores/AltaUsuarioCanalResponse.class
new file mode 100644
index 0000000000000000000000000000000000000000..9af17e69a2052f5b020f99de8edf86af2e76e88f
Binary files /dev/null and b/UyTube_mobile/src/java/logica/controladores/AltaUsuarioCanalResponse.class differ
diff --git a/UyTube_mobile/src/java/logica/controladores/AltaUsuarioCanalResponse.java b/UyTube_mobile/src/java/logica/controladores/AltaUsuarioCanalResponse.java
new file mode 100644
index 0000000000000000000000000000000000000000..f12684ef2b68ecaa1bab688ac5091a1b1d9bf3c5
--- /dev/null
+++ b/UyTube_mobile/src/java/logica/controladores/AltaUsuarioCanalResponse.java
@@ -0,0 +1,32 @@
+
+package logica.controladores;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Clase Java para altaUsuarioCanalResponse complex type.
+ * 
+ * <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
+ * 
+ * <pre>
+ * &lt;complexType name="altaUsuarioCanalResponse">
+ *   &lt;complexContent>
+ *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       &lt;sequence>
+ *       &lt;/sequence>
+ *     &lt;/restriction>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * 
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "altaUsuarioCanalResponse")
+public class AltaUsuarioCanalResponse {
+
+
+}
diff --git a/UyTube_mobile/src/java/logica/controladores/AltaVideo.class b/UyTube_mobile/src/java/logica/controladores/AltaVideo.class
new file mode 100644
index 0000000000000000000000000000000000000000..0ee44a0a06d31e2920730ac78ec9faa05650c809
Binary files /dev/null and b/UyTube_mobile/src/java/logica/controladores/AltaVideo.class differ
diff --git a/UyTube_mobile/src/java/logica/controladores/AltaVideo.java b/UyTube_mobile/src/java/logica/controladores/AltaVideo.java
new file mode 100644
index 0000000000000000000000000000000000000000..79ea910911b05e64e08c4614894897469ce5575f
--- /dev/null
+++ b/UyTube_mobile/src/java/logica/controladores/AltaVideo.java
@@ -0,0 +1,60 @@
+
+package logica.controladores;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Clase Java para altaVideo complex type.
+ * 
+ * <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
+ * 
+ * <pre>
+ * &lt;complexType name="altaVideo">
+ *   &lt;complexContent>
+ *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       &lt;sequence>
+ *         &lt;element name="arg0" type="{http://Controladores.Logica/}dtVideo" minOccurs="0"/>
+ *       &lt;/sequence>
+ *     &lt;/restriction>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * 
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "altaVideo", propOrder = {
+    "arg0"
+})
+public class AltaVideo {
+
+    protected DtVideo arg0;
+
+    /**
+     * Obtiene el valor de la propiedad arg0.
+     * 
+     * @return
+     *     possible object is
+     *     {@link DtVideo }
+     *     
+     */
+    public DtVideo getArg0() {
+        return arg0;
+    }
+
+    /**
+     * Define el valor de la propiedad arg0.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link DtVideo }
+     *     
+     */
+    public void setArg0(DtVideo value) {
+        this.arg0 = value;
+    }
+
+}
diff --git a/UyTube_mobile/src/java/logica/controladores/AltaVideoResponse.class b/UyTube_mobile/src/java/logica/controladores/AltaVideoResponse.class
new file mode 100644
index 0000000000000000000000000000000000000000..f600abc6df4d0bbde1f5c7125c1084e88cb3df5b
Binary files /dev/null and b/UyTube_mobile/src/java/logica/controladores/AltaVideoResponse.class differ
diff --git a/UyTube_mobile/src/java/logica/controladores/AltaVideoResponse.java b/UyTube_mobile/src/java/logica/controladores/AltaVideoResponse.java
new file mode 100644
index 0000000000000000000000000000000000000000..b51e80188b17fc1e50d55934e9b59d7c8e5e1717
--- /dev/null
+++ b/UyTube_mobile/src/java/logica/controladores/AltaVideoResponse.java
@@ -0,0 +1,32 @@
+
+package logica.controladores;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Clase Java para altaVideoResponse complex type.
+ * 
+ * <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
+ * 
+ * <pre>
+ * &lt;complexType name="altaVideoResponse">
+ *   &lt;complexContent>
+ *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       &lt;sequence>
+ *       &lt;/sequence>
+ *     &lt;/restriction>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * 
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "altaVideoResponse")
+public class AltaVideoResponse {
+
+
+}
diff --git a/UyTube_mobile/src/java/logica/controladores/BajaUsuario.class b/UyTube_mobile/src/java/logica/controladores/BajaUsuario.class
new file mode 100644
index 0000000000000000000000000000000000000000..0cb09b0df4ce5d99781f81bb09aaf3e974d5fc8b
Binary files /dev/null and b/UyTube_mobile/src/java/logica/controladores/BajaUsuario.class differ
diff --git a/UyTube_mobile/src/java/logica/controladores/BajaUsuario.java b/UyTube_mobile/src/java/logica/controladores/BajaUsuario.java
new file mode 100644
index 0000000000000000000000000000000000000000..05c0ae944a5910f2774dd0167e09e0117425b7a8
--- /dev/null
+++ b/UyTube_mobile/src/java/logica/controladores/BajaUsuario.java
@@ -0,0 +1,32 @@
+
+package logica.controladores;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Clase Java para bajaUsuario complex type.
+ * 
+ * <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
+ * 
+ * <pre>
+ * &lt;complexType name="bajaUsuario">
+ *   &lt;complexContent>
+ *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       &lt;sequence>
+ *       &lt;/sequence>
+ *     &lt;/restriction>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * 
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "bajaUsuario")
+public class BajaUsuario {
+
+
+}
diff --git a/UyTube_mobile/src/java/logica/controladores/BajaUsuarioResponse.class b/UyTube_mobile/src/java/logica/controladores/BajaUsuarioResponse.class
new file mode 100644
index 0000000000000000000000000000000000000000..ea6ab79d4c2c34787bbcf1523c3a97ae1433c6ce
Binary files /dev/null and b/UyTube_mobile/src/java/logica/controladores/BajaUsuarioResponse.class differ
diff --git a/UyTube_mobile/src/java/logica/controladores/BajaUsuarioResponse.java b/UyTube_mobile/src/java/logica/controladores/BajaUsuarioResponse.java
new file mode 100644
index 0000000000000000000000000000000000000000..da9273fa2afd11ffd677b7ac013b5a167be3b903
--- /dev/null
+++ b/UyTube_mobile/src/java/logica/controladores/BajaUsuarioResponse.java
@@ -0,0 +1,32 @@
+
+package logica.controladores;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Clase Java para bajaUsuarioResponse complex type.
+ * 
+ * <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
+ * 
+ * <pre>
+ * &lt;complexType name="bajaUsuarioResponse">
+ *   &lt;complexContent>
+ *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       &lt;sequence>
+ *       &lt;/sequence>
+ *     &lt;/restriction>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * 
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "bajaUsuarioResponse")
+public class BajaUsuarioResponse {
+
+
+}
diff --git a/UyTube_mobile/src/java/logica/controladores/Buscar.class b/UyTube_mobile/src/java/logica/controladores/Buscar.class
new file mode 100644
index 0000000000000000000000000000000000000000..3d9824425704bee7efc28e0098a3a975de5bcac9
Binary files /dev/null and b/UyTube_mobile/src/java/logica/controladores/Buscar.class differ
diff --git a/UyTube_mobile/src/java/logica/controladores/Buscar.java b/UyTube_mobile/src/java/logica/controladores/Buscar.java
new file mode 100644
index 0000000000000000000000000000000000000000..ee52b357103824f027ef3a0067fbdcb09b1f715b
--- /dev/null
+++ b/UyTube_mobile/src/java/logica/controladores/Buscar.java
@@ -0,0 +1,117 @@
+
+package logica.controladores;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlSchemaType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Clase Java para buscar complex type.
+ * 
+ * <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
+ * 
+ * <pre>
+ * &lt;complexType name="buscar">
+ *   &lt;complexContent>
+ *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       &lt;sequence>
+ *         &lt;element name="arg0" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         &lt;element name="arg1" type="{http://Controladores.Logica/}filtrado" minOccurs="0"/>
+ *         &lt;element name="arg2" type="{http://Controladores.Logica/}ordenacion" minOccurs="0"/>
+ *       &lt;/sequence>
+ *     &lt;/restriction>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * 
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "buscar", propOrder = {
+    "arg0",
+    "arg1",
+    "arg2"
+})
+public class Buscar {
+
+    protected String arg0;
+    @XmlSchemaType(name = "string")
+    protected Filtrado arg1;
+    @XmlSchemaType(name = "string")
+    protected Ordenacion arg2;
+
+    /**
+     * Obtiene el valor de la propiedad arg0.
+     * 
+     * @return
+     *     possible object is
+     *     {@link String }
+     *     
+     */
+    public String getArg0() {
+        return arg0;
+    }
+
+    /**
+     * Define el valor de la propiedad arg0.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link String }
+     *     
+     */
+    public void setArg0(String value) {
+        this.arg0 = value;
+    }
+
+    /**
+     * Obtiene el valor de la propiedad arg1.
+     * 
+     * @return
+     *     possible object is
+     *     {@link Filtrado }
+     *     
+     */
+    public Filtrado getArg1() {
+        return arg1;
+    }
+
+    /**
+     * Define el valor de la propiedad arg1.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link Filtrado }
+     *     
+     */
+    public void setArg1(Filtrado value) {
+        this.arg1 = value;
+    }
+
+    /**
+     * Obtiene el valor de la propiedad arg2.
+     * 
+     * @return
+     *     possible object is
+     *     {@link Ordenacion }
+     *     
+     */
+    public Ordenacion getArg2() {
+        return arg2;
+    }
+
+    /**
+     * Define el valor de la propiedad arg2.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link Ordenacion }
+     *     
+     */
+    public void setArg2(Ordenacion value) {
+        this.arg2 = value;
+    }
+
+}
diff --git a/UyTube_mobile/src/java/logica/controladores/BuscarPorCategoria.class b/UyTube_mobile/src/java/logica/controladores/BuscarPorCategoria.class
new file mode 100644
index 0000000000000000000000000000000000000000..dce5554010d4fd1d59238637392c2deac8ce7cb2
Binary files /dev/null and b/UyTube_mobile/src/java/logica/controladores/BuscarPorCategoria.class differ
diff --git a/UyTube_mobile/src/java/logica/controladores/BuscarPorCategoria.java b/UyTube_mobile/src/java/logica/controladores/BuscarPorCategoria.java
new file mode 100644
index 0000000000000000000000000000000000000000..4c5a8bc3a4b2cf78dbeb9a2edf1ef0d63b340410
--- /dev/null
+++ b/UyTube_mobile/src/java/logica/controladores/BuscarPorCategoria.java
@@ -0,0 +1,60 @@
+
+package logica.controladores;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Clase Java para buscarPorCategoria complex type.
+ * 
+ * <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
+ * 
+ * <pre>
+ * &lt;complexType name="buscarPorCategoria">
+ *   &lt;complexContent>
+ *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       &lt;sequence>
+ *         &lt;element name="arg0" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       &lt;/sequence>
+ *     &lt;/restriction>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * 
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "buscarPorCategoria", propOrder = {
+    "arg0"
+})
+public class BuscarPorCategoria {
+
+    protected String arg0;
+
+    /**
+     * Obtiene el valor de la propiedad arg0.
+     * 
+     * @return
+     *     possible object is
+     *     {@link String }
+     *     
+     */
+    public String getArg0() {
+        return arg0;
+    }
+
+    /**
+     * Define el valor de la propiedad arg0.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link String }
+     *     
+     */
+    public void setArg0(String value) {
+        this.arg0 = value;
+    }
+
+}
diff --git a/UyTube_mobile/src/java/logica/controladores/BuscarPorCategoriaResponse.class b/UyTube_mobile/src/java/logica/controladores/BuscarPorCategoriaResponse.class
new file mode 100644
index 0000000000000000000000000000000000000000..e7810a3c40f90794e9d5ac4ec2eeea7083857015
Binary files /dev/null and b/UyTube_mobile/src/java/logica/controladores/BuscarPorCategoriaResponse.class differ
diff --git a/UyTube_mobile/src/java/logica/controladores/BuscarPorCategoriaResponse.java b/UyTube_mobile/src/java/logica/controladores/BuscarPorCategoriaResponse.java
new file mode 100644
index 0000000000000000000000000000000000000000..9d13e68d797069b0e5c9b771881981ecea632dfa
--- /dev/null
+++ b/UyTube_mobile/src/java/logica/controladores/BuscarPorCategoriaResponse.java
@@ -0,0 +1,69 @@
+
+package logica.controladores;
+
+import java.util.ArrayList;
+import java.util.List;
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Clase Java para buscarPorCategoriaResponse complex type.
+ * 
+ * <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
+ * 
+ * <pre>
+ * &lt;complexType name="buscarPorCategoriaResponse">
+ *   &lt;complexContent>
+ *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       &lt;sequence>
+ *         &lt;element name="return" type="{http://www.w3.org/2001/XMLSchema}anyType" maxOccurs="unbounded" minOccurs="0"/>
+ *       &lt;/sequence>
+ *     &lt;/restriction>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * 
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "buscarPorCategoriaResponse", propOrder = {
+    "_return"
+})
+public class BuscarPorCategoriaResponse {
+
+    @XmlElement(name = "return")
+    protected List<Object> _return;
+
+    /**
+     * Gets the value of the return property.
+     * 
+     * <p>
+     * This accessor method returns a reference to the live list,
+     * not a snapshot. Therefore any modification you make to the
+     * returned list will be present inside the JAXB object.
+     * This is why there is not a <CODE>set</CODE> method for the return property.
+     * 
+     * <p>
+     * For example, to add a new item, do as follows:
+     * <pre>
+     *    getReturn().add(newItem);
+     * </pre>
+     * 
+     * 
+     * <p>
+     * Objects of the following type(s) are allowed in the list
+     * {@link Object }
+     * 
+     * 
+     */
+    public List<Object> getReturn() {
+        if (_return == null) {
+            _return = new ArrayList<Object>();
+        }
+        return this._return;
+    }
+
+}
diff --git a/UyTube_mobile/src/java/logica/controladores/BuscarResponse.class b/UyTube_mobile/src/java/logica/controladores/BuscarResponse.class
new file mode 100644
index 0000000000000000000000000000000000000000..e227ad205a7a3961567459ac6729c430eaa38184
Binary files /dev/null and b/UyTube_mobile/src/java/logica/controladores/BuscarResponse.class differ
diff --git a/UyTube_mobile/src/java/logica/controladores/BuscarResponse.java b/UyTube_mobile/src/java/logica/controladores/BuscarResponse.java
new file mode 100644
index 0000000000000000000000000000000000000000..a9aae11d0ace3f0f60a69460298e670a1ff8014c
--- /dev/null
+++ b/UyTube_mobile/src/java/logica/controladores/BuscarResponse.java
@@ -0,0 +1,69 @@
+
+package logica.controladores;
+
+import java.util.ArrayList;
+import java.util.List;
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Clase Java para buscarResponse complex type.
+ * 
+ * <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
+ * 
+ * <pre>
+ * &lt;complexType name="buscarResponse">
+ *   &lt;complexContent>
+ *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       &lt;sequence>
+ *         &lt;element name="return" type="{http://www.w3.org/2001/XMLSchema}anyType" maxOccurs="unbounded" minOccurs="0"/>
+ *       &lt;/sequence>
+ *     &lt;/restriction>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * 
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "buscarResponse", propOrder = {
+    "_return"
+})
+public class BuscarResponse {
+
+    @XmlElement(name = "return")
+    protected List<Object> _return;
+
+    /**
+     * Gets the value of the return property.
+     * 
+     * <p>
+     * This accessor method returns a reference to the live list,
+     * not a snapshot. Therefore any modification you make to the
+     * returned list will be present inside the JAXB object.
+     * This is why there is not a <CODE>set</CODE> method for the return property.
+     * 
+     * <p>
+     * For example, to add a new item, do as follows:
+     * <pre>
+     *    getReturn().add(newItem);
+     * </pre>
+     * 
+     * 
+     * <p>
+     * Objects of the following type(s) are allowed in the list
+     * {@link Object }
+     * 
+     * 
+     */
+    public List<Object> getReturn() {
+        if (_return == null) {
+            _return = new ArrayList<Object>();
+        }
+        return this._return;
+    }
+
+}
diff --git a/UyTube_mobile/src/java/logica/controladores/CUsuario.class b/UyTube_mobile/src/java/logica/controladores/CUsuario.class
new file mode 100644
index 0000000000000000000000000000000000000000..b1d648ca36dfd6daf908dad876fc30e690f61535
Binary files /dev/null and b/UyTube_mobile/src/java/logica/controladores/CUsuario.class differ
diff --git a/UyTube_mobile/src/java/logica/controladores/CUsuario.java b/UyTube_mobile/src/java/logica/controladores/CUsuario.java
new file mode 100644
index 0000000000000000000000000000000000000000..4956be6324c498e32a77a243ca7d47d08b551133
--- /dev/null
+++ b/UyTube_mobile/src/java/logica/controladores/CUsuario.java
@@ -0,0 +1,682 @@
+
+package logica.controladores;
+
+import java.util.List;
+import javax.jws.WebMethod;
+import javax.jws.WebParam;
+import javax.jws.WebResult;
+import javax.jws.WebService;
+import javax.xml.bind.annotation.XmlSeeAlso;
+import javax.xml.ws.Action;
+import javax.xml.ws.RequestWrapper;
+import javax.xml.ws.ResponseWrapper;
+
+
+/**
+ * This class was generated by the JAX-WS RI.
+ * JAX-WS RI 2.2.9-b130926.1035
+ * Generated source version: 2.2
+ * 
+ */
+@WebService(name = "CUsuario", targetNamespace = "http://Controladores.Logica/")
+@XmlSeeAlso({
+    ObjectFactory.class
+})
+public interface CUsuario {
+
+
+    /**
+     * 
+     * @param arg0
+     */
+    @WebMethod
+    @RequestWrapper(localName = "altaVideo", targetNamespace = "http://Controladores.Logica/", className = "logica.controladores.AltaVideo")
+    @ResponseWrapper(localName = "altaVideoResponse", targetNamespace = "http://Controladores.Logica/", className = "logica.controladores.AltaVideoResponse")
+    @Action(input = "http://Controladores.Logica/CUsuario/altaVideoRequest", output = "http://Controladores.Logica/CUsuario/altaVideoResponse")
+    public void altaVideo(
+        @WebParam(name = "arg0", targetNamespace = "")
+        DtVideo arg0);
+
+    /**
+     * 
+     * @return
+     *     returns java.util.List<java.lang.String>
+     */
+    @WebMethod
+    @WebResult(targetNamespace = "")
+    @RequestWrapper(localName = "listarCategorias", targetNamespace = "http://Controladores.Logica/", className = "logica.controladores.ListarCategorias")
+    @ResponseWrapper(localName = "listarCategoriasResponse", targetNamespace = "http://Controladores.Logica/", className = "logica.controladores.ListarCategoriasResponse")
+    @Action(input = "http://Controladores.Logica/CUsuario/listarCategoriasRequest", output = "http://Controladores.Logica/CUsuario/listarCategoriasResponse")
+    public List<String> listarCategorias();
+
+    /**
+     * 
+     */
+    @WebMethod
+    @RequestWrapper(localName = "seguirUsuario", targetNamespace = "http://Controladores.Logica/", className = "logica.controladores.SeguirUsuario")
+    @ResponseWrapper(localName = "seguirUsuarioResponse", targetNamespace = "http://Controladores.Logica/", className = "logica.controladores.SeguirUsuarioResponse")
+    @Action(input = "http://Controladores.Logica/CUsuario/seguirUsuarioRequest", output = "http://Controladores.Logica/CUsuario/seguirUsuarioResponse")
+    public void seguirUsuario();
+
+    /**
+     * 
+     * @param arg0
+     * @return
+     *     returns boolean
+     */
+    @WebMethod
+    @WebResult(targetNamespace = "")
+    @RequestWrapper(localName = "existeNickname", targetNamespace = "http://Controladores.Logica/", className = "logica.controladores.ExisteNickname")
+    @ResponseWrapper(localName = "existeNicknameResponse", targetNamespace = "http://Controladores.Logica/", className = "logica.controladores.ExisteNicknameResponse")
+    @Action(input = "http://Controladores.Logica/CUsuario/existeNicknameRequest", output = "http://Controladores.Logica/CUsuario/existeNicknameResponse")
+    public boolean existeNickname(
+        @WebParam(name = "arg0", targetNamespace = "")
+        String arg0);
+
+    /**
+     * 
+     */
+    @WebMethod
+    @RequestWrapper(localName = "cerrarSesion", targetNamespace = "http://Controladores.Logica/", className = "logica.controladores.CerrarSesion")
+    @ResponseWrapper(localName = "cerrarSesionResponse", targetNamespace = "http://Controladores.Logica/", className = "logica.controladores.CerrarSesionResponse")
+    @Action(input = "http://Controladores.Logica/CUsuario/cerrarSesionRequest", output = "http://Controladores.Logica/CUsuario/cerrarSesionResponse")
+    public void cerrarSesion();
+
+    /**
+     * 
+     * @param arg0
+     */
+    @WebMethod
+    @RequestWrapper(localName = "altaComentario", targetNamespace = "http://Controladores.Logica/", className = "logica.controladores.AltaComentario")
+    @ResponseWrapper(localName = "altaComentarioResponse", targetNamespace = "http://Controladores.Logica/", className = "logica.controladores.AltaComentarioResponse")
+    @Action(input = "http://Controladores.Logica/CUsuario/altaComentarioRequest", output = "http://Controladores.Logica/CUsuario/altaComentarioResponse")
+    public void altaComentario(
+        @WebParam(name = "arg0", targetNamespace = "")
+        DtComentario arg0);
+
+    /**
+     * 
+     * @param arg2
+     * @param arg1
+     * @param arg0
+     * @return
+     *     returns java.util.List<java.lang.Object>
+     */
+    @WebMethod
+    @WebResult(targetNamespace = "")
+    @RequestWrapper(localName = "buscar", targetNamespace = "http://Controladores.Logica/", className = "logica.controladores.Buscar")
+    @ResponseWrapper(localName = "buscarResponse", targetNamespace = "http://Controladores.Logica/", className = "logica.controladores.BuscarResponse")
+    @Action(input = "http://Controladores.Logica/CUsuario/buscarRequest", output = "http://Controladores.Logica/CUsuario/buscarResponse")
+    public List<Object> buscar(
+        @WebParam(name = "arg0", targetNamespace = "")
+        String arg0,
+        @WebParam(name = "arg1", targetNamespace = "")
+        Filtrado arg1,
+        @WebParam(name = "arg2", targetNamespace = "")
+        Ordenacion arg2);
+
+    /**
+     * 
+     * @param arg0
+     */
+    @WebMethod
+    @RequestWrapper(localName = "modificarVideo", targetNamespace = "http://Controladores.Logica/", className = "logica.controladores.ModificarVideo")
+    @ResponseWrapper(localName = "modificarVideoResponse", targetNamespace = "http://Controladores.Logica/", className = "logica.controladores.ModificarVideoResponse")
+    @Action(input = "http://Controladores.Logica/CUsuario/modificarVideoRequest", output = "http://Controladores.Logica/CUsuario/modificarVideoResponse")
+    public void modificarVideo(
+        @WebParam(name = "arg0", targetNamespace = "")
+        DtVideo arg0);
+
+    /**
+     * 
+     * @param arg1
+     * @param arg0
+     */
+    @WebMethod
+    @RequestWrapper(localName = "altaUsuarioCanal", targetNamespace = "http://Controladores.Logica/", className = "logica.controladores.AltaUsuarioCanal")
+    @ResponseWrapper(localName = "altaUsuarioCanalResponse", targetNamespace = "http://Controladores.Logica/", className = "logica.controladores.AltaUsuarioCanalResponse")
+    @Action(input = "http://Controladores.Logica/CUsuario/altaUsuarioCanalRequest", output = "http://Controladores.Logica/CUsuario/altaUsuarioCanalResponse")
+    public void altaUsuarioCanal(
+        @WebParam(name = "arg0", targetNamespace = "")
+        DtUsuario arg0,
+        @WebParam(name = "arg1", targetNamespace = "")
+        DtCanal arg1);
+
+    /**
+     * 
+     * @return
+     *     returns java.util.List<logica.controladores.DtUsuario>
+     */
+    @WebMethod
+    @WebResult(targetNamespace = "")
+    @RequestWrapper(localName = "listarUsuarios", targetNamespace = "http://Controladores.Logica/", className = "logica.controladores.ListarUsuarios")
+    @ResponseWrapper(localName = "listarUsuariosResponse", targetNamespace = "http://Controladores.Logica/", className = "logica.controladores.ListarUsuariosResponse")
+    @Action(input = "http://Controladores.Logica/CUsuario/listarUsuariosRequest", output = "http://Controladores.Logica/CUsuario/listarUsuariosResponse")
+    public List<DtUsuario> listarUsuarios();
+
+    /**
+     * 
+     * @param arg0
+     * @return
+     *     returns logica.controladores.DtVideo
+     */
+    @WebMethod
+    @WebResult(targetNamespace = "")
+    @RequestWrapper(localName = "seleccionarVideo", targetNamespace = "http://Controladores.Logica/", className = "logica.controladores.SeleccionarVideo")
+    @ResponseWrapper(localName = "seleccionarVideoResponse", targetNamespace = "http://Controladores.Logica/", className = "logica.controladores.SeleccionarVideoResponse")
+    @Action(input = "http://Controladores.Logica/CUsuario/seleccionarVideoRequest", output = "http://Controladores.Logica/CUsuario/seleccionarVideoResponse")
+    public DtVideo seleccionarVideo(
+        @WebParam(name = "arg0", targetNamespace = "")
+        int arg0);
+
+    /**
+     * 
+     * @param arg0
+     * @return
+     *     returns boolean
+     */
+    @WebMethod
+    @WebResult(targetNamespace = "")
+    @RequestWrapper(localName = "existeEmail", targetNamespace = "http://Controladores.Logica/", className = "logica.controladores.ExisteEmail")
+    @ResponseWrapper(localName = "existeEmailResponse", targetNamespace = "http://Controladores.Logica/", className = "logica.controladores.ExisteEmailResponse")
+    @Action(input = "http://Controladores.Logica/CUsuario/existeEmailRequest", output = "http://Controladores.Logica/CUsuario/existeEmailResponse")
+    public boolean existeEmail(
+        @WebParam(name = "arg0", targetNamespace = "")
+        String arg0);
+
+    /**
+     * 
+     */
+    @WebMethod
+    @RequestWrapper(localName = "bajaUsuario", targetNamespace = "http://Controladores.Logica/", className = "logica.controladores.BajaUsuario")
+    @ResponseWrapper(localName = "bajaUsuarioResponse", targetNamespace = "http://Controladores.Logica/", className = "logica.controladores.BajaUsuarioResponse")
+    @Action(input = "http://Controladores.Logica/CUsuario/bajaUsuarioRequest", output = "http://Controladores.Logica/CUsuario/bajaUsuarioResponse")
+    public void bajaUsuario();
+
+    /**
+     * 
+     * @param arg0
+     */
+    @WebMethod
+    @RequestWrapper(localName = "altaListaDeReproduccionParticular", targetNamespace = "http://Controladores.Logica/", className = "logica.controladores.AltaListaDeReproduccionParticular")
+    @ResponseWrapper(localName = "altaListaDeReproduccionParticularResponse", targetNamespace = "http://Controladores.Logica/", className = "logica.controladores.AltaListaDeReproduccionParticularResponse")
+    @Action(input = "http://Controladores.Logica/CUsuario/altaListaDeReproduccionParticularRequest", output = "http://Controladores.Logica/CUsuario/altaListaDeReproduccionParticularResponse")
+    public void altaListaDeReproduccionParticular(
+        @WebParam(name = "arg0", targetNamespace = "")
+        DtListaDeReproduccion arg0);
+
+    /**
+     * 
+     * @return
+     *     returns boolean
+     */
+    @WebMethod
+    @WebResult(targetNamespace = "")
+    @RequestWrapper(localName = "elUsuarioSeleccionadoEsElUsuarioActual", targetNamespace = "http://Controladores.Logica/", className = "logica.controladores.ElUsuarioSeleccionadoEsElUsuarioActual")
+    @ResponseWrapper(localName = "elUsuarioSeleccionadoEsElUsuarioActualResponse", targetNamespace = "http://Controladores.Logica/", className = "logica.controladores.ElUsuarioSeleccionadoEsElUsuarioActualResponse")
+    @Action(input = "http://Controladores.Logica/CUsuario/elUsuarioSeleccionadoEsElUsuarioActualRequest", output = "http://Controladores.Logica/CUsuario/elUsuarioSeleccionadoEsElUsuarioActualResponse")
+    public boolean elUsuarioSeleccionadoEsElUsuarioActual();
+
+    /**
+     * 
+     * @param arg0
+     * @return
+     *     returns logica.controladores.DtUsuario
+     */
+    @WebMethod
+    @WebResult(targetNamespace = "")
+    @RequestWrapper(localName = "obtenerPropietarioDeListaDeReproduccion", targetNamespace = "http://Controladores.Logica/", className = "logica.controladores.ObtenerPropietarioDeListaDeReproduccion")
+    @ResponseWrapper(localName = "obtenerPropietarioDeListaDeReproduccionResponse", targetNamespace = "http://Controladores.Logica/", className = "logica.controladores.ObtenerPropietarioDeListaDeReproduccionResponse")
+    @Action(input = "http://Controladores.Logica/CUsuario/obtenerPropietarioDeListaDeReproduccionRequest", output = "http://Controladores.Logica/CUsuario/obtenerPropietarioDeListaDeReproduccionResponse")
+    public DtUsuario obtenerPropietarioDeListaDeReproduccion(
+        @WebParam(name = "arg0", targetNamespace = "")
+        int arg0);
+
+    /**
+     * 
+     */
+    @WebMethod
+    @RequestWrapper(localName = "liberarMemoriaListaDeReproduccion", targetNamespace = "http://Controladores.Logica/", className = "logica.controladores.LiberarMemoriaListaDeReproduccion")
+    @ResponseWrapper(localName = "liberarMemoriaListaDeReproduccionResponse", targetNamespace = "http://Controladores.Logica/", className = "logica.controladores.LiberarMemoriaListaDeReproduccionResponse")
+    @Action(input = "http://Controladores.Logica/CUsuario/liberarMemoriaListaDeReproduccionRequest", output = "http://Controladores.Logica/CUsuario/liberarMemoriaListaDeReproduccionResponse")
+    public void liberarMemoriaListaDeReproduccion();
+
+    /**
+     * 
+     * @param arg0
+     * @return
+     *     returns java.util.List<logica.controladores.DtListaDeReproduccion>
+     */
+    @WebMethod
+    @WebResult(targetNamespace = "")
+    @RequestWrapper(localName = "listarListasDeReproduccionDeUsuario", targetNamespace = "http://Controladores.Logica/", className = "logica.controladores.ListarListasDeReproduccionDeUsuario")
+    @ResponseWrapper(localName = "listarListasDeReproduccionDeUsuarioResponse", targetNamespace = "http://Controladores.Logica/", className = "logica.controladores.ListarListasDeReproduccionDeUsuarioResponse")
+    @Action(input = "http://Controladores.Logica/CUsuario/listarListasDeReproduccionDeUsuarioRequest", output = "http://Controladores.Logica/CUsuario/listarListasDeReproduccionDeUsuarioResponse")
+    public List<DtListaDeReproduccion> listarListasDeReproduccionDeUsuario(
+        @WebParam(name = "arg0", targetNamespace = "")
+        boolean arg0);
+
+    /**
+     * 
+     * @return
+     *     returns java.util.List<logica.controladores.DtVideo>
+     */
+    @WebMethod
+    @WebResult(targetNamespace = "")
+    @RequestWrapper(localName = "listarVideosDeListaDeReproduccion", targetNamespace = "http://Controladores.Logica/", className = "logica.controladores.ListarVideosDeListaDeReproduccion")
+    @ResponseWrapper(localName = "listarVideosDeListaDeReproduccionResponse", targetNamespace = "http://Controladores.Logica/", className = "logica.controladores.ListarVideosDeListaDeReproduccionResponse")
+    @Action(input = "http://Controladores.Logica/CUsuario/listarVideosDeListaDeReproduccionRequest", output = "http://Controladores.Logica/CUsuario/listarVideosDeListaDeReproduccionResponse")
+    public List<DtVideo> listarVideosDeListaDeReproduccion();
+
+    /**
+     * 
+     * @return
+     *     returns boolean
+     */
+    @WebMethod
+    @WebResult(targetNamespace = "")
+    @RequestWrapper(localName = "sesionIniciada", targetNamespace = "http://Controladores.Logica/", className = "logica.controladores.SesionIniciada")
+    @ResponseWrapper(localName = "sesionIniciadaResponse", targetNamespace = "http://Controladores.Logica/", className = "logica.controladores.SesionIniciadaResponse")
+    @Action(input = "http://Controladores.Logica/CUsuario/sesionIniciadaRequest", output = "http://Controladores.Logica/CUsuario/sesionIniciadaResponse")
+    public boolean sesionIniciada();
+
+    /**
+     * 
+     * @param arg0
+     */
+    @WebMethod
+    @RequestWrapper(localName = "valorarVideo", targetNamespace = "http://Controladores.Logica/", className = "logica.controladores.ValorarVideo")
+    @ResponseWrapper(localName = "valorarVideoResponse", targetNamespace = "http://Controladores.Logica/", className = "logica.controladores.ValorarVideoResponse")
+    @Action(input = "http://Controladores.Logica/CUsuario/valorarVideoRequest", output = "http://Controladores.Logica/CUsuario/valorarVideoResponse")
+    public void valorarVideo(
+        @WebParam(name = "arg0", targetNamespace = "")
+        DtValoracion arg0);
+
+    /**
+     * 
+     * @return
+     *     returns logica.controladores.DtValoracion
+     */
+    @WebMethod
+    @WebResult(targetNamespace = "")
+    @RequestWrapper(localName = "obtenerValoracionDada", targetNamespace = "http://Controladores.Logica/", className = "logica.controladores.ObtenerValoracionDada")
+    @ResponseWrapper(localName = "obtenerValoracionDadaResponse", targetNamespace = "http://Controladores.Logica/", className = "logica.controladores.ObtenerValoracionDadaResponse")
+    @Action(input = "http://Controladores.Logica/CUsuario/obtenerValoracionDadaRequest", output = "http://Controladores.Logica/CUsuario/obtenerValoracionDadaResponse")
+    public DtValoracion obtenerValoracionDada();
+
+    /**
+     * 
+     * @param arg0
+     * @return
+     *     returns boolean
+     */
+    @WebMethod
+    @WebResult(targetNamespace = "")
+    @RequestWrapper(localName = "existeImagenDeUsuario", targetNamespace = "http://Controladores.Logica/", className = "logica.controladores.ExisteImagenDeUsuario")
+    @ResponseWrapper(localName = "existeImagenDeUsuarioResponse", targetNamespace = "http://Controladores.Logica/", className = "logica.controladores.ExisteImagenDeUsuarioResponse")
+    @Action(input = "http://Controladores.Logica/CUsuario/existeImagenDeUsuarioRequest", output = "http://Controladores.Logica/CUsuario/existeImagenDeUsuarioResponse")
+    public boolean existeImagenDeUsuario(
+        @WebParam(name = "arg0", targetNamespace = "")
+        String arg0);
+
+    /**
+     * 
+     * @return
+     *     returns logica.controladores.DtCanal
+     */
+    @WebMethod
+    @WebResult(targetNamespace = "")
+    @RequestWrapper(localName = "obtenerCanalDeUsuario", targetNamespace = "http://Controladores.Logica/", className = "logica.controladores.ObtenerCanalDeUsuario")
+    @ResponseWrapper(localName = "obtenerCanalDeUsuarioResponse", targetNamespace = "http://Controladores.Logica/", className = "logica.controladores.ObtenerCanalDeUsuarioResponse")
+    @Action(input = "http://Controladores.Logica/CUsuario/obtenerCanalDeUsuarioRequest", output = "http://Controladores.Logica/CUsuario/obtenerCanalDeUsuarioResponse")
+    public DtCanal obtenerCanalDeUsuario();
+
+    /**
+     * 
+     * @param arg0
+     * @return
+     *     returns logica.controladores.DtListaDeReproduccion
+     */
+    @WebMethod
+    @WebResult(targetNamespace = "")
+    @RequestWrapper(localName = "seleccionarListaDeReproduccion", targetNamespace = "http://Controladores.Logica/", className = "logica.controladores.SeleccionarListaDeReproduccion")
+    @ResponseWrapper(localName = "seleccionarListaDeReproduccionResponse", targetNamespace = "http://Controladores.Logica/", className = "logica.controladores.SeleccionarListaDeReproduccionResponse")
+    @Action(input = "http://Controladores.Logica/CUsuario/seleccionarListaDeReproduccionRequest", output = "http://Controladores.Logica/CUsuario/seleccionarListaDeReproduccionResponse")
+    public DtListaDeReproduccion seleccionarListaDeReproduccion(
+        @WebParam(name = "arg0", targetNamespace = "")
+        int arg0);
+
+    /**
+     * 
+     * @param arg0
+     */
+    @WebMethod
+    @RequestWrapper(localName = "modificarListaDeReproduccion", targetNamespace = "http://Controladores.Logica/", className = "logica.controladores.ModificarListaDeReproduccion")
+    @ResponseWrapper(localName = "modificarListaDeReproduccionResponse", targetNamespace = "http://Controladores.Logica/", className = "logica.controladores.ModificarListaDeReproduccionResponse")
+    @Action(input = "http://Controladores.Logica/CUsuario/modificarListaDeReproduccionRequest", output = "http://Controladores.Logica/CUsuario/modificarListaDeReproduccionResponse")
+    public void modificarListaDeReproduccion(
+        @WebParam(name = "arg0", targetNamespace = "")
+        DtListaDeReproduccion arg0);
+
+    /**
+     * 
+     * @return
+     *     returns java.util.List<logica.controladores.DtVideo>
+     */
+    @WebMethod
+    @WebResult(targetNamespace = "")
+    @RequestWrapper(localName = "listarVideosDeUsuario", targetNamespace = "http://Controladores.Logica/", className = "logica.controladores.ListarVideosDeUsuario")
+    @ResponseWrapper(localName = "listarVideosDeUsuarioResponse", targetNamespace = "http://Controladores.Logica/", className = "logica.controladores.ListarVideosDeUsuarioResponse")
+    @Action(input = "http://Controladores.Logica/CUsuario/listarVideosDeUsuarioRequest", output = "http://Controladores.Logica/CUsuario/listarVideosDeUsuarioResponse")
+    public List<DtVideo> listarVideosDeUsuario();
+
+    /**
+     * 
+     * @param arg0
+     * @return
+     *     returns logica.controladores.DtUsuario
+     */
+    @WebMethod
+    @WebResult(targetNamespace = "")
+    @RequestWrapper(localName = "seleccionarUsuario", targetNamespace = "http://Controladores.Logica/", className = "logica.controladores.SeleccionarUsuario")
+    @ResponseWrapper(localName = "seleccionarUsuarioResponse", targetNamespace = "http://Controladores.Logica/", className = "logica.controladores.SeleccionarUsuarioResponse")
+    @Action(input = "http://Controladores.Logica/CUsuario/seleccionarUsuarioRequest", output = "http://Controladores.Logica/CUsuario/seleccionarUsuarioResponse")
+    public DtUsuario seleccionarUsuario(
+        @WebParam(name = "arg0", targetNamespace = "")
+        String arg0);
+
+    /**
+     * 
+     * @param arg0
+     */
+    @WebMethod
+    @RequestWrapper(localName = "altaImagenDeUsuario", targetNamespace = "http://Controladores.Logica/", className = "logica.controladores.AltaImagenDeUsuario")
+    @ResponseWrapper(localName = "altaImagenDeUsuarioResponse", targetNamespace = "http://Controladores.Logica/", className = "logica.controladores.AltaImagenDeUsuarioResponse")
+    @Action(input = "http://Controladores.Logica/CUsuario/altaImagenDeUsuarioRequest", output = "http://Controladores.Logica/CUsuario/altaImagenDeUsuarioResponse")
+    public void altaImagenDeUsuario(
+        @WebParam(name = "arg0", targetNamespace = "")
+        DtImagenUsuario arg0);
+
+    /**
+     * 
+     * @param arg0
+     */
+    @WebMethod
+    @RequestWrapper(localName = "modificarImagenDeUsuario", targetNamespace = "http://Controladores.Logica/", className = "logica.controladores.ModificarImagenDeUsuario")
+    @ResponseWrapper(localName = "modificarImagenDeUsuarioResponse", targetNamespace = "http://Controladores.Logica/", className = "logica.controladores.ModificarImagenDeUsuarioResponse")
+    @Action(input = "http://Controladores.Logica/CUsuario/modificarImagenDeUsuarioRequest", output = "http://Controladores.Logica/CUsuario/modificarImagenDeUsuarioResponse")
+    public void modificarImagenDeUsuario(
+        @WebParam(name = "arg0", targetNamespace = "")
+        DtImagenUsuario arg0);
+
+    /**
+     * 
+     */
+    @WebMethod
+    @RequestWrapper(localName = "liberarMemoriaVideo", targetNamespace = "http://Controladores.Logica/", className = "logica.controladores.LiberarMemoriaVideo")
+    @ResponseWrapper(localName = "liberarMemoriaVideoResponse", targetNamespace = "http://Controladores.Logica/", className = "logica.controladores.LiberarMemoriaVideoResponse")
+    @Action(input = "http://Controladores.Logica/CUsuario/liberarMemoriaVideoRequest", output = "http://Controladores.Logica/CUsuario/liberarMemoriaVideoResponse")
+    public void liberarMemoriaVideo();
+
+    /**
+     * 
+     * @param arg0
+     */
+    @WebMethod
+    @RequestWrapper(localName = "eliminarImagenDeUsuario", targetNamespace = "http://Controladores.Logica/", className = "logica.controladores.EliminarImagenDeUsuario")
+    @ResponseWrapper(localName = "eliminarImagenDeUsuarioResponse", targetNamespace = "http://Controladores.Logica/", className = "logica.controladores.EliminarImagenDeUsuarioResponse")
+    @Action(input = "http://Controladores.Logica/CUsuario/eliminarImagenDeUsuarioRequest", output = "http://Controladores.Logica/CUsuario/eliminarImagenDeUsuarioResponse")
+    public void eliminarImagenDeUsuario(
+        @WebParam(name = "arg0", targetNamespace = "")
+        String arg0);
+
+    /**
+     * 
+     * @param arg0
+     */
+    @WebMethod
+    @RequestWrapper(localName = "agregarVideoAListaDeReproduccion", targetNamespace = "http://Controladores.Logica/", className = "logica.controladores.AgregarVideoAListaDeReproduccion")
+    @ResponseWrapper(localName = "agregarVideoAListaDeReproduccionResponse", targetNamespace = "http://Controladores.Logica/", className = "logica.controladores.AgregarVideoAListaDeReproduccionResponse")
+    @Action(input = "http://Controladores.Logica/CUsuario/agregarVideoAListaDeReproduccionRequest", output = "http://Controladores.Logica/CUsuario/agregarVideoAListaDeReproduccionResponse")
+    public void agregarVideoAListaDeReproduccion(
+        @WebParam(name = "arg0", targetNamespace = "")
+        int arg0);
+
+    /**
+     * 
+     * @return
+     *     returns logica.controladores.DtImagenUsuario
+     */
+    @WebMethod
+    @WebResult(targetNamespace = "")
+    @RequestWrapper(localName = "obtenerImagenDeUsuarioPorDefecto", targetNamespace = "http://Controladores.Logica/", className = "logica.controladores.ObtenerImagenDeUsuarioPorDefecto")
+    @ResponseWrapper(localName = "obtenerImagenDeUsuarioPorDefectoResponse", targetNamespace = "http://Controladores.Logica/", className = "logica.controladores.ObtenerImagenDeUsuarioPorDefectoResponse")
+    @Action(input = "http://Controladores.Logica/CUsuario/obtenerImagenDeUsuarioPorDefectoRequest", output = "http://Controladores.Logica/CUsuario/obtenerImagenDeUsuarioPorDefectoResponse")
+    public DtImagenUsuario obtenerImagenDeUsuarioPorDefecto();
+
+    /**
+     * 
+     * @return
+     *     returns java.util.List<logica.controladores.DtComentario>
+     */
+    @WebMethod
+    @WebResult(targetNamespace = "")
+    @RequestWrapper(localName = "listarComentariosDeVideo", targetNamespace = "http://Controladores.Logica/", className = "logica.controladores.ListarComentariosDeVideo")
+    @ResponseWrapper(localName = "listarComentariosDeVideoResponse", targetNamespace = "http://Controladores.Logica/", className = "logica.controladores.ListarComentariosDeVideoResponse")
+    @Action(input = "http://Controladores.Logica/CUsuario/listarComentariosDeVideoRequest", output = "http://Controladores.Logica/CUsuario/listarComentariosDeVideoResponse")
+    public List<DtComentario> listarComentariosDeVideo();
+
+    /**
+     * 
+     * @param arg0
+     * @return
+     *     returns logica.controladores.DtUsuario
+     */
+    @WebMethod
+    @WebResult(targetNamespace = "")
+    @RequestWrapper(localName = "obtenerPropietarioDeVideo", targetNamespace = "http://Controladores.Logica/", className = "logica.controladores.ObtenerPropietarioDeVideo")
+    @ResponseWrapper(localName = "obtenerPropietarioDeVideoResponse", targetNamespace = "http://Controladores.Logica/", className = "logica.controladores.ObtenerPropietarioDeVideoResponse")
+    @Action(input = "http://Controladores.Logica/CUsuario/obtenerPropietarioDeVideoRequest", output = "http://Controladores.Logica/CUsuario/obtenerPropietarioDeVideoResponse")
+    public DtUsuario obtenerPropietarioDeVideo(
+        @WebParam(name = "arg0", targetNamespace = "")
+        int arg0);
+
+    /**
+     * 
+     * @param arg1
+     * @param arg0
+     */
+    @WebMethod
+    @RequestWrapper(localName = "altaSubComentario", targetNamespace = "http://Controladores.Logica/", className = "logica.controladores.AltaSubComentario")
+    @ResponseWrapper(localName = "altaSubComentarioResponse", targetNamespace = "http://Controladores.Logica/", className = "logica.controladores.AltaSubComentarioResponse")
+    @Action(input = "http://Controladores.Logica/CUsuario/altaSubComentarioRequest", output = "http://Controladores.Logica/CUsuario/altaSubComentarioResponse")
+    public void altaSubComentario(
+        @WebParam(name = "arg0", targetNamespace = "")
+        DtComentario arg0,
+        @WebParam(name = "arg1", targetNamespace = "")
+        int arg1);
+
+    /**
+     * 
+     * @param arg0
+     * @return
+     *     returns java.util.List<java.lang.Object>
+     */
+    @WebMethod
+    @WebResult(targetNamespace = "")
+    @RequestWrapper(localName = "buscarPorCategoria", targetNamespace = "http://Controladores.Logica/", className = "logica.controladores.BuscarPorCategoria")
+    @ResponseWrapper(localName = "buscarPorCategoriaResponse", targetNamespace = "http://Controladores.Logica/", className = "logica.controladores.BuscarPorCategoriaResponse")
+    @Action(input = "http://Controladores.Logica/CUsuario/buscarPorCategoriaRequest", output = "http://Controladores.Logica/CUsuario/buscarPorCategoriaResponse")
+    public List<Object> buscarPorCategoria(
+        @WebParam(name = "arg0", targetNamespace = "")
+        String arg0);
+
+    /**
+     * 
+     * @param arg0
+     * @return
+     *     returns logica.controladores.DtUsuario
+     */
+    @WebMethod
+    @WebResult(targetNamespace = "")
+    @RequestWrapper(localName = "obtenerPropietarioDeCanal", targetNamespace = "http://Controladores.Logica/", className = "logica.controladores.ObtenerPropietarioDeCanal")
+    @ResponseWrapper(localName = "obtenerPropietarioDeCanalResponse", targetNamespace = "http://Controladores.Logica/", className = "logica.controladores.ObtenerPropietarioDeCanalResponse")
+    @Action(input = "http://Controladores.Logica/CUsuario/obtenerPropietarioDeCanalRequest", output = "http://Controladores.Logica/CUsuario/obtenerPropietarioDeCanalResponse")
+    public DtUsuario obtenerPropietarioDeCanal(
+        @WebParam(name = "arg0", targetNamespace = "")
+        int arg0);
+
+    /**
+     * 
+     * @param arg1
+     * @param arg0
+     * @return
+     *     returns boolean
+     */
+    @WebMethod
+    @WebResult(targetNamespace = "")
+    @RequestWrapper(localName = "validarNuevoVideo", targetNamespace = "http://Controladores.Logica/", className = "logica.controladores.ValidarNuevoVideo")
+    @ResponseWrapper(localName = "validarNuevoVideoResponse", targetNamespace = "http://Controladores.Logica/", className = "logica.controladores.ValidarNuevoVideoResponse")
+    @Action(input = "http://Controladores.Logica/CUsuario/validarNuevoVideoRequest", output = "http://Controladores.Logica/CUsuario/validarNuevoVideoResponse")
+    public boolean validarNuevoVideo(
+        @WebParam(name = "arg0", targetNamespace = "")
+        String arg0,
+        @WebParam(name = "arg1", targetNamespace = "")
+        int arg1);
+
+    /**
+     * 
+     * @return
+     *     returns java.util.List<logica.controladores.DtUsuario>
+     */
+    @WebMethod
+    @WebResult(targetNamespace = "")
+    @RequestWrapper(localName = "listarUsuarioSeguidores", targetNamespace = "http://Controladores.Logica/", className = "logica.controladores.ListarUsuarioSeguidores")
+    @ResponseWrapper(localName = "listarUsuarioSeguidoresResponse", targetNamespace = "http://Controladores.Logica/", className = "logica.controladores.ListarUsuarioSeguidoresResponse")
+    @Action(input = "http://Controladores.Logica/CUsuario/listarUsuarioSeguidoresRequest", output = "http://Controladores.Logica/CUsuario/listarUsuarioSeguidoresResponse")
+    public List<DtUsuario> listarUsuarioSeguidores();
+
+    /**
+     * 
+     * @return
+     *     returns logica.controladores.DtUsuario
+     */
+    @WebMethod
+    @WebResult(targetNamespace = "")
+    @RequestWrapper(localName = "obtenerUsuarioActual", targetNamespace = "http://Controladores.Logica/", className = "logica.controladores.ObtenerUsuarioActual")
+    @ResponseWrapper(localName = "obtenerUsuarioActualResponse", targetNamespace = "http://Controladores.Logica/", className = "logica.controladores.ObtenerUsuarioActualResponse")
+    @Action(input = "http://Controladores.Logica/CUsuario/obtenerUsuarioActualRequest", output = "http://Controladores.Logica/CUsuario/obtenerUsuarioActualResponse")
+    public DtUsuario obtenerUsuarioActual();
+
+    /**
+     * 
+     * @param arg1
+     * @param arg0
+     * @return
+     *     returns boolean
+     */
+    @WebMethod
+    @WebResult(targetNamespace = "")
+    @RequestWrapper(localName = "iniciarSesionUsuario", targetNamespace = "http://Controladores.Logica/", className = "logica.controladores.IniciarSesionUsuario")
+    @ResponseWrapper(localName = "iniciarSesionUsuarioResponse", targetNamespace = "http://Controladores.Logica/", className = "logica.controladores.IniciarSesionUsuarioResponse")
+    @Action(input = "http://Controladores.Logica/CUsuario/iniciarSesionUsuarioRequest", output = "http://Controladores.Logica/CUsuario/iniciarSesionUsuarioResponse")
+    public boolean iniciarSesionUsuario(
+        @WebParam(name = "arg0", targetNamespace = "")
+        String arg0,
+        @WebParam(name = "arg1", targetNamespace = "")
+        String arg1);
+
+    /**
+     * 
+     * @param arg0
+     */
+    @WebMethod
+    @RequestWrapper(localName = "quitarVideoDeListaDeReproduccion", targetNamespace = "http://Controladores.Logica/", className = "logica.controladores.QuitarVideoDeListaDeReproduccion")
+    @ResponseWrapper(localName = "quitarVideoDeListaDeReproduccionResponse", targetNamespace = "http://Controladores.Logica/", className = "logica.controladores.QuitarVideoDeListaDeReproduccionResponse")
+    @Action(input = "http://Controladores.Logica/CUsuario/quitarVideoDeListaDeReproduccionRequest", output = "http://Controladores.Logica/CUsuario/quitarVideoDeListaDeReproduccionResponse")
+    public void quitarVideoDeListaDeReproduccion(
+        @WebParam(name = "arg0", targetNamespace = "")
+        int arg0);
+
+    /**
+     * 
+     * @param arg0
+     * @return
+     *     returns logica.controladores.DtImagenUsuario
+     */
+    @WebMethod
+    @WebResult(targetNamespace = "")
+    @RequestWrapper(localName = "obtenerImagenDeUsuario", targetNamespace = "http://Controladores.Logica/", className = "logica.controladores.ObtenerImagenDeUsuario")
+    @ResponseWrapper(localName = "obtenerImagenDeUsuarioResponse", targetNamespace = "http://Controladores.Logica/", className = "logica.controladores.ObtenerImagenDeUsuarioResponse")
+    @Action(input = "http://Controladores.Logica/CUsuario/obtenerImagenDeUsuarioRequest", output = "http://Controladores.Logica/CUsuario/obtenerImagenDeUsuarioResponse")
+    public DtImagenUsuario obtenerImagenDeUsuario(
+        @WebParam(name = "arg0", targetNamespace = "")
+        String arg0);
+
+    /**
+     * 
+     * @return
+     *     returns java.util.List<logica.controladores.DtUsuario>
+     */
+    @WebMethod
+    @WebResult(targetNamespace = "")
+    @RequestWrapper(localName = "listarUsuarioSeguidos", targetNamespace = "http://Controladores.Logica/", className = "logica.controladores.ListarUsuarioSeguidos")
+    @ResponseWrapper(localName = "listarUsuarioSeguidosResponse", targetNamespace = "http://Controladores.Logica/", className = "logica.controladores.ListarUsuarioSeguidosResponse")
+    @Action(input = "http://Controladores.Logica/CUsuario/listarUsuarioSeguidosRequest", output = "http://Controladores.Logica/CUsuario/listarUsuarioSeguidosResponse")
+    public List<DtUsuario> listarUsuarioSeguidos();
+
+    /**
+     * 
+     * @return
+     *     returns java.util.List<logica.controladores.DtValoracion>
+     */
+    @WebMethod
+    @WebResult(targetNamespace = "")
+    @RequestWrapper(localName = "obtenerValoracionesDeVideo", targetNamespace = "http://Controladores.Logica/", className = "logica.controladores.ObtenerValoracionesDeVideo")
+    @ResponseWrapper(localName = "obtenerValoracionesDeVideoResponse", targetNamespace = "http://Controladores.Logica/", className = "logica.controladores.ObtenerValoracionesDeVideoResponse")
+    @Action(input = "http://Controladores.Logica/CUsuario/obtenerValoracionesDeVideoRequest", output = "http://Controladores.Logica/CUsuario/obtenerValoracionesDeVideoResponse")
+    public List<DtValoracion> obtenerValoracionesDeVideo();
+
+    /**
+     * 
+     */
+    @WebMethod
+    @RequestWrapper(localName = "liberarMemoriaUsuario", targetNamespace = "http://Controladores.Logica/", className = "logica.controladores.LiberarMemoriaUsuario")
+    @ResponseWrapper(localName = "liberarMemoriaUsuarioResponse", targetNamespace = "http://Controladores.Logica/", className = "logica.controladores.LiberarMemoriaUsuarioResponse")
+    @Action(input = "http://Controladores.Logica/CUsuario/liberarMemoriaUsuarioRequest", output = "http://Controladores.Logica/CUsuario/liberarMemoriaUsuarioResponse")
+    public void liberarMemoriaUsuario();
+
+    /**
+     * 
+     * @param arg1
+     * @param arg0
+     */
+    @WebMethod
+    @RequestWrapper(localName = "modificarUsuarioYCanal", targetNamespace = "http://Controladores.Logica/", className = "logica.controladores.ModificarUsuarioYCanal")
+    @ResponseWrapper(localName = "modificarUsuarioYCanalResponse", targetNamespace = "http://Controladores.Logica/", className = "logica.controladores.ModificarUsuarioYCanalResponse")
+    @Action(input = "http://Controladores.Logica/CUsuario/modificarUsuarioYCanalRequest", output = "http://Controladores.Logica/CUsuario/modificarUsuarioYCanalResponse")
+    public void modificarUsuarioYCanal(
+        @WebParam(name = "arg0", targetNamespace = "")
+        DtUsuario arg0,
+        @WebParam(name = "arg1", targetNamespace = "")
+        DtCanal arg1);
+
+    /**
+     * 
+     * @param arg1
+     * @param arg0
+     * @return
+     *     returns boolean
+     */
+    @WebMethod
+    @WebResult(targetNamespace = "")
+    @RequestWrapper(localName = "validarNuevaListaParticular", targetNamespace = "http://Controladores.Logica/", className = "logica.controladores.ValidarNuevaListaParticular")
+    @ResponseWrapper(localName = "validarNuevaListaParticularResponse", targetNamespace = "http://Controladores.Logica/", className = "logica.controladores.ValidarNuevaListaParticularResponse")
+    @Action(input = "http://Controladores.Logica/CUsuario/validarNuevaListaParticularRequest", output = "http://Controladores.Logica/CUsuario/validarNuevaListaParticularResponse")
+    public boolean validarNuevaListaParticular(
+        @WebParam(name = "arg0", targetNamespace = "")
+        String arg0,
+        @WebParam(name = "arg1", targetNamespace = "")
+        int arg1);
+
+}
diff --git a/UyTube_mobile/src/java/logica/controladores/CUsuarioService.class b/UyTube_mobile/src/java/logica/controladores/CUsuarioService.class
new file mode 100644
index 0000000000000000000000000000000000000000..979ef8dfb26709592e64be4c00a8f11bcb0b0bab
Binary files /dev/null and b/UyTube_mobile/src/java/logica/controladores/CUsuarioService.class differ
diff --git a/UyTube_mobile/src/java/logica/controladores/CUsuarioService.java b/UyTube_mobile/src/java/logica/controladores/CUsuarioService.java
new file mode 100644
index 0000000000000000000000000000000000000000..b03b57da17a1dd4e9f11def16127917b27f3d42b
--- /dev/null
+++ b/UyTube_mobile/src/java/logica/controladores/CUsuarioService.java
@@ -0,0 +1,94 @@
+
+package logica.controladores;
+
+import java.net.MalformedURLException;
+import java.net.URL;
+import javax.xml.namespace.QName;
+import javax.xml.ws.Service;
+import javax.xml.ws.WebEndpoint;
+import javax.xml.ws.WebServiceClient;
+import javax.xml.ws.WebServiceException;
+import javax.xml.ws.WebServiceFeature;
+
+
+/**
+ * This class was generated by the JAX-WS RI.
+ * JAX-WS RI 2.2.9-b130926.1035
+ * Generated source version: 2.2
+ * 
+ */
+@WebServiceClient(name = "CUsuarioService", targetNamespace = "http://Controladores.Logica/", wsdlLocation = "http://localhost:9789/UyTube_ws?wsdl")
+public class CUsuarioService
+    extends Service
+{
+
+    private final static URL CUSUARIOSERVICE_WSDL_LOCATION;
+    private final static WebServiceException CUSUARIOSERVICE_EXCEPTION;
+    private final static QName CUSUARIOSERVICE_QNAME = new QName("http://Controladores.Logica/", "CUsuarioService");
+
+    static {
+        URL url = null;
+        WebServiceException e = null;
+        try {
+            url = new URL("http://localhost:9789/UyTube_ws?wsdl");
+        } catch (MalformedURLException ex) {
+            e = new WebServiceException(ex);
+        }
+        CUSUARIOSERVICE_WSDL_LOCATION = url;
+        CUSUARIOSERVICE_EXCEPTION = e;
+    }
+
+    public CUsuarioService() {
+        super(__getWsdlLocation(), CUSUARIOSERVICE_QNAME);
+    }
+
+    public CUsuarioService(WebServiceFeature... features) {
+        super(__getWsdlLocation(), CUSUARIOSERVICE_QNAME, features);
+    }
+
+    public CUsuarioService(URL wsdlLocation) {
+        super(wsdlLocation, CUSUARIOSERVICE_QNAME);
+    }
+
+    public CUsuarioService(URL wsdlLocation, WebServiceFeature... features) {
+        super(wsdlLocation, CUSUARIOSERVICE_QNAME, features);
+    }
+
+    public CUsuarioService(URL wsdlLocation, QName serviceName) {
+        super(wsdlLocation, serviceName);
+    }
+
+    public CUsuarioService(URL wsdlLocation, QName serviceName, WebServiceFeature... features) {
+        super(wsdlLocation, serviceName, features);
+    }
+
+    /**
+     * 
+     * @return
+     *     returns CUsuario
+     */
+    @WebEndpoint(name = "CUsuarioPort")
+    public CUsuario getCUsuarioPort() {
+        return super.getPort(new QName("http://Controladores.Logica/", "CUsuarioPort"), CUsuario.class);
+    }
+
+    /**
+     * 
+     * @param features
+     *     A list of {@link javax.xml.ws.WebServiceFeature} to configure on the proxy.  Supported features not in the <code>features</code> parameter will have their default values.
+     * @return
+     *     returns CUsuario
+     */
+    @WebEndpoint(name = "CUsuarioPort")
+    public CUsuario getCUsuarioPort(WebServiceFeature... features) {
+        return super.getPort(new QName("http://Controladores.Logica/", "CUsuarioPort"), CUsuario.class, features);
+    }
+
+    private static URL __getWsdlLocation() {
+        if (CUSUARIOSERVICE_EXCEPTION!= null) {
+            throw CUSUARIOSERVICE_EXCEPTION;
+        }
+        return CUSUARIOSERVICE_WSDL_LOCATION;
+    }
+
+}
diff --git a/UyTube_mobile/src/java/logica/controladores/CerrarSesion.class b/UyTube_mobile/src/java/logica/controladores/CerrarSesion.class
new file mode 100644
index 0000000000000000000000000000000000000000..669f3f9a9119e53d2231a357104a9c6c99316399
Binary files /dev/null and b/UyTube_mobile/src/java/logica/controladores/CerrarSesion.class differ
diff --git a/UyTube_mobile/src/java/logica/controladores/CerrarSesion.java b/UyTube_mobile/src/java/logica/controladores/CerrarSesion.java
new file mode 100644
index 0000000000000000000000000000000000000000..28f72fec8527d70fd48a99fc59c0c5f6aa6d0e35
--- /dev/null
+++ b/UyTube_mobile/src/java/logica/controladores/CerrarSesion.java
@@ -0,0 +1,32 @@
+
+package logica.controladores;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Clase Java para cerrarSesion complex type.
+ * 
+ * <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
+ * 
+ * <pre>
+ * &lt;complexType name="cerrarSesion">
+ *   &lt;complexContent>
+ *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       &lt;sequence>
+ *       &lt;/sequence>
+ *     &lt;/restriction>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * 
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "cerrarSesion")
+public class CerrarSesion {
+
+
+}
diff --git a/UyTube_mobile/src/java/logica/controladores/CerrarSesionResponse.class b/UyTube_mobile/src/java/logica/controladores/CerrarSesionResponse.class
new file mode 100644
index 0000000000000000000000000000000000000000..7cd2ce659c31b220abd7e62587d03b0041f0eba5
Binary files /dev/null and b/UyTube_mobile/src/java/logica/controladores/CerrarSesionResponse.class differ
diff --git a/UyTube_mobile/src/java/logica/controladores/CerrarSesionResponse.java b/UyTube_mobile/src/java/logica/controladores/CerrarSesionResponse.java
new file mode 100644
index 0000000000000000000000000000000000000000..65791350e57464ed2bfbecb90a1b09af24b04c85
--- /dev/null
+++ b/UyTube_mobile/src/java/logica/controladores/CerrarSesionResponse.java
@@ -0,0 +1,32 @@
+
+package logica.controladores;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Clase Java para cerrarSesionResponse complex type.
+ * 
+ * <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
+ * 
+ * <pre>
+ * &lt;complexType name="cerrarSesionResponse">
+ *   &lt;complexContent>
+ *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       &lt;sequence>
+ *       &lt;/sequence>
+ *     &lt;/restriction>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * 
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "cerrarSesionResponse")
+public class CerrarSesionResponse {
+
+
+}
diff --git a/UyTube_mobile/src/java/logica/controladores/DtCanal.class b/UyTube_mobile/src/java/logica/controladores/DtCanal.class
new file mode 100644
index 0000000000000000000000000000000000000000..f30a86af486c0d4f78695c321d3a2198bdc7cb77
Binary files /dev/null and b/UyTube_mobile/src/java/logica/controladores/DtCanal.class differ
diff --git a/UyTube_mobile/src/java/logica/controladores/DtCanal.java b/UyTube_mobile/src/java/logica/controladores/DtCanal.java
new file mode 100644
index 0000000000000000000000000000000000000000..cd8794cd21b6d3a0301b7cc2bd546cf4d49d9b4e
--- /dev/null
+++ b/UyTube_mobile/src/java/logica/controladores/DtCanal.java
@@ -0,0 +1,135 @@
+
+package logica.controladores;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlSchemaType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Clase Java para dtCanal complex type.
+ * 
+ * <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
+ * 
+ * <pre>
+ * &lt;complexType name="dtCanal">
+ *   &lt;complexContent>
+ *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       &lt;sequence>
+ *         &lt;element name="id" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         &lt;element name="nombre" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         &lt;element name="descripcion" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         &lt;element name="privacidad" type="{http://Controladores.Logica/}privacidad" minOccurs="0"/>
+ *       &lt;/sequence>
+ *     &lt;/restriction>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * 
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "dtCanal", propOrder = {
+    "id",
+    "nombre",
+    "descripcion",
+    "privacidad"
+})
+public class DtCanal {
+
+    protected int id;
+    protected String nombre;
+    protected String descripcion;
+    @XmlSchemaType(name = "string")
+    protected Privacidad privacidad;
+
+    /**
+     * Obtiene el valor de la propiedad id.
+     * 
+     */
+    public int getId() {
+        return id;
+    }
+
+    /**
+     * Define el valor de la propiedad id.
+     * 
+     */
+    public void setId(int value) {
+        this.id = value;
+    }
+
+    /**
+     * Obtiene el valor de la propiedad nombre.
+     * 
+     * @return
+     *     possible object is
+     *     {@link String }
+     *     
+     */
+    public String getNombre() {
+        return nombre;
+    }
+
+    /**
+     * Define el valor de la propiedad nombre.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link String }
+     *     
+     */
+    public void setNombre(String value) {
+        this.nombre = value;
+    }
+
+    /**
+     * Obtiene el valor de la propiedad descripcion.
+     * 
+     * @return
+     *     possible object is
+     *     {@link String }
+     *     
+     */
+    public String getDescripcion() {
+        return descripcion;
+    }
+
+    /**
+     * Define el valor de la propiedad descripcion.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link String }
+     *     
+     */
+    public void setDescripcion(String value) {
+        this.descripcion = value;
+    }
+
+    /**
+     * Obtiene el valor de la propiedad privacidad.
+     * 
+     * @return
+     *     possible object is
+     *     {@link Privacidad }
+     *     
+     */
+    public Privacidad getPrivacidad() {
+        return privacidad;
+    }
+
+    /**
+     * Define el valor de la propiedad privacidad.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link Privacidad }
+     *     
+     */
+    public void setPrivacidad(Privacidad value) {
+        this.privacidad = value;
+    }
+
+}
diff --git a/UyTube_mobile/src/java/logica/controladores/DtComentario.class b/UyTube_mobile/src/java/logica/controladores/DtComentario.class
new file mode 100644
index 0000000000000000000000000000000000000000..6cad3d75393c6c8d07e6191cfcb346ed285b3608
Binary files /dev/null and b/UyTube_mobile/src/java/logica/controladores/DtComentario.class differ
diff --git a/UyTube_mobile/src/java/logica/controladores/DtComentario.java b/UyTube_mobile/src/java/logica/controladores/DtComentario.java
new file mode 100644
index 0000000000000000000000000000000000000000..a70515f759fb67b44b3aae3055b9e3314aa19155
--- /dev/null
+++ b/UyTube_mobile/src/java/logica/controladores/DtComentario.java
@@ -0,0 +1,152 @@
+
+package logica.controladores;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Clase Java para dtComentario complex type.
+ * 
+ * <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
+ * 
+ * <pre>
+ * &lt;complexType name="dtComentario">
+ *   &lt;complexContent>
+ *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       &lt;sequence>
+ *         &lt;element name="id" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         &lt;element name="nickname" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         &lt;element name="fecha" type="{http://Controladores.Logica/}fecha" minOccurs="0"/>
+ *         &lt;element name="texto" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         &lt;element name="nivelSubComentario" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *       &lt;/sequence>
+ *     &lt;/restriction>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * 
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "dtComentario", propOrder = {
+    "id",
+    "nickname",
+    "fecha",
+    "texto",
+    "nivelSubComentario"
+})
+public class DtComentario {
+
+    protected int id;
+    protected String nickname;
+    protected Fecha fecha;
+    protected String texto;
+    protected int nivelSubComentario;
+
+    /**
+     * Obtiene el valor de la propiedad id.
+     * 
+     */
+    public int getId() {
+        return id;
+    }
+
+    /**
+     * Define el valor de la propiedad id.
+     * 
+     */
+    public void setId(int value) {
+        this.id = value;
+    }
+
+    /**
+     * Obtiene el valor de la propiedad nickname.
+     * 
+     * @return
+     *     possible object is
+     *     {@link String }
+     *     
+     */
+    public String getNickname() {
+        return nickname;
+    }
+
+    /**
+     * Define el valor de la propiedad nickname.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link String }
+     *     
+     */
+    public void setNickname(String value) {
+        this.nickname = value;
+    }
+
+    /**
+     * Obtiene el valor de la propiedad fecha.
+     * 
+     * @return
+     *     possible object is
+     *     {@link Fecha }
+     *     
+     */
+    public Fecha getFecha() {
+        return fecha;
+    }
+
+    /**
+     * Define el valor de la propiedad fecha.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link Fecha }
+     *     
+     */
+    public void setFecha(Fecha value) {
+        this.fecha = value;
+    }
+
+    /**
+     * Obtiene el valor de la propiedad texto.
+     * 
+     * @return
+     *     possible object is
+     *     {@link String }
+     *     
+     */
+    public String getTexto() {
+        return texto;
+    }
+
+    /**
+     * Define el valor de la propiedad texto.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link String }
+     *     
+     */
+    public void setTexto(String value) {
+        this.texto = value;
+    }
+
+    /**
+     * Obtiene el valor de la propiedad nivelSubComentario.
+     * 
+     */
+    public int getNivelSubComentario() {
+        return nivelSubComentario;
+    }
+
+    /**
+     * Define el valor de la propiedad nivelSubComentario.
+     * 
+     */
+    public void setNivelSubComentario(int value) {
+        this.nivelSubComentario = value;
+    }
+
+}
diff --git a/UyTube_mobile/src/java/logica/controladores/DtImagenUsuario.class b/UyTube_mobile/src/java/logica/controladores/DtImagenUsuario.class
new file mode 100644
index 0000000000000000000000000000000000000000..56d6c3163f0b9fd3e85dafcc5f8b0a8cbb8b24b6
Binary files /dev/null and b/UyTube_mobile/src/java/logica/controladores/DtImagenUsuario.class differ
diff --git a/UyTube_mobile/src/java/logica/controladores/DtImagenUsuario.java b/UyTube_mobile/src/java/logica/controladores/DtImagenUsuario.java
new file mode 100644
index 0000000000000000000000000000000000000000..8b7e1ea05574c7413f1e28d003fc01c29da1ed56
--- /dev/null
+++ b/UyTube_mobile/src/java/logica/controladores/DtImagenUsuario.java
@@ -0,0 +1,112 @@
+
+package logica.controladores;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Clase Java para dtImagenUsuario complex type.
+ * 
+ * <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
+ * 
+ * <pre>
+ * &lt;complexType name="dtImagenUsuario">
+ *   &lt;complexContent>
+ *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       &lt;sequence>
+ *         &lt;element name="nickname" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         &lt;element name="imagen" type="{http://www.w3.org/2001/XMLSchema}base64Binary" minOccurs="0"/>
+ *         &lt;element name="nombreArchivo" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       &lt;/sequence>
+ *     &lt;/restriction>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * 
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "dtImagenUsuario", propOrder = {
+    "nickname",
+    "imagen",
+    "nombreArchivo"
+})
+public class DtImagenUsuario {
+
+    protected String nickname;
+    protected byte[] imagen;
+    protected String nombreArchivo;
+
+    /**
+     * Obtiene el valor de la propiedad nickname.
+     * 
+     * @return
+     *     possible object is
+     *     {@link String }
+     *     
+     */
+    public String getNickname() {
+        return nickname;
+    }
+
+    /**
+     * Define el valor de la propiedad nickname.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link String }
+     *     
+     */
+    public void setNickname(String value) {
+        this.nickname = value;
+    }
+
+    /**
+     * Obtiene el valor de la propiedad imagen.
+     * 
+     * @return
+     *     possible object is
+     *     byte[]
+     */
+    public byte[] getImagen() {
+        return imagen;
+    }
+
+    /**
+     * Define el valor de la propiedad imagen.
+     * 
+     * @param value
+     *     allowed object is
+     *     byte[]
+     */
+    public void setImagen(byte[] value) {
+        this.imagen = value;
+    }
+
+    /**
+     * Obtiene el valor de la propiedad nombreArchivo.
+     * 
+     * @return
+     *     possible object is
+     *     {@link String }
+     *     
+     */
+    public String getNombreArchivo() {
+        return nombreArchivo;
+    }
+
+    /**
+     * Define el valor de la propiedad nombreArchivo.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link String }
+     *     
+     */
+    public void setNombreArchivo(String value) {
+        this.nombreArchivo = value;
+    }
+
+}
diff --git a/UyTube_mobile/src/java/logica/controladores/DtListaDeReproduccion.class b/UyTube_mobile/src/java/logica/controladores/DtListaDeReproduccion.class
new file mode 100644
index 0000000000000000000000000000000000000000..1836fe690894a0233369219459add2632af1f9fc
Binary files /dev/null and b/UyTube_mobile/src/java/logica/controladores/DtListaDeReproduccion.class differ
diff --git a/UyTube_mobile/src/java/logica/controladores/DtListaDeReproduccion.java b/UyTube_mobile/src/java/logica/controladores/DtListaDeReproduccion.java
new file mode 100644
index 0000000000000000000000000000000000000000..d57d32e9eac17dd989919b1a34e48a597f491cb6
--- /dev/null
+++ b/UyTube_mobile/src/java/logica/controladores/DtListaDeReproduccion.java
@@ -0,0 +1,190 @@
+
+package logica.controladores;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlSchemaType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Clase Java para dtListaDeReproduccion complex type.
+ * 
+ * <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
+ * 
+ * <pre>
+ * &lt;complexType name="dtListaDeReproduccion">
+ *   &lt;complexContent>
+ *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       &lt;sequence>
+ *         &lt;element name="id" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         &lt;element name="nombre" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         &lt;element name="privacidad" type="{http://Controladores.Logica/}privacidad" minOccurs="0"/>
+ *         &lt;element name="tipo" type="{http://Controladores.Logica/}tipoListaDeReproduccion" minOccurs="0"/>
+ *         &lt;element name="categoria" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         &lt;element name="nombreDuenio" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       &lt;/sequence>
+ *     &lt;/restriction>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * 
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "dtListaDeReproduccion", propOrder = {
+    "id",
+    "nombre",
+    "privacidad",
+    "tipo",
+    "categoria",
+    "nombreDuenio"
+})
+public class DtListaDeReproduccion {
+
+    protected int id;
+    protected String nombre;
+    @XmlSchemaType(name = "string")
+    protected Privacidad privacidad;
+    @XmlSchemaType(name = "string")
+    protected TipoListaDeReproduccion tipo;
+    protected String categoria;
+    protected String nombreDuenio;
+
+    /**
+     * Obtiene el valor de la propiedad id.
+     * 
+     */
+    public int getId() {
+        return id;
+    }
+
+    /**
+     * Define el valor de la propiedad id.
+     * 
+     */
+    public void setId(int value) {
+        this.id = value;
+    }
+
+    /**
+     * Obtiene el valor de la propiedad nombre.
+     * 
+     * @return
+     *     possible object is
+     *     {@link String }
+     *     
+     */
+    public String getNombre() {
+        return nombre;
+    }
+
+    /**
+     * Define el valor de la propiedad nombre.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link String }
+     *     
+     */
+    public void setNombre(String value) {
+        this.nombre = value;
+    }
+
+    /**
+     * Obtiene el valor de la propiedad privacidad.
+     * 
+     * @return
+     *     possible object is
+     *     {@link Privacidad }
+     *     
+     */
+    public Privacidad getPrivacidad() {
+        return privacidad;
+    }
+
+    /**
+     * Define el valor de la propiedad privacidad.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link Privacidad }
+     *     
+     */
+    public void setPrivacidad(Privacidad value) {
+        this.privacidad = value;
+    }
+
+    /**
+     * Obtiene el valor de la propiedad tipo.
+     * 
+     * @return
+     *     possible object is
+     *     {@link TipoListaDeReproduccion }
+     *     
+     */
+    public TipoListaDeReproduccion getTipo() {
+        return tipo;
+    }
+
+    /**
+     * Define el valor de la propiedad tipo.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link TipoListaDeReproduccion }
+     *     
+     */
+    public void setTipo(TipoListaDeReproduccion value) {
+        this.tipo = value;
+    }
+
+    /**
+     * Obtiene el valor de la propiedad categoria.
+     * 
+     * @return
+     *     possible object is
+     *     {@link String }
+     *     
+     */
+    public String getCategoria() {
+        return categoria;
+    }
+
+    /**
+     * Define el valor de la propiedad categoria.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link String }
+     *     
+     */
+    public void setCategoria(String value) {
+        this.categoria = value;
+    }
+
+    /**
+     * Obtiene el valor de la propiedad nombreDuenio.
+     * 
+     * @return
+     *     possible object is
+     *     {@link String }
+     *     
+     */
+    public String getNombreDuenio() {
+        return nombreDuenio;
+    }
+
+    /**
+     * Define el valor de la propiedad nombreDuenio.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link String }
+     *     
+     */
+    public void setNombreDuenio(String value) {
+        this.nombreDuenio = value;
+    }
+
+}
diff --git a/UyTube_mobile/src/java/logica/controladores/DtPersona.class b/UyTube_mobile/src/java/logica/controladores/DtPersona.class
new file mode 100644
index 0000000000000000000000000000000000000000..d567dae22a86222d6943183fac2a34dec631fe2d
Binary files /dev/null and b/UyTube_mobile/src/java/logica/controladores/DtPersona.class differ
diff --git a/UyTube_mobile/src/java/logica/controladores/DtPersona.java b/UyTube_mobile/src/java/logica/controladores/DtPersona.java
new file mode 100644
index 0000000000000000000000000000000000000000..58c40fd546e16555f0aabb24c76825356b960afa
--- /dev/null
+++ b/UyTube_mobile/src/java/logica/controladores/DtPersona.java
@@ -0,0 +1,118 @@
+
+package logica.controladores;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlSeeAlso;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Clase Java para dtPersona complex type.
+ * 
+ * <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
+ * 
+ * <pre>
+ * &lt;complexType name="dtPersona">
+ *   &lt;complexContent>
+ *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       &lt;sequence>
+ *         &lt;element name="nombre" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         &lt;element name="apellido" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         &lt;element name="contrasenia" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       &lt;/sequence>
+ *     &lt;/restriction>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * 
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "dtPersona", propOrder = {
+    "nombre",
+    "apellido",
+    "contrasenia"
+})
+@XmlSeeAlso({
+    DtUsuario.class
+})
+public abstract class DtPersona {
+
+    protected String nombre;
+    protected String apellido;
+    protected String contrasenia;
+
+    /**
+     * Obtiene el valor de la propiedad nombre.
+     * 
+     * @return
+     *     possible object is
+     *     {@link String }
+     *     
+     */
+    public String getNombre() {
+        return nombre;
+    }
+
+    /**
+     * Define el valor de la propiedad nombre.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link String }
+     *     
+     */
+    public void setNombre(String value) {
+        this.nombre = value;
+    }
+
+    /**
+     * Obtiene el valor de la propiedad apellido.
+     * 
+     * @return
+     *     possible object is
+     *     {@link String }
+     *     
+     */
+    public String getApellido() {
+        return apellido;
+    }
+
+    /**
+     * Define el valor de la propiedad apellido.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link String }
+     *     
+     */
+    public void setApellido(String value) {
+        this.apellido = value;
+    }
+
+    /**
+     * Obtiene el valor de la propiedad contrasenia.
+     * 
+     * @return
+     *     possible object is
+     *     {@link String }
+     *     
+     */
+    public String getContrasenia() {
+        return contrasenia;
+    }
+
+    /**
+     * Define el valor de la propiedad contrasenia.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link String }
+     *     
+     */
+    public void setContrasenia(String value) {
+        this.contrasenia = value;
+    }
+
+}
diff --git a/UyTube_mobile/src/java/logica/controladores/DtUsuario.class b/UyTube_mobile/src/java/logica/controladores/DtUsuario.class
new file mode 100644
index 0000000000000000000000000000000000000000..8a19c8d8b41700169da2e12ed56e9443345a968c
Binary files /dev/null and b/UyTube_mobile/src/java/logica/controladores/DtUsuario.class differ
diff --git a/UyTube_mobile/src/java/logica/controladores/DtUsuario.java b/UyTube_mobile/src/java/logica/controladores/DtUsuario.java
new file mode 100644
index 0000000000000000000000000000000000000000..3d3549ce8ab7a99ef2f62a15fac88aae71931dce
--- /dev/null
+++ b/UyTube_mobile/src/java/logica/controladores/DtUsuario.java
@@ -0,0 +1,189 @@
+
+package logica.controladores;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Clase Java para dtUsuario complex type.
+ * 
+ * <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
+ * 
+ * <pre>
+ * &lt;complexType name="dtUsuario">
+ *   &lt;complexContent>
+ *     &lt;extension base="{http://Controladores.Logica/}dtPersona">
+ *       &lt;sequence>
+ *         &lt;element name="nickname" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         &lt;element name="correo" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         &lt;element name="fechaNacimiento" type="{http://Controladores.Logica/}fecha" minOccurs="0"/>
+ *         &lt;element name="fechaEliminado" type="{http://Controladores.Logica/}fecha" minOccurs="0"/>
+ *         &lt;element name="imagen" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         &lt;element name="cantSeguidores" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *       &lt;/sequence>
+ *     &lt;/extension>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * 
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "dtUsuario", propOrder = {
+    "nickname",
+    "correo",
+    "fechaNacimiento",
+    "fechaEliminado",
+    "imagen",
+    "cantSeguidores"
+})
+public class DtUsuario
+    extends DtPersona
+{
+
+    protected String nickname;
+    protected String correo;
+    protected Fecha fechaNacimiento;
+    protected Fecha fechaEliminado;
+    protected String imagen;
+    protected int cantSeguidores;
+
+    /**
+     * Obtiene el valor de la propiedad nickname.
+     * 
+     * @return
+     *     possible object is
+     *     {@link String }
+     *     
+     */
+    public String getNickname() {
+        return nickname;
+    }
+
+    /**
+     * Define el valor de la propiedad nickname.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link String }
+     *     
+     */
+    public void setNickname(String value) {
+        this.nickname = value;
+    }
+
+    /**
+     * Obtiene el valor de la propiedad correo.
+     * 
+     * @return
+     *     possible object is
+     *     {@link String }
+     *     
+     */
+    public String getCorreo() {
+        return correo;
+    }
+
+    /**
+     * Define el valor de la propiedad correo.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link String }
+     *     
+     */
+    public void setCorreo(String value) {
+        this.correo = value;
+    }
+
+    /**
+     * Obtiene el valor de la propiedad fechaNacimiento.
+     * 
+     * @return
+     *     possible object is
+     *     {@link Fecha }
+     *     
+     */
+    public Fecha getFechaNacimiento() {
+        return fechaNacimiento;
+    }
+
+    /**
+     * Define el valor de la propiedad fechaNacimiento.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link Fecha }
+     *     
+     */
+    public void setFechaNacimiento(Fecha value) {
+        this.fechaNacimiento = value;
+    }
+
+    /**
+     * Obtiene el valor de la propiedad fechaEliminado.
+     * 
+     * @return
+     *     possible object is
+     *     {@link Fecha }
+     *     
+     */
+    public Fecha getFechaEliminado() {
+        return fechaEliminado;
+    }
+
+    /**
+     * Define el valor de la propiedad fechaEliminado.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link Fecha }
+     *     
+     */
+    public void setFechaEliminado(Fecha value) {
+        this.fechaEliminado = value;
+    }
+
+    /**
+     * Obtiene el valor de la propiedad imagen.
+     * 
+     * @return
+     *     possible object is
+     *     {@link String }
+     *     
+     */
+    public String getImagen() {
+        return imagen;
+    }
+
+    /**
+     * Define el valor de la propiedad imagen.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link String }
+     *     
+     */
+    public void setImagen(String value) {
+        this.imagen = value;
+    }
+
+    /**
+     * Obtiene el valor de la propiedad cantSeguidores.
+     * 
+     */
+    public int getCantSeguidores() {
+        return cantSeguidores;
+    }
+
+    /**
+     * Define el valor de la propiedad cantSeguidores.
+     * 
+     */
+    public void setCantSeguidores(int value) {
+        this.cantSeguidores = value;
+    }
+
+}
diff --git a/UyTube_mobile/src/java/logica/controladores/DtValoracion.class b/UyTube_mobile/src/java/logica/controladores/DtValoracion.class
new file mode 100644
index 0000000000000000000000000000000000000000..ee8fbe20d39cabb97f37f343dec978afe2cb9b7e
Binary files /dev/null and b/UyTube_mobile/src/java/logica/controladores/DtValoracion.class differ
diff --git a/UyTube_mobile/src/java/logica/controladores/DtValoracion.java b/UyTube_mobile/src/java/logica/controladores/DtValoracion.java
new file mode 100644
index 0000000000000000000000000000000000000000..3143ed650812738de98eac873cad622a43832bb3
--- /dev/null
+++ b/UyTube_mobile/src/java/logica/controladores/DtValoracion.java
@@ -0,0 +1,89 @@
+
+package logica.controladores;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlSchemaType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Clase Java para dtValoracion complex type.
+ * 
+ * <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
+ * 
+ * <pre>
+ * &lt;complexType name="dtValoracion">
+ *   &lt;complexContent>
+ *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       &lt;sequence>
+ *         &lt;element name="val" type="{http://Controladores.Logica/}tipoValoracion" minOccurs="0"/>
+ *         &lt;element name="nickname" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       &lt;/sequence>
+ *     &lt;/restriction>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * 
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "dtValoracion", propOrder = {
+    "val",
+    "nickname"
+})
+public class DtValoracion {
+
+    @XmlSchemaType(name = "string")
+    protected TipoValoracion val;
+    protected String nickname;
+
+    /**
+     * Obtiene el valor de la propiedad val.
+     * 
+     * @return
+     *     possible object is
+     *     {@link TipoValoracion }
+     *     
+     */
+    public TipoValoracion getVal() {
+        return val;
+    }
+
+    /**
+     * Define el valor de la propiedad val.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link TipoValoracion }
+     *     
+     */
+    public void setVal(TipoValoracion value) {
+        this.val = value;
+    }
+
+    /**
+     * Obtiene el valor de la propiedad nickname.
+     * 
+     * @return
+     *     possible object is
+     *     {@link String }
+     *     
+     */
+    public String getNickname() {
+        return nickname;
+    }
+
+    /**
+     * Define el valor de la propiedad nickname.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link String }
+     *     
+     */
+    public void setNickname(String value) {
+        this.nickname = value;
+    }
+
+}
diff --git a/UyTube_mobile/src/java/logica/controladores/DtVideo.class b/UyTube_mobile/src/java/logica/controladores/DtVideo.class
new file mode 100644
index 0000000000000000000000000000000000000000..dbb317758ba08d983235fc2b034013b18157525b
Binary files /dev/null and b/UyTube_mobile/src/java/logica/controladores/DtVideo.class differ
diff --git a/UyTube_mobile/src/java/logica/controladores/DtVideo.java b/UyTube_mobile/src/java/logica/controladores/DtVideo.java
new file mode 100644
index 0000000000000000000000000000000000000000..1a768d2c1cddbed37e412168c2d0ef050a23ab19
--- /dev/null
+++ b/UyTube_mobile/src/java/logica/controladores/DtVideo.java
@@ -0,0 +1,308 @@
+
+package logica.controladores;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlSchemaType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Clase Java para dtVideo complex type.
+ * 
+ * <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
+ * 
+ * <pre>
+ * &lt;complexType name="dtVideo">
+ *   &lt;complexContent>
+ *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       &lt;sequence>
+ *         &lt;element name="id" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         &lt;element name="nombre" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         &lt;element name="descripcion" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         &lt;element name="duracion" type="{http://Controladores.Logica/}duracion" minOccurs="0"/>
+ *         &lt;element name="fechaPublicacion" type="{http://Controladores.Logica/}fecha" minOccurs="0"/>
+ *         &lt;element name="urlVideoOriginal" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         &lt;element name="privacidad" type="{http://Controladores.Logica/}privacidad" minOccurs="0"/>
+ *         &lt;element name="categoria" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         &lt;element name="cantLikes" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         &lt;element name="cantDisLikes" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         &lt;element name="nombreDuenio" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       &lt;/sequence>
+ *     &lt;/restriction>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * 
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "dtVideo", propOrder = {
+    "id",
+    "nombre",
+    "descripcion",
+    "duracion",
+    "fechaPublicacion",
+    "urlVideoOriginal",
+    "privacidad",
+    "categoria",
+    "cantLikes",
+    "cantDisLikes",
+    "nombreDuenio"
+})
+public class DtVideo {
+
+    protected int id;
+    protected String nombre;
+    protected String descripcion;
+    protected Duracion duracion;
+    protected Fecha fechaPublicacion;
+    protected String urlVideoOriginal;
+    @XmlSchemaType(name = "string")
+    protected Privacidad privacidad;
+    protected String categoria;
+    protected int cantLikes;
+    protected int cantDisLikes;
+    protected String nombreDuenio;
+
+    /**
+     * Obtiene el valor de la propiedad id.
+     * 
+     */
+    public int getId() {
+        return id;
+    }
+
+    /**
+     * Define el valor de la propiedad id.
+     * 
+     */
+    public void setId(int value) {
+        this.id = value;
+    }
+
+    /**
+     * Obtiene el valor de la propiedad nombre.
+     * 
+     * @return
+     *     possible object is
+     *     {@link String }
+     *     
+     */
+    public String getNombre() {
+        return nombre;
+    }
+
+    /**
+     * Define el valor de la propiedad nombre.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link String }
+     *     
+     */
+    public void setNombre(String value) {
+        this.nombre = value;
+    }
+
+    /**
+     * Obtiene el valor de la propiedad descripcion.
+     * 
+     * @return
+     *     possible object is
+     *     {@link String }
+     *     
+     */
+    public String getDescripcion() {
+        return descripcion;
+    }
+
+    /**
+     * Define el valor de la propiedad descripcion.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link String }
+     *     
+     */
+    public void setDescripcion(String value) {
+        this.descripcion = value;
+    }
+
+    /**
+     * Obtiene el valor de la propiedad duracion.
+     * 
+     * @return
+     *     possible object is
+     *     {@link Duracion }
+     *     
+     */
+    public Duracion getDuracion() {
+        return duracion;
+    }
+
+    /**
+     * Define el valor de la propiedad duracion.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link Duracion }
+     *     
+     */
+    public void setDuracion(Duracion value) {
+        this.duracion = value;
+    }
+
+    /**
+     * Obtiene el valor de la propiedad fechaPublicacion.
+     * 
+     * @return
+     *     possible object is
+     *     {@link Fecha }
+     *     
+     */
+    public Fecha getFechaPublicacion() {
+        return fechaPublicacion;
+    }
+
+    /**
+     * Define el valor de la propiedad fechaPublicacion.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link Fecha }
+     *     
+     */
+    public void setFechaPublicacion(Fecha value) {
+        this.fechaPublicacion = value;
+    }
+
+    /**
+     * Obtiene el valor de la propiedad urlVideoOriginal.
+     * 
+     * @return
+     *     possible object is
+     *     {@link String }
+     *     
+     */
+    public String getUrlVideoOriginal() {
+        return urlVideoOriginal;
+    }
+
+    /**
+     * Define el valor de la propiedad urlVideoOriginal.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link String }
+     *     
+     */
+    public void setUrlVideoOriginal(String value) {
+        this.urlVideoOriginal = value;
+    }
+
+    /**
+     * Obtiene el valor de la propiedad privacidad.
+     * 
+     * @return
+     *     possible object is
+     *     {@link Privacidad }
+     *     
+     */
+    public Privacidad getPrivacidad() {
+        return privacidad;
+    }
+
+    /**
+     * Define el valor de la propiedad privacidad.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link Privacidad }
+     *     
+     */
+    public void setPrivacidad(Privacidad value) {
+        this.privacidad = value;
+    }
+
+    /**
+     * Obtiene el valor de la propiedad categoria.
+     * 
+     * @return
+     *     possible object is
+     *     {@link String }
+     *     
+     */
+    public String getCategoria() {
+        return categoria;
+    }
+
+    /**
+     * Define el valor de la propiedad categoria.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link String }
+     *     
+     */
+    public void setCategoria(String value) {
+        this.categoria = value;
+    }
+
+    /**
+     * Obtiene el valor de la propiedad cantLikes.
+     * 
+     */
+    public int getCantLikes() {
+        return cantLikes;
+    }
+
+    /**
+     * Define el valor de la propiedad cantLikes.
+     * 
+     */
+    public void setCantLikes(int value) {
+        this.cantLikes = value;
+    }
+
+    /**
+     * Obtiene el valor de la propiedad cantDisLikes.
+     * 
+     */
+    public int getCantDisLikes() {
+        return cantDisLikes;
+    }
+
+    /**
+     * Define el valor de la propiedad cantDisLikes.
+     * 
+     */
+    public void setCantDisLikes(int value) {
+        this.cantDisLikes = value;
+    }
+
+    /**
+     * Obtiene el valor de la propiedad nombreDuenio.
+     * 
+     * @return
+     *     possible object is
+     *     {@link String }
+     *     
+     */
+    public String getNombreDuenio() {
+        return nombreDuenio;
+    }
+
+    /**
+     * Define el valor de la propiedad nombreDuenio.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link String }
+     *     
+     */
+    public void setNombreDuenio(String value) {
+        this.nombreDuenio = value;
+    }
+
+}
diff --git a/UyTube_mobile/src/java/logica/controladores/Duracion.class b/UyTube_mobile/src/java/logica/controladores/Duracion.class
new file mode 100644
index 0000000000000000000000000000000000000000..3e4647b46a8b5b5c138078f32ff3e34fbfda21b0
Binary files /dev/null and b/UyTube_mobile/src/java/logica/controladores/Duracion.class differ
diff --git a/UyTube_mobile/src/java/logica/controladores/Duracion.java b/UyTube_mobile/src/java/logica/controladores/Duracion.java
new file mode 100644
index 0000000000000000000000000000000000000000..6947538e86196734958d552f66657d18f894d606
--- /dev/null
+++ b/UyTube_mobile/src/java/logica/controladores/Duracion.java
@@ -0,0 +1,90 @@
+
+package logica.controladores;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Clase Java para duracion complex type.
+ * 
+ * <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
+ * 
+ * <pre>
+ * &lt;complexType name="duracion">
+ *   &lt;complexContent>
+ *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       &lt;sequence>
+ *         &lt;element name="horas" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         &lt;element name="minutos" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         &lt;element name="segundos" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *       &lt;/sequence>
+ *     &lt;/restriction>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * 
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "duracion", propOrder = {
+    "horas",
+    "minutos",
+    "segundos"
+})
+public class Duracion {
+
+    protected int horas;
+    protected int minutos;
+    protected int segundos;
+
+    /**
+     * Obtiene el valor de la propiedad horas.
+     * 
+     */
+    public int getHoras() {
+        return horas;
+    }
+
+    /**
+     * Define el valor de la propiedad horas.
+     * 
+     */
+    public void setHoras(int value) {
+        this.horas = value;
+    }
+
+    /**
+     * Obtiene el valor de la propiedad minutos.
+     * 
+     */
+    public int getMinutos() {
+        return minutos;
+    }
+
+    /**
+     * Define el valor de la propiedad minutos.
+     * 
+     */
+    public void setMinutos(int value) {
+        this.minutos = value;
+    }
+
+    /**
+     * Obtiene el valor de la propiedad segundos.
+     * 
+     */
+    public int getSegundos() {
+        return segundos;
+    }
+
+    /**
+     * Define el valor de la propiedad segundos.
+     * 
+     */
+    public void setSegundos(int value) {
+        this.segundos = value;
+    }
+
+}
diff --git a/UyTube_mobile/src/java/logica/controladores/ElUsuarioSeleccionadoEsElUsuarioActual.class b/UyTube_mobile/src/java/logica/controladores/ElUsuarioSeleccionadoEsElUsuarioActual.class
new file mode 100644
index 0000000000000000000000000000000000000000..0711c9618137fa01d637893cf6c35216f13f2d7e
Binary files /dev/null and b/UyTube_mobile/src/java/logica/controladores/ElUsuarioSeleccionadoEsElUsuarioActual.class differ
diff --git a/UyTube_mobile/src/java/logica/controladores/ElUsuarioSeleccionadoEsElUsuarioActual.java b/UyTube_mobile/src/java/logica/controladores/ElUsuarioSeleccionadoEsElUsuarioActual.java
new file mode 100644
index 0000000000000000000000000000000000000000..acad68ec5520f96f71c2ac70ebe443ce4c369b74
--- /dev/null
+++ b/UyTube_mobile/src/java/logica/controladores/ElUsuarioSeleccionadoEsElUsuarioActual.java
@@ -0,0 +1,32 @@
+
+package logica.controladores;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Clase Java para elUsuarioSeleccionadoEsElUsuarioActual complex type.
+ * 
+ * <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
+ * 
+ * <pre>
+ * &lt;complexType name="elUsuarioSeleccionadoEsElUsuarioActual">
+ *   &lt;complexContent>
+ *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       &lt;sequence>
+ *       &lt;/sequence>
+ *     &lt;/restriction>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * 
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "elUsuarioSeleccionadoEsElUsuarioActual")
+public class ElUsuarioSeleccionadoEsElUsuarioActual {
+
+
+}
diff --git a/UyTube_mobile/src/java/logica/controladores/ElUsuarioSeleccionadoEsElUsuarioActualResponse.class b/UyTube_mobile/src/java/logica/controladores/ElUsuarioSeleccionadoEsElUsuarioActualResponse.class
new file mode 100644
index 0000000000000000000000000000000000000000..ed8b8a0c2dfeea1ef332d29d9da5ca0ddb650db4
Binary files /dev/null and b/UyTube_mobile/src/java/logica/controladores/ElUsuarioSeleccionadoEsElUsuarioActualResponse.class differ
diff --git a/UyTube_mobile/src/java/logica/controladores/ElUsuarioSeleccionadoEsElUsuarioActualResponse.java b/UyTube_mobile/src/java/logica/controladores/ElUsuarioSeleccionadoEsElUsuarioActualResponse.java
new file mode 100644
index 0000000000000000000000000000000000000000..91551703bb0a986aa3b301460eedf00f9c3d1272
--- /dev/null
+++ b/UyTube_mobile/src/java/logica/controladores/ElUsuarioSeleccionadoEsElUsuarioActualResponse.java
@@ -0,0 +1,54 @@
+
+package logica.controladores;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Clase Java para elUsuarioSeleccionadoEsElUsuarioActualResponse complex type.
+ * 
+ * <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
+ * 
+ * <pre>
+ * &lt;complexType name="elUsuarioSeleccionadoEsElUsuarioActualResponse">
+ *   &lt;complexContent>
+ *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       &lt;sequence>
+ *         &lt;element name="return" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
+ *       &lt;/sequence>
+ *     &lt;/restriction>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * 
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "elUsuarioSeleccionadoEsElUsuarioActualResponse", propOrder = {
+    "_return"
+})
+public class ElUsuarioSeleccionadoEsElUsuarioActualResponse {
+
+    @XmlElement(name = "return")
+    protected boolean _return;
+
+    /**
+     * Obtiene el valor de la propiedad return.
+     * 
+     */
+    public boolean isReturn() {
+        return _return;
+    }
+
+    /**
+     * Define el valor de la propiedad return.
+     * 
+     */
+    public void setReturn(boolean value) {
+        this._return = value;
+    }
+
+}
diff --git a/UyTube_mobile/src/java/logica/controladores/EliminarImagenDeUsuario.class b/UyTube_mobile/src/java/logica/controladores/EliminarImagenDeUsuario.class
new file mode 100644
index 0000000000000000000000000000000000000000..20b4e0d0c511f53d5b253a47ad78c8c0ff70f510
Binary files /dev/null and b/UyTube_mobile/src/java/logica/controladores/EliminarImagenDeUsuario.class differ
diff --git a/UyTube_mobile/src/java/logica/controladores/EliminarImagenDeUsuario.java b/UyTube_mobile/src/java/logica/controladores/EliminarImagenDeUsuario.java
new file mode 100644
index 0000000000000000000000000000000000000000..2a94357353dcac719b466c723e1fbb17644321aa
--- /dev/null
+++ b/UyTube_mobile/src/java/logica/controladores/EliminarImagenDeUsuario.java
@@ -0,0 +1,60 @@
+
+package logica.controladores;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Clase Java para eliminarImagenDeUsuario complex type.
+ * 
+ * <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
+ * 
+ * <pre>
+ * &lt;complexType name="eliminarImagenDeUsuario">
+ *   &lt;complexContent>
+ *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       &lt;sequence>
+ *         &lt;element name="arg0" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       &lt;/sequence>
+ *     &lt;/restriction>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * 
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "eliminarImagenDeUsuario", propOrder = {
+    "arg0"
+})
+public class EliminarImagenDeUsuario {
+
+    protected String arg0;
+
+    /**
+     * Obtiene el valor de la propiedad arg0.
+     * 
+     * @return
+     *     possible object is
+     *     {@link String }
+     *     
+     */
+    public String getArg0() {
+        return arg0;
+    }
+
+    /**
+     * Define el valor de la propiedad arg0.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link String }
+     *     
+     */
+    public void setArg0(String value) {
+        this.arg0 = value;
+    }
+
+}
diff --git a/UyTube_mobile/src/java/logica/controladores/EliminarImagenDeUsuarioResponse.class b/UyTube_mobile/src/java/logica/controladores/EliminarImagenDeUsuarioResponse.class
new file mode 100644
index 0000000000000000000000000000000000000000..c576b28d3938bf2261983f9ffc241f78304c68bf
Binary files /dev/null and b/UyTube_mobile/src/java/logica/controladores/EliminarImagenDeUsuarioResponse.class differ
diff --git a/UyTube_mobile/src/java/logica/controladores/EliminarImagenDeUsuarioResponse.java b/UyTube_mobile/src/java/logica/controladores/EliminarImagenDeUsuarioResponse.java
new file mode 100644
index 0000000000000000000000000000000000000000..2f09dd0898ae5e3ae50853ea1106ec5102515be7
--- /dev/null
+++ b/UyTube_mobile/src/java/logica/controladores/EliminarImagenDeUsuarioResponse.java
@@ -0,0 +1,32 @@
+
+package logica.controladores;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Clase Java para eliminarImagenDeUsuarioResponse complex type.
+ * 
+ * <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
+ * 
+ * <pre>
+ * &lt;complexType name="eliminarImagenDeUsuarioResponse">
+ *   &lt;complexContent>
+ *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       &lt;sequence>
+ *       &lt;/sequence>
+ *     &lt;/restriction>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * 
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "eliminarImagenDeUsuarioResponse")
+public class EliminarImagenDeUsuarioResponse {
+
+
+}
diff --git a/UyTube_mobile/src/java/logica/controladores/ExisteEmail.class b/UyTube_mobile/src/java/logica/controladores/ExisteEmail.class
new file mode 100644
index 0000000000000000000000000000000000000000..a9c71797732a4979d7d035ace58a8ff6eecbeada
Binary files /dev/null and b/UyTube_mobile/src/java/logica/controladores/ExisteEmail.class differ
diff --git a/UyTube_mobile/src/java/logica/controladores/ExisteEmail.java b/UyTube_mobile/src/java/logica/controladores/ExisteEmail.java
new file mode 100644
index 0000000000000000000000000000000000000000..79c115e43e72f17a872c4a315369f59b6d6ae178
--- /dev/null
+++ b/UyTube_mobile/src/java/logica/controladores/ExisteEmail.java
@@ -0,0 +1,60 @@
+
+package logica.controladores;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Clase Java para existeEmail complex type.
+ * 
+ * <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
+ * 
+ * <pre>
+ * &lt;complexType name="existeEmail">
+ *   &lt;complexContent>
+ *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       &lt;sequence>
+ *         &lt;element name="arg0" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       &lt;/sequence>
+ *     &lt;/restriction>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * 
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "existeEmail", propOrder = {
+    "arg0"
+})
+public class ExisteEmail {
+
+    protected String arg0;
+
+    /**
+     * Obtiene el valor de la propiedad arg0.
+     * 
+     * @return
+     *     possible object is
+     *     {@link String }
+     *     
+     */
+    public String getArg0() {
+        return arg0;
+    }
+
+    /**
+     * Define el valor de la propiedad arg0.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link String }
+     *     
+     */
+    public void setArg0(String value) {
+        this.arg0 = value;
+    }
+
+}
diff --git a/UyTube_mobile/src/java/logica/controladores/ExisteEmailResponse.class b/UyTube_mobile/src/java/logica/controladores/ExisteEmailResponse.class
new file mode 100644
index 0000000000000000000000000000000000000000..d48eab3451568fab394a3fbacd3926dde1b9f58b
Binary files /dev/null and b/UyTube_mobile/src/java/logica/controladores/ExisteEmailResponse.class differ
diff --git a/UyTube_mobile/src/java/logica/controladores/ExisteEmailResponse.java b/UyTube_mobile/src/java/logica/controladores/ExisteEmailResponse.java
new file mode 100644
index 0000000000000000000000000000000000000000..4e385c19cc22be2f5ad409b7a82546e4dd0453f7
--- /dev/null
+++ b/UyTube_mobile/src/java/logica/controladores/ExisteEmailResponse.java
@@ -0,0 +1,54 @@
+
+package logica.controladores;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Clase Java para existeEmailResponse complex type.
+ * 
+ * <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
+ * 
+ * <pre>
+ * &lt;complexType name="existeEmailResponse">
+ *   &lt;complexContent>
+ *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       &lt;sequence>
+ *         &lt;element name="return" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
+ *       &lt;/sequence>
+ *     &lt;/restriction>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * 
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "existeEmailResponse", propOrder = {
+    "_return"
+})
+public class ExisteEmailResponse {
+
+    @XmlElement(name = "return")
+    protected boolean _return;
+
+    /**
+     * Obtiene el valor de la propiedad return.
+     * 
+     */
+    public boolean isReturn() {
+        return _return;
+    }
+
+    /**
+     * Define el valor de la propiedad return.
+     * 
+     */
+    public void setReturn(boolean value) {
+        this._return = value;
+    }
+
+}
diff --git a/UyTube_mobile/src/java/logica/controladores/ExisteImagenDeUsuario.class b/UyTube_mobile/src/java/logica/controladores/ExisteImagenDeUsuario.class
new file mode 100644
index 0000000000000000000000000000000000000000..74da5acc8006a98a71f28ee5ad859a526f9fe9c8
Binary files /dev/null and b/UyTube_mobile/src/java/logica/controladores/ExisteImagenDeUsuario.class differ
diff --git a/UyTube_mobile/src/java/logica/controladores/ExisteImagenDeUsuario.java b/UyTube_mobile/src/java/logica/controladores/ExisteImagenDeUsuario.java
new file mode 100644
index 0000000000000000000000000000000000000000..2504c8c9ffbacfd53e503c36377384d3c7117f54
--- /dev/null
+++ b/UyTube_mobile/src/java/logica/controladores/ExisteImagenDeUsuario.java
@@ -0,0 +1,60 @@
+
+package logica.controladores;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Clase Java para existeImagenDeUsuario complex type.
+ * 
+ * <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
+ * 
+ * <pre>
+ * &lt;complexType name="existeImagenDeUsuario">
+ *   &lt;complexContent>
+ *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       &lt;sequence>
+ *         &lt;element name="arg0" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       &lt;/sequence>
+ *     &lt;/restriction>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * 
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "existeImagenDeUsuario", propOrder = {
+    "arg0"
+})
+public class ExisteImagenDeUsuario {
+
+    protected String arg0;
+
+    /**
+     * Obtiene el valor de la propiedad arg0.
+     * 
+     * @return
+     *     possible object is
+     *     {@link String }
+     *     
+     */
+    public String getArg0() {
+        return arg0;
+    }
+
+    /**
+     * Define el valor de la propiedad arg0.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link String }
+     *     
+     */
+    public void setArg0(String value) {
+        this.arg0 = value;
+    }
+
+}
diff --git a/UyTube_mobile/src/java/logica/controladores/ExisteImagenDeUsuarioResponse.class b/UyTube_mobile/src/java/logica/controladores/ExisteImagenDeUsuarioResponse.class
new file mode 100644
index 0000000000000000000000000000000000000000..ad088b966f7182e3c834e1feeb05e0aea8f7862c
Binary files /dev/null and b/UyTube_mobile/src/java/logica/controladores/ExisteImagenDeUsuarioResponse.class differ
diff --git a/UyTube_mobile/src/java/logica/controladores/ExisteImagenDeUsuarioResponse.java b/UyTube_mobile/src/java/logica/controladores/ExisteImagenDeUsuarioResponse.java
new file mode 100644
index 0000000000000000000000000000000000000000..8024dfe865ad94231645e9ea3126161542e97b06
--- /dev/null
+++ b/UyTube_mobile/src/java/logica/controladores/ExisteImagenDeUsuarioResponse.java
@@ -0,0 +1,54 @@
+
+package logica.controladores;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Clase Java para existeImagenDeUsuarioResponse complex type.
+ * 
+ * <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
+ * 
+ * <pre>
+ * &lt;complexType name="existeImagenDeUsuarioResponse">
+ *   &lt;complexContent>
+ *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       &lt;sequence>
+ *         &lt;element name="return" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
+ *       &lt;/sequence>
+ *     &lt;/restriction>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * 
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "existeImagenDeUsuarioResponse", propOrder = {
+    "_return"
+})
+public class ExisteImagenDeUsuarioResponse {
+
+    @XmlElement(name = "return")
+    protected boolean _return;
+
+    /**
+     * Obtiene el valor de la propiedad return.
+     * 
+     */
+    public boolean isReturn() {
+        return _return;
+    }
+
+    /**
+     * Define el valor de la propiedad return.
+     * 
+     */
+    public void setReturn(boolean value) {
+        this._return = value;
+    }
+
+}
diff --git a/UyTube_mobile/src/java/logica/controladores/ExisteNickname.class b/UyTube_mobile/src/java/logica/controladores/ExisteNickname.class
new file mode 100644
index 0000000000000000000000000000000000000000..a912e2c2971a1db2dbd70928ae0eb1c797493bdc
Binary files /dev/null and b/UyTube_mobile/src/java/logica/controladores/ExisteNickname.class differ
diff --git a/UyTube_mobile/src/java/logica/controladores/ExisteNickname.java b/UyTube_mobile/src/java/logica/controladores/ExisteNickname.java
new file mode 100644
index 0000000000000000000000000000000000000000..18e8402db23319b47d2fc69b0f7f7e363c06db71
--- /dev/null
+++ b/UyTube_mobile/src/java/logica/controladores/ExisteNickname.java
@@ -0,0 +1,60 @@
+
+package logica.controladores;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Clase Java para existeNickname complex type.
+ * 
+ * <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
+ * 
+ * <pre>
+ * &lt;complexType name="existeNickname">
+ *   &lt;complexContent>
+ *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       &lt;sequence>
+ *         &lt;element name="arg0" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       &lt;/sequence>
+ *     &lt;/restriction>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * 
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "existeNickname", propOrder = {
+    "arg0"
+})
+public class ExisteNickname {
+
+    protected String arg0;
+
+    /**
+     * Obtiene el valor de la propiedad arg0.
+     * 
+     * @return
+     *     possible object is
+     *     {@link String }
+     *     
+     */
+    public String getArg0() {
+        return arg0;
+    }
+
+    /**
+     * Define el valor de la propiedad arg0.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link String }
+     *     
+     */
+    public void setArg0(String value) {
+        this.arg0 = value;
+    }
+
+}
diff --git a/UyTube_mobile/src/java/logica/controladores/ExisteNicknameResponse.class b/UyTube_mobile/src/java/logica/controladores/ExisteNicknameResponse.class
new file mode 100644
index 0000000000000000000000000000000000000000..f894248ed7629fa0bc6d935d7b3cc1c2fee63c4b
Binary files /dev/null and b/UyTube_mobile/src/java/logica/controladores/ExisteNicknameResponse.class differ
diff --git a/UyTube_mobile/src/java/logica/controladores/ExisteNicknameResponse.java b/UyTube_mobile/src/java/logica/controladores/ExisteNicknameResponse.java
new file mode 100644
index 0000000000000000000000000000000000000000..2240148a2faa30cc57dac0dd63752046b4e5f068
--- /dev/null
+++ b/UyTube_mobile/src/java/logica/controladores/ExisteNicknameResponse.java
@@ -0,0 +1,54 @@
+
+package logica.controladores;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Clase Java para existeNicknameResponse complex type.
+ * 
+ * <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
+ * 
+ * <pre>
+ * &lt;complexType name="existeNicknameResponse">
+ *   &lt;complexContent>
+ *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       &lt;sequence>
+ *         &lt;element name="return" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
+ *       &lt;/sequence>
+ *     &lt;/restriction>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * 
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "existeNicknameResponse", propOrder = {
+    "_return"
+})
+public class ExisteNicknameResponse {
+
+    @XmlElement(name = "return")
+    protected boolean _return;
+
+    /**
+     * Obtiene el valor de la propiedad return.
+     * 
+     */
+    public boolean isReturn() {
+        return _return;
+    }
+
+    /**
+     * Define el valor de la propiedad return.
+     * 
+     */
+    public void setReturn(boolean value) {
+        this._return = value;
+    }
+
+}
diff --git a/UyTube_mobile/src/java/logica/controladores/Fecha.class b/UyTube_mobile/src/java/logica/controladores/Fecha.class
new file mode 100644
index 0000000000000000000000000000000000000000..dfd3a6668bde990dd24e4117e773fb0f7d57b55d
Binary files /dev/null and b/UyTube_mobile/src/java/logica/controladores/Fecha.class differ
diff --git a/UyTube_mobile/src/java/logica/controladores/Fecha.java b/UyTube_mobile/src/java/logica/controladores/Fecha.java
new file mode 100644
index 0000000000000000000000000000000000000000..db5a9d8b209c609f3b3b90f8c195159711ec2a92
--- /dev/null
+++ b/UyTube_mobile/src/java/logica/controladores/Fecha.java
@@ -0,0 +1,90 @@
+
+package logica.controladores;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Clase Java para fecha complex type.
+ * 
+ * <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
+ * 
+ * <pre>
+ * &lt;complexType name="fecha">
+ *   &lt;complexContent>
+ *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       &lt;sequence>
+ *         &lt;element name="anio" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         &lt;element name="mes" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         &lt;element name="dia" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *       &lt;/sequence>
+ *     &lt;/restriction>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * 
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "fecha", propOrder = {
+    "anio",
+    "mes",
+    "dia"
+})
+public class Fecha {
+
+    protected int anio;
+    protected int mes;
+    protected int dia;
+
+    /**
+     * Obtiene el valor de la propiedad anio.
+     * 
+     */
+    public int getAnio() {
+        return anio;
+    }
+
+    /**
+     * Define el valor de la propiedad anio.
+     * 
+     */
+    public void setAnio(int value) {
+        this.anio = value;
+    }
+
+    /**
+     * Obtiene el valor de la propiedad mes.
+     * 
+     */
+    public int getMes() {
+        return mes;
+    }
+
+    /**
+     * Define el valor de la propiedad mes.
+     * 
+     */
+    public void setMes(int value) {
+        this.mes = value;
+    }
+
+    /**
+     * Obtiene el valor de la propiedad dia.
+     * 
+     */
+    public int getDia() {
+        return dia;
+    }
+
+    /**
+     * Define el valor de la propiedad dia.
+     * 
+     */
+    public void setDia(int value) {
+        this.dia = value;
+    }
+
+}
diff --git a/UyTube_mobile/src/java/logica/controladores/Filtrado.class b/UyTube_mobile/src/java/logica/controladores/Filtrado.class
new file mode 100644
index 0000000000000000000000000000000000000000..cfd3b6fb2758d54ff2458f2191f5b4e4843285e4
Binary files /dev/null and b/UyTube_mobile/src/java/logica/controladores/Filtrado.class differ
diff --git a/UyTube_mobile/src/java/logica/controladores/Filtrado.java b/UyTube_mobile/src/java/logica/controladores/Filtrado.java
new file mode 100644
index 0000000000000000000000000000000000000000..b093804298d314ccef672da62058a3f463bf8e77
--- /dev/null
+++ b/UyTube_mobile/src/java/logica/controladores/Filtrado.java
@@ -0,0 +1,42 @@
+
+package logica.controladores;
+
+import javax.xml.bind.annotation.XmlEnum;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Clase Java para filtrado.
+ * 
+ * <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
+ * <p>
+ * <pre>
+ * &lt;simpleType name="filtrado">
+ *   &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string">
+ *     &lt;enumeration value="CANALES"/>
+ *     &lt;enumeration value="VIDEOS"/>
+ *     &lt;enumeration value="LISTAS_DE_REPRODUCCION"/>
+ *     &lt;enumeration value="TODO"/>
+ *   &lt;/restriction>
+ * &lt;/simpleType>
+ * </pre>
+ * 
+ */
+@XmlType(name = "filtrado")
+@XmlEnum
+public enum Filtrado {
+
+    CANALES,
+    VIDEOS,
+    LISTAS_DE_REPRODUCCION,
+    TODO;
+
+    public String value() {
+        return name();
+    }
+
+    public static Filtrado fromValue(String v) {
+        return valueOf(v);
+    }
+
+}
diff --git a/UyTube_mobile/src/java/logica/controladores/IniciarSesionUsuario.class b/UyTube_mobile/src/java/logica/controladores/IniciarSesionUsuario.class
new file mode 100644
index 0000000000000000000000000000000000000000..e856987c01cfe6376789125e40189d14d1f3432d
Binary files /dev/null and b/UyTube_mobile/src/java/logica/controladores/IniciarSesionUsuario.class differ
diff --git a/UyTube_mobile/src/java/logica/controladores/IniciarSesionUsuario.java b/UyTube_mobile/src/java/logica/controladores/IniciarSesionUsuario.java
new file mode 100644
index 0000000000000000000000000000000000000000..c0a6517fdc9afaa6871cbf8876b03e518ed6c00f
--- /dev/null
+++ b/UyTube_mobile/src/java/logica/controladores/IniciarSesionUsuario.java
@@ -0,0 +1,87 @@
+
+package logica.controladores;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Clase Java para iniciarSesionUsuario complex type.
+ * 
+ * <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
+ * 
+ * <pre>
+ * &lt;complexType name="iniciarSesionUsuario">
+ *   &lt;complexContent>
+ *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       &lt;sequence>
+ *         &lt;element name="arg0" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         &lt;element name="arg1" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       &lt;/sequence>
+ *     &lt;/restriction>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * 
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "iniciarSesionUsuario", propOrder = {
+    "arg0",
+    "arg1"
+})
+public class IniciarSesionUsuario {
+
+    protected String arg0;
+    protected String arg1;
+
+    /**
+     * Obtiene el valor de la propiedad arg0.
+     * 
+     * @return
+     *     possible object is
+     *     {@link String }
+     *     
+     */
+    public String getArg0() {
+        return arg0;
+    }
+
+    /**
+     * Define el valor de la propiedad arg0.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link String }
+     *     
+     */
+    public void setArg0(String value) {
+        this.arg0 = value;
+    }
+
+    /**
+     * Obtiene el valor de la propiedad arg1.
+     * 
+     * @return
+     *     possible object is
+     *     {@link String }
+     *     
+     */
+    public String getArg1() {
+        return arg1;
+    }
+
+    /**
+     * Define el valor de la propiedad arg1.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link String }
+     *     
+     */
+    public void setArg1(String value) {
+        this.arg1 = value;
+    }
+
+}
diff --git a/UyTube_mobile/src/java/logica/controladores/IniciarSesionUsuarioResponse.class b/UyTube_mobile/src/java/logica/controladores/IniciarSesionUsuarioResponse.class
new file mode 100644
index 0000000000000000000000000000000000000000..fdf205881dfa3aa8e6116b292089cb1797b1958b
Binary files /dev/null and b/UyTube_mobile/src/java/logica/controladores/IniciarSesionUsuarioResponse.class differ
diff --git a/UyTube_mobile/src/java/logica/controladores/IniciarSesionUsuarioResponse.java b/UyTube_mobile/src/java/logica/controladores/IniciarSesionUsuarioResponse.java
new file mode 100644
index 0000000000000000000000000000000000000000..0e77cd8b649526d66f2c1188fa3b2912da94c670
--- /dev/null
+++ b/UyTube_mobile/src/java/logica/controladores/IniciarSesionUsuarioResponse.java
@@ -0,0 +1,54 @@
+
+package logica.controladores;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Clase Java para iniciarSesionUsuarioResponse complex type.
+ * 
+ * <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
+ * 
+ * <pre>
+ * &lt;complexType name="iniciarSesionUsuarioResponse">
+ *   &lt;complexContent>
+ *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       &lt;sequence>
+ *         &lt;element name="return" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
+ *       &lt;/sequence>
+ *     &lt;/restriction>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * 
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "iniciarSesionUsuarioResponse", propOrder = {
+    "_return"
+})
+public class IniciarSesionUsuarioResponse {
+
+    @XmlElement(name = "return")
+    protected boolean _return;
+
+    /**
+     * Obtiene el valor de la propiedad return.
+     * 
+     */
+    public boolean isReturn() {
+        return _return;
+    }
+
+    /**
+     * Define el valor de la propiedad return.
+     * 
+     */
+    public void setReturn(boolean value) {
+        this._return = value;
+    }
+
+}
diff --git a/UyTube_mobile/src/java/logica/controladores/LiberarMemoriaListaDeReproduccion.class b/UyTube_mobile/src/java/logica/controladores/LiberarMemoriaListaDeReproduccion.class
new file mode 100644
index 0000000000000000000000000000000000000000..7ae71ccaa3a12c69b98c796f586e7feb0a2299de
Binary files /dev/null and b/UyTube_mobile/src/java/logica/controladores/LiberarMemoriaListaDeReproduccion.class differ
diff --git a/UyTube_mobile/src/java/logica/controladores/LiberarMemoriaListaDeReproduccion.java b/UyTube_mobile/src/java/logica/controladores/LiberarMemoriaListaDeReproduccion.java
new file mode 100644
index 0000000000000000000000000000000000000000..d3412eeb0c1b0f445b90f80c82b2390d4dafbb37
--- /dev/null
+++ b/UyTube_mobile/src/java/logica/controladores/LiberarMemoriaListaDeReproduccion.java
@@ -0,0 +1,32 @@
+
+package logica.controladores;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Clase Java para liberarMemoriaListaDeReproduccion complex type.
+ * 
+ * <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
+ * 
+ * <pre>
+ * &lt;complexType name="liberarMemoriaListaDeReproduccion">
+ *   &lt;complexContent>
+ *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       &lt;sequence>
+ *       &lt;/sequence>
+ *     &lt;/restriction>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * 
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "liberarMemoriaListaDeReproduccion")
+public class LiberarMemoriaListaDeReproduccion {
+
+
+}
diff --git a/UyTube_mobile/src/java/logica/controladores/LiberarMemoriaListaDeReproduccionResponse.class b/UyTube_mobile/src/java/logica/controladores/LiberarMemoriaListaDeReproduccionResponse.class
new file mode 100644
index 0000000000000000000000000000000000000000..dd152aee1cc8e80ae4290bf89dfd882a1825e625
Binary files /dev/null and b/UyTube_mobile/src/java/logica/controladores/LiberarMemoriaListaDeReproduccionResponse.class differ
diff --git a/UyTube_mobile/src/java/logica/controladores/LiberarMemoriaListaDeReproduccionResponse.java b/UyTube_mobile/src/java/logica/controladores/LiberarMemoriaListaDeReproduccionResponse.java
new file mode 100644
index 0000000000000000000000000000000000000000..72f6fc8841c653257b5f784de2e0dcb43b2ca390
--- /dev/null
+++ b/UyTube_mobile/src/java/logica/controladores/LiberarMemoriaListaDeReproduccionResponse.java
@@ -0,0 +1,32 @@
+
+package logica.controladores;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Clase Java para liberarMemoriaListaDeReproduccionResponse complex type.
+ * 
+ * <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
+ * 
+ * <pre>
+ * &lt;complexType name="liberarMemoriaListaDeReproduccionResponse">
+ *   &lt;complexContent>
+ *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       &lt;sequence>
+ *       &lt;/sequence>
+ *     &lt;/restriction>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * 
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "liberarMemoriaListaDeReproduccionResponse")
+public class LiberarMemoriaListaDeReproduccionResponse {
+
+
+}
diff --git a/UyTube_mobile/src/java/logica/controladores/LiberarMemoriaUsuario.class b/UyTube_mobile/src/java/logica/controladores/LiberarMemoriaUsuario.class
new file mode 100644
index 0000000000000000000000000000000000000000..5947d5fc3c56b381707ca1d40bd792505b4a3a6b
Binary files /dev/null and b/UyTube_mobile/src/java/logica/controladores/LiberarMemoriaUsuario.class differ
diff --git a/UyTube_mobile/src/java/logica/controladores/LiberarMemoriaUsuario.java b/UyTube_mobile/src/java/logica/controladores/LiberarMemoriaUsuario.java
new file mode 100644
index 0000000000000000000000000000000000000000..70d8b03e9ec041e7534098e50d014ea62e28a546
--- /dev/null
+++ b/UyTube_mobile/src/java/logica/controladores/LiberarMemoriaUsuario.java
@@ -0,0 +1,32 @@
+
+package logica.controladores;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Clase Java para liberarMemoriaUsuario complex type.
+ * 
+ * <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
+ * 
+ * <pre>
+ * &lt;complexType name="liberarMemoriaUsuario">
+ *   &lt;complexContent>
+ *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       &lt;sequence>
+ *       &lt;/sequence>
+ *     &lt;/restriction>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * 
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "liberarMemoriaUsuario")
+public class LiberarMemoriaUsuario {
+
+
+}
diff --git a/UyTube_mobile/src/java/logica/controladores/LiberarMemoriaUsuarioResponse.class b/UyTube_mobile/src/java/logica/controladores/LiberarMemoriaUsuarioResponse.class
new file mode 100644
index 0000000000000000000000000000000000000000..8a5a0b4f1d90e3f31efc8abd118026d0f4816022
Binary files /dev/null and b/UyTube_mobile/src/java/logica/controladores/LiberarMemoriaUsuarioResponse.class differ
diff --git a/UyTube_mobile/src/java/logica/controladores/LiberarMemoriaUsuarioResponse.java b/UyTube_mobile/src/java/logica/controladores/LiberarMemoriaUsuarioResponse.java
new file mode 100644
index 0000000000000000000000000000000000000000..46c45058e5412ac273c0a3c16f49c8286a75844a
--- /dev/null
+++ b/UyTube_mobile/src/java/logica/controladores/LiberarMemoriaUsuarioResponse.java
@@ -0,0 +1,32 @@
+
+package logica.controladores;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Clase Java para liberarMemoriaUsuarioResponse complex type.
+ * 
+ * <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
+ * 
+ * <pre>
+ * &lt;complexType name="liberarMemoriaUsuarioResponse">
+ *   &lt;complexContent>
+ *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       &lt;sequence>
+ *       &lt;/sequence>
+ *     &lt;/restriction>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * 
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "liberarMemoriaUsuarioResponse")
+public class LiberarMemoriaUsuarioResponse {
+
+
+}
diff --git a/UyTube_mobile/src/java/logica/controladores/LiberarMemoriaVideo.class b/UyTube_mobile/src/java/logica/controladores/LiberarMemoriaVideo.class
new file mode 100644
index 0000000000000000000000000000000000000000..abd5216a42d0abcccff0a56c1235a19ad81700c6
Binary files /dev/null and b/UyTube_mobile/src/java/logica/controladores/LiberarMemoriaVideo.class differ
diff --git a/UyTube_mobile/src/java/logica/controladores/LiberarMemoriaVideo.java b/UyTube_mobile/src/java/logica/controladores/LiberarMemoriaVideo.java
new file mode 100644
index 0000000000000000000000000000000000000000..b8e5fcfff62b3b55c114ec35bf7cf65eb1d25014
--- /dev/null
+++ b/UyTube_mobile/src/java/logica/controladores/LiberarMemoriaVideo.java
@@ -0,0 +1,32 @@
+
+package logica.controladores;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Clase Java para liberarMemoriaVideo complex type.
+ * 
+ * <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
+ * 
+ * <pre>
+ * &lt;complexType name="liberarMemoriaVideo">
+ *   &lt;complexContent>
+ *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       &lt;sequence>
+ *       &lt;/sequence>
+ *     &lt;/restriction>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * 
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "liberarMemoriaVideo")
+public class LiberarMemoriaVideo {
+
+
+}
diff --git a/UyTube_mobile/src/java/logica/controladores/LiberarMemoriaVideoResponse.class b/UyTube_mobile/src/java/logica/controladores/LiberarMemoriaVideoResponse.class
new file mode 100644
index 0000000000000000000000000000000000000000..a9ec39da6685548437f2cec8cdcec34a4efc544b
Binary files /dev/null and b/UyTube_mobile/src/java/logica/controladores/LiberarMemoriaVideoResponse.class differ
diff --git a/UyTube_mobile/src/java/logica/controladores/LiberarMemoriaVideoResponse.java b/UyTube_mobile/src/java/logica/controladores/LiberarMemoriaVideoResponse.java
new file mode 100644
index 0000000000000000000000000000000000000000..d29a4a1afcd5e12bbb341fcf3ccceaea60bafd7c
--- /dev/null
+++ b/UyTube_mobile/src/java/logica/controladores/LiberarMemoriaVideoResponse.java
@@ -0,0 +1,32 @@
+
+package logica.controladores;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Clase Java para liberarMemoriaVideoResponse complex type.
+ * 
+ * <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
+ * 
+ * <pre>
+ * &lt;complexType name="liberarMemoriaVideoResponse">
+ *   &lt;complexContent>
+ *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       &lt;sequence>
+ *       &lt;/sequence>
+ *     &lt;/restriction>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * 
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "liberarMemoriaVideoResponse")
+public class LiberarMemoriaVideoResponse {
+
+
+}
diff --git a/UyTube_mobile/src/java/logica/controladores/ListarCategorias.class b/UyTube_mobile/src/java/logica/controladores/ListarCategorias.class
new file mode 100644
index 0000000000000000000000000000000000000000..3d68a51d9b5a51c784acb3b86985d69b34bd02be
Binary files /dev/null and b/UyTube_mobile/src/java/logica/controladores/ListarCategorias.class differ
diff --git a/UyTube_mobile/src/java/logica/controladores/ListarCategorias.java b/UyTube_mobile/src/java/logica/controladores/ListarCategorias.java
new file mode 100644
index 0000000000000000000000000000000000000000..dcefd9269fc8f5cb4c8366c60cba84bea89f630b
--- /dev/null
+++ b/UyTube_mobile/src/java/logica/controladores/ListarCategorias.java
@@ -0,0 +1,32 @@
+
+package logica.controladores;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Clase Java para listarCategorias complex type.
+ * 
+ * <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
+ * 
+ * <pre>
+ * &lt;complexType name="listarCategorias">
+ *   &lt;complexContent>
+ *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       &lt;sequence>
+ *       &lt;/sequence>
+ *     &lt;/restriction>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * 
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "listarCategorias")
+public class ListarCategorias {
+
+
+}
diff --git a/UyTube_mobile/src/java/logica/controladores/ListarCategoriasResponse.class b/UyTube_mobile/src/java/logica/controladores/ListarCategoriasResponse.class
new file mode 100644
index 0000000000000000000000000000000000000000..1005d0cffe57e5e953092828ca88b0b952c33247
Binary files /dev/null and b/UyTube_mobile/src/java/logica/controladores/ListarCategoriasResponse.class differ
diff --git a/UyTube_mobile/src/java/logica/controladores/ListarCategoriasResponse.java b/UyTube_mobile/src/java/logica/controladores/ListarCategoriasResponse.java
new file mode 100644
index 0000000000000000000000000000000000000000..e1883ca408a541fadb58de4d5e81294c07faef23
--- /dev/null
+++ b/UyTube_mobile/src/java/logica/controladores/ListarCategoriasResponse.java
@@ -0,0 +1,69 @@
+
+package logica.controladores;
+
+import java.util.ArrayList;
+import java.util.List;
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Clase Java para listarCategoriasResponse complex type.
+ * 
+ * <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
+ * 
+ * <pre>
+ * &lt;complexType name="listarCategoriasResponse">
+ *   &lt;complexContent>
+ *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       &lt;sequence>
+ *         &lt;element name="return" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
+ *       &lt;/sequence>
+ *     &lt;/restriction>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * 
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "listarCategoriasResponse", propOrder = {
+    "_return"
+})
+public class ListarCategoriasResponse {
+
+    @XmlElement(name = "return")
+    protected List<String> _return;
+
+    /**
+     * Gets the value of the return property.
+     * 
+     * <p>
+     * This accessor method returns a reference to the live list,
+     * not a snapshot. Therefore any modification you make to the
+     * returned list will be present inside the JAXB object.
+     * This is why there is not a <CODE>set</CODE> method for the return property.
+     * 
+     * <p>
+     * For example, to add a new item, do as follows:
+     * <pre>
+     *    getReturn().add(newItem);
+     * </pre>
+     * 
+     * 
+     * <p>
+     * Objects of the following type(s) are allowed in the list
+     * {@link String }
+     * 
+     * 
+     */
+    public List<String> getReturn() {
+        if (_return == null) {
+            _return = new ArrayList<String>();
+        }
+        return this._return;
+    }
+
+}
diff --git a/UyTube_mobile/src/java/logica/controladores/ListarComentariosDeVideo.class b/UyTube_mobile/src/java/logica/controladores/ListarComentariosDeVideo.class
new file mode 100644
index 0000000000000000000000000000000000000000..a72f89e475fc01b637fe0126c2654d81a752475f
Binary files /dev/null and b/UyTube_mobile/src/java/logica/controladores/ListarComentariosDeVideo.class differ
diff --git a/UyTube_mobile/src/java/logica/controladores/ListarComentariosDeVideo.java b/UyTube_mobile/src/java/logica/controladores/ListarComentariosDeVideo.java
new file mode 100644
index 0000000000000000000000000000000000000000..783d22626ad31d1918b71677ed8d27eafb3e5e22
--- /dev/null
+++ b/UyTube_mobile/src/java/logica/controladores/ListarComentariosDeVideo.java
@@ -0,0 +1,32 @@
+
+package logica.controladores;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Clase Java para listarComentariosDeVideo complex type.
+ * 
+ * <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
+ * 
+ * <pre>
+ * &lt;complexType name="listarComentariosDeVideo">
+ *   &lt;complexContent>
+ *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       &lt;sequence>
+ *       &lt;/sequence>
+ *     &lt;/restriction>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * 
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "listarComentariosDeVideo")
+public class ListarComentariosDeVideo {
+
+
+}
diff --git a/UyTube_mobile/src/java/logica/controladores/ListarComentariosDeVideoResponse.class b/UyTube_mobile/src/java/logica/controladores/ListarComentariosDeVideoResponse.class
new file mode 100644
index 0000000000000000000000000000000000000000..02d8a5141b6c5e5208acf43ce9240a072a9ed89a
Binary files /dev/null and b/UyTube_mobile/src/java/logica/controladores/ListarComentariosDeVideoResponse.class differ
diff --git a/UyTube_mobile/src/java/logica/controladores/ListarComentariosDeVideoResponse.java b/UyTube_mobile/src/java/logica/controladores/ListarComentariosDeVideoResponse.java
new file mode 100644
index 0000000000000000000000000000000000000000..851cb77a4da9667a60a95ae2674bd7b6608a6247
--- /dev/null
+++ b/UyTube_mobile/src/java/logica/controladores/ListarComentariosDeVideoResponse.java
@@ -0,0 +1,69 @@
+
+package logica.controladores;
+
+import java.util.ArrayList;
+import java.util.List;
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Clase Java para listarComentariosDeVideoResponse complex type.
+ * 
+ * <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
+ * 
+ * <pre>
+ * &lt;complexType name="listarComentariosDeVideoResponse">
+ *   &lt;complexContent>
+ *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       &lt;sequence>
+ *         &lt;element name="return" type="{http://Controladores.Logica/}dtComentario" maxOccurs="unbounded" minOccurs="0"/>
+ *       &lt;/sequence>
+ *     &lt;/restriction>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * 
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "listarComentariosDeVideoResponse", propOrder = {
+    "_return"
+})
+public class ListarComentariosDeVideoResponse {
+
+    @XmlElement(name = "return")
+    protected List<DtComentario> _return;
+
+    /**
+     * Gets the value of the return property.
+     * 
+     * <p>
+     * This accessor method returns a reference to the live list,
+     * not a snapshot. Therefore any modification you make to the
+     * returned list will be present inside the JAXB object.
+     * This is why there is not a <CODE>set</CODE> method for the return property.
+     * 
+     * <p>
+     * For example, to add a new item, do as follows:
+     * <pre>
+     *    getReturn().add(newItem);
+     * </pre>
+     * 
+     * 
+     * <p>
+     * Objects of the following type(s) are allowed in the list
+     * {@link DtComentario }
+     * 
+     * 
+     */
+    public List<DtComentario> getReturn() {
+        if (_return == null) {
+            _return = new ArrayList<DtComentario>();
+        }
+        return this._return;
+    }
+
+}
diff --git a/UyTube_mobile/src/java/logica/controladores/ListarListasDeReproduccionDeUsuario.class b/UyTube_mobile/src/java/logica/controladores/ListarListasDeReproduccionDeUsuario.class
new file mode 100644
index 0000000000000000000000000000000000000000..bef2512d474c63699d5c1f43a3cd30f19453920a
Binary files /dev/null and b/UyTube_mobile/src/java/logica/controladores/ListarListasDeReproduccionDeUsuario.class differ
diff --git a/UyTube_mobile/src/java/logica/controladores/ListarListasDeReproduccionDeUsuario.java b/UyTube_mobile/src/java/logica/controladores/ListarListasDeReproduccionDeUsuario.java
new file mode 100644
index 0000000000000000000000000000000000000000..43df92af43df6be051846a52ba8af10b8852be5f
--- /dev/null
+++ b/UyTube_mobile/src/java/logica/controladores/ListarListasDeReproduccionDeUsuario.java
@@ -0,0 +1,52 @@
+
+package logica.controladores;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Clase Java para listarListasDeReproduccionDeUsuario complex type.
+ * 
+ * <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
+ * 
+ * <pre>
+ * &lt;complexType name="listarListasDeReproduccionDeUsuario">
+ *   &lt;complexContent>
+ *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       &lt;sequence>
+ *         &lt;element name="arg0" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
+ *       &lt;/sequence>
+ *     &lt;/restriction>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * 
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "listarListasDeReproduccionDeUsuario", propOrder = {
+    "arg0"
+})
+public class ListarListasDeReproduccionDeUsuario {
+
+    protected boolean arg0;
+
+    /**
+     * Obtiene el valor de la propiedad arg0.
+     * 
+     */
+    public boolean isArg0() {
+        return arg0;
+    }
+
+    /**
+     * Define el valor de la propiedad arg0.
+     * 
+     */
+    public void setArg0(boolean value) {
+        this.arg0 = value;
+    }
+
+}
diff --git a/UyTube_mobile/src/java/logica/controladores/ListarListasDeReproduccionDeUsuarioResponse.class b/UyTube_mobile/src/java/logica/controladores/ListarListasDeReproduccionDeUsuarioResponse.class
new file mode 100644
index 0000000000000000000000000000000000000000..1b5db230f41d92138699b8fe99fb1fda031ed783
Binary files /dev/null and b/UyTube_mobile/src/java/logica/controladores/ListarListasDeReproduccionDeUsuarioResponse.class differ
diff --git a/UyTube_mobile/src/java/logica/controladores/ListarListasDeReproduccionDeUsuarioResponse.java b/UyTube_mobile/src/java/logica/controladores/ListarListasDeReproduccionDeUsuarioResponse.java
new file mode 100644
index 0000000000000000000000000000000000000000..8dd4670f431c5d5e7af69fd7bbe38d5a23a5efbb
--- /dev/null
+++ b/UyTube_mobile/src/java/logica/controladores/ListarListasDeReproduccionDeUsuarioResponse.java
@@ -0,0 +1,69 @@
+
+package logica.controladores;
+
+import java.util.ArrayList;
+import java.util.List;
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Clase Java para listarListasDeReproduccionDeUsuarioResponse complex type.
+ * 
+ * <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
+ * 
+ * <pre>
+ * &lt;complexType name="listarListasDeReproduccionDeUsuarioResponse">
+ *   &lt;complexContent>
+ *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       &lt;sequence>
+ *         &lt;element name="return" type="{http://Controladores.Logica/}dtListaDeReproduccion" maxOccurs="unbounded" minOccurs="0"/>
+ *       &lt;/sequence>
+ *     &lt;/restriction>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * 
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "listarListasDeReproduccionDeUsuarioResponse", propOrder = {
+    "_return"
+})
+public class ListarListasDeReproduccionDeUsuarioResponse {
+
+    @XmlElement(name = "return")
+    protected List<DtListaDeReproduccion> _return;
+
+    /**
+     * Gets the value of the return property.
+     * 
+     * <p>
+     * This accessor method returns a reference to the live list,
+     * not a snapshot. Therefore any modification you make to the
+     * returned list will be present inside the JAXB object.
+     * This is why there is not a <CODE>set</CODE> method for the return property.
+     * 
+     * <p>
+     * For example, to add a new item, do as follows:
+     * <pre>
+     *    getReturn().add(newItem);
+     * </pre>
+     * 
+     * 
+     * <p>
+     * Objects of the following type(s) are allowed in the list
+     * {@link DtListaDeReproduccion }
+     * 
+     * 
+     */
+    public List<DtListaDeReproduccion> getReturn() {
+        if (_return == null) {
+            _return = new ArrayList<DtListaDeReproduccion>();
+        }
+        return this._return;
+    }
+
+}
diff --git a/UyTube_mobile/src/java/logica/controladores/ListarUsuarioSeguidores.class b/UyTube_mobile/src/java/logica/controladores/ListarUsuarioSeguidores.class
new file mode 100644
index 0000000000000000000000000000000000000000..668a04cafa5d2f2d6bbcd5f7b4c21d2536042b00
Binary files /dev/null and b/UyTube_mobile/src/java/logica/controladores/ListarUsuarioSeguidores.class differ
diff --git a/UyTube_mobile/src/java/logica/controladores/ListarUsuarioSeguidores.java b/UyTube_mobile/src/java/logica/controladores/ListarUsuarioSeguidores.java
new file mode 100644
index 0000000000000000000000000000000000000000..7e84b8ce2981c55ad05b751809f4d22553828e52
--- /dev/null
+++ b/UyTube_mobile/src/java/logica/controladores/ListarUsuarioSeguidores.java
@@ -0,0 +1,32 @@
+
+package logica.controladores;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Clase Java para listarUsuarioSeguidores complex type.
+ * 
+ * <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
+ * 
+ * <pre>
+ * &lt;complexType name="listarUsuarioSeguidores">
+ *   &lt;complexContent>
+ *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       &lt;sequence>
+ *       &lt;/sequence>
+ *     &lt;/restriction>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * 
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "listarUsuarioSeguidores")
+public class ListarUsuarioSeguidores {
+
+
+}
diff --git a/UyTube_mobile/src/java/logica/controladores/ListarUsuarioSeguidoresResponse.class b/UyTube_mobile/src/java/logica/controladores/ListarUsuarioSeguidoresResponse.class
new file mode 100644
index 0000000000000000000000000000000000000000..29d58a52428d9383ed2450a476dfdafff59202cf
Binary files /dev/null and b/UyTube_mobile/src/java/logica/controladores/ListarUsuarioSeguidoresResponse.class differ
diff --git a/UyTube_mobile/src/java/logica/controladores/ListarUsuarioSeguidoresResponse.java b/UyTube_mobile/src/java/logica/controladores/ListarUsuarioSeguidoresResponse.java
new file mode 100644
index 0000000000000000000000000000000000000000..f6122372ae8ee26552f9e1fffafc4864a0752ff6
--- /dev/null
+++ b/UyTube_mobile/src/java/logica/controladores/ListarUsuarioSeguidoresResponse.java
@@ -0,0 +1,69 @@
+
+package logica.controladores;
+
+import java.util.ArrayList;
+import java.util.List;
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Clase Java para listarUsuarioSeguidoresResponse complex type.
+ * 
+ * <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
+ * 
+ * <pre>
+ * &lt;complexType name="listarUsuarioSeguidoresResponse">
+ *   &lt;complexContent>
+ *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       &lt;sequence>
+ *         &lt;element name="return" type="{http://Controladores.Logica/}dtUsuario" maxOccurs="unbounded" minOccurs="0"/>
+ *       &lt;/sequence>
+ *     &lt;/restriction>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * 
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "listarUsuarioSeguidoresResponse", propOrder = {
+    "_return"
+})
+public class ListarUsuarioSeguidoresResponse {
+
+    @XmlElement(name = "return")
+    protected List<DtUsuario> _return;
+
+    /**
+     * Gets the value of the return property.
+     * 
+     * <p>
+     * This accessor method returns a reference to the live list,
+     * not a snapshot. Therefore any modification you make to the
+     * returned list will be present inside the JAXB object.
+     * This is why there is not a <CODE>set</CODE> method for the return property.
+     * 
+     * <p>
+     * For example, to add a new item, do as follows:
+     * <pre>
+     *    getReturn().add(newItem);
+     * </pre>
+     * 
+     * 
+     * <p>
+     * Objects of the following type(s) are allowed in the list
+     * {@link DtUsuario }
+     * 
+     * 
+     */
+    public List<DtUsuario> getReturn() {
+        if (_return == null) {
+            _return = new ArrayList<DtUsuario>();
+        }
+        return this._return;
+    }
+
+}
diff --git a/UyTube_mobile/src/java/logica/controladores/ListarUsuarioSeguidos.class b/UyTube_mobile/src/java/logica/controladores/ListarUsuarioSeguidos.class
new file mode 100644
index 0000000000000000000000000000000000000000..55aa01b72b3c61d77c5639fd4879e057cefa21ad
Binary files /dev/null and b/UyTube_mobile/src/java/logica/controladores/ListarUsuarioSeguidos.class differ
diff --git a/UyTube_mobile/src/java/logica/controladores/ListarUsuarioSeguidos.java b/UyTube_mobile/src/java/logica/controladores/ListarUsuarioSeguidos.java
new file mode 100644
index 0000000000000000000000000000000000000000..68abeece82cbfff82cb8d363a985f905b8c5cbb4
--- /dev/null
+++ b/UyTube_mobile/src/java/logica/controladores/ListarUsuarioSeguidos.java
@@ -0,0 +1,32 @@
+
+package logica.controladores;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Clase Java para listarUsuarioSeguidos complex type.
+ * 
+ * <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
+ * 
+ * <pre>
+ * &lt;complexType name="listarUsuarioSeguidos">
+ *   &lt;complexContent>
+ *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       &lt;sequence>
+ *       &lt;/sequence>
+ *     &lt;/restriction>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * 
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "listarUsuarioSeguidos")
+public class ListarUsuarioSeguidos {
+
+
+}
diff --git a/UyTube_mobile/src/java/logica/controladores/ListarUsuarioSeguidosResponse.class b/UyTube_mobile/src/java/logica/controladores/ListarUsuarioSeguidosResponse.class
new file mode 100644
index 0000000000000000000000000000000000000000..164a6662d566d4fb38d9729620f968f7b5e0b3a0
Binary files /dev/null and b/UyTube_mobile/src/java/logica/controladores/ListarUsuarioSeguidosResponse.class differ
diff --git a/UyTube_mobile/src/java/logica/controladores/ListarUsuarioSeguidosResponse.java b/UyTube_mobile/src/java/logica/controladores/ListarUsuarioSeguidosResponse.java
new file mode 100644
index 0000000000000000000000000000000000000000..c38acb6f103d282b14d73a9b6c8230a750957b43
--- /dev/null
+++ b/UyTube_mobile/src/java/logica/controladores/ListarUsuarioSeguidosResponse.java
@@ -0,0 +1,69 @@
+
+package logica.controladores;
+
+import java.util.ArrayList;
+import java.util.List;
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Clase Java para listarUsuarioSeguidosResponse complex type.
+ * 
+ * <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
+ * 
+ * <pre>
+ * &lt;complexType name="listarUsuarioSeguidosResponse">
+ *   &lt;complexContent>
+ *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       &lt;sequence>
+ *         &lt;element name="return" type="{http://Controladores.Logica/}dtUsuario" maxOccurs="unbounded" minOccurs="0"/>
+ *       &lt;/sequence>
+ *     &lt;/restriction>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * 
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "listarUsuarioSeguidosResponse", propOrder = {
+    "_return"
+})
+public class ListarUsuarioSeguidosResponse {
+
+    @XmlElement(name = "return")
+    protected List<DtUsuario> _return;
+
+    /**
+     * Gets the value of the return property.
+     * 
+     * <p>
+     * This accessor method returns a reference to the live list,
+     * not a snapshot. Therefore any modification you make to the
+     * returned list will be present inside the JAXB object.
+     * This is why there is not a <CODE>set</CODE> method for the return property.
+     * 
+     * <p>
+     * For example, to add a new item, do as follows:
+     * <pre>
+     *    getReturn().add(newItem);
+     * </pre>
+     * 
+     * 
+     * <p>
+     * Objects of the following type(s) are allowed in the list
+     * {@link DtUsuario }
+     * 
+     * 
+     */
+    public List<DtUsuario> getReturn() {
+        if (_return == null) {
+            _return = new ArrayList<DtUsuario>();
+        }
+        return this._return;
+    }
+
+}
diff --git a/UyTube_mobile/src/java/logica/controladores/ListarUsuarios.class b/UyTube_mobile/src/java/logica/controladores/ListarUsuarios.class
new file mode 100644
index 0000000000000000000000000000000000000000..7dd50b92478fb5e71626275c2009c1babf156ed2
Binary files /dev/null and b/UyTube_mobile/src/java/logica/controladores/ListarUsuarios.class differ
diff --git a/UyTube_mobile/src/java/logica/controladores/ListarUsuarios.java b/UyTube_mobile/src/java/logica/controladores/ListarUsuarios.java
new file mode 100644
index 0000000000000000000000000000000000000000..5ef787d800f6370e599b0a7da815cfd5e3f55e60
--- /dev/null
+++ b/UyTube_mobile/src/java/logica/controladores/ListarUsuarios.java
@@ -0,0 +1,32 @@
+
+package logica.controladores;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Clase Java para listarUsuarios complex type.
+ * 
+ * <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
+ * 
+ * <pre>
+ * &lt;complexType name="listarUsuarios">
+ *   &lt;complexContent>
+ *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       &lt;sequence>
+ *       &lt;/sequence>
+ *     &lt;/restriction>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * 
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "listarUsuarios")
+public class ListarUsuarios {
+
+
+}
diff --git a/UyTube_mobile/src/java/logica/controladores/ListarUsuariosResponse.class b/UyTube_mobile/src/java/logica/controladores/ListarUsuariosResponse.class
new file mode 100644
index 0000000000000000000000000000000000000000..07e5043d70b976624adb8dd0f810114799bbd9f2
Binary files /dev/null and b/UyTube_mobile/src/java/logica/controladores/ListarUsuariosResponse.class differ
diff --git a/UyTube_mobile/src/java/logica/controladores/ListarUsuariosResponse.java b/UyTube_mobile/src/java/logica/controladores/ListarUsuariosResponse.java
new file mode 100644
index 0000000000000000000000000000000000000000..965ca867b6290253b8f60019158e584f190a6b4c
--- /dev/null
+++ b/UyTube_mobile/src/java/logica/controladores/ListarUsuariosResponse.java
@@ -0,0 +1,69 @@
+
+package logica.controladores;
+
+import java.util.ArrayList;
+import java.util.List;
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Clase Java para listarUsuariosResponse complex type.
+ * 
+ * <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
+ * 
+ * <pre>
+ * &lt;complexType name="listarUsuariosResponse">
+ *   &lt;complexContent>
+ *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       &lt;sequence>
+ *         &lt;element name="return" type="{http://Controladores.Logica/}dtUsuario" maxOccurs="unbounded" minOccurs="0"/>
+ *       &lt;/sequence>
+ *     &lt;/restriction>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * 
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "listarUsuariosResponse", propOrder = {
+    "_return"
+})
+public class ListarUsuariosResponse {
+
+    @XmlElement(name = "return")
+    protected List<DtUsuario> _return;
+
+    /**
+     * Gets the value of the return property.
+     * 
+     * <p>
+     * This accessor method returns a reference to the live list,
+     * not a snapshot. Therefore any modification you make to the
+     * returned list will be present inside the JAXB object.
+     * This is why there is not a <CODE>set</CODE> method for the return property.
+     * 
+     * <p>
+     * For example, to add a new item, do as follows:
+     * <pre>
+     *    getReturn().add(newItem);
+     * </pre>
+     * 
+     * 
+     * <p>
+     * Objects of the following type(s) are allowed in the list
+     * {@link DtUsuario }
+     * 
+     * 
+     */
+    public List<DtUsuario> getReturn() {
+        if (_return == null) {
+            _return = new ArrayList<DtUsuario>();
+        }
+        return this._return;
+    }
+
+}
diff --git a/UyTube_mobile/src/java/logica/controladores/ListarVideosDeListaDeReproduccion.class b/UyTube_mobile/src/java/logica/controladores/ListarVideosDeListaDeReproduccion.class
new file mode 100644
index 0000000000000000000000000000000000000000..874500002514f70eaefe1b5483341b5f963271f7
Binary files /dev/null and b/UyTube_mobile/src/java/logica/controladores/ListarVideosDeListaDeReproduccion.class differ
diff --git a/UyTube_mobile/src/java/logica/controladores/ListarVideosDeListaDeReproduccion.java b/UyTube_mobile/src/java/logica/controladores/ListarVideosDeListaDeReproduccion.java
new file mode 100644
index 0000000000000000000000000000000000000000..b674d4d222d3c99115f5008ea34bbf95fb630ade
--- /dev/null
+++ b/UyTube_mobile/src/java/logica/controladores/ListarVideosDeListaDeReproduccion.java
@@ -0,0 +1,32 @@
+
+package logica.controladores;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Clase Java para listarVideosDeListaDeReproduccion complex type.
+ * 
+ * <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
+ * 
+ * <pre>
+ * &lt;complexType name="listarVideosDeListaDeReproduccion">
+ *   &lt;complexContent>
+ *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       &lt;sequence>
+ *       &lt;/sequence>
+ *     &lt;/restriction>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * 
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "listarVideosDeListaDeReproduccion")
+public class ListarVideosDeListaDeReproduccion {
+
+
+}
diff --git a/UyTube_mobile/src/java/logica/controladores/ListarVideosDeListaDeReproduccionResponse.class b/UyTube_mobile/src/java/logica/controladores/ListarVideosDeListaDeReproduccionResponse.class
new file mode 100644
index 0000000000000000000000000000000000000000..24010dc13d968dc9f7dfb0cf952f18ce8a3c72f8
Binary files /dev/null and b/UyTube_mobile/src/java/logica/controladores/ListarVideosDeListaDeReproduccionResponse.class differ
diff --git a/UyTube_mobile/src/java/logica/controladores/ListarVideosDeListaDeReproduccionResponse.java b/UyTube_mobile/src/java/logica/controladores/ListarVideosDeListaDeReproduccionResponse.java
new file mode 100644
index 0000000000000000000000000000000000000000..087ae2c7ea19665008551d70eb5267fe52b74928
--- /dev/null
+++ b/UyTube_mobile/src/java/logica/controladores/ListarVideosDeListaDeReproduccionResponse.java
@@ -0,0 +1,69 @@
+
+package logica.controladores;
+
+import java.util.ArrayList;
+import java.util.List;
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Clase Java para listarVideosDeListaDeReproduccionResponse complex type.
+ * 
+ * <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
+ * 
+ * <pre>
+ * &lt;complexType name="listarVideosDeListaDeReproduccionResponse">
+ *   &lt;complexContent>
+ *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       &lt;sequence>
+ *         &lt;element name="return" type="{http://Controladores.Logica/}dtVideo" maxOccurs="unbounded" minOccurs="0"/>
+ *       &lt;/sequence>
+ *     &lt;/restriction>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * 
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "listarVideosDeListaDeReproduccionResponse", propOrder = {
+    "_return"
+})
+public class ListarVideosDeListaDeReproduccionResponse {
+
+    @XmlElement(name = "return")
+    protected List<DtVideo> _return;
+
+    /**
+     * Gets the value of the return property.
+     * 
+     * <p>
+     * This accessor method returns a reference to the live list,
+     * not a snapshot. Therefore any modification you make to the
+     * returned list will be present inside the JAXB object.
+     * This is why there is not a <CODE>set</CODE> method for the return property.
+     * 
+     * <p>
+     * For example, to add a new item, do as follows:
+     * <pre>
+     *    getReturn().add(newItem);
+     * </pre>
+     * 
+     * 
+     * <p>
+     * Objects of the following type(s) are allowed in the list
+     * {@link DtVideo }
+     * 
+     * 
+     */
+    public List<DtVideo> getReturn() {
+        if (_return == null) {
+            _return = new ArrayList<DtVideo>();
+        }
+        return this._return;
+    }
+
+}
diff --git a/UyTube_mobile/src/java/logica/controladores/ListarVideosDeUsuario.class b/UyTube_mobile/src/java/logica/controladores/ListarVideosDeUsuario.class
new file mode 100644
index 0000000000000000000000000000000000000000..9aae9b696f843af2a8ef6be3cdfc9d9f472c7719
Binary files /dev/null and b/UyTube_mobile/src/java/logica/controladores/ListarVideosDeUsuario.class differ
diff --git a/UyTube_mobile/src/java/logica/controladores/ListarVideosDeUsuario.java b/UyTube_mobile/src/java/logica/controladores/ListarVideosDeUsuario.java
new file mode 100644
index 0000000000000000000000000000000000000000..98b16094d1199283d1281e19fff18bac0917afa9
--- /dev/null
+++ b/UyTube_mobile/src/java/logica/controladores/ListarVideosDeUsuario.java
@@ -0,0 +1,32 @@
+
+package logica.controladores;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Clase Java para listarVideosDeUsuario complex type.
+ * 
+ * <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
+ * 
+ * <pre>
+ * &lt;complexType name="listarVideosDeUsuario">
+ *   &lt;complexContent>
+ *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       &lt;sequence>
+ *       &lt;/sequence>
+ *     &lt;/restriction>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * 
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "listarVideosDeUsuario")
+public class ListarVideosDeUsuario {
+
+
+}
diff --git a/UyTube_mobile/src/java/logica/controladores/ListarVideosDeUsuarioResponse.class b/UyTube_mobile/src/java/logica/controladores/ListarVideosDeUsuarioResponse.class
new file mode 100644
index 0000000000000000000000000000000000000000..325327294803aa24705e0813772f630f3a437635
Binary files /dev/null and b/UyTube_mobile/src/java/logica/controladores/ListarVideosDeUsuarioResponse.class differ
diff --git a/UyTube_mobile/src/java/logica/controladores/ListarVideosDeUsuarioResponse.java b/UyTube_mobile/src/java/logica/controladores/ListarVideosDeUsuarioResponse.java
new file mode 100644
index 0000000000000000000000000000000000000000..7b822d399f92c7988f292f002cc34324b91fd6be
--- /dev/null
+++ b/UyTube_mobile/src/java/logica/controladores/ListarVideosDeUsuarioResponse.java
@@ -0,0 +1,69 @@
+
+package logica.controladores;
+
+import java.util.ArrayList;
+import java.util.List;
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Clase Java para listarVideosDeUsuarioResponse complex type.
+ * 
+ * <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
+ * 
+ * <pre>
+ * &lt;complexType name="listarVideosDeUsuarioResponse">
+ *   &lt;complexContent>
+ *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       &lt;sequence>
+ *         &lt;element name="return" type="{http://Controladores.Logica/}dtVideo" maxOccurs="unbounded" minOccurs="0"/>
+ *       &lt;/sequence>
+ *     &lt;/restriction>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * 
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "listarVideosDeUsuarioResponse", propOrder = {
+    "_return"
+})
+public class ListarVideosDeUsuarioResponse {
+
+    @XmlElement(name = "return")
+    protected List<DtVideo> _return;
+
+    /**
+     * Gets the value of the return property.
+     * 
+     * <p>
+     * This accessor method returns a reference to the live list,
+     * not a snapshot. Therefore any modification you make to the
+     * returned list will be present inside the JAXB object.
+     * This is why there is not a <CODE>set</CODE> method for the return property.
+     * 
+     * <p>
+     * For example, to add a new item, do as follows:
+     * <pre>
+     *    getReturn().add(newItem);
+     * </pre>
+     * 
+     * 
+     * <p>
+     * Objects of the following type(s) are allowed in the list
+     * {@link DtVideo }
+     * 
+     * 
+     */
+    public List<DtVideo> getReturn() {
+        if (_return == null) {
+            _return = new ArrayList<DtVideo>();
+        }
+        return this._return;
+    }
+
+}
diff --git a/UyTube_mobile/src/java/logica/controladores/ModificarImagenDeUsuario.class b/UyTube_mobile/src/java/logica/controladores/ModificarImagenDeUsuario.class
new file mode 100644
index 0000000000000000000000000000000000000000..81610a8684045f37d15f13d7b6ce039bbd7c55be
Binary files /dev/null and b/UyTube_mobile/src/java/logica/controladores/ModificarImagenDeUsuario.class differ
diff --git a/UyTube_mobile/src/java/logica/controladores/ModificarImagenDeUsuario.java b/UyTube_mobile/src/java/logica/controladores/ModificarImagenDeUsuario.java
new file mode 100644
index 0000000000000000000000000000000000000000..f27d4a750260bbb7679800477cca6fac5a899221
--- /dev/null
+++ b/UyTube_mobile/src/java/logica/controladores/ModificarImagenDeUsuario.java
@@ -0,0 +1,60 @@
+
+package logica.controladores;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Clase Java para modificarImagenDeUsuario complex type.
+ * 
+ * <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
+ * 
+ * <pre>
+ * &lt;complexType name="modificarImagenDeUsuario">
+ *   &lt;complexContent>
+ *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       &lt;sequence>
+ *         &lt;element name="arg0" type="{http://Controladores.Logica/}dtImagenUsuario" minOccurs="0"/>
+ *       &lt;/sequence>
+ *     &lt;/restriction>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * 
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "modificarImagenDeUsuario", propOrder = {
+    "arg0"
+})
+public class ModificarImagenDeUsuario {
+
+    protected DtImagenUsuario arg0;
+
+    /**
+     * Obtiene el valor de la propiedad arg0.
+     * 
+     * @return
+     *     possible object is
+     *     {@link DtImagenUsuario }
+     *     
+     */
+    public DtImagenUsuario getArg0() {
+        return arg0;
+    }
+
+    /**
+     * Define el valor de la propiedad arg0.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link DtImagenUsuario }
+     *     
+     */
+    public void setArg0(DtImagenUsuario value) {
+        this.arg0 = value;
+    }
+
+}
diff --git a/UyTube_mobile/src/java/logica/controladores/ModificarImagenDeUsuarioResponse.class b/UyTube_mobile/src/java/logica/controladores/ModificarImagenDeUsuarioResponse.class
new file mode 100644
index 0000000000000000000000000000000000000000..c80ba70399c5e0fd42487e80a8ce5a0c7f8b6de2
Binary files /dev/null and b/UyTube_mobile/src/java/logica/controladores/ModificarImagenDeUsuarioResponse.class differ
diff --git a/UyTube_mobile/src/java/logica/controladores/ModificarImagenDeUsuarioResponse.java b/UyTube_mobile/src/java/logica/controladores/ModificarImagenDeUsuarioResponse.java
new file mode 100644
index 0000000000000000000000000000000000000000..82918c60971a5f3c4f46372e501ab43074a5e945
--- /dev/null
+++ b/UyTube_mobile/src/java/logica/controladores/ModificarImagenDeUsuarioResponse.java
@@ -0,0 +1,32 @@
+
+package logica.controladores;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Clase Java para modificarImagenDeUsuarioResponse complex type.
+ * 
+ * <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
+ * 
+ * <pre>
+ * &lt;complexType name="modificarImagenDeUsuarioResponse">
+ *   &lt;complexContent>
+ *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       &lt;sequence>
+ *       &lt;/sequence>
+ *     &lt;/restriction>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * 
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "modificarImagenDeUsuarioResponse")
+public class ModificarImagenDeUsuarioResponse {
+
+
+}
diff --git a/UyTube_mobile/src/java/logica/controladores/ModificarListaDeReproduccion.class b/UyTube_mobile/src/java/logica/controladores/ModificarListaDeReproduccion.class
new file mode 100644
index 0000000000000000000000000000000000000000..1da857583e0038a1dfa8ec605de9b984297c91a6
Binary files /dev/null and b/UyTube_mobile/src/java/logica/controladores/ModificarListaDeReproduccion.class differ
diff --git a/UyTube_mobile/src/java/logica/controladores/ModificarListaDeReproduccion.java b/UyTube_mobile/src/java/logica/controladores/ModificarListaDeReproduccion.java
new file mode 100644
index 0000000000000000000000000000000000000000..d8310472ddeaae26cd42ee7638f34a3542be8578
--- /dev/null
+++ b/UyTube_mobile/src/java/logica/controladores/ModificarListaDeReproduccion.java
@@ -0,0 +1,60 @@
+
+package logica.controladores;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Clase Java para modificarListaDeReproduccion complex type.
+ * 
+ * <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
+ * 
+ * <pre>
+ * &lt;complexType name="modificarListaDeReproduccion">
+ *   &lt;complexContent>
+ *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       &lt;sequence>
+ *         &lt;element name="arg0" type="{http://Controladores.Logica/}dtListaDeReproduccion" minOccurs="0"/>
+ *       &lt;/sequence>
+ *     &lt;/restriction>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * 
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "modificarListaDeReproduccion", propOrder = {
+    "arg0"
+})
+public class ModificarListaDeReproduccion {
+
+    protected DtListaDeReproduccion arg0;
+
+    /**
+     * Obtiene el valor de la propiedad arg0.
+     * 
+     * @return
+     *     possible object is
+     *     {@link DtListaDeReproduccion }
+     *     
+     */
+    public DtListaDeReproduccion getArg0() {
+        return arg0;
+    }
+
+    /**
+     * Define el valor de la propiedad arg0.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link DtListaDeReproduccion }
+     *     
+     */
+    public void setArg0(DtListaDeReproduccion value) {
+        this.arg0 = value;
+    }
+
+}
diff --git a/UyTube_mobile/src/java/logica/controladores/ModificarListaDeReproduccionResponse.class b/UyTube_mobile/src/java/logica/controladores/ModificarListaDeReproduccionResponse.class
new file mode 100644
index 0000000000000000000000000000000000000000..b536a48f6492b74df8811da04c9755c76408e4d6
Binary files /dev/null and b/UyTube_mobile/src/java/logica/controladores/ModificarListaDeReproduccionResponse.class differ
diff --git a/UyTube_mobile/src/java/logica/controladores/ModificarListaDeReproduccionResponse.java b/UyTube_mobile/src/java/logica/controladores/ModificarListaDeReproduccionResponse.java
new file mode 100644
index 0000000000000000000000000000000000000000..2b040a6ecaf8d70b4b05d22a3bc13df503bb10f9
--- /dev/null
+++ b/UyTube_mobile/src/java/logica/controladores/ModificarListaDeReproduccionResponse.java
@@ -0,0 +1,32 @@
+
+package logica.controladores;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Clase Java para modificarListaDeReproduccionResponse complex type.
+ * 
+ * <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
+ * 
+ * <pre>
+ * &lt;complexType name="modificarListaDeReproduccionResponse">
+ *   &lt;complexContent>
+ *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       &lt;sequence>
+ *       &lt;/sequence>
+ *     &lt;/restriction>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * 
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "modificarListaDeReproduccionResponse")
+public class ModificarListaDeReproduccionResponse {
+
+
+}
diff --git a/UyTube_mobile/src/java/logica/controladores/ModificarUsuarioYCanal.class b/UyTube_mobile/src/java/logica/controladores/ModificarUsuarioYCanal.class
new file mode 100644
index 0000000000000000000000000000000000000000..cef7e8a003e0d87a5c09606583acc888f4c57b02
Binary files /dev/null and b/UyTube_mobile/src/java/logica/controladores/ModificarUsuarioYCanal.class differ
diff --git a/UyTube_mobile/src/java/logica/controladores/ModificarUsuarioYCanal.java b/UyTube_mobile/src/java/logica/controladores/ModificarUsuarioYCanal.java
new file mode 100644
index 0000000000000000000000000000000000000000..18555b1a5a1679ff21f39e14f35258a2bb7d65d6
--- /dev/null
+++ b/UyTube_mobile/src/java/logica/controladores/ModificarUsuarioYCanal.java
@@ -0,0 +1,87 @@
+
+package logica.controladores;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Clase Java para modificarUsuarioYCanal complex type.
+ * 
+ * <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
+ * 
+ * <pre>
+ * &lt;complexType name="modificarUsuarioYCanal">
+ *   &lt;complexContent>
+ *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       &lt;sequence>
+ *         &lt;element name="arg0" type="{http://Controladores.Logica/}dtUsuario" minOccurs="0"/>
+ *         &lt;element name="arg1" type="{http://Controladores.Logica/}dtCanal" minOccurs="0"/>
+ *       &lt;/sequence>
+ *     &lt;/restriction>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * 
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "modificarUsuarioYCanal", propOrder = {
+    "arg0",
+    "arg1"
+})
+public class ModificarUsuarioYCanal {
+
+    protected DtUsuario arg0;
+    protected DtCanal arg1;
+
+    /**
+     * Obtiene el valor de la propiedad arg0.
+     * 
+     * @return
+     *     possible object is
+     *     {@link DtUsuario }
+     *     
+     */
+    public DtUsuario getArg0() {
+        return arg0;
+    }
+
+    /**
+     * Define el valor de la propiedad arg0.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link DtUsuario }
+     *     
+     */
+    public void setArg0(DtUsuario value) {
+        this.arg0 = value;
+    }
+
+    /**
+     * Obtiene el valor de la propiedad arg1.
+     * 
+     * @return
+     *     possible object is
+     *     {@link DtCanal }
+     *     
+     */
+    public DtCanal getArg1() {
+        return arg1;
+    }
+
+    /**
+     * Define el valor de la propiedad arg1.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link DtCanal }
+     *     
+     */
+    public void setArg1(DtCanal value) {
+        this.arg1 = value;
+    }
+
+}
diff --git a/UyTube_mobile/src/java/logica/controladores/ModificarUsuarioYCanalResponse.class b/UyTube_mobile/src/java/logica/controladores/ModificarUsuarioYCanalResponse.class
new file mode 100644
index 0000000000000000000000000000000000000000..d7e74ff7e8dc8cb8e2203f2ac011d3d7ff8b8432
Binary files /dev/null and b/UyTube_mobile/src/java/logica/controladores/ModificarUsuarioYCanalResponse.class differ
diff --git a/UyTube_mobile/src/java/logica/controladores/ModificarUsuarioYCanalResponse.java b/UyTube_mobile/src/java/logica/controladores/ModificarUsuarioYCanalResponse.java
new file mode 100644
index 0000000000000000000000000000000000000000..d5f5eff5be8c66543bd185b677741b4bdae11643
--- /dev/null
+++ b/UyTube_mobile/src/java/logica/controladores/ModificarUsuarioYCanalResponse.java
@@ -0,0 +1,32 @@
+
+package logica.controladores;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Clase Java para modificarUsuarioYCanalResponse complex type.
+ * 
+ * <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
+ * 
+ * <pre>
+ * &lt;complexType name="modificarUsuarioYCanalResponse">
+ *   &lt;complexContent>
+ *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       &lt;sequence>
+ *       &lt;/sequence>
+ *     &lt;/restriction>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * 
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "modificarUsuarioYCanalResponse")
+public class ModificarUsuarioYCanalResponse {
+
+
+}
diff --git a/UyTube_mobile/src/java/logica/controladores/ModificarVideo.class b/UyTube_mobile/src/java/logica/controladores/ModificarVideo.class
new file mode 100644
index 0000000000000000000000000000000000000000..18b4063b77146d88101ef4817cf38f807e66824a
Binary files /dev/null and b/UyTube_mobile/src/java/logica/controladores/ModificarVideo.class differ
diff --git a/UyTube_mobile/src/java/logica/controladores/ModificarVideo.java b/UyTube_mobile/src/java/logica/controladores/ModificarVideo.java
new file mode 100644
index 0000000000000000000000000000000000000000..037c458517d2fc7224fa4f241bda1f298ed03ab2
--- /dev/null
+++ b/UyTube_mobile/src/java/logica/controladores/ModificarVideo.java
@@ -0,0 +1,60 @@
+
+package logica.controladores;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Clase Java para modificarVideo complex type.
+ * 
+ * <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
+ * 
+ * <pre>
+ * &lt;complexType name="modificarVideo">
+ *   &lt;complexContent>
+ *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       &lt;sequence>
+ *         &lt;element name="arg0" type="{http://Controladores.Logica/}dtVideo" minOccurs="0"/>
+ *       &lt;/sequence>
+ *     &lt;/restriction>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * 
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "modificarVideo", propOrder = {
+    "arg0"
+})
+public class ModificarVideo {
+
+    protected DtVideo arg0;
+
+    /**
+     * Obtiene el valor de la propiedad arg0.
+     * 
+     * @return
+     *     possible object is
+     *     {@link DtVideo }
+     *     
+     */
+    public DtVideo getArg0() {
+        return arg0;
+    }
+
+    /**
+     * Define el valor de la propiedad arg0.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link DtVideo }
+     *     
+     */
+    public void setArg0(DtVideo value) {
+        this.arg0 = value;
+    }
+
+}
diff --git a/UyTube_mobile/src/java/logica/controladores/ModificarVideoResponse.class b/UyTube_mobile/src/java/logica/controladores/ModificarVideoResponse.class
new file mode 100644
index 0000000000000000000000000000000000000000..5b7db2bb6b2f6370ee3be747db774a31488268d6
Binary files /dev/null and b/UyTube_mobile/src/java/logica/controladores/ModificarVideoResponse.class differ
diff --git a/UyTube_mobile/src/java/logica/controladores/ModificarVideoResponse.java b/UyTube_mobile/src/java/logica/controladores/ModificarVideoResponse.java
new file mode 100644
index 0000000000000000000000000000000000000000..eda40c32a3ffca005522a95e68adfd47af857da3
--- /dev/null
+++ b/UyTube_mobile/src/java/logica/controladores/ModificarVideoResponse.java
@@ -0,0 +1,32 @@
+
+package logica.controladores;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Clase Java para modificarVideoResponse complex type.
+ * 
+ * <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
+ * 
+ * <pre>
+ * &lt;complexType name="modificarVideoResponse">
+ *   &lt;complexContent>
+ *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       &lt;sequence>
+ *       &lt;/sequence>
+ *     &lt;/restriction>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * 
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "modificarVideoResponse")
+public class ModificarVideoResponse {
+
+
+}
diff --git a/UyTube_mobile/src/java/logica/controladores/ObjectFactory.class b/UyTube_mobile/src/java/logica/controladores/ObjectFactory.class
new file mode 100644
index 0000000000000000000000000000000000000000..dd50d69a3e732b9ac880471f6a46298c69d3597b
Binary files /dev/null and b/UyTube_mobile/src/java/logica/controladores/ObjectFactory.class differ
diff --git a/UyTube_mobile/src/java/logica/controladores/ObjectFactory.java b/UyTube_mobile/src/java/logica/controladores/ObjectFactory.java
new file mode 100644
index 0000000000000000000000000000000000000000..49d4c25288da2ff2d8de48952bc59597234ea533
--- /dev/null
+++ b/UyTube_mobile/src/java/logica/controladores/ObjectFactory.java
@@ -0,0 +1,1907 @@
+
+package logica.controladores;
+
+import javax.xml.bind.JAXBElement;
+import javax.xml.bind.annotation.XmlElementDecl;
+import javax.xml.bind.annotation.XmlRegistry;
+import javax.xml.namespace.QName;
+
+
+/**
+ * This object contains factory methods for each 
+ * Java content interface and Java element interface 
+ * generated in the logica.controladores package. 
+ * <p>An ObjectFactory allows you to programatically 
+ * construct new instances of the Java representation 
+ * for XML content. The Java representation of XML 
+ * content can consist of schema derived interfaces 
+ * and classes representing the binding of schema 
+ * type definitions, element declarations and model 
+ * groups.  Factory methods for each of these are 
+ * provided in this class.
+ * 
+ */
+@XmlRegistry
+public class ObjectFactory {
+
+    private final static QName _ObtenerPropietarioDeVideo_QNAME = new QName("http://Controladores.Logica/", "obtenerPropietarioDeVideo");
+    private final static QName _ObtenerValoracionDada_QNAME = new QName("http://Controladores.Logica/", "obtenerValoracionDada");
+    private final static QName _ModificarVideoResponse_QNAME = new QName("http://Controladores.Logica/", "modificarVideoResponse");
+    private final static QName _AltaComentarioResponse_QNAME = new QName("http://Controladores.Logica/", "altaComentarioResponse");
+    private final static QName _BuscarPorCategoria_QNAME = new QName("http://Controladores.Logica/", "buscarPorCategoria");
+    private final static QName _LiberarMemoriaListaDeReproduccion_QNAME = new QName("http://Controladores.Logica/", "liberarMemoriaListaDeReproduccion");
+    private final static QName _IniciarSesionUsuario_QNAME = new QName("http://Controladores.Logica/", "iniciarSesionUsuario");
+    private final static QName _ListarVideosDeUsuario_QNAME = new QName("http://Controladores.Logica/", "listarVideosDeUsuario");
+    private final static QName _SesionIniciadaResponse_QNAME = new QName("http://Controladores.Logica/", "sesionIniciadaResponse");
+    private final static QName _LiberarMemoriaUsuario_QNAME = new QName("http://Controladores.Logica/", "liberarMemoriaUsuario");
+    private final static QName _LiberarMemoriaUsuarioResponse_QNAME = new QName("http://Controladores.Logica/", "liberarMemoriaUsuarioResponse");
+    private final static QName _EliminarImagenDeUsuario_QNAME = new QName("http://Controladores.Logica/", "eliminarImagenDeUsuario");
+    private final static QName _ListarUsuarioSeguidoresResponse_QNAME = new QName("http://Controladores.Logica/", "listarUsuarioSeguidoresResponse");
+    private final static QName _CerrarSesion_QNAME = new QName("http://Controladores.Logica/", "cerrarSesion");
+    private final static QName _ObtenerImagenDeUsuarioResponse_QNAME = new QName("http://Controladores.Logica/", "obtenerImagenDeUsuarioResponse");
+    private final static QName _AltaImagenDeUsuarioResponse_QNAME = new QName("http://Controladores.Logica/", "altaImagenDeUsuarioResponse");
+    private final static QName _QuitarVideoDeListaDeReproduccion_QNAME = new QName("http://Controladores.Logica/", "quitarVideoDeListaDeReproduccion");
+    private final static QName _ListarUsuariosResponse_QNAME = new QName("http://Controladores.Logica/", "listarUsuariosResponse");
+    private final static QName _ListarVideosDeListaDeReproduccionResponse_QNAME = new QName("http://Controladores.Logica/", "listarVideosDeListaDeReproduccionResponse");
+    private final static QName _ListarVideosDeListaDeReproduccion_QNAME = new QName("http://Controladores.Logica/", "listarVideosDeListaDeReproduccion");
+    private final static QName _AltaImagenDeUsuario_QNAME = new QName("http://Controladores.Logica/", "altaImagenDeUsuario");
+    private final static QName _AltaListaDeReproduccionParticularResponse_QNAME = new QName("http://Controladores.Logica/", "altaListaDeReproduccionParticularResponse");
+    private final static QName _BajaUsuario_QNAME = new QName("http://Controladores.Logica/", "bajaUsuario");
+    private final static QName _ObtenerValoracionDadaResponse_QNAME = new QName("http://Controladores.Logica/", "obtenerValoracionDadaResponse");
+    private final static QName _ModificarListaDeReproduccionResponse_QNAME = new QName("http://Controladores.Logica/", "modificarListaDeReproduccionResponse");
+    private final static QName _BuscarPorCategoriaResponse_QNAME = new QName("http://Controladores.Logica/", "buscarPorCategoriaResponse");
+    private final static QName _Buscar_QNAME = new QName("http://Controladores.Logica/", "buscar");
+    private final static QName _ObtenerPropietarioDeCanalResponse_QNAME = new QName("http://Controladores.Logica/", "obtenerPropietarioDeCanalResponse");
+    private final static QName _ModificarImagenDeUsuarioResponse_QNAME = new QName("http://Controladores.Logica/", "modificarImagenDeUsuarioResponse");
+    private final static QName _ValorarVideo_QNAME = new QName("http://Controladores.Logica/", "valorarVideo");
+    private final static QName _ExisteEmailResponse_QNAME = new QName("http://Controladores.Logica/", "existeEmailResponse");
+    private final static QName _ListarListasDeReproduccionDeUsuario_QNAME = new QName("http://Controladores.Logica/", "listarListasDeReproduccionDeUsuario");
+    private final static QName _AltaListaDeReproduccionParticular_QNAME = new QName("http://Controladores.Logica/", "altaListaDeReproduccionParticular");
+    private final static QName _ObtenerImagenDeUsuarioPorDefecto_QNAME = new QName("http://Controladores.Logica/", "obtenerImagenDeUsuarioPorDefecto");
+    private final static QName _ModificarListaDeReproduccion_QNAME = new QName("http://Controladores.Logica/", "modificarListaDeReproduccion");
+    private final static QName _ValidarNuevoVideoResponse_QNAME = new QName("http://Controladores.Logica/", "validarNuevoVideoResponse");
+    private final static QName _ListarUsuarioSeguidosResponse_QNAME = new QName("http://Controladores.Logica/", "listarUsuarioSeguidosResponse");
+    private final static QName _ListarUsuarioSeguidos_QNAME = new QName("http://Controladores.Logica/", "listarUsuarioSeguidos");
+    private final static QName _SeleccionarListaDeReproduccion_QNAME = new QName("http://Controladores.Logica/", "seleccionarListaDeReproduccion");
+    private final static QName _AltaComentario_QNAME = new QName("http://Controladores.Logica/", "altaComentario");
+    private final static QName _AgregarVideoAListaDeReproduccionResponse_QNAME = new QName("http://Controladores.Logica/", "agregarVideoAListaDeReproduccionResponse");
+    private final static QName _ModificarImagenDeUsuario_QNAME = new QName("http://Controladores.Logica/", "modificarImagenDeUsuario");
+    private final static QName _ListarCategorias_QNAME = new QName("http://Controladores.Logica/", "listarCategorias");
+    private final static QName _ModificarUsuarioYCanalResponse_QNAME = new QName("http://Controladores.Logica/", "modificarUsuarioYCanalResponse");
+    private final static QName _ModificarUsuarioYCanal_QNAME = new QName("http://Controladores.Logica/", "modificarUsuarioYCanal");
+    private final static QName _ListarListasDeReproduccionDeUsuarioResponse_QNAME = new QName("http://Controladores.Logica/", "listarListasDeReproduccionDeUsuarioResponse");
+    private final static QName _ObtenerPropietarioDeVideoResponse_QNAME = new QName("http://Controladores.Logica/", "obtenerPropietarioDeVideoResponse");
+    private final static QName _ExisteNicknameResponse_QNAME = new QName("http://Controladores.Logica/", "existeNicknameResponse");
+    private final static QName _ObtenerImagenDeUsuarioPorDefectoResponse_QNAME = new QName("http://Controladores.Logica/", "obtenerImagenDeUsuarioPorDefectoResponse");
+    private final static QName _ValidarNuevoVideo_QNAME = new QName("http://Controladores.Logica/", "validarNuevoVideo");
+    private final static QName _CerrarSesionResponse_QNAME = new QName("http://Controladores.Logica/", "cerrarSesionResponse");
+    private final static QName _ObtenerPropietarioDeListaDeReproduccion_QNAME = new QName("http://Controladores.Logica/", "obtenerPropietarioDeListaDeReproduccion");
+    private final static QName _ObtenerUsuarioActual_QNAME = new QName("http://Controladores.Logica/", "obtenerUsuarioActual");
+    private final static QName _ObtenerPropietarioDeCanal_QNAME = new QName("http://Controladores.Logica/", "obtenerPropietarioDeCanal");
+    private final static QName _ObtenerCanalDeUsuario_QNAME = new QName("http://Controladores.Logica/", "obtenerCanalDeUsuario");
+    private final static QName _SeleccionarUsuarioResponse_QNAME = new QName("http://Controladores.Logica/", "seleccionarUsuarioResponse");
+    private final static QName _ExisteEmail_QNAME = new QName("http://Controladores.Logica/", "existeEmail");
+    private final static QName _AltaUsuarioCanalResponse_QNAME = new QName("http://Controladores.Logica/", "altaUsuarioCanalResponse");
+    private final static QName _ElUsuarioSeleccionadoEsElUsuarioActualResponse_QNAME = new QName("http://Controladores.Logica/", "elUsuarioSeleccionadoEsElUsuarioActualResponse");
+    private final static QName _ListarVideosDeUsuarioResponse_QNAME = new QName("http://Controladores.Logica/", "listarVideosDeUsuarioResponse");
+    private final static QName _ListarComentariosDeVideo_QNAME = new QName("http://Controladores.Logica/", "listarComentariosDeVideo");
+    private final static QName _ListarComentariosDeVideoResponse_QNAME = new QName("http://Controladores.Logica/", "listarComentariosDeVideoResponse");
+    private final static QName _ObtenerImagenDeUsuario_QNAME = new QName("http://Controladores.Logica/", "obtenerImagenDeUsuario");
+    private final static QName _BuscarResponse_QNAME = new QName("http://Controladores.Logica/", "buscarResponse");
+    private final static QName _ExisteImagenDeUsuario_QNAME = new QName("http://Controladores.Logica/", "existeImagenDeUsuario");
+    private final static QName _ObtenerValoracionesDeVideo_QNAME = new QName("http://Controladores.Logica/", "obtenerValoracionesDeVideo");
+    private final static QName _ListarCategoriasResponse_QNAME = new QName("http://Controladores.Logica/", "listarCategoriasResponse");
+    private final static QName _SeleccionarVideo_QNAME = new QName("http://Controladores.Logica/", "seleccionarVideo");
+    private final static QName _SeleccionarVideoResponse_QNAME = new QName("http://Controladores.Logica/", "seleccionarVideoResponse");
+    private final static QName _ValidarNuevaListaParticularResponse_QNAME = new QName("http://Controladores.Logica/", "validarNuevaListaParticularResponse");
+    private final static QName _AltaUsuarioCanal_QNAME = new QName("http://Controladores.Logica/", "altaUsuarioCanal");
+    private final static QName _ValorarVideoResponse_QNAME = new QName("http://Controladores.Logica/", "valorarVideoResponse");
+    private final static QName _AgregarVideoAListaDeReproduccion_QNAME = new QName("http://Controladores.Logica/", "agregarVideoAListaDeReproduccion");
+    private final static QName _AltaSubComentarioResponse_QNAME = new QName("http://Controladores.Logica/", "altaSubComentarioResponse");
+    private final static QName _AltaSubComentario_QNAME = new QName("http://Controladores.Logica/", "altaSubComentario");
+    private final static QName _ModificarVideo_QNAME = new QName("http://Controladores.Logica/", "modificarVideo");
+    private final static QName _ObtenerCanalDeUsuarioResponse_QNAME = new QName("http://Controladores.Logica/", "obtenerCanalDeUsuarioResponse");
+    private final static QName _QuitarVideoDeListaDeReproduccionResponse_QNAME = new QName("http://Controladores.Logica/", "quitarVideoDeListaDeReproduccionResponse");
+    private final static QName _LiberarMemoriaListaDeReproduccionResponse_QNAME = new QName("http://Controladores.Logica/", "liberarMemoriaListaDeReproduccionResponse");
+    private final static QName _AltaVideo_QNAME = new QName("http://Controladores.Logica/", "altaVideo");
+    private final static QName _AltaVideoResponse_QNAME = new QName("http://Controladores.Logica/", "altaVideoResponse");
+    private final static QName _SeguirUsuario_QNAME = new QName("http://Controladores.Logica/", "seguirUsuario");
+    private final static QName _SeleccionarListaDeReproduccionResponse_QNAME = new QName("http://Controladores.Logica/", "seleccionarListaDeReproduccionResponse");
+    private final static QName _LiberarMemoriaVideo_QNAME = new QName("http://Controladores.Logica/", "liberarMemoriaVideo");
+    private final static QName _SeguirUsuarioResponse_QNAME = new QName("http://Controladores.Logica/", "seguirUsuarioResponse");
+    private final static QName _IniciarSesionUsuarioResponse_QNAME = new QName("http://Controladores.Logica/", "iniciarSesionUsuarioResponse");
+    private final static QName _ListarUsuarios_QNAME = new QName("http://Controladores.Logica/", "listarUsuarios");
+    private final static QName _SesionIniciada_QNAME = new QName("http://Controladores.Logica/", "sesionIniciada");
+    private final static QName _ElUsuarioSeleccionadoEsElUsuarioActual_QNAME = new QName("http://Controladores.Logica/", "elUsuarioSeleccionadoEsElUsuarioActual");
+    private final static QName _ObtenerUsuarioActualResponse_QNAME = new QName("http://Controladores.Logica/", "obtenerUsuarioActualResponse");
+    private final static QName _ObtenerPropietarioDeListaDeReproduccionResponse_QNAME = new QName("http://Controladores.Logica/", "obtenerPropietarioDeListaDeReproduccionResponse");
+    private final static QName _ListarUsuarioSeguidores_QNAME = new QName("http://Controladores.Logica/", "listarUsuarioSeguidores");
+    private final static QName _ExisteImagenDeUsuarioResponse_QNAME = new QName("http://Controladores.Logica/", "existeImagenDeUsuarioResponse");
+    private final static QName _SeleccionarUsuario_QNAME = new QName("http://Controladores.Logica/", "seleccionarUsuario");
+    private final static QName _ObtenerValoracionesDeVideoResponse_QNAME = new QName("http://Controladores.Logica/", "obtenerValoracionesDeVideoResponse");
+    private final static QName _EliminarImagenDeUsuarioResponse_QNAME = new QName("http://Controladores.Logica/", "eliminarImagenDeUsuarioResponse");
+    private final static QName _LiberarMemoriaVideoResponse_QNAME = new QName("http://Controladores.Logica/", "liberarMemoriaVideoResponse");
+    private final static QName _BajaUsuarioResponse_QNAME = new QName("http://Controladores.Logica/", "bajaUsuarioResponse");
+    private final static QName _ValidarNuevaListaParticular_QNAME = new QName("http://Controladores.Logica/", "validarNuevaListaParticular");
+    private final static QName _ExisteNickname_QNAME = new QName("http://Controladores.Logica/", "existeNickname");
+
+    /**
+     * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: logica.controladores
+     * 
+     */
+    public ObjectFactory() {
+    }
+
+    /**
+     * Create an instance of {@link ExisteNickname }
+     * 
+     */
+    public ExisteNickname createExisteNickname() {
+        return new ExisteNickname();
+    }
+
+    /**
+     * Create an instance of {@link ValidarNuevaListaParticular }
+     * 
+     */
+    public ValidarNuevaListaParticular createValidarNuevaListaParticular() {
+        return new ValidarNuevaListaParticular();
+    }
+
+    /**
+     * Create an instance of {@link BajaUsuarioResponse }
+     * 
+     */
+    public BajaUsuarioResponse createBajaUsuarioResponse() {
+        return new BajaUsuarioResponse();
+    }
+
+    /**
+     * Create an instance of {@link LiberarMemoriaVideoResponse }
+     * 
+     */
+    public LiberarMemoriaVideoResponse createLiberarMemoriaVideoResponse() {
+        return new LiberarMemoriaVideoResponse();
+    }
+
+    /**
+     * Create an instance of {@link EliminarImagenDeUsuarioResponse }
+     * 
+     */
+    public EliminarImagenDeUsuarioResponse createEliminarImagenDeUsuarioResponse() {
+        return new EliminarImagenDeUsuarioResponse();
+    }
+
+    /**
+     * Create an instance of {@link ObtenerValoracionesDeVideoResponse }
+     * 
+     */
+    public ObtenerValoracionesDeVideoResponse createObtenerValoracionesDeVideoResponse() {
+        return new ObtenerValoracionesDeVideoResponse();
+    }
+
+    /**
+     * Create an instance of {@link SeleccionarUsuario }
+     * 
+     */
+    public SeleccionarUsuario createSeleccionarUsuario() {
+        return new SeleccionarUsuario();
+    }
+
+    /**
+     * Create an instance of {@link ExisteImagenDeUsuarioResponse }
+     * 
+     */
+    public ExisteImagenDeUsuarioResponse createExisteImagenDeUsuarioResponse() {
+        return new ExisteImagenDeUsuarioResponse();
+    }
+
+    /**
+     * Create an instance of {@link ListarUsuarioSeguidores }
+     * 
+     */
+    public ListarUsuarioSeguidores createListarUsuarioSeguidores() {
+        return new ListarUsuarioSeguidores();
+    }
+
+    /**
+     * Create an instance of {@link ObtenerPropietarioDeListaDeReproduccionResponse }
+     * 
+     */
+    public ObtenerPropietarioDeListaDeReproduccionResponse createObtenerPropietarioDeListaDeReproduccionResponse() {
+        return new ObtenerPropietarioDeListaDeReproduccionResponse();
+    }
+
+    /**
+     * Create an instance of {@link ElUsuarioSeleccionadoEsElUsuarioActual }
+     * 
+     */
+    public ElUsuarioSeleccionadoEsElUsuarioActual createElUsuarioSeleccionadoEsElUsuarioActual() {
+        return new ElUsuarioSeleccionadoEsElUsuarioActual();
+    }
+
+    /**
+     * Create an instance of {@link ObtenerUsuarioActualResponse }
+     * 
+     */
+    public ObtenerUsuarioActualResponse createObtenerUsuarioActualResponse() {
+        return new ObtenerUsuarioActualResponse();
+    }
+
+    /**
+     * Create an instance of {@link ListarUsuarios }
+     * 
+     */
+    public ListarUsuarios createListarUsuarios() {
+        return new ListarUsuarios();
+    }
+
+    /**
+     * Create an instance of {@link SesionIniciada }
+     * 
+     */
+    public SesionIniciada createSesionIniciada() {
+        return new SesionIniciada();
+    }
+
+    /**
+     * Create an instance of {@link IniciarSesionUsuarioResponse }
+     * 
+     */
+    public IniciarSesionUsuarioResponse createIniciarSesionUsuarioResponse() {
+        return new IniciarSesionUsuarioResponse();
+    }
+
+    /**
+     * Create an instance of {@link LiberarMemoriaVideo }
+     * 
+     */
+    public LiberarMemoriaVideo createLiberarMemoriaVideo() {
+        return new LiberarMemoriaVideo();
+    }
+
+    /**
+     * Create an instance of {@link SeguirUsuarioResponse }
+     * 
+     */
+    public SeguirUsuarioResponse createSeguirUsuarioResponse() {
+        return new SeguirUsuarioResponse();
+    }
+
+    /**
+     * Create an instance of {@link SeleccionarListaDeReproduccionResponse }
+     * 
+     */
+    public SeleccionarListaDeReproduccionResponse createSeleccionarListaDeReproduccionResponse() {
+        return new SeleccionarListaDeReproduccionResponse();
+    }
+
+    /**
+     * Create an instance of {@link AltaVideoResponse }
+     * 
+     */
+    public AltaVideoResponse createAltaVideoResponse() {
+        return new AltaVideoResponse();
+    }
+
+    /**
+     * Create an instance of {@link SeguirUsuario }
+     * 
+     */
+    public SeguirUsuario createSeguirUsuario() {
+        return new SeguirUsuario();
+    }
+
+    /**
+     * Create an instance of {@link AltaVideo }
+     * 
+     */
+    public AltaVideo createAltaVideo() {
+        return new AltaVideo();
+    }
+
+    /**
+     * Create an instance of {@link LiberarMemoriaListaDeReproduccionResponse }
+     * 
+     */
+    public LiberarMemoriaListaDeReproduccionResponse createLiberarMemoriaListaDeReproduccionResponse() {
+        return new LiberarMemoriaListaDeReproduccionResponse();
+    }
+
+    /**
+     * Create an instance of {@link ObtenerCanalDeUsuarioResponse }
+     * 
+     */
+    public ObtenerCanalDeUsuarioResponse createObtenerCanalDeUsuarioResponse() {
+        return new ObtenerCanalDeUsuarioResponse();
+    }
+
+    /**
+     * Create an instance of {@link QuitarVideoDeListaDeReproduccionResponse }
+     * 
+     */
+    public QuitarVideoDeListaDeReproduccionResponse createQuitarVideoDeListaDeReproduccionResponse() {
+        return new QuitarVideoDeListaDeReproduccionResponse();
+    }
+
+    /**
+     * Create an instance of {@link ModificarVideo }
+     * 
+     */
+    public ModificarVideo createModificarVideo() {
+        return new ModificarVideo();
+    }
+
+    /**
+     * Create an instance of {@link AltaSubComentario }
+     * 
+     */
+    public AltaSubComentario createAltaSubComentario() {
+        return new AltaSubComentario();
+    }
+
+    /**
+     * Create an instance of {@link AltaSubComentarioResponse }
+     * 
+     */
+    public AltaSubComentarioResponse createAltaSubComentarioResponse() {
+        return new AltaSubComentarioResponse();
+    }
+
+    /**
+     * Create an instance of {@link AgregarVideoAListaDeReproduccion }
+     * 
+     */
+    public AgregarVideoAListaDeReproduccion createAgregarVideoAListaDeReproduccion() {
+        return new AgregarVideoAListaDeReproduccion();
+    }
+
+    /**
+     * Create an instance of {@link ValorarVideoResponse }
+     * 
+     */
+    public ValorarVideoResponse createValorarVideoResponse() {
+        return new ValorarVideoResponse();
+    }
+
+    /**
+     * Create an instance of {@link AltaUsuarioCanal }
+     * 
+     */
+    public AltaUsuarioCanal createAltaUsuarioCanal() {
+        return new AltaUsuarioCanal();
+    }
+
+    /**
+     * Create an instance of {@link ValidarNuevaListaParticularResponse }
+     * 
+     */
+    public ValidarNuevaListaParticularResponse createValidarNuevaListaParticularResponse() {
+        return new ValidarNuevaListaParticularResponse();
+    }
+
+    /**
+     * Create an instance of {@link SeleccionarVideoResponse }
+     * 
+     */
+    public SeleccionarVideoResponse createSeleccionarVideoResponse() {
+        return new SeleccionarVideoResponse();
+    }
+
+    /**
+     * Create an instance of {@link ListarCategoriasResponse }
+     * 
+     */
+    public ListarCategoriasResponse createListarCategoriasResponse() {
+        return new ListarCategoriasResponse();
+    }
+
+    /**
+     * Create an instance of {@link SeleccionarVideo }
+     * 
+     */
+    public SeleccionarVideo createSeleccionarVideo() {
+        return new SeleccionarVideo();
+    }
+
+    /**
+     * Create an instance of {@link BuscarResponse }
+     * 
+     */
+    public BuscarResponse createBuscarResponse() {
+        return new BuscarResponse();
+    }
+
+    /**
+     * Create an instance of {@link ExisteImagenDeUsuario }
+     * 
+     */
+    public ExisteImagenDeUsuario createExisteImagenDeUsuario() {
+        return new ExisteImagenDeUsuario();
+    }
+
+    /**
+     * Create an instance of {@link ObtenerValoracionesDeVideo }
+     * 
+     */
+    public ObtenerValoracionesDeVideo createObtenerValoracionesDeVideo() {
+        return new ObtenerValoracionesDeVideo();
+    }
+
+    /**
+     * Create an instance of {@link ObtenerImagenDeUsuario }
+     * 
+     */
+    public ObtenerImagenDeUsuario createObtenerImagenDeUsuario() {
+        return new ObtenerImagenDeUsuario();
+    }
+
+    /**
+     * Create an instance of {@link ListarComentariosDeVideo }
+     * 
+     */
+    public ListarComentariosDeVideo createListarComentariosDeVideo() {
+        return new ListarComentariosDeVideo();
+    }
+
+    /**
+     * Create an instance of {@link ListarComentariosDeVideoResponse }
+     * 
+     */
+    public ListarComentariosDeVideoResponse createListarComentariosDeVideoResponse() {
+        return new ListarComentariosDeVideoResponse();
+    }
+
+    /**
+     * Create an instance of {@link ElUsuarioSeleccionadoEsElUsuarioActualResponse }
+     * 
+     */
+    public ElUsuarioSeleccionadoEsElUsuarioActualResponse createElUsuarioSeleccionadoEsElUsuarioActualResponse() {
+        return new ElUsuarioSeleccionadoEsElUsuarioActualResponse();
+    }
+
+    /**
+     * Create an instance of {@link ListarVideosDeUsuarioResponse }
+     * 
+     */
+    public ListarVideosDeUsuarioResponse createListarVideosDeUsuarioResponse() {
+        return new ListarVideosDeUsuarioResponse();
+    }
+
+    /**
+     * Create an instance of {@link AltaUsuarioCanalResponse }
+     * 
+     */
+    public AltaUsuarioCanalResponse createAltaUsuarioCanalResponse() {
+        return new AltaUsuarioCanalResponse();
+    }
+
+    /**
+     * Create an instance of {@link ExisteEmail }
+     * 
+     */
+    public ExisteEmail createExisteEmail() {
+        return new ExisteEmail();
+    }
+
+    /**
+     * Create an instance of {@link ObtenerCanalDeUsuario }
+     * 
+     */
+    public ObtenerCanalDeUsuario createObtenerCanalDeUsuario() {
+        return new ObtenerCanalDeUsuario();
+    }
+
+    /**
+     * Create an instance of {@link SeleccionarUsuarioResponse }
+     * 
+     */
+    public SeleccionarUsuarioResponse createSeleccionarUsuarioResponse() {
+        return new SeleccionarUsuarioResponse();
+    }
+
+    /**
+     * Create an instance of {@link ObtenerPropietarioDeCanal }
+     * 
+     */
+    public ObtenerPropietarioDeCanal createObtenerPropietarioDeCanal() {
+        return new ObtenerPropietarioDeCanal();
+    }
+
+    /**
+     * Create an instance of {@link ObtenerUsuarioActual }
+     * 
+     */
+    public ObtenerUsuarioActual createObtenerUsuarioActual() {
+        return new ObtenerUsuarioActual();
+    }
+
+    /**
+     * Create an instance of {@link CerrarSesionResponse }
+     * 
+     */
+    public CerrarSesionResponse createCerrarSesionResponse() {
+        return new CerrarSesionResponse();
+    }
+
+    /**
+     * Create an instance of {@link ObtenerPropietarioDeListaDeReproduccion }
+     * 
+     */
+    public ObtenerPropietarioDeListaDeReproduccion createObtenerPropietarioDeListaDeReproduccion() {
+        return new ObtenerPropietarioDeListaDeReproduccion();
+    }
+
+    /**
+     * Create an instance of {@link ObtenerImagenDeUsuarioPorDefectoResponse }
+     * 
+     */
+    public ObtenerImagenDeUsuarioPorDefectoResponse createObtenerImagenDeUsuarioPorDefectoResponse() {
+        return new ObtenerImagenDeUsuarioPorDefectoResponse();
+    }
+
+    /**
+     * Create an instance of {@link ValidarNuevoVideo }
+     * 
+     */
+    public ValidarNuevoVideo createValidarNuevoVideo() {
+        return new ValidarNuevoVideo();
+    }
+
+    /**
+     * Create an instance of {@link ExisteNicknameResponse }
+     * 
+     */
+    public ExisteNicknameResponse createExisteNicknameResponse() {
+        return new ExisteNicknameResponse();
+    }
+
+    /**
+     * Create an instance of {@link ObtenerPropietarioDeVideoResponse }
+     * 
+     */
+    public ObtenerPropietarioDeVideoResponse createObtenerPropietarioDeVideoResponse() {
+        return new ObtenerPropietarioDeVideoResponse();
+    }
+
+    /**
+     * Create an instance of {@link ListarListasDeReproduccionDeUsuarioResponse }
+     * 
+     */
+    public ListarListasDeReproduccionDeUsuarioResponse createListarListasDeReproduccionDeUsuarioResponse() {
+        return new ListarListasDeReproduccionDeUsuarioResponse();
+    }
+
+    /**
+     * Create an instance of {@link ModificarUsuarioYCanal }
+     * 
+     */
+    public ModificarUsuarioYCanal createModificarUsuarioYCanal() {
+        return new ModificarUsuarioYCanal();
+    }
+
+    /**
+     * Create an instance of {@link ModificarUsuarioYCanalResponse }
+     * 
+     */
+    public ModificarUsuarioYCanalResponse createModificarUsuarioYCanalResponse() {
+        return new ModificarUsuarioYCanalResponse();
+    }
+
+    /**
+     * Create an instance of {@link ListarCategorias }
+     * 
+     */
+    public ListarCategorias createListarCategorias() {
+        return new ListarCategorias();
+    }
+
+    /**
+     * Create an instance of {@link ModificarImagenDeUsuario }
+     * 
+     */
+    public ModificarImagenDeUsuario createModificarImagenDeUsuario() {
+        return new ModificarImagenDeUsuario();
+    }
+
+    /**
+     * Create an instance of {@link AgregarVideoAListaDeReproduccionResponse }
+     * 
+     */
+    public AgregarVideoAListaDeReproduccionResponse createAgregarVideoAListaDeReproduccionResponse() {
+        return new AgregarVideoAListaDeReproduccionResponse();
+    }
+
+    /**
+     * Create an instance of {@link AltaComentario }
+     * 
+     */
+    public AltaComentario createAltaComentario() {
+        return new AltaComentario();
+    }
+
+    /**
+     * Create an instance of {@link SeleccionarListaDeReproduccion }
+     * 
+     */
+    public SeleccionarListaDeReproduccion createSeleccionarListaDeReproduccion() {
+        return new SeleccionarListaDeReproduccion();
+    }
+
+    /**
+     * Create an instance of {@link ListarUsuarioSeguidos }
+     * 
+     */
+    public ListarUsuarioSeguidos createListarUsuarioSeguidos() {
+        return new ListarUsuarioSeguidos();
+    }
+
+    /**
+     * Create an instance of {@link ListarUsuarioSeguidosResponse }
+     * 
+     */
+    public ListarUsuarioSeguidosResponse createListarUsuarioSeguidosResponse() {
+        return new ListarUsuarioSeguidosResponse();
+    }
+
+    /**
+     * Create an instance of {@link ValidarNuevoVideoResponse }
+     * 
+     */
+    public ValidarNuevoVideoResponse createValidarNuevoVideoResponse() {
+        return new ValidarNuevoVideoResponse();
+    }
+
+    /**
+     * Create an instance of {@link ModificarListaDeReproduccion }
+     * 
+     */
+    public ModificarListaDeReproduccion createModificarListaDeReproduccion() {
+        return new ModificarListaDeReproduccion();
+    }
+
+    /**
+     * Create an instance of {@link AltaListaDeReproduccionParticular }
+     * 
+     */
+    public AltaListaDeReproduccionParticular createAltaListaDeReproduccionParticular() {
+        return new AltaListaDeReproduccionParticular();
+    }
+
+    /**
+     * Create an instance of {@link ObtenerImagenDeUsuarioPorDefecto }
+     * 
+     */
+    public ObtenerImagenDeUsuarioPorDefecto createObtenerImagenDeUsuarioPorDefecto() {
+        return new ObtenerImagenDeUsuarioPorDefecto();
+    }
+
+    /**
+     * Create an instance of {@link ListarListasDeReproduccionDeUsuario }
+     * 
+     */
+    public ListarListasDeReproduccionDeUsuario createListarListasDeReproduccionDeUsuario() {
+        return new ListarListasDeReproduccionDeUsuario();
+    }
+
+    /**
+     * Create an instance of {@link ExisteEmailResponse }
+     * 
+     */
+    public ExisteEmailResponse createExisteEmailResponse() {
+        return new ExisteEmailResponse();
+    }
+
+    /**
+     * Create an instance of {@link ValorarVideo }
+     * 
+     */
+    public ValorarVideo createValorarVideo() {
+        return new ValorarVideo();
+    }
+
+    /**
+     * Create an instance of {@link ModificarImagenDeUsuarioResponse }
+     * 
+     */
+    public ModificarImagenDeUsuarioResponse createModificarImagenDeUsuarioResponse() {
+        return new ModificarImagenDeUsuarioResponse();
+    }
+
+    /**
+     * Create an instance of {@link Buscar }
+     * 
+     */
+    public Buscar createBuscar() {
+        return new Buscar();
+    }
+
+    /**
+     * Create an instance of {@link ObtenerPropietarioDeCanalResponse }
+     * 
+     */
+    public ObtenerPropietarioDeCanalResponse createObtenerPropietarioDeCanalResponse() {
+        return new ObtenerPropietarioDeCanalResponse();
+    }
+
+    /**
+     * Create an instance of {@link BuscarPorCategoriaResponse }
+     * 
+     */
+    public BuscarPorCategoriaResponse createBuscarPorCategoriaResponse() {
+        return new BuscarPorCategoriaResponse();
+    }
+
+    /**
+     * Create an instance of {@link ModificarListaDeReproduccionResponse }
+     * 
+     */
+    public ModificarListaDeReproduccionResponse createModificarListaDeReproduccionResponse() {
+        return new ModificarListaDeReproduccionResponse();
+    }
+
+    /**
+     * Create an instance of {@link BajaUsuario }
+     * 
+     */
+    public BajaUsuario createBajaUsuario() {
+        return new BajaUsuario();
+    }
+
+    /**
+     * Create an instance of {@link ObtenerValoracionDadaResponse }
+     * 
+     */
+    public ObtenerValoracionDadaResponse createObtenerValoracionDadaResponse() {
+        return new ObtenerValoracionDadaResponse();
+    }
+
+    /**
+     * Create an instance of {@link AltaListaDeReproduccionParticularResponse }
+     * 
+     */
+    public AltaListaDeReproduccionParticularResponse createAltaListaDeReproduccionParticularResponse() {
+        return new AltaListaDeReproduccionParticularResponse();
+    }
+
+    /**
+     * Create an instance of {@link AltaImagenDeUsuario }
+     * 
+     */
+    public AltaImagenDeUsuario createAltaImagenDeUsuario() {
+        return new AltaImagenDeUsuario();
+    }
+
+    /**
+     * Create an instance of {@link ListarVideosDeListaDeReproduccion }
+     * 
+     */
+    public ListarVideosDeListaDeReproduccion createListarVideosDeListaDeReproduccion() {
+        return new ListarVideosDeListaDeReproduccion();
+    }
+
+    /**
+     * Create an instance of {@link ListarVideosDeListaDeReproduccionResponse }
+     * 
+     */
+    public ListarVideosDeListaDeReproduccionResponse createListarVideosDeListaDeReproduccionResponse() {
+        return new ListarVideosDeListaDeReproduccionResponse();
+    }
+
+    /**
+     * Create an instance of {@link ListarUsuariosResponse }
+     * 
+     */
+    public ListarUsuariosResponse createListarUsuariosResponse() {
+        return new ListarUsuariosResponse();
+    }
+
+    /**
+     * Create an instance of {@link QuitarVideoDeListaDeReproduccion }
+     * 
+     */
+    public QuitarVideoDeListaDeReproduccion createQuitarVideoDeListaDeReproduccion() {
+        return new QuitarVideoDeListaDeReproduccion();
+    }
+
+    /**
+     * Create an instance of {@link AltaImagenDeUsuarioResponse }
+     * 
+     */
+    public AltaImagenDeUsuarioResponse createAltaImagenDeUsuarioResponse() {
+        return new AltaImagenDeUsuarioResponse();
+    }
+
+    /**
+     * Create an instance of {@link CerrarSesion }
+     * 
+     */
+    public CerrarSesion createCerrarSesion() {
+        return new CerrarSesion();
+    }
+
+    /**
+     * Create an instance of {@link ObtenerImagenDeUsuarioResponse }
+     * 
+     */
+    public ObtenerImagenDeUsuarioResponse createObtenerImagenDeUsuarioResponse() {
+        return new ObtenerImagenDeUsuarioResponse();
+    }
+
+    /**
+     * Create an instance of {@link ListarUsuarioSeguidoresResponse }
+     * 
+     */
+    public ListarUsuarioSeguidoresResponse createListarUsuarioSeguidoresResponse() {
+        return new ListarUsuarioSeguidoresResponse();
+    }
+
+    /**
+     * Create an instance of {@link EliminarImagenDeUsuario }
+     * 
+     */
+    public EliminarImagenDeUsuario createEliminarImagenDeUsuario() {
+        return new EliminarImagenDeUsuario();
+    }
+
+    /**
+     * Create an instance of {@link LiberarMemoriaUsuarioResponse }
+     * 
+     */
+    public LiberarMemoriaUsuarioResponse createLiberarMemoriaUsuarioResponse() {
+        return new LiberarMemoriaUsuarioResponse();
+    }
+
+    /**
+     * Create an instance of {@link LiberarMemoriaUsuario }
+     * 
+     */
+    public LiberarMemoriaUsuario createLiberarMemoriaUsuario() {
+        return new LiberarMemoriaUsuario();
+    }
+
+    /**
+     * Create an instance of {@link SesionIniciadaResponse }
+     * 
+     */
+    public SesionIniciadaResponse createSesionIniciadaResponse() {
+        return new SesionIniciadaResponse();
+    }
+
+    /**
+     * Create an instance of {@link IniciarSesionUsuario }
+     * 
+     */
+    public IniciarSesionUsuario createIniciarSesionUsuario() {
+        return new IniciarSesionUsuario();
+    }
+
+    /**
+     * Create an instance of {@link ListarVideosDeUsuario }
+     * 
+     */
+    public ListarVideosDeUsuario createListarVideosDeUsuario() {
+        return new ListarVideosDeUsuario();
+    }
+
+    /**
+     * Create an instance of {@link LiberarMemoriaListaDeReproduccion }
+     * 
+     */
+    public LiberarMemoriaListaDeReproduccion createLiberarMemoriaListaDeReproduccion() {
+        return new LiberarMemoriaListaDeReproduccion();
+    }
+
+    /**
+     * Create an instance of {@link BuscarPorCategoria }
+     * 
+     */
+    public BuscarPorCategoria createBuscarPorCategoria() {
+        return new BuscarPorCategoria();
+    }
+
+    /**
+     * Create an instance of {@link AltaComentarioResponse }
+     * 
+     */
+    public AltaComentarioResponse createAltaComentarioResponse() {
+        return new AltaComentarioResponse();
+    }
+
+    /**
+     * Create an instance of {@link ModificarVideoResponse }
+     * 
+     */
+    public ModificarVideoResponse createModificarVideoResponse() {
+        return new ModificarVideoResponse();
+    }
+
+    /**
+     * Create an instance of {@link ObtenerValoracionDada }
+     * 
+     */
+    public ObtenerValoracionDada createObtenerValoracionDada() {
+        return new ObtenerValoracionDada();
+    }
+
+    /**
+     * Create an instance of {@link ObtenerPropietarioDeVideo }
+     * 
+     */
+    public ObtenerPropietarioDeVideo createObtenerPropietarioDeVideo() {
+        return new ObtenerPropietarioDeVideo();
+    }
+
+    /**
+     * Create an instance of {@link DtVideo }
+     * 
+     */
+    public DtVideo createDtVideo() {
+        return new DtVideo();
+    }
+
+    /**
+     * Create an instance of {@link DtUsuario }
+     * 
+     */
+    public DtUsuario createDtUsuario() {
+        return new DtUsuario();
+    }
+
+    /**
+     * Create an instance of {@link DtComentario }
+     * 
+     */
+    public DtComentario createDtComentario() {
+        return new DtComentario();
+    }
+
+    /**
+     * Create an instance of {@link Duracion }
+     * 
+     */
+    public Duracion createDuracion() {
+        return new Duracion();
+    }
+
+    /**
+     * Create an instance of {@link DtListaDeReproduccion }
+     * 
+     */
+    public DtListaDeReproduccion createDtListaDeReproduccion() {
+        return new DtListaDeReproduccion();
+    }
+
+    /**
+     * Create an instance of {@link DtValoracion }
+     * 
+     */
+    public DtValoracion createDtValoracion() {
+        return new DtValoracion();
+    }
+
+    /**
+     * Create an instance of {@link Fecha }
+     * 
+     */
+    public Fecha createFecha() {
+        return new Fecha();
+    }
+
+    /**
+     * Create an instance of {@link DtCanal }
+     * 
+     */
+    public DtCanal createDtCanal() {
+        return new DtCanal();
+    }
+
+    /**
+     * Create an instance of {@link DtImagenUsuario }
+     * 
+     */
+    public DtImagenUsuario createDtImagenUsuario() {
+        return new DtImagenUsuario();
+    }
+
+    /**
+     * Create an instance of {@link JAXBElement }{@code <}{@link ObtenerPropietarioDeVideo }{@code >}}
+     * 
+     */
+    @XmlElementDecl(namespace = "http://Controladores.Logica/", name = "obtenerPropietarioDeVideo")
+    public JAXBElement<ObtenerPropietarioDeVideo> createObtenerPropietarioDeVideo(ObtenerPropietarioDeVideo value) {
+        return new JAXBElement<ObtenerPropietarioDeVideo>(_ObtenerPropietarioDeVideo_QNAME, ObtenerPropietarioDeVideo.class, null, value);
+    }
+
+    /**
+     * Create an instance of {@link JAXBElement }{@code <}{@link ObtenerValoracionDada }{@code >}}
+     * 
+     */
+    @XmlElementDecl(namespace = "http://Controladores.Logica/", name = "obtenerValoracionDada")
+    public JAXBElement<ObtenerValoracionDada> createObtenerValoracionDada(ObtenerValoracionDada value) {
+        return new JAXBElement<ObtenerValoracionDada>(_ObtenerValoracionDada_QNAME, ObtenerValoracionDada.class, null, value);
+    }
+
+    /**
+     * Create an instance of {@link JAXBElement }{@code <}{@link ModificarVideoResponse }{@code >}}
+     * 
+     */
+    @XmlElementDecl(namespace = "http://Controladores.Logica/", name = "modificarVideoResponse")
+    public JAXBElement<ModificarVideoResponse> createModificarVideoResponse(ModificarVideoResponse value) {
+        return new JAXBElement<ModificarVideoResponse>(_ModificarVideoResponse_QNAME, ModificarVideoResponse.class, null, value);
+    }
+
+    /**
+     * Create an instance of {@link JAXBElement }{@code <}{@link AltaComentarioResponse }{@code >}}
+     * 
+     */
+    @XmlElementDecl(namespace = "http://Controladores.Logica/", name = "altaComentarioResponse")
+    public JAXBElement<AltaComentarioResponse> createAltaComentarioResponse(AltaComentarioResponse value) {
+        return new JAXBElement<AltaComentarioResponse>(_AltaComentarioResponse_QNAME, AltaComentarioResponse.class, null, value);
+    }
+
+    /**
+     * Create an instance of {@link JAXBElement }{@code <}{@link BuscarPorCategoria }{@code >}}
+     * 
+     */
+    @XmlElementDecl(namespace = "http://Controladores.Logica/", name = "buscarPorCategoria")
+    public JAXBElement<BuscarPorCategoria> createBuscarPorCategoria(BuscarPorCategoria value) {
+        return new JAXBElement<BuscarPorCategoria>(_BuscarPorCategoria_QNAME, BuscarPorCategoria.class, null, value);
+    }
+
+    /**
+     * Create an instance of {@link JAXBElement }{@code <}{@link LiberarMemoriaListaDeReproduccion }{@code >}}
+     * 
+     */
+    @XmlElementDecl(namespace = "http://Controladores.Logica/", name = "liberarMemoriaListaDeReproduccion")
+    public JAXBElement<LiberarMemoriaListaDeReproduccion> createLiberarMemoriaListaDeReproduccion(LiberarMemoriaListaDeReproduccion value) {
+        return new JAXBElement<LiberarMemoriaListaDeReproduccion>(_LiberarMemoriaListaDeReproduccion_QNAME, LiberarMemoriaListaDeReproduccion.class, null, value);
+    }
+
+    /**
+     * Create an instance of {@link JAXBElement }{@code <}{@link IniciarSesionUsuario }{@code >}}
+     * 
+     */
+    @XmlElementDecl(namespace = "http://Controladores.Logica/", name = "iniciarSesionUsuario")
+    public JAXBElement<IniciarSesionUsuario> createIniciarSesionUsuario(IniciarSesionUsuario value) {
+        return new JAXBElement<IniciarSesionUsuario>(_IniciarSesionUsuario_QNAME, IniciarSesionUsuario.class, null, value);
+    }
+
+    /**
+     * Create an instance of {@link JAXBElement }{@code <}{@link ListarVideosDeUsuario }{@code >}}
+     * 
+     */
+    @XmlElementDecl(namespace = "http://Controladores.Logica/", name = "listarVideosDeUsuario")
+    public JAXBElement<ListarVideosDeUsuario> createListarVideosDeUsuario(ListarVideosDeUsuario value) {
+        return new JAXBElement<ListarVideosDeUsuario>(_ListarVideosDeUsuario_QNAME, ListarVideosDeUsuario.class, null, value);
+    }
+
+    /**
+     * Create an instance of {@link JAXBElement }{@code <}{@link SesionIniciadaResponse }{@code >}}
+     * 
+     */
+    @XmlElementDecl(namespace = "http://Controladores.Logica/", name = "sesionIniciadaResponse")
+    public JAXBElement<SesionIniciadaResponse> createSesionIniciadaResponse(SesionIniciadaResponse value) {
+        return new JAXBElement<SesionIniciadaResponse>(_SesionIniciadaResponse_QNAME, SesionIniciadaResponse.class, null, value);
+    }
+
+    /**
+     * Create an instance of {@link JAXBElement }{@code <}{@link LiberarMemoriaUsuario }{@code >}}
+     * 
+     */
+    @XmlElementDecl(namespace = "http://Controladores.Logica/", name = "liberarMemoriaUsuario")
+    public JAXBElement<LiberarMemoriaUsuario> createLiberarMemoriaUsuario(LiberarMemoriaUsuario value) {
+        return new JAXBElement<LiberarMemoriaUsuario>(_LiberarMemoriaUsuario_QNAME, LiberarMemoriaUsuario.class, null, value);
+    }
+
+    /**
+     * Create an instance of {@link JAXBElement }{@code <}{@link LiberarMemoriaUsuarioResponse }{@code >}}
+     * 
+     */
+    @XmlElementDecl(namespace = "http://Controladores.Logica/", name = "liberarMemoriaUsuarioResponse")
+    public JAXBElement<LiberarMemoriaUsuarioResponse> createLiberarMemoriaUsuarioResponse(LiberarMemoriaUsuarioResponse value) {
+        return new JAXBElement<LiberarMemoriaUsuarioResponse>(_LiberarMemoriaUsuarioResponse_QNAME, LiberarMemoriaUsuarioResponse.class, null, value);
+    }
+
+    /**
+     * Create an instance of {@link JAXBElement }{@code <}{@link EliminarImagenDeUsuario }{@code >}}
+     * 
+     */
+    @XmlElementDecl(namespace = "http://Controladores.Logica/", name = "eliminarImagenDeUsuario")
+    public JAXBElement<EliminarImagenDeUsuario> createEliminarImagenDeUsuario(EliminarImagenDeUsuario value) {
+        return new JAXBElement<EliminarImagenDeUsuario>(_EliminarImagenDeUsuario_QNAME, EliminarImagenDeUsuario.class, null, value);
+    }
+
+    /**
+     * Create an instance of {@link JAXBElement }{@code <}{@link ListarUsuarioSeguidoresResponse }{@code >}}
+     * 
+     */
+    @XmlElementDecl(namespace = "http://Controladores.Logica/", name = "listarUsuarioSeguidoresResponse")
+    public JAXBElement<ListarUsuarioSeguidoresResponse> createListarUsuarioSeguidoresResponse(ListarUsuarioSeguidoresResponse value) {
+        return new JAXBElement<ListarUsuarioSeguidoresResponse>(_ListarUsuarioSeguidoresResponse_QNAME, ListarUsuarioSeguidoresResponse.class, null, value);
+    }
+
+    /**
+     * Create an instance of {@link JAXBElement }{@code <}{@link CerrarSesion }{@code >}}
+     * 
+     */
+    @XmlElementDecl(namespace = "http://Controladores.Logica/", name = "cerrarSesion")
+    public JAXBElement<CerrarSesion> createCerrarSesion(CerrarSesion value) {
+        return new JAXBElement<CerrarSesion>(_CerrarSesion_QNAME, CerrarSesion.class, null, value);
+    }
+
+    /**
+     * Create an instance of {@link JAXBElement }{@code <}{@link ObtenerImagenDeUsuarioResponse }{@code >}}
+     * 
+     */
+    @XmlElementDecl(namespace = "http://Controladores.Logica/", name = "obtenerImagenDeUsuarioResponse")
+    public JAXBElement<ObtenerImagenDeUsuarioResponse> createObtenerImagenDeUsuarioResponse(ObtenerImagenDeUsuarioResponse value) {
+        return new JAXBElement<ObtenerImagenDeUsuarioResponse>(_ObtenerImagenDeUsuarioResponse_QNAME, ObtenerImagenDeUsuarioResponse.class, null, value);
+    }
+
+    /**
+     * Create an instance of {@link JAXBElement }{@code <}{@link AltaImagenDeUsuarioResponse }{@code >}}
+     * 
+     */
+    @XmlElementDecl(namespace = "http://Controladores.Logica/", name = "altaImagenDeUsuarioResponse")
+    public JAXBElement<AltaImagenDeUsuarioResponse> createAltaImagenDeUsuarioResponse(AltaImagenDeUsuarioResponse value) {
+        return new JAXBElement<AltaImagenDeUsuarioResponse>(_AltaImagenDeUsuarioResponse_QNAME, AltaImagenDeUsuarioResponse.class, null, value);
+    }
+
+    /**
+     * Create an instance of {@link JAXBElement }{@code <}{@link QuitarVideoDeListaDeReproduccion }{@code >}}
+     * 
+     */
+    @XmlElementDecl(namespace = "http://Controladores.Logica/", name = "quitarVideoDeListaDeReproduccion")
+    public JAXBElement<QuitarVideoDeListaDeReproduccion> createQuitarVideoDeListaDeReproduccion(QuitarVideoDeListaDeReproduccion value) {
+        return new JAXBElement<QuitarVideoDeListaDeReproduccion>(_QuitarVideoDeListaDeReproduccion_QNAME, QuitarVideoDeListaDeReproduccion.class, null, value);
+    }
+
+    /**
+     * Create an instance of {@link JAXBElement }{@code <}{@link ListarUsuariosResponse }{@code >}}
+     * 
+     */
+    @XmlElementDecl(namespace = "http://Controladores.Logica/", name = "listarUsuariosResponse")
+    public JAXBElement<ListarUsuariosResponse> createListarUsuariosResponse(ListarUsuariosResponse value) {
+        return new JAXBElement<ListarUsuariosResponse>(_ListarUsuariosResponse_QNAME, ListarUsuariosResponse.class, null, value);
+    }
+
+    /**
+     * Create an instance of {@link JAXBElement }{@code <}{@link ListarVideosDeListaDeReproduccionResponse }{@code >}}
+     * 
+     */
+    @XmlElementDecl(namespace = "http://Controladores.Logica/", name = "listarVideosDeListaDeReproduccionResponse")
+    public JAXBElement<ListarVideosDeListaDeReproduccionResponse> createListarVideosDeListaDeReproduccionResponse(ListarVideosDeListaDeReproduccionResponse value) {
+        return new JAXBElement<ListarVideosDeListaDeReproduccionResponse>(_ListarVideosDeListaDeReproduccionResponse_QNAME, ListarVideosDeListaDeReproduccionResponse.class, null, value);
+    }
+
+    /**
+     * Create an instance of {@link JAXBElement }{@code <}{@link ListarVideosDeListaDeReproduccion }{@code >}}
+     * 
+     */
+    @XmlElementDecl(namespace = "http://Controladores.Logica/", name = "listarVideosDeListaDeReproduccion")
+    public JAXBElement<ListarVideosDeListaDeReproduccion> createListarVideosDeListaDeReproduccion(ListarVideosDeListaDeReproduccion value) {
+        return new JAXBElement<ListarVideosDeListaDeReproduccion>(_ListarVideosDeListaDeReproduccion_QNAME, ListarVideosDeListaDeReproduccion.class, null, value);
+    }
+
+    /**
+     * Create an instance of {@link JAXBElement }{@code <}{@link AltaImagenDeUsuario }{@code >}}
+     * 
+     */
+    @XmlElementDecl(namespace = "http://Controladores.Logica/", name = "altaImagenDeUsuario")
+    public JAXBElement<AltaImagenDeUsuario> createAltaImagenDeUsuario(AltaImagenDeUsuario value) {
+        return new JAXBElement<AltaImagenDeUsuario>(_AltaImagenDeUsuario_QNAME, AltaImagenDeUsuario.class, null, value);
+    }
+
+    /**
+     * Create an instance of {@link JAXBElement }{@code <}{@link AltaListaDeReproduccionParticularResponse }{@code >}}
+     * 
+     */
+    @XmlElementDecl(namespace = "http://Controladores.Logica/", name = "altaListaDeReproduccionParticularResponse")
+    public JAXBElement<AltaListaDeReproduccionParticularResponse> createAltaListaDeReproduccionParticularResponse(AltaListaDeReproduccionParticularResponse value) {
+        return new JAXBElement<AltaListaDeReproduccionParticularResponse>(_AltaListaDeReproduccionParticularResponse_QNAME, AltaListaDeReproduccionParticularResponse.class, null, value);
+    }
+
+    /**
+     * Create an instance of {@link JAXBElement }{@code <}{@link BajaUsuario }{@code >}}
+     * 
+     */
+    @XmlElementDecl(namespace = "http://Controladores.Logica/", name = "bajaUsuario")
+    public JAXBElement<BajaUsuario> createBajaUsuario(BajaUsuario value) {
+        return new JAXBElement<BajaUsuario>(_BajaUsuario_QNAME, BajaUsuario.class, null, value);
+    }
+
+    /**
+     * Create an instance of {@link JAXBElement }{@code <}{@link ObtenerValoracionDadaResponse }{@code >}}
+     * 
+     */
+    @XmlElementDecl(namespace = "http://Controladores.Logica/", name = "obtenerValoracionDadaResponse")
+    public JAXBElement<ObtenerValoracionDadaResponse> createObtenerValoracionDadaResponse(ObtenerValoracionDadaResponse value) {
+        return new JAXBElement<ObtenerValoracionDadaResponse>(_ObtenerValoracionDadaResponse_QNAME, ObtenerValoracionDadaResponse.class, null, value);
+    }
+
+    /**
+     * Create an instance of {@link JAXBElement }{@code <}{@link ModificarListaDeReproduccionResponse }{@code >}}
+     * 
+     */
+    @XmlElementDecl(namespace = "http://Controladores.Logica/", name = "modificarListaDeReproduccionResponse")
+    public JAXBElement<ModificarListaDeReproduccionResponse> createModificarListaDeReproduccionResponse(ModificarListaDeReproduccionResponse value) {
+        return new JAXBElement<ModificarListaDeReproduccionResponse>(_ModificarListaDeReproduccionResponse_QNAME, ModificarListaDeReproduccionResponse.class, null, value);
+    }
+
+    /**
+     * Create an instance of {@link JAXBElement }{@code <}{@link BuscarPorCategoriaResponse }{@code >}}
+     * 
+     */
+    @XmlElementDecl(namespace = "http://Controladores.Logica/", name = "buscarPorCategoriaResponse")
+    public JAXBElement<BuscarPorCategoriaResponse> createBuscarPorCategoriaResponse(BuscarPorCategoriaResponse value) {
+        return new JAXBElement<BuscarPorCategoriaResponse>(_BuscarPorCategoriaResponse_QNAME, BuscarPorCategoriaResponse.class, null, value);
+    }
+
+    /**
+     * Create an instance of {@link JAXBElement }{@code <}{@link Buscar }{@code >}}
+     * 
+     */
+    @XmlElementDecl(namespace = "http://Controladores.Logica/", name = "buscar")
+    public JAXBElement<Buscar> createBuscar(Buscar value) {
+        return new JAXBElement<Buscar>(_Buscar_QNAME, Buscar.class, null, value);
+    }
+
+    /**
+     * Create an instance of {@link JAXBElement }{@code <}{@link ObtenerPropietarioDeCanalResponse }{@code >}}
+     * 
+     */
+    @XmlElementDecl(namespace = "http://Controladores.Logica/", name = "obtenerPropietarioDeCanalResponse")
+    public JAXBElement<ObtenerPropietarioDeCanalResponse> createObtenerPropietarioDeCanalResponse(ObtenerPropietarioDeCanalResponse value) {
+        return new JAXBElement<ObtenerPropietarioDeCanalResponse>(_ObtenerPropietarioDeCanalResponse_QNAME, ObtenerPropietarioDeCanalResponse.class, null, value);
+    }
+
+    /**
+     * Create an instance of {@link JAXBElement }{@code <}{@link ModificarImagenDeUsuarioResponse }{@code >}}
+     * 
+     */
+    @XmlElementDecl(namespace = "http://Controladores.Logica/", name = "modificarImagenDeUsuarioResponse")
+    public JAXBElement<ModificarImagenDeUsuarioResponse> createModificarImagenDeUsuarioResponse(ModificarImagenDeUsuarioResponse value) {
+        return new JAXBElement<ModificarImagenDeUsuarioResponse>(_ModificarImagenDeUsuarioResponse_QNAME, ModificarImagenDeUsuarioResponse.class, null, value);
+    }
+
+    /**
+     * Create an instance of {@link JAXBElement }{@code <}{@link ValorarVideo }{@code >}}
+     * 
+     */
+    @XmlElementDecl(namespace = "http://Controladores.Logica/", name = "valorarVideo")
+    public JAXBElement<ValorarVideo> createValorarVideo(ValorarVideo value) {
+        return new JAXBElement<ValorarVideo>(_ValorarVideo_QNAME, ValorarVideo.class, null, value);
+    }
+
+    /**
+     * Create an instance of {@link JAXBElement }{@code <}{@link ExisteEmailResponse }{@code >}}
+     * 
+     */
+    @XmlElementDecl(namespace = "http://Controladores.Logica/", name = "existeEmailResponse")
+    public JAXBElement<ExisteEmailResponse> createExisteEmailResponse(ExisteEmailResponse value) {
+        return new JAXBElement<ExisteEmailResponse>(_ExisteEmailResponse_QNAME, ExisteEmailResponse.class, null, value);
+    }
+
+    /**
+     * Create an instance of {@link JAXBElement }{@code <}{@link ListarListasDeReproduccionDeUsuario }{@code >}}
+     * 
+     */
+    @XmlElementDecl(namespace = "http://Controladores.Logica/", name = "listarListasDeReproduccionDeUsuario")
+    public JAXBElement<ListarListasDeReproduccionDeUsuario> createListarListasDeReproduccionDeUsuario(ListarListasDeReproduccionDeUsuario value) {
+        return new JAXBElement<ListarListasDeReproduccionDeUsuario>(_ListarListasDeReproduccionDeUsuario_QNAME, ListarListasDeReproduccionDeUsuario.class, null, value);
+    }
+
+    /**
+     * Create an instance of {@link JAXBElement }{@code <}{@link AltaListaDeReproduccionParticular }{@code >}}
+     * 
+     */
+    @XmlElementDecl(namespace = "http://Controladores.Logica/", name = "altaListaDeReproduccionParticular")
+    public JAXBElement<AltaListaDeReproduccionParticular> createAltaListaDeReproduccionParticular(AltaListaDeReproduccionParticular value) {
+        return new JAXBElement<AltaListaDeReproduccionParticular>(_AltaListaDeReproduccionParticular_QNAME, AltaListaDeReproduccionParticular.class, null, value);
+    }
+
+    /**
+     * Create an instance of {@link JAXBElement }{@code <}{@link ObtenerImagenDeUsuarioPorDefecto }{@code >}}
+     * 
+     */
+    @XmlElementDecl(namespace = "http://Controladores.Logica/", name = "obtenerImagenDeUsuarioPorDefecto")
+    public JAXBElement<ObtenerImagenDeUsuarioPorDefecto> createObtenerImagenDeUsuarioPorDefecto(ObtenerImagenDeUsuarioPorDefecto value) {
+        return new JAXBElement<ObtenerImagenDeUsuarioPorDefecto>(_ObtenerImagenDeUsuarioPorDefecto_QNAME, ObtenerImagenDeUsuarioPorDefecto.class, null, value);
+    }
+
+    /**
+     * Create an instance of {@link JAXBElement }{@code <}{@link ModificarListaDeReproduccion }{@code >}}
+     * 
+     */
+    @XmlElementDecl(namespace = "http://Controladores.Logica/", name = "modificarListaDeReproduccion")
+    public JAXBElement<ModificarListaDeReproduccion> createModificarListaDeReproduccion(ModificarListaDeReproduccion value) {
+        return new JAXBElement<ModificarListaDeReproduccion>(_ModificarListaDeReproduccion_QNAME, ModificarListaDeReproduccion.class, null, value);
+    }
+
+    /**
+     * Create an instance of {@link JAXBElement }{@code <}{@link ValidarNuevoVideoResponse }{@code >}}
+     * 
+     */
+    @XmlElementDecl(namespace = "http://Controladores.Logica/", name = "validarNuevoVideoResponse")
+    public JAXBElement<ValidarNuevoVideoResponse> createValidarNuevoVideoResponse(ValidarNuevoVideoResponse value) {
+        return new JAXBElement<ValidarNuevoVideoResponse>(_ValidarNuevoVideoResponse_QNAME, ValidarNuevoVideoResponse.class, null, value);
+    }
+
+    /**
+     * Create an instance of {@link JAXBElement }{@code <}{@link ListarUsuarioSeguidosResponse }{@code >}}
+     * 
+     */
+    @XmlElementDecl(namespace = "http://Controladores.Logica/", name = "listarUsuarioSeguidosResponse")
+    public JAXBElement<ListarUsuarioSeguidosResponse> createListarUsuarioSeguidosResponse(ListarUsuarioSeguidosResponse value) {
+        return new JAXBElement<ListarUsuarioSeguidosResponse>(_ListarUsuarioSeguidosResponse_QNAME, ListarUsuarioSeguidosResponse.class, null, value);
+    }
+
+    /**
+     * Create an instance of {@link JAXBElement }{@code <}{@link ListarUsuarioSeguidos }{@code >}}
+     * 
+     */
+    @XmlElementDecl(namespace = "http://Controladores.Logica/", name = "listarUsuarioSeguidos")
+    public JAXBElement<ListarUsuarioSeguidos> createListarUsuarioSeguidos(ListarUsuarioSeguidos value) {
+        return new JAXBElement<ListarUsuarioSeguidos>(_ListarUsuarioSeguidos_QNAME, ListarUsuarioSeguidos.class, null, value);
+    }
+
+    /**
+     * Create an instance of {@link JAXBElement }{@code <}{@link SeleccionarListaDeReproduccion }{@code >}}
+     * 
+     */
+    @XmlElementDecl(namespace = "http://Controladores.Logica/", name = "seleccionarListaDeReproduccion")
+    public JAXBElement<SeleccionarListaDeReproduccion> createSeleccionarListaDeReproduccion(SeleccionarListaDeReproduccion value) {
+        return new JAXBElement<SeleccionarListaDeReproduccion>(_SeleccionarListaDeReproduccion_QNAME, SeleccionarListaDeReproduccion.class, null, value);
+    }
+
+    /**
+     * Create an instance of {@link JAXBElement }{@code <}{@link AltaComentario }{@code >}}
+     * 
+     */
+    @XmlElementDecl(namespace = "http://Controladores.Logica/", name = "altaComentario")
+    public JAXBElement<AltaComentario> createAltaComentario(AltaComentario value) {
+        return new JAXBElement<AltaComentario>(_AltaComentario_QNAME, AltaComentario.class, null, value);
+    }
+
+    /**
+     * Create an instance of {@link JAXBElement }{@code <}{@link AgregarVideoAListaDeReproduccionResponse }{@code >}}
+     * 
+     */
+    @XmlElementDecl(namespace = "http://Controladores.Logica/", name = "agregarVideoAListaDeReproduccionResponse")
+    public JAXBElement<AgregarVideoAListaDeReproduccionResponse> createAgregarVideoAListaDeReproduccionResponse(AgregarVideoAListaDeReproduccionResponse value) {
+        return new JAXBElement<AgregarVideoAListaDeReproduccionResponse>(_AgregarVideoAListaDeReproduccionResponse_QNAME, AgregarVideoAListaDeReproduccionResponse.class, null, value);
+    }
+
+    /**
+     * Create an instance of {@link JAXBElement }{@code <}{@link ModificarImagenDeUsuario }{@code >}}
+     * 
+     */
+    @XmlElementDecl(namespace = "http://Controladores.Logica/", name = "modificarImagenDeUsuario")
+    public JAXBElement<ModificarImagenDeUsuario> createModificarImagenDeUsuario(ModificarImagenDeUsuario value) {
+        return new JAXBElement<ModificarImagenDeUsuario>(_ModificarImagenDeUsuario_QNAME, ModificarImagenDeUsuario.class, null, value);
+    }
+
+    /**
+     * Create an instance of {@link JAXBElement }{@code <}{@link ListarCategorias }{@code >}}
+     * 
+     */
+    @XmlElementDecl(namespace = "http://Controladores.Logica/", name = "listarCategorias")
+    public JAXBElement<ListarCategorias> createListarCategorias(ListarCategorias value) {
+        return new JAXBElement<ListarCategorias>(_ListarCategorias_QNAME, ListarCategorias.class, null, value);
+    }
+
+    /**
+     * Create an instance of {@link JAXBElement }{@code <}{@link ModificarUsuarioYCanalResponse }{@code >}}
+     * 
+     */
+    @XmlElementDecl(namespace = "http://Controladores.Logica/", name = "modificarUsuarioYCanalResponse")
+    public JAXBElement<ModificarUsuarioYCanalResponse> createModificarUsuarioYCanalResponse(ModificarUsuarioYCanalResponse value) {
+        return new JAXBElement<ModificarUsuarioYCanalResponse>(_ModificarUsuarioYCanalResponse_QNAME, ModificarUsuarioYCanalResponse.class, null, value);
+    }
+
+    /**
+     * Create an instance of {@link JAXBElement }{@code <}{@link ModificarUsuarioYCanal }{@code >}}
+     * 
+     */
+    @XmlElementDecl(namespace = "http://Controladores.Logica/", name = "modificarUsuarioYCanal")
+    public JAXBElement<ModificarUsuarioYCanal> createModificarUsuarioYCanal(ModificarUsuarioYCanal value) {
+        return new JAXBElement<ModificarUsuarioYCanal>(_ModificarUsuarioYCanal_QNAME, ModificarUsuarioYCanal.class, null, value);
+    }
+
+    /**
+     * Create an instance of {@link JAXBElement }{@code <}{@link ListarListasDeReproduccionDeUsuarioResponse }{@code >}}
+     * 
+     */
+    @XmlElementDecl(namespace = "http://Controladores.Logica/", name = "listarListasDeReproduccionDeUsuarioResponse")
+    public JAXBElement<ListarListasDeReproduccionDeUsuarioResponse> createListarListasDeReproduccionDeUsuarioResponse(ListarListasDeReproduccionDeUsuarioResponse value) {
+        return new JAXBElement<ListarListasDeReproduccionDeUsuarioResponse>(_ListarListasDeReproduccionDeUsuarioResponse_QNAME, ListarListasDeReproduccionDeUsuarioResponse.class, null, value);
+    }
+
+    /**
+     * Create an instance of {@link JAXBElement }{@code <}{@link ObtenerPropietarioDeVideoResponse }{@code >}}
+     * 
+     */
+    @XmlElementDecl(namespace = "http://Controladores.Logica/", name = "obtenerPropietarioDeVideoResponse")
+    public JAXBElement<ObtenerPropietarioDeVideoResponse> createObtenerPropietarioDeVideoResponse(ObtenerPropietarioDeVideoResponse value) {
+        return new JAXBElement<ObtenerPropietarioDeVideoResponse>(_ObtenerPropietarioDeVideoResponse_QNAME, ObtenerPropietarioDeVideoResponse.class, null, value);
+    }
+
+    /**
+     * Create an instance of {@link JAXBElement }{@code <}{@link ExisteNicknameResponse }{@code >}}
+     * 
+     */
+    @XmlElementDecl(namespace = "http://Controladores.Logica/", name = "existeNicknameResponse")
+    public JAXBElement<ExisteNicknameResponse> createExisteNicknameResponse(ExisteNicknameResponse value) {
+        return new JAXBElement<ExisteNicknameResponse>(_ExisteNicknameResponse_QNAME, ExisteNicknameResponse.class, null, value);
+    }
+
+    /**
+     * Create an instance of {@link JAXBElement }{@code <}{@link ObtenerImagenDeUsuarioPorDefectoResponse }{@code >}}
+     * 
+     */
+    @XmlElementDecl(namespace = "http://Controladores.Logica/", name = "obtenerImagenDeUsuarioPorDefectoResponse")
+    public JAXBElement<ObtenerImagenDeUsuarioPorDefectoResponse> createObtenerImagenDeUsuarioPorDefectoResponse(ObtenerImagenDeUsuarioPorDefectoResponse value) {
+        return new JAXBElement<ObtenerImagenDeUsuarioPorDefectoResponse>(_ObtenerImagenDeUsuarioPorDefectoResponse_QNAME, ObtenerImagenDeUsuarioPorDefectoResponse.class, null, value);
+    }
+
+    /**
+     * Create an instance of {@link JAXBElement }{@code <}{@link ValidarNuevoVideo }{@code >}}
+     * 
+     */
+    @XmlElementDecl(namespace = "http://Controladores.Logica/", name = "validarNuevoVideo")
+    public JAXBElement<ValidarNuevoVideo> createValidarNuevoVideo(ValidarNuevoVideo value) {
+        return new JAXBElement<ValidarNuevoVideo>(_ValidarNuevoVideo_QNAME, ValidarNuevoVideo.class, null, value);
+    }
+
+    /**
+     * Create an instance of {@link JAXBElement }{@code <}{@link CerrarSesionResponse }{@code >}}
+     * 
+     */
+    @XmlElementDecl(namespace = "http://Controladores.Logica/", name = "cerrarSesionResponse")
+    public JAXBElement<CerrarSesionResponse> createCerrarSesionResponse(CerrarSesionResponse value) {
+        return new JAXBElement<CerrarSesionResponse>(_CerrarSesionResponse_QNAME, CerrarSesionResponse.class, null, value);
+    }
+
+    /**
+     * Create an instance of {@link JAXBElement }{@code <}{@link ObtenerPropietarioDeListaDeReproduccion }{@code >}}
+     * 
+     */
+    @XmlElementDecl(namespace = "http://Controladores.Logica/", name = "obtenerPropietarioDeListaDeReproduccion")
+    public JAXBElement<ObtenerPropietarioDeListaDeReproduccion> createObtenerPropietarioDeListaDeReproduccion(ObtenerPropietarioDeListaDeReproduccion value) {
+        return new JAXBElement<ObtenerPropietarioDeListaDeReproduccion>(_ObtenerPropietarioDeListaDeReproduccion_QNAME, ObtenerPropietarioDeListaDeReproduccion.class, null, value);
+    }
+
+    /**
+     * Create an instance of {@link JAXBElement }{@code <}{@link ObtenerUsuarioActual }{@code >}}
+     * 
+     */
+    @XmlElementDecl(namespace = "http://Controladores.Logica/", name = "obtenerUsuarioActual")
+    public JAXBElement<ObtenerUsuarioActual> createObtenerUsuarioActual(ObtenerUsuarioActual value) {
+        return new JAXBElement<ObtenerUsuarioActual>(_ObtenerUsuarioActual_QNAME, ObtenerUsuarioActual.class, null, value);
+    }
+
+    /**
+     * Create an instance of {@link JAXBElement }{@code <}{@link ObtenerPropietarioDeCanal }{@code >}}
+     * 
+     */
+    @XmlElementDecl(namespace = "http://Controladores.Logica/", name = "obtenerPropietarioDeCanal")
+    public JAXBElement<ObtenerPropietarioDeCanal> createObtenerPropietarioDeCanal(ObtenerPropietarioDeCanal value) {
+        return new JAXBElement<ObtenerPropietarioDeCanal>(_ObtenerPropietarioDeCanal_QNAME, ObtenerPropietarioDeCanal.class, null, value);
+    }
+
+    /**
+     * Create an instance of {@link JAXBElement }{@code <}{@link ObtenerCanalDeUsuario }{@code >}}
+     * 
+     */
+    @XmlElementDecl(namespace = "http://Controladores.Logica/", name = "obtenerCanalDeUsuario")
+    public JAXBElement<ObtenerCanalDeUsuario> createObtenerCanalDeUsuario(ObtenerCanalDeUsuario value) {
+        return new JAXBElement<ObtenerCanalDeUsuario>(_ObtenerCanalDeUsuario_QNAME, ObtenerCanalDeUsuario.class, null, value);
+    }
+
+    /**
+     * Create an instance of {@link JAXBElement }{@code <}{@link SeleccionarUsuarioResponse }{@code >}}
+     * 
+     */
+    @XmlElementDecl(namespace = "http://Controladores.Logica/", name = "seleccionarUsuarioResponse")
+    public JAXBElement<SeleccionarUsuarioResponse> createSeleccionarUsuarioResponse(SeleccionarUsuarioResponse value) {
+        return new JAXBElement<SeleccionarUsuarioResponse>(_SeleccionarUsuarioResponse_QNAME, SeleccionarUsuarioResponse.class, null, value);
+    }
+
+    /**
+     * Create an instance of {@link JAXBElement }{@code <}{@link ExisteEmail }{@code >}}
+     * 
+     */
+    @XmlElementDecl(namespace = "http://Controladores.Logica/", name = "existeEmail")
+    public JAXBElement<ExisteEmail> createExisteEmail(ExisteEmail value) {
+        return new JAXBElement<ExisteEmail>(_ExisteEmail_QNAME, ExisteEmail.class, null, value);
+    }
+
+    /**
+     * Create an instance of {@link JAXBElement }{@code <}{@link AltaUsuarioCanalResponse }{@code >}}
+     * 
+     */
+    @XmlElementDecl(namespace = "http://Controladores.Logica/", name = "altaUsuarioCanalResponse")
+    public JAXBElement<AltaUsuarioCanalResponse> createAltaUsuarioCanalResponse(AltaUsuarioCanalResponse value) {
+        return new JAXBElement<AltaUsuarioCanalResponse>(_AltaUsuarioCanalResponse_QNAME, AltaUsuarioCanalResponse.class, null, value);
+    }
+
+    /**
+     * Create an instance of {@link JAXBElement }{@code <}{@link ElUsuarioSeleccionadoEsElUsuarioActualResponse }{@code >}}
+     * 
+     */
+    @XmlElementDecl(namespace = "http://Controladores.Logica/", name = "elUsuarioSeleccionadoEsElUsuarioActualResponse")
+    public JAXBElement<ElUsuarioSeleccionadoEsElUsuarioActualResponse> createElUsuarioSeleccionadoEsElUsuarioActualResponse(ElUsuarioSeleccionadoEsElUsuarioActualResponse value) {
+        return new JAXBElement<ElUsuarioSeleccionadoEsElUsuarioActualResponse>(_ElUsuarioSeleccionadoEsElUsuarioActualResponse_QNAME, ElUsuarioSeleccionadoEsElUsuarioActualResponse.class, null, value);
+    }
+
+    /**
+     * Create an instance of {@link JAXBElement }{@code <}{@link ListarVideosDeUsuarioResponse }{@code >}}
+     * 
+     */
+    @XmlElementDecl(namespace = "http://Controladores.Logica/", name = "listarVideosDeUsuarioResponse")
+    public JAXBElement<ListarVideosDeUsuarioResponse> createListarVideosDeUsuarioResponse(ListarVideosDeUsuarioResponse value) {
+        return new JAXBElement<ListarVideosDeUsuarioResponse>(_ListarVideosDeUsuarioResponse_QNAME, ListarVideosDeUsuarioResponse.class, null, value);
+    }
+
+    /**
+     * Create an instance of {@link JAXBElement }{@code <}{@link ListarComentariosDeVideo }{@code >}}
+     * 
+     */
+    @XmlElementDecl(namespace = "http://Controladores.Logica/", name = "listarComentariosDeVideo")
+    public JAXBElement<ListarComentariosDeVideo> createListarComentariosDeVideo(ListarComentariosDeVideo value) {
+        return new JAXBElement<ListarComentariosDeVideo>(_ListarComentariosDeVideo_QNAME, ListarComentariosDeVideo.class, null, value);
+    }
+
+    /**
+     * Create an instance of {@link JAXBElement }{@code <}{@link ListarComentariosDeVideoResponse }{@code >}}
+     * 
+     */
+    @XmlElementDecl(namespace = "http://Controladores.Logica/", name = "listarComentariosDeVideoResponse")
+    public JAXBElement<ListarComentariosDeVideoResponse> createListarComentariosDeVideoResponse(ListarComentariosDeVideoResponse value) {
+        return new JAXBElement<ListarComentariosDeVideoResponse>(_ListarComentariosDeVideoResponse_QNAME, ListarComentariosDeVideoResponse.class, null, value);
+    }
+
+    /**
+     * Create an instance of {@link JAXBElement }{@code <}{@link ObtenerImagenDeUsuario }{@code >}}
+     * 
+     */
+    @XmlElementDecl(namespace = "http://Controladores.Logica/", name = "obtenerImagenDeUsuario")
+    public JAXBElement<ObtenerImagenDeUsuario> createObtenerImagenDeUsuario(ObtenerImagenDeUsuario value) {
+        return new JAXBElement<ObtenerImagenDeUsuario>(_ObtenerImagenDeUsuario_QNAME, ObtenerImagenDeUsuario.class, null, value);
+    }
+
+    /**
+     * Create an instance of {@link JAXBElement }{@code <}{@link BuscarResponse }{@code >}}
+     * 
+     */
+    @XmlElementDecl(namespace = "http://Controladores.Logica/", name = "buscarResponse")
+    public JAXBElement<BuscarResponse> createBuscarResponse(BuscarResponse value) {
+        return new JAXBElement<BuscarResponse>(_BuscarResponse_QNAME, BuscarResponse.class, null, value);
+    }
+
+    /**
+     * Create an instance of {@link JAXBElement }{@code <}{@link ExisteImagenDeUsuario }{@code >}}
+     * 
+     */
+    @XmlElementDecl(namespace = "http://Controladores.Logica/", name = "existeImagenDeUsuario")
+    public JAXBElement<ExisteImagenDeUsuario> createExisteImagenDeUsuario(ExisteImagenDeUsuario value) {
+        return new JAXBElement<ExisteImagenDeUsuario>(_ExisteImagenDeUsuario_QNAME, ExisteImagenDeUsuario.class, null, value);
+    }
+
+    /**
+     * Create an instance of {@link JAXBElement }{@code <}{@link ObtenerValoracionesDeVideo }{@code >}}
+     * 
+     */
+    @XmlElementDecl(namespace = "http://Controladores.Logica/", name = "obtenerValoracionesDeVideo")
+    public JAXBElement<ObtenerValoracionesDeVideo> createObtenerValoracionesDeVideo(ObtenerValoracionesDeVideo value) {
+        return new JAXBElement<ObtenerValoracionesDeVideo>(_ObtenerValoracionesDeVideo_QNAME, ObtenerValoracionesDeVideo.class, null, value);
+    }
+
+    /**
+     * Create an instance of {@link JAXBElement }{@code <}{@link ListarCategoriasResponse }{@code >}}
+     * 
+     */
+    @XmlElementDecl(namespace = "http://Controladores.Logica/", name = "listarCategoriasResponse")
+    public JAXBElement<ListarCategoriasResponse> createListarCategoriasResponse(ListarCategoriasResponse value) {
+        return new JAXBElement<ListarCategoriasResponse>(_ListarCategoriasResponse_QNAME, ListarCategoriasResponse.class, null, value);
+    }
+
+    /**
+     * Create an instance of {@link JAXBElement }{@code <}{@link SeleccionarVideo }{@code >}}
+     * 
+     */
+    @XmlElementDecl(namespace = "http://Controladores.Logica/", name = "seleccionarVideo")
+    public JAXBElement<SeleccionarVideo> createSeleccionarVideo(SeleccionarVideo value) {
+        return new JAXBElement<SeleccionarVideo>(_SeleccionarVideo_QNAME, SeleccionarVideo.class, null, value);
+    }
+
+    /**
+     * Create an instance of {@link JAXBElement }{@code <}{@link SeleccionarVideoResponse }{@code >}}
+     * 
+     */
+    @XmlElementDecl(namespace = "http://Controladores.Logica/", name = "seleccionarVideoResponse")
+    public JAXBElement<SeleccionarVideoResponse> createSeleccionarVideoResponse(SeleccionarVideoResponse value) {
+        return new JAXBElement<SeleccionarVideoResponse>(_SeleccionarVideoResponse_QNAME, SeleccionarVideoResponse.class, null, value);
+    }
+
+    /**
+     * Create an instance of {@link JAXBElement }{@code <}{@link ValidarNuevaListaParticularResponse }{@code >}}
+     * 
+     */
+    @XmlElementDecl(namespace = "http://Controladores.Logica/", name = "validarNuevaListaParticularResponse")
+    public JAXBElement<ValidarNuevaListaParticularResponse> createValidarNuevaListaParticularResponse(ValidarNuevaListaParticularResponse value) {
+        return new JAXBElement<ValidarNuevaListaParticularResponse>(_ValidarNuevaListaParticularResponse_QNAME, ValidarNuevaListaParticularResponse.class, null, value);
+    }
+
+    /**
+     * Create an instance of {@link JAXBElement }{@code <}{@link AltaUsuarioCanal }{@code >}}
+     * 
+     */
+    @XmlElementDecl(namespace = "http://Controladores.Logica/", name = "altaUsuarioCanal")
+    public JAXBElement<AltaUsuarioCanal> createAltaUsuarioCanal(AltaUsuarioCanal value) {
+        return new JAXBElement<AltaUsuarioCanal>(_AltaUsuarioCanal_QNAME, AltaUsuarioCanal.class, null, value);
+    }
+
+    /**
+     * Create an instance of {@link JAXBElement }{@code <}{@link ValorarVideoResponse }{@code >}}
+     * 
+     */
+    @XmlElementDecl(namespace = "http://Controladores.Logica/", name = "valorarVideoResponse")
+    public JAXBElement<ValorarVideoResponse> createValorarVideoResponse(ValorarVideoResponse value) {
+        return new JAXBElement<ValorarVideoResponse>(_ValorarVideoResponse_QNAME, ValorarVideoResponse.class, null, value);
+    }
+
+    /**
+     * Create an instance of {@link JAXBElement }{@code <}{@link AgregarVideoAListaDeReproduccion }{@code >}}
+     * 
+     */
+    @XmlElementDecl(namespace = "http://Controladores.Logica/", name = "agregarVideoAListaDeReproduccion")
+    public JAXBElement<AgregarVideoAListaDeReproduccion> createAgregarVideoAListaDeReproduccion(AgregarVideoAListaDeReproduccion value) {
+        return new JAXBElement<AgregarVideoAListaDeReproduccion>(_AgregarVideoAListaDeReproduccion_QNAME, AgregarVideoAListaDeReproduccion.class, null, value);
+    }
+
+    /**
+     * Create an instance of {@link JAXBElement }{@code <}{@link AltaSubComentarioResponse }{@code >}}
+     * 
+     */
+    @XmlElementDecl(namespace = "http://Controladores.Logica/", name = "altaSubComentarioResponse")
+    public JAXBElement<AltaSubComentarioResponse> createAltaSubComentarioResponse(AltaSubComentarioResponse value) {
+        return new JAXBElement<AltaSubComentarioResponse>(_AltaSubComentarioResponse_QNAME, AltaSubComentarioResponse.class, null, value);
+    }
+
+    /**
+     * Create an instance of {@link JAXBElement }{@code <}{@link AltaSubComentario }{@code >}}
+     * 
+     */
+    @XmlElementDecl(namespace = "http://Controladores.Logica/", name = "altaSubComentario")
+    public JAXBElement<AltaSubComentario> createAltaSubComentario(AltaSubComentario value) {
+        return new JAXBElement<AltaSubComentario>(_AltaSubComentario_QNAME, AltaSubComentario.class, null, value);
+    }
+
+    /**
+     * Create an instance of {@link JAXBElement }{@code <}{@link ModificarVideo }{@code >}}
+     * 
+     */
+    @XmlElementDecl(namespace = "http://Controladores.Logica/", name = "modificarVideo")
+    public JAXBElement<ModificarVideo> createModificarVideo(ModificarVideo value) {
+        return new JAXBElement<ModificarVideo>(_ModificarVideo_QNAME, ModificarVideo.class, null, value);
+    }
+
+    /**
+     * Create an instance of {@link JAXBElement }{@code <}{@link ObtenerCanalDeUsuarioResponse }{@code >}}
+     * 
+     */
+    @XmlElementDecl(namespace = "http://Controladores.Logica/", name = "obtenerCanalDeUsuarioResponse")
+    public JAXBElement<ObtenerCanalDeUsuarioResponse> createObtenerCanalDeUsuarioResponse(ObtenerCanalDeUsuarioResponse value) {
+        return new JAXBElement<ObtenerCanalDeUsuarioResponse>(_ObtenerCanalDeUsuarioResponse_QNAME, ObtenerCanalDeUsuarioResponse.class, null, value);
+    }
+
+    /**
+     * Create an instance of {@link JAXBElement }{@code <}{@link QuitarVideoDeListaDeReproduccionResponse }{@code >}}
+     * 
+     */
+    @XmlElementDecl(namespace = "http://Controladores.Logica/", name = "quitarVideoDeListaDeReproduccionResponse")
+    public JAXBElement<QuitarVideoDeListaDeReproduccionResponse> createQuitarVideoDeListaDeReproduccionResponse(QuitarVideoDeListaDeReproduccionResponse value) {
+        return new JAXBElement<QuitarVideoDeListaDeReproduccionResponse>(_QuitarVideoDeListaDeReproduccionResponse_QNAME, QuitarVideoDeListaDeReproduccionResponse.class, null, value);
+    }
+
+    /**
+     * Create an instance of {@link JAXBElement }{@code <}{@link LiberarMemoriaListaDeReproduccionResponse }{@code >}}
+     * 
+     */
+    @XmlElementDecl(namespace = "http://Controladores.Logica/", name = "liberarMemoriaListaDeReproduccionResponse")
+    public JAXBElement<LiberarMemoriaListaDeReproduccionResponse> createLiberarMemoriaListaDeReproduccionResponse(LiberarMemoriaListaDeReproduccionResponse value) {
+        return new JAXBElement<LiberarMemoriaListaDeReproduccionResponse>(_LiberarMemoriaListaDeReproduccionResponse_QNAME, LiberarMemoriaListaDeReproduccionResponse.class, null, value);
+    }
+
+    /**
+     * Create an instance of {@link JAXBElement }{@code <}{@link AltaVideo }{@code >}}
+     * 
+     */
+    @XmlElementDecl(namespace = "http://Controladores.Logica/", name = "altaVideo")
+    public JAXBElement<AltaVideo> createAltaVideo(AltaVideo value) {
+        return new JAXBElement<AltaVideo>(_AltaVideo_QNAME, AltaVideo.class, null, value);
+    }
+
+    /**
+     * Create an instance of {@link JAXBElement }{@code <}{@link AltaVideoResponse }{@code >}}
+     * 
+     */
+    @XmlElementDecl(namespace = "http://Controladores.Logica/", name = "altaVideoResponse")
+    public JAXBElement<AltaVideoResponse> createAltaVideoResponse(AltaVideoResponse value) {
+        return new JAXBElement<AltaVideoResponse>(_AltaVideoResponse_QNAME, AltaVideoResponse.class, null, value);
+    }
+
+    /**
+     * Create an instance of {@link JAXBElement }{@code <}{@link SeguirUsuario }{@code >}}
+     * 
+     */
+    @XmlElementDecl(namespace = "http://Controladores.Logica/", name = "seguirUsuario")
+    public JAXBElement<SeguirUsuario> createSeguirUsuario(SeguirUsuario value) {
+        return new JAXBElement<SeguirUsuario>(_SeguirUsuario_QNAME, SeguirUsuario.class, null, value);
+    }
+
+    /**
+     * Create an instance of {@link JAXBElement }{@code <}{@link SeleccionarListaDeReproduccionResponse }{@code >}}
+     * 
+     */
+    @XmlElementDecl(namespace = "http://Controladores.Logica/", name = "seleccionarListaDeReproduccionResponse")
+    public JAXBElement<SeleccionarListaDeReproduccionResponse> createSeleccionarListaDeReproduccionResponse(SeleccionarListaDeReproduccionResponse value) {
+        return new JAXBElement<SeleccionarListaDeReproduccionResponse>(_SeleccionarListaDeReproduccionResponse_QNAME, SeleccionarListaDeReproduccionResponse.class, null, value);
+    }
+
+    /**
+     * Create an instance of {@link JAXBElement }{@code <}{@link LiberarMemoriaVideo }{@code >}}
+     * 
+     */
+    @XmlElementDecl(namespace = "http://Controladores.Logica/", name = "liberarMemoriaVideo")
+    public JAXBElement<LiberarMemoriaVideo> createLiberarMemoriaVideo(LiberarMemoriaVideo value) {
+        return new JAXBElement<LiberarMemoriaVideo>(_LiberarMemoriaVideo_QNAME, LiberarMemoriaVideo.class, null, value);
+    }
+
+    /**
+     * Create an instance of {@link JAXBElement }{@code <}{@link SeguirUsuarioResponse }{@code >}}
+     * 
+     */
+    @XmlElementDecl(namespace = "http://Controladores.Logica/", name = "seguirUsuarioResponse")
+    public JAXBElement<SeguirUsuarioResponse> createSeguirUsuarioResponse(SeguirUsuarioResponse value) {
+        return new JAXBElement<SeguirUsuarioResponse>(_SeguirUsuarioResponse_QNAME, SeguirUsuarioResponse.class, null, value);
+    }
+
+    /**
+     * Create an instance of {@link JAXBElement }{@code <}{@link IniciarSesionUsuarioResponse }{@code >}}
+     * 
+     */
+    @XmlElementDecl(namespace = "http://Controladores.Logica/", name = "iniciarSesionUsuarioResponse")
+    public JAXBElement<IniciarSesionUsuarioResponse> createIniciarSesionUsuarioResponse(IniciarSesionUsuarioResponse value) {
+        return new JAXBElement<IniciarSesionUsuarioResponse>(_IniciarSesionUsuarioResponse_QNAME, IniciarSesionUsuarioResponse.class, null, value);
+    }
+
+    /**
+     * Create an instance of {@link JAXBElement }{@code <}{@link ListarUsuarios }{@code >}}
+     * 
+     */
+    @XmlElementDecl(namespace = "http://Controladores.Logica/", name = "listarUsuarios")
+    public JAXBElement<ListarUsuarios> createListarUsuarios(ListarUsuarios value) {
+        return new JAXBElement<ListarUsuarios>(_ListarUsuarios_QNAME, ListarUsuarios.class, null, value);
+    }
+
+    /**
+     * Create an instance of {@link JAXBElement }{@code <}{@link SesionIniciada }{@code >}}
+     * 
+     */
+    @XmlElementDecl(namespace = "http://Controladores.Logica/", name = "sesionIniciada")
+    public JAXBElement<SesionIniciada> createSesionIniciada(SesionIniciada value) {
+        return new JAXBElement<SesionIniciada>(_SesionIniciada_QNAME, SesionIniciada.class, null, value);
+    }
+
+    /**
+     * Create an instance of {@link JAXBElement }{@code <}{@link ElUsuarioSeleccionadoEsElUsuarioActual }{@code >}}
+     * 
+     */
+    @XmlElementDecl(namespace = "http://Controladores.Logica/", name = "elUsuarioSeleccionadoEsElUsuarioActual")
+    public JAXBElement<ElUsuarioSeleccionadoEsElUsuarioActual> createElUsuarioSeleccionadoEsElUsuarioActual(ElUsuarioSeleccionadoEsElUsuarioActual value) {
+        return new JAXBElement<ElUsuarioSeleccionadoEsElUsuarioActual>(_ElUsuarioSeleccionadoEsElUsuarioActual_QNAME, ElUsuarioSeleccionadoEsElUsuarioActual.class, null, value);
+    }
+
+    /**
+     * Create an instance of {@link JAXBElement }{@code <}{@link ObtenerUsuarioActualResponse }{@code >}}
+     * 
+     */
+    @XmlElementDecl(namespace = "http://Controladores.Logica/", name = "obtenerUsuarioActualResponse")
+    public JAXBElement<ObtenerUsuarioActualResponse> createObtenerUsuarioActualResponse(ObtenerUsuarioActualResponse value) {
+        return new JAXBElement<ObtenerUsuarioActualResponse>(_ObtenerUsuarioActualResponse_QNAME, ObtenerUsuarioActualResponse.class, null, value);
+    }
+
+    /**
+     * Create an instance of {@link JAXBElement }{@code <}{@link ObtenerPropietarioDeListaDeReproduccionResponse }{@code >}}
+     * 
+     */
+    @XmlElementDecl(namespace = "http://Controladores.Logica/", name = "obtenerPropietarioDeListaDeReproduccionResponse")
+    public JAXBElement<ObtenerPropietarioDeListaDeReproduccionResponse> createObtenerPropietarioDeListaDeReproduccionResponse(ObtenerPropietarioDeListaDeReproduccionResponse value) {
+        return new JAXBElement<ObtenerPropietarioDeListaDeReproduccionResponse>(_ObtenerPropietarioDeListaDeReproduccionResponse_QNAME, ObtenerPropietarioDeListaDeReproduccionResponse.class, null, value);
+    }
+
+    /**
+     * Create an instance of {@link JAXBElement }{@code <}{@link ListarUsuarioSeguidores }{@code >}}
+     * 
+     */
+    @XmlElementDecl(namespace = "http://Controladores.Logica/", name = "listarUsuarioSeguidores")
+    public JAXBElement<ListarUsuarioSeguidores> createListarUsuarioSeguidores(ListarUsuarioSeguidores value) {
+        return new JAXBElement<ListarUsuarioSeguidores>(_ListarUsuarioSeguidores_QNAME, ListarUsuarioSeguidores.class, null, value);
+    }
+
+    /**
+     * Create an instance of {@link JAXBElement }{@code <}{@link ExisteImagenDeUsuarioResponse }{@code >}}
+     * 
+     */
+    @XmlElementDecl(namespace = "http://Controladores.Logica/", name = "existeImagenDeUsuarioResponse")
+    public JAXBElement<ExisteImagenDeUsuarioResponse> createExisteImagenDeUsuarioResponse(ExisteImagenDeUsuarioResponse value) {
+        return new JAXBElement<ExisteImagenDeUsuarioResponse>(_ExisteImagenDeUsuarioResponse_QNAME, ExisteImagenDeUsuarioResponse.class, null, value);
+    }
+
+    /**
+     * Create an instance of {@link JAXBElement }{@code <}{@link SeleccionarUsuario }{@code >}}
+     * 
+     */
+    @XmlElementDecl(namespace = "http://Controladores.Logica/", name = "seleccionarUsuario")
+    public JAXBElement<SeleccionarUsuario> createSeleccionarUsuario(SeleccionarUsuario value) {
+        return new JAXBElement<SeleccionarUsuario>(_SeleccionarUsuario_QNAME, SeleccionarUsuario.class, null, value);
+    }
+
+    /**
+     * Create an instance of {@link JAXBElement }{@code <}{@link ObtenerValoracionesDeVideoResponse }{@code >}}
+     * 
+     */
+    @XmlElementDecl(namespace = "http://Controladores.Logica/", name = "obtenerValoracionesDeVideoResponse")
+    public JAXBElement<ObtenerValoracionesDeVideoResponse> createObtenerValoracionesDeVideoResponse(ObtenerValoracionesDeVideoResponse value) {
+        return new JAXBElement<ObtenerValoracionesDeVideoResponse>(_ObtenerValoracionesDeVideoResponse_QNAME, ObtenerValoracionesDeVideoResponse.class, null, value);
+    }
+
+    /**
+     * Create an instance of {@link JAXBElement }{@code <}{@link EliminarImagenDeUsuarioResponse }{@code >}}
+     * 
+     */
+    @XmlElementDecl(namespace = "http://Controladores.Logica/", name = "eliminarImagenDeUsuarioResponse")
+    public JAXBElement<EliminarImagenDeUsuarioResponse> createEliminarImagenDeUsuarioResponse(EliminarImagenDeUsuarioResponse value) {
+        return new JAXBElement<EliminarImagenDeUsuarioResponse>(_EliminarImagenDeUsuarioResponse_QNAME, EliminarImagenDeUsuarioResponse.class, null, value);
+    }
+
+    /**
+     * Create an instance of {@link JAXBElement }{@code <}{@link LiberarMemoriaVideoResponse }{@code >}}
+     * 
+     */
+    @XmlElementDecl(namespace = "http://Controladores.Logica/", name = "liberarMemoriaVideoResponse")
+    public JAXBElement<LiberarMemoriaVideoResponse> createLiberarMemoriaVideoResponse(LiberarMemoriaVideoResponse value) {
+        return new JAXBElement<LiberarMemoriaVideoResponse>(_LiberarMemoriaVideoResponse_QNAME, LiberarMemoriaVideoResponse.class, null, value);
+    }
+
+    /**
+     * Create an instance of {@link JAXBElement }{@code <}{@link BajaUsuarioResponse }{@code >}}
+     * 
+     */
+    @XmlElementDecl(namespace = "http://Controladores.Logica/", name = "bajaUsuarioResponse")
+    public JAXBElement<BajaUsuarioResponse> createBajaUsuarioResponse(BajaUsuarioResponse value) {
+        return new JAXBElement<BajaUsuarioResponse>(_BajaUsuarioResponse_QNAME, BajaUsuarioResponse.class, null, value);
+    }
+
+    /**
+     * Create an instance of {@link JAXBElement }{@code <}{@link ValidarNuevaListaParticular }{@code >}}
+     * 
+     */
+    @XmlElementDecl(namespace = "http://Controladores.Logica/", name = "validarNuevaListaParticular")
+    public JAXBElement<ValidarNuevaListaParticular> createValidarNuevaListaParticular(ValidarNuevaListaParticular value) {
+        return new JAXBElement<ValidarNuevaListaParticular>(_ValidarNuevaListaParticular_QNAME, ValidarNuevaListaParticular.class, null, value);
+    }
+
+    /**
+     * Create an instance of {@link JAXBElement }{@code <}{@link ExisteNickname }{@code >}}
+     * 
+     */
+    @XmlElementDecl(namespace = "http://Controladores.Logica/", name = "existeNickname")
+    public JAXBElement<ExisteNickname> createExisteNickname(ExisteNickname value) {
+        return new JAXBElement<ExisteNickname>(_ExisteNickname_QNAME, ExisteNickname.class, null, value);
+    }
+
+}
diff --git a/UyTube_mobile/src/java/logica/controladores/ObtenerCanalDeUsuario.class b/UyTube_mobile/src/java/logica/controladores/ObtenerCanalDeUsuario.class
new file mode 100644
index 0000000000000000000000000000000000000000..780c9ac767bfecffac75c7c5ad8f46ec25274fbe
Binary files /dev/null and b/UyTube_mobile/src/java/logica/controladores/ObtenerCanalDeUsuario.class differ
diff --git a/UyTube_mobile/src/java/logica/controladores/ObtenerCanalDeUsuario.java b/UyTube_mobile/src/java/logica/controladores/ObtenerCanalDeUsuario.java
new file mode 100644
index 0000000000000000000000000000000000000000..66cd8083d706b63b451eb4f2cc1dbfb4f9a119c1
--- /dev/null
+++ b/UyTube_mobile/src/java/logica/controladores/ObtenerCanalDeUsuario.java
@@ -0,0 +1,32 @@
+
+package logica.controladores;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Clase Java para obtenerCanalDeUsuario complex type.
+ * 
+ * <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
+ * 
+ * <pre>
+ * &lt;complexType name="obtenerCanalDeUsuario">
+ *   &lt;complexContent>
+ *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       &lt;sequence>
+ *       &lt;/sequence>
+ *     &lt;/restriction>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * 
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "obtenerCanalDeUsuario")
+public class ObtenerCanalDeUsuario {
+
+
+}
diff --git a/UyTube_mobile/src/java/logica/controladores/ObtenerCanalDeUsuarioResponse.class b/UyTube_mobile/src/java/logica/controladores/ObtenerCanalDeUsuarioResponse.class
new file mode 100644
index 0000000000000000000000000000000000000000..b6fe148b9cf8f0d9477b0c1e642b1cba05912533
Binary files /dev/null and b/UyTube_mobile/src/java/logica/controladores/ObtenerCanalDeUsuarioResponse.class differ
diff --git a/UyTube_mobile/src/java/logica/controladores/ObtenerCanalDeUsuarioResponse.java b/UyTube_mobile/src/java/logica/controladores/ObtenerCanalDeUsuarioResponse.java
new file mode 100644
index 0000000000000000000000000000000000000000..74afe2e7693d5ae8c01e017f92a8272a72bcce5c
--- /dev/null
+++ b/UyTube_mobile/src/java/logica/controladores/ObtenerCanalDeUsuarioResponse.java
@@ -0,0 +1,62 @@
+
+package logica.controladores;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Clase Java para obtenerCanalDeUsuarioResponse complex type.
+ * 
+ * <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
+ * 
+ * <pre>
+ * &lt;complexType name="obtenerCanalDeUsuarioResponse">
+ *   &lt;complexContent>
+ *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       &lt;sequence>
+ *         &lt;element name="return" type="{http://Controladores.Logica/}dtCanal" minOccurs="0"/>
+ *       &lt;/sequence>
+ *     &lt;/restriction>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * 
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "obtenerCanalDeUsuarioResponse", propOrder = {
+    "_return"
+})
+public class ObtenerCanalDeUsuarioResponse {
+
+    @XmlElement(name = "return")
+    protected DtCanal _return;
+
+    /**
+     * Obtiene el valor de la propiedad return.
+     * 
+     * @return
+     *     possible object is
+     *     {@link DtCanal }
+     *     
+     */
+    public DtCanal getReturn() {
+        return _return;
+    }
+
+    /**
+     * Define el valor de la propiedad return.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link DtCanal }
+     *     
+     */
+    public void setReturn(DtCanal value) {
+        this._return = value;
+    }
+
+}
diff --git a/UyTube_mobile/src/java/logica/controladores/ObtenerImagenDeUsuario.class b/UyTube_mobile/src/java/logica/controladores/ObtenerImagenDeUsuario.class
new file mode 100644
index 0000000000000000000000000000000000000000..d086f55d5e440defd2ea984ab28dcbe83eefd45d
Binary files /dev/null and b/UyTube_mobile/src/java/logica/controladores/ObtenerImagenDeUsuario.class differ
diff --git a/UyTube_mobile/src/java/logica/controladores/ObtenerImagenDeUsuario.java b/UyTube_mobile/src/java/logica/controladores/ObtenerImagenDeUsuario.java
new file mode 100644
index 0000000000000000000000000000000000000000..f4060f181d888ed31c19187cbb7fc640a06d3038
--- /dev/null
+++ b/UyTube_mobile/src/java/logica/controladores/ObtenerImagenDeUsuario.java
@@ -0,0 +1,60 @@
+
+package logica.controladores;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Clase Java para obtenerImagenDeUsuario complex type.
+ * 
+ * <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
+ * 
+ * <pre>
+ * &lt;complexType name="obtenerImagenDeUsuario">
+ *   &lt;complexContent>
+ *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       &lt;sequence>
+ *         &lt;element name="arg0" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       &lt;/sequence>
+ *     &lt;/restriction>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * 
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "obtenerImagenDeUsuario", propOrder = {
+    "arg0"
+})
+public class ObtenerImagenDeUsuario {
+
+    protected String arg0;
+
+    /**
+     * Obtiene el valor de la propiedad arg0.
+     * 
+     * @return
+     *     possible object is
+     *     {@link String }
+     *     
+     */
+    public String getArg0() {
+        return arg0;
+    }
+
+    /**
+     * Define el valor de la propiedad arg0.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link String }
+     *     
+     */
+    public void setArg0(String value) {
+        this.arg0 = value;
+    }
+
+}
diff --git a/UyTube_mobile/src/java/logica/controladores/ObtenerImagenDeUsuarioPorDefecto.class b/UyTube_mobile/src/java/logica/controladores/ObtenerImagenDeUsuarioPorDefecto.class
new file mode 100644
index 0000000000000000000000000000000000000000..e0661f2e25f2851beef94c7275e83d51fdef7b1f
Binary files /dev/null and b/UyTube_mobile/src/java/logica/controladores/ObtenerImagenDeUsuarioPorDefecto.class differ
diff --git a/UyTube_mobile/src/java/logica/controladores/ObtenerImagenDeUsuarioPorDefecto.java b/UyTube_mobile/src/java/logica/controladores/ObtenerImagenDeUsuarioPorDefecto.java
new file mode 100644
index 0000000000000000000000000000000000000000..d531d88747b3a96d2c245995ad37c1a97f6ec80b
--- /dev/null
+++ b/UyTube_mobile/src/java/logica/controladores/ObtenerImagenDeUsuarioPorDefecto.java
@@ -0,0 +1,32 @@
+
+package logica.controladores;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Clase Java para obtenerImagenDeUsuarioPorDefecto complex type.
+ * 
+ * <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
+ * 
+ * <pre>
+ * &lt;complexType name="obtenerImagenDeUsuarioPorDefecto">
+ *   &lt;complexContent>
+ *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       &lt;sequence>
+ *       &lt;/sequence>
+ *     &lt;/restriction>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * 
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "obtenerImagenDeUsuarioPorDefecto")
+public class ObtenerImagenDeUsuarioPorDefecto {
+
+
+}
diff --git a/UyTube_mobile/src/java/logica/controladores/ObtenerImagenDeUsuarioPorDefectoResponse.class b/UyTube_mobile/src/java/logica/controladores/ObtenerImagenDeUsuarioPorDefectoResponse.class
new file mode 100644
index 0000000000000000000000000000000000000000..b5832eea929675adfb67a55d49d828251cda2d02
Binary files /dev/null and b/UyTube_mobile/src/java/logica/controladores/ObtenerImagenDeUsuarioPorDefectoResponse.class differ
diff --git a/UyTube_mobile/src/java/logica/controladores/ObtenerImagenDeUsuarioPorDefectoResponse.java b/UyTube_mobile/src/java/logica/controladores/ObtenerImagenDeUsuarioPorDefectoResponse.java
new file mode 100644
index 0000000000000000000000000000000000000000..42d710db3a99c9189fa720c557bdfcf487d1da39
--- /dev/null
+++ b/UyTube_mobile/src/java/logica/controladores/ObtenerImagenDeUsuarioPorDefectoResponse.java
@@ -0,0 +1,62 @@
+
+package logica.controladores;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Clase Java para obtenerImagenDeUsuarioPorDefectoResponse complex type.
+ * 
+ * <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
+ * 
+ * <pre>
+ * &lt;complexType name="obtenerImagenDeUsuarioPorDefectoResponse">
+ *   &lt;complexContent>
+ *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       &lt;sequence>
+ *         &lt;element name="return" type="{http://Controladores.Logica/}dtImagenUsuario" minOccurs="0"/>
+ *       &lt;/sequence>
+ *     &lt;/restriction>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * 
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "obtenerImagenDeUsuarioPorDefectoResponse", propOrder = {
+    "_return"
+})
+public class ObtenerImagenDeUsuarioPorDefectoResponse {
+
+    @XmlElement(name = "return")
+    protected DtImagenUsuario _return;
+
+    /**
+     * Obtiene el valor de la propiedad return.
+     * 
+     * @return
+     *     possible object is
+     *     {@link DtImagenUsuario }
+     *     
+     */
+    public DtImagenUsuario getReturn() {
+        return _return;
+    }
+
+    /**
+     * Define el valor de la propiedad return.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link DtImagenUsuario }
+     *     
+     */
+    public void setReturn(DtImagenUsuario value) {
+        this._return = value;
+    }
+
+}
diff --git a/UyTube_mobile/src/java/logica/controladores/ObtenerImagenDeUsuarioResponse.class b/UyTube_mobile/src/java/logica/controladores/ObtenerImagenDeUsuarioResponse.class
new file mode 100644
index 0000000000000000000000000000000000000000..1102512dddacba66a70354ac1d50a0714c0f5863
Binary files /dev/null and b/UyTube_mobile/src/java/logica/controladores/ObtenerImagenDeUsuarioResponse.class differ
diff --git a/UyTube_mobile/src/java/logica/controladores/ObtenerImagenDeUsuarioResponse.java b/UyTube_mobile/src/java/logica/controladores/ObtenerImagenDeUsuarioResponse.java
new file mode 100644
index 0000000000000000000000000000000000000000..54719fda6e7d35f50abe1d2221c8a327b7172bae
--- /dev/null
+++ b/UyTube_mobile/src/java/logica/controladores/ObtenerImagenDeUsuarioResponse.java
@@ -0,0 +1,62 @@
+
+package logica.controladores;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Clase Java para obtenerImagenDeUsuarioResponse complex type.
+ * 
+ * <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
+ * 
+ * <pre>
+ * &lt;complexType name="obtenerImagenDeUsuarioResponse">
+ *   &lt;complexContent>
+ *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       &lt;sequence>
+ *         &lt;element name="return" type="{http://Controladores.Logica/}dtImagenUsuario" minOccurs="0"/>
+ *       &lt;/sequence>
+ *     &lt;/restriction>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * 
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "obtenerImagenDeUsuarioResponse", propOrder = {
+    "_return"
+})
+public class ObtenerImagenDeUsuarioResponse {
+
+    @XmlElement(name = "return")
+    protected DtImagenUsuario _return;
+
+    /**
+     * Obtiene el valor de la propiedad return.
+     * 
+     * @return
+     *     possible object is
+     *     {@link DtImagenUsuario }
+     *     
+     */
+    public DtImagenUsuario getReturn() {
+        return _return;
+    }
+
+    /**
+     * Define el valor de la propiedad return.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link DtImagenUsuario }
+     *     
+     */
+    public void setReturn(DtImagenUsuario value) {
+        this._return = value;
+    }
+
+}
diff --git a/UyTube_mobile/src/java/logica/controladores/ObtenerPropietarioDeCanal.class b/UyTube_mobile/src/java/logica/controladores/ObtenerPropietarioDeCanal.class
new file mode 100644
index 0000000000000000000000000000000000000000..339c35677b499ee691f6fbcabdf8541e05513e5b
Binary files /dev/null and b/UyTube_mobile/src/java/logica/controladores/ObtenerPropietarioDeCanal.class differ
diff --git a/UyTube_mobile/src/java/logica/controladores/ObtenerPropietarioDeCanal.java b/UyTube_mobile/src/java/logica/controladores/ObtenerPropietarioDeCanal.java
new file mode 100644
index 0000000000000000000000000000000000000000..bd6248d7e1a2d8b58a8a563a07d096ca29a2d795
--- /dev/null
+++ b/UyTube_mobile/src/java/logica/controladores/ObtenerPropietarioDeCanal.java
@@ -0,0 +1,52 @@
+
+package logica.controladores;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Clase Java para obtenerPropietarioDeCanal complex type.
+ * 
+ * <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
+ * 
+ * <pre>
+ * &lt;complexType name="obtenerPropietarioDeCanal">
+ *   &lt;complexContent>
+ *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       &lt;sequence>
+ *         &lt;element name="arg0" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *       &lt;/sequence>
+ *     &lt;/restriction>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * 
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "obtenerPropietarioDeCanal", propOrder = {
+    "arg0"
+})
+public class ObtenerPropietarioDeCanal {
+
+    protected int arg0;
+
+    /**
+     * Obtiene el valor de la propiedad arg0.
+     * 
+     */
+    public int getArg0() {
+        return arg0;
+    }
+
+    /**
+     * Define el valor de la propiedad arg0.
+     * 
+     */
+    public void setArg0(int value) {
+        this.arg0 = value;
+    }
+
+}
diff --git a/UyTube_mobile/src/java/logica/controladores/ObtenerPropietarioDeCanalResponse.class b/UyTube_mobile/src/java/logica/controladores/ObtenerPropietarioDeCanalResponse.class
new file mode 100644
index 0000000000000000000000000000000000000000..f92b6c532a447273531849e379bc2ed8f58fd64f
Binary files /dev/null and b/UyTube_mobile/src/java/logica/controladores/ObtenerPropietarioDeCanalResponse.class differ
diff --git a/UyTube_mobile/src/java/logica/controladores/ObtenerPropietarioDeCanalResponse.java b/UyTube_mobile/src/java/logica/controladores/ObtenerPropietarioDeCanalResponse.java
new file mode 100644
index 0000000000000000000000000000000000000000..f87215c39275b0807b45784de20d7a87d3b532c6
--- /dev/null
+++ b/UyTube_mobile/src/java/logica/controladores/ObtenerPropietarioDeCanalResponse.java
@@ -0,0 +1,62 @@
+
+package logica.controladores;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Clase Java para obtenerPropietarioDeCanalResponse complex type.
+ * 
+ * <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
+ * 
+ * <pre>
+ * &lt;complexType name="obtenerPropietarioDeCanalResponse">
+ *   &lt;complexContent>
+ *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       &lt;sequence>
+ *         &lt;element name="return" type="{http://Controladores.Logica/}dtUsuario" minOccurs="0"/>
+ *       &lt;/sequence>
+ *     &lt;/restriction>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * 
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "obtenerPropietarioDeCanalResponse", propOrder = {
+    "_return"
+})
+public class ObtenerPropietarioDeCanalResponse {
+
+    @XmlElement(name = "return")
+    protected DtUsuario _return;
+
+    /**
+     * Obtiene el valor de la propiedad return.
+     * 
+     * @return
+     *     possible object is
+     *     {@link DtUsuario }
+     *     
+     */
+    public DtUsuario getReturn() {
+        return _return;
+    }
+
+    /**
+     * Define el valor de la propiedad return.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link DtUsuario }
+     *     
+     */
+    public void setReturn(DtUsuario value) {
+        this._return = value;
+    }
+
+}
diff --git a/UyTube_mobile/src/java/logica/controladores/ObtenerPropietarioDeListaDeReproduccion.class b/UyTube_mobile/src/java/logica/controladores/ObtenerPropietarioDeListaDeReproduccion.class
new file mode 100644
index 0000000000000000000000000000000000000000..ea2ae5949b2499b975507f5986cc84279a88c9c6
Binary files /dev/null and b/UyTube_mobile/src/java/logica/controladores/ObtenerPropietarioDeListaDeReproduccion.class differ
diff --git a/UyTube_mobile/src/java/logica/controladores/ObtenerPropietarioDeListaDeReproduccion.java b/UyTube_mobile/src/java/logica/controladores/ObtenerPropietarioDeListaDeReproduccion.java
new file mode 100644
index 0000000000000000000000000000000000000000..f29c219fcb063a11bdae5defa6fafff95c88965f
--- /dev/null
+++ b/UyTube_mobile/src/java/logica/controladores/ObtenerPropietarioDeListaDeReproduccion.java
@@ -0,0 +1,52 @@
+
+package logica.controladores;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Clase Java para obtenerPropietarioDeListaDeReproduccion complex type.
+ * 
+ * <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
+ * 
+ * <pre>
+ * &lt;complexType name="obtenerPropietarioDeListaDeReproduccion">
+ *   &lt;complexContent>
+ *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       &lt;sequence>
+ *         &lt;element name="arg0" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *       &lt;/sequence>
+ *     &lt;/restriction>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * 
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "obtenerPropietarioDeListaDeReproduccion", propOrder = {
+    "arg0"
+})
+public class ObtenerPropietarioDeListaDeReproduccion {
+
+    protected int arg0;
+
+    /**
+     * Obtiene el valor de la propiedad arg0.
+     * 
+     */
+    public int getArg0() {
+        return arg0;
+    }
+
+    /**
+     * Define el valor de la propiedad arg0.
+     * 
+     */
+    public void setArg0(int value) {
+        this.arg0 = value;
+    }
+
+}
diff --git a/UyTube_mobile/src/java/logica/controladores/ObtenerPropietarioDeListaDeReproduccionResponse.class b/UyTube_mobile/src/java/logica/controladores/ObtenerPropietarioDeListaDeReproduccionResponse.class
new file mode 100644
index 0000000000000000000000000000000000000000..52c692b461d78eb369929ed54d4c228691a8b8be
Binary files /dev/null and b/UyTube_mobile/src/java/logica/controladores/ObtenerPropietarioDeListaDeReproduccionResponse.class differ
diff --git a/UyTube_mobile/src/java/logica/controladores/ObtenerPropietarioDeListaDeReproduccionResponse.java b/UyTube_mobile/src/java/logica/controladores/ObtenerPropietarioDeListaDeReproduccionResponse.java
new file mode 100644
index 0000000000000000000000000000000000000000..f14fe6bd60390fc0d26615c00e179aec8b13da0c
--- /dev/null
+++ b/UyTube_mobile/src/java/logica/controladores/ObtenerPropietarioDeListaDeReproduccionResponse.java
@@ -0,0 +1,62 @@
+
+package logica.controladores;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Clase Java para obtenerPropietarioDeListaDeReproduccionResponse complex type.
+ * 
+ * <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
+ * 
+ * <pre>
+ * &lt;complexType name="obtenerPropietarioDeListaDeReproduccionResponse">
+ *   &lt;complexContent>
+ *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       &lt;sequence>
+ *         &lt;element name="return" type="{http://Controladores.Logica/}dtUsuario" minOccurs="0"/>
+ *       &lt;/sequence>
+ *     &lt;/restriction>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * 
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "obtenerPropietarioDeListaDeReproduccionResponse", propOrder = {
+    "_return"
+})
+public class ObtenerPropietarioDeListaDeReproduccionResponse {
+
+    @XmlElement(name = "return")
+    protected DtUsuario _return;
+
+    /**
+     * Obtiene el valor de la propiedad return.
+     * 
+     * @return
+     *     possible object is
+     *     {@link DtUsuario }
+     *     
+     */
+    public DtUsuario getReturn() {
+        return _return;
+    }
+
+    /**
+     * Define el valor de la propiedad return.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link DtUsuario }
+     *     
+     */
+    public void setReturn(DtUsuario value) {
+        this._return = value;
+    }
+
+}
diff --git a/UyTube_mobile/src/java/logica/controladores/ObtenerPropietarioDeVideo.class b/UyTube_mobile/src/java/logica/controladores/ObtenerPropietarioDeVideo.class
new file mode 100644
index 0000000000000000000000000000000000000000..6377972a2fd09ae36f513d6cdf6cfff441ed8026
Binary files /dev/null and b/UyTube_mobile/src/java/logica/controladores/ObtenerPropietarioDeVideo.class differ
diff --git a/UyTube_mobile/src/java/logica/controladores/ObtenerPropietarioDeVideo.java b/UyTube_mobile/src/java/logica/controladores/ObtenerPropietarioDeVideo.java
new file mode 100644
index 0000000000000000000000000000000000000000..46fd61cbf1b46c84a0c8543f270adf149c9a74db
--- /dev/null
+++ b/UyTube_mobile/src/java/logica/controladores/ObtenerPropietarioDeVideo.java
@@ -0,0 +1,52 @@
+
+package logica.controladores;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Clase Java para obtenerPropietarioDeVideo complex type.
+ * 
+ * <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
+ * 
+ * <pre>
+ * &lt;complexType name="obtenerPropietarioDeVideo">
+ *   &lt;complexContent>
+ *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       &lt;sequence>
+ *         &lt;element name="arg0" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *       &lt;/sequence>
+ *     &lt;/restriction>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * 
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "obtenerPropietarioDeVideo", propOrder = {
+    "arg0"
+})
+public class ObtenerPropietarioDeVideo {
+
+    protected int arg0;
+
+    /**
+     * Obtiene el valor de la propiedad arg0.
+     * 
+     */
+    public int getArg0() {
+        return arg0;
+    }
+
+    /**
+     * Define el valor de la propiedad arg0.
+     * 
+     */
+    public void setArg0(int value) {
+        this.arg0 = value;
+    }
+
+}
diff --git a/UyTube_mobile/src/java/logica/controladores/ObtenerPropietarioDeVideoResponse.class b/UyTube_mobile/src/java/logica/controladores/ObtenerPropietarioDeVideoResponse.class
new file mode 100644
index 0000000000000000000000000000000000000000..d4a5759aa692c4725a2b9fb38f55c48c0d406ed6
Binary files /dev/null and b/UyTube_mobile/src/java/logica/controladores/ObtenerPropietarioDeVideoResponse.class differ
diff --git a/UyTube_mobile/src/java/logica/controladores/ObtenerPropietarioDeVideoResponse.java b/UyTube_mobile/src/java/logica/controladores/ObtenerPropietarioDeVideoResponse.java
new file mode 100644
index 0000000000000000000000000000000000000000..3a04ba0c9b41ec28c975dce6388170308da1c4d4
--- /dev/null
+++ b/UyTube_mobile/src/java/logica/controladores/ObtenerPropietarioDeVideoResponse.java
@@ -0,0 +1,62 @@
+
+package logica.controladores;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Clase Java para obtenerPropietarioDeVideoResponse complex type.
+ * 
+ * <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
+ * 
+ * <pre>
+ * &lt;complexType name="obtenerPropietarioDeVideoResponse">
+ *   &lt;complexContent>
+ *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       &lt;sequence>
+ *         &lt;element name="return" type="{http://Controladores.Logica/}dtUsuario" minOccurs="0"/>
+ *       &lt;/sequence>
+ *     &lt;/restriction>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * 
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "obtenerPropietarioDeVideoResponse", propOrder = {
+    "_return"
+})
+public class ObtenerPropietarioDeVideoResponse {
+
+    @XmlElement(name = "return")
+    protected DtUsuario _return;
+
+    /**
+     * Obtiene el valor de la propiedad return.
+     * 
+     * @return
+     *     possible object is
+     *     {@link DtUsuario }
+     *     
+     */
+    public DtUsuario getReturn() {
+        return _return;
+    }
+
+    /**
+     * Define el valor de la propiedad return.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link DtUsuario }
+     *     
+     */
+    public void setReturn(DtUsuario value) {
+        this._return = value;
+    }
+
+}
diff --git a/UyTube_mobile/src/java/logica/controladores/ObtenerUsuarioActual.class b/UyTube_mobile/src/java/logica/controladores/ObtenerUsuarioActual.class
new file mode 100644
index 0000000000000000000000000000000000000000..695be247e3c30e0d0204e8f8fd56d4207fa4f5af
Binary files /dev/null and b/UyTube_mobile/src/java/logica/controladores/ObtenerUsuarioActual.class differ
diff --git a/UyTube_mobile/src/java/logica/controladores/ObtenerUsuarioActual.java b/UyTube_mobile/src/java/logica/controladores/ObtenerUsuarioActual.java
new file mode 100644
index 0000000000000000000000000000000000000000..bd75fa4272e4a8ea944128bb8668782ba785fa68
--- /dev/null
+++ b/UyTube_mobile/src/java/logica/controladores/ObtenerUsuarioActual.java
@@ -0,0 +1,32 @@
+
+package logica.controladores;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Clase Java para obtenerUsuarioActual complex type.
+ * 
+ * <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
+ * 
+ * <pre>
+ * &lt;complexType name="obtenerUsuarioActual">
+ *   &lt;complexContent>
+ *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       &lt;sequence>
+ *       &lt;/sequence>
+ *     &lt;/restriction>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * 
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "obtenerUsuarioActual")
+public class ObtenerUsuarioActual {
+
+
+}
diff --git a/UyTube_mobile/src/java/logica/controladores/ObtenerUsuarioActualResponse.class b/UyTube_mobile/src/java/logica/controladores/ObtenerUsuarioActualResponse.class
new file mode 100644
index 0000000000000000000000000000000000000000..3d1b0d74f9558a605abbf8d6347206ca85fdbe4d
Binary files /dev/null and b/UyTube_mobile/src/java/logica/controladores/ObtenerUsuarioActualResponse.class differ
diff --git a/UyTube_mobile/src/java/logica/controladores/ObtenerUsuarioActualResponse.java b/UyTube_mobile/src/java/logica/controladores/ObtenerUsuarioActualResponse.java
new file mode 100644
index 0000000000000000000000000000000000000000..d5f274f1ac253a5c95a6a2d06d3ce0c1dead7b6e
--- /dev/null
+++ b/UyTube_mobile/src/java/logica/controladores/ObtenerUsuarioActualResponse.java
@@ -0,0 +1,62 @@
+
+package logica.controladores;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Clase Java para obtenerUsuarioActualResponse complex type.
+ * 
+ * <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
+ * 
+ * <pre>
+ * &lt;complexType name="obtenerUsuarioActualResponse">
+ *   &lt;complexContent>
+ *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       &lt;sequence>
+ *         &lt;element name="return" type="{http://Controladores.Logica/}dtUsuario" minOccurs="0"/>
+ *       &lt;/sequence>
+ *     &lt;/restriction>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * 
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "obtenerUsuarioActualResponse", propOrder = {
+    "_return"
+})
+public class ObtenerUsuarioActualResponse {
+
+    @XmlElement(name = "return")
+    protected DtUsuario _return;
+
+    /**
+     * Obtiene el valor de la propiedad return.
+     * 
+     * @return
+     *     possible object is
+     *     {@link DtUsuario }
+     *     
+     */
+    public DtUsuario getReturn() {
+        return _return;
+    }
+
+    /**
+     * Define el valor de la propiedad return.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link DtUsuario }
+     *     
+     */
+    public void setReturn(DtUsuario value) {
+        this._return = value;
+    }
+
+}
diff --git a/UyTube_mobile/src/java/logica/controladores/ObtenerValoracionDada.class b/UyTube_mobile/src/java/logica/controladores/ObtenerValoracionDada.class
new file mode 100644
index 0000000000000000000000000000000000000000..108657d99c06e52daf593e3d2011d44b567e1374
Binary files /dev/null and b/UyTube_mobile/src/java/logica/controladores/ObtenerValoracionDada.class differ
diff --git a/UyTube_mobile/src/java/logica/controladores/ObtenerValoracionDada.java b/UyTube_mobile/src/java/logica/controladores/ObtenerValoracionDada.java
new file mode 100644
index 0000000000000000000000000000000000000000..d6233b1dadd2f648cdaf5b249825441a1ba76643
--- /dev/null
+++ b/UyTube_mobile/src/java/logica/controladores/ObtenerValoracionDada.java
@@ -0,0 +1,32 @@
+
+package logica.controladores;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Clase Java para obtenerValoracionDada complex type.
+ * 
+ * <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
+ * 
+ * <pre>
+ * &lt;complexType name="obtenerValoracionDada">
+ *   &lt;complexContent>
+ *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       &lt;sequence>
+ *       &lt;/sequence>
+ *     &lt;/restriction>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * 
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "obtenerValoracionDada")
+public class ObtenerValoracionDada {
+
+
+}
diff --git a/UyTube_mobile/src/java/logica/controladores/ObtenerValoracionDadaResponse.class b/UyTube_mobile/src/java/logica/controladores/ObtenerValoracionDadaResponse.class
new file mode 100644
index 0000000000000000000000000000000000000000..a203465b63aff48e72329f50eb5689fee75bb063
Binary files /dev/null and b/UyTube_mobile/src/java/logica/controladores/ObtenerValoracionDadaResponse.class differ
diff --git a/UyTube_mobile/src/java/logica/controladores/ObtenerValoracionDadaResponse.java b/UyTube_mobile/src/java/logica/controladores/ObtenerValoracionDadaResponse.java
new file mode 100644
index 0000000000000000000000000000000000000000..b2d1d649fdd42b91fb881988f95df1e8aa9709ff
--- /dev/null
+++ b/UyTube_mobile/src/java/logica/controladores/ObtenerValoracionDadaResponse.java
@@ -0,0 +1,62 @@
+
+package logica.controladores;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Clase Java para obtenerValoracionDadaResponse complex type.
+ * 
+ * <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
+ * 
+ * <pre>
+ * &lt;complexType name="obtenerValoracionDadaResponse">
+ *   &lt;complexContent>
+ *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       &lt;sequence>
+ *         &lt;element name="return" type="{http://Controladores.Logica/}dtValoracion" minOccurs="0"/>
+ *       &lt;/sequence>
+ *     &lt;/restriction>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * 
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "obtenerValoracionDadaResponse", propOrder = {
+    "_return"
+})
+public class ObtenerValoracionDadaResponse {
+
+    @XmlElement(name = "return")
+    protected DtValoracion _return;
+
+    /**
+     * Obtiene el valor de la propiedad return.
+     * 
+     * @return
+     *     possible object is
+     *     {@link DtValoracion }
+     *     
+     */
+    public DtValoracion getReturn() {
+        return _return;
+    }
+
+    /**
+     * Define el valor de la propiedad return.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link DtValoracion }
+     *     
+     */
+    public void setReturn(DtValoracion value) {
+        this._return = value;
+    }
+
+}
diff --git a/UyTube_mobile/src/java/logica/controladores/ObtenerValoracionesDeVideo.class b/UyTube_mobile/src/java/logica/controladores/ObtenerValoracionesDeVideo.class
new file mode 100644
index 0000000000000000000000000000000000000000..1bfc5bbdbcf1cb8452d6c5f6ae8342957e87be48
Binary files /dev/null and b/UyTube_mobile/src/java/logica/controladores/ObtenerValoracionesDeVideo.class differ
diff --git a/UyTube_mobile/src/java/logica/controladores/ObtenerValoracionesDeVideo.java b/UyTube_mobile/src/java/logica/controladores/ObtenerValoracionesDeVideo.java
new file mode 100644
index 0000000000000000000000000000000000000000..f8080ceea039306484cf7b664c5449e9cbd82fa6
--- /dev/null
+++ b/UyTube_mobile/src/java/logica/controladores/ObtenerValoracionesDeVideo.java
@@ -0,0 +1,32 @@
+
+package logica.controladores;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Clase Java para obtenerValoracionesDeVideo complex type.
+ * 
+ * <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
+ * 
+ * <pre>
+ * &lt;complexType name="obtenerValoracionesDeVideo">
+ *   &lt;complexContent>
+ *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       &lt;sequence>
+ *       &lt;/sequence>
+ *     &lt;/restriction>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * 
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "obtenerValoracionesDeVideo")
+public class ObtenerValoracionesDeVideo {
+
+
+}
diff --git a/UyTube_mobile/src/java/logica/controladores/ObtenerValoracionesDeVideoResponse.class b/UyTube_mobile/src/java/logica/controladores/ObtenerValoracionesDeVideoResponse.class
new file mode 100644
index 0000000000000000000000000000000000000000..e07ca961f0169be810b645cd505956b21baa3020
Binary files /dev/null and b/UyTube_mobile/src/java/logica/controladores/ObtenerValoracionesDeVideoResponse.class differ
diff --git a/UyTube_mobile/src/java/logica/controladores/ObtenerValoracionesDeVideoResponse.java b/UyTube_mobile/src/java/logica/controladores/ObtenerValoracionesDeVideoResponse.java
new file mode 100644
index 0000000000000000000000000000000000000000..f9e457d9d3b5ceb1256260fb44b2465a88da2b5e
--- /dev/null
+++ b/UyTube_mobile/src/java/logica/controladores/ObtenerValoracionesDeVideoResponse.java
@@ -0,0 +1,69 @@
+
+package logica.controladores;
+
+import java.util.ArrayList;
+import java.util.List;
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Clase Java para obtenerValoracionesDeVideoResponse complex type.
+ * 
+ * <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
+ * 
+ * <pre>
+ * &lt;complexType name="obtenerValoracionesDeVideoResponse">
+ *   &lt;complexContent>
+ *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       &lt;sequence>
+ *         &lt;element name="return" type="{http://Controladores.Logica/}dtValoracion" maxOccurs="unbounded" minOccurs="0"/>
+ *       &lt;/sequence>
+ *     &lt;/restriction>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * 
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "obtenerValoracionesDeVideoResponse", propOrder = {
+    "_return"
+})
+public class ObtenerValoracionesDeVideoResponse {
+
+    @XmlElement(name = "return")
+    protected List<DtValoracion> _return;
+
+    /**
+     * Gets the value of the return property.
+     * 
+     * <p>
+     * This accessor method returns a reference to the live list,
+     * not a snapshot. Therefore any modification you make to the
+     * returned list will be present inside the JAXB object.
+     * This is why there is not a <CODE>set</CODE> method for the return property.
+     * 
+     * <p>
+     * For example, to add a new item, do as follows:
+     * <pre>
+     *    getReturn().add(newItem);
+     * </pre>
+     * 
+     * 
+     * <p>
+     * Objects of the following type(s) are allowed in the list
+     * {@link DtValoracion }
+     * 
+     * 
+     */
+    public List<DtValoracion> getReturn() {
+        if (_return == null) {
+            _return = new ArrayList<DtValoracion>();
+        }
+        return this._return;
+    }
+
+}
diff --git a/UyTube_mobile/src/java/logica/controladores/Ordenacion.class b/UyTube_mobile/src/java/logica/controladores/Ordenacion.class
new file mode 100644
index 0000000000000000000000000000000000000000..25b719b042695feef0347b798d77dbf9c4589f5a
Binary files /dev/null and b/UyTube_mobile/src/java/logica/controladores/Ordenacion.class differ
diff --git a/UyTube_mobile/src/java/logica/controladores/Ordenacion.java b/UyTube_mobile/src/java/logica/controladores/Ordenacion.java
new file mode 100644
index 0000000000000000000000000000000000000000..c2d1f47daaada77f250ba18a8d056c947503beed
--- /dev/null
+++ b/UyTube_mobile/src/java/logica/controladores/Ordenacion.java
@@ -0,0 +1,38 @@
+
+package logica.controladores;
+
+import javax.xml.bind.annotation.XmlEnum;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Clase Java para ordenacion.
+ * 
+ * <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
+ * <p>
+ * <pre>
+ * &lt;simpleType name="ordenacion">
+ *   &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string">
+ *     &lt;enumeration value="ALFABETICA_ASCENDENTE"/>
+ *     &lt;enumeration value="FECHA_DESCENDENTE"/>
+ *   &lt;/restriction>
+ * &lt;/simpleType>
+ * </pre>
+ * 
+ */
+@XmlType(name = "ordenacion")
+@XmlEnum
+public enum Ordenacion {
+
+    ALFABETICA_ASCENDENTE,
+    FECHA_DESCENDENTE;
+
+    public String value() {
+        return name();
+    }
+
+    public static Ordenacion fromValue(String v) {
+        return valueOf(v);
+    }
+
+}
diff --git a/UyTube_mobile/src/java/logica/controladores/Privacidad.class b/UyTube_mobile/src/java/logica/controladores/Privacidad.class
new file mode 100644
index 0000000000000000000000000000000000000000..ed7978a3b0366a187592ef050907c3fb7c5de0fb
Binary files /dev/null and b/UyTube_mobile/src/java/logica/controladores/Privacidad.class differ
diff --git a/UyTube_mobile/src/java/logica/controladores/Privacidad.java b/UyTube_mobile/src/java/logica/controladores/Privacidad.java
new file mode 100644
index 0000000000000000000000000000000000000000..351091394b8fe027ff76809482291108ce3ef00f
--- /dev/null
+++ b/UyTube_mobile/src/java/logica/controladores/Privacidad.java
@@ -0,0 +1,38 @@
+
+package logica.controladores;
+
+import javax.xml.bind.annotation.XmlEnum;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Clase Java para privacidad.
+ * 
+ * <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
+ * <p>
+ * <pre>
+ * &lt;simpleType name="privacidad">
+ *   &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string">
+ *     &lt;enumeration value="PUBLICO"/>
+ *     &lt;enumeration value="PRIVADO"/>
+ *   &lt;/restriction>
+ * &lt;/simpleType>
+ * </pre>
+ * 
+ */
+@XmlType(name = "privacidad")
+@XmlEnum
+public enum Privacidad {
+
+    PUBLICO,
+    PRIVADO;
+
+    public String value() {
+        return name();
+    }
+
+    public static Privacidad fromValue(String v) {
+        return valueOf(v);
+    }
+
+}
diff --git a/UyTube_mobile/src/java/logica/controladores/QuitarVideoDeListaDeReproduccion.class b/UyTube_mobile/src/java/logica/controladores/QuitarVideoDeListaDeReproduccion.class
new file mode 100644
index 0000000000000000000000000000000000000000..de4507c221aecb379239ef910c6d01fbcdf474ba
Binary files /dev/null and b/UyTube_mobile/src/java/logica/controladores/QuitarVideoDeListaDeReproduccion.class differ
diff --git a/UyTube_mobile/src/java/logica/controladores/QuitarVideoDeListaDeReproduccion.java b/UyTube_mobile/src/java/logica/controladores/QuitarVideoDeListaDeReproduccion.java
new file mode 100644
index 0000000000000000000000000000000000000000..e2a1ce88469e20b80862dc5692b0acba79c78fe9
--- /dev/null
+++ b/UyTube_mobile/src/java/logica/controladores/QuitarVideoDeListaDeReproduccion.java
@@ -0,0 +1,52 @@
+
+package logica.controladores;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Clase Java para quitarVideoDeListaDeReproduccion complex type.
+ * 
+ * <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
+ * 
+ * <pre>
+ * &lt;complexType name="quitarVideoDeListaDeReproduccion">
+ *   &lt;complexContent>
+ *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       &lt;sequence>
+ *         &lt;element name="arg0" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *       &lt;/sequence>
+ *     &lt;/restriction>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * 
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "quitarVideoDeListaDeReproduccion", propOrder = {
+    "arg0"
+})
+public class QuitarVideoDeListaDeReproduccion {
+
+    protected int arg0;
+
+    /**
+     * Obtiene el valor de la propiedad arg0.
+     * 
+     */
+    public int getArg0() {
+        return arg0;
+    }
+
+    /**
+     * Define el valor de la propiedad arg0.
+     * 
+     */
+    public void setArg0(int value) {
+        this.arg0 = value;
+    }
+
+}
diff --git a/UyTube_mobile/src/java/logica/controladores/QuitarVideoDeListaDeReproduccionResponse.class b/UyTube_mobile/src/java/logica/controladores/QuitarVideoDeListaDeReproduccionResponse.class
new file mode 100644
index 0000000000000000000000000000000000000000..9b086f0777a97a2fcd0836a1047acee09502d461
Binary files /dev/null and b/UyTube_mobile/src/java/logica/controladores/QuitarVideoDeListaDeReproduccionResponse.class differ
diff --git a/UyTube_mobile/src/java/logica/controladores/QuitarVideoDeListaDeReproduccionResponse.java b/UyTube_mobile/src/java/logica/controladores/QuitarVideoDeListaDeReproduccionResponse.java
new file mode 100644
index 0000000000000000000000000000000000000000..85945fb1df77362f67d315b453164fae0288e17e
--- /dev/null
+++ b/UyTube_mobile/src/java/logica/controladores/QuitarVideoDeListaDeReproduccionResponse.java
@@ -0,0 +1,32 @@
+
+package logica.controladores;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Clase Java para quitarVideoDeListaDeReproduccionResponse complex type.
+ * 
+ * <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
+ * 
+ * <pre>
+ * &lt;complexType name="quitarVideoDeListaDeReproduccionResponse">
+ *   &lt;complexContent>
+ *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       &lt;sequence>
+ *       &lt;/sequence>
+ *     &lt;/restriction>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * 
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "quitarVideoDeListaDeReproduccionResponse")
+public class QuitarVideoDeListaDeReproduccionResponse {
+
+
+}
diff --git a/UyTube_mobile/src/java/logica/controladores/SeguirUsuario.class b/UyTube_mobile/src/java/logica/controladores/SeguirUsuario.class
new file mode 100644
index 0000000000000000000000000000000000000000..12ebda463e0e1066b9b938dd57f1841c240f1849
Binary files /dev/null and b/UyTube_mobile/src/java/logica/controladores/SeguirUsuario.class differ
diff --git a/UyTube_mobile/src/java/logica/controladores/SeguirUsuario.java b/UyTube_mobile/src/java/logica/controladores/SeguirUsuario.java
new file mode 100644
index 0000000000000000000000000000000000000000..7a9e1c78cf2a15358e394b8fb4a65a51c8e187e3
--- /dev/null
+++ b/UyTube_mobile/src/java/logica/controladores/SeguirUsuario.java
@@ -0,0 +1,32 @@
+
+package logica.controladores;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Clase Java para seguirUsuario complex type.
+ * 
+ * <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
+ * 
+ * <pre>
+ * &lt;complexType name="seguirUsuario">
+ *   &lt;complexContent>
+ *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       &lt;sequence>
+ *       &lt;/sequence>
+ *     &lt;/restriction>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * 
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "seguirUsuario")
+public class SeguirUsuario {
+
+
+}
diff --git a/UyTube_mobile/src/java/logica/controladores/SeguirUsuarioResponse.class b/UyTube_mobile/src/java/logica/controladores/SeguirUsuarioResponse.class
new file mode 100644
index 0000000000000000000000000000000000000000..839ceb5f2c45741268f10491a4724d0e974da2b8
Binary files /dev/null and b/UyTube_mobile/src/java/logica/controladores/SeguirUsuarioResponse.class differ
diff --git a/UyTube_mobile/src/java/logica/controladores/SeguirUsuarioResponse.java b/UyTube_mobile/src/java/logica/controladores/SeguirUsuarioResponse.java
new file mode 100644
index 0000000000000000000000000000000000000000..fd4c08ba2a7c523606a1adcabd5969a1c839011e
--- /dev/null
+++ b/UyTube_mobile/src/java/logica/controladores/SeguirUsuarioResponse.java
@@ -0,0 +1,32 @@
+
+package logica.controladores;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Clase Java para seguirUsuarioResponse complex type.
+ * 
+ * <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
+ * 
+ * <pre>
+ * &lt;complexType name="seguirUsuarioResponse">
+ *   &lt;complexContent>
+ *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       &lt;sequence>
+ *       &lt;/sequence>
+ *     &lt;/restriction>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * 
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "seguirUsuarioResponse")
+public class SeguirUsuarioResponse {
+
+
+}
diff --git a/UyTube_mobile/src/java/logica/controladores/SeleccionarListaDeReproduccion.class b/UyTube_mobile/src/java/logica/controladores/SeleccionarListaDeReproduccion.class
new file mode 100644
index 0000000000000000000000000000000000000000..e08ba89d86dfa9a8011fce7638fc9198b2319727
Binary files /dev/null and b/UyTube_mobile/src/java/logica/controladores/SeleccionarListaDeReproduccion.class differ
diff --git a/UyTube_mobile/src/java/logica/controladores/SeleccionarListaDeReproduccion.java b/UyTube_mobile/src/java/logica/controladores/SeleccionarListaDeReproduccion.java
new file mode 100644
index 0000000000000000000000000000000000000000..ff0f8cd9d50798df1cb873d1c6d399c41db9e3b0
--- /dev/null
+++ b/UyTube_mobile/src/java/logica/controladores/SeleccionarListaDeReproduccion.java
@@ -0,0 +1,52 @@
+
+package logica.controladores;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Clase Java para seleccionarListaDeReproduccion complex type.
+ * 
+ * <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
+ * 
+ * <pre>
+ * &lt;complexType name="seleccionarListaDeReproduccion">
+ *   &lt;complexContent>
+ *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       &lt;sequence>
+ *         &lt;element name="arg0" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *       &lt;/sequence>
+ *     &lt;/restriction>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * 
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "seleccionarListaDeReproduccion", propOrder = {
+    "arg0"
+})
+public class SeleccionarListaDeReproduccion {
+
+    protected int arg0;
+
+    /**
+     * Obtiene el valor de la propiedad arg0.
+     * 
+     */
+    public int getArg0() {
+        return arg0;
+    }
+
+    /**
+     * Define el valor de la propiedad arg0.
+     * 
+     */
+    public void setArg0(int value) {
+        this.arg0 = value;
+    }
+
+}
diff --git a/UyTube_mobile/src/java/logica/controladores/SeleccionarListaDeReproduccionResponse.class b/UyTube_mobile/src/java/logica/controladores/SeleccionarListaDeReproduccionResponse.class
new file mode 100644
index 0000000000000000000000000000000000000000..0ebbe85709c62996921a4389979c615d5a705453
Binary files /dev/null and b/UyTube_mobile/src/java/logica/controladores/SeleccionarListaDeReproduccionResponse.class differ
diff --git a/UyTube_mobile/src/java/logica/controladores/SeleccionarListaDeReproduccionResponse.java b/UyTube_mobile/src/java/logica/controladores/SeleccionarListaDeReproduccionResponse.java
new file mode 100644
index 0000000000000000000000000000000000000000..397020d1faf40b548a27545968494a2623f76d40
--- /dev/null
+++ b/UyTube_mobile/src/java/logica/controladores/SeleccionarListaDeReproduccionResponse.java
@@ -0,0 +1,62 @@
+
+package logica.controladores;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Clase Java para seleccionarListaDeReproduccionResponse complex type.
+ * 
+ * <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
+ * 
+ * <pre>
+ * &lt;complexType name="seleccionarListaDeReproduccionResponse">
+ *   &lt;complexContent>
+ *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       &lt;sequence>
+ *         &lt;element name="return" type="{http://Controladores.Logica/}dtListaDeReproduccion" minOccurs="0"/>
+ *       &lt;/sequence>
+ *     &lt;/restriction>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * 
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "seleccionarListaDeReproduccionResponse", propOrder = {
+    "_return"
+})
+public class SeleccionarListaDeReproduccionResponse {
+
+    @XmlElement(name = "return")
+    protected DtListaDeReproduccion _return;
+
+    /**
+     * Obtiene el valor de la propiedad return.
+     * 
+     * @return
+     *     possible object is
+     *     {@link DtListaDeReproduccion }
+     *     
+     */
+    public DtListaDeReproduccion getReturn() {
+        return _return;
+    }
+
+    /**
+     * Define el valor de la propiedad return.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link DtListaDeReproduccion }
+     *     
+     */
+    public void setReturn(DtListaDeReproduccion value) {
+        this._return = value;
+    }
+
+}
diff --git a/UyTube_mobile/src/java/logica/controladores/SeleccionarUsuario.class b/UyTube_mobile/src/java/logica/controladores/SeleccionarUsuario.class
new file mode 100644
index 0000000000000000000000000000000000000000..2b4e53ad39b656ac4e075cae3f5e0aab9f56dc4f
Binary files /dev/null and b/UyTube_mobile/src/java/logica/controladores/SeleccionarUsuario.class differ
diff --git a/UyTube_mobile/src/java/logica/controladores/SeleccionarUsuario.java b/UyTube_mobile/src/java/logica/controladores/SeleccionarUsuario.java
new file mode 100644
index 0000000000000000000000000000000000000000..1e066b6bd272e6ba44c28f55e493912c01225817
--- /dev/null
+++ b/UyTube_mobile/src/java/logica/controladores/SeleccionarUsuario.java
@@ -0,0 +1,60 @@
+
+package logica.controladores;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Clase Java para seleccionarUsuario complex type.
+ * 
+ * <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
+ * 
+ * <pre>
+ * &lt;complexType name="seleccionarUsuario">
+ *   &lt;complexContent>
+ *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       &lt;sequence>
+ *         &lt;element name="arg0" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       &lt;/sequence>
+ *     &lt;/restriction>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * 
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "seleccionarUsuario", propOrder = {
+    "arg0"
+})
+public class SeleccionarUsuario {
+
+    protected String arg0;
+
+    /**
+     * Obtiene el valor de la propiedad arg0.
+     * 
+     * @return
+     *     possible object is
+     *     {@link String }
+     *     
+     */
+    public String getArg0() {
+        return arg0;
+    }
+
+    /**
+     * Define el valor de la propiedad arg0.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link String }
+     *     
+     */
+    public void setArg0(String value) {
+        this.arg0 = value;
+    }
+
+}
diff --git a/UyTube_mobile/src/java/logica/controladores/SeleccionarUsuarioResponse.class b/UyTube_mobile/src/java/logica/controladores/SeleccionarUsuarioResponse.class
new file mode 100644
index 0000000000000000000000000000000000000000..18a42557cda8f6c6fb5cec7e3c4eed5791a57897
Binary files /dev/null and b/UyTube_mobile/src/java/logica/controladores/SeleccionarUsuarioResponse.class differ
diff --git a/UyTube_mobile/src/java/logica/controladores/SeleccionarUsuarioResponse.java b/UyTube_mobile/src/java/logica/controladores/SeleccionarUsuarioResponse.java
new file mode 100644
index 0000000000000000000000000000000000000000..89f40f282af9f434bce4466be897ded3e937bcad
--- /dev/null
+++ b/UyTube_mobile/src/java/logica/controladores/SeleccionarUsuarioResponse.java
@@ -0,0 +1,62 @@
+
+package logica.controladores;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Clase Java para seleccionarUsuarioResponse complex type.
+ * 
+ * <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
+ * 
+ * <pre>
+ * &lt;complexType name="seleccionarUsuarioResponse">
+ *   &lt;complexContent>
+ *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       &lt;sequence>
+ *         &lt;element name="return" type="{http://Controladores.Logica/}dtUsuario" minOccurs="0"/>
+ *       &lt;/sequence>
+ *     &lt;/restriction>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * 
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "seleccionarUsuarioResponse", propOrder = {
+    "_return"
+})
+public class SeleccionarUsuarioResponse {
+
+    @XmlElement(name = "return")
+    protected DtUsuario _return;
+
+    /**
+     * Obtiene el valor de la propiedad return.
+     * 
+     * @return
+     *     possible object is
+     *     {@link DtUsuario }
+     *     
+     */
+    public DtUsuario getReturn() {
+        return _return;
+    }
+
+    /**
+     * Define el valor de la propiedad return.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link DtUsuario }
+     *     
+     */
+    public void setReturn(DtUsuario value) {
+        this._return = value;
+    }
+
+}
diff --git a/UyTube_mobile/src/java/logica/controladores/SeleccionarVideo.class b/UyTube_mobile/src/java/logica/controladores/SeleccionarVideo.class
new file mode 100644
index 0000000000000000000000000000000000000000..bcdca76d6fe0733d2df770cc7d4799544d8a69b0
Binary files /dev/null and b/UyTube_mobile/src/java/logica/controladores/SeleccionarVideo.class differ
diff --git a/UyTube_mobile/src/java/logica/controladores/SeleccionarVideo.java b/UyTube_mobile/src/java/logica/controladores/SeleccionarVideo.java
new file mode 100644
index 0000000000000000000000000000000000000000..c7e600f7a9b07faccb8f9156fe0957ea9538965e
--- /dev/null
+++ b/UyTube_mobile/src/java/logica/controladores/SeleccionarVideo.java
@@ -0,0 +1,52 @@
+
+package logica.controladores;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Clase Java para seleccionarVideo complex type.
+ * 
+ * <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
+ * 
+ * <pre>
+ * &lt;complexType name="seleccionarVideo">
+ *   &lt;complexContent>
+ *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       &lt;sequence>
+ *         &lt;element name="arg0" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *       &lt;/sequence>
+ *     &lt;/restriction>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * 
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "seleccionarVideo", propOrder = {
+    "arg0"
+})
+public class SeleccionarVideo {
+
+    protected int arg0;
+
+    /**
+     * Obtiene el valor de la propiedad arg0.
+     * 
+     */
+    public int getArg0() {
+        return arg0;
+    }
+
+    /**
+     * Define el valor de la propiedad arg0.
+     * 
+     */
+    public void setArg0(int value) {
+        this.arg0 = value;
+    }
+
+}
diff --git a/UyTube_mobile/src/java/logica/controladores/SeleccionarVideoResponse.class b/UyTube_mobile/src/java/logica/controladores/SeleccionarVideoResponse.class
new file mode 100644
index 0000000000000000000000000000000000000000..0e672d663b5d7445113210b26bc2f5ec0fa43b1a
Binary files /dev/null and b/UyTube_mobile/src/java/logica/controladores/SeleccionarVideoResponse.class differ
diff --git a/UyTube_mobile/src/java/logica/controladores/SeleccionarVideoResponse.java b/UyTube_mobile/src/java/logica/controladores/SeleccionarVideoResponse.java
new file mode 100644
index 0000000000000000000000000000000000000000..f3444a2d508b2012d8dc2a799fc77cf54e73a67c
--- /dev/null
+++ b/UyTube_mobile/src/java/logica/controladores/SeleccionarVideoResponse.java
@@ -0,0 +1,62 @@
+
+package logica.controladores;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Clase Java para seleccionarVideoResponse complex type.
+ * 
+ * <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
+ * 
+ * <pre>
+ * &lt;complexType name="seleccionarVideoResponse">
+ *   &lt;complexContent>
+ *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       &lt;sequence>
+ *         &lt;element name="return" type="{http://Controladores.Logica/}dtVideo" minOccurs="0"/>
+ *       &lt;/sequence>
+ *     &lt;/restriction>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * 
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "seleccionarVideoResponse", propOrder = {
+    "_return"
+})
+public class SeleccionarVideoResponse {
+
+    @XmlElement(name = "return")
+    protected DtVideo _return;
+
+    /**
+     * Obtiene el valor de la propiedad return.
+     * 
+     * @return
+     *     possible object is
+     *     {@link DtVideo }
+     *     
+     */
+    public DtVideo getReturn() {
+        return _return;
+    }
+
+    /**
+     * Define el valor de la propiedad return.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link DtVideo }
+     *     
+     */
+    public void setReturn(DtVideo value) {
+        this._return = value;
+    }
+
+}
diff --git a/UyTube_mobile/src/java/logica/controladores/SesionIniciada.class b/UyTube_mobile/src/java/logica/controladores/SesionIniciada.class
new file mode 100644
index 0000000000000000000000000000000000000000..c85976ee96845290dd868aabd2d2ba24633d4daf
Binary files /dev/null and b/UyTube_mobile/src/java/logica/controladores/SesionIniciada.class differ
diff --git a/UyTube_mobile/src/java/logica/controladores/SesionIniciada.java b/UyTube_mobile/src/java/logica/controladores/SesionIniciada.java
new file mode 100644
index 0000000000000000000000000000000000000000..51cac6481163251424e81b058b67fb742950d9e3
--- /dev/null
+++ b/UyTube_mobile/src/java/logica/controladores/SesionIniciada.java
@@ -0,0 +1,32 @@
+
+package logica.controladores;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Clase Java para sesionIniciada complex type.
+ * 
+ * <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
+ * 
+ * <pre>
+ * &lt;complexType name="sesionIniciada">
+ *   &lt;complexContent>
+ *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       &lt;sequence>
+ *       &lt;/sequence>
+ *     &lt;/restriction>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * 
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "sesionIniciada")
+public class SesionIniciada {
+
+
+}
diff --git a/UyTube_mobile/src/java/logica/controladores/SesionIniciadaResponse.class b/UyTube_mobile/src/java/logica/controladores/SesionIniciadaResponse.class
new file mode 100644
index 0000000000000000000000000000000000000000..cc6a83a2c39165d4c687ba8e82ea05867d1b12c3
Binary files /dev/null and b/UyTube_mobile/src/java/logica/controladores/SesionIniciadaResponse.class differ
diff --git a/UyTube_mobile/src/java/logica/controladores/SesionIniciadaResponse.java b/UyTube_mobile/src/java/logica/controladores/SesionIniciadaResponse.java
new file mode 100644
index 0000000000000000000000000000000000000000..f65dcfc3253e5bbe20fe67e0b2d3265e66bb067b
--- /dev/null
+++ b/UyTube_mobile/src/java/logica/controladores/SesionIniciadaResponse.java
@@ -0,0 +1,54 @@
+
+package logica.controladores;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Clase Java para sesionIniciadaResponse complex type.
+ * 
+ * <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
+ * 
+ * <pre>
+ * &lt;complexType name="sesionIniciadaResponse">
+ *   &lt;complexContent>
+ *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       &lt;sequence>
+ *         &lt;element name="return" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
+ *       &lt;/sequence>
+ *     &lt;/restriction>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * 
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "sesionIniciadaResponse", propOrder = {
+    "_return"
+})
+public class SesionIniciadaResponse {
+
+    @XmlElement(name = "return")
+    protected boolean _return;
+
+    /**
+     * Obtiene el valor de la propiedad return.
+     * 
+     */
+    public boolean isReturn() {
+        return _return;
+    }
+
+    /**
+     * Define el valor de la propiedad return.
+     * 
+     */
+    public void setReturn(boolean value) {
+        this._return = value;
+    }
+
+}
diff --git a/UyTube_mobile/src/java/logica/controladores/TipoListaDeReproduccion.class b/UyTube_mobile/src/java/logica/controladores/TipoListaDeReproduccion.class
new file mode 100644
index 0000000000000000000000000000000000000000..2808b7da0f5dab3023419c2b60cfbce2cd5fa3e2
Binary files /dev/null and b/UyTube_mobile/src/java/logica/controladores/TipoListaDeReproduccion.class differ
diff --git a/UyTube_mobile/src/java/logica/controladores/TipoListaDeReproduccion.java b/UyTube_mobile/src/java/logica/controladores/TipoListaDeReproduccion.java
new file mode 100644
index 0000000000000000000000000000000000000000..458c62af0fa7f7c1522f0576b5f0854932d4bb48
--- /dev/null
+++ b/UyTube_mobile/src/java/logica/controladores/TipoListaDeReproduccion.java
@@ -0,0 +1,38 @@
+
+package logica.controladores;
+
+import javax.xml.bind.annotation.XmlEnum;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Clase Java para tipoListaDeReproduccion.
+ * 
+ * <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
+ * <p>
+ * <pre>
+ * &lt;simpleType name="tipoListaDeReproduccion">
+ *   &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string">
+ *     &lt;enumeration value="POR_DEFECTO"/>
+ *     &lt;enumeration value="PARTICULAR"/>
+ *   &lt;/restriction>
+ * &lt;/simpleType>
+ * </pre>
+ * 
+ */
+@XmlType(name = "tipoListaDeReproduccion")
+@XmlEnum
+public enum TipoListaDeReproduccion {
+
+    POR_DEFECTO,
+    PARTICULAR;
+
+    public String value() {
+        return name();
+    }
+
+    public static TipoListaDeReproduccion fromValue(String v) {
+        return valueOf(v);
+    }
+
+}
diff --git a/UyTube_mobile/src/java/logica/controladores/TipoValoracion.class b/UyTube_mobile/src/java/logica/controladores/TipoValoracion.class
new file mode 100644
index 0000000000000000000000000000000000000000..3437837ad7c149e8712d3b9861754b587f80324b
Binary files /dev/null and b/UyTube_mobile/src/java/logica/controladores/TipoValoracion.class differ
diff --git a/UyTube_mobile/src/java/logica/controladores/TipoValoracion.java b/UyTube_mobile/src/java/logica/controladores/TipoValoracion.java
new file mode 100644
index 0000000000000000000000000000000000000000..c681f7b7fcc0d98a94f9643383d8a40e2b98ef80
--- /dev/null
+++ b/UyTube_mobile/src/java/logica/controladores/TipoValoracion.java
@@ -0,0 +1,38 @@
+
+package logica.controladores;
+
+import javax.xml.bind.annotation.XmlEnum;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Clase Java para tipoValoracion.
+ * 
+ * <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
+ * <p>
+ * <pre>
+ * &lt;simpleType name="tipoValoracion">
+ *   &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string">
+ *     &lt;enumeration value="LIKE"/>
+ *     &lt;enumeration value="DISLIKE"/>
+ *   &lt;/restriction>
+ * &lt;/simpleType>
+ * </pre>
+ * 
+ */
+@XmlType(name = "tipoValoracion")
+@XmlEnum
+public enum TipoValoracion {
+
+    LIKE,
+    DISLIKE;
+
+    public String value() {
+        return name();
+    }
+
+    public static TipoValoracion fromValue(String v) {
+        return valueOf(v);
+    }
+
+}
diff --git a/UyTube_mobile/src/java/logica/controladores/ValidarNuevaListaParticular.class b/UyTube_mobile/src/java/logica/controladores/ValidarNuevaListaParticular.class
new file mode 100644
index 0000000000000000000000000000000000000000..06ad2ed0dccfd1927a136a993d9b0a486a9c5298
Binary files /dev/null and b/UyTube_mobile/src/java/logica/controladores/ValidarNuevaListaParticular.class differ
diff --git a/UyTube_mobile/src/java/logica/controladores/ValidarNuevaListaParticular.java b/UyTube_mobile/src/java/logica/controladores/ValidarNuevaListaParticular.java
new file mode 100644
index 0000000000000000000000000000000000000000..4f1f12756c8b6d414fe06483186face20778593e
--- /dev/null
+++ b/UyTube_mobile/src/java/logica/controladores/ValidarNuevaListaParticular.java
@@ -0,0 +1,79 @@
+
+package logica.controladores;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Clase Java para validarNuevaListaParticular complex type.
+ * 
+ * <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
+ * 
+ * <pre>
+ * &lt;complexType name="validarNuevaListaParticular">
+ *   &lt;complexContent>
+ *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       &lt;sequence>
+ *         &lt;element name="arg0" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         &lt;element name="arg1" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *       &lt;/sequence>
+ *     &lt;/restriction>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * 
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "validarNuevaListaParticular", propOrder = {
+    "arg0",
+    "arg1"
+})
+public class ValidarNuevaListaParticular {
+
+    protected String arg0;
+    protected int arg1;
+
+    /**
+     * Obtiene el valor de la propiedad arg0.
+     * 
+     * @return
+     *     possible object is
+     *     {@link String }
+     *     
+     */
+    public String getArg0() {
+        return arg0;
+    }
+
+    /**
+     * Define el valor de la propiedad arg0.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link String }
+     *     
+     */
+    public void setArg0(String value) {
+        this.arg0 = value;
+    }
+
+    /**
+     * Obtiene el valor de la propiedad arg1.
+     * 
+     */
+    public int getArg1() {
+        return arg1;
+    }
+
+    /**
+     * Define el valor de la propiedad arg1.
+     * 
+     */
+    public void setArg1(int value) {
+        this.arg1 = value;
+    }
+
+}
diff --git a/UyTube_mobile/src/java/logica/controladores/ValidarNuevaListaParticularResponse.class b/UyTube_mobile/src/java/logica/controladores/ValidarNuevaListaParticularResponse.class
new file mode 100644
index 0000000000000000000000000000000000000000..142a8db19f228e08b9ed500711e8261047ca2be8
Binary files /dev/null and b/UyTube_mobile/src/java/logica/controladores/ValidarNuevaListaParticularResponse.class differ
diff --git a/UyTube_mobile/src/java/logica/controladores/ValidarNuevaListaParticularResponse.java b/UyTube_mobile/src/java/logica/controladores/ValidarNuevaListaParticularResponse.java
new file mode 100644
index 0000000000000000000000000000000000000000..c609f85e9d689f649330a14511c0c9e3f3a58276
--- /dev/null
+++ b/UyTube_mobile/src/java/logica/controladores/ValidarNuevaListaParticularResponse.java
@@ -0,0 +1,54 @@
+
+package logica.controladores;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Clase Java para validarNuevaListaParticularResponse complex type.
+ * 
+ * <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
+ * 
+ * <pre>
+ * &lt;complexType name="validarNuevaListaParticularResponse">
+ *   &lt;complexContent>
+ *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       &lt;sequence>
+ *         &lt;element name="return" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
+ *       &lt;/sequence>
+ *     &lt;/restriction>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * 
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "validarNuevaListaParticularResponse", propOrder = {
+    "_return"
+})
+public class ValidarNuevaListaParticularResponse {
+
+    @XmlElement(name = "return")
+    protected boolean _return;
+
+    /**
+     * Obtiene el valor de la propiedad return.
+     * 
+     */
+    public boolean isReturn() {
+        return _return;
+    }
+
+    /**
+     * Define el valor de la propiedad return.
+     * 
+     */
+    public void setReturn(boolean value) {
+        this._return = value;
+    }
+
+}
diff --git a/UyTube_mobile/src/java/logica/controladores/ValidarNuevoVideo.class b/UyTube_mobile/src/java/logica/controladores/ValidarNuevoVideo.class
new file mode 100644
index 0000000000000000000000000000000000000000..00e8fdbe3bc603582e40ee940028101f16eee9b4
Binary files /dev/null and b/UyTube_mobile/src/java/logica/controladores/ValidarNuevoVideo.class differ
diff --git a/UyTube_mobile/src/java/logica/controladores/ValidarNuevoVideo.java b/UyTube_mobile/src/java/logica/controladores/ValidarNuevoVideo.java
new file mode 100644
index 0000000000000000000000000000000000000000..b157ba74fe2b138fd65d31bfda8c8ca825f18ea7
--- /dev/null
+++ b/UyTube_mobile/src/java/logica/controladores/ValidarNuevoVideo.java
@@ -0,0 +1,79 @@
+
+package logica.controladores;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Clase Java para validarNuevoVideo complex type.
+ * 
+ * <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
+ * 
+ * <pre>
+ * &lt;complexType name="validarNuevoVideo">
+ *   &lt;complexContent>
+ *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       &lt;sequence>
+ *         &lt;element name="arg0" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         &lt;element name="arg1" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *       &lt;/sequence>
+ *     &lt;/restriction>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * 
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "validarNuevoVideo", propOrder = {
+    "arg0",
+    "arg1"
+})
+public class ValidarNuevoVideo {
+
+    protected String arg0;
+    protected int arg1;
+
+    /**
+     * Obtiene el valor de la propiedad arg0.
+     * 
+     * @return
+     *     possible object is
+     *     {@link String }
+     *     
+     */
+    public String getArg0() {
+        return arg0;
+    }
+
+    /**
+     * Define el valor de la propiedad arg0.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link String }
+     *     
+     */
+    public void setArg0(String value) {
+        this.arg0 = value;
+    }
+
+    /**
+     * Obtiene el valor de la propiedad arg1.
+     * 
+     */
+    public int getArg1() {
+        return arg1;
+    }
+
+    /**
+     * Define el valor de la propiedad arg1.
+     * 
+     */
+    public void setArg1(int value) {
+        this.arg1 = value;
+    }
+
+}
diff --git a/UyTube_mobile/src/java/logica/controladores/ValidarNuevoVideoResponse.class b/UyTube_mobile/src/java/logica/controladores/ValidarNuevoVideoResponse.class
new file mode 100644
index 0000000000000000000000000000000000000000..e03f71327d1b35d9d4401f654b25911e87ff9025
Binary files /dev/null and b/UyTube_mobile/src/java/logica/controladores/ValidarNuevoVideoResponse.class differ
diff --git a/UyTube_mobile/src/java/logica/controladores/ValidarNuevoVideoResponse.java b/UyTube_mobile/src/java/logica/controladores/ValidarNuevoVideoResponse.java
new file mode 100644
index 0000000000000000000000000000000000000000..ed9cbe970d96a6a4179b5991b73de56397b88239
--- /dev/null
+++ b/UyTube_mobile/src/java/logica/controladores/ValidarNuevoVideoResponse.java
@@ -0,0 +1,54 @@
+
+package logica.controladores;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Clase Java para validarNuevoVideoResponse complex type.
+ * 
+ * <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
+ * 
+ * <pre>
+ * &lt;complexType name="validarNuevoVideoResponse">
+ *   &lt;complexContent>
+ *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       &lt;sequence>
+ *         &lt;element name="return" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
+ *       &lt;/sequence>
+ *     &lt;/restriction>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * 
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "validarNuevoVideoResponse", propOrder = {
+    "_return"
+})
+public class ValidarNuevoVideoResponse {
+
+    @XmlElement(name = "return")
+    protected boolean _return;
+
+    /**
+     * Obtiene el valor de la propiedad return.
+     * 
+     */
+    public boolean isReturn() {
+        return _return;
+    }
+
+    /**
+     * Define el valor de la propiedad return.
+     * 
+     */
+    public void setReturn(boolean value) {
+        this._return = value;
+    }
+
+}
diff --git a/UyTube_mobile/src/java/logica/controladores/ValorarVideo.class b/UyTube_mobile/src/java/logica/controladores/ValorarVideo.class
new file mode 100644
index 0000000000000000000000000000000000000000..d3bf0657764ceeb9d6b16e72b1b76b1207580de4
Binary files /dev/null and b/UyTube_mobile/src/java/logica/controladores/ValorarVideo.class differ
diff --git a/UyTube_mobile/src/java/logica/controladores/ValorarVideo.java b/UyTube_mobile/src/java/logica/controladores/ValorarVideo.java
new file mode 100644
index 0000000000000000000000000000000000000000..89c5cfdd8c40545540fca95657d3a3b6437af0bf
--- /dev/null
+++ b/UyTube_mobile/src/java/logica/controladores/ValorarVideo.java
@@ -0,0 +1,60 @@
+
+package logica.controladores;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Clase Java para valorarVideo complex type.
+ * 
+ * <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
+ * 
+ * <pre>
+ * &lt;complexType name="valorarVideo">
+ *   &lt;complexContent>
+ *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       &lt;sequence>
+ *         &lt;element name="arg0" type="{http://Controladores.Logica/}dtValoracion" minOccurs="0"/>
+ *       &lt;/sequence>
+ *     &lt;/restriction>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * 
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "valorarVideo", propOrder = {
+    "arg0"
+})
+public class ValorarVideo {
+
+    protected DtValoracion arg0;
+
+    /**
+     * Obtiene el valor de la propiedad arg0.
+     * 
+     * @return
+     *     possible object is
+     *     {@link DtValoracion }
+     *     
+     */
+    public DtValoracion getArg0() {
+        return arg0;
+    }
+
+    /**
+     * Define el valor de la propiedad arg0.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link DtValoracion }
+     *     
+     */
+    public void setArg0(DtValoracion value) {
+        this.arg0 = value;
+    }
+
+}
diff --git a/UyTube_mobile/src/java/logica/controladores/ValorarVideoResponse.class b/UyTube_mobile/src/java/logica/controladores/ValorarVideoResponse.class
new file mode 100644
index 0000000000000000000000000000000000000000..68859781d731368beee8d4946d97502af1bd204e
Binary files /dev/null and b/UyTube_mobile/src/java/logica/controladores/ValorarVideoResponse.class differ
diff --git a/UyTube_mobile/src/java/logica/controladores/ValorarVideoResponse.java b/UyTube_mobile/src/java/logica/controladores/ValorarVideoResponse.java
new file mode 100644
index 0000000000000000000000000000000000000000..f3c4be704c81d30f40d0bcb2e9a3c79f4cc5d42f
--- /dev/null
+++ b/UyTube_mobile/src/java/logica/controladores/ValorarVideoResponse.java
@@ -0,0 +1,32 @@
+
+package logica.controladores;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Clase Java para valorarVideoResponse complex type.
+ * 
+ * <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
+ * 
+ * <pre>
+ * &lt;complexType name="valorarVideoResponse">
+ *   &lt;complexContent>
+ *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       &lt;sequence>
+ *       &lt;/sequence>
+ *     &lt;/restriction>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * 
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "valorarVideoResponse")
+public class ValorarVideoResponse {
+
+
+}
diff --git a/UyTube_mobile/src/java/logica/controladores/package-info.class b/UyTube_mobile/src/java/logica/controladores/package-info.class
new file mode 100644
index 0000000000000000000000000000000000000000..88fa14265a3289e23580635c65aa70fecb490b40
Binary files /dev/null and b/UyTube_mobile/src/java/logica/controladores/package-info.class differ
diff --git a/UyTube_mobile/src/java/logica/controladores/package-info.java b/UyTube_mobile/src/java/logica/controladores/package-info.java
new file mode 100644
index 0000000000000000000000000000000000000000..d96fbc7e913de0010ab062616852b47a5f67905e
--- /dev/null
+++ b/UyTube_mobile/src/java/logica/controladores/package-info.java
@@ -0,0 +1,2 @@
+@javax.xml.bind.annotation.XmlSchema(namespace = "http://Controladores.Logica/")
+package logica.controladores;
diff --git a/UyTube_mobile/web/401.jsp b/UyTube_mobile/web/401.jsp
new file mode 100644
index 0000000000000000000000000000000000000000..da821411552e06b706973c518f8512a84a4d2609
--- /dev/null
+++ b/UyTube_mobile/web/401.jsp
@@ -0,0 +1,286 @@
+<%-- 
+    Document   : 404_2
+    Created on : 12/10/2019, 04:17:57 AM
+    Author     : Carlos BM
+--%>
+
+<%@page contentType="text/html" pageEncoding="UTF-8"%>
+<!DOCTYPE html>
+<html lang="es">
+    <head>
+        <meta charset="UTF-8">
+        <meta http-equiv="X-UA-Compatible" content="IE=edge">
+        <meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
+        <link rel="stylesheet" type="text/css" href="css/bootstrap.css">
+        <link rel="stylesheet" type="text/css" href="iconos/style.css">
+        <link rel="icon" type="image/png" href="imagenes/icono.png" />
+        <title>UyTube - 401</title>
+        
+    <style>
+        *
+        {
+            font-family: 'PT Sans Caption', sans-serif, 'arial', 'Times New Roman';
+        }
+
+        /* Error Page */
+        .error .clip .shadow
+        {
+            height: 180px;  /*Contrall*/
+        }
+        .error .clip:nth-of-type(2) .shadow
+        {
+            width: 130px;   /*Contrall play with javascript*/ 
+        }
+        .error .clip:nth-of-type(1) .shadow, .error .clip:nth-of-type(3) .shadow
+        {
+            width: 250px; /*Contrall*/
+        }
+        .error .digit
+        {
+            width: 150px;   /*Contrall*/
+            height: 150px;  /*Contrall*/
+            line-height: 150px; /*Contrall*/
+            font-size: 120px;
+            font-weight: bold;
+        }
+        .error h2   /*Contrall*/
+        {
+            font-size: 32px;
+        }
+        .error .msg /*Contrall*/
+        {
+            top: -190px;
+            left: 30%;
+            width: 80px;
+            height: 80px;
+            line-height: 80px;
+            font-size: 32px;
+        }
+        .error span.triangle    /*Contrall*/
+        {
+            top: 70%;
+            right: 0%;
+            border-left: 20px solid #535353; /*triandulito del uy*/
+            border-top: 15px solid transparent;
+            border-bottom: 15px solid transparent;
+        }
+
+
+        .error .container-error-404
+        {
+            margin-top: 10%;
+            position: relative;
+            height: 250px;
+            padding-top: 40px;
+        }
+        .error .container-error-404 .clip
+        {
+            display: inline-block;
+            transform: skew(-45deg);
+        }
+        .error .clip .shadow
+        {
+
+            overflow: hidden;
+        }
+        .error .clip:nth-of-type(2) .shadow
+        {
+            overflow: hidden;
+            position: relative;
+            box-shadow: inset 20px 0px 20px -15px rgba(150, 150, 150,0.8), 20px 0px 20px -15px rgba(150, 150, 150,0.8);
+        }
+
+        .error .clip:nth-of-type(3) .shadow:after, .error .clip:nth-of-type(1) .shadow:after
+        {
+            content: "";
+            position: absolute;
+            right: -8px;
+            bottom: 0px;
+            z-index: 9999;
+            height: 100%;
+            width: 10px;
+            background: linear-gradient(90deg, transparent, rgba(173,173,173, 0.8), transparent);
+            border-radius: 50%;
+        }
+        .error .clip:nth-of-type(3) .shadow:after
+        {
+            left: -8px;
+        }
+        .error .digit
+        {
+            position: relative;
+            top: 8%;
+            color: white;
+            background: #f5360d;  /* fondo de los circulos*/
+            border-radius: 50%;
+            display: inline-block;
+            transform: skew(45deg);
+        }
+        .error .clip:nth-of-type(2) .digit
+        {
+            left: -10%;
+        }
+        .error .clip:nth-of-type(1) .digit
+        {
+            right: -20%;
+        }.error .clip:nth-of-type(3) .digit
+        {
+            left: -20%;
+        }    
+        .error h2
+        {
+            color: #A2A2A2; /*uy tube se cayó*/
+            font-weight: bold;
+            padding-bottom: 20px;
+        }
+        .error .msg
+        {
+            position: relative;
+            z-index: 9999;
+            display: block;
+            background: #535353; /*logo*/
+            color: #A2A2A2; /*uy*/
+            border-radius: 50%;
+            font-style: italic;
+        }
+        .error .triangle
+        {
+            position: absolute;
+            z-index: 999;
+            transform: rotate(45deg);
+            content: "";
+            width: 0; 
+            height: 0; 
+        }
+
+        /* Error Page */
+        @media(max-width: 767px)
+        {
+            /* Error Page */
+            .error .clip .shadow
+            {
+                height: 100px;  /*Contrall*/
+            }
+            .error .clip:nth-of-type(2) .shadow
+            {
+                width: 80px;   /*Contrall play with javascript*/ 
+            }
+            .error .clip:nth-of-type(1) .shadow, .error .clip:nth-of-type(3) .shadow
+            {
+                width: 100px; /*Contrall*/
+            }
+            .error .digit
+            {
+                width: 80px;   /*Contrall*/
+                height: 80px;  /*Contrall*/
+                line-height: 80px; /*Contrall*/
+                font-size: 52px;
+            }
+            .error h2   /*Contrall*/
+            {
+                font-size: 24px;
+            }
+            .error .msg /*Contrall*/
+            {
+                top: -110px;
+                left: 15%;
+                width: 40px;
+                height: 40px;
+                line-height: 40px;
+                font-size: 18px;
+            }
+            .error span.triangle    /*Contrall*/
+            {
+                top: 70%;
+                right: -3%;
+                border-left: 10px solid #535353; /*no se*/
+                border-top: 8px solid transparent;
+                border-bottom: 8px solid transparent;
+            }
+            .error .container-error-404
+            {
+                height: 150px;
+            }
+            /* Error Page */
+        }
+
+        /*--------------------------------------------Framework --------------------------------*/
+
+        .overlay { position: relative; z-index: 20; } /*done*/
+        .ground-color { background: white; }  /*done*/
+        .item-bg-color { background: #EAEAEA } /*done*/
+
+        /* Padding Section*/
+        .padding-top { padding-top: 10px; } /*done*/
+        .padding-bottom { padding-bottom: 10px; }   /*done*/
+        .padding-vertical { padding-top: 10px; padding-bottom: 10px; }
+        .padding-horizontal { padding-left: 10px; padding-right: 10px; }
+        .padding-all { padding: 10px; }   /*done*/
+
+        .no-padding-left { padding-left: 0px; }    /*done*/
+        .no-padding-right { padding-right: 0px; }   /*done*/
+        .no-vertical-padding { padding-top: 0px; padding-bottom: 0px; }
+        .no-horizontal-padding { padding-left: 0px; padding-right: 0px; }
+        .no-padding { padding: 0px; }   /*done*/
+        /* Padding Section*/
+
+        /* Margin section */
+        .margin-top { margin-top: 10px; }   /*done*/
+        .margin-bottom { margin-bottom: 10px; } /*done*/
+        .margin-right { margin-right: 10px; } /*done*/
+        .margin-left { margin-left: 10px; } /*done*/
+        .margin-horizontal { margin-left: 10px; margin-right: 10px; } /*done*/
+        .margin-vertical { margin-top: 10px; margin-bottom: 10px; } /*done*/
+        .margin-all { margin: 10px; }   /*done*/
+        .no-margin { margin: 0px; }   /*done*/
+
+        .no-vertical-margin { margin-top: 0px; margin-bottom: 0px; }
+        .no-horizontal-margin { margin-left: 0px; margin-right: 0px; }
+
+        .inside-col-shrink { margin: 0px 20px; }    /*done - For the inside sections that has also Title section*/ 
+        /* Margin section */
+
+        hr
+        { margin: 0px; padding: 0px; border-top: 1px dashed #999; }
+        /*--------------------------------------------FrameWork------------------------*/
+    </style>
+</head>
+
+<body>
+
+    <!-- Error Page -->
+    <div class="error">
+        <div class="container-floud">
+            <div class="col-xs-12 ground-color text-center">
+                <div class="container-error-404">
+                    <div class="clip"><div class="shadow"><span class="digit thirdDigit">4</span></div></div>
+                    <div class="clip"><div class="shadow"><span class="digit secondDigit">0</span></div></div>
+                    <div class="clip"><div class="shadow"><span class="digit firstDigit">1</span></div></div>
+                    <div class="msg">Uy!<span class="triangle"></span></div>
+                </div>
+                <h2 class="h1">¡Uy!, parece que este mate no es tuyo</h2>
+                <%
+                    String mensajeError = (String) request.getAttribute("mensajeError");
+                    if (mensajeError != null){
+                        String msj = "";
+                        for (int idx = 0; idx < mensajeError.length(); idx++) {
+                            if (mensajeError.charAt(idx) == '\n'){
+                                break;
+                            }
+                            msj += mensajeError.charAt(idx);
+                        }
+                %>
+                <h2 class="h1" style="font-size: 20px;"><%= msj %></h2>
+                <%
+                    }
+                %>
+                
+                <h2 class="h1">
+                    <a href="presentacion">Ir al inicio</a>
+                </h2>
+            </div>
+        </div>
+    </div>
+    <!-- Error Page -->
+</body>
+</html>
\ No newline at end of file
diff --git a/UyTube_mobile/web/404.jsp b/UyTube_mobile/web/404.jsp
new file mode 100644
index 0000000000000000000000000000000000000000..c9f47ec9bb35f57d3c3d8474aef1388a112c7511
--- /dev/null
+++ b/UyTube_mobile/web/404.jsp
@@ -0,0 +1,286 @@
+<%-- 
+    Document   : 404_2
+    Created on : 12/10/2019, 04:17:57 AM
+    Author     : Carlos BM
+--%>
+
+<%@page contentType="text/html" pageEncoding="UTF-8"%>
+<!DOCTYPE html>
+<html lang="es">
+    <head>
+        <meta charset="UTF-8">
+        <meta http-equiv="X-UA-Compatible" content="IE=edge">
+        <meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
+        <link rel="stylesheet" type="text/css" href="css/bootstrap.css">
+        <link rel="stylesheet" type="text/css" href="iconos/style.css">
+        <link rel="icon" type="image/png" href="imagenes/icono.png" />
+        <title>UyTube - 404</title>
+        
+    <style>
+        *
+        {
+            font-family: 'PT Sans Caption', sans-serif, 'arial', 'Times New Roman';
+        }
+
+        /* Error Page */
+        .error .clip .shadow
+        {
+            height: 180px;  /*Contrall*/
+        }
+        .error .clip:nth-of-type(2) .shadow
+        {
+            width: 130px;   /*Contrall play with javascript*/ 
+        }
+        .error .clip:nth-of-type(1) .shadow, .error .clip:nth-of-type(3) .shadow
+        {
+            width: 250px; /*Contrall*/
+        }
+        .error .digit
+        {
+            width: 150px;   /*Contrall*/
+            height: 150px;  /*Contrall*/
+            line-height: 150px; /*Contrall*/
+            font-size: 120px;
+            font-weight: bold;
+        }
+        .error h2   /*Contrall*/
+        {
+            font-size: 32px;
+        }
+        .error .msg /*Contrall*/
+        {
+            top: -190px;
+            left: 30%;
+            width: 80px;
+            height: 80px;
+            line-height: 80px;
+            font-size: 32px;
+        }
+        .error span.triangle    /*Contrall*/
+        {
+            top: 70%;
+            right: 0%;
+            border-left: 20px solid #535353; /*triandulito del uy*/
+            border-top: 15px solid transparent;
+            border-bottom: 15px solid transparent;
+        }
+
+
+        .error .container-error-404
+        {
+            margin-top: 10%;
+            position: relative;
+            height: 250px;
+            padding-top: 40px;
+        }
+        .error .container-error-404 .clip
+        {
+            display: inline-block;
+            transform: skew(-45deg);
+        }
+        .error .clip .shadow
+        {
+
+            overflow: hidden;
+        }
+        .error .clip:nth-of-type(2) .shadow
+        {
+            overflow: hidden;
+            position: relative;
+            box-shadow: inset 20px 0px 20px -15px rgba(150, 150, 150,0.8), 20px 0px 20px -15px rgba(150, 150, 150,0.8);
+        }
+
+        .error .clip:nth-of-type(3) .shadow:after, .error .clip:nth-of-type(1) .shadow:after
+        {
+            content: "";
+            position: absolute;
+            right: -8px;
+            bottom: 0px;
+            z-index: 9999;
+            height: 100%;
+            width: 10px;
+            background: linear-gradient(90deg, transparent, rgba(173,173,173, 0.8), transparent);
+            border-radius: 50%;
+        }
+        .error .clip:nth-of-type(3) .shadow:after
+        {
+            left: -8px;
+        }
+        .error .digit
+        {
+            position: relative;
+            top: 8%;
+            color: white;
+            background: #1870FF;  /* fondo de los circulos*/
+            border-radius: 50%;
+            display: inline-block;
+            transform: skew(45deg);
+        }
+        .error .clip:nth-of-type(2) .digit
+        {
+            left: -10%;
+        }
+        .error .clip:nth-of-type(1) .digit
+        {
+            right: -20%;
+        }.error .clip:nth-of-type(3) .digit
+        {
+            left: -20%;
+        }    
+        .error h2
+        {
+            color: #A2A2A2; /*uy tube se cayó*/
+            font-weight: bold;
+            padding-bottom: 20px;
+        }
+        .error .msg
+        {
+            position: relative;
+            z-index: 9999;
+            display: block;
+            background: #535353; /*logo*/
+            color: #A2A2A2; /*uy*/
+            border-radius: 50%;
+            font-style: italic;
+        }
+        .error .triangle
+        {
+            position: absolute;
+            z-index: 999;
+            transform: rotate(45deg);
+            content: "";
+            width: 0; 
+            height: 0; 
+        }
+
+        /* Error Page */
+        @media(max-width: 767px)
+        {
+            /* Error Page */
+            .error .clip .shadow
+            {
+                height: 100px;  /*Contrall*/
+            }
+            .error .clip:nth-of-type(2) .shadow
+            {
+                width: 80px;   /*Contrall play with javascript*/ 
+            }
+            .error .clip:nth-of-type(1) .shadow, .error .clip:nth-of-type(3) .shadow
+            {
+                width: 100px; /*Contrall*/
+            }
+            .error .digit
+            {
+                width: 80px;   /*Contrall*/
+                height: 80px;  /*Contrall*/
+                line-height: 80px; /*Contrall*/
+                font-size: 52px;
+            }
+            .error h2   /*Contrall*/
+            {
+                font-size: 24px;
+            }
+            .error .msg /*Contrall*/
+            {
+                top: -110px;
+                left: 15%;
+                width: 40px;
+                height: 40px;
+                line-height: 40px;
+                font-size: 18px;
+            }
+            .error span.triangle    /*Contrall*/
+            {
+                top: 70%;
+                right: -3%;
+                border-left: 10px solid #535353; /*no se*/
+                border-top: 8px solid transparent;
+                border-bottom: 8px solid transparent;
+            }
+            .error .container-error-404
+            {
+                height: 150px;
+            }
+            /* Error Page */
+        }
+
+        /*--------------------------------------------Framework --------------------------------*/
+
+        .overlay { position: relative; z-index: 20; } /*done*/
+        .ground-color { background: white; }  /*done*/
+        .item-bg-color { background: #EAEAEA } /*done*/
+
+        /* Padding Section*/
+        .padding-top { padding-top: 10px; } /*done*/
+        .padding-bottom { padding-bottom: 10px; }   /*done*/
+        .padding-vertical { padding-top: 10px; padding-bottom: 10px; }
+        .padding-horizontal { padding-left: 10px; padding-right: 10px; }
+        .padding-all { padding: 10px; }   /*done*/
+
+        .no-padding-left { padding-left: 0px; }    /*done*/
+        .no-padding-right { padding-right: 0px; }   /*done*/
+        .no-vertical-padding { padding-top: 0px; padding-bottom: 0px; }
+        .no-horizontal-padding { padding-left: 0px; padding-right: 0px; }
+        .no-padding { padding: 0px; }   /*done*/
+        /* Padding Section*/
+
+        /* Margin section */
+        .margin-top { margin-top: 10px; }   /*done*/
+        .margin-bottom { margin-bottom: 10px; } /*done*/
+        .margin-right { margin-right: 10px; } /*done*/
+        .margin-left { margin-left: 10px; } /*done*/
+        .margin-horizontal { margin-left: 10px; margin-right: 10px; } /*done*/
+        .margin-vertical { margin-top: 10px; margin-bottom: 10px; } /*done*/
+        .margin-all { margin: 10px; }   /*done*/
+        .no-margin { margin: 0px; }   /*done*/
+
+        .no-vertical-margin { margin-top: 0px; margin-bottom: 0px; }
+        .no-horizontal-margin { margin-left: 0px; margin-right: 0px; }
+
+        .inside-col-shrink { margin: 0px 20px; }    /*done - For the inside sections that has also Title section*/ 
+        /* Margin section */
+
+        hr
+        { margin: 0px; padding: 0px; border-top: 1px dashed #999; }
+        /*--------------------------------------------FrameWork------------------------*/
+    </style>
+</head>
+
+<body>
+
+    <!-- Error Page -->
+    <div class="error">
+        <div class="container-floud">
+            <div class="col-xs-12 ground-color text-center">
+                <div class="container-error-404">
+                    <div class="clip"><div class="shadow"><span class="digit thirdDigit">4</span></div></div>
+                    <div class="clip"><div class="shadow"><span class="digit secondDigit">0</span></div></div>
+                    <div class="clip"><div class="shadow"><span class="digit firstDigit">4</span></div></div>
+                    <div class="msg">Uy!<span class="triangle"></span></div>
+                </div>
+                <h2 class="h1">¡Uy!, no encontramos esta página</h2>
+                <%
+                    String mensajeError = (String) request.getAttribute("mensajeError");
+                    if (mensajeError != null){
+                        String msj = "";
+                        for (int idx = 0; idx < mensajeError.length(); idx++) {
+                            if (mensajeError.charAt(idx) == '\n'){
+                                break;
+                            }
+                            msj += mensajeError.charAt(idx);
+                        }
+                %>
+                <h2 class="h1" style="font-size: 20px;"><%= msj %></h2>
+                <%
+                    }
+                %>
+                
+                <h2 class="h1">
+                    <a href="presentacion">Ir al inicio</a>
+                </h2>
+            </div>
+        </div>
+    </div>
+    <!-- Error Page -->
+</body>
+</html>
\ No newline at end of file
diff --git a/UyTube_mobile/web/500.jsp b/UyTube_mobile/web/500.jsp
new file mode 100644
index 0000000000000000000000000000000000000000..9c8cebc780d1f002407101e44edf0ffef776827a
--- /dev/null
+++ b/UyTube_mobile/web/500.jsp
@@ -0,0 +1,270 @@
+<%-- 
+    Document   : 404_2
+    Created on : 12/10/2019, 04:17:57 AM
+    Author     : Carlos BM
+--%>
+
+<%@page contentType="text/html" pageEncoding="UTF-8"%>
+<!DOCTYPE html>
+<html lang="es">
+    <head>
+        <meta charset="UTF-8">
+        <meta http-equiv="X-UA-Compatible" content="IE=edge">
+        <meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
+        <link rel="stylesheet" type="text/css" href="css/bootstrap.css">
+        <link rel="stylesheet" type="text/css" href="iconos/style.css">
+        <link rel="icon" type="image/png" href="imagenes/icono.png" />
+        <title>UyTube - 500</title>
+        
+    <style>
+        *
+        {
+            font-family: 'PT Sans Caption', sans-serif, 'arial', 'Times New Roman';
+        }
+
+        /* Error Page */
+        .error .clip .shadow
+        {
+            height: 180px;  /*Contrall*/
+        }
+        .error .clip:nth-of-type(2) .shadow
+        {
+            width: 130px;   /*Contrall play with javascript*/ 
+        }
+        .error .clip:nth-of-type(1) .shadow, .error .clip:nth-of-type(3) .shadow
+        {
+            width: 250px; /*Contrall*/
+        }
+        .error .digit
+        {
+            width: 150px;   /*Contrall*/
+            height: 150px;  /*Contrall*/
+            line-height: 150px; /*Contrall*/
+            font-size: 120px;
+            font-weight: bold;
+        }
+        .error h2   /*Contrall*/
+        {
+            font-size: 32px;
+        }
+        .error .msg /*Contrall*/
+        {
+            top: -190px;
+            left: 30%;
+            width: 80px;
+            height: 80px;
+            line-height: 80px;
+            font-size: 32px;
+        }
+        .error span.triangle    /*Contrall*/
+        {
+            top: 70%;
+            right: 0%;
+            border-left: 20px solid #535353; /*triandulito del uy*/
+            border-top: 15px solid transparent;
+            border-bottom: 15px solid transparent;
+        }
+
+
+        .error .container-error-404
+        {
+            margin-top: 10%;
+            position: relative;
+            height: 250px;
+            padding-top: 40px;
+        }
+        .error .container-error-404 .clip
+        {
+            display: inline-block;
+            transform: skew(-45deg);
+        }
+        .error .clip .shadow
+        {
+
+            overflow: hidden;
+        }
+        .error .clip:nth-of-type(2) .shadow
+        {
+            overflow: hidden;
+            position: relative;
+            box-shadow: inset 20px 0px 20px -15px rgba(150, 150, 150,0.8), 20px 0px 20px -15px rgba(150, 150, 150,0.8);
+        }
+
+        .error .clip:nth-of-type(3) .shadow:after, .error .clip:nth-of-type(1) .shadow:after
+        {
+            content: "";
+            position: absolute;
+            right: -8px;
+            bottom: 0px;
+            z-index: 9999;
+            height: 100%;
+            width: 10px;
+            background: linear-gradient(90deg, transparent, rgba(173,173,173, 0.8), transparent);
+            border-radius: 50%;
+        }
+        .error .clip:nth-of-type(3) .shadow:after
+        {
+            left: -8px;
+        }
+        .error .digit
+        {
+            position: relative;
+            top: 8%;
+            color: white;
+            background: #9d24b6;  /* fondo de los circulos*/
+            border-radius: 50%;
+            display: inline-block;
+            transform: skew(45deg);
+        }
+        .error .clip:nth-of-type(2) .digit
+        {
+            left: -10%;
+        }
+        .error .clip:nth-of-type(1) .digit
+        {
+            right: -20%;
+        }.error .clip:nth-of-type(3) .digit
+        {
+            left: -20%;
+        }    
+        .error h2
+        {
+            color: #A2A2A2; /*uy tube se cayó*/
+            font-weight: bold;
+            padding-bottom: 20px;
+        }
+        .error .msg
+        {
+            position: relative;
+            z-index: 9999;
+            display: block;
+            background: #535353; /*logo*/
+            color: #A2A2A2; /*uy*/
+            border-radius: 50%;
+            font-style: italic;
+        }
+        .error .triangle
+        {
+            position: absolute;
+            z-index: 999;
+            transform: rotate(45deg);
+            content: "";
+            width: 0; 
+            height: 0; 
+        }
+
+        /* Error Page */
+        @media(max-width: 767px)
+        {
+            /* Error Page */
+            .error .clip .shadow
+            {
+                height: 100px;  /*Contrall*/
+            }
+            .error .clip:nth-of-type(2) .shadow
+            {
+                width: 80px;   /*Contrall play with javascript*/ 
+            }
+            .error .clip:nth-of-type(1) .shadow, .error .clip:nth-of-type(3) .shadow
+            {
+                width: 100px; /*Contrall*/
+            }
+            .error .digit
+            {
+                width: 80px;   /*Contrall*/
+                height: 80px;  /*Contrall*/
+                line-height: 80px; /*Contrall*/
+                font-size: 52px;
+            }
+            .error h2   /*Contrall*/
+            {
+                font-size: 24px;
+            }
+            .error .msg /*Contrall*/
+            {
+                top: -110px;
+                left: 15%;
+                width: 40px;
+                height: 40px;
+                line-height: 40px;
+                font-size: 18px;
+            }
+            .error span.triangle    /*Contrall*/
+            {
+                top: 70%;
+                right: -3%;
+                border-left: 10px solid #535353; /*no se*/
+                border-top: 8px solid transparent;
+                border-bottom: 8px solid transparent;
+            }
+            .error .container-error-404
+            {
+                height: 150px;
+            }
+            /* Error Page */
+        }
+
+        /*--------------------------------------------Framework --------------------------------*/
+
+        .overlay { position: relative; z-index: 20; } /*done*/
+        .ground-color { background: white; }  /*done*/
+        .item-bg-color { background: #EAEAEA } /*done*/
+
+        /* Padding Section*/
+        .padding-top { padding-top: 10px; } /*done*/
+        .padding-bottom { padding-bottom: 10px; }   /*done*/
+        .padding-vertical { padding-top: 10px; padding-bottom: 10px; }
+        .padding-horizontal { padding-left: 10px; padding-right: 10px; }
+        .padding-all { padding: 10px; }   /*done*/
+
+        .no-padding-left { padding-left: 0px; }    /*done*/
+        .no-padding-right { padding-right: 0px; }   /*done*/
+        .no-vertical-padding { padding-top: 0px; padding-bottom: 0px; }
+        .no-horizontal-padding { padding-left: 0px; padding-right: 0px; }
+        .no-padding { padding: 0px; }   /*done*/
+        /* Padding Section*/
+
+        /* Margin section */
+        .margin-top { margin-top: 10px; }   /*done*/
+        .margin-bottom { margin-bottom: 10px; } /*done*/
+        .margin-right { margin-right: 10px; } /*done*/
+        .margin-left { margin-left: 10px; } /*done*/
+        .margin-horizontal { margin-left: 10px; margin-right: 10px; } /*done*/
+        .margin-vertical { margin-top: 10px; margin-bottom: 10px; } /*done*/
+        .margin-all { margin: 10px; }   /*done*/
+        .no-margin { margin: 0px; }   /*done*/
+
+        .no-vertical-margin { margin-top: 0px; margin-bottom: 0px; }
+        .no-horizontal-margin { margin-left: 0px; margin-right: 0px; }
+
+        .inside-col-shrink { margin: 0px 20px; }    /*done - For the inside sections that has also Title section*/ 
+        /* Margin section */
+
+        hr
+        { margin: 0px; padding: 0px; border-top: 1px dashed #999; }
+        /*--------------------------------------------FrameWork------------------------*/
+    </style>
+</head>
+
+<body>
+
+    <!-- Error Page -->
+    <div class="error">
+        <div class="container-floud">
+            <div class="col-xs-12 ground-color text-center">
+                <div class="container-error-404">
+                    <div class="clip"><div class="shadow"><span class="digit thirdDigit">5</span></div></div>
+                    <div class="clip"><div class="shadow"><span class="digit secondDigit">0</span></div></div>
+                    <div class="clip"><div class="shadow"><span class="digit firstDigit">0</span></div></div>
+                    <div class="msg">Uy!<span class="triangle"></span></div>
+                </div>
+                <h2 class="h1">¡Uy!, parece que se nos cayó yerba en el servidor</h2>
+                <h2 class="h1">
+                    <a href="presentacion">Ir al inicio</a>
+                </h2>
+            </div>
+        </div>
+    </div>
+    <!-- Error Page -->
+</body>
+</html>
\ No newline at end of file
diff --git a/UyTube_mobile/web/AltaListaReproduccion.jsp b/UyTube_mobile/web/AltaListaReproduccion.jsp
new file mode 100644
index 0000000000000000000000000000000000000000..61b75a8ffcf335bbefa9ddf2cc14c242527b515b
--- /dev/null
+++ b/UyTube_mobile/web/AltaListaReproduccion.jsp
@@ -0,0 +1,150 @@
+<%-- 
+    Document   : ConsultaUsuario
+    Created on : 07/10/2019, 01:25:13 AM
+    Author     : administrador
+--%>
+
+<%@page import="java.util.ArrayList"%>
+<%@page contentType="text/html" pageEncoding="UTF-8"%>
+<!DOCTYPE html>
+<html lang="es">
+    <%
+        boolean sesionIniciada = (boolean) (request.getSession().getAttribute("usuario") != null);
+        ArrayList<String> Categorias = (ArrayList) request.getAttribute("Categorias");
+    %>
+    <head>
+        <meta charset="UTF-8">
+        <meta http-equiv="X-UA-Compatible" content="IE=edge">
+        <meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
+        <link rel="stylesheet" type="text/css" href="css/bootstrap.css">
+        <link rel="stylesheet" type="text/css" href="css/body.css">
+        <link rel="stylesheet" type="text/css" href="css/header.css">
+        <link rel="stylesheet" type="text/css" href="css/menu.css">
+        <link rel="stylesheet" type="text/css" href="css/widget.css">
+        <link rel="stylesheet" type="text/css" href="css/footer.css">
+        <link rel="stylesheet" type="text/css" href="css/contenido-alta-lista.css">
+        <link rel="stylesheet" type="text/css" href="iconos/style.css">
+        <link rel="icon" type="image/png" href="imagenes/icono.png" />
+        <title>UyTube - Nueva Lista</title>
+    </head>
+    <body>
+
+        <div class="container-fluid" style="padding-left: 0; padding-right: 0px;">
+            <div class="row">
+                <div class="col-12">
+                    <!-- Inclusion de la barra superior -->
+                    <%
+                        if (sesionIniciada) {
+                    %>
+                    <jsp:include page="include/header-usuario.jsp" />
+                    <%                    } else {
+                    %>
+                    <jsp:include page="include/header-visitante.jsp" />
+                    <%
+                        }
+                    %>
+                </div>
+            </div>		
+        </div>
+        <div class="container-fluid" style="padding-left: 0; padding-right: 0px;">
+            <div class="row">
+                <div class="col-12">
+                    <div class="relleno-header"></div>
+                </div>
+            </div>
+        </div>
+        <div class="container-fluid" style="padding-left: 0; padding-right: 0px;">
+            <div class="row">
+                <div class="col-12">
+                    <section class="principal">	
+                        <!-- Inclusion del menu lateral -->
+                        <%
+                            if (sesionIniciada) {
+                        %>
+                        <jsp:include page="include/menu-usuario.jsp" />
+                        <%                        } else {
+                        %>
+                        <jsp:include page="include/menu-visitante.jsp" />
+                        <%
+                            }
+                        %>
+                        <div class="contenido">
+                            <section class="contenido-flexible">								
+                                <div class="container">
+
+                                    <!-- Agregar Listas-->
+                                    <div class="">
+                                        <form class="form-signin" action="lista-agregar" method="post">
+                                            <br>
+                                            <br>
+                                            <h1 class="h3 mb-4 font-weight-normal" id="Texto_ingrese">Ingrese sus datos</h1>
+                                            <div class="mb-8 row">
+                                                <div class="col-md-12">
+                                                    <input type="text" class="form-control" name="nombreL" id="nombreLista" placeholder="Nombre de la lista" required>
+                                                    <span class="small" id="msjNombre"></span>
+                                                </div>                                               
+                                            </div>
+                                            
+                                            
+                                            <div class="row">
+                                                <div class="col-4 col-md-3">
+                                                    <label class="">Privacidad</label>
+                                                </div>
+                                                <div class="custom-control custom-radio col-4 col-md-3">
+                                                    <input id="publico" name="privacidad" value="PUBLICO" type="radio" class="custom-control-input" checked>
+                                                    <label class="custom-control-label" for="publico">Publico</label>
+                                                </div>
+                                                <div class="custom-control custom-radio col-4  col-md-3">
+                                                    <input id="privado" name="privacidad" value="PRIVADO" type="radio" class="custom-control-input">
+                                                    <label class="custom-control-label" for="privado">Privado</label>
+                                                </div>
+                                                <div class="col-0 col-md-3"></div>
+                                            </div>
+                                            <div class=" bd-light row">
+                                                <div class="col-md-12">
+                                                    <select class="custom-select d-block w-100" name="categoria" id="categoria" required>
+                                                        <%
+                                                            for (String l : Categorias) {
+                                                        %>
+                                                        <option> <%= l%>  </option> 
+                                                        <%
+                                                            }
+                                                        %>
+                                                    </select>
+                                                </div>                                                
+                                            </div>
+
+                                            <hr class="mb-4">
+
+                                            <div class="bd-light">
+                                                <div class="btn-toolbar justify-content-end" role="toolbar" aria-label="Toolbar with button groups">
+                                                    <div class=" btn-group mr-2" role="group" aria-label="Third group">
+                                                        <a href="presentacion"> 
+                                                            <button type="button" class="btn btn-danger">CANCELAR</button>
+                                                        </a>
+                                                    </div> 
+                                                    <div class=" btn-group" role="group" aria-label="Third group">
+                                                        <button type="submit" class="btn btn-primary">ACEPTAR</button>
+                                                    </div>  
+                                                </div>
+                                            </div>
+                                        </form>
+                                    </div>	 
+                                </div>							
+                            </section>
+                        </div> 
+                    </section>	
+                </div>
+            </div>
+        </div>
+
+        <%@ include file='include/widgets.html' %>
+        <%@ include file='include/footer.html' %>
+
+        <script src="js/jquery-3.4.1.min.js"></script>
+        <script src="js/bootstrap.bundle.min.js"></script>
+        <script src="js/bootstrap.min.js"></script>
+        <script src="js/funciones.js"></script>
+        <script src="js/alta-modificar-lista.js"></script>
+    </body>
+</html>
diff --git a/UyTube_mobile/web/AltaUsuario.jsp b/UyTube_mobile/web/AltaUsuario.jsp
new file mode 100644
index 0000000000000000000000000000000000000000..ce559dae096cb59923acc14e485eda35aae8203d
--- /dev/null
+++ b/UyTube_mobile/web/AltaUsuario.jsp
@@ -0,0 +1,157 @@
+<%-- 
+    Document   : AltaUsuario
+    Created on : 09/10/2019, 10:15:12 AM
+    Author     : administrador
+--%>
+
+<%@page contentType="text/html" pageEncoding="UTF-8"%>
+<!DOCTYPE html>
+<html lang="es">
+    <%
+        boolean sesionIniciada = (boolean) (request.getSession().getAttribute("usuario") != null);
+    %>
+
+    <head>
+        <meta charset="UTF-8">
+        <meta http-equiv="X-UA-Compatible" content="IE=edge">
+        <meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
+        <link rel="stylesheet" type="text/css" href="css/bootstrap.css">
+        <link rel="stylesheet" type="text/css" href="css/body.css">
+        <link rel="stylesheet" type="text/css" href="css/header.css">
+        <link rel="stylesheet" type="text/css" href="css/menu.css">
+        <link rel="stylesheet" type="text/css" href="css/widget.css">
+        <link rel="stylesheet" type="text/css" href="css/footer.css">
+       	<link rel="stylesheet" type="text/css" href="css/contenido-alta-usuario.css">
+        <link rel="stylesheet" type="text/css" href="iconos/style.css">
+
+        <title>UyTube - Registrarse</title>
+    </head>
+    <body>
+
+        <div class="container-fluid" style="padding-left: 0; padding-right: 0px;">
+            <div class="row">
+                <div class="col-12">
+
+                    <%
+                        if (sesionIniciada) {
+                    %>
+                     <jsp:include page="include/header-usuario.jsp" />
+                    <%
+                        } else {
+                    %>
+                    <jsp:include page="include/header-visitante.jsp" />
+                    <%
+                        }
+                    %>
+                </div>
+            </div>		
+        </div>
+        <div class="container-fluid" style="padding-left: 0; padding-right: 0px;">
+            <div class="row">
+                <div class="col-12">
+                    <div class="relleno-header"></div>
+                </div>
+            </div>
+        </div>
+        <div class="container-fluid" style="padding-left: 0; padding-right: 0px;">
+            <div class="row">
+                <div class="col-12">
+                    <section class="principal">				
+                        <%
+                            if (sesionIniciada) {
+                        %>
+                        <jsp:include page="include/menu-usuario.jsp" />
+                        <%
+                        } else {
+                        %>
+                        <jsp:include page="include/menu-visitante.jsp" />
+                        <%
+                            }
+                        %>
+                        <div class="contenido">
+                            <section class="contenido-flexible">
+                                <div class="principal d-flex flex-row justify-content-center">
+                                    <section class="d-flex  flex-lg-row flex-wrap justify-content-lg-between">
+                                        <form class="form-signin" action="usuario-agregar" method="post" enctype="multipart/form-data">
+                                            <h1 class="h3 mb-3 font-weight-normal" id="Texto_ingrese">Ingrese sus datos</h1><br>
+                                            <input class="form-control" type="text" name="nickname" placeholder="Nickname" id="input_Nickname" required>
+                                            <span class="small" id="msjNickname"></span>
+                                            <br>
+
+                                            <div class="row">
+                                                <div class="col-md-6 mb-3">
+                                                    <input type="text" class="form-control" name="nombre" id="input_Nombre" placeholder="Nombre" required>
+                                                </div>
+                                                <div class="col-md-6 mb-3">
+                                                    <input type="text" class="form-control" name="apellido" id="input_Apellido" placeholder="Apellido" required>
+                                                </div>
+                                            </div>
+
+                                            <input class="form-control" type="email" name="email" placeholder="Email" id="email" required>
+                                            <span class="small" id="msjEmail"></span>
+                                            <br>
+
+                                            <input class="form-control" name="fechaNa" type="date" id="input_fecha" name="trip-start"><br>
+                                            <input class="form-control" type="password" name="password" placeholder="Contraseña" id="input_Contrasenia" onfocus="borrar()" required><br>
+                                            <input class="form-control" type="password" placeholder="Repita contraseña" id="input_Repetir_contraseña" onblur="check()" required>
+                                            <span class="small" id='message'></span>
+
+                                            <div class="d-block my-3">
+                                                <label for="cc-name">Privacidad del canal</label>
+                                                <div class="custom-control custom-radio">
+                                                    <input id="publico" name="privacidad" value="PUBLICO" type="radio" class="custom-control-input" checked >
+                                                    <label class="custom-control-label" for="publico">Publico</label>
+                                                </div>
+                                                <div class="custom-control custom-radio">
+                                                    <input id="privado" name="privacidad" value="PRIVADO" type="radio" class="custom-control-input" >
+                                                    <label class="custom-control-label" for="privado">Privado</label>
+                                                </div>
+                                            </div>
+                                            <hr class="mb-4">
+
+                                            <input class="form-control" name="canal" type="text" placeholder="Nombre del Canal" id="input_Nombre_canal" required>
+                                            <small class="text-muted">Opcional*</small><br><br>
+
+                                            <textarea class="form-control" name="descripcion" id="input_descripcion" placeholder="Descripción del Canal" rows="3"></textarea>
+                                            <small class="text-muted">Opcional*</small><br><br>
+
+
+                                            <label id="label_email">Imagen de perfil</label>
+                                            
+                                            <div class="form-group">
+                                                <input id="input_Imagen_Perfil" name="imagen" accept=".PNG,.JPG,.jpg,.png" type="file" class="file" multiple=false data-preview-file-type="any"><br>
+                                                <small class="text-muted">Opcional*</small>
+                                            </div>
+
+                                            <hr class="mb-4">
+
+                                            <div class="btn-toolbar" role="toolbar" aria-label="Toolbar with button groups">
+                                                <div class="btn-group mr-2" role="group" aria-label="First group">
+                                                    <button class="btn btn-lg btn-danger btn-block" type="reset" id="btn_Limpiar">Limpiar</button>
+                                                </div>
+                                                <div class="btn-group mr-2" role="group" aria-label="Second group">
+                                                    <button class="btn btn-lg btn-primary btn-block" type="submit" id="btn_Registrarme">Registrarme</button>
+                                                </div>
+                                            </div>
+
+                                            <p class="mt-5 mb-3 text-muted" id="texto_copy">&copy; 2019-2020</p>
+                                        </form>
+                                    </section>
+                                </div>									
+                            </section>
+                        </div>
+                    </section>	
+                </div>
+            </div>
+        </div>
+
+        <%@ include file='include/widgets.html' %>
+        <%@ include file='include/footer.html' %>
+
+        <script src="js/jquery-3.4.1.min.js"></script>
+        <script src="js/bootstrap.bundle.min.js"></script>
+        <script src="js/bootstrap.min.js"></script>
+        <script src="js/funciones.js"></script>
+        <<script src="js/alta-usuario.js"></script>
+    </body>
+</html>
\ No newline at end of file
diff --git a/UyTube_mobile/web/AltaVideo.jsp b/UyTube_mobile/web/AltaVideo.jsp
new file mode 100644
index 0000000000000000000000000000000000000000..b5fde10d15a9f654de3ee5cec049ace6421aa84f
--- /dev/null
+++ b/UyTube_mobile/web/AltaVideo.jsp
@@ -0,0 +1,137 @@
+<%-- 
+    Document   : AltaVideo
+    Created on : 06/10/2019, 06:14:18 PM
+    Author     : administrador
+--%>
+<%@page import="java.util.ArrayList"%>
+<%@page contentType="text/html" pageEncoding="UTF-8"%>
+<!DOCTYPE html>
+<html lang="es">
+
+    <%
+        ArrayList<String> Categorias = (ArrayList) request.getAttribute("Categorias");
+        boolean sesionIniciada = (boolean) (request.getSession().getAttribute("usuario") != null);
+    %>
+
+    <head>
+        <meta charset="UTF-8">
+        <meta http-equiv="X-UA-Compatible" content="IE=edge">
+        <meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
+        <link rel="stylesheet" type="text/css" href="css/bootstrap.css">
+        <link rel="stylesheet" type="text/css" href="css/body.css">
+        <link rel="stylesheet" type="text/css" href="css/header.css">
+        <link rel="stylesheet" type="text/css" href="css/menu.css">        
+        <link rel="stylesheet" type="text/css" href="css/widget.css">
+        <link rel="stylesheet" type="text/css" href="css/footer.css">
+        <link rel="stylesheet" type="text/css" href="css/contenido-alta-video.css">	
+        <link rel="stylesheet" type="text/css" href="iconos/style.css">
+        <link rel="icon" type="image/png" href="imagenes/icono.png" />
+        <title>UyTube - Agregar video</title>
+    </head>
+    <body>
+
+        <%
+            if (sesionIniciada) {
+        %>
+        <jsp:include page="include/header-usuario.jsp" />
+        <%
+        } else {
+        %>
+        <jsp:include page="include/header-visitante.jsp" />
+        <%
+            }
+        %>
+        <div class="container-fluid" style="padding-left: 0; padding-right: 0px;">
+            <div class="row">
+                <div class="col-12">
+                    <div class="relleno-header"></div>
+                </div>
+            </div>
+        </div>
+        <div class="container-fluid">
+            <div class="row">
+                <div class="col-12">
+                    <section class="principal">	
+
+                        <%
+                            if (sesionIniciada) {
+                        %>
+                        <jsp:include page="include/menu-usuario.jsp" />
+                        <%
+                        } else {
+                        %>
+                        <jsp:include page="include/menu-visitante.jsp" />
+                        <%
+                            }
+                        %>
+                        <div class="contenido">
+                            <section class="contenido-flexible">
+                                <!--================== Aca va el contenido central para agregar ========================== -->					
+                                <h3>Alta de video</h3>			
+                                <form class="form-alta-video" action="video-agregar" method="post" >
+                                    <div class="form-group row">
+                                        <div class="form-group col-12 col-md-9">
+                                            <label for="inputNombre">Nombre</label>
+                                            <input type="text" class="form-control" name="nombre" id="inputNombre" placeholder="Nombre del video">
+                                            <span id="msjNombre"></span>
+                                        </div>
+                                        <div class="form-group col-4 col-md-3">
+                                            <label for="inputDuracion">Duración</label>
+                                            <input type="time" step='1'class="form-control" name="duracion" id="inputDuracion" placeholder="Duración">
+                                        </div>
+                                    </div>
+                                    <div class="form-group row">
+                                        <div class="form-group col-md-12">
+                                            <label for="inputUrl">URL</label>
+                                            <input type="url" class="form-control" name="url" id="inputUrl" placeholder="URL">
+                                        </div>
+                                    </div>
+                                    <div class="form-group row">
+                                        <div class="form-group col-md-12">
+                                            <label for="inputDescripcion">Descripción</label>
+                                            <textarea class="form-control" name="descripcion" id="inputDescripcion" rows="3"></textarea>
+                                        </div>
+                                    </div>										
+                                    <div class="form-group row">
+                                        <div class="form-group col-6 col-md-4">
+                                            <label for="inputFecha">Fecha</label>
+                                            <input type="date" name="fecha" class="form-control"  id="inputFecha">
+                                        </div>
+                                        <div class="form-group col-md-2">
+                                            
+                                        </div>
+                                        <div class="form-group col-8 col-md-6">
+                                            <label for="inputCategoria">Categoría</label>
+                                            <select id="inputCategoria" name="categoria" class="form-control">
+                                                <%
+                                                    for (String l : Categorias) {
+                                                %> 
+                                                <option> <%= l%>  </option>  
+                                                <%
+                                                    }
+                                                %>
+
+                                            </select>
+                                        </div>												
+                                    </div>
+                                    <button type="submit" class="btn btn-primary">Subir video</button>
+                                    </div>											
+                                </form>
+                                <!-- Fin del contenido central -->
+                            </section>
+                        </div>
+                    </section>	
+                </div>
+            </div>
+        </div>
+
+        <%@ include file='include/widgets.html' %>
+        <%@ include file='include/footer.html' %>
+
+        <script src="js/jquery-3.4.1.min.js"></script>
+        <script src="js/bootstrap.bundle.min.js"></script>
+        <script src="js/bootstrap.min.js"></script>
+        <script src="js/funciones.js"></script>
+        <script src="js/alta-modificar-video.js"></script>
+    </body>
+</html>
\ No newline at end of file
diff --git a/UyTube_mobile/web/Buscar.jsp b/UyTube_mobile/web/Buscar.jsp
new file mode 100644
index 0000000000000000000000000000000000000000..c097296a72ff3174fb8c757e6e456bc2f5e077a9
--- /dev/null
+++ b/UyTube_mobile/web/Buscar.jsp
@@ -0,0 +1,202 @@
+<%-- 
+    Document   : Buscar
+    Created on : 09/10/2019, 07:55:42 PM
+    Author     : administrador
+--%>
+
+<%@page import="logica.controladores.CUsuario"%>
+<%@page import="logica.controladores.CUsuarioService"%>
+<%@page import="logica.controladores.DtUsuario"%>
+<%@page import="logica.controladores.DtVideo"%>
+<%@page import="logica.controladores.DtListaDeReproduccion"%>
+<%@page import="logica.controladores.DtCanal"%>
+<%@page import="java.util.ArrayList"%>
+<%@page contentType="text/html" pageEncoding="UTF-8"%>
+<!DOCTYPE html>
+
+<html lang="es">
+    <%
+        ArrayList<Object> lista = (ArrayList) request.getAttribute("Lista");
+        boolean sesionIniciada = (boolean) (request.getSession().getAttribute("usuario") != null);
+        CUsuarioService servicio = new CUsuarioService();
+        CUsuario sys = servicio.getCUsuarioPort();
+    %>
+    <head>
+        <meta charset="UTF-8">
+        <meta http-equiv="X-UA-Compatible" content="IE=edge">
+        <meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
+        <link rel="stylesheet" type="text/css" href="css/bootstrap.css">
+        <link rel="stylesheet" type="text/css" href="css/body.css">
+        <link rel="stylesheet" type="text/css" href="css/header.css">
+        <link rel="stylesheet" type="text/css" href="css/menu.css">
+        <link rel="stylesheet" type="text/css" href="css/widget.css">
+        <link rel="stylesheet" type="text/css" href="css/footer.css">
+        <link rel="stylesheet" type="text/css" href="css/contenido-buscar.css">
+        <link rel="stylesheet" type="text/css" href="iconos/style.css">
+        <link rel="icon" type="image/png" href="imagenes/icono.png" />
+        <title>UyTube</title>
+    </head>
+    <body>
+        <div class="container-fluid" style="padding-left: 0; padding-right: 0px;">
+            <div class="row">
+                <div class="col-12">
+                    <!-- Inclusion de la barra superior -->
+                    <%
+                        if (sesionIniciada) {
+                    %>
+                     <jsp:include page="include/header-usuario.jsp" />
+                    <%
+                        } else {
+                    %>
+                    <jsp:include page="include/header-visitante.jsp" />
+                    <%
+                        }
+                    %>
+                </div>
+            </div>		
+        </div>
+
+        <div class="container-fluid" style="padding-left: 0; padding-right: 0px;">
+            <div class="row">
+                <div class="col-12">
+                    <div class="relleno-header"></div>
+                </div>
+            </div>
+        </div>
+        <div class="container-fluid" style="padding-left: 0; padding-right: 0px;">
+            <div class="row">
+                <div class="col-12">
+                    <section class="principal">
+                        
+                        <%
+                            if (sesionIniciada) {
+                        %>
+                        <jsp:include page="include/menu-usuario.jsp" />
+                        <%
+                        } else {
+                        %>
+                        <jsp:include page="include/menu-visitante.jsp" />
+                        <%
+                            }
+                        %>
+
+                        <div class="contenido">
+                            <section class="contenido-flexible">								
+                                <div class="container">
+
+
+                                    <!-- BOTONES DESPLEGABLES-->
+
+                                    <%@ include file='include/filtro-visible.jsp' %>
+
+                                    <!--FIN DE LOS BOTONES-->
+
+                                    <hr class="mb-2">
+
+                                    <!--LISTA DE CONTENIDO-->
+
+                                    <div class="tab-pane fade show active" id="videos" role="tabpanel" aria-labelledby="nav-VIDEO-tab">
+                                        <%
+                                            for (Object o : lista){
+                                                if (o instanceof DtVideo){
+                                                    DtVideo e = (DtVideo) o;
+                                                    String miniatura = Funciones.Funciones.obtenerImagenDeVideo(
+                                                            Funciones.Funciones.extraerIDYoutube(e.getUrlVideoOriginal()),
+                                                            2
+                                                    );
+                                        %>
+                                        <div class="video -highlight">
+                                            <div class="bd-highlight caja-imagen">
+                                                <div class="bd-highlight">
+                                                    <a href="video-consultar?id=<%= e.getId() %>">
+                                                        <img src="<%= miniatura %>" width="246" height="138">
+                                                    </a>
+                                                </div>
+                                            </div>
+                                            <div class="bd-highlight caja-texto">
+                                                <div class="overflow-auto bg-light" >
+                                                    <h5 class="mt-0">
+                                                        <a href="video-consultar?id=<%= e.getId() %>">
+                                                            <%= e.getNombre() %>
+                                                        </a>
+                                                    </h5>
+                                                    <p><%= e.getDescripcion() %></p>
+                                                </div>
+                                            </div>
+                                        </div>
+                                        <br>
+                                        <%
+                                                }else if (o instanceof DtListaDeReproduccion){
+                                                    DtListaDeReproduccion e = (DtListaDeReproduccion) o;
+                                        %>
+                                        <div class="lista bd-highlight">
+                                            <div class="bd-highlight caja-imagen">
+                                                <div class="bd-highlight ">
+                                                    <a href="lista-consultar?id=<%= e.getId()%>">
+                                                        <img src="imagenes/lista.jpg" alt="lista" width="246" height="138">
+                                                    </a>
+
+                                                </div>
+                                            </div>
+                                            <div class=" bd-highlight caja-texto">
+                                                <div class="overflow-auto bg-light" >
+                                                    <h5 class="mt-0">
+                                                        <a href="lista-consultar?id=<%= e.getId() %>">
+                                                            <%= e.getNombre() %>
+                                                        </a>
+                                                    </h5>
+                                                    <p>Categoría: <%= e.getCategoria() %></p>
+                                                </div>
+                                            </div>
+                                        </div>
+                                        <br>
+                                        <%
+                                                }else if (o instanceof DtCanal){
+                                                    DtCanal e = (DtCanal) o;
+                                                    // buena suerte entendiendo esto...
+                                                    DtUsuario usu = sys.obtenerPropietarioDeCanal(e.getId());
+                                        %>
+                                        <div class="canal bd-highlight">
+                                            <div class="bd-highlight caja-imagen">
+                                                <div class="bd-highlight">
+                                                    <a href="usuario-consultar?id=<%= usu.getNickname() %>">
+                                                       <img src="usuario-imagen?id=<%= usu.getNickname() %>" class="align-self-center rounded-circle" alt="Cinque Terre" >
+                                                    </a>
+                                                </div>
+                                            </div>
+                                            <div class="bd-highlight caja-texto">
+                                                <div class="overflow-auto bg-light">
+                                                    <h5 class="mt-0">
+                                                        <a href="usuario-consultar?id=<%= usu.getNickname() %>">
+                                                            <%= e.getNombre() %>
+                                                        </a>
+                                                    </h5>
+                                                    <p><%= e.getDescripcion() %></p>
+                                                </div>
+                                            </div>
+                                        </div>
+                                        <br> 
+                                        <%
+                                                }
+                                            }
+                                        %>
+                                    </div>
+
+                                    <!--FIN de LISTA DE CONTENIDO-->
+                                </div>							
+                            </section>
+                        </div> 
+                    </section>	
+                </div>
+            </div>
+        </div>
+
+        <%@ include file='include/widgets.html' %>
+        <%@ include file='include/footer.html' %>
+
+        <script src="js/jquery-3.4.1.min.js"></script>
+        <script src="js/bootstrap.bundle.min.js"></script>
+        <script src="js/bootstrap.min.js"></script>
+        <script src="js/funciones.js"></script>
+    </body>
+</html>
\ No newline at end of file
diff --git a/UyTube_mobile/web/ConsultaUsuario.jsp b/UyTube_mobile/web/ConsultaUsuario.jsp
new file mode 100644
index 0000000000000000000000000000000000000000..2011b27040f73de91f19db3e6315a92012d57768
--- /dev/null
+++ b/UyTube_mobile/web/ConsultaUsuario.jsp
@@ -0,0 +1,374 @@
+<%-- 
+    Document   : ConsultaUsuario
+    Created on : 07/10/2019, 01:25:13 AM
+    Author     : administrador
+--%>
+
+<%@page import="logica.controladores.DtListaDeReproduccion"%>
+<%@page import="logica.controladores.DtVideo"%>
+<%@page import="logica.controladores.DtCanal"%>
+<%@page import="logica.controladores.DtUsuario"%>
+<%@page import="java.util.ArrayList"%>
+<%@page contentType="text/html" pageEncoding="UTF-8"%>
+<!DOCTYPE html>
+<html lang="es">
+    <%
+        boolean propietario = (boolean) request.getAttribute("propietario");
+        boolean sesionIniciada = (boolean) (request.getSession().getAttribute("usuario") != null);
+        DtUsuario usuario = (DtUsuario) request.getAttribute("usuario");
+        DtCanal canal = (DtCanal) request.getAttribute("canal");
+        ArrayList<DtUsuario> seguidos = (ArrayList) request.getAttribute("seguidos");
+        ArrayList<DtUsuario> seguidores = (ArrayList) request.getAttribute("seguidores");
+        ArrayList<DtVideo> videos = (ArrayList) request.getAttribute("videos");
+        ArrayList<DtListaDeReproduccion> listasRep = (ArrayList) request.getAttribute("listasRep");
+        String ps = (String) request.getAttribute("ps");
+    %>
+      
+    
+    <head>
+        <meta charset="UTF-8">
+        <meta http-equiv="X-UA-Compatible" content="IE=edge">
+        <meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
+        <link rel="stylesheet" type="text/css" href="css/bootstrap.css">
+        <link rel="stylesheet" type="text/css" href="css/body.css">
+        <link rel="stylesheet" type="text/css" href="css/header.css">
+        <link rel="stylesheet" type="text/css" href="css/menu.css">
+        <link rel="stylesheet" type="text/css" href="css/widget.css">
+        <link rel="stylesheet" type="text/css" href="css/footer.css">
+        <link rel="stylesheet" type="text/css" href="css/contenido-consulta-usuario.css">
+        <link rel="stylesheet" type="text/css" href="iconos/style.css">
+        <link rel="icon" type="image/png" href="imagenes/icono.png" />
+        <title>UyTube - <%= usuario.getNickname()%></title>
+    </head>
+    <body>
+
+        <%@ include file='include/ventana-modal_baja.html' %>
+        <div class="container-fluid" style="padding-left: 0; padding-right: 0px;">
+            <div class="row">
+                <div class="col-12">
+                    <!-- Inclusion de la barra superior -->
+                    <%
+                        if (sesionIniciada){
+                    %>
+                    <jsp:include page="include/header-usuario.jsp" />
+                    <%
+                        }else{
+                    %>
+                    <jsp:include page="include/header-visitante.jsp" />
+                    <%
+                        }
+                    %>
+                </div>
+            </div>		
+        </div>
+        <div class="container-fluid" style="padding-left: 0; padding-right: 0px;">
+            <div class="row">
+                <div class="col-12">
+                    <div class="relleno-header"></div>
+                </div>
+            </div>
+        </div>
+        <div class="container-fluid" style="padding-left: 0; padding-right: 0px;">
+            <div class="row">
+                <div class="col-12">
+                    <section class="principal">	
+                        <!-- Inclusion del menu lateral -->
+                        <%
+                            if (sesionIniciada) {
+                        %>
+                        <jsp:include page="include/menu-usuario.jsp" />
+                        <%
+                        } else {
+                        %>
+                        <jsp:include page="include/menu-visitante.jsp" />
+                        <%
+                            }
+                        %>
+                        <div class="contenido">
+                            <section class="contenido-flexible">
+                                <div class="container">
+                                    <div class="d-block d-md-flex bd-highlight ">
+                                        <div class="p-4 flex-fill bd-highlight">
+                                            <div class="d-flex justify-content-center">
+                                                <%
+                                                    // src="<%
+                                                %>
+                                                <img src="usuario-imagen?id=<%= usuario.getNickname() %>" class="rounded-circle" alt="Imagen de perfil de <% usuario.getNickname(); %>" width="180" height="180"> 
+                                            </div>
+                                        </div>
+                                            
+                                            
+                                        <div class="p-1 flex-fill bd-highlight ">
+                                            
+                                            <div class="d-flex bd-highlight ">
+                                                <div class="p-1 d-flex flex-wrap flex-sm-nowrap bd-highlight">
+                                                    <br><h3><%= usuario.getNombre() + " " + usuario.getApellido()%></h3>
+                                                    <%
+                                                    if (sesionIniciada && propietario) {
+                                                    %>
+                                                        <button  data-toggle="modal" data-target="#exampleModal" data-whatever="@mdo" class=" ml-sm-3 btn btn-danger icon-remove-user" id="btnBaja">
+                                                            Darse de baja
+                                                        </button>
+                                                    <%  
+                                                    }
+                                                    %>
+                                                </div>
+                                            </div>
+                                                <hr class="mb-2">
+                                                
+                                            <div class="p-1 bd-highlight ">
+                                                <div class="d-flex bd-highlight ">
+                                                    
+                                                    <div class="p-1 flex-fill bd-highlight ">
+                                                        <p class="text-info"><%= canal.getNombre()%> &#x2714</p>
+                                                    </div>
+                                                    <div class="p-1 flex-fill bd-highlight ">
+                                                        <p><%= usuario.getCantSeguidores()%> seguidores</p>
+                                                    </div>
+                                                </div>
+                                            </div>
+                                            <div class="p-1 bd-highlight ">
+                                                <div class="d-flex flex-wrap flex-md-nowrap bd-highlight ">
+                                                    <div class="p-1 flex-fill bd-highlight ">
+                                                        <p>PRIVACIDAD: <%= canal.getPrivacidad()%></p>
+                                                    </div>
+                                                    <div class="p-1 flex-fill bd-highlight ">
+                                                        <%
+                                                            if (sesionIniciada && propietario) {
+                                                        %>
+                                                        <a href="usuario-modificar?id=<%= usuario.getNickname()%>">
+                                                            <button class="icon-cog btn btn-primary" id="btnBuscar" type="submit">
+                                                                Modificar usuario
+                                                            </button>
+                                                        </a>    
+                                                        <%
+                                                            }
+                                                        %>
+                                                        <%
+                                                        if (sesionIniciada && !propietario) {
+                                                                boolean Sigue = false;
+                                                                DtUsuario actual = (DtUsuario)request.getSession().getAttribute("usuario");
+                                                                for (DtUsuario elem : seguidores){
+                                                                    if (elem.getNickname().equals(actual.getNickname())){
+                                                                        Sigue = true;
+                                                                    }
+                                                                }
+                                                                if (Sigue) {
+                                                                %>
+                                                                    <a href="usuario-seguir?id=<%= usuario.getNickname()%>">
+                                                                        <button class="btn btn-danger" id="btnBuscar" type="submit">
+                                                                            Dejar de seguir
+                                                                        </button>
+                                                                    </a>
+                                                                <%
+                                                                }else{
+                                                                %>
+                                                                    <a href="usuario-seguir?id=<%= usuario.getNickname()%>">
+                                                                        <button class="btn btn-primary" id="btnBuscar" type="submit">
+                                                                            Seguir
+                                                                        </button>
+                                                                    </a>
+                                                                <%
+                                                                }  
+                                                            }
+                                                        %>
+                                                    </div>
+                                                </div>
+                                            </div>
+                                        </div>
+                                    </div><br>
+
+                                    <div class="bd-example bd-example-tabs">
+                                        <nav class="">
+                                            <div class="nav nav-tabs " id="nav-tab" role="tablist">
+                                            <%
+                                            if (ps.equals("VIDEOS")) {
+                                            %>    
+
+                                            <a class="nav-item nav-link active" id="refVideos" data-toggle="tab" href="#videos" role="tab" aria-controls="nav-VIDEO" aria-selected="true">VIDEOS (<%=videos.size()%>)</a>
+                                            <%
+                                            } else {
+                                            %> 
+                                                <a class="nav-item nav-link" id="refVideos" data-toggle="tab" href="#videos" role="tab" aria-controls="nav-VIDEO" aria-selected="true">VIDEOS (<%=videos.size()%>)</a>
+                                            <%
+                                            }
+                                            %>
+                                            
+                                            <%
+                                            if (ps.equals("LISTAS")) {
+                                            %>    
+                                                <a class="nav-item nav-link active" id="refListas" data-toggle="tab" href="#listas" role="tab" aria-controls="nav-LISTAS" aria-selected="false">LISTAS (<%=listasRep.size()%>)</a>
+                                            <%
+                                            } else {
+                                            %> 
+                                                <a class="nav-item nav-link " id="refListas" data-toggle="tab" href="#listas" role="tab" aria-controls="nav-LISTAS" aria-selected="false">LISTAS (<%=listasRep.size()%>)</a>
+                                            <%
+                                            }
+                                            %> 
+                                                <a class="nav-item nav-link " id="refSeguidores" data-toggle="tab" href="#seguidores" role="tab" aria-controls="nav-SEGUIDORES" aria-selected="false">SEGUIDORES (<%=seguidores.size()%>)</a>
+                                                <a class="nav-item nav-link " id="refSeguidos" data-toggle="tab" href="#seguidos" role="tab" aria-controls="nav-SEGUIDOS" aria-selected="false">SEGUIDOS (<%=seguidos.size()%>)</a>
+                                            </div>
+                                        </nav>
+                                    </div>
+
+                                    <div class="tab-content" id="nav-tabContent">
+                                        <!-- Pestaña de videos -->
+                                        <%
+                                            if (ps.equals("VIDEOS")) {
+                                        %>    
+
+                                                <div class="tab-pane fade show active" id="videos" role="tabpanel"  aria-labelledby="nav-VIDEO-tab">
+                                                <br>
+                                        <%
+                                            } else {
+                                            %> 
+                                                <div class="tab-pane fade show" id="videos" role="tabpanel"  aria-labelledby="nav-VIDEO-tab">
+                                                <br>
+                                            <%
+                                            }
+                                        %>   
+
+                                            <%
+                                                for (DtVideo v : videos) {
+                                                    String miniatura = Funciones.Funciones.obtenerImagenDeVideo(
+                                                            Funciones.Funciones.extraerIDYoutube(v.getUrlVideoOriginal()), 2
+                                                    );
+                                            %>
+                                            <!-- Video individual en la lista -->
+                                            <div class="d-block d-md-flex bd-highlight ">
+                                                <div class="p-1 flex-shrink-1 bd-highlight ">
+                                                    <div class="p-1 bd-highlight ">
+                                                        <a href="video-consultar?id=<%= v.getId() %>">
+                                                            <img src="<%= miniatura %>" width="246" height="138">
+                                                        </a>
+                                                    </div>
+                                                </div>
+                                                <div class="p-1 caja-texto bd-highlight ">
+                                                    <div class="overflow-auto p-1 mb-3 mb-md-0 mr-md-3 bg-light" style="max-width: 530px; max-height: 170px;">
+                                                        <a href="video-consultar?id=<%= v.getId()%>">
+                                                            <h5 class="mt-0"><%= v.getNombre()%></h5>
+                                                        </a>
+                                                        <p><%= v.getDescripcion()%></p>
+                                                    </div>
+                                                </div>
+                                            </div>
+                                            <%
+                                                }
+                                            %><%
+                                                if (videos.isEmpty()) {
+                                            %>
+                                            <li class="list-group-item d-flex justify-content-between align-items-center">
+                                                El usuario no tiene videos
+                                            </li>
+                                            <%
+                                                }
+                                            %>
+                                            <br>
+                                        </div>
+
+                                        <!-- Pestaña de listas de reproduccion -->
+                                        
+                                        <%
+                                            if (ps.equals("LISTAS")) {
+                                        %>    
+
+                                                <div class="tab-pane fade show active" id="listas" role="tabpanel" aria-labelledby="nav-LISTAS-tab">
+                                            <br><ul class="list-group">
+                                        <%
+                                            } else {
+                                            %> 
+                                                <div class="tab-pane fade show" id="listas" role="tabpanel" aria-labelledby="nav-LISTAS-tab">
+                                                <br><ul class="list-group">
+                                            <%
+                                            }
+                                        %>
+                                                <%
+                                                    for (DtListaDeReproduccion l : listasRep) {
+                                                %>
+                                                <li class="list-group-item d-flex justify-content-between align-items-center">
+                                                    <a href="lista-consultar?id=<%= l.getId() %>">
+                                                        <%= l.getNombre()%>
+                                                    </a>
+                                                </li>
+                                                <%
+                                                    }
+                                                %><%
+                                                    if (listasRep.isEmpty()) {
+                                                %>
+                                                <li class="list-group-item d-flex justify-content-between align-items-center">
+                                                    El usuario no tiene listas de reproducción
+                                                </li>
+                                                <%
+                                                    }
+                                                %>
+                                            </ul>
+                                        </div>
+
+                                        <!-- Pestaña de usuarios seguidores -->
+                                        <div class="tab-pane fade show " id="seguidores" role="tabpanel" aria-labelledby="nav-SEGUIDORES-tab">
+
+                                            <br><ul class="list-group">
+                                                <%
+                                                    for (DtUsuario u : seguidores) {
+                                                %>
+                                                <li class="list-group-item d-flex justify-content-between align-items-center">
+                                                    <a href="usuario-consultar?id=<%= u.getNickname()%>">
+                                                        <%= u.getNickname()%>
+                                                    </a>
+                                                </li>
+                                                <%
+                                                    }
+                                                %><%
+                                                    if (seguidores.isEmpty()) {
+                                                %>
+                                                <li class="list-group-item d-flex justify-content-between align-items-center">
+                                                    El usuario no tiene seguidores
+                                                </li>
+                                                <%
+                                                    }
+                                                %>
+                                            </ul>
+                                        </div>
+
+                                        <!-- Pestaña de usuarios seguidos -->
+                                        <div class="tab-pane fade show " id="seguidos" role="tabpanel" aria-labelledby="nav-SEGUIDOS-tab">
+                                            <br><ul class="list-group">
+                                                <%
+                                                    for (DtUsuario u : seguidos) {
+                                                %>
+                                                <li class="list-group-item d-flex justify-content-between align-items-center">
+                                                    <a href="usuario-consultar?id=<%= u.getNickname()%>">
+                                                        <%= u.getNickname()%>
+                                                    </a>
+                                                </li>
+                                                <%
+                                                    }
+                                                %><%
+                                                    if (seguidos.isEmpty()) {
+                                                %>
+                                                <li class="list-group-item d-flex justify-content-between align-items-center">
+                                                    El usuario no sigue a nadie
+                                                </li>
+                                                <%
+                                                    }
+                                                %>
+                                            </ul>
+                                        </div>
+                                    </div>
+                                </div>							
+                            </section>
+                        </div> 
+                    </section>	
+                </div>
+            </div>
+        </div>
+
+        <%@ include file='include/widgets.html' %>
+        <%@ include file='include/footer.html' %>
+
+        <script src="js/jquery-3.4.1.min.js"></script>
+        <script src="js/bootstrap.bundle.min.js"></script>
+        <script src="js/bootstrap.min.js"></script>
+        <script src="js/funciones.js"></script>
+    </body>
+</html>
\ No newline at end of file
diff --git a/UyTube_mobile/web/ConsultaVideo.jsp b/UyTube_mobile/web/ConsultaVideo.jsp
new file mode 100644
index 0000000000000000000000000000000000000000..b6ab441410a5172754def60b30377b5a4dbffa1a
--- /dev/null
+++ b/UyTube_mobile/web/ConsultaVideo.jsp
@@ -0,0 +1,410 @@
+<%-- 
+    Document   : Buscar
+    Created on : 09/10/2019, 07:55:42 PM
+    Author     : administrador
+--%>
+
+<%@page import="logica.controladores.CUsuario"%>
+<%@page import="logica.controladores.CUsuarioService"%>
+<%@page import="logica.controladores.Privacidad"%>
+<%@page import="java.text.SimpleDateFormat"%>
+<%@page import="logica.controladores.TipoValoracion"%>
+<%@page import="logica.controladores.DtValoracion"%>
+<%@page import="java.util.TreeMap"%>
+<%@page import="javax.swing.text.Document"%>
+<%@page import="logica.controladores.DtComentario"%>
+<%@page import="logica.controladores.DtUsuario"%>
+<%@page import="logica.controladores.DtVideo"%>
+<%@page import="logica.controladores.DtListaDeReproduccion"%>
+<%@page import="logica.controladores.DtCanal"%>
+<%@page import="java.util.ArrayList"%>
+<%@page contentType="text/html" pageEncoding="UTF-8"%>
+<!DOCTYPE html>
+
+<html lang="es">
+    <%
+        boolean sesionIniciada = (boolean) (request.getSession().getAttribute("usuario") != null);
+        //sesionIniciada = true;
+        boolean propietarioDelVideo = (boolean) request.getAttribute("propietarioDelVideo");
+        DtUsuario usuario = (DtUsuario) request.getAttribute("usuario");
+        DtCanal canal = (DtCanal) request.getAttribute("canal");
+        DtVideo video = (DtVideo) request.getAttribute("video");
+        String htmlComentarios = (String) request.getAttribute("comentarios");
+        DtValoracion valoracionDada = (DtValoracion) request.getAttribute("valoracionDada");
+        ArrayList<DtValoracion> valoraciones = (ArrayList) request.getAttribute("valoraciones");
+        ArrayList<DtListaDeReproduccion> listas = (ArrayList) request.getAttribute("listas");
+    %>
+    <head>
+        <meta charset="UTF-8">
+        <meta http-equiv="X-UA-Compatible" content="IE=edge">
+        <meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
+        <link rel="stylesheet" type="text/css" href="css/bootstrap.css">
+        <link rel="stylesheet" type="text/css" href="css/body.css">
+        <link rel="stylesheet" type="text/css" href="css/header.css">
+        <link rel="stylesheet" type="text/css" href="css/menu.css">
+        <link rel="stylesheet" type="text/css" href="css/widget.css">
+        <link rel="stylesheet" type="text/css" href="css/footer.css">
+        <link rel="stylesheet" type="text/css" href="css/contenido-buscar.css">
+        <link rel="stylesheet" type="text/css" href="iconos/style.css">
+        <link rel="icon" type="image/png" href="imagenes/icono.png" />
+        <title>UyTube - <%= video.getNombre()%></title>
+    </head>
+    <body>
+        <div class="container-fluid" style="padding-left: 0; padding-right: 0px;">
+            <div class="row">
+                <div class="col-12">
+                    <!-- Inclusion de la barra superior -->
+                    <%
+                        if (sesionIniciada) {
+                    %>
+                    <jsp:include page="include/menu-usuario.jsp" />
+                    <%
+                    } else {
+                    %>
+                    <jsp:include page="include/menu-visitante.jsp" />
+                    <%
+                        }
+                    %>
+                </div>
+            </div>		
+        </div>
+
+        <div class="container-fluid" style="padding-left: 0; padding-right: 0px;">
+            <div class="row">
+                <div class="col-12">
+                    <div class="relleno-header"></div>
+                </div>
+            </div>
+        </div>
+        <div class="container-fluid" style="padding-left: 0; padding-right: 0px;">
+            <div class="row">
+                <div class="col-12">
+                    <section class="principal">	
+                        <%
+                            if (sesionIniciada) {
+                        %>
+                        <jsp:include page="include/header-usuario.jsp" />
+                        <%
+                        } else {
+                        %>
+                        <jsp:include page="include/header-visitante.jsp" />
+                        <%
+                            }
+                        %>
+
+                        <div class="contenido">
+                            <section class="contenido-flexible">								
+                                <div class="container">
+
+                                    <!-- Ventana emergente para responder comentario, no borrar -->
+                                    <%@ include file='include/ventana-modal.html' %>
+
+                                    <!--==================== INICIO DATOS DEL VIDEO ====================-->
+                                    <div>
+                                        <br>
+                                        <h3>
+                                            <%= video.getNombre()%>   
+                                        </h3>
+                                    </div>
+
+                                    <%
+                                        // obtiene URL para enbeber el video
+                                        String videoEmbebido = Funciones.Funciones.obtenerEnlaceEmbebido(
+                                                Funciones.Funciones.extraerIDYoutube(video.getUrlVideoOriginal())
+                                        );
+                                    %>
+                                    <div class="embed-responsive embed-responsive-16by9">
+                                        <iframe id="video" value="<%= video.getId()%>" class="embed-responsive-item" src="<%= videoEmbebido%>" allowfullscreen></iframe>
+                                    </div>
+
+
+                                    <!-- BOTONES PARA LIKE, DISLIKE y AGREGAR A LISTA-->
+                                    <%
+                                        if (sesionIniciada) {
+                                    %>
+                                    <div class="btn-toolbar" role="toolbar" aria-label="Toolbar with button groups">
+                                        <!-- Botones Me gusta y no me gusta -->
+                                        <div class="p-2 btn-group mr-2" role="group" aria-label="Third group">
+                                            <%
+                                                String textoBtnLike = "ME GUSTA";
+                                                String textoBtnDisLike = "NO ME GUSTA";
+                                                String deshabilitarBtnLike = "";
+                                                String deshabilitartextoBtnDisLike = "";
+
+                                                if (valoracionDada == null) {
+                                                    // quedan como fueron declaradas
+                                                } else if (valoracionDada.getVal() == TipoValoracion.LIKE) {
+                                                    textoBtnLike = "TE GUSTA";
+                                                    textoBtnDisLike = "NO ME GUSTA";
+                                                    deshabilitarBtnLike = "disabled=\"true\"";
+                                                    deshabilitartextoBtnDisLike = "";
+                                                } else if (valoracionDada.getVal() == TipoValoracion.DISLIKE) {
+                                                    textoBtnLike = "ME GUSTA";
+                                                    textoBtnDisLike = "NO TE GUSTA";
+                                                    deshabilitarBtnLike = "";
+                                                    deshabilitartextoBtnDisLike = "disabled=\"true\"";
+                                                }
+                                            %>
+                                            <button <%= deshabilitarBtnLike%> type="button" id="btnLike" class="btn btn-success icon-thumbs-up">
+                                                <span id="txtMeGusta"><%= textoBtnLike%></span>
+                                                <span id="txtLike" class="badge badge-light"><%= video.getCantLikes()%></span>
+                                            </button>
+                                            <button <%= deshabilitartextoBtnDisLike%> type="button" id="btnDisLike" class="btn btn-danger icon-thumbs-down">
+                                                <span id="txtNoMeGusta"><%= textoBtnDisLike%></span>
+                                                <span id="txtDisLike" class="badge badge-light"><%= video.getCantDisLikes()%></span>
+                                            </button>
+                                        </div>
+
+                                        <!-- Boton agregar a lista de reproduccion -->
+                                        <div class="p-2 btn-group mr-3" role="group" aria-label="Third group">                                            
+                                            <button data-toggle="modal" type="button" id="btnAgregarALista" data-target="#ventanaModalAgregarALista" class="btn btn-info icon-add-to-list">
+                                                LISTA DE REPRODUCCIÓN
+                                            </button>
+                                        </div>
+
+                                        <%
+                                            if (propietarioDelVideo) {
+                                        %>
+                                        <!-- Boton modificar video -->
+                                        <div class="p-2 btn-group" role="group" aria-label="Third group">
+                                            <a href="video-modificar?id=<%= video.getId()%>">
+                                                <button type="button" id="btnModificarVideo" class="btn btn-primary icon-cog mr-2">
+                                                    MODIFICAR
+                                                </button>
+                                            </a>
+                                            <button href="#ventanaModalValoraciones" data-toggle="modal" type="button" id="btnListarValoraciones" class="btn btn-info icon-info-with-circle">
+                                                QUIÉN VALORÓ
+                                            </button>
+                                        </div>
+                                        <%
+                                            }
+                                        %>
+
+                                    </div>
+                                    <%
+                                        }
+                                    %>
+
+                                    <br><hr class="mb-2"><br>
+
+                                    <!-- IMAGEN DEL USUARIO Y NOMBRE DEL CANAL -->
+                                    <div class="row">
+                                        <%
+                                            String textoAlternativo = "Imagen de perfil de " + usuario.getNickname();
+                                            String rutaDeImagenDePerfil = "usuario-imagen?id=" + usuario.getNickname();
+                                        %>
+                                        <div class="bd-highlight">
+                                            <img class="align-self-center mr-3" src="<%= rutaDeImagenDePerfil%>" width="70" height="70" alt="<%= textoAlternativo%>">
+                                        </div>
+                                        <div class="bd-highlight" >
+                                            <a href="usuario-consultar?id=<%= usuario.getNickname()%>">
+                                                <h5><%= canal.getNombre()%></h5>
+                                            </a>
+                                        </div>
+                                    </div>
+                                    <br>
+
+                                    <!-- DESCRIPCION DEL VIDEO -->
+                                    <div class="bd-highlight" >
+                                        <h5>Fecha de publicación: <%= video.getFechaPublicacion().getAnio()%>-<%= video.getFechaPublicacion().getMes()%>-<%= video.getFechaPublicacion().getDia()%></h5>
+                                    </div>
+                                    <div class="bd-highlight" >
+                                        <h3><small class="text-muted">DESCRIPCIÓN</small></h3>
+                                    </div>
+                                    <div class="bd-highlight" >
+                                        <h5><%= video.getDescripcion()%></h5>
+                                    </div>
+                                    <!--==================== FIN DEL VIDEO ====================-->
+
+                                    <br><hr class="mb-2"><br>
+
+                                    <!--==================== INGRESO DE COMENTARIOS ====================-->
+
+                                    <%
+                                        if (sesionIniciada) {
+                                    %>
+                                    <div class="bd-highlight" >
+                                        <div class="bd-light" >
+                                            <h5>COMENTARIOS</h5>
+                                        </div>
+                                        <div class="bd-light" >
+                                            <textarea class="form-control" name="descripcion" id="input_descripcion" placeholder="Agrega un comentario.." rows="3"></textarea>
+                                        </div>
+                                        <div class="bd-light " >
+                                            <div class="btn-toolbar justify-content-end" role="toolbar" aria-label="Toolbar with button groups">
+                                                <div class="p-2 btn-group mr-2" role="group" aria-label="Third group">
+                                                    <button type="button" id="btnCancelar" class="btn btn-danger">CANCELAR</button>
+                                                </div> 
+                                                <div class="p-2 btn-group" role="group" aria-label="Third group">
+                                                    <button type="button" id="btnComentar" class="btn btn-success">COMENTAR</button>
+                                                </div>  
+                                            </div>
+                                        </div>
+                                    </div>
+                                    <%
+                                        }
+                                    %>
+                                    <!--==================== FIN DE INGRESO DE COMENTARIOS ====================-->
+
+                                    <br>
+
+                                    <!--==================== SECCION DE COMENTARIOS ====================-->
+                                    <div id="seccion-comentarios">  
+                                        <% out.print(htmlComentarios);%>
+                                    </div>
+
+                                    <!-- -------- Ejemplo de estructura de comentarios-------- -->
+                                    <!--
+                                    <div id="seccion-comentarios">    
+                                        <div class="media">
+                                            <img class="mr-3" src="imagenes/ukp.png" width="50" height="50">
+                                            <div class="media-body">
+                                                <h5 class="mt-0">Media heading</h5>
+                                                Cras sit amet nibh libero, in gravida nulla. Nulla vel metus scelerisque ante sollicitudin. Cras purus odio, vestibulum in vulputate at, tempus viverra turpis. Fusce condimentum nunc ac nisi vulputate fringilla. Donec lacinia congue felis in faucibus.
+                                                <br>
+                                                <button type="button" onmouseover="idComentario = this.getAttribute('value');" value="1" class="btn btn-primary responder" data-toggle="modal" data-target="#exampleModal" data-whatever="@mdo">Responder</button>
+                                                <br>
+                                            </div>
+                                        </div>
+                                        <div class="media">
+                                            <img class="mr-3" src="imagenes/ukp.png" width="50" height="50">
+                                            <div class="media-body">
+                                                <h5 class="mt-0">Media heading</h5>
+                                                Cras sit amet nibh libero, in gravida nulla. Nulla vel metus scelerisque ante sollicitudin. Cras purus odio, vestibulum in vulputate at, tempus viverra turpis. Fusce condimentum nunc ac nisi vulputate fringilla. Donec lacinia congue felis in faucibus.
+                                                <br>
+                                                <button type="button" onmouseover="idComentario = this.getAttribute('value');" value="2" class="btn btn-primary responder" data-toggle="modal" data-target="#exampleModal" data-whatever="@mdo">Responder</button>
+                                                <br>
+                                                <div class="media">
+                                                    <img class="mr-3" src="imagenes/ukp.png" width="50" height="50">
+                                                    <div class="media-body">
+                                                        <h5 class="mt-0">Media heading</h5>
+                                                        Cras sit amet nibh libero, in gravida nulla. Nulla vel metus scelerisque ante sollicitudin. Cras purus odio, vestibulum in vulputate at, tempus viverra turpis. Fusce condimentum nunc ac nisi vulputate fringilla. Donec lacinia congue felis in faucibus.
+                                                        <button type="button" onmouseover="idComentario = this.getAttribute('value');" value="3" class="btn btn-primary responder" data-toggle="modal" data-target="#exampleModal" data-whatever="@mdo">Responder</button>
+                                                    </div>                                        
+                                                </div>
+                                            </div>
+                                        </div>
+                                    </div>
+                                    -->
+                                    <!--==================== FIN DE SECCION DE COMENTARIOS ====================-->
+                                </div>							
+                            </section>
+                        </div> 
+                    </section>	
+                </div>
+            </div>
+        </div>
+
+        <!-- Tabla emergente de valoraciones -->
+        <%
+            if (propietarioDelVideo) {
+        %>
+        <div class="modal fade" id="ventanaModalValoraciones">
+            <div class="modal-dialog">
+                <div class="modal-content">
+                    <div class="modal-header">
+                        <h3 class="modal-title">Valoraciones</h3>
+                        <button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
+                    </div>
+                    <table class="table table-striped table-fixed" id="tblValoraciones">
+                        <thead id="tblHead">
+                            <tr>
+                                <th>Usuario</th>
+                                <th>Valoración</th>
+                            </tr>
+                        </thead>
+                        <tbody id="tblValoraciones-bodyRows">
+                            <!-- El contenido es obtenido por jQuery -->
+                        </tbody>
+                    </table>
+                    <div class="modal-footer">
+                        <button type="button" class="btn btn-primary" data-dismiss="modal">Cerrar</button>
+                    </div>
+                </div><!-- /.modal-content -->
+            </div><!-- /.modal-dialog -->
+        </div><!-- /.modal -->
+        <%
+            }
+        %>
+        <!-- FIN de Tabla emergente de valoraciones -->
+
+        <style>
+            .table-fixed tbody {
+                display:block;
+                height:250px; /* Altura a la cual aparece el scroll */
+                overflow:auto;
+            }
+            .table-fixed thead, .table-fixed tbody tr {
+                display:table;
+                width:100%;
+            }
+        </style>
+
+        <!-- Modal Agregar a lista de reproduccion -->
+        <%    
+            if (sesionIniciada){
+        %>
+        <div class="modal fade" id="ventanaModalAgregarALista" tabindex="-1" role="dialog" aria-labelledby="exampleModalScrollableTitle" aria-hidden="true">
+            <div class="modal-dialog modal-dialog-scrollable" role="document">
+                <div class="modal-content">
+                    <div class="modal-header">
+                        <h5 class="modal-title" id="exampleModalScrollableTitle">Guardar en ...</h5>
+                        <button type="button" class="close" data-dismiss="modal" aria-label="Close">
+                            <span aria-hidden="true">&times;</span>
+                        </button>
+                    </div>
+                    <div class="modal-body">
+                        <% 
+                            CUsuarioService servicio = new CUsuarioService();
+                            CUsuario sys = servicio.getCUsuarioPort();
+                            String idLista, nombreList, icono, checked, idCheckbox; 
+                            sys.seleccionarUsuario(sys.obtenerUsuarioActual().getNickname());
+                            for (DtListaDeReproduccion dl : listas) {
+                                idLista = String.valueOf(dl.getId());
+                                idCheckbox = "checkbox"+idLista;
+                                nombreList = dl.getNombre();
+                                if( dl.getPrivacidad() == Privacidad.PRIVADO){
+                                    icono = "icon-lock1";
+                                }else{
+                                    icono = "icon-earth";
+                                }
+                                sys.seleccionarListaDeReproduccion(dl.getId());
+                                checked = "";
+                                for (DtVideo dv : sys.listarVideosDeListaDeReproduccion()) {
+                                    if( video.getId() == dv.getId()){
+                                        checked = "checked";
+                                        break;
+                                    }
+                                }    
+                        %>
+                        <div class="form-check">
+                            <input class="form-check-input checkLista" type="checkbox" <%= checked %> value="<%= idLista %>" id="<%=idCheckbox%>">
+                            <label class="form-check-label" for="<%=idCheckbox%>"><%= nombreList %> <span class="<%= icono%>"></span></label>
+                        </div>
+                        <%
+                            }
+                            sys.seleccionarUsuario(sys.obtenerPropietarioDeVideo(video.getId()).getNickname());
+                        %>
+                    </div>
+                    <div class="modal-footer">
+                        <button type="button" class="btn btn-info" data-dismiss="modal">Cerrar</button>
+
+                    </div>
+                </div>
+            </div>
+        </div>
+
+        <%
+            }
+        %>
+        <%@ include file='include/widgets.html' %>
+        <%@ include file='include/footer.html' %>
+
+        <script src="js/captura-comentario.js"></script>
+        <script src="js/jquery-3.4.1.min_1.js"></script>
+        <script src="js/bootstrap.bundle.min.js"></script>
+        <script src="js/bootstrap.min.js"></script>
+        <script src="js/funciones.js"></script>
+        <script src="js/consultar-video.js"></script>
+    </body>
+</html>
diff --git a/UyTube_mobile/web/ConsultarListaReproduccion.jsp b/UyTube_mobile/web/ConsultarListaReproduccion.jsp
new file mode 100644
index 0000000000000000000000000000000000000000..0320fa5e99c260d06b8d04e0298c10d2266602aa
--- /dev/null
+++ b/UyTube_mobile/web/ConsultarListaReproduccion.jsp
@@ -0,0 +1,161 @@
+<%-- 
+    Document   : Buscar
+    Created on : 09/10/2019, 07:55:42 PM
+    Author     : administrador
+--%>
+
+<%@page import="logica.controladores.TipoListaDeReproduccion"%>
+<%@page import="logica.controladores.DtVideo"%>
+<%@page import="logica.controladores.DtListaDeReproduccion"%>
+<%@page import="java.util.ArrayList"%>
+<%@page contentType="text/html" pageEncoding="UTF-8"%>
+<!DOCTYPE html>
+
+<html lang="es">
+    <%
+        DtListaDeReproduccion listasRep = (DtListaDeReproduccion) request.getAttribute("listas");
+        String usuario = (String)request.getAttribute("usuario");
+        boolean sesionIniciada = (boolean) (request.getSession().getAttribute("usuario") != null);
+        boolean propietario = (boolean) request.getAttribute("propietario");
+        ArrayList<DtVideo> videos = (ArrayList<DtVideo>) request.getAttribute("videos");
+    %>
+    <head>
+        <meta charset="UTF-8">
+        <meta http-equiv="X-UA-Compatible" content="IE=edge">
+        <meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
+        <link rel="stylesheet" type="text/css" href="css/bootstrap.css">
+        <link rel="stylesheet" type="text/css" href="css/body.css">
+        <link rel="stylesheet" type="text/css" href="css/header.css">
+        <link rel="stylesheet" type="text/css" href="css/menu.css">
+        <link rel="stylesheet" type="text/css" href="css/widget.css">
+        <link rel="stylesheet" type="text/css" href="css/footer.css">
+        <link rel="stylesheet" type="text/css" href="css/contenido-buscar.css">
+        <link rel="stylesheet" type="text/css" href="iconos/style.css">
+        <link rel="icon" type="image/png" href="imagenes/icono.png" />
+        <title>UyTube</title>
+    </head>
+    <body>
+        <div class="container-fluid" style="padding-left: 0; padding-right: 0px;">
+            <div class="row">
+                <div class="col-12">
+                    <!-- Inclusion de la barra superior -->
+                    <%
+                        if (sesionIniciada) {
+                    %>
+                    <jsp:include page="include/header-usuario.jsp" />
+                    <%
+                        } else {
+                    %>
+                    <jsp:include page="include/header-visitante.jsp" />
+                    <%
+                        }
+                    %>
+
+                </div>
+            </div>		
+        </div>
+
+        <div class="container-fluid" style="padding-left: 0; padding-right: 0px;">
+            <div class="row">
+                <div class="col-12">
+                    <div class="relleno-header"></div>
+                </div>
+            </div>
+        </div>
+        <div class="container-fluid" style="padding-left: 0; padding-right: 0px;">
+            <div class="row">
+                <div class="col-12">
+                    <section class="principal">
+                        <%
+                            if (sesionIniciada) {
+                        %>
+                        <jsp:include page="include/menu-usuario.jsp" />
+                        <%
+                        } else {
+                        %>
+                        <jsp:include page="include/menu-visitante.jsp" />
+                        <%
+                            }
+                        %>
+                        <div class="contenido">
+                            <section class="contenido-flexible">								
+                                <div class="container">
+
+                                    <!-- INFORMACION LISTA.REP-->
+                                    <div class="d-flex bd-highlight">
+                                        <div class="bd-highlight">
+                                            <img src="imagenes/lista.jpg" width="246" height="138">
+                                        </div>
+                                        <div class="pl-3 p-2 bd-highlight">
+                                            <h5>Nombre: </h5>
+                                            <h5>Tipo:</h5>
+                                            <h5>Privacidad:</h5>
+                                            <h5>Categoria:</h5>
+                                        </div>
+                                        <div class="p-2 bd-highlight">
+                                            <h5><%= listasRep.getNombre()%></h5>
+                                            <h5><%= listasRep.getTipo()%></h5>
+                                            <h5><%= listasRep.getPrivacidad()%></h5>
+                                            <h5><%= listasRep.getCategoria()%></h5> 
+                                        </div>
+                                        <%
+                                            if (sesionIniciada && propietario && listasRep.getTipo() != TipoListaDeReproduccion.POR_DEFECTO) {
+                                        %>
+                                        <div class="p-2 d-flex align-items-end">
+                                            <a href="lista-modificar?idUsu=<%= usuario%>&idList=<%= listasRep.getId()%>">
+                                                <button type="button" class="btn btn-primary">MODIFICAR</button>
+                                            </a>
+                                        </div>
+                                        <%
+                                            }
+                                        %>
+                                    </div>
+
+                                    <!--FIN INFORMACION LISTA.REP-->
+                                    <hr>
+                                    <!--LISTA DE CONTENIDO-->
+                                    <h3>VIDEOS:</h3>
+
+                                    <div class="tab-pane fade show active" id="videos" role="tabpanel" aria-labelledby="nav-VIDEO-tab">
+                                        <!--PRIMER VIDEO-->
+                                        <%
+                                            for (DtVideo elem : videos) {
+                                                String id = Funciones.Funciones.extraerIDYoutube(elem.getUrlVideoOriginal());
+                                        %>
+                                        <div class="video">
+                                            <div class="bd-highlight caja-imagen">
+                                                <div class="bd-highlight">
+                                                    <a href="video-consultar?id=<%=elem.getId()%>">
+                                                        <img src="<%= Funciones.Funciones.obtenerImagenDeVideo(id, 2)%>" width="246" height="138">
+                                                    </a>
+                                                </div>
+                                            </div>
+                                            <div class="bd-highlight caja-texto justify-content-start">
+                                                <div class="bg-light" >
+                                                    <a href="video-consultar?id=<%=elem.getId()%>">
+                                                        <h5><%= elem.getNombre() %></h5>
+                                                    </a>
+                                                    <p><%= elem.getDescripcion()%></p>
+                                                </div>
+                                            </div>
+                                        </div>
+                                        <%
+                                            }
+                                        %>
+                                    </div>							
+                            </section>
+                        </div> 
+                    </section>	
+                </div>
+            </div>
+        </div>
+
+        <%@ include file='include/widgets.html' %>
+        <%@ include file='include/footer.html' %>
+
+        <script src="js/jquery-3.4.1.min.js"></script>
+        <script src="js/bootstrap.bundle.min.js"></script>
+        <script src="js/bootstrap.min.js"></script>
+        <script src="js/funciones.js"></script>
+    </body>
+</html>
\ No newline at end of file
diff --git a/UyTube_mobile/web/IniciarSesion.jsp b/UyTube_mobile/web/IniciarSesion.jsp
new file mode 100644
index 0000000000000000000000000000000000000000..747f21e4111b521bc31b9d977e85154519ace37f
--- /dev/null
+++ b/UyTube_mobile/web/IniciarSesion.jsp
@@ -0,0 +1,117 @@
+<%-- 
+    Document   : IniciarSesion
+    Created on : 02/10/2019, 09:01:59 AM
+    Author     : administrador
+--%>
+
+<%@page contentType="text/html" pageEncoding="UTF-8"%>
+<!DOCTYPE html>
+<html lang="es">
+    <%
+        boolean sesionIniciada = (boolean) (request.getSession().getAttribute("usuario") != null);
+    %>
+    <head>
+        <meta charset="UTF-8">
+        <meta http-equiv="X-UA-Compatible" content="IE=edge">
+        <meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
+        <link rel="stylesheet" type="text/css" href="css/bootstrap.css">
+        <link rel="stylesheet" type="text/css" href="css/body.css">
+        <link rel="stylesheet" type="text/css" href="css/header.css">
+        <link rel="stylesheet" type="text/css" href="css/menu.css">
+        <link rel="stylesheet" type="text/css" href="css/widget.css">
+        <link rel="stylesheet" type="text/css" href="css/footer.css">
+        <link rel="stylesheet" type="text/css" href="css/contenido-iniciar-sesion.css">	
+        <link rel="stylesheet" type="text/css" href="iconos/style.css">
+        <link rel="icon" type="image/png" href="imagenes/icono.png" />
+        <title>UyTube</title>
+    </head>
+    <body>
+
+        <div class="container-fluid" style="padding-left: 0; padding-right: 0px;">
+            <div class="row">
+                <div class="col-12">
+                    <%
+                        if (sesionIniciada) {
+                    %>
+                    <jsp:include page="include/header-usuario.jsp" />
+                    <%                    } else {
+                    %>
+                    <jsp:include page="include/header-visitante.jsp" />
+                    <%
+                        }
+                    %>
+                </div>
+            </div>		
+        </div>
+        <div class="container-fluid" style="padding-left: 0; padding-right: 0px;">
+            <div class="row">
+                <div class="col-12">
+                    <div class="relleno-header"></div>
+                </div>
+            </div>
+        </div>
+        <div class="container-fluid" style="padding-left: 0; padding-right: 0px;">
+            <div class="row">
+                <div class="col-12">
+                    <section class="principal">					
+                        <%
+                            if (sesionIniciada) {
+                        %>
+                        <jsp:include page="include/menu-usuario.jsp" />
+                        <%                        } else {
+                        %>
+                        <jsp:include page="include/menu-visitante.jsp" />
+                        <%
+                            }
+                        %>
+
+                        <div class="contenido">
+                            <section class="contenido-flexible">
+                                
+                                <div class="principal d-flex flex-row justify-content-center">
+                                    <section class="d-flex  flex-lg-row flex-wrap justify-content-lg-between">	
+                                        <form class="form-signin" action="inicio-sesion" method="post">
+                                            <img class="mb-4" src="imagenes/UyTubeAlfa.png" alt="UyTube" >
+                                            <h1 class="h3 mb-3 font-weight-normal" id="Texto_ingrese">Ingrese por favor</h1>
+                                            <label for="inputEmail" class="sr-only" id="label_email">Nickname/Email</label>
+                                            <input type="text"name="user" id="txtUsuario" class="form-control mb-4" placeholder="nickname/email" required autofocus>
+                                            <label for="inputPassword" name="password" class="sr-only" id="label_contrasenia">Contraseña</label>
+                                            <input type="password" name="password" id="input_contraseña" class="form-control mb-4" placeholder="Contraseña" required>
+                                            <%
+                                                boolean mostrarMsjError = (request.getAttribute("mostrarMsjError") != null);
+                                                if (mostrarMsjError) {
+                                            %>
+                                            <div class="mb-3">
+                                                <span id="msjError" style="color: red">El usuario o la contraseña son incorrectos</span>
+                                            </div>
+                                            <%
+                                                }
+                                            %>
+                                            <button class="btn btn-lg btn-primary btn-block mb-4" type="submit" id="btn_Ingresar">Ingresar</button>
+
+                                            <a href="usuario-agregar" >Registrase</a>
+
+                                            <br><br>
+                                            <p class="mt-5 mb-3 text-muted" id="texto_copy">&copy; 2019-2020</p>
+                                            
+                                        </form>	
+                                    </section>
+                                </div>										
+                            </section>
+                        </div>
+
+                    </section>	
+                </div>
+            </div>
+        </div>
+
+        
+        <%@ include file='include/widgets.html' %>
+        <%@ include file='include/footer.html' %>
+
+        <script src="js/jquery-3.4.1.min_1.js"></script>
+        <script src="js/bootstrap.bundle.min.js"></script>
+        <script src="js/bootstrap.min.js"></script>
+        <script src="js/funciones.js"></script>
+    </body>
+</html>
\ No newline at end of file
diff --git a/UyTube_mobile/web/META-INF/context.xml b/UyTube_mobile/web/META-INF/context.xml
new file mode 100644
index 0000000000000000000000000000000000000000..6e62f859de77202540b185e003ce6c4cd960835f
--- /dev/null
+++ b/UyTube_mobile/web/META-INF/context.xml
@@ -0,0 +1,2 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<Context path="/uytube-mobile"/>
diff --git a/UyTube_mobile/web/ModificarListaReproduccion.jsp b/UyTube_mobile/web/ModificarListaReproduccion.jsp
new file mode 100644
index 0000000000000000000000000000000000000000..3d70178f1731f8bf542c31476cac7ec78d852fd7
--- /dev/null
+++ b/UyTube_mobile/web/ModificarListaReproduccion.jsp
@@ -0,0 +1,190 @@
+<%-- 
+    Document   : ConsultaUsuario
+    Created on : 07/10/2019, 01:25:13 AM
+    Author     : administrador
+--%>
+
+<%@page import="logica.controladores.Privacidad"%>
+<%@page import="java.util.ArrayList"%>
+<%@page import="logica.controladores.DtListaDeReproduccion"%>
+<%@page contentType="text/html" pageEncoding="UTF-8"%>
+<!DOCTYPE html>
+<html lang="es">
+    <%
+        DtListaDeReproduccion listasRep = (DtListaDeReproduccion) request.getAttribute("listas");
+        boolean sesionIniciada = (boolean) (request.getSession().getAttribute("usuario") != null);
+        ArrayList<String> Categorias = (ArrayList) request.getAttribute("Categorias");
+    %>
+    <head>
+        <meta charset="UTF-8">
+        <meta http-equiv="X-UA-Compatible" content="IE=edge">
+        <meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
+        <link rel="stylesheet" type="text/css" href="css/bootstrap.css">
+        <link rel="stylesheet" type="text/css" href="css/body.css">
+        <link rel="stylesheet" type="text/css" href="css/header.css">
+        <link rel="stylesheet" type="text/css" href="css/menu.css">
+        <link rel="stylesheet" type="text/css" href="css/widget.css">
+        <link rel="stylesheet" type="text/css" href="css/footer.css">
+        <link rel="stylesheet" type="text/css" href="css/contenido-consulta-usuario.css">
+        <link rel="stylesheet" type="text/css" href="iconos/style.css">
+        <link rel="icon" type="image/png" href="imagenes/icono.png" />
+        <title>UyTube - Mod.Lista</title>
+    </head>
+    <body>
+
+        <div class="container-fluid" style="padding-left: 0; padding-right: 0px;">
+            <div class="row">
+                <div class="col-12">
+                    <%
+                        if (sesionIniciada) {
+                    %>
+                    <jsp:include page='include/header-usuario.jsp' />
+                    <%                    } else {
+                    %>
+                    <jsp:include page='include/header-visitante.jsp' />
+                    <%
+                        }
+                    %>
+                </div>
+            </div>		
+        </div>
+        <div class="container-fluid" style="padding-left: 0; padding-right: 0px;">
+            <div class="row">
+                <div class="col-12">
+                    <div class="relleno-header"></div>
+                </div>
+            </div>
+        </div>
+        <div class="container-fluid" style="padding-left: 0; padding-right: 0px;">
+            <div class="row">
+                <div class="col-12">
+                    <section class="principal">	
+                        <%
+                            if (sesionIniciada) {
+                        %>
+                        <jsp:include page='include/menu-usuario.jsp' />
+                        <%                        } else {
+                        %>
+                        <jsp:include page='include/menu-visitante.jsp' />
+                        <%
+                            }
+                        %>
+                        <div class="contenido">
+                            <section class="contenido-flexible">								
+                                <div class="container">
+                                    <form class="form-modificar-lista" action="lista-modificar" method="post" >
+                                        <br>
+                                        <h4>Lista de reproducción particulares</h4>
+                                        <br>
+                                        <!-- Inicio de las Listas-->
+                                        <ul class="list-group">
+                                            <!-- Lista por defecto -->
+                                            <%
+                                                if (listasRep == null) {
+                                            %>  
+                                            <li class="list-group-item  list-group-item-danger">Este usuario no tiene Listas particulares</li>
+                                            <br>
+                                            <%
+                                            } else {
+
+                                            %>
+                                            <li class="list-group-item d-flex justify-content-between align-items-center">
+                                                <div class="col-md-4">
+                                                    <input value="<%=listasRep.getNombre()%>" class="form-control" type="text" name="nombre" readonly="readonly" placeholder="Nickname" id="input_Nickname" required>
+                                                </div>
+                                                <div class="form-group col-md-4">
+
+                                                    <label  for="cc-name">Privacidad del video</label>
+                                                    <%
+                                                        if (listasRep.getPrivacidad() == Privacidad.PRIVADO) {
+                                                    %>
+                                                    <div class="custom-control custom-radio">
+                                                        <input id="publico" name="privacidad" value="PUBLICO" type="radio" class="custom-control-input" >
+                                                        <label class="custom-control-label" for="publico">Publico</label>
+                                                    </div>
+                                                    <div class="custom-control custom-radio">
+                                                        <input id="privado" name="privacidad" value="PRIVADO" type="radio" class="custom-control-input" checked>
+                                                        <label class="custom-control-label" for="privado">Privado</label>
+                                                    </div>
+                                                    <%
+                                                        }
+
+                                                    %>
+
+                                                    <% if (listasRep.getPrivacidad() == Privacidad.PUBLICO) {
+                                                    %>
+                                                    <div class="custom-control custom-radio">
+                                                        <input id="publico" name="privacidad" value="PUBLICO" type="radio" class="custom-control-input" checked>
+                                                        <label class="custom-control-label" for="publico">Publico</label>
+                                                    </div>
+                                                    <div class="custom-control custom-radio">
+                                                        <input id="privado" name="privacidad" value="PRIVADO" type="radio" class="custom-control-input">
+                                                        <label class="custom-control-label" for="privado">Privado</label>
+                                                    </div>
+                                                    <%
+                                                        }
+                                                    %>
+
+                                                </div>
+
+
+                                                <div class=" bd-light">
+                                                    <select class="custom-select d-block w-100" name="categoria" id="categoria" required>
+                                                        <%
+                                                            for (String l : Categorias) {
+                                                                if (listasRep.getCategoria().equals(l)) {
+                                                        %>
+                                                        <option  selected = "selected"> <%= l%>  </option> 
+                                                        <%
+                                                        } else {
+                                                        %>
+                                                        <option> <%= l%>  </option> 
+                                                        <%
+                                                                }
+                                                            }
+                                                        %>
+                                                    </select>
+                                                </div>
+                                            </li>
+                                            <%
+                                                }
+                                            %>
+
+                                            <!-- Lista 1 -->
+
+                                            <!-- Fin de las listas. -->
+                                            <br>
+                                            <hr class="mb-2">
+                                            <br>
+                                            <!-- BOTONES (ACEPTAR / CANCELAR) -->
+
+                                            <div class="bd-light " >
+                                                <div class="btn-toolbar justify-content-end" role="toolbar" aria-label="Toolbar with button groups">
+                                                    <div class="p-2 btn-group mr-2" role="group" aria-label="Third group">
+                                                        <a href="presentacion"> 
+                                                            <button type="button" class="btn btn-danger">CANCELAR</button>
+                                                        </a>
+                                                    </div> 
+                                                    <div class="p-2 btn-group" role="group" aria-label="Third group">
+                                                        <button type="submit" class="btn btn-primary">ACEPTAR</button>
+                                                    </div>  
+                                                </div>
+                                            </div>
+                                    </form>
+                                </div>							
+                            </section>
+                        </div> 
+                    </section>	
+                </div>
+            </div>
+        </div>
+
+        <jsp:include page='include/widgets.html' />
+        <jsp:include page='include/footer.html' />
+
+        <script src="js/jquery-3.4.1.min.js"></script>
+        <script src="js/bootstrap.bundle.min.js"></script>
+        <script src="js/bootstrap.min.js"></script>
+        <script src="js/funciones.js"></script>
+    </body>
+</html>
\ No newline at end of file
diff --git a/UyTube_mobile/web/ModificarUsuario.jsp b/UyTube_mobile/web/ModificarUsuario.jsp
new file mode 100644
index 0000000000000000000000000000000000000000..f8bcbb1c5ed33b1ec492671c337ffc0e92f4f8b7
--- /dev/null
+++ b/UyTube_mobile/web/ModificarUsuario.jsp
@@ -0,0 +1,202 @@
+<%-- 
+    Document   : ModificarUsuario
+    Created on : 09/10/2019, 07:29:35 PM
+    Author     : administrador
+--%>
+
+<%@page import="java.text.SimpleDateFormat"%>
+<%@page import="java.text.DateFormat"%>
+<%@page import="java.util.ArrayList"%>
+<%@page import="logica.controladores.Privacidad"%>
+<%@page import="logica.controladores.DtCanal"%>
+<%@page import="logica.controladores.DtUsuario"%>
+<%@page contentType="text/html" pageEncoding="UTF-8"%>
+<!DOCTYPE html>
+<html lang="es">
+    
+    <script>
+        var check = function() {
+          if (document.getElementById('input_Contrasenia').value == document.getElementById('input_Repetir_contraseña').value) {
+            document.getElementById('message').style.color = 'green';
+            document.getElementById('message').innerHTML = 'Correcto';
+            document.getElementById("btn_Registrarme").disabled = false;
+            if (document.getElementById('input_Contrasenia').value == ""){
+                document.getElementById('message').style.color = 'red';
+                document.getElementById('message').innerHTML = 'Ingrese la contraseña';
+                document.getElementById("btn_Registrarme").disabled = true;
+            }
+          } else {
+            document.getElementById('message').style.color = 'red';
+            document.getElementById('message').innerHTML = 'No son iguales';
+            document.getElementById("btn_Registrarme").disabled = true;
+          }
+        }
+    </script>
+    
+    <%
+        DtUsuario usuario = (DtUsuario) request.getAttribute("usuario");
+        DtCanal canal = (DtCanal) request.getAttribute("canal");
+        boolean sesionIniciada = (boolean) (request.getSession().getAttribute("usuario") != null);
+    %>
+    <head>
+        <meta charset="UTF-8">
+        <meta http-equiv="X-UA-Compatible" content="IE=edge">
+        <meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
+        <link rel="stylesheet" type="text/css" href="css/bootstrap.css">
+        <link rel="stylesheet" type="text/css" href="css/body.css">
+        <link rel="stylesheet" type="text/css" href="css/header.css">
+        <link rel="stylesheet" type="text/css" href="css/menu.css">
+        <link rel="stylesheet" type="text/css" href="css/widget.css">
+        <link rel="stylesheet" type="text/css" href="css/footer.css">
+       	<link rel="stylesheet" type="text/css" href="css/contenido-alta-usuario.css">
+        <link rel="stylesheet" type="text/css" href="iconos/style.css">
+
+        <title>UyTube</title>
+    </head>
+    <body>
+
+        <div class="container-fluid" style="padding-left: 0; padding-right: 0px;">
+            <div class="row">
+                <div class="col-12">
+                    <!-- Inclusion de la barra superior -->
+                    <%
+                        if (sesionIniciada) {
+                    %>
+                     <jsp:include page="include/header-usuario.jsp" />
+                    <%
+                        } else {
+                    %>
+                    <jsp:include page="include/header-visitante.jsp" />
+                    <%
+                        }
+                    %>
+                </div>
+            </div>		
+        </div>
+        <div class="container-fluid" style="padding-left: 0; padding-right: 0px;">
+            <div class="row">
+                <div class="col-12">
+                    <div class="relleno-header"></div>
+                </div>
+            </div>
+        </div>
+        <div class="container-fluid" style="padding-left: 0; padding-right: 0px;">
+            <div class="row">
+                <div class="col-12">
+                    <section class="principal">						
+                        <!-- Inclusion del menu lateral -->
+                        <%
+                            if (sesionIniciada) {
+                        %>
+                        <jsp:include page="include/menu-usuario.jsp" />
+                        <%
+                        } else {
+                        %>
+                        <jsp:include page="include/menu-visitante.jsp" />
+                        <%
+                            }
+                        %>
+                        <div class="contenido">
+                            <section class="contenido-flexible">							
+                                <div class="principal d-flex flex-row justify-content-center">
+                                    <section class="d-flex  flex-lg-row flex-wrap justify-content-lg-between">					
+                                        <form class="form-signin" action="usuario-modificar" method="post" enctype="multipart/form-data">
+                                            <h1 class="h3 mb-3 font-weight-normal" id="Texto_ingrese">Ingrese sus datos</h1><br>
+                                            <input value="<%= usuario.getNickname()%>" class="form-control" type="text" name="nickname" readonly="readonly" placeholder="Nickname" id="input_Nickname" required><br>
+                                            <div class="row">
+                                                <div class="col-md-6 mb-3">
+                                                    <input value="<%= usuario.getNombre()%>"  type="text" class="form-control" name="nombre" id="input_Nombre" placeholder="Nombre" required>
+                                                </div>
+                                                <div class="col-md-6 mb-3">
+                                                    <input value="<%= usuario.getApellido()%>" type="text" class="form-control" name="apellido" id="input_Apellido" placeholder="Apellido" required>
+                                                </div>
+                                            </div>
+                                            <div class="mb-3">
+                                                <input value="<%= usuario.getCorreo()%>" type="email" class="form-control" name="email" readonly="readonly" id="email" placeholder="Email" required>
+                                            </div>
+                                            <%
+                                                String fecha = Funciones.Funciones.darFormatoFecha(usuario.getFechaNacimiento());
+                                            %>
+                                            <input  value="<%= fecha%>" class="form-control" name="fechaNa" type="date" id="input_fecha"><br>
+                                            
+
+                                            <input value="<%= usuario.getContrasenia()%>" class="form-control" type="password" name="password" placeholder="Contraseña" id="input_Contrasenia" onkeyup="check()" required><br>
+                                            <input value="<%= usuario.getContrasenia()%>" class="form-control" type="password" placeholder="Repita contraseña" id="input_Repetir_contraseña" onkeyup="check()" required>
+                                            <span id='message'></span>
+                                            <%
+                                                if (canal.getPrivacidad() == Privacidad.PUBLICO) {
+                                            %> 
+                                            <div class="d-block my-3">
+                                                <label for="cc-name">Privacidad del canal</label>
+                                                <div class="custom-control custom-radio">
+                                                    <input id="publico" name="privacidad" value="PUBLICO" type="radio" class="custom-control-input" checked>
+                                                    <label class="custom-control-label" for="publico">Publico</label>
+                                                </div>
+                                                <div class="custom-control custom-radio">
+                                                    <input id="privado" name="privacidad" value="PRIVADO" type="radio" class="custom-control-input">
+                                                    <label class="custom-control-label" for="privado">Privado</label>
+                                                </div>
+                                            </div>
+                                            <hr class="mb-4">
+                                            <%
+                                                }
+                                            %>
+
+                                            <%
+                                                if (canal.getPrivacidad() == Privacidad.PRIVADO) {
+                                            %> 
+                                            <div class="d-block my-3">
+                                                <label for="cc-name">Privacidad del canal</label>
+                                                <div class="custom-control custom-radio">
+                                                    <input id="publico" name="privacidad" value="PUBLICO" type="radio" class="custom-control-input" >
+                                                    <label class="custom-control-label" for="publico">Publico</label>
+                                                </div>
+                                                <div class="custom-control custom-radio">
+                                                    <input id="privado" name="privacidad" value="PRIVADO" type="radio" class="custom-control-input" checked>
+                                                    <label class="custom-control-label" for="privado">Privado</label>
+                                                </div>
+                                            </div>
+                                            <hr class="mb-4">
+                                            <%
+                                                }
+                                            %>
+
+                                            <input value="<%= canal.getNombre()%>" class="form-control" name="canal" type="text" placeholder="Nombre del Canal" readonly="readonly" id="input_Nombre_canal" required><br>
+
+                                            <textarea class="form-control" name="descripcion" id="input_descripcion" placeholder="Descripción del Canal" rows="3"> <%=canal.getDescripcion()%> </textarea>
+
+                                            <br>   
+                                            <label id="label_email">Imagen de perfil</label>	
+                                            <div class="form-group">
+                                                <input id="input_Imagen_Perfil" name="imagen" accept=".PNG,.JPG,.jpg,.png" type="file" class="file" multiple=false data-preview-file-type="any"><br>
+                                            </div>
+
+                                            <hr class="mb-4">
+
+                                            <div class="btn-toolbar" role="toolbar" aria-label="Toolbar with button groups">
+                                                <div class="btn-group mr-2" role="group" aria-label="Second group">
+                                                    <button class="btn btn-lg btn-primary btn-block" type="submit" id="btn_Registrarme">Modificar usuario</button>
+                                                </div>
+                                            </div>
+
+                                            <p class="mt-5 mb-3 text-muted" id="texto_copy">&copy; 2019-2020</p>
+                                        </form>
+                                    </section>
+                                </div>									
+                            </section>
+                        </div>
+                    </section>	
+                </div>
+            </div>
+        </div>
+
+        <%@ include file='include/widgets.html' %>
+        <%@ include file='include/footer.html' %>
+
+        <script src="js/jquery-3.4.1.min.js"></script>
+        <script src="js/bootstrap.bundle.min.js"></script>
+        <script src="js/bootstrap.min.js"></script>
+        <script src="js/funciones.js"></script>
+        <<script src="js/alta-usuario.js"></script>
+    </body>
+</html>
\ No newline at end of file
diff --git a/UyTube_mobile/web/ModificarVideo.jsp b/UyTube_mobile/web/ModificarVideo.jsp
new file mode 100644
index 0000000000000000000000000000000000000000..931e2b9fdd419d113c1e1d2d9ec16e3de74585c7
--- /dev/null
+++ b/UyTube_mobile/web/ModificarVideo.jsp
@@ -0,0 +1,181 @@
+<%-- 
+    Document   : ModificarVideo
+    Created on : 09/10/2019, 07:49:19 PM
+    Author     : administrador
+--%>
+
+<%@page import="java.text.DateFormat"%>
+<%@page import="java.text.DateFormat"%>
+<%@page import="java.text.SimpleDateFormat"%>
+<%@page import="logica.controladores.Privacidad"%>
+<%@page import="logica.controladores.DtVideo"%>
+<%@page import="java.util.ArrayList"%>
+<%@page contentType="text/html" pageEncoding="UTF-8"%>
+<html lang="es">
+    <%
+        DtVideo video = (DtVideo) request.getAttribute("video");
+        ArrayList<String> Categorias = (ArrayList) request.getAttribute("Categorias");
+        boolean sesionIniciada = (boolean) (request.getSession().getAttribute("usuario") != null);
+    %>
+    <head>
+        <meta charset="UTF-8">
+        <meta http-equiv="X-UA-Compatible" content="IE=edge">
+        <meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
+        <link rel="stylesheet" type="text/css" href="css/bootstrap.css">
+        <link rel="stylesheet" type="text/css" href="css/body.css">
+        <link rel="stylesheet" type="text/css" href="css/header.css">
+        <link rel="stylesheet" type="text/css" href="css/menu.css">        
+        <link rel="stylesheet" type="text/css" href="css/widget.css">
+        <link rel="stylesheet" type="text/css" href="css/footer.css">
+        <link rel="stylesheet" type="text/css" href="css/contenido-alta-video.css">	
+        <link rel="stylesheet" type="text/css" href="iconos/style.css">
+        <link rel="icon" type="image/png" href="imagenes/icono.png" />
+        <title>UyTube - Modificar <%= video.getNombre() %></title>
+    </head>
+    <body>
+
+        <%
+            if (sesionIniciada) {
+        %>
+        <jsp:include page="include/header-usuario.jsp" />
+        <%
+        } else {
+        %>
+        <jsp:include page="include/header-visitante.jsp" />
+        <%
+            }
+        %>
+        <div class="container-fluid" style="padding-left: 0; padding-right: 0px;">
+            <div class="row">
+                <div class="col-12">
+                    <div class="relleno-header"></div>
+                </div>
+            </div>
+        </div>
+        <div class="container-fluid" style="padding-left: 0; padding-right: 0px;">
+            <div class="row">
+                <div class="col-12">
+                    <section class="principal">	
+
+                        <%
+                            if (sesionIniciada) {
+                        %>
+                        <jsp:include page="include/menu-usuario.jsp" />
+                        <%
+                        } else {
+                        %>
+                        <jsp:include page="include/menu-visitante.jsp" />
+                        <%
+                            }
+                        %>
+
+                        <div class="contenido">
+                            <section class="contenido-flexible">
+                                <!--================== Aca va el contenido central para agregar ========================== -->					
+                                <h3>Modificar de video</h3>			
+                                <form class="form-alta-video" action="video-modificar" method="post" >
+                                    <div class="form-group row">
+                                        <div class="form-group col-md-9">
+                                            <label for="inputNombre">Nombre</label>
+                                            <input idVideo="<%= video.getId() %>" value="<%= video.getNombre()%>" type="text" class="form-control" name="nombre" id="inputNombre" placeholder="Nombre del video">
+                                            <span id="msjNombre"></span>
+                                        </div>
+                                        <div class="form-group col-md-3">
+                                            <label for="inputDuracion">Duración</label>
+                                            <input value="<%=video.getDuracion()%>" type="time" step='1' class="form-control" name="duracion" id="inputDuracion" placeholder="Duración">
+                                        </div>
+                                    </div>
+                                    <div class="form-group row">
+                                        <div class="form-group col-md-12">
+                                            <label for="inputUrl">URL</label>
+                                            <input value="<%= video.getUrlVideoOriginal()%>"type="url" class="form-control" name="url" id="inputUrl" placeholder="URL">
+                                        </div>
+                                    </div>
+                                    <div class="form-group row">
+                                        <div class="form-group col-md-12">
+                                            <label for="inputDescripcion">Descripción</label>
+                                            <textarea class="form-control" name="descripcion" id="inputDescripcion" rows="3"><%=video.getDescripcion()%></textarea>
+                                        </div>
+                                    </div>										
+                                    <div class="form-group row">
+                                        <div class="form-group col-md-4">
+
+                                            <label  for="cc-name">Privacidad del video</label>
+                                            <%
+                                                if (video.getPrivacidad().equals(Privacidad.PRIVADO)) {
+                                            %>
+                                            <div class="custom-control custom-radio">
+                                                <input id="publico" name="privacidad" value="PUBLICO" type="radio" class="custom-control-input" >
+                                                <label class="custom-control-label" for="publico">Publico</label>
+                                            </div>
+                                            
+                                            <div class="custom-control custom-radio">
+                                                <input id="privado" name="privacidad" value="PRIVADO" type="radio" class="custom-control-input" checked>
+                                                <label class="custom-control-label" for="privado">Privado</label>
+                                            </div>
+                                            <%
+                                                }else {
+                                            %>
+                                            <div class="custom-control custom-radio">
+                                                <input id="publico" name="privacidad" value="PUBLICO" type="radio" class="custom-control-input" checked>
+                                                <label class="custom-control-label" for="publico">Publico</label>
+                                            </div>
+                                            
+                                            <div class="custom-control custom-radio">
+                                                <input id="privado" name="privacidad" value="PRIVADO" type="radio" class="custom-control-input">
+                                                <label class="custom-control-label" for="privado">Privado</label>
+                                            </div>
+                                            <%
+                                                }
+                                            %>
+
+                                        </div>
+
+                                        <div class="form-group col-md-4">
+                                            <%
+                                                String fecha = Funciones.Funciones.darFormatoFecha(video.getFechaPublicacion());
+                                            %>
+                                            <label for="inputFecha">Fecha</label>
+                                            <input value="<%= fecha %>" type="date" name="fecha" class="form-control"  id="inputFecha">
+                                        </div>  
+                                        <div class="form-group col-md-4">
+                                            <label for="inputCategoria">Categoría</label>
+                                            <select id="inputCategoria" name="categoria" class="form-control">
+                                                <%
+                                                    for (String l : Categorias) {
+                                                        if (video.getCategoria().equals(l)) {
+                                                %>
+                                                <option  selected = "selected"> <%= l%>  </option> 
+                                                <%
+                                                } else {
+                                                %>
+                                                <option> <%= l%>  </option> 
+                                                <%
+                                                        }
+                                                    }
+                                                %>
+                                            </select>
+                                        </div>												
+                                    </div>
+                                    <button type="submit" class="btn btn-primary">Modificar video</button>
+                                    </div>											
+                                </form>
+                                <!-- Fin del contenido central -->
+                            </section>
+                        </div>
+
+                    </section>	
+                </div>
+            </div>
+        </div>
+
+        <%@ include file='include/widgets.html' %>
+        <%@ include file='include/footer.html' %>
+
+        <script src="js/jquery-3.4.1.min.js"></script>
+        <script src="js/bootstrap.bundle.min.js"></script>
+        <script src="js/bootstrap.min.js"></script>
+        <script src="js/funciones.js"></script>
+        <script src="js/alta-modificar-video.js"></script>
+    </body>
+</html>
diff --git a/UyTube_mobile/web/Presentacion.jsp b/UyTube_mobile/web/Presentacion.jsp
new file mode 100644
index 0000000000000000000000000000000000000000..2caf43351f131d6b5900f24af321c274286317f9
--- /dev/null
+++ b/UyTube_mobile/web/Presentacion.jsp
@@ -0,0 +1,112 @@
+<%-- 
+    Document   : Presentacion
+    Created on : 07/10/2019, 03:40:03 PM
+    Author     : administrador
+--%>
+
+<%@page import="logica.controladores.CUsuario"%>
+<%@page import="logica.controladores.CUsuarioService"%>
+<%@page import="logica.controladores.Ordenacion"%>
+<%@page import="logica.controladores.Filtrado"%>
+<%@page import="logica.controladores.DtVideo"%>
+<%@page import="java.util.ArrayList"%>
+<%@page contentType="text/html" pageEncoding="UTF-8"%>
+<!DOCTYPE html>
+<html lang="es">
+    <%
+        CUsuarioService servicio = new CUsuarioService();
+        CUsuario sys = servicio.getCUsuarioPort();
+        ArrayList<Object> video = (ArrayList) sys.buscar("", Filtrado.VIDEOS, Ordenacion.FECHA_DESCENDENTE);
+        boolean sesionIniciada = (boolean) (request.getSession().getAttribute("usuario") != null);
+    %>
+    <head>
+        <meta charset="UTF-8">
+        <meta http-equiv="X-UA-Compatible" content="IE=edge">
+        <meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
+        <link rel="stylesheet" type="text/css" href="css/contenido-index.css">
+        <link rel="stylesheet" type="text/css" href="css/bootstrap.css">
+        <link rel="stylesheet" type="text/css" href="css/body.css">
+        <link rel="stylesheet" type="text/css" href="css/header.css">
+        <link rel="stylesheet" type="text/css" href="css/menu.css">
+        <link rel="stylesheet" type="text/css" href="css/widget.css">
+        <link rel="stylesheet" type="text/css" href="css/footer.css">
+       	
+        <link rel="stylesheet" type="text/css" href="iconos/style.css">
+        <link rel="icon" type="image/png" href="imagenes/icono.png" />
+        <title>UyTube</title>
+    </head>
+    <body>
+        <%
+            if (sesionIniciada) {
+        %>
+        <jsp:include page="include/header-usuario.jsp" />
+        <%
+        } else {
+        %>
+        <jsp:include page="include/header-visitante.jsp" />
+        <%
+            }
+        %>
+        <div class="container-fluid" style="padding-left: 0; padding-right: 0px;">
+            <div class="row">
+                <div class="col-12">
+                    <div class="relleno-header"></div>
+                </div>
+            </div>
+        </div>
+        <div class="container-fluid" style="padding-left: 0; padding-right: 0px; ">
+            <div class="row">
+                <div class="col-12">
+                    <section class="principal">						
+
+                        <%
+                            if (sesionIniciada) {
+                        %>
+                        <jsp:include page="include/menu-usuario.jsp" />
+                        <%
+                        } else {
+                        %>
+                        <jsp:include page="include/menu-visitante.jsp" />
+                        <%
+                            }
+                        %>
+                        <div class="contenido">
+                            <section class="contenido-flexible">
+                                <!--================== Aca va el contenido central para agregar ========================== -->					
+                                <h3>Lo nuevo</h3>
+                                <%
+                                    for (Object elem : video) {
+                                        DtVideo vid = (DtVideo) elem;
+                                        String idV = Funciones.Funciones.extraerIDYoutube(vid.getUrlVideoOriginal());
+                                        String Imagen = Funciones.Funciones.obtenerImagenDeVideo(idV, 2);
+                                %> 
+                                <div class="card" >
+                                    <a href="video-consultar?id=<%= vid.getId()%>">
+                                        <img src="<%= Imagen%>" class="card-img-top" alt="Nombre del video">
+                                    </a>
+                                        <div class="card-body overflow-auto">
+                                            <a href="video-consultar?id=<%= vid.getId()%>">
+                                                <h6 class="card-title"><%= vid.getNombre()%></h6>
+                                            </a>
+                                        </div>
+                                </div>
+                                <%
+                                    }
+                                %>
+                        </div>
+                        
+                    </section>	
+                </div>
+            </div>
+        </div>
+
+        <%@ include file='include/widgets.html' %>
+        <%@ include file='include/footer.html' %>
+
+        <script src="js/jquery-3.4.1.min_1.js"></script>
+        <script src="js/bootstrap.bundle.min.js"></script>
+        <script src="js/bootstrap.min.js"></script>
+        <script src="js/funciones.js"></script>
+        
+    </body>
+</html>
diff --git a/UyTube_mobile/web/WEB-INF/web.xml b/UyTube_mobile/web/WEB-INF/web.xml
new file mode 100644
index 0000000000000000000000000000000000000000..b3886eb89aaa4f80cd9f0d3bb004e166d6ecaf26
--- /dev/null
+++ b/UyTube_mobile/web/WEB-INF/web.xml
@@ -0,0 +1,184 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<web-app version="3.1" xmlns="http://xmlns.jcp.org/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd">
+    <servlet>
+        <servlet-name>ConsultaListaReproducion</servlet-name>
+        <servlet-class>com.uytube.ConsultaListaReproducion</servlet-class>
+    </servlet>
+    <servlet>
+        <servlet-name>ConsultaVideo</servlet-name>
+        <servlet-class>com.uytube.ConsultaVideo</servlet-class>
+    </servlet>
+    <servlet>
+        <servlet-name>IniciarSesion</servlet-name>
+        <servlet-class>com.uytube.IniciarSesion</servlet-class>
+    </servlet>
+    <servlet>
+        <servlet-name>Presentacion</servlet-name>
+        <servlet-class>com.uytube.Presentacion</servlet-class>
+    </servlet>
+    <servlet>
+        <servlet-name>ConsultaUsuario</servlet-name>
+        <servlet-class>com.uytube.ConsultaUsuario</servlet-class>
+    </servlet>
+    <servlet>
+        <servlet-name>CerrarSesion</servlet-name>
+        <servlet-class>com.uytube.CerrarSesion</servlet-class>
+    </servlet>
+    <servlet>
+        <servlet-name>AltaVideo</servlet-name>
+        <servlet-class>com.uytube.AltaVideo</servlet-class>
+    </servlet>
+    <servlet>
+        <servlet-name>PeticionAjax</servlet-name>
+        <servlet-class>com.uytube.PeticionAjax</servlet-class>
+    </servlet>
+    <servlet>
+        <servlet-name>AltaUsuario</servlet-name>
+        <servlet-class>com.uytube.AltaUsuario</servlet-class>
+    </servlet>
+    <servlet>
+        <servlet-name>ModificarUsuario</servlet-name>
+        <servlet-class>com.uytube.ModificarUsuario</servlet-class>
+    </servlet>
+    <servlet>
+        <servlet-name>ListarUsuario</servlet-name>
+        <servlet-class>com.uytube.ListarUsuario</servlet-class>
+    </servlet>
+    <servlet>
+        <servlet-name>SeguirUsuario</servlet-name>
+        <servlet-class>com.uytube.SeguirUsuario</servlet-class>
+    </servlet>
+    <servlet>
+        <servlet-name>AltaListaReproduccion</servlet-name>
+        <servlet-class>com.uytube.AltaListaReproduccion</servlet-class>
+    </servlet>
+    <servlet>
+        <servlet-name>ModificarListaReproduccion</servlet-name>
+        <servlet-class>com.uytube.ModificarListaReproduccion</servlet-class>
+    </servlet>
+    <servlet>
+        <servlet-name>AgregarVideoAListaReproduccion</servlet-name>
+        <servlet-class>com.uytube.AgregarVideoAListaReproduccion</servlet-class>
+    </servlet>
+    <servlet>
+        <servlet-name>QuitarVideoDeListaReproduccion</servlet-name>
+        <servlet-class>com.uytube.QuitarVideoDeListaReproduccion</servlet-class>
+    </servlet>
+    <servlet>
+        <servlet-name>ModificarVideo</servlet-name>
+        <servlet-class>com.uytube.ModificarVideo</servlet-class>
+    </servlet>
+    <servlet>
+        <servlet-name>AgregarValoracion</servlet-name>
+        <servlet-class>com.uytube.AgregarValoracion</servlet-class>
+    </servlet>
+    <servlet>
+        <servlet-name>AgregarComentario</servlet-name>
+        <servlet-class>com.uytube.AgregarComentario</servlet-class>
+    </servlet>
+    <servlet>
+        <servlet-name>ListarCategoria</servlet-name>
+        <servlet-class>com.uytube.ListarCategoria</servlet-class>
+    </servlet>
+    <servlet>
+        <servlet-name>Buscar</servlet-name>
+        <servlet-class>com.uytube.Buscar</servlet-class>
+    </servlet>
+    <servlet-mapping>
+        <servlet-name>ConsultaListaReproducion</servlet-name>
+        <url-pattern>/lista-consultar</url-pattern>
+    </servlet-mapping>
+    <servlet-mapping>
+        <servlet-name>Presentacion</servlet-name>
+        <url-pattern>/presentacion</url-pattern>
+    </servlet-mapping>
+    <servlet-mapping>
+        <servlet-name>CerrarSesion</servlet-name>
+        <url-pattern>/cerrar-sesion</url-pattern>
+    </servlet-mapping>
+    <servlet-mapping>
+        <servlet-name>IniciarSesion</servlet-name>
+        <url-pattern>/inicio-sesion</url-pattern>
+    </servlet-mapping>
+    <servlet-mapping>
+        <servlet-name>AltaVideo</servlet-name>
+        <url-pattern>/video-agregar</url-pattern>
+    </servlet-mapping>
+    <servlet-mapping>
+        <servlet-name>AltaUsuario</servlet-name>
+        <url-pattern>/usuario-agregar</url-pattern>
+    </servlet-mapping>
+    <servlet-mapping>
+        <servlet-name>ConsultaVideo</servlet-name>
+        <url-pattern>/video-consultar</url-pattern>
+    </servlet-mapping>
+    <servlet-mapping>
+        <servlet-name>ConsultaUsuario</servlet-name>
+        <url-pattern>/usuario-consultar</url-pattern>
+    </servlet-mapping>
+    <servlet-mapping>
+        <servlet-name>PeticionAjax</servlet-name>
+        <url-pattern>/consultar</url-pattern>
+    </servlet-mapping>
+    <servlet-mapping>
+        <servlet-name>ModificarUsuario</servlet-name>
+        <url-pattern>/usuario-modificar</url-pattern>
+    </servlet-mapping>
+    <servlet-mapping>
+        <servlet-name>ListarUsuario</servlet-name>
+        <url-pattern>/usuario-listar</url-pattern>
+    </servlet-mapping>
+    <servlet-mapping>
+        <servlet-name>SeguirUsuario</servlet-name>
+        <url-pattern>/usuario-seguir</url-pattern>
+    </servlet-mapping>
+    <servlet-mapping>
+        <servlet-name>AltaListaReproduccion</servlet-name>
+        <url-pattern>/lista-agregar</url-pattern>
+    </servlet-mapping>
+    <servlet-mapping>
+        <servlet-name>ModificarListaReproduccion</servlet-name>
+        <url-pattern>/lista-modificar</url-pattern>
+    </servlet-mapping>
+    <servlet-mapping>
+        <servlet-name>AgregarVideoAListaReproduccion</servlet-name>
+        <url-pattern>/lista-agregar-video</url-pattern>
+    </servlet-mapping>
+    <servlet-mapping>
+        <servlet-name>QuitarVideoDeListaReproduccion</servlet-name>
+        <url-pattern>/lista-quitar-video</url-pattern>
+    </servlet-mapping>
+    <servlet-mapping>
+        <servlet-name>ModificarVideo</servlet-name>
+        <url-pattern>/video-modificar</url-pattern>
+    </servlet-mapping>
+    <servlet-mapping>
+        <servlet-name>AgregarValoracion</servlet-name>
+        <url-pattern>/video-agregar-valoracion</url-pattern>
+    </servlet-mapping>
+    <servlet-mapping>
+        <servlet-name>AgregarComentario</servlet-name>
+        <url-pattern>/video-agregar-comentario</url-pattern>
+    </servlet-mapping>
+    <servlet-mapping>
+        <servlet-name>ListarCategoria</servlet-name>
+        <url-pattern>/categoria-listar</url-pattern>
+    </servlet-mapping>
+    <servlet-mapping>
+        <servlet-name>Buscar</servlet-name>
+        <url-pattern>/buscar</url-pattern>
+    </servlet-mapping>
+    <session-config>
+        <session-timeout>
+            2
+        </session-timeout>
+    </session-config>
+    <error-page>
+        <error-code>404</error-code>
+        <location>/404.jsp</location>
+    </error-page>
+    <error-page>
+        <error-code>500</error-code>
+        <location>/500.jsp</location>
+    </error-page>
+</web-app>
diff --git a/UyTube_mobile/web/css/.sass-cache/c5945467622b764634fe3b9fcf530060a0a026da/_alturas.sassc b/UyTube_mobile/web/css/.sass-cache/c5945467622b764634fe3b9fcf530060a0a026da/_alturas.sassc
new file mode 100644
index 0000000000000000000000000000000000000000..5b1ed625d09b477b54bfdf09b47645a1c2a1a506
Binary files /dev/null and b/UyTube_mobile/web/css/.sass-cache/c5945467622b764634fe3b9fcf530060a0a026da/_alturas.sassc differ
diff --git a/UyTube_mobile/web/css/.sass-cache/c5945467622b764634fe3b9fcf530060a0a026da/_colores.sassc b/UyTube_mobile/web/css/.sass-cache/c5945467622b764634fe3b9fcf530060a0a026da/_colores.sassc
new file mode 100644
index 0000000000000000000000000000000000000000..6d13430efc10d36e01aa5c6d74cc0f62049f84d2
Binary files /dev/null and b/UyTube_mobile/web/css/.sass-cache/c5945467622b764634fe3b9fcf530060a0a026da/_colores.sassc differ
diff --git a/UyTube_mobile/web/css/.sass-cache/c5945467622b764634fe3b9fcf530060a0a026da/contenido-alta-lista.sassc b/UyTube_mobile/web/css/.sass-cache/c5945467622b764634fe3b9fcf530060a0a026da/contenido-alta-lista.sassc
new file mode 100644
index 0000000000000000000000000000000000000000..97d4220d1b38231dd3657535f3aa18517156292c
Binary files /dev/null and b/UyTube_mobile/web/css/.sass-cache/c5945467622b764634fe3b9fcf530060a0a026da/contenido-alta-lista.sassc differ
diff --git a/UyTube_mobile/web/css/.sass-cache/c5945467622b764634fe3b9fcf530060a0a026da/contenido-consulta-usuario.sassc b/UyTube_mobile/web/css/.sass-cache/c5945467622b764634fe3b9fcf530060a0a026da/contenido-consulta-usuario.sassc
new file mode 100644
index 0000000000000000000000000000000000000000..15d8ed923c763b3b522a18e4420914be2e693f23
Binary files /dev/null and b/UyTube_mobile/web/css/.sass-cache/c5945467622b764634fe3b9fcf530060a0a026da/contenido-consulta-usuario.sassc differ
diff --git a/UyTube_mobile/web/css/.sass-cache/c5945467622b764634fe3b9fcf530060a0a026da/header.sassc b/UyTube_mobile/web/css/.sass-cache/c5945467622b764634fe3b9fcf530060a0a026da/header.sassc
new file mode 100644
index 0000000000000000000000000000000000000000..01aac36cd420d7360b0073074a95f9e1446db642
Binary files /dev/null and b/UyTube_mobile/web/css/.sass-cache/c5945467622b764634fe3b9fcf530060a0a026da/header.sassc differ
diff --git a/UyTube_mobile/web/css/.sass-cache/c5945467622b764634fe3b9fcf530060a0a026da/menu.sassc b/UyTube_mobile/web/css/.sass-cache/c5945467622b764634fe3b9fcf530060a0a026da/menu.sassc
new file mode 100644
index 0000000000000000000000000000000000000000..54c512472f3c739c9544868d9ee6291dc0d29271
Binary files /dev/null and b/UyTube_mobile/web/css/.sass-cache/c5945467622b764634fe3b9fcf530060a0a026da/menu.sassc differ
diff --git a/UyTube_mobile/web/css/_alturas.sass b/UyTube_mobile/web/css/_alturas.sass
new file mode 100644
index 0000000000000000000000000000000000000000..b1a211011ae4771ee20e57bdd03adcea19a0580b
--- /dev/null
+++ b/UyTube_mobile/web/css/_alturas.sass
@@ -0,0 +1,31 @@
+//Alto del header tamaño maximo 340
+$alturaHeader340: 56px 
+//Alto del header tamaño minimo 341
+$alturaHeader341: 56px
+//Alto del header tamaño minimo 388
+$alturaHeader388: 56px
+//Alto del header tamaño minimo 501
+$alturaHeader501: 56px
+//Alto del header tamaño minimo 576
+$alturaHeader576: 56px
+//Alto del header tamaño minimo 768
+$alturaHeader768: 56px
+//Alto del header tamaño minimo 992
+$alturaHeader992: 56px
+
+
+//Alto del widget tamaño maximo 340
+$alturaWidget340: 170px
+//Alto del widget tamaño minimo 341
+$alturaWidget341: 170px
+//Alto del widget tamaño minimo 388
+$alturaWidget388: 180px
+//Alto del widget tamaño minimo 501
+$alturaWidget501: 180px
+//Alto del widget tamaño minimo 576
+$alturaWidget576: 160px
+//Alto del widget tamaño minimo 768
+$alturaWidget768: 100px
+//Alto del widget tamaño minimo 992
+$alturaWidget992: 123px
+ 
\ No newline at end of file
diff --git a/UyTube_mobile/web/css/_colores.sass b/UyTube_mobile/web/css/_colores.sass
new file mode 100644
index 0000000000000000000000000000000000000000..a96c86e5aec49bdf96ffe1f5071b6b0181f95fd1
--- /dev/null
+++ b/UyTube_mobile/web/css/_colores.sass
@@ -0,0 +1,17 @@
+$naranja: #fa9007
+$amarillo: #f8ff00
+$rojo: #f00
+$marron: #d2691e
+$verde: #006400
+$gris: #a9a9a9
+$violeta: #9a17ed
+$colorPrimario: #027bf8
+$colorSecundario: #6a6691
+$colorHeaderMenuFooter: #00001a
+$colorPrimary: #007bff
+$colorBlanco: #fff
+$colorCelesteClaro: #5aa1e3
+$colorGrisClaro: #f6f6f6
+$colorHover: #48549c33
+$grisVCodeBarra: #252526
+$tituloItem: #0d0d0d
\ No newline at end of file
diff --git a/UyTube_mobile/web/css/body.css b/UyTube_mobile/web/css/body.css
new file mode 100644
index 0000000000000000000000000000000000000000..e98186b018b6a0be3a7b883e76441c26427becde
--- /dev/null
+++ b/UyTube_mobile/web/css/body.css
@@ -0,0 +1,9 @@
+* {
+  margin: 0px;
+  padding: 0px; }
+
+body {
+  width: 100%;
+  background-color: #5aa1e3; }
+
+/*# sourceMappingURL=body.css.map */
diff --git a/UyTube_mobile/web/css/body.sass b/UyTube_mobile/web/css/body.sass
new file mode 100644
index 0000000000000000000000000000000000000000..06557ec35162081815f5919d659b6ef66cee278d
--- /dev/null
+++ b/UyTube_mobile/web/css/body.sass
@@ -0,0 +1,12 @@
+@import _colores
+//Reset general
+*
+    margin: 0px
+    padding: 0px
+//Estilos del body    
+body
+    width: 100%
+    background-color: $colorCelesteClaro
+   
+    
+    
\ No newline at end of file
diff --git a/UyTube_mobile/web/css/bootstrap-theme.css b/UyTube_mobile/web/css/bootstrap-theme.css
new file mode 100644
index 0000000000000000000000000000000000000000..31d8882661324aedb8693f8bb7322c4af8374ae0
--- /dev/null
+++ b/UyTube_mobile/web/css/bootstrap-theme.css
@@ -0,0 +1,587 @@
+/*!
+ * Bootstrap v3.3.7 (http://getbootstrap.com)
+ * Copyright 2011-2016 Twitter, Inc.
+ * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
+ */
+.btn-default,
+.btn-primary,
+.btn-success,
+.btn-info,
+.btn-warning,
+.btn-danger {
+  text-shadow: 0 -1px 0 rgba(0, 0, 0, .2);
+  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .15), 0 1px 1px rgba(0, 0, 0, .075);
+          box-shadow: inset 0 1px 0 rgba(255, 255, 255, .15), 0 1px 1px rgba(0, 0, 0, .075);
+}
+.btn-default:active,
+.btn-primary:active,
+.btn-success:active,
+.btn-info:active,
+.btn-warning:active,
+.btn-danger:active,
+.btn-default.active,
+.btn-primary.active,
+.btn-success.active,
+.btn-info.active,
+.btn-warning.active,
+.btn-danger.active {
+  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
+          box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
+}
+.btn-default.disabled,
+.btn-primary.disabled,
+.btn-success.disabled,
+.btn-info.disabled,
+.btn-warning.disabled,
+.btn-danger.disabled,
+.btn-default[disabled],
+.btn-primary[disabled],
+.btn-success[disabled],
+.btn-info[disabled],
+.btn-warning[disabled],
+.btn-danger[disabled],
+fieldset[disabled] .btn-default,
+fieldset[disabled] .btn-primary,
+fieldset[disabled] .btn-success,
+fieldset[disabled] .btn-info,
+fieldset[disabled] .btn-warning,
+fieldset[disabled] .btn-danger {
+  -webkit-box-shadow: none;
+          box-shadow: none;
+}
+.btn-default .badge,
+.btn-primary .badge,
+.btn-success .badge,
+.btn-info .badge,
+.btn-warning .badge,
+.btn-danger .badge {
+  text-shadow: none;
+}
+.btn:active,
+.btn.active {
+  background-image: none;
+}
+.btn-default {
+  text-shadow: 0 1px 0 #fff;
+  background-image: -webkit-linear-gradient(top, #fff 0%, #e0e0e0 100%);
+  background-image:      -o-linear-gradient(top, #fff 0%, #e0e0e0 100%);
+  background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#e0e0e0));
+  background-image:         linear-gradient(to bottom, #fff 0%, #e0e0e0 100%);
+  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe0e0e0', GradientType=0);
+  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
+  background-repeat: repeat-x;
+  border-color: #dbdbdb;
+  border-color: #ccc;
+}
+.btn-default:hover,
+.btn-default:focus {
+  background-color: #e0e0e0;
+  background-position: 0 -15px;
+}
+.btn-default:active,
+.btn-default.active {
+  background-color: #e0e0e0;
+  border-color: #dbdbdb;
+}
+.btn-default.disabled,
+.btn-default[disabled],
+fieldset[disabled] .btn-default,
+.btn-default.disabled:hover,
+.btn-default[disabled]:hover,
+fieldset[disabled] .btn-default:hover,
+.btn-default.disabled:focus,
+.btn-default[disabled]:focus,
+fieldset[disabled] .btn-default:focus,
+.btn-default.disabled.focus,
+.btn-default[disabled].focus,
+fieldset[disabled] .btn-default.focus,
+.btn-default.disabled:active,
+.btn-default[disabled]:active,
+fieldset[disabled] .btn-default:active,
+.btn-default.disabled.active,
+.btn-default[disabled].active,
+fieldset[disabled] .btn-default.active {
+  background-color: #e0e0e0;
+  background-image: none;
+}
+.btn-primary {
+  background-image: -webkit-linear-gradient(top, #337ab7 0%, #265a88 100%);
+  background-image:      -o-linear-gradient(top, #337ab7 0%, #265a88 100%);
+  background-image: -webkit-gradient(linear, left top, left bottom, from(#337ab7), to(#265a88));
+  background-image:         linear-gradient(to bottom, #337ab7 0%, #265a88 100%);
+  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff265a88', GradientType=0);
+  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
+  background-repeat: repeat-x;
+  border-color: #245580;
+}
+.btn-primary:hover,
+.btn-primary:focus {
+  background-color: #265a88;
+  background-position: 0 -15px;
+}
+.btn-primary:active,
+.btn-primary.active {
+  background-color: #265a88;
+  border-color: #245580;
+}
+.btn-primary.disabled,
+.btn-primary[disabled],
+fieldset[disabled] .btn-primary,
+.btn-primary.disabled:hover,
+.btn-primary[disabled]:hover,
+fieldset[disabled] .btn-primary:hover,
+.btn-primary.disabled:focus,
+.btn-primary[disabled]:focus,
+fieldset[disabled] .btn-primary:focus,
+.btn-primary.disabled.focus,
+.btn-primary[disabled].focus,
+fieldset[disabled] .btn-primary.focus,
+.btn-primary.disabled:active,
+.btn-primary[disabled]:active,
+fieldset[disabled] .btn-primary:active,
+.btn-primary.disabled.active,
+.btn-primary[disabled].active,
+fieldset[disabled] .btn-primary.active {
+  background-color: #265a88;
+  background-image: none;
+}
+.btn-success {
+  background-image: -webkit-linear-gradient(top, #5cb85c 0%, #419641 100%);
+  background-image:      -o-linear-gradient(top, #5cb85c 0%, #419641 100%);
+  background-image: -webkit-gradient(linear, left top, left bottom, from(#5cb85c), to(#419641));
+  background-image:         linear-gradient(to bottom, #5cb85c 0%, #419641 100%);
+  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5cb85c', endColorstr='#ff419641', GradientType=0);
+  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
+  background-repeat: repeat-x;
+  border-color: #3e8f3e;
+}
+.btn-success:hover,
+.btn-success:focus {
+  background-color: #419641;
+  background-position: 0 -15px;
+}
+.btn-success:active,
+.btn-success.active {
+  background-color: #419641;
+  border-color: #3e8f3e;
+}
+.btn-success.disabled,
+.btn-success[disabled],
+fieldset[disabled] .btn-success,
+.btn-success.disabled:hover,
+.btn-success[disabled]:hover,
+fieldset[disabled] .btn-success:hover,
+.btn-success.disabled:focus,
+.btn-success[disabled]:focus,
+fieldset[disabled] .btn-success:focus,
+.btn-success.disabled.focus,
+.btn-success[disabled].focus,
+fieldset[disabled] .btn-success.focus,
+.btn-success.disabled:active,
+.btn-success[disabled]:active,
+fieldset[disabled] .btn-success:active,
+.btn-success.disabled.active,
+.btn-success[disabled].active,
+fieldset[disabled] .btn-success.active {
+  background-color: #419641;
+  background-image: none;
+}
+.btn-info {
+  background-image: -webkit-linear-gradient(top, #5bc0de 0%, #2aabd2 100%);
+  background-image:      -o-linear-gradient(top, #5bc0de 0%, #2aabd2 100%);
+  background-image: -webkit-gradient(linear, left top, left bottom, from(#5bc0de), to(#2aabd2));
+  background-image:         linear-gradient(to bottom, #5bc0de 0%, #2aabd2 100%);
+  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff2aabd2', GradientType=0);
+  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
+  background-repeat: repeat-x;
+  border-color: #28a4c9;
+}
+.btn-info:hover,
+.btn-info:focus {
+  background-color: #2aabd2;
+  background-position: 0 -15px;
+}
+.btn-info:active,
+.btn-info.active {
+  background-color: #2aabd2;
+  border-color: #28a4c9;
+}
+.btn-info.disabled,
+.btn-info[disabled],
+fieldset[disabled] .btn-info,
+.btn-info.disabled:hover,
+.btn-info[disabled]:hover,
+fieldset[disabled] .btn-info:hover,
+.btn-info.disabled:focus,
+.btn-info[disabled]:focus,
+fieldset[disabled] .btn-info:focus,
+.btn-info.disabled.focus,
+.btn-info[disabled].focus,
+fieldset[disabled] .btn-info.focus,
+.btn-info.disabled:active,
+.btn-info[disabled]:active,
+fieldset[disabled] .btn-info:active,
+.btn-info.disabled.active,
+.btn-info[disabled].active,
+fieldset[disabled] .btn-info.active {
+  background-color: #2aabd2;
+  background-image: none;
+}
+.btn-warning {
+  background-image: -webkit-linear-gradient(top, #f0ad4e 0%, #eb9316 100%);
+  background-image:      -o-linear-gradient(top, #f0ad4e 0%, #eb9316 100%);
+  background-image: -webkit-gradient(linear, left top, left bottom, from(#f0ad4e), to(#eb9316));
+  background-image:         linear-gradient(to bottom, #f0ad4e 0%, #eb9316 100%);
+  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff0ad4e', endColorstr='#ffeb9316', GradientType=0);
+  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
+  background-repeat: repeat-x;
+  border-color: #e38d13;
+}
+.btn-warning:hover,
+.btn-warning:focus {
+  background-color: #eb9316;
+  background-position: 0 -15px;
+}
+.btn-warning:active,
+.btn-warning.active {
+  background-color: #eb9316;
+  border-color: #e38d13;
+}
+.btn-warning.disabled,
+.btn-warning[disabled],
+fieldset[disabled] .btn-warning,
+.btn-warning.disabled:hover,
+.btn-warning[disabled]:hover,
+fieldset[disabled] .btn-warning:hover,
+.btn-warning.disabled:focus,
+.btn-warning[disabled]:focus,
+fieldset[disabled] .btn-warning:focus,
+.btn-warning.disabled.focus,
+.btn-warning[disabled].focus,
+fieldset[disabled] .btn-warning.focus,
+.btn-warning.disabled:active,
+.btn-warning[disabled]:active,
+fieldset[disabled] .btn-warning:active,
+.btn-warning.disabled.active,
+.btn-warning[disabled].active,
+fieldset[disabled] .btn-warning.active {
+  background-color: #eb9316;
+  background-image: none;
+}
+.btn-danger {
+  background-image: -webkit-linear-gradient(top, #d9534f 0%, #c12e2a 100%);
+  background-image:      -o-linear-gradient(top, #d9534f 0%, #c12e2a 100%);
+  background-image: -webkit-gradient(linear, left top, left bottom, from(#d9534f), to(#c12e2a));
+  background-image:         linear-gradient(to bottom, #d9534f 0%, #c12e2a 100%);
+  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9534f', endColorstr='#ffc12e2a', GradientType=0);
+  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
+  background-repeat: repeat-x;
+  border-color: #b92c28;
+}
+.btn-danger:hover,
+.btn-danger:focus {
+  background-color: #c12e2a;
+  background-position: 0 -15px;
+}
+.btn-danger:active,
+.btn-danger.active {
+  background-color: #c12e2a;
+  border-color: #b92c28;
+}
+.btn-danger.disabled,
+.btn-danger[disabled],
+fieldset[disabled] .btn-danger,
+.btn-danger.disabled:hover,
+.btn-danger[disabled]:hover,
+fieldset[disabled] .btn-danger:hover,
+.btn-danger.disabled:focus,
+.btn-danger[disabled]:focus,
+fieldset[disabled] .btn-danger:focus,
+.btn-danger.disabled.focus,
+.btn-danger[disabled].focus,
+fieldset[disabled] .btn-danger.focus,
+.btn-danger.disabled:active,
+.btn-danger[disabled]:active,
+fieldset[disabled] .btn-danger:active,
+.btn-danger.disabled.active,
+.btn-danger[disabled].active,
+fieldset[disabled] .btn-danger.active {
+  background-color: #c12e2a;
+  background-image: none;
+}
+.thumbnail,
+.img-thumbnail {
+  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, .075);
+          box-shadow: 0 1px 2px rgba(0, 0, 0, .075);
+}
+.dropdown-menu > li > a:hover,
+.dropdown-menu > li > a:focus {
+  background-color: #e8e8e8;
+  background-image: -webkit-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%);
+  background-image:      -o-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%);
+  background-image: -webkit-gradient(linear, left top, left bottom, from(#f5f5f5), to(#e8e8e8));
+  background-image:         linear-gradient(to bottom, #f5f5f5 0%, #e8e8e8 100%);
+  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#ffe8e8e8', GradientType=0);
+  background-repeat: repeat-x;
+}
+.dropdown-menu > .active > a,
+.dropdown-menu > .active > a:hover,
+.dropdown-menu > .active > a:focus {
+  background-color: #2e6da4;
+  background-image: -webkit-linear-gradient(top, #337ab7 0%, #2e6da4 100%);
+  background-image:      -o-linear-gradient(top, #337ab7 0%, #2e6da4 100%);
+  background-image: -webkit-gradient(linear, left top, left bottom, from(#337ab7), to(#2e6da4));
+  background-image:         linear-gradient(to bottom, #337ab7 0%, #2e6da4 100%);
+  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2e6da4', GradientType=0);
+  background-repeat: repeat-x;
+}
+.navbar-default {
+  background-image: -webkit-linear-gradient(top, #fff 0%, #f8f8f8 100%);
+  background-image:      -o-linear-gradient(top, #fff 0%, #f8f8f8 100%);
+  background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#f8f8f8));
+  background-image:         linear-gradient(to bottom, #fff 0%, #f8f8f8 100%);
+  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#fff8f8f8', GradientType=0);
+  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
+  background-repeat: repeat-x;
+  border-radius: 4px;
+  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .15), 0 1px 5px rgba(0, 0, 0, .075);
+          box-shadow: inset 0 1px 0 rgba(255, 255, 255, .15), 0 1px 5px rgba(0, 0, 0, .075);
+}
+.navbar-default .navbar-nav > .open > a,
+.navbar-default .navbar-nav > .active > a {
+  background-image: -webkit-linear-gradient(top, #dbdbdb 0%, #e2e2e2 100%);
+  background-image:      -o-linear-gradient(top, #dbdbdb 0%, #e2e2e2 100%);
+  background-image: -webkit-gradient(linear, left top, left bottom, from(#dbdbdb), to(#e2e2e2));
+  background-image:         linear-gradient(to bottom, #dbdbdb 0%, #e2e2e2 100%);
+  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdbdbdb', endColorstr='#ffe2e2e2', GradientType=0);
+  background-repeat: repeat-x;
+  -webkit-box-shadow: inset 0 3px 9px rgba(0, 0, 0, .075);
+          box-shadow: inset 0 3px 9px rgba(0, 0, 0, .075);
+}
+.navbar-brand,
+.navbar-nav > li > a {
+  text-shadow: 0 1px 0 rgba(255, 255, 255, .25);
+}
+.navbar-inverse {
+  background-image: -webkit-linear-gradient(top, #3c3c3c 0%, #222 100%);
+  background-image:      -o-linear-gradient(top, #3c3c3c 0%, #222 100%);
+  background-image: -webkit-gradient(linear, left top, left bottom, from(#3c3c3c), to(#222));
+  background-image:         linear-gradient(to bottom, #3c3c3c 0%, #222 100%);
+  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff3c3c3c', endColorstr='#ff222222', GradientType=0);
+  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
+  background-repeat: repeat-x;
+  border-radius: 4px;
+}
+.navbar-inverse .navbar-nav > .open > a,
+.navbar-inverse .navbar-nav > .active > a {
+  background-image: -webkit-linear-gradient(top, #080808 0%, #0f0f0f 100%);
+  background-image:      -o-linear-gradient(top, #080808 0%, #0f0f0f 100%);
+  background-image: -webkit-gradient(linear, left top, left bottom, from(#080808), to(#0f0f0f));
+  background-image:         linear-gradient(to bottom, #080808 0%, #0f0f0f 100%);
+  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff080808', endColorstr='#ff0f0f0f', GradientType=0);
+  background-repeat: repeat-x;
+  -webkit-box-shadow: inset 0 3px 9px rgba(0, 0, 0, .25);
+          box-shadow: inset 0 3px 9px rgba(0, 0, 0, .25);
+}
+.navbar-inverse .navbar-brand,
+.navbar-inverse .navbar-nav > li > a {
+  text-shadow: 0 -1px 0 rgba(0, 0, 0, .25);
+}
+.navbar-static-top,
+.navbar-fixed-top,
+.navbar-fixed-bottom {
+  border-radius: 0;
+}
+@media (max-width: 767px) {
+  .navbar .navbar-nav .open .dropdown-menu > .active > a,
+  .navbar .navbar-nav .open .dropdown-menu > .active > a:hover,
+  .navbar .navbar-nav .open .dropdown-menu > .active > a:focus {
+    color: #fff;
+    background-image: -webkit-linear-gradient(top, #337ab7 0%, #2e6da4 100%);
+    background-image:      -o-linear-gradient(top, #337ab7 0%, #2e6da4 100%);
+    background-image: -webkit-gradient(linear, left top, left bottom, from(#337ab7), to(#2e6da4));
+    background-image:         linear-gradient(to bottom, #337ab7 0%, #2e6da4 100%);
+    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2e6da4', GradientType=0);
+    background-repeat: repeat-x;
+  }
+}
+.alert {
+  text-shadow: 0 1px 0 rgba(255, 255, 255, .2);
+  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .25), 0 1px 2px rgba(0, 0, 0, .05);
+          box-shadow: inset 0 1px 0 rgba(255, 255, 255, .25), 0 1px 2px rgba(0, 0, 0, .05);
+}
+.alert-success {
+  background-image: -webkit-linear-gradient(top, #dff0d8 0%, #c8e5bc 100%);
+  background-image:      -o-linear-gradient(top, #dff0d8 0%, #c8e5bc 100%);
+  background-image: -webkit-gradient(linear, left top, left bottom, from(#dff0d8), to(#c8e5bc));
+  background-image:         linear-gradient(to bottom, #dff0d8 0%, #c8e5bc 100%);
+  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdff0d8', endColorstr='#ffc8e5bc', GradientType=0);
+  background-repeat: repeat-x;
+  border-color: #b2dba1;
+}
+.alert-info {
+  background-image: -webkit-linear-gradient(top, #d9edf7 0%, #b9def0 100%);
+  background-image:      -o-linear-gradient(top, #d9edf7 0%, #b9def0 100%);
+  background-image: -webkit-gradient(linear, left top, left bottom, from(#d9edf7), to(#b9def0));
+  background-image:         linear-gradient(to bottom, #d9edf7 0%, #b9def0 100%);
+  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9edf7', endColorstr='#ffb9def0', GradientType=0);
+  background-repeat: repeat-x;
+  border-color: #9acfea;
+}
+.alert-warning {
+  background-image: -webkit-linear-gradient(top, #fcf8e3 0%, #f8efc0 100%);
+  background-image:      -o-linear-gradient(top, #fcf8e3 0%, #f8efc0 100%);
+  background-image: -webkit-gradient(linear, left top, left bottom, from(#fcf8e3), to(#f8efc0));
+  background-image:         linear-gradient(to bottom, #fcf8e3 0%, #f8efc0 100%);
+  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3', endColorstr='#fff8efc0', GradientType=0);
+  background-repeat: repeat-x;
+  border-color: #f5e79e;
+}
+.alert-danger {
+  background-image: -webkit-linear-gradient(top, #f2dede 0%, #e7c3c3 100%);
+  background-image:      -o-linear-gradient(top, #f2dede 0%, #e7c3c3 100%);
+  background-image: -webkit-gradient(linear, left top, left bottom, from(#f2dede), to(#e7c3c3));
+  background-image:         linear-gradient(to bottom, #f2dede 0%, #e7c3c3 100%);
+  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede', endColorstr='#ffe7c3c3', GradientType=0);
+  background-repeat: repeat-x;
+  border-color: #dca7a7;
+}
+.progress {
+  background-image: -webkit-linear-gradient(top, #ebebeb 0%, #f5f5f5 100%);
+  background-image:      -o-linear-gradient(top, #ebebeb 0%, #f5f5f5 100%);
+  background-image: -webkit-gradient(linear, left top, left bottom, from(#ebebeb), to(#f5f5f5));
+  background-image:         linear-gradient(to bottom, #ebebeb 0%, #f5f5f5 100%);
+  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffebebeb', endColorstr='#fff5f5f5', GradientType=0);
+  background-repeat: repeat-x;
+}
+.progress-bar {
+  background-image: -webkit-linear-gradient(top, #337ab7 0%, #286090 100%);
+  background-image:      -o-linear-gradient(top, #337ab7 0%, #286090 100%);
+  background-image: -webkit-gradient(linear, left top, left bottom, from(#337ab7), to(#286090));
+  background-image:         linear-gradient(to bottom, #337ab7 0%, #286090 100%);
+  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff286090', GradientType=0);
+  background-repeat: repeat-x;
+}
+.progress-bar-success {
+  background-image: -webkit-linear-gradient(top, #5cb85c 0%, #449d44 100%);
+  background-image:      -o-linear-gradient(top, #5cb85c 0%, #449d44 100%);
+  background-image: -webkit-gradient(linear, left top, left bottom, from(#5cb85c), to(#449d44));
+  background-image:         linear-gradient(to bottom, #5cb85c 0%, #449d44 100%);
+  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5cb85c', endColorstr='#ff449d44', GradientType=0);
+  background-repeat: repeat-x;
+}
+.progress-bar-info {
+  background-image: -webkit-linear-gradient(top, #5bc0de 0%, #31b0d5 100%);
+  background-image:      -o-linear-gradient(top, #5bc0de 0%, #31b0d5 100%);
+  background-image: -webkit-gradient(linear, left top, left bottom, from(#5bc0de), to(#31b0d5));
+  background-image:         linear-gradient(to bottom, #5bc0de 0%, #31b0d5 100%);
+  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff31b0d5', GradientType=0);
+  background-repeat: repeat-x;
+}
+.progress-bar-warning {
+  background-image: -webkit-linear-gradient(top, #f0ad4e 0%, #ec971f 100%);
+  background-image:      -o-linear-gradient(top, #f0ad4e 0%, #ec971f 100%);
+  background-image: -webkit-gradient(linear, left top, left bottom, from(#f0ad4e), to(#ec971f));
+  background-image:         linear-gradient(to bottom, #f0ad4e 0%, #ec971f 100%);
+  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff0ad4e', endColorstr='#ffec971f', GradientType=0);
+  background-repeat: repeat-x;
+}
+.progress-bar-danger {
+  background-image: -webkit-linear-gradient(top, #d9534f 0%, #c9302c 100%);
+  background-image:      -o-linear-gradient(top, #d9534f 0%, #c9302c 100%);
+  background-image: -webkit-gradient(linear, left top, left bottom, from(#d9534f), to(#c9302c));
+  background-image:         linear-gradient(to bottom, #d9534f 0%, #c9302c 100%);
+  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9534f', endColorstr='#ffc9302c', GradientType=0);
+  background-repeat: repeat-x;
+}
+.progress-bar-striped {
+  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
+  background-image:      -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
+  background-image:         linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
+}
+.list-group {
+  border-radius: 4px;
+  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, .075);
+          box-shadow: 0 1px 2px rgba(0, 0, 0, .075);
+}
+.list-group-item.active,
+.list-group-item.active:hover,
+.list-group-item.active:focus {
+  text-shadow: 0 -1px 0 #286090;
+  background-image: -webkit-linear-gradient(top, #337ab7 0%, #2b669a 100%);
+  background-image:      -o-linear-gradient(top, #337ab7 0%, #2b669a 100%);
+  background-image: -webkit-gradient(linear, left top, left bottom, from(#337ab7), to(#2b669a));
+  background-image:         linear-gradient(to bottom, #337ab7 0%, #2b669a 100%);
+  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2b669a', GradientType=0);
+  background-repeat: repeat-x;
+  border-color: #2b669a;
+}
+.list-group-item.active .badge,
+.list-group-item.active:hover .badge,
+.list-group-item.active:focus .badge {
+  text-shadow: none;
+}
+.panel {
+  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, .05);
+          box-shadow: 0 1px 2px rgba(0, 0, 0, .05);
+}
+.panel-default > .panel-heading {
+  background-image: -webkit-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%);
+  background-image:      -o-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%);
+  background-image: -webkit-gradient(linear, left top, left bottom, from(#f5f5f5), to(#e8e8e8));
+  background-image:         linear-gradient(to bottom, #f5f5f5 0%, #e8e8e8 100%);
+  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#ffe8e8e8', GradientType=0);
+  background-repeat: repeat-x;
+}
+.panel-primary > .panel-heading {
+  background-image: -webkit-linear-gradient(top, #337ab7 0%, #2e6da4 100%);
+  background-image:      -o-linear-gradient(top, #337ab7 0%, #2e6da4 100%);
+  background-image: -webkit-gradient(linear, left top, left bottom, from(#337ab7), to(#2e6da4));
+  background-image:         linear-gradient(to bottom, #337ab7 0%, #2e6da4 100%);
+  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2e6da4', GradientType=0);
+  background-repeat: repeat-x;
+}
+.panel-success > .panel-heading {
+  background-image: -webkit-linear-gradient(top, #dff0d8 0%, #d0e9c6 100%);
+  background-image:      -o-linear-gradient(top, #dff0d8 0%, #d0e9c6 100%);
+  background-image: -webkit-gradient(linear, left top, left bottom, from(#dff0d8), to(#d0e9c6));
+  background-image:         linear-gradient(to bottom, #dff0d8 0%, #d0e9c6 100%);
+  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdff0d8', endColorstr='#ffd0e9c6', GradientType=0);
+  background-repeat: repeat-x;
+}
+.panel-info > .panel-heading {
+  background-image: -webkit-linear-gradient(top, #d9edf7 0%, #c4e3f3 100%);
+  background-image:      -o-linear-gradient(top, #d9edf7 0%, #c4e3f3 100%);
+  background-image: -webkit-gradient(linear, left top, left bottom, from(#d9edf7), to(#c4e3f3));
+  background-image:         linear-gradient(to bottom, #d9edf7 0%, #c4e3f3 100%);
+  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9edf7', endColorstr='#ffc4e3f3', GradientType=0);
+  background-repeat: repeat-x;
+}
+.panel-warning > .panel-heading {
+  background-image: -webkit-linear-gradient(top, #fcf8e3 0%, #faf2cc 100%);
+  background-image:      -o-linear-gradient(top, #fcf8e3 0%, #faf2cc 100%);
+  background-image: -webkit-gradient(linear, left top, left bottom, from(#fcf8e3), to(#faf2cc));
+  background-image:         linear-gradient(to bottom, #fcf8e3 0%, #faf2cc 100%);
+  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3', endColorstr='#fffaf2cc', GradientType=0);
+  background-repeat: repeat-x;
+}
+.panel-danger > .panel-heading {
+  background-image: -webkit-linear-gradient(top, #f2dede 0%, #ebcccc 100%);
+  background-image:      -o-linear-gradient(top, #f2dede 0%, #ebcccc 100%);
+  background-image: -webkit-gradient(linear, left top, left bottom, from(#f2dede), to(#ebcccc));
+  background-image:         linear-gradient(to bottom, #f2dede 0%, #ebcccc 100%);
+  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede', endColorstr='#ffebcccc', GradientType=0);
+  background-repeat: repeat-x;
+}
+.well {
+  background-image: -webkit-linear-gradient(top, #e8e8e8 0%, #f5f5f5 100%);
+  background-image:      -o-linear-gradient(top, #e8e8e8 0%, #f5f5f5 100%);
+  background-image: -webkit-gradient(linear, left top, left bottom, from(#e8e8e8), to(#f5f5f5));
+  background-image:         linear-gradient(to bottom, #e8e8e8 0%, #f5f5f5 100%);
+  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffe8e8e8', endColorstr='#fff5f5f5', GradientType=0);
+  background-repeat: repeat-x;
+  border-color: #dcdcdc;
+  -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, .05), 0 1px 0 rgba(255, 255, 255, .1);
+          box-shadow: inset 0 1px 3px rgba(0, 0, 0, .05), 0 1px 0 rgba(255, 255, 255, .1);
+}
+/*# sourceMappingURL=bootstrap-theme.css.map */
diff --git a/UyTube_mobile/web/css/bootstrap.css b/UyTube_mobile/web/css/bootstrap.css
new file mode 100644
index 0000000000000000000000000000000000000000..5f8a0abbad02b83fb9fb99d418a9867b12a7d47b
--- /dev/null
+++ b/UyTube_mobile/web/css/bootstrap.css
@@ -0,0 +1,10038 @@
+/*!
+ * Bootstrap v4.3.1 (https://getbootstrap.com/)
+ * Copyright 2011-2019 The Bootstrap Authors
+ * Copyright 2011-2019 Twitter, Inc.
+ * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
+ */
+:root {
+  --blue: #007bff;
+  --indigo: #6610f2;
+  --purple: #6f42c1;
+  --pink: #e83e8c;
+  --red: #dc3545;
+  --orange: #fd7e14;
+  --yellow: #ffc107;
+  --green: #28a745;
+  --teal: #20c997;
+  --cyan: #17a2b8;
+  --white: #fff;
+  --gray: #6c757d;
+  --gray-dark: #343a40;
+  --primary: #007bff;
+  --secondary: #6c757d;
+  --success: #28a745;
+  --info: #17a2b8;
+  --warning: #ffc107;
+  --danger: #dc3545;
+  --light: #f8f9fa;
+  --dark: #343a40;
+  --breakpoint-xs: 0;
+  --breakpoint-sm: 576px;
+  --breakpoint-md: 768px;
+  --breakpoint-lg: 992px;
+  --breakpoint-xl: 1200px;
+  --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
+  --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
+}
+
+*,
+*::before,
+*::after {
+  box-sizing: border-box;
+}
+
+html {
+  font-family: sans-serif;
+  line-height: 1.15;
+  -webkit-text-size-adjust: 100%;
+  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
+}
+
+article, aside, figcaption, figure, footer, header, hgroup, main, nav, section {
+  display: block;
+}
+
+body {
+  margin: 0;
+  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
+  font-size: 1rem;
+  font-weight: 400;
+  line-height: 1.5;
+  color: #212529;
+  text-align: left;
+  background-color: #fff;
+}
+
+[tabindex="-1"]:focus {
+  outline: 0 !important;
+}
+
+hr {
+  box-sizing: content-box;
+  height: 0;
+  overflow: visible;
+}
+
+h1, h2, h3, h4, h5, h6 {
+  margin-top: 0;
+  margin-bottom: 0.5rem;
+}
+
+p {
+  margin-top: 0;
+  margin-bottom: 1rem;
+}
+
+abbr[title],
+abbr[data-original-title] {
+  text-decoration: underline;
+  -webkit-text-decoration: underline dotted;
+  text-decoration: underline dotted;
+  cursor: help;
+  border-bottom: 0;
+  -webkit-text-decoration-skip-ink: none;
+  text-decoration-skip-ink: none;
+}
+
+address {
+  margin-bottom: 1rem;
+  font-style: normal;
+  line-height: inherit;
+}
+
+ol,
+ul,
+dl {
+  margin-top: 0;
+  margin-bottom: 1rem;
+}
+
+ol ol,
+ul ul,
+ol ul,
+ul ol {
+  margin-bottom: 0;
+}
+
+dt {
+  font-weight: 700;
+}
+
+dd {
+  margin-bottom: .5rem;
+  margin-left: 0;
+}
+
+blockquote {
+  margin: 0 0 1rem;
+}
+
+b,
+strong {
+  font-weight: bolder;
+}
+
+small {
+  font-size: 80%;
+}
+
+sub,
+sup {
+  position: relative;
+  font-size: 75%;
+  line-height: 0;
+  vertical-align: baseline;
+}
+
+sub {
+  bottom: -.25em;
+}
+
+sup {
+  top: -.5em;
+}
+
+a {
+  color: #007bff;
+  text-decoration: none;
+  background-color: transparent;
+}
+
+a:hover {
+  color: #0056b3;
+  text-decoration: underline;
+}
+
+a:not([href]):not([tabindex]) {
+  color: inherit;
+  text-decoration: none;
+}
+
+a:not([href]):not([tabindex]):hover, a:not([href]):not([tabindex]):focus {
+  color: inherit;
+  text-decoration: none;
+}
+
+a:not([href]):not([tabindex]):focus {
+  outline: 0;
+}
+
+pre,
+code,
+kbd,
+samp {
+  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
+  font-size: 1em;
+}
+
+pre {
+  margin-top: 0;
+  margin-bottom: 1rem;
+  overflow: auto;
+}
+
+figure {
+  margin: 0 0 1rem;
+}
+
+img {
+  vertical-align: middle;
+  border-style: none;
+}
+
+svg {
+  overflow: hidden;
+  vertical-align: middle;
+}
+
+table {
+  border-collapse: collapse;
+}
+
+caption {
+  padding-top: 0.75rem;
+  padding-bottom: 0.75rem;
+  color: #6c757d;
+  text-align: left;
+  caption-side: bottom;
+}
+
+th {
+  text-align: inherit;
+}
+
+label {
+  display: inline-block;
+  margin-bottom: 0.5rem;
+}
+
+button {
+  border-radius: 0;
+}
+
+button:focus {
+  outline: 1px dotted;
+  outline: 5px auto -webkit-focus-ring-color;
+}
+
+input,
+button,
+select,
+optgroup,
+textarea {
+  margin: 0;
+  font-family: inherit;
+  font-size: inherit;
+  line-height: inherit;
+}
+
+button,
+input {
+  overflow: visible;
+}
+
+button,
+select {
+  text-transform: none;
+}
+
+select {
+  word-wrap: normal;
+}
+
+button,
+[type="button"],
+[type="reset"],
+[type="submit"] {
+  -webkit-appearance: button;
+}
+
+button:not(:disabled),
+[type="button"]:not(:disabled),
+[type="reset"]:not(:disabled),
+[type="submit"]:not(:disabled) {
+  cursor: pointer;
+}
+
+button::-moz-focus-inner,
+[type="button"]::-moz-focus-inner,
+[type="reset"]::-moz-focus-inner,
+[type="submit"]::-moz-focus-inner {
+  padding: 0;
+  border-style: none;
+}
+
+input[type="radio"],
+input[type="checkbox"] {
+  box-sizing: border-box;
+  padding: 0;
+}
+
+input[type="date"],
+input[type="time"],
+input[type="datetime-local"],
+input[type="month"] {
+  -webkit-appearance: listbox;
+}
+
+textarea {
+  overflow: auto;
+  resize: vertical;
+}
+
+fieldset {
+  min-width: 0;
+  padding: 0;
+  margin: 0;
+  border: 0;
+}
+
+legend {
+  display: block;
+  width: 100%;
+  max-width: 100%;
+  padding: 0;
+  margin-bottom: .5rem;
+  font-size: 1.5rem;
+  line-height: inherit;
+  color: inherit;
+  white-space: normal;
+}
+
+progress {
+  vertical-align: baseline;
+}
+
+[type="number"]::-webkit-inner-spin-button,
+[type="number"]::-webkit-outer-spin-button {
+  height: auto;
+}
+
+[type="search"] {
+  outline-offset: -2px;
+  -webkit-appearance: none;
+}
+
+[type="search"]::-webkit-search-decoration {
+  -webkit-appearance: none;
+}
+
+::-webkit-file-upload-button {
+  font: inherit;
+  -webkit-appearance: button;
+}
+
+output {
+  display: inline-block;
+}
+
+summary {
+  display: list-item;
+  cursor: pointer;
+}
+
+template {
+  display: none;
+}
+
+[hidden] {
+  display: none !important;
+}
+
+h1, h2, h3, h4, h5, h6,
+.h1, .h2, .h3, .h4, .h5, .h6 {
+  margin-bottom: 0.5rem;
+  font-weight: 500;
+  line-height: 1.2;
+}
+
+h1, .h1 {
+  font-size: 2.5rem;
+}
+
+h2, .h2 {
+  font-size: 2rem;
+}
+
+h3, .h3 {
+  font-size: 1.75rem;
+}
+
+h4, .h4 {
+  font-size: 1.5rem;
+}
+
+h5, .h5 {
+  font-size: 1.25rem;
+}
+
+h6, .h6 {
+  font-size: 1rem;
+}
+
+.lead {
+  font-size: 1.25rem;
+  font-weight: 300;
+}
+
+.display-1 {
+  font-size: 6rem;
+  font-weight: 300;
+  line-height: 1.2;
+}
+
+.display-2 {
+  font-size: 5.5rem;
+  font-weight: 300;
+  line-height: 1.2;
+}
+
+.display-3 {
+  font-size: 4.5rem;
+  font-weight: 300;
+  line-height: 1.2;
+}
+
+.display-4 {
+  font-size: 3.5rem;
+  font-weight: 300;
+  line-height: 1.2;
+}
+
+hr {
+  margin-top: 1rem;
+  margin-bottom: 1rem;
+  border: 0;
+  border-top: 1px solid rgba(0, 0, 0, 0.1);
+}
+
+small,
+.small {
+  font-size: 80%;
+  font-weight: 400;
+}
+
+mark,
+.mark {
+  padding: 0.2em;
+  background-color: #fcf8e3;
+}
+
+.list-unstyled {
+  padding-left: 0;
+  list-style: none;
+}
+
+.list-inline {
+  padding-left: 0;
+  list-style: none;
+}
+
+.list-inline-item {
+  display: inline-block;
+}
+
+.list-inline-item:not(:last-child) {
+  margin-right: 0.5rem;
+}
+
+.initialism {
+  font-size: 90%;
+  text-transform: uppercase;
+}
+
+.blockquote {
+  margin-bottom: 1rem;
+  font-size: 1.25rem;
+}
+
+.blockquote-footer {
+  display: block;
+  font-size: 80%;
+  color: #6c757d;
+}
+
+.blockquote-footer::before {
+  content: "\2014\00A0";
+}
+
+.img-fluid {
+  max-width: 100%;
+  height: auto;
+}
+
+.img-thumbnail {
+  padding: 0.25rem;
+  background-color: #fff;
+  border: 1px solid #dee2e6;
+  border-radius: 0.25rem;
+  max-width: 100%;
+  height: auto;
+}
+
+.figure {
+  display: inline-block;
+}
+
+.figure-img {
+  margin-bottom: 0.5rem;
+  line-height: 1;
+}
+
+.figure-caption {
+  font-size: 90%;
+  color: #6c757d;
+}
+
+code {
+  font-size: 87.5%;
+  color: #e83e8c;
+  word-break: break-word;
+}
+
+a > code {
+  color: inherit;
+}
+
+kbd {
+  padding: 0.2rem 0.4rem;
+  font-size: 87.5%;
+  color: #fff;
+  background-color: #212529;
+  border-radius: 0.2rem;
+}
+
+kbd kbd {
+  padding: 0;
+  font-size: 100%;
+  font-weight: 700;
+}
+
+pre {
+  display: block;
+  font-size: 87.5%;
+  color: #212529;
+}
+
+pre code {
+  font-size: inherit;
+  color: inherit;
+  word-break: normal;
+}
+
+.pre-scrollable {
+  max-height: 340px;
+  overflow-y: scroll;
+}
+
+.container {
+  width: 100%;
+  padding-right: 15px;
+  padding-left: 15px;
+  margin-right: auto;
+  margin-left: auto;
+}
+
+@media (min-width: 576px) {
+  .container {
+    max-width: 540px;
+  }
+}
+
+@media (min-width: 768px) {
+  .container {
+    max-width: 720px;
+  }
+}
+
+@media (min-width: 992px) {
+  .container {
+    max-width: 960px;
+  }
+}
+
+@media (min-width: 1200px) {
+  .container {
+    max-width: 1140px;
+  }
+}
+
+.container-fluid {
+  width: 100%;
+  padding-right: 0px;
+  padding-left: 0px;
+  margin-right: auto;
+  margin-left: auto;
+}
+
+.row {
+  display: -ms-flexbox;
+  display: flex;
+  -ms-flex-wrap: wrap;
+  flex-wrap: wrap;
+  margin-right: -15px;
+  margin-left: -15px;
+}
+
+.no-gutters {
+  margin-right: 0;
+  margin-left: 0;
+}
+
+.no-gutters > .col,
+.no-gutters > [class*="col-"] {
+  padding-right: 0;
+  padding-left: 0;
+}
+
+.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col,
+.col-auto, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm,
+.col-sm-auto, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md,
+.col-md-auto, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg,
+.col-lg-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl,
+.col-xl-auto {
+  position: relative;
+  width: 100%;
+  padding-right: 15px;
+  padding-left: 15px;
+}
+
+.col {
+  -ms-flex-preferred-size: 0;
+  flex-basis: 0;
+  -ms-flex-positive: 1;
+  flex-grow: 1;
+  max-width: 100%;
+}
+
+.col-auto {
+  -ms-flex: 0 0 auto;
+  flex: 0 0 auto;
+  width: auto;
+  max-width: 100%;
+}
+
+.col-1 {
+  -ms-flex: 0 0 8.333333%;
+  flex: 0 0 8.333333%;
+  max-width: 8.333333%;
+}
+
+.col-2 {
+  -ms-flex: 0 0 16.666667%;
+  flex: 0 0 16.666667%;
+  max-width: 16.666667%;
+}
+
+.col-3 {
+  -ms-flex: 0 0 25%;
+  flex: 0 0 25%;
+  max-width: 25%;
+}
+
+.col-4 {
+  -ms-flex: 0 0 33.333333%;
+  flex: 0 0 33.333333%;
+  max-width: 33.333333%;
+}
+
+.col-5 {
+  -ms-flex: 0 0 41.666667%;
+  flex: 0 0 41.666667%;
+  max-width: 41.666667%;
+}
+
+.col-6 {
+  -ms-flex: 0 0 50%;
+  flex: 0 0 50%;
+  max-width: 50%;
+}
+
+.col-7 {
+  -ms-flex: 0 0 58.333333%;
+  flex: 0 0 58.333333%;
+  max-width: 58.333333%;
+}
+
+.col-8 {
+  -ms-flex: 0 0 66.666667%;
+  flex: 0 0 66.666667%;
+  max-width: 66.666667%;
+}
+
+.col-9 {
+  -ms-flex: 0 0 75%;
+  flex: 0 0 75%;
+  max-width: 75%;
+}
+
+.col-10 {
+  -ms-flex: 0 0 83.333333%;
+  flex: 0 0 83.333333%;
+  max-width: 83.333333%;
+}
+
+.col-11 {
+  -ms-flex: 0 0 91.666667%;
+  flex: 0 0 91.666667%;
+  max-width: 91.666667%;
+}
+
+.col-12 {
+  -ms-flex: 0 0 100%;
+  flex: 0 0 100%;
+  max-width: 100%;
+}
+
+.order-first {
+  -ms-flex-order: -1;
+  order: -1;
+}
+
+.order-last {
+  -ms-flex-order: 13;
+  order: 13;
+}
+
+.order-0 {
+  -ms-flex-order: 0;
+  order: 0;
+}
+
+.order-1 {
+  -ms-flex-order: 1;
+  order: 1;
+}
+
+.order-2 {
+  -ms-flex-order: 2;
+  order: 2;
+}
+
+.order-3 {
+  -ms-flex-order: 3;
+  order: 3;
+}
+
+.order-4 {
+  -ms-flex-order: 4;
+  order: 4;
+}
+
+.order-5 {
+  -ms-flex-order: 5;
+  order: 5;
+}
+
+.order-6 {
+  -ms-flex-order: 6;
+  order: 6;
+}
+
+.order-7 {
+  -ms-flex-order: 7;
+  order: 7;
+}
+
+.order-8 {
+  -ms-flex-order: 8;
+  order: 8;
+}
+
+.order-9 {
+  -ms-flex-order: 9;
+  order: 9;
+}
+
+.order-10 {
+  -ms-flex-order: 10;
+  order: 10;
+}
+
+.order-11 {
+  -ms-flex-order: 11;
+  order: 11;
+}
+
+.order-12 {
+  -ms-flex-order: 12;
+  order: 12;
+}
+
+.offset-1 {
+  margin-left: 8.333333%;
+}
+
+.offset-2 {
+  margin-left: 16.666667%;
+}
+
+.offset-3 {
+  margin-left: 25%;
+}
+
+.offset-4 {
+  margin-left: 33.333333%;
+}
+
+.offset-5 {
+  margin-left: 41.666667%;
+}
+
+.offset-6 {
+  margin-left: 50%;
+}
+
+.offset-7 {
+  margin-left: 58.333333%;
+}
+
+.offset-8 {
+  margin-left: 66.666667%;
+}
+
+.offset-9 {
+  margin-left: 75%;
+}
+
+.offset-10 {
+  margin-left: 83.333333%;
+}
+
+.offset-11 {
+  margin-left: 91.666667%;
+}
+
+@media (min-width: 576px) {
+  .col-sm {
+    -ms-flex-preferred-size: 0;
+    flex-basis: 0;
+    -ms-flex-positive: 1;
+    flex-grow: 1;
+    max-width: 100%;
+  }
+  .col-sm-auto {
+    -ms-flex: 0 0 auto;
+    flex: 0 0 auto;
+    width: auto;
+    max-width: 100%;
+  }
+  .col-sm-1 {
+    -ms-flex: 0 0 8.333333%;
+    flex: 0 0 8.333333%;
+    max-width: 8.333333%;
+  }
+  .col-sm-2 {
+    -ms-flex: 0 0 16.666667%;
+    flex: 0 0 16.666667%;
+    max-width: 16.666667%;
+  }
+  .col-sm-3 {
+    -ms-flex: 0 0 25%;
+    flex: 0 0 25%;
+    max-width: 25%;
+  }
+  .col-sm-4 {
+    -ms-flex: 0 0 33.333333%;
+    flex: 0 0 33.333333%;
+    max-width: 33.333333%;
+  }
+  .col-sm-5 {
+    -ms-flex: 0 0 41.666667%;
+    flex: 0 0 41.666667%;
+    max-width: 41.666667%;
+  }
+  .col-sm-6 {
+    -ms-flex: 0 0 50%;
+    flex: 0 0 50%;
+    max-width: 50%;
+  }
+  .col-sm-7 {
+    -ms-flex: 0 0 58.333333%;
+    flex: 0 0 58.333333%;
+    max-width: 58.333333%;
+  }
+  .col-sm-8 {
+    -ms-flex: 0 0 66.666667%;
+    flex: 0 0 66.666667%;
+    max-width: 66.666667%;
+  }
+  .col-sm-9 {
+    -ms-flex: 0 0 75%;
+    flex: 0 0 75%;
+    max-width: 75%;
+  }
+  .col-sm-10 {
+    -ms-flex: 0 0 83.333333%;
+    flex: 0 0 83.333333%;
+    max-width: 83.333333%;
+  }
+  .col-sm-11 {
+    -ms-flex: 0 0 91.666667%;
+    flex: 0 0 91.666667%;
+    max-width: 91.666667%;
+  }
+  .col-sm-12 {
+    -ms-flex: 0 0 100%;
+    flex: 0 0 100%;
+    max-width: 100%;
+  }
+  .order-sm-first {
+    -ms-flex-order: -1;
+    order: -1;
+  }
+  .order-sm-last {
+    -ms-flex-order: 13;
+    order: 13;
+  }
+  .order-sm-0 {
+    -ms-flex-order: 0;
+    order: 0;
+  }
+  .order-sm-1 {
+    -ms-flex-order: 1;
+    order: 1;
+  }
+  .order-sm-2 {
+    -ms-flex-order: 2;
+    order: 2;
+  }
+  .order-sm-3 {
+    -ms-flex-order: 3;
+    order: 3;
+  }
+  .order-sm-4 {
+    -ms-flex-order: 4;
+    order: 4;
+  }
+  .order-sm-5 {
+    -ms-flex-order: 5;
+    order: 5;
+  }
+  .order-sm-6 {
+    -ms-flex-order: 6;
+    order: 6;
+  }
+  .order-sm-7 {
+    -ms-flex-order: 7;
+    order: 7;
+  }
+  .order-sm-8 {
+    -ms-flex-order: 8;
+    order: 8;
+  }
+  .order-sm-9 {
+    -ms-flex-order: 9;
+    order: 9;
+  }
+  .order-sm-10 {
+    -ms-flex-order: 10;
+    order: 10;
+  }
+  .order-sm-11 {
+    -ms-flex-order: 11;
+    order: 11;
+  }
+  .order-sm-12 {
+    -ms-flex-order: 12;
+    order: 12;
+  }
+  .offset-sm-0 {
+    margin-left: 0;
+  }
+  .offset-sm-1 {
+    margin-left: 8.333333%;
+  }
+  .offset-sm-2 {
+    margin-left: 16.666667%;
+  }
+  .offset-sm-3 {
+    margin-left: 25%;
+  }
+  .offset-sm-4 {
+    margin-left: 33.333333%;
+  }
+  .offset-sm-5 {
+    margin-left: 41.666667%;
+  }
+  .offset-sm-6 {
+    margin-left: 50%;
+  }
+  .offset-sm-7 {
+    margin-left: 58.333333%;
+  }
+  .offset-sm-8 {
+    margin-left: 66.666667%;
+  }
+  .offset-sm-9 {
+    margin-left: 75%;
+  }
+  .offset-sm-10 {
+    margin-left: 83.333333%;
+  }
+  .offset-sm-11 {
+    margin-left: 91.666667%;
+  }
+}
+
+@media (min-width: 768px) {
+  .col-md {
+    -ms-flex-preferred-size: 0;
+    flex-basis: 0;
+    -ms-flex-positive: 1;
+    flex-grow: 1;
+    max-width: 100%;
+  }
+  .col-md-auto {
+    -ms-flex: 0 0 auto;
+    flex: 0 0 auto;
+    width: auto;
+    max-width: 100%;
+  }
+  .col-md-1 {
+    -ms-flex: 0 0 8.333333%;
+    flex: 0 0 8.333333%;
+    max-width: 8.333333%;
+  }
+  .col-md-2 {
+    -ms-flex: 0 0 16.666667%;
+    flex: 0 0 16.666667%;
+    max-width: 16.666667%;
+  }
+  .col-md-3 {
+    -ms-flex: 0 0 25%;
+    flex: 0 0 25%;
+    max-width: 25%;
+  }
+  .col-md-4 {
+    -ms-flex: 0 0 33.333333%;
+    flex: 0 0 33.333333%;
+    max-width: 33.333333%;
+  }
+  .col-md-5 {
+    -ms-flex: 0 0 41.666667%;
+    flex: 0 0 41.666667%;
+    max-width: 41.666667%;
+  }
+  .col-md-6 {
+    -ms-flex: 0 0 50%;
+    flex: 0 0 50%;
+    max-width: 50%;
+  }
+  .col-md-7 {
+    -ms-flex: 0 0 58.333333%;
+    flex: 0 0 58.333333%;
+    max-width: 58.333333%;
+  }
+  .col-md-8 {
+    -ms-flex: 0 0 66.666667%;
+    flex: 0 0 66.666667%;
+    max-width: 66.666667%;
+  }
+  .col-md-9 {
+    -ms-flex: 0 0 75%;
+    flex: 0 0 75%;
+    max-width: 75%;
+  }
+  .col-md-10 {
+    -ms-flex: 0 0 83.333333%;
+    flex: 0 0 83.333333%;
+    max-width: 83.333333%;
+  }
+  .col-md-11 {
+    -ms-flex: 0 0 91.666667%;
+    flex: 0 0 91.666667%;
+    max-width: 91.666667%;
+  }
+  .col-md-12 {
+    -ms-flex: 0 0 100%;
+    flex: 0 0 100%;
+    max-width: 100%;
+  }
+  .order-md-first {
+    -ms-flex-order: -1;
+    order: -1;
+  }
+  .order-md-last {
+    -ms-flex-order: 13;
+    order: 13;
+  }
+  .order-md-0 {
+    -ms-flex-order: 0;
+    order: 0;
+  }
+  .order-md-1 {
+    -ms-flex-order: 1;
+    order: 1;
+  }
+  .order-md-2 {
+    -ms-flex-order: 2;
+    order: 2;
+  }
+  .order-md-3 {
+    -ms-flex-order: 3;
+    order: 3;
+  }
+  .order-md-4 {
+    -ms-flex-order: 4;
+    order: 4;
+  }
+  .order-md-5 {
+    -ms-flex-order: 5;
+    order: 5;
+  }
+  .order-md-6 {
+    -ms-flex-order: 6;
+    order: 6;
+  }
+  .order-md-7 {
+    -ms-flex-order: 7;
+    order: 7;
+  }
+  .order-md-8 {
+    -ms-flex-order: 8;
+    order: 8;
+  }
+  .order-md-9 {
+    -ms-flex-order: 9;
+    order: 9;
+  }
+  .order-md-10 {
+    -ms-flex-order: 10;
+    order: 10;
+  }
+  .order-md-11 {
+    -ms-flex-order: 11;
+    order: 11;
+  }
+  .order-md-12 {
+    -ms-flex-order: 12;
+    order: 12;
+  }
+  .offset-md-0 {
+    margin-left: 0;
+  }
+  .offset-md-1 {
+    margin-left: 8.333333%;
+  }
+  .offset-md-2 {
+    margin-left: 16.666667%;
+  }
+  .offset-md-3 {
+    margin-left: 25%;
+  }
+  .offset-md-4 {
+    margin-left: 33.333333%;
+  }
+  .offset-md-5 {
+    margin-left: 41.666667%;
+  }
+  .offset-md-6 {
+    margin-left: 50%;
+  }
+  .offset-md-7 {
+    margin-left: 58.333333%;
+  }
+  .offset-md-8 {
+    margin-left: 66.666667%;
+  }
+  .offset-md-9 {
+    margin-left: 75%;
+  }
+  .offset-md-10 {
+    margin-left: 83.333333%;
+  }
+  .offset-md-11 {
+    margin-left: 91.666667%;
+  }
+}
+
+@media (min-width: 992px) {
+  .col-lg {
+    -ms-flex-preferred-size: 0;
+    flex-basis: 0;
+    -ms-flex-positive: 1;
+    flex-grow: 1;
+    max-width: 100%;
+  }
+  .col-lg-auto {
+    -ms-flex: 0 0 auto;
+    flex: 0 0 auto;
+    width: auto;
+    max-width: 100%;
+  }
+  .col-lg-1 {
+    -ms-flex: 0 0 8.333333%;
+    flex: 0 0 8.333333%;
+    max-width: 8.333333%;
+  }
+  .col-lg-2 {
+    -ms-flex: 0 0 16.666667%;
+    flex: 0 0 16.666667%;
+    max-width: 16.666667%;
+  }
+  .col-lg-3 {
+    -ms-flex: 0 0 25%;
+    flex: 0 0 25%;
+    max-width: 25%;
+  }
+  .col-lg-4 {
+    -ms-flex: 0 0 33.333333%;
+    flex: 0 0 33.333333%;
+    max-width: 33.333333%;
+  }
+  .col-lg-5 {
+    -ms-flex: 0 0 41.666667%;
+    flex: 0 0 41.666667%;
+    max-width: 41.666667%;
+  }
+  .col-lg-6 {
+    -ms-flex: 0 0 50%;
+    flex: 0 0 50%;
+    max-width: 50%;
+  }
+  .col-lg-7 {
+    -ms-flex: 0 0 58.333333%;
+    flex: 0 0 58.333333%;
+    max-width: 58.333333%;
+  }
+  .col-lg-8 {
+    -ms-flex: 0 0 66.666667%;
+    flex: 0 0 66.666667%;
+    max-width: 66.666667%;
+  }
+  .col-lg-9 {
+    -ms-flex: 0 0 75%;
+    flex: 0 0 75%;
+    max-width: 75%;
+  }
+  .col-lg-10 {
+    -ms-flex: 0 0 83.333333%;
+    flex: 0 0 83.333333%;
+    max-width: 83.333333%;
+  }
+  .col-lg-11 {
+    -ms-flex: 0 0 91.666667%;
+    flex: 0 0 91.666667%;
+    max-width: 91.666667%;
+  }
+  .col-lg-12 {
+    -ms-flex: 0 0 100%;
+    flex: 0 0 100%;
+    max-width: 100%;
+  }
+  .order-lg-first {
+    -ms-flex-order: -1;
+    order: -1;
+  }
+  .order-lg-last {
+    -ms-flex-order: 13;
+    order: 13;
+  }
+  .order-lg-0 {
+    -ms-flex-order: 0;
+    order: 0;
+  }
+  .order-lg-1 {
+    -ms-flex-order: 1;
+    order: 1;
+  }
+  .order-lg-2 {
+    -ms-flex-order: 2;
+    order: 2;
+  }
+  .order-lg-3 {
+    -ms-flex-order: 3;
+    order: 3;
+  }
+  .order-lg-4 {
+    -ms-flex-order: 4;
+    order: 4;
+  }
+  .order-lg-5 {
+    -ms-flex-order: 5;
+    order: 5;
+  }
+  .order-lg-6 {
+    -ms-flex-order: 6;
+    order: 6;
+  }
+  .order-lg-7 {
+    -ms-flex-order: 7;
+    order: 7;
+  }
+  .order-lg-8 {
+    -ms-flex-order: 8;
+    order: 8;
+  }
+  .order-lg-9 {
+    -ms-flex-order: 9;
+    order: 9;
+  }
+  .order-lg-10 {
+    -ms-flex-order: 10;
+    order: 10;
+  }
+  .order-lg-11 {
+    -ms-flex-order: 11;
+    order: 11;
+  }
+  .order-lg-12 {
+    -ms-flex-order: 12;
+    order: 12;
+  }
+  .offset-lg-0 {
+    margin-left: 0;
+  }
+  .offset-lg-1 {
+    margin-left: 8.333333%;
+  }
+  .offset-lg-2 {
+    margin-left: 16.666667%;
+  }
+  .offset-lg-3 {
+    margin-left: 25%;
+  }
+  .offset-lg-4 {
+    margin-left: 33.333333%;
+  }
+  .offset-lg-5 {
+    margin-left: 41.666667%;
+  }
+  .offset-lg-6 {
+    margin-left: 50%;
+  }
+  .offset-lg-7 {
+    margin-left: 58.333333%;
+  }
+  .offset-lg-8 {
+    margin-left: 66.666667%;
+  }
+  .offset-lg-9 {
+    margin-left: 75%;
+  }
+  .offset-lg-10 {
+    margin-left: 83.333333%;
+  }
+  .offset-lg-11 {
+    margin-left: 91.666667%;
+  }
+}
+
+@media (min-width: 1200px) {
+  .col-xl {
+    -ms-flex-preferred-size: 0;
+    flex-basis: 0;
+    -ms-flex-positive: 1;
+    flex-grow: 1;
+    max-width: 100%;
+  }
+  .col-xl-auto {
+    -ms-flex: 0 0 auto;
+    flex: 0 0 auto;
+    width: auto;
+    max-width: 100%;
+  }
+  .col-xl-1 {
+    -ms-flex: 0 0 8.333333%;
+    flex: 0 0 8.333333%;
+    max-width: 8.333333%;
+  }
+  .col-xl-2 {
+    -ms-flex: 0 0 16.666667%;
+    flex: 0 0 16.666667%;
+    max-width: 16.666667%;
+  }
+  .col-xl-3 {
+    -ms-flex: 0 0 25%;
+    flex: 0 0 25%;
+    max-width: 25%;
+  }
+  .col-xl-4 {
+    -ms-flex: 0 0 33.333333%;
+    flex: 0 0 33.333333%;
+    max-width: 33.333333%;
+  }
+  .col-xl-5 {
+    -ms-flex: 0 0 41.666667%;
+    flex: 0 0 41.666667%;
+    max-width: 41.666667%;
+  }
+  .col-xl-6 {
+    -ms-flex: 0 0 50%;
+    flex: 0 0 50%;
+    max-width: 50%;
+  }
+  .col-xl-7 {
+    -ms-flex: 0 0 58.333333%;
+    flex: 0 0 58.333333%;
+    max-width: 58.333333%;
+  }
+  .col-xl-8 {
+    -ms-flex: 0 0 66.666667%;
+    flex: 0 0 66.666667%;
+    max-width: 66.666667%;
+  }
+  .col-xl-9 {
+    -ms-flex: 0 0 75%;
+    flex: 0 0 75%;
+    max-width: 75%;
+  }
+  .col-xl-10 {
+    -ms-flex: 0 0 83.333333%;
+    flex: 0 0 83.333333%;
+    max-width: 83.333333%;
+  }
+  .col-xl-11 {
+    -ms-flex: 0 0 91.666667%;
+    flex: 0 0 91.666667%;
+    max-width: 91.666667%;
+  }
+  .col-xl-12 {
+    -ms-flex: 0 0 100%;
+    flex: 0 0 100%;
+    max-width: 100%;
+  }
+  .order-xl-first {
+    -ms-flex-order: -1;
+    order: -1;
+  }
+  .order-xl-last {
+    -ms-flex-order: 13;
+    order: 13;
+  }
+  .order-xl-0 {
+    -ms-flex-order: 0;
+    order: 0;
+  }
+  .order-xl-1 {
+    -ms-flex-order: 1;
+    order: 1;
+  }
+  .order-xl-2 {
+    -ms-flex-order: 2;
+    order: 2;
+  }
+  .order-xl-3 {
+    -ms-flex-order: 3;
+    order: 3;
+  }
+  .order-xl-4 {
+    -ms-flex-order: 4;
+    order: 4;
+  }
+  .order-xl-5 {
+    -ms-flex-order: 5;
+    order: 5;
+  }
+  .order-xl-6 {
+    -ms-flex-order: 6;
+    order: 6;
+  }
+  .order-xl-7 {
+    -ms-flex-order: 7;
+    order: 7;
+  }
+  .order-xl-8 {
+    -ms-flex-order: 8;
+    order: 8;
+  }
+  .order-xl-9 {
+    -ms-flex-order: 9;
+    order: 9;
+  }
+  .order-xl-10 {
+    -ms-flex-order: 10;
+    order: 10;
+  }
+  .order-xl-11 {
+    -ms-flex-order: 11;
+    order: 11;
+  }
+  .order-xl-12 {
+    -ms-flex-order: 12;
+    order: 12;
+  }
+  .offset-xl-0 {
+    margin-left: 0;
+  }
+  .offset-xl-1 {
+    margin-left: 8.333333%;
+  }
+  .offset-xl-2 {
+    margin-left: 16.666667%;
+  }
+  .offset-xl-3 {
+    margin-left: 25%;
+  }
+  .offset-xl-4 {
+    margin-left: 33.333333%;
+  }
+  .offset-xl-5 {
+    margin-left: 41.666667%;
+  }
+  .offset-xl-6 {
+    margin-left: 50%;
+  }
+  .offset-xl-7 {
+    margin-left: 58.333333%;
+  }
+  .offset-xl-8 {
+    margin-left: 66.666667%;
+  }
+  .offset-xl-9 {
+    margin-left: 75%;
+  }
+  .offset-xl-10 {
+    margin-left: 83.333333%;
+  }
+  .offset-xl-11 {
+    margin-left: 91.666667%;
+  }
+}
+
+.table {
+  width: 100%;
+  margin-bottom: 1rem;
+  color: #212529;
+}
+
+.table th,
+.table td {
+  padding: 0.75rem;
+  vertical-align: top;
+  border-top: 1px solid #dee2e6;
+}
+
+.table thead th {
+  vertical-align: bottom;
+  border-bottom: 2px solid #dee2e6;
+}
+
+.table tbody + tbody {
+  border-top: 2px solid #dee2e6;
+}
+
+.table-sm th,
+.table-sm td {
+  padding: 0.3rem;
+}
+
+.table-bordered {
+  border: 1px solid #dee2e6;
+}
+
+.table-bordered th,
+.table-bordered td {
+  border: 1px solid #dee2e6;
+}
+
+.table-bordered thead th,
+.table-bordered thead td {
+  border-bottom-width: 2px;
+}
+
+.table-borderless th,
+.table-borderless td,
+.table-borderless thead th,
+.table-borderless tbody + tbody {
+  border: 0;
+}
+
+.table-striped tbody tr:nth-of-type(odd) {
+  background-color: rgba(0, 0, 0, 0.05);
+}
+
+.table-hover tbody tr:hover {
+  color: #212529;
+  background-color: rgba(0, 0, 0, 0.075);
+}
+
+.table-primary,
+.table-primary > th,
+.table-primary > td {
+  background-color: #b8daff;
+}
+
+.table-primary th,
+.table-primary td,
+.table-primary thead th,
+.table-primary tbody + tbody {
+  border-color: #7abaff;
+}
+
+.table-hover .table-primary:hover {
+  background-color: #9fcdff;
+}
+
+.table-hover .table-primary:hover > td,
+.table-hover .table-primary:hover > th {
+  background-color: #9fcdff;
+}
+
+.table-secondary,
+.table-secondary > th,
+.table-secondary > td {
+  background-color: #d6d8db;
+}
+
+.table-secondary th,
+.table-secondary td,
+.table-secondary thead th,
+.table-secondary tbody + tbody {
+  border-color: #b3b7bb;
+}
+
+.table-hover .table-secondary:hover {
+  background-color: #c8cbcf;
+}
+
+.table-hover .table-secondary:hover > td,
+.table-hover .table-secondary:hover > th {
+  background-color: #c8cbcf;
+}
+
+.table-success,
+.table-success > th,
+.table-success > td {
+  background-color: #c3e6cb;
+}
+
+.table-success th,
+.table-success td,
+.table-success thead th,
+.table-success tbody + tbody {
+  border-color: #8fd19e;
+}
+
+.table-hover .table-success:hover {
+  background-color: #b1dfbb;
+}
+
+.table-hover .table-success:hover > td,
+.table-hover .table-success:hover > th {
+  background-color: #b1dfbb;
+}
+
+.table-info,
+.table-info > th,
+.table-info > td {
+  background-color: #bee5eb;
+}
+
+.table-info th,
+.table-info td,
+.table-info thead th,
+.table-info tbody + tbody {
+  border-color: #86cfda;
+}
+
+.table-hover .table-info:hover {
+  background-color: #abdde5;
+}
+
+.table-hover .table-info:hover > td,
+.table-hover .table-info:hover > th {
+  background-color: #abdde5;
+}
+
+.table-warning,
+.table-warning > th,
+.table-warning > td {
+  background-color: #ffeeba;
+}
+
+.table-warning th,
+.table-warning td,
+.table-warning thead th,
+.table-warning tbody + tbody {
+  border-color: #ffdf7e;
+}
+
+.table-hover .table-warning:hover {
+  background-color: #ffe8a1;
+}
+
+.table-hover .table-warning:hover > td,
+.table-hover .table-warning:hover > th {
+  background-color: #ffe8a1;
+}
+
+.table-danger,
+.table-danger > th,
+.table-danger > td {
+  background-color: #f5c6cb;
+}
+
+.table-danger th,
+.table-danger td,
+.table-danger thead th,
+.table-danger tbody + tbody {
+  border-color: #ed969e;
+}
+
+.table-hover .table-danger:hover {
+  background-color: #f1b0b7;
+}
+
+.table-hover .table-danger:hover > td,
+.table-hover .table-danger:hover > th {
+  background-color: #f1b0b7;
+}
+
+.table-light,
+.table-light > th,
+.table-light > td {
+  background-color: #fdfdfe;
+}
+
+.table-light th,
+.table-light td,
+.table-light thead th,
+.table-light tbody + tbody {
+  border-color: #fbfcfc;
+}
+
+.table-hover .table-light:hover {
+  background-color: #ececf6;
+}
+
+.table-hover .table-light:hover > td,
+.table-hover .table-light:hover > th {
+  background-color: #ececf6;
+}
+
+.table-dark,
+.table-dark > th,
+.table-dark > td {
+  background-color: #c6c8ca;
+}
+
+.table-dark th,
+.table-dark td,
+.table-dark thead th,
+.table-dark tbody + tbody {
+  border-color: #95999c;
+}
+
+.table-hover .table-dark:hover {
+  background-color: #b9bbbe;
+}
+
+.table-hover .table-dark:hover > td,
+.table-hover .table-dark:hover > th {
+  background-color: #b9bbbe;
+}
+
+.table-active,
+.table-active > th,
+.table-active > td {
+  background-color: rgba(0, 0, 0, 0.075);
+}
+
+.table-hover .table-active:hover {
+  background-color: rgba(0, 0, 0, 0.075);
+}
+
+.table-hover .table-active:hover > td,
+.table-hover .table-active:hover > th {
+  background-color: rgba(0, 0, 0, 0.075);
+}
+
+.table .thead-dark th {
+  color: #fff;
+  background-color: #343a40;
+  border-color: #454d55;
+}
+
+.table .thead-light th {
+  color: #495057;
+  background-color: #e9ecef;
+  border-color: #dee2e6;
+}
+
+.table-dark {
+  color: #fff;
+  background-color: #343a40;
+}
+
+.table-dark th,
+.table-dark td,
+.table-dark thead th {
+  border-color: #454d55;
+}
+
+.table-dark.table-bordered {
+  border: 0;
+}
+
+.table-dark.table-striped tbody tr:nth-of-type(odd) {
+  background-color: rgba(255, 255, 255, 0.05);
+}
+
+.table-dark.table-hover tbody tr:hover {
+  color: #fff;
+  background-color: rgba(255, 255, 255, 0.075);
+}
+
+@media (max-width: 575.98px) {
+  .table-responsive-sm {
+    display: block;
+    width: 100%;
+    overflow-x: auto;
+    -webkit-overflow-scrolling: touch;
+  }
+  .table-responsive-sm > .table-bordered {
+    border: 0;
+  }
+}
+
+@media (max-width: 767.98px) {
+  .table-responsive-md {
+    display: block;
+    width: 100%;
+    overflow-x: auto;
+    -webkit-overflow-scrolling: touch;
+  }
+  .table-responsive-md > .table-bordered {
+    border: 0;
+  }
+}
+
+@media (max-width: 991.98px) {
+  .table-responsive-lg {
+    display: block;
+    width: 100%;
+    overflow-x: auto;
+    -webkit-overflow-scrolling: touch;
+  }
+  .table-responsive-lg > .table-bordered {
+    border: 0;
+  }
+}
+
+@media (max-width: 1199.98px) {
+  .table-responsive-xl {
+    display: block;
+    width: 100%;
+    overflow-x: auto;
+    -webkit-overflow-scrolling: touch;
+  }
+  .table-responsive-xl > .table-bordered {
+    border: 0;
+  }
+}
+
+.table-responsive {
+  display: block;
+  width: 100%;
+  overflow-x: auto;
+  -webkit-overflow-scrolling: touch;
+}
+
+.table-responsive > .table-bordered {
+  border: 0;
+}
+
+.form-control {
+  display: block;
+  width: 100%;
+  height: calc(1.5em + 0.75rem + 2px);
+  padding: 0.375rem 0.75rem;
+  font-size: 1rem;
+  font-weight: 400;
+  line-height: 1.5;
+  color: #495057;
+  background-color: #fff;
+  background-clip: padding-box;
+  border: 1px solid #ced4da;
+  border-radius: 0.25rem;
+  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
+}
+
+@media (prefers-reduced-motion: reduce) {
+  .form-control {
+    transition: none;
+  }
+}
+
+.form-control::-ms-expand {
+  background-color: transparent;
+  border: 0;
+}
+
+.form-control:focus {
+  color: #495057;
+  background-color: #fff;
+  border-color: #80bdff;
+  outline: 0;
+  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
+}
+
+.form-control::-webkit-input-placeholder {
+  color: #6c757d;
+  opacity: 1;
+}
+
+.form-control::-moz-placeholder {
+  color: #6c757d;
+  opacity: 1;
+}
+
+.form-control:-ms-input-placeholder {
+  color: #6c757d;
+  opacity: 1;
+}
+
+.form-control::-ms-input-placeholder {
+  color: #6c757d;
+  opacity: 1;
+}
+
+.form-control::placeholder {
+  color: #6c757d;
+  opacity: 1;
+}
+
+.form-control:disabled, .form-control[readonly] {
+  background-color: #e9ecef;
+  opacity: 1;
+}
+
+select.form-control:focus::-ms-value {
+  color: #495057;
+  background-color: #fff;
+}
+
+.form-control-file,
+.form-control-range {
+  display: block;
+  width: 100%;
+}
+
+.col-form-label {
+  padding-top: calc(0.375rem + 1px);
+  padding-bottom: calc(0.375rem + 1px);
+  margin-bottom: 0;
+  font-size: inherit;
+  line-height: 1.5;
+}
+
+.col-form-label-lg {
+  padding-top: calc(0.5rem + 1px);
+  padding-bottom: calc(0.5rem + 1px);
+  font-size: 1.25rem;
+  line-height: 1.5;
+}
+
+.col-form-label-sm {
+  padding-top: calc(0.25rem + 1px);
+  padding-bottom: calc(0.25rem + 1px);
+  font-size: 0.875rem;
+  line-height: 1.5;
+}
+
+.form-control-plaintext {
+  display: block;
+  width: 100%;
+  padding-top: 0.375rem;
+  padding-bottom: 0.375rem;
+  margin-bottom: 0;
+  line-height: 1.5;
+  color: #212529;
+  background-color: transparent;
+  border: solid transparent;
+  border-width: 1px 0;
+}
+
+.form-control-plaintext.form-control-sm, .form-control-plaintext.form-control-lg {
+  padding-right: 0;
+  padding-left: 0;
+}
+
+.form-control-sm {
+  height: calc(1.5em + 0.5rem + 2px);
+  padding: 0.25rem 0.5rem;
+  font-size: 0.875rem;
+  line-height: 1.5;
+  border-radius: 0.2rem;
+}
+
+.form-control-lg {
+  height: calc(1.5em + 1rem + 2px);
+  padding: 0.5rem 1rem;
+  font-size: 1.25rem;
+  line-height: 1.5;
+  border-radius: 0.3rem;
+}
+
+select.form-control[size], select.form-control[multiple] {
+  height: auto;
+}
+
+textarea.form-control {
+  height: auto;
+}
+
+.form-group {
+  margin-bottom: 1rem;
+}
+
+.form-text {
+  display: block;
+  margin-top: 0.25rem;
+}
+
+.form-row {
+  display: -ms-flexbox;
+  display: flex;
+  -ms-flex-wrap: wrap;
+  flex-wrap: wrap;
+  margin-right: -5px;
+  margin-left: -5px;
+}
+
+.form-row > .col,
+.form-row > [class*="col-"] {
+  padding-right: 5px;
+  padding-left: 5px;
+}
+
+.form-check {
+  position: relative;
+  display: block;
+  padding-left: 1.25rem;
+}
+
+.form-check-input {
+  position: absolute;
+  margin-top: 0.3rem;
+  margin-left: -1.25rem;
+}
+
+.form-check-input:disabled ~ .form-check-label {
+  color: #6c757d;
+}
+
+.form-check-label {
+  margin-bottom: 0;
+}
+
+.form-check-inline {
+  display: -ms-inline-flexbox;
+  display: inline-flex;
+  -ms-flex-align: center;
+  align-items: center;
+  padding-left: 0;
+  margin-right: 0.75rem;
+}
+
+.form-check-inline .form-check-input {
+  position: static;
+  margin-top: 0;
+  margin-right: 0.3125rem;
+  margin-left: 0;
+}
+
+.valid-feedback {
+  display: none;
+  width: 100%;
+  margin-top: 0.25rem;
+  font-size: 80%;
+  color: #28a745;
+}
+
+.valid-tooltip {
+  position: absolute;
+  top: 100%;
+  z-index: 5;
+  display: none;
+  max-width: 100%;
+  padding: 0.25rem 0.5rem;
+  margin-top: .1rem;
+  font-size: 0.875rem;
+  line-height: 1.5;
+  color: #fff;
+  background-color: rgba(40, 167, 69, 0.9);
+  border-radius: 0.25rem;
+}
+
+.was-validated .form-control:valid, .form-control.is-valid {
+  border-color: #28a745;
+  padding-right: calc(1.5em + 0.75rem);
+  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
+  background-repeat: no-repeat;
+  background-position: center right calc(0.375em + 0.1875rem);
+  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
+}
+
+.was-validated .form-control:valid:focus, .form-control.is-valid:focus {
+  border-color: #28a745;
+  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
+}
+
+.was-validated .form-control:valid ~ .valid-feedback,
+.was-validated .form-control:valid ~ .valid-tooltip, .form-control.is-valid ~ .valid-feedback,
+.form-control.is-valid ~ .valid-tooltip {
+  display: block;
+}
+
+.was-validated textarea.form-control:valid, textarea.form-control.is-valid {
+  padding-right: calc(1.5em + 0.75rem);
+  background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
+}
+
+.was-validated .custom-select:valid, .custom-select.is-valid {
+  border-color: #28a745;
+  padding-right: calc((1em + 0.75rem) * 3 / 4 + 1.75rem);
+  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.75rem center/8px 10px, url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e") #fff no-repeat center right 1.75rem/calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
+}
+
+.was-validated .custom-select:valid:focus, .custom-select.is-valid:focus {
+  border-color: #28a745;
+  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
+}
+
+.was-validated .custom-select:valid ~ .valid-feedback,
+.was-validated .custom-select:valid ~ .valid-tooltip, .custom-select.is-valid ~ .valid-feedback,
+.custom-select.is-valid ~ .valid-tooltip {
+  display: block;
+}
+
+.was-validated .form-control-file:valid ~ .valid-feedback,
+.was-validated .form-control-file:valid ~ .valid-tooltip, .form-control-file.is-valid ~ .valid-feedback,
+.form-control-file.is-valid ~ .valid-tooltip {
+  display: block;
+}
+
+.was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label {
+  color: #28a745;
+}
+
+.was-validated .form-check-input:valid ~ .valid-feedback,
+.was-validated .form-check-input:valid ~ .valid-tooltip, .form-check-input.is-valid ~ .valid-feedback,
+.form-check-input.is-valid ~ .valid-tooltip {
+  display: block;
+}
+
+.was-validated .custom-control-input:valid ~ .custom-control-label, .custom-control-input.is-valid ~ .custom-control-label {
+  color: #28a745;
+}
+
+.was-validated .custom-control-input:valid ~ .custom-control-label::before, .custom-control-input.is-valid ~ .custom-control-label::before {
+  border-color: #28a745;
+}
+
+.was-validated .custom-control-input:valid ~ .valid-feedback,
+.was-validated .custom-control-input:valid ~ .valid-tooltip, .custom-control-input.is-valid ~ .valid-feedback,
+.custom-control-input.is-valid ~ .valid-tooltip {
+  display: block;
+}
+
+.was-validated .custom-control-input:valid:checked ~ .custom-control-label::before, .custom-control-input.is-valid:checked ~ .custom-control-label::before {
+  border-color: #34ce57;
+  background-color: #34ce57;
+}
+
+.was-validated .custom-control-input:valid:focus ~ .custom-control-label::before, .custom-control-input.is-valid:focus ~ .custom-control-label::before {
+  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
+}
+
+.was-validated .custom-control-input:valid:focus:not(:checked) ~ .custom-control-label::before, .custom-control-input.is-valid:focus:not(:checked) ~ .custom-control-label::before {
+  border-color: #28a745;
+}
+
+.was-validated .custom-file-input:valid ~ .custom-file-label, .custom-file-input.is-valid ~ .custom-file-label {
+  border-color: #28a745;
+}
+
+.was-validated .custom-file-input:valid ~ .valid-feedback,
+.was-validated .custom-file-input:valid ~ .valid-tooltip, .custom-file-input.is-valid ~ .valid-feedback,
+.custom-file-input.is-valid ~ .valid-tooltip {
+  display: block;
+}
+
+.was-validated .custom-file-input:valid:focus ~ .custom-file-label, .custom-file-input.is-valid:focus ~ .custom-file-label {
+  border-color: #28a745;
+  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
+}
+
+.invalid-feedback {
+  display: none;
+  width: 100%;
+  margin-top: 0.25rem;
+  font-size: 80%;
+  color: #dc3545;
+}
+
+.invalid-tooltip {
+  position: absolute;
+  top: 100%;
+  z-index: 5;
+  display: none;
+  max-width: 100%;
+  padding: 0.25rem 0.5rem;
+  margin-top: .1rem;
+  font-size: 0.875rem;
+  line-height: 1.5;
+  color: #fff;
+  background-color: rgba(220, 53, 69, 0.9);
+  border-radius: 0.25rem;
+}
+
+.was-validated .form-control:invalid, .form-control.is-invalid {
+  border-color: #dc3545;
+  padding-right: calc(1.5em + 0.75rem);
+  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23dc3545' viewBox='-2 -2 7 7'%3e%3cpath stroke='%23dc3545' d='M0 0l3 3m0-3L0 3'/%3e%3ccircle r='.5'/%3e%3ccircle cx='3' r='.5'/%3e%3ccircle cy='3' r='.5'/%3e%3ccircle cx='3' cy='3' r='.5'/%3e%3c/svg%3E");
+  background-repeat: no-repeat;
+  background-position: center right calc(0.375em + 0.1875rem);
+  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
+}
+
+.was-validated .form-control:invalid:focus, .form-control.is-invalid:focus {
+  border-color: #dc3545;
+  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
+}
+
+.was-validated .form-control:invalid ~ .invalid-feedback,
+.was-validated .form-control:invalid ~ .invalid-tooltip, .form-control.is-invalid ~ .invalid-feedback,
+.form-control.is-invalid ~ .invalid-tooltip {
+  display: block;
+}
+
+.was-validated textarea.form-control:invalid, textarea.form-control.is-invalid {
+  padding-right: calc(1.5em + 0.75rem);
+  background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
+}
+
+.was-validated .custom-select:invalid, .custom-select.is-invalid {
+  border-color: #dc3545;
+  padding-right: calc((1em + 0.75rem) * 3 / 4 + 1.75rem);
+  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.75rem center/8px 10px, url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23dc3545' viewBox='-2 -2 7 7'%3e%3cpath stroke='%23dc3545' d='M0 0l3 3m0-3L0 3'/%3e%3ccircle r='.5'/%3e%3ccircle cx='3' r='.5'/%3e%3ccircle cy='3' r='.5'/%3e%3ccircle cx='3' cy='3' r='.5'/%3e%3c/svg%3E") #fff no-repeat center right 1.75rem/calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
+}
+
+.was-validated .custom-select:invalid:focus, .custom-select.is-invalid:focus {
+  border-color: #dc3545;
+  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
+}
+
+.was-validated .custom-select:invalid ~ .invalid-feedback,
+.was-validated .custom-select:invalid ~ .invalid-tooltip, .custom-select.is-invalid ~ .invalid-feedback,
+.custom-select.is-invalid ~ .invalid-tooltip {
+  display: block;
+}
+
+.was-validated .form-control-file:invalid ~ .invalid-feedback,
+.was-validated .form-control-file:invalid ~ .invalid-tooltip, .form-control-file.is-invalid ~ .invalid-feedback,
+.form-control-file.is-invalid ~ .invalid-tooltip {
+  display: block;
+}
+
+.was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label {
+  color: #dc3545;
+}
+
+.was-validated .form-check-input:invalid ~ .invalid-feedback,
+.was-validated .form-check-input:invalid ~ .invalid-tooltip, .form-check-input.is-invalid ~ .invalid-feedback,
+.form-check-input.is-invalid ~ .invalid-tooltip {
+  display: block;
+}
+
+.was-validated .custom-control-input:invalid ~ .custom-control-label, .custom-control-input.is-invalid ~ .custom-control-label {
+  color: #dc3545;
+}
+
+.was-validated .custom-control-input:invalid ~ .custom-control-label::before, .custom-control-input.is-invalid ~ .custom-control-label::before {
+  border-color: #dc3545;
+}
+
+.was-validated .custom-control-input:invalid ~ .invalid-feedback,
+.was-validated .custom-control-input:invalid ~ .invalid-tooltip, .custom-control-input.is-invalid ~ .invalid-feedback,
+.custom-control-input.is-invalid ~ .invalid-tooltip {
+  display: block;
+}
+
+.was-validated .custom-control-input:invalid:checked ~ .custom-control-label::before, .custom-control-input.is-invalid:checked ~ .custom-control-label::before {
+  border-color: #e4606d;
+  background-color: #e4606d;
+}
+
+.was-validated .custom-control-input:invalid:focus ~ .custom-control-label::before, .custom-control-input.is-invalid:focus ~ .custom-control-label::before {
+  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
+}
+
+.was-validated .custom-control-input:invalid:focus:not(:checked) ~ .custom-control-label::before, .custom-control-input.is-invalid:focus:not(:checked) ~ .custom-control-label::before {
+  border-color: #dc3545;
+}
+
+.was-validated .custom-file-input:invalid ~ .custom-file-label, .custom-file-input.is-invalid ~ .custom-file-label {
+  border-color: #dc3545;
+}
+
+.was-validated .custom-file-input:invalid ~ .invalid-feedback,
+.was-validated .custom-file-input:invalid ~ .invalid-tooltip, .custom-file-input.is-invalid ~ .invalid-feedback,
+.custom-file-input.is-invalid ~ .invalid-tooltip {
+  display: block;
+}
+
+.was-validated .custom-file-input:invalid:focus ~ .custom-file-label, .custom-file-input.is-invalid:focus ~ .custom-file-label {
+  border-color: #dc3545;
+  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
+}
+
+.form-inline {
+  display: -ms-flexbox;
+  display: flex;
+  -ms-flex-flow: row wrap;
+  flex-flow: row wrap;
+  -ms-flex-align: center;
+  align-items: center;
+}
+
+.form-inline .form-check {
+  width: 100%;
+}
+
+@media (min-width: 576px) {
+  .form-inline label {
+    display: -ms-flexbox;
+    display: flex;
+    -ms-flex-align: center;
+    align-items: center;
+    -ms-flex-pack: center;
+    justify-content: center;
+    margin-bottom: 0;
+  }
+  .form-inline .form-group {
+    display: -ms-flexbox;
+    display: flex;
+    -ms-flex: 0 0 auto;
+    flex: 0 0 auto;
+    -ms-flex-flow: row wrap;
+    flex-flow: row wrap;
+    -ms-flex-align: center;
+    align-items: center;
+    margin-bottom: 0;
+  }
+  .form-inline .form-control {
+    display: inline-block;
+    width: auto;
+    vertical-align: middle;
+  }
+  .form-inline .form-control-plaintext {
+    display: inline-block;
+  }
+  .form-inline .input-group,
+  .form-inline .custom-select {
+    width: auto;
+  }
+  .form-inline .form-check {
+    display: -ms-flexbox;
+    display: flex;
+    -ms-flex-align: center;
+    align-items: center;
+    -ms-flex-pack: center;
+    justify-content: center;
+    width: auto;
+    padding-left: 0;
+  }
+  .form-inline .form-check-input {
+    position: relative;
+    -ms-flex-negative: 0;
+    flex-shrink: 0;
+    margin-top: 0;
+    margin-right: 0.25rem;
+    margin-left: 0;
+  }
+  .form-inline .custom-control {
+    -ms-flex-align: center;
+    align-items: center;
+    -ms-flex-pack: center;
+    justify-content: center;
+  }
+  .form-inline .custom-control-label {
+    margin-bottom: 0;
+  }
+}
+
+.btn {
+  display: inline-block;
+  font-weight: 400;
+  color: #212529;
+  text-align: center;
+  vertical-align: middle;
+  -webkit-user-select: none;
+  -moz-user-select: none;
+  -ms-user-select: none;
+  user-select: none;
+  background-color: transparent;
+  border: 1px solid transparent;
+  padding: 0.375rem 0.75rem;
+  font-size: 1rem;
+  line-height: 1.5;
+  border-radius: 0.25rem;
+  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
+}
+
+@media (prefers-reduced-motion: reduce) {
+  .btn {
+    transition: none;
+  }
+}
+
+.btn:hover {
+  color: #212529;
+  text-decoration: none;
+}
+
+.btn:focus, .btn.focus {
+  outline: 0;
+  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
+}
+
+.btn.disabled, .btn:disabled {
+  opacity: 0.65;
+}
+
+a.btn.disabled,
+fieldset:disabled a.btn {
+  pointer-events: none;
+}
+
+.btn-primary {
+  color: #fff;
+  background-color: #007bff;
+  border-color: #007bff;
+}
+
+.btn-primary:hover {
+  color: #fff;
+  background-color: #0069d9;
+  border-color: #0062cc;
+}
+
+.btn-primary:focus, .btn-primary.focus {
+  box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5);
+}
+
+.btn-primary.disabled, .btn-primary:disabled {
+  color: #fff;
+  background-color: #007bff;
+  border-color: #007bff;
+}
+
+.btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active,
+.show > .btn-primary.dropdown-toggle {
+  color: #fff;
+  background-color: #0062cc;
+  border-color: #005cbf;
+}
+
+.btn-primary:not(:disabled):not(.disabled):active:focus, .btn-primary:not(:disabled):not(.disabled).active:focus,
+.show > .btn-primary.dropdown-toggle:focus {
+  box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5);
+}
+
+.btn-secondary {
+  color: #fff;
+  background-color: #6c757d;
+  border-color: #6c757d;
+}
+
+.btn-secondary:hover {
+  color: #fff;
+  background-color: #5a6268;
+  border-color: #545b62;
+}
+
+.btn-secondary:focus, .btn-secondary.focus {
+  box-shadow: 0 0 0 0.2rem rgba(130, 138, 145, 0.5);
+}
+
+.btn-secondary.disabled, .btn-secondary:disabled {
+  color: #fff;
+  background-color: #6c757d;
+  border-color: #6c757d;
+}
+
+.btn-secondary:not(:disabled):not(.disabled):active, .btn-secondary:not(:disabled):not(.disabled).active,
+.show > .btn-secondary.dropdown-toggle {
+  color: #fff;
+  background-color: #545b62;
+  border-color: #4e555b;
+}
+
+.btn-secondary:not(:disabled):not(.disabled):active:focus, .btn-secondary:not(:disabled):not(.disabled).active:focus,
+.show > .btn-secondary.dropdown-toggle:focus {
+  box-shadow: 0 0 0 0.2rem rgba(130, 138, 145, 0.5);
+}
+
+.btn-success {
+  color: #fff;
+  background-color: #28a745;
+  border-color: #28a745;
+}
+
+.btn-success:hover {
+  color: #fff;
+  background-color: #218838;
+  border-color: #1e7e34;
+}
+
+.btn-success:focus, .btn-success.focus {
+  box-shadow: 0 0 0 0.2rem rgba(72, 180, 97, 0.5);
+}
+
+.btn-success.disabled, .btn-success:disabled {
+  color: #fff;
+  background-color: #28a745;
+  border-color: #28a745;
+}
+
+.btn-success:not(:disabled):not(.disabled):active, .btn-success:not(:disabled):not(.disabled).active,
+.show > .btn-success.dropdown-toggle {
+  color: #fff;
+  background-color: #1e7e34;
+  border-color: #1c7430;
+}
+
+.btn-success:not(:disabled):not(.disabled):active:focus, .btn-success:not(:disabled):not(.disabled).active:focus,
+.show > .btn-success.dropdown-toggle:focus {
+  box-shadow: 0 0 0 0.2rem rgba(72, 180, 97, 0.5);
+}
+
+.btn-info {
+  color: #fff;
+  background-color: #17a2b8;
+  border-color: #17a2b8;
+}
+
+.btn-info:hover {
+  color: #fff;
+  background-color: #138496;
+  border-color: #117a8b;
+}
+
+.btn-info:focus, .btn-info.focus {
+  box-shadow: 0 0 0 0.2rem rgba(58, 176, 195, 0.5);
+}
+
+.btn-info.disabled, .btn-info:disabled {
+  color: #fff;
+  background-color: #17a2b8;
+  border-color: #17a2b8;
+}
+
+.btn-info:not(:disabled):not(.disabled):active, .btn-info:not(:disabled):not(.disabled).active,
+.show > .btn-info.dropdown-toggle {
+  color: #fff;
+  background-color: #117a8b;
+  border-color: #10707f;
+}
+
+.btn-info:not(:disabled):not(.disabled):active:focus, .btn-info:not(:disabled):not(.disabled).active:focus,
+.show > .btn-info.dropdown-toggle:focus {
+  box-shadow: 0 0 0 0.2rem rgba(58, 176, 195, 0.5);
+}
+
+.btn-warning {
+  color: #212529;
+  background-color: #ffc107;
+  border-color: #ffc107;
+}
+
+.btn-warning:hover {
+  color: #212529;
+  background-color: #e0a800;
+  border-color: #d39e00;
+}
+
+.btn-warning:focus, .btn-warning.focus {
+  box-shadow: 0 0 0 0.2rem rgba(222, 170, 12, 0.5);
+}
+
+.btn-warning.disabled, .btn-warning:disabled {
+  color: #212529;
+  background-color: #ffc107;
+  border-color: #ffc107;
+}
+
+.btn-warning:not(:disabled):not(.disabled):active, .btn-warning:not(:disabled):not(.disabled).active,
+.show > .btn-warning.dropdown-toggle {
+  color: #212529;
+  background-color: #d39e00;
+  border-color: #c69500;
+}
+
+.btn-warning:not(:disabled):not(.disabled):active:focus, .btn-warning:not(:disabled):not(.disabled).active:focus,
+.show > .btn-warning.dropdown-toggle:focus {
+  box-shadow: 0 0 0 0.2rem rgba(222, 170, 12, 0.5);
+}
+
+.btn-danger {
+  color: #fff;
+  background-color: #dc3545;
+  border-color: #dc3545;
+}
+
+.btn-danger:hover {
+  color: #fff;
+  background-color: #c82333;
+  border-color: #bd2130;
+}
+
+.btn-danger:focus, .btn-danger.focus {
+  box-shadow: 0 0 0 0.2rem rgba(225, 83, 97, 0.5);
+}
+
+.btn-danger.disabled, .btn-danger:disabled {
+  color: #fff;
+  background-color: #dc3545;
+  border-color: #dc3545;
+}
+
+.btn-danger:not(:disabled):not(.disabled):active, .btn-danger:not(:disabled):not(.disabled).active,
+.show > .btn-danger.dropdown-toggle {
+  color: #fff;
+  background-color: #bd2130;
+  border-color: #b21f2d;
+}
+
+.btn-danger:not(:disabled):not(.disabled):active:focus, .btn-danger:not(:disabled):not(.disabled).active:focus,
+.show > .btn-danger.dropdown-toggle:focus {
+  box-shadow: 0 0 0 0.2rem rgba(225, 83, 97, 0.5);
+}
+
+.btn-light {
+  color: #212529;
+  background-color: #f8f9fa;
+  border-color: #f8f9fa;
+}
+
+.btn-light:hover {
+  color: #212529;
+  background-color: #e2e6ea;
+  border-color: #dae0e5;
+}
+
+.btn-light:focus, .btn-light.focus {
+  box-shadow: 0 0 0 0.2rem rgba(216, 217, 219, 0.5);
+}
+
+.btn-light.disabled, .btn-light:disabled {
+  color: #212529;
+  background-color: #f8f9fa;
+  border-color: #f8f9fa;
+}
+
+.btn-light:not(:disabled):not(.disabled):active, .btn-light:not(:disabled):not(.disabled).active,
+.show > .btn-light.dropdown-toggle {
+  color: #212529;
+  background-color: #dae0e5;
+  border-color: #d3d9df;
+}
+
+.btn-light:not(:disabled):not(.disabled):active:focus, .btn-light:not(:disabled):not(.disabled).active:focus,
+.show > .btn-light.dropdown-toggle:focus {
+  box-shadow: 0 0 0 0.2rem rgba(216, 217, 219, 0.5);
+}
+
+.btn-dark {
+  color: #fff;
+  background-color: #343a40;
+  border-color: #343a40;
+}
+
+.btn-dark:hover {
+  color: #fff;
+  background-color: #23272b;
+  border-color: #1d2124;
+}
+
+.btn-dark:focus, .btn-dark.focus {
+  box-shadow: 0 0 0 0.2rem rgba(82, 88, 93, 0.5);
+}
+
+.btn-dark.disabled, .btn-dark:disabled {
+  color: #fff;
+  background-color: #343a40;
+  border-color: #343a40;
+}
+
+.btn-dark:not(:disabled):not(.disabled):active, .btn-dark:not(:disabled):not(.disabled).active,
+.show > .btn-dark.dropdown-toggle {
+  color: #fff;
+  background-color: #1d2124;
+  border-color: #171a1d;
+}
+
+.btn-dark:not(:disabled):not(.disabled):active:focus, .btn-dark:not(:disabled):not(.disabled).active:focus,
+.show > .btn-dark.dropdown-toggle:focus {
+  box-shadow: 0 0 0 0.2rem rgba(82, 88, 93, 0.5);
+}
+
+.btn-outline-primary {
+  color: #007bff;
+  border-color: #007bff;
+}
+
+.btn-outline-primary:hover {
+  color: #fff;
+  background-color: #007bff;
+  border-color: #007bff;
+}
+
+.btn-outline-primary:focus, .btn-outline-primary.focus {
+  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
+}
+
+.btn-outline-primary.disabled, .btn-outline-primary:disabled {
+  color: #007bff;
+  background-color: transparent;
+}
+
+.btn-outline-primary:not(:disabled):not(.disabled):active, .btn-outline-primary:not(:disabled):not(.disabled).active,
+.show > .btn-outline-primary.dropdown-toggle {
+  color: #fff;
+  background-color: #007bff;
+  border-color: #007bff;
+}
+
+.btn-outline-primary:not(:disabled):not(.disabled):active:focus, .btn-outline-primary:not(:disabled):not(.disabled).active:focus,
+.show > .btn-outline-primary.dropdown-toggle:focus {
+  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
+}
+
+.btn-outline-secondary {
+  color: #6c757d;
+  border-color: #6c757d;
+}
+
+.btn-outline-secondary:hover {
+  color: #fff;
+  background-color: #6c757d;
+  border-color: #6c757d;
+}
+
+.btn-outline-secondary:focus, .btn-outline-secondary.focus {
+  box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
+}
+
+.btn-outline-secondary.disabled, .btn-outline-secondary:disabled {
+  color: #6c757d;
+  background-color: transparent;
+}
+
+.btn-outline-secondary:not(:disabled):not(.disabled):active, .btn-outline-secondary:not(:disabled):not(.disabled).active,
+.show > .btn-outline-secondary.dropdown-toggle {
+  color: #fff;
+  background-color: #6c757d;
+  border-color: #6c757d;
+}
+
+.btn-outline-secondary:not(:disabled):not(.disabled):active:focus, .btn-outline-secondary:not(:disabled):not(.disabled).active:focus,
+.show > .btn-outline-secondary.dropdown-toggle:focus {
+  box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
+}
+
+.btn-outline-success {
+  color: #28a745;
+  border-color: #28a745;
+}
+
+.btn-outline-success:hover {
+  color: #fff;
+  background-color: #28a745;
+  border-color: #28a745;
+}
+
+.btn-outline-success:focus, .btn-outline-success.focus {
+  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
+}
+
+.btn-outline-success.disabled, .btn-outline-success:disabled {
+  color: #28a745;
+  background-color: transparent;
+}
+
+.btn-outline-success:not(:disabled):not(.disabled):active, .btn-outline-success:not(:disabled):not(.disabled).active,
+.show > .btn-outline-success.dropdown-toggle {
+  color: #fff;
+  background-color: #28a745;
+  border-color: #28a745;
+}
+
+.btn-outline-success:not(:disabled):not(.disabled):active:focus, .btn-outline-success:not(:disabled):not(.disabled).active:focus,
+.show > .btn-outline-success.dropdown-toggle:focus {
+  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
+}
+
+.btn-outline-info {
+  color: #17a2b8;
+  border-color: #17a2b8;
+}
+
+.btn-outline-info:hover {
+  color: #fff;
+  background-color: #17a2b8;
+  border-color: #17a2b8;
+}
+
+.btn-outline-info:focus, .btn-outline-info.focus {
+  box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
+}
+
+.btn-outline-info.disabled, .btn-outline-info:disabled {
+  color: #17a2b8;
+  background-color: transparent;
+}
+
+.btn-outline-info:not(:disabled):not(.disabled):active, .btn-outline-info:not(:disabled):not(.disabled).active,
+.show > .btn-outline-info.dropdown-toggle {
+  color: #fff;
+  background-color: #17a2b8;
+  border-color: #17a2b8;
+}
+
+.btn-outline-info:not(:disabled):not(.disabled):active:focus, .btn-outline-info:not(:disabled):not(.disabled).active:focus,
+.show > .btn-outline-info.dropdown-toggle:focus {
+  box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
+}
+
+.btn-outline-warning {
+  color: #ffc107;
+  border-color: #ffc107;
+}
+
+.btn-outline-warning:hover {
+  color: #212529;
+  background-color: #ffc107;
+  border-color: #ffc107;
+}
+
+.btn-outline-warning:focus, .btn-outline-warning.focus {
+  box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
+}
+
+.btn-outline-warning.disabled, .btn-outline-warning:disabled {
+  color: #ffc107;
+  background-color: transparent;
+}
+
+.btn-outline-warning:not(:disabled):not(.disabled):active, .btn-outline-warning:not(:disabled):not(.disabled).active,
+.show > .btn-outline-warning.dropdown-toggle {
+  color: #212529;
+  background-color: #ffc107;
+  border-color: #ffc107;
+}
+
+.btn-outline-warning:not(:disabled):not(.disabled):active:focus, .btn-outline-warning:not(:disabled):not(.disabled).active:focus,
+.show > .btn-outline-warning.dropdown-toggle:focus {
+  box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
+}
+
+.btn-outline-danger {
+  color: #dc3545;
+  border-color: #dc3545;
+}
+
+.btn-outline-danger:hover {
+  color: #fff;
+  background-color: #dc3545;
+  border-color: #dc3545;
+}
+
+.btn-outline-danger:focus, .btn-outline-danger.focus {
+  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
+}
+
+.btn-outline-danger.disabled, .btn-outline-danger:disabled {
+  color: #dc3545;
+  background-color: transparent;
+}
+
+.btn-outline-danger:not(:disabled):not(.disabled):active, .btn-outline-danger:not(:disabled):not(.disabled).active,
+.show > .btn-outline-danger.dropdown-toggle {
+  color: #fff;
+  background-color: #dc3545;
+  border-color: #dc3545;
+}
+
+.btn-outline-danger:not(:disabled):not(.disabled):active:focus, .btn-outline-danger:not(:disabled):not(.disabled).active:focus,
+.show > .btn-outline-danger.dropdown-toggle:focus {
+  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
+}
+
+.btn-outline-light {
+  color: #f8f9fa;
+  border-color: #f8f9fa;
+}
+
+.btn-outline-light:hover {
+  color: #212529;
+  background-color: #f8f9fa;
+  border-color: #f8f9fa;
+}
+
+.btn-outline-light:focus, .btn-outline-light.focus {
+  box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
+}
+
+.btn-outline-light.disabled, .btn-outline-light:disabled {
+  color: #f8f9fa;
+  background-color: transparent;
+}
+
+.btn-outline-light:not(:disabled):not(.disabled):active, .btn-outline-light:not(:disabled):not(.disabled).active,
+.show > .btn-outline-light.dropdown-toggle {
+  color: #212529;
+  background-color: #f8f9fa;
+  border-color: #f8f9fa;
+}
+
+.btn-outline-light:not(:disabled):not(.disabled):active:focus, .btn-outline-light:not(:disabled):not(.disabled).active:focus,
+.show > .btn-outline-light.dropdown-toggle:focus {
+  box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
+}
+
+.btn-outline-dark {
+  color: #343a40;
+  border-color: #343a40;
+}
+
+.btn-outline-dark:hover {
+  color: #fff;
+  background-color: #343a40;
+  border-color: #343a40;
+}
+
+.btn-outline-dark:focus, .btn-outline-dark.focus {
+  box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
+}
+
+.btn-outline-dark.disabled, .btn-outline-dark:disabled {
+  color: #343a40;
+  background-color: transparent;
+}
+
+.btn-outline-dark:not(:disabled):not(.disabled):active, .btn-outline-dark:not(:disabled):not(.disabled).active,
+.show > .btn-outline-dark.dropdown-toggle {
+  color: #fff;
+  background-color: #343a40;
+  border-color: #343a40;
+}
+
+.btn-outline-dark:not(:disabled):not(.disabled):active:focus, .btn-outline-dark:not(:disabled):not(.disabled).active:focus,
+.show > .btn-outline-dark.dropdown-toggle:focus {
+  box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
+}
+
+.btn-link {
+  font-weight: 400;
+  color: #007bff;
+  text-decoration: none;
+}
+
+.btn-link:hover {
+  color: #0056b3;
+  text-decoration: underline;
+}
+
+.btn-link:focus, .btn-link.focus {
+  text-decoration: underline;
+  box-shadow: none;
+}
+
+.btn-link:disabled, .btn-link.disabled {
+  color: #6c757d;
+  pointer-events: none;
+}
+
+.btn-lg, .btn-group-lg > .btn {
+  padding: 0.5rem 1rem;
+  font-size: 1.25rem;
+  line-height: 1.5;
+  border-radius: 0.3rem;
+}
+
+.btn-sm, .btn-group-sm > .btn {
+  padding: 0.25rem 0.5rem;
+  font-size: 0.875rem;
+  line-height: 1.5;
+  border-radius: 0.2rem;
+}
+
+.btn-block {
+  display: block;
+  width: 100%;
+}
+
+.btn-block + .btn-block {
+  margin-top: 0.5rem;
+}
+
+input[type="submit"].btn-block,
+input[type="reset"].btn-block,
+input[type="button"].btn-block {
+  width: 100%;
+}
+
+.fade {
+  transition: opacity 0.15s linear;
+}
+
+@media (prefers-reduced-motion: reduce) {
+  .fade {
+    transition: none;
+  }
+}
+
+.fade:not(.show) {
+  opacity: 0;
+}
+
+.collapse:not(.show) {
+  display: none;
+}
+
+.collapsing {
+  position: relative;
+  height: 0;
+  overflow: hidden;
+  transition: height 0.35s ease;
+}
+
+@media (prefers-reduced-motion: reduce) {
+  .collapsing {
+    transition: none;
+  }
+}
+
+.dropup,
+.dropright,
+.dropdown,
+.dropleft {
+  position: relative;
+}
+
+.dropdown-toggle {
+  white-space: nowrap;
+}
+
+.dropdown-toggle::after {
+  display: inline-block;
+  margin-left: 0.255em;
+  vertical-align: 0.255em;
+  content: "";
+  border-top: 0.3em solid;
+  border-right: 0.3em solid transparent;
+  border-bottom: 0;
+  border-left: 0.3em solid transparent;
+}
+
+.dropdown-toggle:empty::after {
+  margin-left: 0;
+}
+
+.dropdown-menu {
+  position: absolute;
+  top: 100%;
+  left: 0;
+  z-index: 1000;
+  display: none;
+  float: left;
+  min-width: 10rem;
+  padding: 0.5rem 0;
+  margin: 0.125rem 0 0;
+  font-size: 1rem;
+  color: #212529;
+  text-align: left;
+  list-style: none;
+  background-color: #fff;
+  background-clip: padding-box;
+  border: 1px solid rgba(0, 0, 0, 0.15);
+  border-radius: 0.25rem;
+}
+
+.dropdown-menu-left {
+  right: auto;
+  left: 0;
+}
+
+.dropdown-menu-right {
+  right: 0;
+  left: auto;
+}
+
+@media (min-width: 576px) {
+  .dropdown-menu-sm-left {
+    right: auto;
+    left: 0;
+  }
+  .dropdown-menu-sm-right {
+    right: 0;
+    left: auto;
+  }
+}
+
+@media (min-width: 768px) {
+  .dropdown-menu-md-left {
+    right: auto;
+    left: 0;
+  }
+  .dropdown-menu-md-right {
+    right: 0;
+    left: auto;
+  }
+}
+
+@media (min-width: 992px) {
+  .dropdown-menu-lg-left {
+    right: auto;
+    left: 0;
+  }
+  .dropdown-menu-lg-right {
+    right: 0;
+    left: auto;
+  }
+}
+
+@media (min-width: 1200px) {
+  .dropdown-menu-xl-left {
+    right: auto;
+    left: 0;
+  }
+  .dropdown-menu-xl-right {
+    right: 0;
+    left: auto;
+  }
+}
+
+.dropup .dropdown-menu {
+  top: auto;
+  bottom: 100%;
+  margin-top: 0;
+  margin-bottom: 0.125rem;
+}
+
+.dropup .dropdown-toggle::after {
+  display: inline-block;
+  margin-left: 0.255em;
+  vertical-align: 0.255em;
+  content: "";
+  border-top: 0;
+  border-right: 0.3em solid transparent;
+  border-bottom: 0.3em solid;
+  border-left: 0.3em solid transparent;
+}
+
+.dropup .dropdown-toggle:empty::after {
+  margin-left: 0;
+}
+
+.dropright .dropdown-menu {
+  top: 0;
+  right: auto;
+  left: 100%;
+  margin-top: 0;
+  margin-left: 0.125rem;
+}
+
+.dropright .dropdown-toggle::after {
+  display: inline-block;
+  margin-left: 0.255em;
+  vertical-align: 0.255em;
+  content: "";
+  border-top: 0.3em solid transparent;
+  border-right: 0;
+  border-bottom: 0.3em solid transparent;
+  border-left: 0.3em solid;
+}
+
+.dropright .dropdown-toggle:empty::after {
+  margin-left: 0;
+}
+
+.dropright .dropdown-toggle::after {
+  vertical-align: 0;
+}
+
+.dropleft .dropdown-menu {
+  top: 0;
+  right: 100%;
+  left: auto;
+  margin-top: 0;
+  margin-right: 0.125rem;
+}
+
+.dropleft .dropdown-toggle::after {
+  display: inline-block;
+  margin-left: 0.255em;
+  vertical-align: 0.255em;
+  content: "";
+}
+
+.dropleft .dropdown-toggle::after {
+  display: none;
+}
+
+.dropleft .dropdown-toggle::before {
+  display: inline-block;
+  margin-right: 0.255em;
+  vertical-align: 0.255em;
+  content: "";
+  border-top: 0.3em solid transparent;
+  border-right: 0.3em solid;
+  border-bottom: 0.3em solid transparent;
+}
+
+.dropleft .dropdown-toggle:empty::after {
+  margin-left: 0;
+}
+
+.dropleft .dropdown-toggle::before {
+  vertical-align: 0;
+}
+
+.dropdown-menu[x-placement^="top"], .dropdown-menu[x-placement^="right"], .dropdown-menu[x-placement^="bottom"], .dropdown-menu[x-placement^="left"] {
+  right: auto;
+  bottom: auto;
+}
+
+.dropdown-divider {
+  height: 0;
+  margin: 0.5rem 0;
+  overflow: hidden;
+  border-top: 1px solid #e9ecef;
+}
+
+.dropdown-item {
+  display: block;
+  width: 100%;
+  padding: 0.25rem 1.5rem;
+  clear: both;
+  font-weight: 400;
+  color: #212529;
+  text-align: inherit;
+  white-space: nowrap;
+  background-color: transparent;
+  border: 0;
+}
+
+.dropdown-item:hover, .dropdown-item:focus {
+  color: #16181b;
+  text-decoration: none;
+  background-color: #f8f9fa;
+}
+
+.dropdown-item.active, .dropdown-item:active {
+  color: #fff;
+  text-decoration: none;
+  background-color: #007bff;
+}
+
+.dropdown-item.disabled, .dropdown-item:disabled {
+  color: #6c757d;
+  pointer-events: none;
+  background-color: transparent;
+}
+
+.dropdown-menu.show {
+  display: block;
+}
+
+.dropdown-header {
+  display: block;
+  padding: 0.5rem 1.5rem;
+  margin-bottom: 0;
+  font-size: 0.875rem;
+  color: #6c757d;
+  white-space: nowrap;
+}
+
+.dropdown-item-text {
+  display: block;
+  padding: 0.25rem 1.5rem;
+  color: #212529;
+}
+
+.btn-group,
+.btn-group-vertical {
+  position: relative;
+  display: -ms-inline-flexbox;
+  display: inline-flex;
+  vertical-align: middle;
+}
+
+.btn-group > .btn,
+.btn-group-vertical > .btn {
+  position: relative;
+  -ms-flex: 1 1 auto;
+  flex: 1 1 auto;
+}
+
+.btn-group > .btn:hover,
+.btn-group-vertical > .btn:hover {
+  z-index: 1;
+}
+
+.btn-group > .btn:focus, .btn-group > .btn:active, .btn-group > .btn.active,
+.btn-group-vertical > .btn:focus,
+.btn-group-vertical > .btn:active,
+.btn-group-vertical > .btn.active {
+  z-index: 1;
+}
+
+.btn-toolbar {
+  display: -ms-flexbox;
+  display: flex;
+  -ms-flex-wrap: wrap;
+  flex-wrap: wrap;
+  -ms-flex-pack: start;
+  justify-content: flex-start;
+}
+
+.btn-toolbar .input-group {
+  width: auto;
+}
+
+.btn-group > .btn:not(:first-child),
+.btn-group > .btn-group:not(:first-child) {
+  margin-left: -1px;
+}
+
+.btn-group > .btn:not(:last-child):not(.dropdown-toggle),
+.btn-group > .btn-group:not(:last-child) > .btn {
+  border-top-right-radius: 0;
+  border-bottom-right-radius: 0;
+}
+
+.btn-group > .btn:not(:first-child),
+.btn-group > .btn-group:not(:first-child) > .btn {
+  border-top-left-radius: 0;
+  border-bottom-left-radius: 0;
+}
+
+.dropdown-toggle-split {
+  padding-right: 0.5625rem;
+  padding-left: 0.5625rem;
+}
+
+.dropdown-toggle-split::after,
+.dropup .dropdown-toggle-split::after,
+.dropright .dropdown-toggle-split::after {
+  margin-left: 0;
+}
+
+.dropleft .dropdown-toggle-split::before {
+  margin-right: 0;
+}
+
+.btn-sm + .dropdown-toggle-split, .btn-group-sm > .btn + .dropdown-toggle-split {
+  padding-right: 0.375rem;
+  padding-left: 0.375rem;
+}
+
+.btn-lg + .dropdown-toggle-split, .btn-group-lg > .btn + .dropdown-toggle-split {
+  padding-right: 0.75rem;
+  padding-left: 0.75rem;
+}
+
+.btn-group-vertical {
+  -ms-flex-direction: column;
+  flex-direction: column;
+  -ms-flex-align: start;
+  align-items: flex-start;
+  -ms-flex-pack: center;
+  justify-content: center;
+}
+
+.btn-group-vertical > .btn,
+.btn-group-vertical > .btn-group {
+  width: 100%;
+}
+
+.btn-group-vertical > .btn:not(:first-child),
+.btn-group-vertical > .btn-group:not(:first-child) {
+  margin-top: -1px;
+}
+
+.btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle),
+.btn-group-vertical > .btn-group:not(:last-child) > .btn {
+  border-bottom-right-radius: 0;
+  border-bottom-left-radius: 0;
+}
+
+.btn-group-vertical > .btn:not(:first-child),
+.btn-group-vertical > .btn-group:not(:first-child) > .btn {
+  border-top-left-radius: 0;
+  border-top-right-radius: 0;
+}
+
+.btn-group-toggle > .btn,
+.btn-group-toggle > .btn-group > .btn {
+  margin-bottom: 0;
+}
+
+.btn-group-toggle > .btn input[type="radio"],
+.btn-group-toggle > .btn input[type="checkbox"],
+.btn-group-toggle > .btn-group > .btn input[type="radio"],
+.btn-group-toggle > .btn-group > .btn input[type="checkbox"] {
+  position: absolute;
+  clip: rect(0, 0, 0, 0);
+  pointer-events: none;
+}
+
+.input-group {
+  position: relative;
+  display: -ms-flexbox;
+  display: flex;
+  -ms-flex-wrap: wrap;
+  flex-wrap: wrap;
+  -ms-flex-align: stretch;
+  align-items: stretch;
+  width: 100%;
+}
+
+.input-group > .form-control,
+.input-group > .form-control-plaintext,
+.input-group > .custom-select,
+.input-group > .custom-file {
+  position: relative;
+  -ms-flex: 1 1 auto;
+  flex: 1 1 auto;
+  width: 1%;
+  margin-bottom: 0;
+}
+
+.input-group > .form-control + .form-control,
+.input-group > .form-control + .custom-select,
+.input-group > .form-control + .custom-file,
+.input-group > .form-control-plaintext + .form-control,
+.input-group > .form-control-plaintext + .custom-select,
+.input-group > .form-control-plaintext + .custom-file,
+.input-group > .custom-select + .form-control,
+.input-group > .custom-select + .custom-select,
+.input-group > .custom-select + .custom-file,
+.input-group > .custom-file + .form-control,
+.input-group > .custom-file + .custom-select,
+.input-group > .custom-file + .custom-file {
+  margin-left: -1px;
+}
+
+.input-group > .form-control:focus,
+.input-group > .custom-select:focus,
+.input-group > .custom-file .custom-file-input:focus ~ .custom-file-label {
+  z-index: 3;
+}
+
+.input-group > .custom-file .custom-file-input:focus {
+  z-index: 4;
+}
+
+.input-group > .form-control:not(:last-child),
+.input-group > .custom-select:not(:last-child) {
+  border-top-right-radius: 0;
+  border-bottom-right-radius: 0;
+}
+
+.input-group > .form-control:not(:first-child),
+.input-group > .custom-select:not(:first-child) {
+  border-top-left-radius: 0;
+  border-bottom-left-radius: 0;
+}
+
+.input-group > .custom-file {
+  display: -ms-flexbox;
+  display: flex;
+  -ms-flex-align: center;
+  align-items: center;
+}
+
+.input-group > .custom-file:not(:last-child) .custom-file-label,
+.input-group > .custom-file:not(:last-child) .custom-file-label::after {
+  border-top-right-radius: 0;
+  border-bottom-right-radius: 0;
+}
+
+.input-group > .custom-file:not(:first-child) .custom-file-label {
+  border-top-left-radius: 0;
+  border-bottom-left-radius: 0;
+}
+
+.input-group-prepend,
+.input-group-append {
+  display: -ms-flexbox;
+  display: flex;
+}
+
+.input-group-prepend .btn,
+.input-group-append .btn {
+  position: relative;
+  z-index: 2;
+}
+
+.input-group-prepend .btn:focus,
+.input-group-append .btn:focus {
+  z-index: 3;
+}
+
+.input-group-prepend .btn + .btn,
+.input-group-prepend .btn + .input-group-text,
+.input-group-prepend .input-group-text + .input-group-text,
+.input-group-prepend .input-group-text + .btn,
+.input-group-append .btn + .btn,
+.input-group-append .btn + .input-group-text,
+.input-group-append .input-group-text + .input-group-text,
+.input-group-append .input-group-text + .btn {
+  margin-left: -1px;
+}
+
+.input-group-prepend {
+  margin-right: -1px;
+}
+
+.input-group-append {
+  margin-left: -1px;
+}
+
+.input-group-text {
+  display: -ms-flexbox;
+  display: flex;
+  -ms-flex-align: center;
+  align-items: center;
+  padding: 0.375rem 0.75rem;
+  margin-bottom: 0;
+  font-size: 1rem;
+  font-weight: 400;
+  line-height: 1.5;
+  color: #495057;
+  text-align: center;
+  white-space: nowrap;
+  background-color: #e9ecef;
+  border: 1px solid #ced4da;
+  border-radius: 0.25rem;
+}
+
+.input-group-text input[type="radio"],
+.input-group-text input[type="checkbox"] {
+  margin-top: 0;
+}
+
+.input-group-lg > .form-control:not(textarea),
+.input-group-lg > .custom-select {
+  height: calc(1.5em + 1rem + 2px);
+}
+
+.input-group-lg > .form-control,
+.input-group-lg > .custom-select,
+.input-group-lg > .input-group-prepend > .input-group-text,
+.input-group-lg > .input-group-append > .input-group-text,
+.input-group-lg > .input-group-prepend > .btn,
+.input-group-lg > .input-group-append > .btn {
+  padding: 0.5rem 1rem;
+  font-size: 1.25rem;
+  line-height: 1.5;
+  border-radius: 0.3rem;
+}
+
+.input-group-sm > .form-control:not(textarea),
+.input-group-sm > .custom-select {
+  height: calc(1.5em + 0.5rem + 2px);
+}
+
+.input-group-sm > .form-control,
+.input-group-sm > .custom-select,
+.input-group-sm > .input-group-prepend > .input-group-text,
+.input-group-sm > .input-group-append > .input-group-text,
+.input-group-sm > .input-group-prepend > .btn,
+.input-group-sm > .input-group-append > .btn {
+  padding: 0.25rem 0.5rem;
+  font-size: 0.875rem;
+  line-height: 1.5;
+  border-radius: 0.2rem;
+}
+
+.input-group-lg > .custom-select,
+.input-group-sm > .custom-select {
+  padding-right: 1.75rem;
+}
+
+.input-group > .input-group-prepend > .btn,
+.input-group > .input-group-prepend > .input-group-text,
+.input-group > .input-group-append:not(:last-child) > .btn,
+.input-group > .input-group-append:not(:last-child) > .input-group-text,
+.input-group > .input-group-append:last-child > .btn:not(:last-child):not(.dropdown-toggle),
+.input-group > .input-group-append:last-child > .input-group-text:not(:last-child) {
+  border-top-right-radius: 0;
+  border-bottom-right-radius: 0;
+}
+
+.input-group > .input-group-append > .btn,
+.input-group > .input-group-append > .input-group-text,
+.input-group > .input-group-prepend:not(:first-child) > .btn,
+.input-group > .input-group-prepend:not(:first-child) > .input-group-text,
+.input-group > .input-group-prepend:first-child > .btn:not(:first-child),
+.input-group > .input-group-prepend:first-child > .input-group-text:not(:first-child) {
+  border-top-left-radius: 0;
+  border-bottom-left-radius: 0;
+}
+
+.custom-control {
+  position: relative;
+  display: block;
+  min-height: 1.5rem;
+  padding-left: 1.5rem;
+}
+
+.custom-control-inline {
+  display: -ms-inline-flexbox;
+  display: inline-flex;
+  margin-right: 1rem;
+}
+
+.custom-control-input {
+  position: absolute;
+  z-index: -1;
+  opacity: 0;
+}
+
+.custom-control-input:checked ~ .custom-control-label::before {
+  color: #fff;
+  border-color: #007bff;
+  background-color: #007bff;
+}
+
+.custom-control-input:focus ~ .custom-control-label::before {
+  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
+}
+
+.custom-control-input:focus:not(:checked) ~ .custom-control-label::before {
+  border-color: #80bdff;
+}
+
+.custom-control-input:not(:disabled):active ~ .custom-control-label::before {
+  color: #fff;
+  background-color: #b3d7ff;
+  border-color: #b3d7ff;
+}
+
+.custom-control-input:disabled ~ .custom-control-label {
+  color: #6c757d;
+}
+
+.custom-control-input:disabled ~ .custom-control-label::before {
+  background-color: #e9ecef;
+}
+
+.custom-control-label {
+  position: relative;
+  margin-bottom: 0;
+  vertical-align: top;
+}
+
+.custom-control-label::before {
+  position: absolute;
+  top: 0.25rem;
+  left: -1.5rem;
+  display: block;
+  width: 1rem;
+  height: 1rem;
+  pointer-events: none;
+  content: "";
+  background-color: #fff;
+  border: #adb5bd solid 1px;
+}
+
+.custom-control-label::after {
+  position: absolute;
+  top: 0.25rem;
+  left: -1.5rem;
+  display: block;
+  width: 1rem;
+  height: 1rem;
+  content: "";
+  background: no-repeat 50% / 50% 50%;
+}
+
+.custom-checkbox .custom-control-label::before {
+  border-radius: 0.25rem;
+}
+
+.custom-checkbox .custom-control-input:checked ~ .custom-control-label::after {
+  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3e%3c/svg%3e");
+}
+
+.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::before {
+  border-color: #007bff;
+  background-color: #007bff;
+}
+
+.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::after {
+  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 4'%3e%3cpath stroke='%23fff' d='M0 2h4'/%3e%3c/svg%3e");
+}
+
+.custom-checkbox .custom-control-input:disabled:checked ~ .custom-control-label::before {
+  background-color: rgba(0, 123, 255, 0.5);
+}
+
+.custom-checkbox .custom-control-input:disabled:indeterminate ~ .custom-control-label::before {
+  background-color: rgba(0, 123, 255, 0.5);
+}
+
+.custom-radio .custom-control-label::before {
+  border-radius: 50%;
+}
+
+.custom-radio .custom-control-input:checked ~ .custom-control-label::after {
+  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
+}
+
+.custom-radio .custom-control-input:disabled:checked ~ .custom-control-label::before {
+  background-color: rgba(0, 123, 255, 0.5);
+}
+
+.custom-switch {
+  padding-left: 2.25rem;
+}
+
+.custom-switch .custom-control-label::before {
+  left: -2.25rem;
+  width: 1.75rem;
+  pointer-events: all;
+  border-radius: 0.5rem;
+}
+
+.custom-switch .custom-control-label::after {
+  top: calc(0.25rem + 2px);
+  left: calc(-2.25rem + 2px);
+  width: calc(1rem - 4px);
+  height: calc(1rem - 4px);
+  background-color: #adb5bd;
+  border-radius: 0.5rem;
+  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-transform 0.15s ease-in-out;
+  transition: transform 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
+  transition: transform 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-transform 0.15s ease-in-out;
+}
+
+@media (prefers-reduced-motion: reduce) {
+  .custom-switch .custom-control-label::after {
+    transition: none;
+  }
+}
+
+.custom-switch .custom-control-input:checked ~ .custom-control-label::after {
+  background-color: #fff;
+  -webkit-transform: translateX(0.75rem);
+  transform: translateX(0.75rem);
+}
+
+.custom-switch .custom-control-input:disabled:checked ~ .custom-control-label::before {
+  background-color: rgba(0, 123, 255, 0.5);
+}
+
+.custom-select {
+  display: inline-block;
+  width: 100%;
+  height: calc(1.5em + 0.75rem + 2px);
+  padding: 0.375rem 1.75rem 0.375rem 0.75rem;
+  font-size: 1rem;
+  font-weight: 400;
+  line-height: 1.5;
+  color: #495057;
+  vertical-align: middle;
+  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.75rem center/8px 10px;
+  background-color: #fff;
+  border: 1px solid #ced4da;
+  border-radius: 0.25rem;
+  -webkit-appearance: none;
+  -moz-appearance: none;
+  appearance: none;
+}
+
+.custom-select:focus {
+  border-color: #80bdff;
+  outline: 0;
+  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
+}
+
+.custom-select:focus::-ms-value {
+  color: #495057;
+  background-color: #fff;
+}
+
+.custom-select[multiple], .custom-select[size]:not([size="1"]) {
+  height: auto;
+  padding-right: 0.75rem;
+  background-image: none;
+}
+
+.custom-select:disabled {
+  color: #6c757d;
+  background-color: #e9ecef;
+}
+
+.custom-select::-ms-expand {
+  display: none;
+}
+
+.custom-select-sm {
+  height: calc(1.5em + 0.5rem + 2px);
+  padding-top: 0.25rem;
+  padding-bottom: 0.25rem;
+  padding-left: 0.5rem;
+  font-size: 0.875rem;
+}
+
+.custom-select-lg {
+  height: calc(1.5em + 1rem + 2px);
+  padding-top: 0.5rem;
+  padding-bottom: 0.5rem;
+  padding-left: 1rem;
+  font-size: 1.25rem;
+}
+
+.custom-file {
+  position: relative;
+  display: inline-block;
+  width: 100%;
+  height: calc(1.5em + 0.75rem + 2px);
+  margin-bottom: 0;
+}
+
+.custom-file-input {
+  position: relative;
+  z-index: 2;
+  width: 100%;
+  height: calc(1.5em + 0.75rem + 2px);
+  margin: 0;
+  opacity: 0;
+}
+
+.custom-file-input:focus ~ .custom-file-label {
+  border-color: #80bdff;
+  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
+}
+
+.custom-file-input:disabled ~ .custom-file-label {
+  background-color: #e9ecef;
+}
+
+.custom-file-input:lang(en) ~ .custom-file-label::after {
+  content: "Browse";
+}
+
+.custom-file-input ~ .custom-file-label[data-browse]::after {
+  content: attr(data-browse);
+}
+
+.custom-file-label {
+  position: absolute;
+  top: 0;
+  right: 0;
+  left: 0;
+  z-index: 1;
+  height: calc(1.5em + 0.75rem + 2px);
+  padding: 0.375rem 0.75rem;
+  font-weight: 400;
+  line-height: 1.5;
+  color: #495057;
+  background-color: #fff;
+  border: 1px solid #ced4da;
+  border-radius: 0.25rem;
+}
+
+.custom-file-label::after {
+  position: absolute;
+  top: 0;
+  right: 0;
+  bottom: 0;
+  z-index: 3;
+  display: block;
+  height: calc(1.5em + 0.75rem);
+  padding: 0.375rem 0.75rem;
+  line-height: 1.5;
+  color: #495057;
+  content: "Browse";
+  background-color: #e9ecef;
+  border-left: inherit;
+  border-radius: 0 0.25rem 0.25rem 0;
+}
+
+.custom-range {
+  width: 100%;
+  height: calc(1rem + 0.4rem);
+  padding: 0;
+  background-color: transparent;
+  -webkit-appearance: none;
+  -moz-appearance: none;
+  appearance: none;
+}
+
+.custom-range:focus {
+  outline: none;
+}
+
+.custom-range:focus::-webkit-slider-thumb {
+  box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
+}
+
+.custom-range:focus::-moz-range-thumb {
+  box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
+}
+
+.custom-range:focus::-ms-thumb {
+  box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
+}
+
+.custom-range::-moz-focus-outer {
+  border: 0;
+}
+
+.custom-range::-webkit-slider-thumb {
+  width: 1rem;
+  height: 1rem;
+  margin-top: -0.25rem;
+  background-color: #007bff;
+  border: 0;
+  border-radius: 1rem;
+  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
+  -webkit-appearance: none;
+  appearance: none;
+}
+
+@media (prefers-reduced-motion: reduce) {
+  .custom-range::-webkit-slider-thumb {
+    transition: none;
+  }
+}
+
+.custom-range::-webkit-slider-thumb:active {
+  background-color: #b3d7ff;
+}
+
+.custom-range::-webkit-slider-runnable-track {
+  width: 100%;
+  height: 0.5rem;
+  color: transparent;
+  cursor: pointer;
+  background-color: #dee2e6;
+  border-color: transparent;
+  border-radius: 1rem;
+}
+
+.custom-range::-moz-range-thumb {
+  width: 1rem;
+  height: 1rem;
+  background-color: #007bff;
+  border: 0;
+  border-radius: 1rem;
+  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
+  -moz-appearance: none;
+  appearance: none;
+}
+
+@media (prefers-reduced-motion: reduce) {
+  .custom-range::-moz-range-thumb {
+    transition: none;
+  }
+}
+
+.custom-range::-moz-range-thumb:active {
+  background-color: #b3d7ff;
+}
+
+.custom-range::-moz-range-track {
+  width: 100%;
+  height: 0.5rem;
+  color: transparent;
+  cursor: pointer;
+  background-color: #dee2e6;
+  border-color: transparent;
+  border-radius: 1rem;
+}
+
+.custom-range::-ms-thumb {
+  width: 1rem;
+  height: 1rem;
+  margin-top: 0;
+  margin-right: 0.2rem;
+  margin-left: 0.2rem;
+  background-color: #007bff;
+  border: 0;
+  border-radius: 1rem;
+  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
+  appearance: none;
+}
+
+@media (prefers-reduced-motion: reduce) {
+  .custom-range::-ms-thumb {
+    transition: none;
+  }
+}
+
+.custom-range::-ms-thumb:active {
+  background-color: #b3d7ff;
+}
+
+.custom-range::-ms-track {
+  width: 100%;
+  height: 0.5rem;
+  color: transparent;
+  cursor: pointer;
+  background-color: transparent;
+  border-color: transparent;
+  border-width: 0.5rem;
+}
+
+.custom-range::-ms-fill-lower {
+  background-color: #dee2e6;
+  border-radius: 1rem;
+}
+
+.custom-range::-ms-fill-upper {
+  margin-right: 15px;
+  background-color: #dee2e6;
+  border-radius: 1rem;
+}
+
+.custom-range:disabled::-webkit-slider-thumb {
+  background-color: #adb5bd;
+}
+
+.custom-range:disabled::-webkit-slider-runnable-track {
+  cursor: default;
+}
+
+.custom-range:disabled::-moz-range-thumb {
+  background-color: #adb5bd;
+}
+
+.custom-range:disabled::-moz-range-track {
+  cursor: default;
+}
+
+.custom-range:disabled::-ms-thumb {
+  background-color: #adb5bd;
+}
+
+.custom-control-label::before,
+.custom-file-label,
+.custom-select {
+  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
+}
+
+@media (prefers-reduced-motion: reduce) {
+  .custom-control-label::before,
+  .custom-file-label,
+  .custom-select {
+    transition: none;
+  }
+}
+
+.nav {
+  display: -ms-flexbox;
+  display: flex;
+  -ms-flex-wrap: wrap;
+  flex-wrap: wrap;
+  padding-left: 0;
+  margin-bottom: 0;
+  list-style: none;
+}
+
+.nav-link {
+  display: block;
+  padding: 0.5rem 1rem;
+}
+
+.nav-link:hover, .nav-link:focus {
+  text-decoration: none;
+}
+
+.nav-link.disabled {
+  color: #6c757d;
+  pointer-events: none;
+  cursor: default;
+}
+
+.nav-tabs {
+  border-bottom: 1px solid #dee2e6;
+}
+
+.nav-tabs .nav-item {
+  margin-bottom: -1px;
+}
+
+.nav-tabs .nav-link {
+  border: 1px solid transparent;
+  border-top-left-radius: 0.25rem;
+  border-top-right-radius: 0.25rem;
+}
+
+.nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus {
+  border-color: #e9ecef #e9ecef #dee2e6;
+}
+
+.nav-tabs .nav-link.disabled {
+  color: #6c757d;
+  background-color: transparent;
+  border-color: transparent;
+}
+
+.nav-tabs .nav-link.active,
+.nav-tabs .nav-item.show .nav-link {
+  color: #495057;
+  background-color: #fff;
+  border-color: #dee2e6 #dee2e6 #fff;
+}
+
+.nav-tabs .dropdown-menu {
+  margin-top: -1px;
+  border-top-left-radius: 0;
+  border-top-right-radius: 0;
+}
+
+.nav-pills .nav-link {
+  border-radius: 0.25rem;
+}
+
+.nav-pills .nav-link.active,
+.nav-pills .show > .nav-link {
+  color: #fff;
+  background-color: #007bff;
+}
+
+.nav-fill .nav-item {
+  -ms-flex: 1 1 auto;
+  flex: 1 1 auto;
+  text-align: center;
+}
+
+.nav-justified .nav-item {
+  -ms-flex-preferred-size: 0;
+  flex-basis: 0;
+  -ms-flex-positive: 1;
+  flex-grow: 1;
+  text-align: center;
+}
+
+.tab-content > .tab-pane {
+  display: none;
+}
+
+.tab-content > .active {
+  display: block;
+}
+
+.navbar {
+  position: relative;
+  display: -ms-flexbox;
+  display: flex;
+  -ms-flex-wrap: wrap;
+  flex-wrap: wrap;
+  -ms-flex-align: center;
+  align-items: center;
+  -ms-flex-pack: justify;
+  justify-content: space-between;
+  padding: 0.5rem 1rem;
+}
+
+.navbar > .container,
+.navbar > .container-fluid {
+  display: -ms-flexbox;
+  display: flex;
+  -ms-flex-wrap: wrap;
+  flex-wrap: wrap;
+  -ms-flex-align: center;
+  align-items: center;
+  -ms-flex-pack: justify;
+  justify-content: space-between;
+}
+
+.navbar-brand {
+  display: inline-block;
+  padding-top: 0.3125rem;
+  padding-bottom: 0.3125rem;
+  margin-right: 1rem;
+  font-size: 1.25rem;
+  line-height: inherit;
+  white-space: nowrap;
+}
+
+.navbar-brand:hover, .navbar-brand:focus {
+  text-decoration: none;
+}
+
+.navbar-nav {
+  display: -ms-flexbox;
+  display: flex;
+  -ms-flex-direction: column;
+  flex-direction: column;
+  padding-left: 0;
+  margin-bottom: 0;
+  list-style: none;
+}
+
+.navbar-nav .nav-link {
+  padding-right: 0;
+  padding-left: 0;
+}
+
+.navbar-nav .dropdown-menu {
+  position: static;
+  float: none;
+}
+
+.navbar-text {
+  display: inline-block;
+  padding-top: 0.5rem;
+  padding-bottom: 0.5rem;
+}
+
+.navbar-collapse {
+  -ms-flex-preferred-size: 100%;
+  flex-basis: 100%;
+  -ms-flex-positive: 1;
+  flex-grow: 1;
+  -ms-flex-align: center;
+  align-items: center;
+}
+
+.navbar-toggler {
+  padding: 0.25rem 0.75rem;
+  font-size: 1.25rem;
+  line-height: 1;
+  background-color: transparent;
+  border: 1px solid transparent;
+  border-radius: 0.25rem;
+}
+
+.navbar-toggler:hover, .navbar-toggler:focus {
+  text-decoration: none;
+}
+
+.navbar-toggler-icon {
+  display: inline-block;
+  width: 1.5em;
+  height: 1.5em;
+  vertical-align: middle;
+  content: "";
+  background: no-repeat center center;
+  background-size: 100% 100%;
+}
+
+@media (max-width: 575.98px) {
+  .navbar-expand-sm > .container,
+  .navbar-expand-sm > .container-fluid {
+    padding-right: 0;
+    padding-left: 0;
+  }
+}
+
+@media (min-width: 576px) {
+  .navbar-expand-sm {
+    -ms-flex-flow: row nowrap;
+    flex-flow: row nowrap;
+    -ms-flex-pack: start;
+    justify-content: flex-start;
+  }
+  .navbar-expand-sm .navbar-nav {
+    -ms-flex-direction: row;
+    flex-direction: row;
+  }
+  .navbar-expand-sm .navbar-nav .dropdown-menu {
+    position: absolute;
+  }
+  .navbar-expand-sm .navbar-nav .nav-link {
+    padding-right: 0.5rem;
+    padding-left: 0.5rem;
+  }
+  .navbar-expand-sm > .container,
+  .navbar-expand-sm > .container-fluid {
+    -ms-flex-wrap: nowrap;
+    flex-wrap: nowrap;
+  }
+  .navbar-expand-sm .navbar-collapse {
+    display: -ms-flexbox !important;
+    display: flex !important;
+    -ms-flex-preferred-size: auto;
+    flex-basis: auto;
+  }
+  .navbar-expand-sm .navbar-toggler {
+    display: none;
+  }
+}
+
+@media (max-width: 767.98px) {
+  .navbar-expand-md > .container,
+  .navbar-expand-md > .container-fluid {
+    padding-right: 0;
+    padding-left: 0;
+  }
+}
+
+@media (min-width: 768px) {
+  .navbar-expand-md {
+    -ms-flex-flow: row nowrap;
+    flex-flow: row nowrap;
+    -ms-flex-pack: start;
+    justify-content: flex-start;
+  }
+  .navbar-expand-md .navbar-nav {
+    -ms-flex-direction: row;
+    flex-direction: row;
+  }
+  .navbar-expand-md .navbar-nav .dropdown-menu {
+    position: absolute;
+  }
+  .navbar-expand-md .navbar-nav .nav-link {
+    padding-right: 0.5rem;
+    padding-left: 0.5rem;
+  }
+  .navbar-expand-md > .container,
+  .navbar-expand-md > .container-fluid {
+    -ms-flex-wrap: nowrap;
+    flex-wrap: nowrap;
+  }
+  .navbar-expand-md .navbar-collapse {
+    display: -ms-flexbox !important;
+    display: flex !important;
+    -ms-flex-preferred-size: auto;
+    flex-basis: auto;
+  }
+  .navbar-expand-md .navbar-toggler {
+    display: none;
+  }
+}
+
+@media (max-width: 991.98px) {
+  .navbar-expand-lg > .container,
+  .navbar-expand-lg > .container-fluid {
+    padding-right: 0;
+    padding-left: 0;
+  }
+}
+
+@media (min-width: 992px) {
+  .navbar-expand-lg {
+    -ms-flex-flow: row nowrap;
+    flex-flow: row nowrap;
+    -ms-flex-pack: start;
+    justify-content: flex-start;
+  }
+  .navbar-expand-lg .navbar-nav {
+    -ms-flex-direction: row;
+    flex-direction: row;
+  }
+  .navbar-expand-lg .navbar-nav .dropdown-menu {
+    position: absolute;
+  }
+  .navbar-expand-lg .navbar-nav .nav-link {
+    padding-right: 0.5rem;
+    padding-left: 0.5rem;
+  }
+  .navbar-expand-lg > .container,
+  .navbar-expand-lg > .container-fluid {
+    -ms-flex-wrap: nowrap;
+    flex-wrap: nowrap;
+  }
+  .navbar-expand-lg .navbar-collapse {
+    display: -ms-flexbox !important;
+    display: flex !important;
+    -ms-flex-preferred-size: auto;
+    flex-basis: auto;
+  }
+  .navbar-expand-lg .navbar-toggler {
+    display: none;
+  }
+}
+
+@media (max-width: 1199.98px) {
+  .navbar-expand-xl > .container,
+  .navbar-expand-xl > .container-fluid {
+    padding-right: 0;
+    padding-left: 0;
+  }
+}
+
+@media (min-width: 1200px) {
+  .navbar-expand-xl {
+    -ms-flex-flow: row nowrap;
+    flex-flow: row nowrap;
+    -ms-flex-pack: start;
+    justify-content: flex-start;
+  }
+  .navbar-expand-xl .navbar-nav {
+    -ms-flex-direction: row;
+    flex-direction: row;
+  }
+  .navbar-expand-xl .navbar-nav .dropdown-menu {
+    position: absolute;
+  }
+  .navbar-expand-xl .navbar-nav .nav-link {
+    padding-right: 0.5rem;
+    padding-left: 0.5rem;
+  }
+  .navbar-expand-xl > .container,
+  .navbar-expand-xl > .container-fluid {
+    -ms-flex-wrap: nowrap;
+    flex-wrap: nowrap;
+  }
+  .navbar-expand-xl .navbar-collapse {
+    display: -ms-flexbox !important;
+    display: flex !important;
+    -ms-flex-preferred-size: auto;
+    flex-basis: auto;
+  }
+  .navbar-expand-xl .navbar-toggler {
+    display: none;
+  }
+}
+
+.navbar-expand {
+  -ms-flex-flow: row nowrap;
+  flex-flow: row nowrap;
+  -ms-flex-pack: start;
+  justify-content: flex-start;
+}
+
+.navbar-expand > .container,
+.navbar-expand > .container-fluid {
+  padding-right: 0;
+  padding-left: 0;
+}
+
+.navbar-expand .navbar-nav {
+  -ms-flex-direction: row;
+  flex-direction: row;
+}
+
+.navbar-expand .navbar-nav .dropdown-menu {
+  position: absolute;
+}
+
+.navbar-expand .navbar-nav .nav-link {
+  padding-right: 0.5rem;
+  padding-left: 0.5rem;
+}
+
+.navbar-expand > .container,
+.navbar-expand > .container-fluid {
+  -ms-flex-wrap: nowrap;
+  flex-wrap: nowrap;
+}
+
+.navbar-expand .navbar-collapse {
+  display: -ms-flexbox !important;
+  display: flex !important;
+  -ms-flex-preferred-size: auto;
+  flex-basis: auto;
+}
+
+.navbar-expand .navbar-toggler {
+  display: none;
+}
+
+.navbar-light .navbar-brand {
+  color: rgba(0, 0, 0, 0.9);
+}
+
+.navbar-light .navbar-brand:hover, .navbar-light .navbar-brand:focus {
+  color: rgba(0, 0, 0, 0.9);
+}
+
+.navbar-light .navbar-nav .nav-link {
+  color: rgba(0, 0, 0, 0.5);
+}
+
+.navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-link:focus {
+  color: rgba(0, 0, 0, 0.7);
+}
+
+.navbar-light .navbar-nav .nav-link.disabled {
+  color: rgba(0, 0, 0, 0.3);
+}
+
+.navbar-light .navbar-nav .show > .nav-link,
+.navbar-light .navbar-nav .active > .nav-link,
+.navbar-light .navbar-nav .nav-link.show,
+.navbar-light .navbar-nav .nav-link.active {
+  color: rgba(0, 0, 0, 0.9);
+}
+
+.navbar-light .navbar-toggler {
+  color: rgba(0, 0, 0, 0.5);
+  border-color: rgba(0, 0, 0, 0.1);
+}
+
+.navbar-light .navbar-toggler-icon {
+  background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba(0, 0, 0, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
+}
+
+.navbar-light .navbar-text {
+  color: rgba(0, 0, 0, 0.5);
+}
+
+.navbar-light .navbar-text a {
+  color: rgba(0, 0, 0, 0.9);
+}
+
+.navbar-light .navbar-text a:hover, .navbar-light .navbar-text a:focus {
+  color: rgba(0, 0, 0, 0.9);
+}
+
+.navbar-dark .navbar-brand {
+  color: #fff;
+}
+
+.navbar-dark .navbar-brand:hover, .navbar-dark .navbar-brand:focus {
+  color: #fff;
+}
+
+.navbar-dark .navbar-nav .nav-link {
+  color: rgba(255, 255, 255, 0.5);
+}
+
+.navbar-dark .navbar-nav .nav-link:hover, .navbar-dark .navbar-nav .nav-link:focus {
+  color: rgba(255, 255, 255, 0.75);
+}
+
+.navbar-dark .navbar-nav .nav-link.disabled {
+  color: rgba(255, 255, 255, 0.25);
+}
+
+.navbar-dark .navbar-nav .show > .nav-link,
+.navbar-dark .navbar-nav .active > .nav-link,
+.navbar-dark .navbar-nav .nav-link.show,
+.navbar-dark .navbar-nav .nav-link.active {
+  color: #fff;
+}
+
+.navbar-dark .navbar-toggler {
+  color: rgba(255, 255, 255, 0.5);
+  border-color: rgba(255, 255, 255, 0.1);
+}
+
+.navbar-dark .navbar-toggler-icon {
+  background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba(255, 255, 255, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
+}
+
+.navbar-dark .navbar-text {
+  color: rgba(255, 255, 255, 0.5);
+}
+
+.navbar-dark .navbar-text a {
+  color: #fff;
+}
+
+.navbar-dark .navbar-text a:hover, .navbar-dark .navbar-text a:focus {
+  color: #fff;
+}
+
+.card {
+  position: relative;
+  display: -ms-flexbox;
+  display: flex;
+  -ms-flex-direction: column;
+  flex-direction: column;
+  min-width: 0;
+  word-wrap: break-word;
+  background-color: #fff;
+  background-clip: border-box;
+  border: 1px solid rgba(0, 0, 0, 0.125);
+  border-radius: 0.25rem;
+}
+
+.card > hr {
+  margin-right: 0;
+  margin-left: 0;
+}
+
+.card > .list-group:first-child .list-group-item:first-child {
+  border-top-left-radius: 0.25rem;
+  border-top-right-radius: 0.25rem;
+}
+
+.card > .list-group:last-child .list-group-item:last-child {
+  border-bottom-right-radius: 0.25rem;
+  border-bottom-left-radius: 0.25rem;
+}
+
+.card-body {
+  -ms-flex: 1 1 auto;
+  flex: 1 1 auto;
+  padding: 1.25rem;
+}
+
+.card-title {
+  margin-bottom: 0.75rem;
+}
+
+.card-subtitle {
+  margin-top: -0.375rem;
+  margin-bottom: 0;
+}
+
+.card-text:last-child {
+  margin-bottom: 0;
+}
+
+.card-link:hover {
+  text-decoration: none;
+}
+
+.card-link + .card-link {
+  margin-left: 1.25rem;
+}
+
+.card-header {
+  padding: 0.75rem 1.25rem;
+  margin-bottom: 0;
+  background-color: rgba(0, 0, 0, 0.03);
+  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
+}
+
+.card-header:first-child {
+  border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0;
+}
+
+.card-header + .list-group .list-group-item:first-child {
+  border-top: 0;
+}
+
+.card-footer {
+  padding: 0.75rem 1.25rem;
+  background-color: rgba(0, 0, 0, 0.03);
+  border-top: 1px solid rgba(0, 0, 0, 0.125);
+}
+
+.card-footer:last-child {
+  border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px);
+}
+
+.card-header-tabs {
+  margin-right: -0.625rem;
+  margin-bottom: -0.75rem;
+  margin-left: -0.625rem;
+  border-bottom: 0;
+}
+
+.card-header-pills {
+  margin-right: -0.625rem;
+  margin-left: -0.625rem;
+}
+
+.card-img-overlay {
+  position: absolute;
+  top: 0;
+  right: 0;
+  bottom: 0;
+  left: 0;
+  padding: 1.25rem;
+}
+
+.card-img {
+  width: 100%;
+  border-radius: calc(0.25rem - 1px);
+}
+
+.card-img-top {
+  width: 100%;
+  border-top-left-radius: calc(0.25rem - 1px);
+  border-top-right-radius: calc(0.25rem - 1px);
+}
+
+.card-img-bottom {
+  width: 100%;
+  border-bottom-right-radius: calc(0.25rem - 1px);
+  border-bottom-left-radius: calc(0.25rem - 1px);
+}
+
+.card-deck {
+  display: -ms-flexbox;
+  display: flex;
+  -ms-flex-direction: column;
+  flex-direction: column;
+}
+
+.card-deck .card {
+  margin-bottom: 15px;
+}
+
+@media (min-width: 576px) {
+  .card-deck {
+    -ms-flex-flow: row wrap;
+    flex-flow: row wrap;
+    margin-right: -15px;
+    margin-left: -15px;
+  }
+  .card-deck .card {
+    display: -ms-flexbox;
+    display: flex;
+    -ms-flex: 1 0 0%;
+    flex: 1 0 0%;
+    -ms-flex-direction: column;
+    flex-direction: column;
+    margin-right: 15px;
+    margin-bottom: 0;
+    margin-left: 15px;
+  }
+}
+
+.card-group {
+  display: -ms-flexbox;
+  display: flex;
+  -ms-flex-direction: column;
+  flex-direction: column;
+}
+
+.card-group > .card {
+  margin-bottom: 15px;
+}
+
+@media (min-width: 576px) {
+  .card-group {
+    -ms-flex-flow: row wrap;
+    flex-flow: row wrap;
+  }
+  .card-group > .card {
+    -ms-flex: 1 0 0%;
+    flex: 1 0 0%;
+    margin-bottom: 0;
+  }
+  .card-group > .card + .card {
+    margin-left: 0;
+    border-left: 0;
+  }
+  .card-group > .card:not(:last-child) {
+    border-top-right-radius: 0;
+    border-bottom-right-radius: 0;
+  }
+  .card-group > .card:not(:last-child) .card-img-top,
+  .card-group > .card:not(:last-child) .card-header {
+    border-top-right-radius: 0;
+  }
+  .card-group > .card:not(:last-child) .card-img-bottom,
+  .card-group > .card:not(:last-child) .card-footer {
+    border-bottom-right-radius: 0;
+  }
+  .card-group > .card:not(:first-child) {
+    border-top-left-radius: 0;
+    border-bottom-left-radius: 0;
+  }
+  .card-group > .card:not(:first-child) .card-img-top,
+  .card-group > .card:not(:first-child) .card-header {
+    border-top-left-radius: 0;
+  }
+  .card-group > .card:not(:first-child) .card-img-bottom,
+  .card-group > .card:not(:first-child) .card-footer {
+    border-bottom-left-radius: 0;
+  }
+}
+
+.card-columns .card {
+  margin-bottom: 0.75rem;
+}
+
+@media (min-width: 576px) {
+  .card-columns {
+    -webkit-column-count: 3;
+    -moz-column-count: 3;
+    column-count: 3;
+    -webkit-column-gap: 1.25rem;
+    -moz-column-gap: 1.25rem;
+    column-gap: 1.25rem;
+    orphans: 1;
+    widows: 1;
+  }
+  .card-columns .card {
+    display: inline-block;
+    width: 100%;
+  }
+}
+
+.accordion > .card {
+  overflow: hidden;
+}
+
+.accordion > .card:not(:first-of-type) .card-header:first-child {
+  border-radius: 0;
+}
+
+.accordion > .card:not(:first-of-type):not(:last-of-type) {
+  border-bottom: 0;
+  border-radius: 0;
+}
+
+.accordion > .card:first-of-type {
+  border-bottom: 0;
+  border-bottom-right-radius: 0;
+  border-bottom-left-radius: 0;
+}
+
+.accordion > .card:last-of-type {
+  border-top-left-radius: 0;
+  border-top-right-radius: 0;
+}
+
+.accordion > .card .card-header {
+  margin-bottom: -1px;
+}
+
+.breadcrumb {
+  display: -ms-flexbox;
+  display: flex;
+  -ms-flex-wrap: wrap;
+  flex-wrap: wrap;
+  padding: 0.75rem 1rem;
+  margin-bottom: 1rem;
+  list-style: none;
+  background-color: #e9ecef;
+  border-radius: 0.25rem;
+}
+
+.breadcrumb-item + .breadcrumb-item {
+  padding-left: 0.5rem;
+}
+
+.breadcrumb-item + .breadcrumb-item::before {
+  display: inline-block;
+  padding-right: 0.5rem;
+  color: #6c757d;
+  content: "/";
+}
+
+.breadcrumb-item + .breadcrumb-item:hover::before {
+  text-decoration: underline;
+}
+
+.breadcrumb-item + .breadcrumb-item:hover::before {
+  text-decoration: none;
+}
+
+.breadcrumb-item.active {
+  color: #6c757d;
+}
+
+.pagination {
+  display: -ms-flexbox;
+  display: flex;
+  padding-left: 0;
+  list-style: none;
+  border-radius: 0.25rem;
+}
+
+.page-link {
+  position: relative;
+  display: block;
+  padding: 0.5rem 0.75rem;
+  margin-left: -1px;
+  line-height: 1.25;
+  color: #007bff;
+  background-color: #fff;
+  border: 1px solid #dee2e6;
+}
+
+.page-link:hover {
+  z-index: 2;
+  color: #0056b3;
+  text-decoration: none;
+  background-color: #e9ecef;
+  border-color: #dee2e6;
+}
+
+.page-link:focus {
+  z-index: 2;
+  outline: 0;
+  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
+}
+
+.page-item:first-child .page-link {
+  margin-left: 0;
+  border-top-left-radius: 0.25rem;
+  border-bottom-left-radius: 0.25rem;
+}
+
+.page-item:last-child .page-link {
+  border-top-right-radius: 0.25rem;
+  border-bottom-right-radius: 0.25rem;
+}
+
+.page-item.active .page-link {
+  z-index: 1;
+  color: #fff;
+  background-color: #007bff;
+  border-color: #007bff;
+}
+
+.page-item.disabled .page-link {
+  color: #6c757d;
+  pointer-events: none;
+  cursor: auto;
+  background-color: #fff;
+  border-color: #dee2e6;
+}
+
+.pagination-lg .page-link {
+  padding: 0.75rem 1.5rem;
+  font-size: 1.25rem;
+  line-height: 1.5;
+}
+
+.pagination-lg .page-item:first-child .page-link {
+  border-top-left-radius: 0.3rem;
+  border-bottom-left-radius: 0.3rem;
+}
+
+.pagination-lg .page-item:last-child .page-link {
+  border-top-right-radius: 0.3rem;
+  border-bottom-right-radius: 0.3rem;
+}
+
+.pagination-sm .page-link {
+  padding: 0.25rem 0.5rem;
+  font-size: 0.875rem;
+  line-height: 1.5;
+}
+
+.pagination-sm .page-item:first-child .page-link {
+  border-top-left-radius: 0.2rem;
+  border-bottom-left-radius: 0.2rem;
+}
+
+.pagination-sm .page-item:last-child .page-link {
+  border-top-right-radius: 0.2rem;
+  border-bottom-right-radius: 0.2rem;
+}
+
+.badge {
+  display: inline-block;
+  padding: 0.25em 0.4em;
+  font-size: 75%;
+  font-weight: 700;
+  line-height: 1;
+  text-align: center;
+  white-space: nowrap;
+  vertical-align: baseline;
+  border-radius: 0.25rem;
+  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
+}
+
+@media (prefers-reduced-motion: reduce) {
+  .badge {
+    transition: none;
+  }
+}
+
+a.badge:hover, a.badge:focus {
+  text-decoration: none;
+}
+
+.badge:empty {
+  display: none;
+}
+
+.btn .badge {
+  position: relative;
+  top: -1px;
+}
+
+.badge-pill {
+  padding-right: 0.6em;
+  padding-left: 0.6em;
+  border-radius: 10rem;
+}
+
+.badge-primary {
+  color: #fff;
+  background-color: #007bff;
+}
+
+a.badge-primary:hover, a.badge-primary:focus {
+  color: #fff;
+  background-color: #0062cc;
+}
+
+a.badge-primary:focus, a.badge-primary.focus {
+  outline: 0;
+  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
+}
+
+.badge-secondary {
+  color: #fff;
+  background-color: #6c757d;
+}
+
+a.badge-secondary:hover, a.badge-secondary:focus {
+  color: #fff;
+  background-color: #545b62;
+}
+
+a.badge-secondary:focus, a.badge-secondary.focus {
+  outline: 0;
+  box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
+}
+
+.badge-success {
+  color: #fff;
+  background-color: #28a745;
+}
+
+a.badge-success:hover, a.badge-success:focus {
+  color: #fff;
+  background-color: #1e7e34;
+}
+
+a.badge-success:focus, a.badge-success.focus {
+  outline: 0;
+  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
+}
+
+.badge-info {
+  color: #fff;
+  background-color: #17a2b8;
+}
+
+a.badge-info:hover, a.badge-info:focus {
+  color: #fff;
+  background-color: #117a8b;
+}
+
+a.badge-info:focus, a.badge-info.focus {
+  outline: 0;
+  box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
+}
+
+.badge-warning {
+  color: #212529;
+  background-color: #ffc107;
+}
+
+a.badge-warning:hover, a.badge-warning:focus {
+  color: #212529;
+  background-color: #d39e00;
+}
+
+a.badge-warning:focus, a.badge-warning.focus {
+  outline: 0;
+  box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
+}
+
+.badge-danger {
+  color: #fff;
+  background-color: #dc3545;
+}
+
+a.badge-danger:hover, a.badge-danger:focus {
+  color: #fff;
+  background-color: #bd2130;
+}
+
+a.badge-danger:focus, a.badge-danger.focus {
+  outline: 0;
+  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
+}
+
+.badge-light {
+  color: #212529;
+  background-color: #f8f9fa;
+}
+
+a.badge-light:hover, a.badge-light:focus {
+  color: #212529;
+  background-color: #dae0e5;
+}
+
+a.badge-light:focus, a.badge-light.focus {
+  outline: 0;
+  box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
+}
+
+.badge-dark {
+  color: #fff;
+  background-color: #343a40;
+}
+
+a.badge-dark:hover, a.badge-dark:focus {
+  color: #fff;
+  background-color: #1d2124;
+}
+
+a.badge-dark:focus, a.badge-dark.focus {
+  outline: 0;
+  box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
+}
+
+.jumbotron {
+  padding: 2rem 1rem;
+  margin-bottom: 2rem;
+  background-color: #e9ecef;
+  border-radius: 0.3rem;
+}
+
+@media (min-width: 576px) {
+  .jumbotron {
+    padding: 4rem 2rem;
+  }
+}
+
+.jumbotron-fluid {
+  padding-right: 0;
+  padding-left: 0;
+  border-radius: 0;
+}
+
+.alert {
+  position: relative;
+  padding: 0.75rem 1.25rem;
+  margin-bottom: 1rem;
+  border: 1px solid transparent;
+  border-radius: 0.25rem;
+}
+
+.alert-heading {
+  color: inherit;
+}
+
+.alert-link {
+  font-weight: 700;
+}
+
+.alert-dismissible {
+  padding-right: 4rem;
+}
+
+.alert-dismissible .close {
+  position: absolute;
+  top: 0;
+  right: 0;
+  padding: 0.75rem 1.25rem;
+  color: inherit;
+}
+
+.alert-primary {
+  color: #004085;
+  background-color: #cce5ff;
+  border-color: #b8daff;
+}
+
+.alert-primary hr {
+  border-top-color: #9fcdff;
+}
+
+.alert-primary .alert-link {
+  color: #002752;
+}
+
+.alert-secondary {
+  color: #383d41;
+  background-color: #e2e3e5;
+  border-color: #d6d8db;
+}
+
+.alert-secondary hr {
+  border-top-color: #c8cbcf;
+}
+
+.alert-secondary .alert-link {
+  color: #202326;
+}
+
+.alert-success {
+  color: #155724;
+  background-color: #d4edda;
+  border-color: #c3e6cb;
+}
+
+.alert-success hr {
+  border-top-color: #b1dfbb;
+}
+
+.alert-success .alert-link {
+  color: #0b2e13;
+}
+
+.alert-info {
+  color: #0c5460;
+  background-color: #d1ecf1;
+  border-color: #bee5eb;
+}
+
+.alert-info hr {
+  border-top-color: #abdde5;
+}
+
+.alert-info .alert-link {
+  color: #062c33;
+}
+
+.alert-warning {
+  color: #856404;
+  background-color: #fff3cd;
+  border-color: #ffeeba;
+}
+
+.alert-warning hr {
+  border-top-color: #ffe8a1;
+}
+
+.alert-warning .alert-link {
+  color: #533f03;
+}
+
+.alert-danger {
+  color: #721c24;
+  background-color: #f8d7da;
+  border-color: #f5c6cb;
+}
+
+.alert-danger hr {
+  border-top-color: #f1b0b7;
+}
+
+.alert-danger .alert-link {
+  color: #491217;
+}
+
+.alert-light {
+  color: #818182;
+  background-color: #fefefe;
+  border-color: #fdfdfe;
+}
+
+.alert-light hr {
+  border-top-color: #ececf6;
+}
+
+.alert-light .alert-link {
+  color: #686868;
+}
+
+.alert-dark {
+  color: #1b1e21;
+  background-color: #d6d8d9;
+  border-color: #c6c8ca;
+}
+
+.alert-dark hr {
+  border-top-color: #b9bbbe;
+}
+
+.alert-dark .alert-link {
+  color: #040505;
+}
+
+@-webkit-keyframes progress-bar-stripes {
+  from {
+    background-position: 1rem 0;
+  }
+  to {
+    background-position: 0 0;
+  }
+}
+
+@keyframes progress-bar-stripes {
+  from {
+    background-position: 1rem 0;
+  }
+  to {
+    background-position: 0 0;
+  }
+}
+
+.progress {
+  display: -ms-flexbox;
+  display: flex;
+  height: 1rem;
+  overflow: hidden;
+  font-size: 0.75rem;
+  background-color: #e9ecef;
+  border-radius: 0.25rem;
+}
+
+.progress-bar {
+  display: -ms-flexbox;
+  display: flex;
+  -ms-flex-direction: column;
+  flex-direction: column;
+  -ms-flex-pack: center;
+  justify-content: center;
+  color: #fff;
+  text-align: center;
+  white-space: nowrap;
+  background-color: #007bff;
+  transition: width 0.6s ease;
+}
+
+@media (prefers-reduced-motion: reduce) {
+  .progress-bar {
+    transition: none;
+  }
+}
+
+.progress-bar-striped {
+  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
+  background-size: 1rem 1rem;
+}
+
+.progress-bar-animated {
+  -webkit-animation: progress-bar-stripes 1s linear infinite;
+  animation: progress-bar-stripes 1s linear infinite;
+}
+
+@media (prefers-reduced-motion: reduce) {
+  .progress-bar-animated {
+    -webkit-animation: none;
+    animation: none;
+  }
+}
+
+.media {
+  display: -ms-flexbox;
+  display: flex;
+  -ms-flex-align: start;
+  align-items: flex-start;
+}
+
+.media-body {
+  -ms-flex: 1;
+  flex: 1;
+}
+
+.list-group {
+  display: -ms-flexbox;
+  display: flex;
+  -ms-flex-direction: column;
+  flex-direction: column;
+  padding-left: 0;
+  margin-bottom: 0;
+}
+
+.list-group-item-action {
+  width: 100%;
+  color: #495057;
+  text-align: inherit;
+}
+
+.list-group-item-action:hover, .list-group-item-action:focus {
+  z-index: 1;
+  color: #495057;
+  text-decoration: none;
+  background-color: #f8f9fa;
+}
+
+.list-group-item-action:active {
+  color: #212529;
+  background-color: #e9ecef;
+}
+
+.list-group-item {
+  position: relative;
+  display: block;
+  padding: 0.75rem 1.25rem;
+  margin-bottom: -1px;
+  background-color: #fff;
+  border: 1px solid rgba(0, 0, 0, 0.125);
+}
+
+.list-group-item:first-child {
+  border-top-left-radius: 0.25rem;
+  border-top-right-radius: 0.25rem;
+}
+
+.list-group-item:last-child {
+  margin-bottom: 0;
+  border-bottom-right-radius: 0.25rem;
+  border-bottom-left-radius: 0.25rem;
+}
+
+.list-group-item.disabled, .list-group-item:disabled {
+  color: #6c757d;
+  pointer-events: none;
+  background-color: #fff;
+}
+
+.list-group-item.active {
+  z-index: 2;
+  color: #fff;
+  background-color: #007bff;
+  border-color: #007bff;
+}
+
+.list-group-horizontal {
+  -ms-flex-direction: row;
+  flex-direction: row;
+}
+
+.list-group-horizontal .list-group-item {
+  margin-right: -1px;
+  margin-bottom: 0;
+}
+
+.list-group-horizontal .list-group-item:first-child {
+  border-top-left-radius: 0.25rem;
+  border-bottom-left-radius: 0.25rem;
+  border-top-right-radius: 0;
+}
+
+.list-group-horizontal .list-group-item:last-child {
+  margin-right: 0;
+  border-top-right-radius: 0.25rem;
+  border-bottom-right-radius: 0.25rem;
+  border-bottom-left-radius: 0;
+}
+
+@media (min-width: 576px) {
+  .list-group-horizontal-sm {
+    -ms-flex-direction: row;
+    flex-direction: row;
+  }
+  .list-group-horizontal-sm .list-group-item {
+    margin-right: -1px;
+    margin-bottom: 0;
+  }
+  .list-group-horizontal-sm .list-group-item:first-child {
+    border-top-left-radius: 0.25rem;
+    border-bottom-left-radius: 0.25rem;
+    border-top-right-radius: 0;
+  }
+  .list-group-horizontal-sm .list-group-item:last-child {
+    margin-right: 0;
+    border-top-right-radius: 0.25rem;
+    border-bottom-right-radius: 0.25rem;
+    border-bottom-left-radius: 0;
+  }
+}
+
+@media (min-width: 768px) {
+  .list-group-horizontal-md {
+    -ms-flex-direction: row;
+    flex-direction: row;
+  }
+  .list-group-horizontal-md .list-group-item {
+    margin-right: -1px;
+    margin-bottom: 0;
+  }
+  .list-group-horizontal-md .list-group-item:first-child {
+    border-top-left-radius: 0.25rem;
+    border-bottom-left-radius: 0.25rem;
+    border-top-right-radius: 0;
+  }
+  .list-group-horizontal-md .list-group-item:last-child {
+    margin-right: 0;
+    border-top-right-radius: 0.25rem;
+    border-bottom-right-radius: 0.25rem;
+    border-bottom-left-radius: 0;
+  }
+}
+
+@media (min-width: 992px) {
+  .list-group-horizontal-lg {
+    -ms-flex-direction: row;
+    flex-direction: row;
+  }
+  .list-group-horizontal-lg .list-group-item {
+    margin-right: -1px;
+    margin-bottom: 0;
+  }
+  .list-group-horizontal-lg .list-group-item:first-child {
+    border-top-left-radius: 0.25rem;
+    border-bottom-left-radius: 0.25rem;
+    border-top-right-radius: 0;
+  }
+  .list-group-horizontal-lg .list-group-item:last-child {
+    margin-right: 0;
+    border-top-right-radius: 0.25rem;
+    border-bottom-right-radius: 0.25rem;
+    border-bottom-left-radius: 0;
+  }
+}
+
+@media (min-width: 1200px) {
+  .list-group-horizontal-xl {
+    -ms-flex-direction: row;
+    flex-direction: row;
+  }
+  .list-group-horizontal-xl .list-group-item {
+    margin-right: -1px;
+    margin-bottom: 0;
+  }
+  .list-group-horizontal-xl .list-group-item:first-child {
+    border-top-left-radius: 0.25rem;
+    border-bottom-left-radius: 0.25rem;
+    border-top-right-radius: 0;
+  }
+  .list-group-horizontal-xl .list-group-item:last-child {
+    margin-right: 0;
+    border-top-right-radius: 0.25rem;
+    border-bottom-right-radius: 0.25rem;
+    border-bottom-left-radius: 0;
+  }
+}
+
+.list-group-flush .list-group-item {
+  border-right: 0;
+  border-left: 0;
+  border-radius: 0;
+}
+
+.list-group-flush .list-group-item:last-child {
+  margin-bottom: -1px;
+}
+
+.list-group-flush:first-child .list-group-item:first-child {
+  border-top: 0;
+}
+
+.list-group-flush:last-child .list-group-item:last-child {
+  margin-bottom: 0;
+  border-bottom: 0;
+}
+
+.list-group-item-primary {
+  color: #004085;
+  background-color: #b8daff;
+}
+
+.list-group-item-primary.list-group-item-action:hover, .list-group-item-primary.list-group-item-action:focus {
+  color: #004085;
+  background-color: #9fcdff;
+}
+
+.list-group-item-primary.list-group-item-action.active {
+  color: #fff;
+  background-color: #004085;
+  border-color: #004085;
+}
+
+.list-group-item-secondary {
+  color: #383d41;
+  background-color: #d6d8db;
+}
+
+.list-group-item-secondary.list-group-item-action:hover, .list-group-item-secondary.list-group-item-action:focus {
+  color: #383d41;
+  background-color: #c8cbcf;
+}
+
+.list-group-item-secondary.list-group-item-action.active {
+  color: #fff;
+  background-color: #383d41;
+  border-color: #383d41;
+}
+
+.list-group-item-success {
+  color: #155724;
+  background-color: #c3e6cb;
+}
+
+.list-group-item-success.list-group-item-action:hover, .list-group-item-success.list-group-item-action:focus {
+  color: #155724;
+  background-color: #b1dfbb;
+}
+
+.list-group-item-success.list-group-item-action.active {
+  color: #fff;
+  background-color: #155724;
+  border-color: #155724;
+}
+
+.list-group-item-info {
+  color: #0c5460;
+  background-color: #bee5eb;
+}
+
+.list-group-item-info.list-group-item-action:hover, .list-group-item-info.list-group-item-action:focus {
+  color: #0c5460;
+  background-color: #abdde5;
+}
+
+.list-group-item-info.list-group-item-action.active {
+  color: #fff;
+  background-color: #0c5460;
+  border-color: #0c5460;
+}
+
+.list-group-item-warning {
+  color: #856404;
+  background-color: #ffeeba;
+}
+
+.list-group-item-warning.list-group-item-action:hover, .list-group-item-warning.list-group-item-action:focus {
+  color: #856404;
+  background-color: #ffe8a1;
+}
+
+.list-group-item-warning.list-group-item-action.active {
+  color: #fff;
+  background-color: #856404;
+  border-color: #856404;
+}
+
+.list-group-item-danger {
+  color: #721c24;
+  background-color: #f5c6cb;
+}
+
+.list-group-item-danger.list-group-item-action:hover, .list-group-item-danger.list-group-item-action:focus {
+  color: #721c24;
+  background-color: #f1b0b7;
+}
+
+.list-group-item-danger.list-group-item-action.active {
+  color: #fff;
+  background-color: #721c24;
+  border-color: #721c24;
+}
+
+.list-group-item-light {
+  color: #818182;
+  background-color: #fdfdfe;
+}
+
+.list-group-item-light.list-group-item-action:hover, .list-group-item-light.list-group-item-action:focus {
+  color: #818182;
+  background-color: #ececf6;
+}
+
+.list-group-item-light.list-group-item-action.active {
+  color: #fff;
+  background-color: #818182;
+  border-color: #818182;
+}
+
+.list-group-item-dark {
+  color: #1b1e21;
+  background-color: #c6c8ca;
+}
+
+.list-group-item-dark.list-group-item-action:hover, .list-group-item-dark.list-group-item-action:focus {
+  color: #1b1e21;
+  background-color: #b9bbbe;
+}
+
+.list-group-item-dark.list-group-item-action.active {
+  color: #fff;
+  background-color: #1b1e21;
+  border-color: #1b1e21;
+}
+
+.close {
+  float: right;
+  font-size: 1.5rem;
+  font-weight: 700;
+  line-height: 1;
+  color: #000;
+  text-shadow: 0 1px 0 #fff;
+  opacity: .5;
+}
+
+.close:hover {
+  color: #000;
+  text-decoration: none;
+}
+
+.close:not(:disabled):not(.disabled):hover, .close:not(:disabled):not(.disabled):focus {
+  opacity: .75;
+}
+
+button.close {
+  padding: 0;
+  background-color: transparent;
+  border: 0;
+  -webkit-appearance: none;
+  -moz-appearance: none;
+  appearance: none;
+}
+
+a.close.disabled {
+  pointer-events: none;
+}
+
+.toast {
+  max-width: 350px;
+  overflow: hidden;
+  font-size: 0.875rem;
+  background-color: rgba(255, 255, 255, 0.85);
+  background-clip: padding-box;
+  border: 1px solid rgba(0, 0, 0, 0.1);
+  box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.1);
+  -webkit-backdrop-filter: blur(10px);
+  backdrop-filter: blur(10px);
+  opacity: 0;
+  border-radius: 0.25rem;
+}
+
+.toast:not(:last-child) {
+  margin-bottom: 0.75rem;
+}
+
+.toast.showing {
+  opacity: 1;
+}
+
+.toast.show {
+  display: block;
+  opacity: 1;
+}
+
+.toast.hide {
+  display: none;
+}
+
+.toast-header {
+  display: -ms-flexbox;
+  display: flex;
+  -ms-flex-align: center;
+  align-items: center;
+  padding: 0.25rem 0.75rem;
+  color: #6c757d;
+  background-color: rgba(255, 255, 255, 0.85);
+  background-clip: padding-box;
+  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
+}
+
+.toast-body {
+  padding: 0.75rem;
+}
+
+.modal-open {
+  overflow: hidden;
+}
+
+.modal-open .modal {
+  overflow-x: hidden;
+  overflow-y: auto;
+}
+
+.modal {
+  position: fixed;
+  top: 0;
+  left: 0;
+  z-index: 1050;
+  display: none;
+  width: 100%;
+  height: 100%;
+  overflow: hidden;
+  outline: 0;
+}
+
+.modal-dialog {
+  position: relative;
+  width: auto;
+  margin: 0.5rem;
+  pointer-events: none;
+}
+
+.modal.fade .modal-dialog {
+  transition: -webkit-transform 0.3s ease-out;
+  transition: transform 0.3s ease-out;
+  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
+  -webkit-transform: translate(0, -50px);
+  transform: translate(0, -50px);
+}
+
+@media (prefers-reduced-motion: reduce) {
+  .modal.fade .modal-dialog {
+    transition: none;
+  }
+}
+
+.modal.show .modal-dialog {
+  -webkit-transform: none;
+  transform: none;
+}
+
+.modal-dialog-scrollable {
+  display: -ms-flexbox;
+  display: flex;
+  max-height: calc(100% - 1rem);
+}
+
+.modal-dialog-scrollable .modal-content {
+  max-height: calc(100vh - 1rem);
+  overflow: hidden;
+}
+
+.modal-dialog-scrollable .modal-header,
+.modal-dialog-scrollable .modal-footer {
+  -ms-flex-negative: 0;
+  flex-shrink: 0;
+}
+
+.modal-dialog-scrollable .modal-body {
+  overflow-y: auto;
+}
+
+.modal-dialog-centered {
+  display: -ms-flexbox;
+  display: flex;
+  -ms-flex-align: center;
+  align-items: center;
+  min-height: calc(100% - 1rem);
+}
+
+.modal-dialog-centered::before {
+  display: block;
+  height: calc(100vh - 1rem);
+  content: "";
+}
+
+.modal-dialog-centered.modal-dialog-scrollable {
+  -ms-flex-direction: column;
+  flex-direction: column;
+  -ms-flex-pack: center;
+  justify-content: center;
+  height: 100%;
+}
+
+.modal-dialog-centered.modal-dialog-scrollable .modal-content {
+  max-height: none;
+}
+
+.modal-dialog-centered.modal-dialog-scrollable::before {
+  content: none;
+}
+
+.modal-content {
+  position: relative;
+  display: -ms-flexbox;
+  display: flex;
+  -ms-flex-direction: column;
+  flex-direction: column;
+  width: 100%;
+  pointer-events: auto;
+  background-color: #fff;
+  background-clip: padding-box;
+  border: 1px solid rgba(0, 0, 0, 0.2);
+  border-radius: 0.3rem;
+  outline: 0;
+}
+
+.modal-backdrop {
+  position: fixed;
+  top: 0;
+  left: 0;
+  z-index: 1040;
+  width: 100vw;
+  height: 100vh;
+  background-color: #000;
+}
+
+.modal-backdrop.fade {
+  opacity: 0;
+}
+
+.modal-backdrop.show {
+  opacity: 0.5;
+}
+
+.modal-header {
+  display: -ms-flexbox;
+  display: flex;
+  -ms-flex-align: start;
+  align-items: flex-start;
+  -ms-flex-pack: justify;
+  justify-content: space-between;
+  padding: 1rem 1rem;
+  border-bottom: 1px solid #dee2e6;
+  border-top-left-radius: 0.3rem;
+  border-top-right-radius: 0.3rem;
+}
+
+.modal-header .close {
+  padding: 1rem 1rem;
+  margin: -1rem -1rem -1rem auto;
+}
+
+.modal-title {
+  margin-bottom: 0;
+  line-height: 1.5;
+}
+
+.modal-body {
+  position: relative;
+  -ms-flex: 1 1 auto;
+  flex: 1 1 auto;
+  padding: 1rem;
+}
+
+.modal-footer {
+  display: -ms-flexbox;
+  display: flex;
+  -ms-flex-align: center;
+  align-items: center;
+  -ms-flex-pack: end;
+  justify-content: flex-end;
+  padding: 1rem;
+  border-top: 1px solid #dee2e6;
+  border-bottom-right-radius: 0.3rem;
+  border-bottom-left-radius: 0.3rem;
+}
+
+.modal-footer > :not(:first-child) {
+  margin-left: .25rem;
+}
+
+.modal-footer > :not(:last-child) {
+  margin-right: .25rem;
+}
+
+.modal-scrollbar-measure {
+  position: absolute;
+  top: -9999px;
+  width: 50px;
+  height: 50px;
+  overflow: scroll;
+}
+
+@media (min-width: 576px) {
+  .modal-dialog {
+    max-width: 500px;
+    margin: 1.75rem auto;
+  }
+  .modal-dialog-scrollable {
+    max-height: calc(100% - 3.5rem);
+  }
+  .modal-dialog-scrollable .modal-content {
+    max-height: calc(100vh - 3.5rem);
+  }
+  .modal-dialog-centered {
+    min-height: calc(100% - 3.5rem);
+  }
+  .modal-dialog-centered::before {
+    height: calc(100vh - 3.5rem);
+  }
+  .modal-sm {
+    max-width: 300px;
+  }
+}
+
+@media (min-width: 992px) {
+  .modal-lg,
+  .modal-xl {
+    max-width: 800px;
+  }
+}
+
+@media (min-width: 1200px) {
+  .modal-xl {
+    max-width: 1140px;
+  }
+}
+
+.tooltip {
+  position: absolute;
+  z-index: 1070;
+  display: block;
+  margin: 0;
+  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
+  font-style: normal;
+  font-weight: 400;
+  line-height: 1.5;
+  text-align: left;
+  text-align: start;
+  text-decoration: none;
+  text-shadow: none;
+  text-transform: none;
+  letter-spacing: normal;
+  word-break: normal;
+  word-spacing: normal;
+  white-space: normal;
+  line-break: auto;
+  font-size: 0.875rem;
+  word-wrap: break-word;
+  opacity: 0;
+}
+
+.tooltip.show {
+  opacity: 0.9;
+}
+
+.tooltip .arrow {
+  position: absolute;
+  display: block;
+  width: 0.8rem;
+  height: 0.4rem;
+}
+
+.tooltip .arrow::before {
+  position: absolute;
+  content: "";
+  border-color: transparent;
+  border-style: solid;
+}
+
+.bs-tooltip-top, .bs-tooltip-auto[x-placement^="top"] {
+  padding: 0.4rem 0;
+}
+
+.bs-tooltip-top .arrow, .bs-tooltip-auto[x-placement^="top"] .arrow {
+  bottom: 0;
+}
+
+.bs-tooltip-top .arrow::before, .bs-tooltip-auto[x-placement^="top"] .arrow::before {
+  top: 0;
+  border-width: 0.4rem 0.4rem 0;
+  border-top-color: #000;
+}
+
+.bs-tooltip-right, .bs-tooltip-auto[x-placement^="right"] {
+  padding: 0 0.4rem;
+}
+
+.bs-tooltip-right .arrow, .bs-tooltip-auto[x-placement^="right"] .arrow {
+  left: 0;
+  width: 0.4rem;
+  height: 0.8rem;
+}
+
+.bs-tooltip-right .arrow::before, .bs-tooltip-auto[x-placement^="right"] .arrow::before {
+  right: 0;
+  border-width: 0.4rem 0.4rem 0.4rem 0;
+  border-right-color: #000;
+}
+
+.bs-tooltip-bottom, .bs-tooltip-auto[x-placement^="bottom"] {
+  padding: 0.4rem 0;
+}
+
+.bs-tooltip-bottom .arrow, .bs-tooltip-auto[x-placement^="bottom"] .arrow {
+  top: 0;
+}
+
+.bs-tooltip-bottom .arrow::before, .bs-tooltip-auto[x-placement^="bottom"] .arrow::before {
+  bottom: 0;
+  border-width: 0 0.4rem 0.4rem;
+  border-bottom-color: #000;
+}
+
+.bs-tooltip-left, .bs-tooltip-auto[x-placement^="left"] {
+  padding: 0 0.4rem;
+}
+
+.bs-tooltip-left .arrow, .bs-tooltip-auto[x-placement^="left"] .arrow {
+  right: 0;
+  width: 0.4rem;
+  height: 0.8rem;
+}
+
+.bs-tooltip-left .arrow::before, .bs-tooltip-auto[x-placement^="left"] .arrow::before {
+  left: 0;
+  border-width: 0.4rem 0 0.4rem 0.4rem;
+  border-left-color: #000;
+}
+
+.tooltip-inner {
+  max-width: 200px;
+  padding: 0.25rem 0.5rem;
+  color: #fff;
+  text-align: center;
+  background-color: #000;
+  border-radius: 0.25rem;
+}
+
+.popover {
+  position: absolute;
+  top: 0;
+  left: 0;
+  z-index: 1060;
+  display: block;
+  max-width: 276px;
+  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
+  font-style: normal;
+  font-weight: 400;
+  line-height: 1.5;
+  text-align: left;
+  text-align: start;
+  text-decoration: none;
+  text-shadow: none;
+  text-transform: none;
+  letter-spacing: normal;
+  word-break: normal;
+  word-spacing: normal;
+  white-space: normal;
+  line-break: auto;
+  font-size: 0.875rem;
+  word-wrap: break-word;
+  background-color: #fff;
+  background-clip: padding-box;
+  border: 1px solid rgba(0, 0, 0, 0.2);
+  border-radius: 0.3rem;
+}
+
+.popover .arrow {
+  position: absolute;
+  display: block;
+  width: 1rem;
+  height: 0.5rem;
+  margin: 0 0.3rem;
+}
+
+.popover .arrow::before, .popover .arrow::after {
+  position: absolute;
+  display: block;
+  content: "";
+  border-color: transparent;
+  border-style: solid;
+}
+
+.bs-popover-top, .bs-popover-auto[x-placement^="top"] {
+  margin-bottom: 0.5rem;
+}
+
+.bs-popover-top > .arrow, .bs-popover-auto[x-placement^="top"] > .arrow {
+  bottom: calc((0.5rem + 1px) * -1);
+}
+
+.bs-popover-top > .arrow::before, .bs-popover-auto[x-placement^="top"] > .arrow::before {
+  bottom: 0;
+  border-width: 0.5rem 0.5rem 0;
+  border-top-color: rgba(0, 0, 0, 0.25);
+}
+
+.bs-popover-top > .arrow::after, .bs-popover-auto[x-placement^="top"] > .arrow::after {
+  bottom: 1px;
+  border-width: 0.5rem 0.5rem 0;
+  border-top-color: #fff;
+}
+
+.bs-popover-right, .bs-popover-auto[x-placement^="right"] {
+  margin-left: 0.5rem;
+}
+
+.bs-popover-right > .arrow, .bs-popover-auto[x-placement^="right"] > .arrow {
+  left: calc((0.5rem + 1px) * -1);
+  width: 0.5rem;
+  height: 1rem;
+  margin: 0.3rem 0;
+}
+
+.bs-popover-right > .arrow::before, .bs-popover-auto[x-placement^="right"] > .arrow::before {
+  left: 0;
+  border-width: 0.5rem 0.5rem 0.5rem 0;
+  border-right-color: rgba(0, 0, 0, 0.25);
+}
+
+.bs-popover-right > .arrow::after, .bs-popover-auto[x-placement^="right"] > .arrow::after {
+  left: 1px;
+  border-width: 0.5rem 0.5rem 0.5rem 0;
+  border-right-color: #fff;
+}
+
+.bs-popover-bottom, .bs-popover-auto[x-placement^="bottom"] {
+  margin-top: 0.5rem;
+}
+
+.bs-popover-bottom > .arrow, .bs-popover-auto[x-placement^="bottom"] > .arrow {
+  top: calc((0.5rem + 1px) * -1);
+}
+
+.bs-popover-bottom > .arrow::before, .bs-popover-auto[x-placement^="bottom"] > .arrow::before {
+  top: 0;
+  border-width: 0 0.5rem 0.5rem 0.5rem;
+  border-bottom-color: rgba(0, 0, 0, 0.25);
+}
+
+.bs-popover-bottom > .arrow::after, .bs-popover-auto[x-placement^="bottom"] > .arrow::after {
+  top: 1px;
+  border-width: 0 0.5rem 0.5rem 0.5rem;
+  border-bottom-color: #fff;
+}
+
+.bs-popover-bottom .popover-header::before, .bs-popover-auto[x-placement^="bottom"] .popover-header::before {
+  position: absolute;
+  top: 0;
+  left: 50%;
+  display: block;
+  width: 1rem;
+  margin-left: -0.5rem;
+  content: "";
+  border-bottom: 1px solid #f7f7f7;
+}
+
+.bs-popover-left, .bs-popover-auto[x-placement^="left"] {
+  margin-right: 0.5rem;
+}
+
+.bs-popover-left > .arrow, .bs-popover-auto[x-placement^="left"] > .arrow {
+  right: calc((0.5rem + 1px) * -1);
+  width: 0.5rem;
+  height: 1rem;
+  margin: 0.3rem 0;
+}
+
+.bs-popover-left > .arrow::before, .bs-popover-auto[x-placement^="left"] > .arrow::before {
+  right: 0;
+  border-width: 0.5rem 0 0.5rem 0.5rem;
+  border-left-color: rgba(0, 0, 0, 0.25);
+}
+
+.bs-popover-left > .arrow::after, .bs-popover-auto[x-placement^="left"] > .arrow::after {
+  right: 1px;
+  border-width: 0.5rem 0 0.5rem 0.5rem;
+  border-left-color: #fff;
+}
+
+.popover-header {
+  padding: 0.5rem 0.75rem;
+  margin-bottom: 0;
+  font-size: 1rem;
+  background-color: #f7f7f7;
+  border-bottom: 1px solid #ebebeb;
+  border-top-left-radius: calc(0.3rem - 1px);
+  border-top-right-radius: calc(0.3rem - 1px);
+}
+
+.popover-header:empty {
+  display: none;
+}
+
+.popover-body {
+  padding: 0.5rem 0.75rem;
+  color: #212529;
+}
+
+.carousel {
+  position: relative;
+}
+
+.carousel.pointer-event {
+  -ms-touch-action: pan-y;
+  touch-action: pan-y;
+}
+
+.carousel-inner {
+  position: relative;
+  width: 100%;
+  overflow: hidden;
+}
+
+.carousel-inner::after {
+  display: block;
+  clear: both;
+  content: "";
+}
+
+.carousel-item {
+  position: relative;
+  display: none;
+  float: left;
+  width: 100%;
+  margin-right: -100%;
+  -webkit-backface-visibility: hidden;
+  backface-visibility: hidden;
+  transition: -webkit-transform 0.6s ease-in-out;
+  transition: transform 0.6s ease-in-out;
+  transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out;
+}
+
+@media (prefers-reduced-motion: reduce) {
+  .carousel-item {
+    transition: none;
+  }
+}
+
+.carousel-item.active,
+.carousel-item-next,
+.carousel-item-prev {
+  display: block;
+}
+
+.carousel-item-next:not(.carousel-item-left),
+.active.carousel-item-right {
+  -webkit-transform: translateX(100%);
+  transform: translateX(100%);
+}
+
+.carousel-item-prev:not(.carousel-item-right),
+.active.carousel-item-left {
+  -webkit-transform: translateX(-100%);
+  transform: translateX(-100%);
+}
+
+.carousel-fade .carousel-item {
+  opacity: 0;
+  transition-property: opacity;
+  -webkit-transform: none;
+  transform: none;
+}
+
+.carousel-fade .carousel-item.active,
+.carousel-fade .carousel-item-next.carousel-item-left,
+.carousel-fade .carousel-item-prev.carousel-item-right {
+  z-index: 1;
+  opacity: 1;
+}
+
+.carousel-fade .active.carousel-item-left,
+.carousel-fade .active.carousel-item-right {
+  z-index: 0;
+  opacity: 0;
+  transition: 0s 0.6s opacity;
+}
+
+@media (prefers-reduced-motion: reduce) {
+  .carousel-fade .active.carousel-item-left,
+  .carousel-fade .active.carousel-item-right {
+    transition: none;
+  }
+}
+
+.carousel-control-prev,
+.carousel-control-next {
+  position: absolute;
+  top: 0;
+  bottom: 0;
+  z-index: 1;
+  display: -ms-flexbox;
+  display: flex;
+  -ms-flex-align: center;
+  align-items: center;
+  -ms-flex-pack: center;
+  justify-content: center;
+  width: 15%;
+  color: #fff;
+  text-align: center;
+  opacity: 0.5;
+  transition: opacity 0.15s ease;
+}
+
+@media (prefers-reduced-motion: reduce) {
+  .carousel-control-prev,
+  .carousel-control-next {
+    transition: none;
+  }
+}
+
+.carousel-control-prev:hover, .carousel-control-prev:focus,
+.carousel-control-next:hover,
+.carousel-control-next:focus {
+  color: #fff;
+  text-decoration: none;
+  outline: 0;
+  opacity: 0.9;
+}
+
+.carousel-control-prev {
+  left: 0;
+}
+
+.carousel-control-next {
+  right: 0;
+}
+
+.carousel-control-prev-icon,
+.carousel-control-next-icon {
+  display: inline-block;
+  width: 20px;
+  height: 20px;
+  background: no-repeat 50% / 100% 100%;
+}
+
+.carousel-control-prev-icon {
+  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3e%3c/svg%3e");
+}
+
+.carousel-control-next-icon {
+  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3e%3c/svg%3e");
+}
+
+.carousel-indicators {
+  position: absolute;
+  right: 0;
+  bottom: 0;
+  left: 0;
+  z-index: 15;
+  display: -ms-flexbox;
+  display: flex;
+  -ms-flex-pack: center;
+  justify-content: center;
+  padding-left: 0;
+  margin-right: 15%;
+  margin-left: 15%;
+  list-style: none;
+}
+
+.carousel-indicators li {
+  box-sizing: content-box;
+  -ms-flex: 0 1 auto;
+  flex: 0 1 auto;
+  width: 30px;
+  height: 3px;
+  margin-right: 3px;
+  margin-left: 3px;
+  text-indent: -999px;
+  cursor: pointer;
+  background-color: #fff;
+  background-clip: padding-box;
+  border-top: 10px solid transparent;
+  border-bottom: 10px solid transparent;
+  opacity: .5;
+  transition: opacity 0.6s ease;
+}
+
+@media (prefers-reduced-motion: reduce) {
+  .carousel-indicators li {
+    transition: none;
+  }
+}
+
+.carousel-indicators .active {
+  opacity: 1;
+}
+
+.carousel-caption {
+  position: absolute;
+  right: 15%;
+  bottom: 20px;
+  left: 15%;
+  z-index: 10;
+  padding-top: 20px;
+  padding-bottom: 20px;
+  color: #fff;
+  text-align: center;
+}
+
+@-webkit-keyframes spinner-border {
+  to {
+    -webkit-transform: rotate(360deg);
+    transform: rotate(360deg);
+  }
+}
+
+@keyframes spinner-border {
+  to {
+    -webkit-transform: rotate(360deg);
+    transform: rotate(360deg);
+  }
+}
+
+.spinner-border {
+  display: inline-block;
+  width: 2rem;
+  height: 2rem;
+  vertical-align: text-bottom;
+  border: 0.25em solid currentColor;
+  border-right-color: transparent;
+  border-radius: 50%;
+  -webkit-animation: spinner-border .75s linear infinite;
+  animation: spinner-border .75s linear infinite;
+}
+
+.spinner-border-sm {
+  width: 1rem;
+  height: 1rem;
+  border-width: 0.2em;
+}
+
+@-webkit-keyframes spinner-grow {
+  0% {
+    -webkit-transform: scale(0);
+    transform: scale(0);
+  }
+  50% {
+    opacity: 1;
+  }
+}
+
+@keyframes spinner-grow {
+  0% {
+    -webkit-transform: scale(0);
+    transform: scale(0);
+  }
+  50% {
+    opacity: 1;
+  }
+}
+
+.spinner-grow {
+  display: inline-block;
+  width: 2rem;
+  height: 2rem;
+  vertical-align: text-bottom;
+  background-color: currentColor;
+  border-radius: 50%;
+  opacity: 0;
+  -webkit-animation: spinner-grow .75s linear infinite;
+  animation: spinner-grow .75s linear infinite;
+}
+
+.spinner-grow-sm {
+  width: 1rem;
+  height: 1rem;
+}
+
+.align-baseline {
+  vertical-align: baseline !important;
+}
+
+.align-top {
+  vertical-align: top !important;
+}
+
+.align-middle {
+  vertical-align: middle !important;
+}
+
+.align-bottom {
+  vertical-align: bottom !important;
+}
+
+.align-text-bottom {
+  vertical-align: text-bottom !important;
+}
+
+.align-text-top {
+  vertical-align: text-top !important;
+}
+
+.bg-primary {
+  background-color: #007bff !important;
+}
+
+a.bg-primary:hover, a.bg-primary:focus,
+button.bg-primary:hover,
+button.bg-primary:focus {
+  background-color: #0062cc !important;
+}
+
+.bg-secondary {
+  background-color: #6c757d !important;
+}
+
+a.bg-secondary:hover, a.bg-secondary:focus,
+button.bg-secondary:hover,
+button.bg-secondary:focus {
+  background-color: #545b62 !important;
+}
+
+.bg-success {
+  background-color: #28a745 !important;
+}
+
+a.bg-success:hover, a.bg-success:focus,
+button.bg-success:hover,
+button.bg-success:focus {
+  background-color: #1e7e34 !important;
+}
+
+.bg-info {
+  background-color: #17a2b8 !important;
+}
+
+a.bg-info:hover, a.bg-info:focus,
+button.bg-info:hover,
+button.bg-info:focus {
+  background-color: #117a8b !important;
+}
+
+.bg-warning {
+  background-color: #ffc107 !important;
+}
+
+a.bg-warning:hover, a.bg-warning:focus,
+button.bg-warning:hover,
+button.bg-warning:focus {
+  background-color: #d39e00 !important;
+}
+
+.bg-danger {
+  background-color: #dc3545 !important;
+}
+
+a.bg-danger:hover, a.bg-danger:focus,
+button.bg-danger:hover,
+button.bg-danger:focus {
+  background-color: #bd2130 !important;
+}
+
+.bg-light {
+  background-color: #f8f9fa !important;
+}
+
+a.bg-light:hover, a.bg-light:focus,
+button.bg-light:hover,
+button.bg-light:focus {
+  background-color: #dae0e5 !important;
+}
+
+.bg-dark {
+  background-color: #343a40 !important;
+}
+
+a.bg-dark:hover, a.bg-dark:focus,
+button.bg-dark:hover,
+button.bg-dark:focus {
+  background-color: #1d2124 !important;
+}
+
+.bg-white {
+  background-color: #fff !important;
+}
+
+.bg-transparent {
+  background-color: transparent !important;
+}
+
+.border {
+  border: 1px solid #dee2e6 !important;
+}
+
+.border-top {
+  border-top: 1px solid #dee2e6 !important;
+}
+
+.border-right {
+  border-right: 1px solid #dee2e6 !important;
+}
+
+.border-bottom {
+  border-bottom: 1px solid #dee2e6 !important;
+}
+
+.border-left {
+  border-left: 1px solid #dee2e6 !important;
+}
+
+.border-0 {
+  border: 0 !important;
+}
+
+.border-top-0 {
+  border-top: 0 !important;
+}
+
+.border-right-0 {
+  border-right: 0 !important;
+}
+
+.border-bottom-0 {
+  border-bottom: 0 !important;
+}
+
+.border-left-0 {
+  border-left: 0 !important;
+}
+
+.border-primary {
+  border-color: #007bff !important;
+}
+
+.border-secondary {
+  border-color: #6c757d !important;
+}
+
+.border-success {
+  border-color: #28a745 !important;
+}
+
+.border-info {
+  border-color: #17a2b8 !important;
+}
+
+.border-warning {
+  border-color: #ffc107 !important;
+}
+
+.border-danger {
+  border-color: #dc3545 !important;
+}
+
+.border-light {
+  border-color: #f8f9fa !important;
+}
+
+.border-dark {
+  border-color: #343a40 !important;
+}
+
+.border-white {
+  border-color: #fff !important;
+}
+
+.rounded-sm {
+  border-radius: 0.2rem !important;
+}
+
+.rounded {
+  border-radius: 0.25rem !important;
+}
+
+.rounded-top {
+  border-top-left-radius: 0.25rem !important;
+  border-top-right-radius: 0.25rem !important;
+}
+
+.rounded-right {
+  border-top-right-radius: 0.25rem !important;
+  border-bottom-right-radius: 0.25rem !important;
+}
+
+.rounded-bottom {
+  border-bottom-right-radius: 0.25rem !important;
+  border-bottom-left-radius: 0.25rem !important;
+}
+
+.rounded-left {
+  border-top-left-radius: 0.25rem !important;
+  border-bottom-left-radius: 0.25rem !important;
+}
+
+.rounded-lg {
+  border-radius: 0.3rem !important;
+}
+
+.rounded-circle {
+  border-radius: 50% !important;
+}
+
+.rounded-pill {
+  border-radius: 50rem !important;
+}
+
+.rounded-0 {
+  border-radius: 0 !important;
+}
+
+.clearfix::after {
+  display: block;
+  clear: both;
+  content: "";
+}
+
+.d-none {
+  display: none !important;
+}
+
+.d-inline {
+  display: inline !important;
+}
+
+.d-inline-block {
+  display: inline-block !important;
+}
+
+.d-block {
+  display: block !important;
+}
+
+.d-table {
+  display: table !important;
+}
+
+.d-table-row {
+  display: table-row !important;
+}
+
+.d-table-cell {
+  display: table-cell !important;
+}
+
+.d-flex {
+  display: -ms-flexbox !important;
+  display: flex !important;
+}
+
+.d-inline-flex {
+  display: -ms-inline-flexbox !important;
+  display: inline-flex !important;
+}
+
+@media (min-width: 576px) {
+  .d-sm-none {
+    display: none !important;
+  }
+  .d-sm-inline {
+    display: inline !important;
+  }
+  .d-sm-inline-block {
+    display: inline-block !important;
+  }
+  .d-sm-block {
+    display: block !important;
+  }
+  .d-sm-table {
+    display: table !important;
+  }
+  .d-sm-table-row {
+    display: table-row !important;
+  }
+  .d-sm-table-cell {
+    display: table-cell !important;
+  }
+  .d-sm-flex {
+    display: -ms-flexbox !important;
+    display: flex !important;
+  }
+  .d-sm-inline-flex {
+    display: -ms-inline-flexbox !important;
+    display: inline-flex !important;
+  }
+}
+
+@media (min-width: 768px) {
+  .d-md-none {
+    display: none !important;
+  }
+  .d-md-inline {
+    display: inline !important;
+  }
+  .d-md-inline-block {
+    display: inline-block !important;
+  }
+  .d-md-block {
+    display: block !important;
+  }
+  .d-md-table {
+    display: table !important;
+  }
+  .d-md-table-row {
+    display: table-row !important;
+  }
+  .d-md-table-cell {
+    display: table-cell !important;
+  }
+  .d-md-flex {
+    display: -ms-flexbox !important;
+    display: flex !important;
+  }
+  .d-md-inline-flex {
+    display: -ms-inline-flexbox !important;
+    display: inline-flex !important;
+  }
+}
+
+@media (min-width: 992px) {
+  .d-lg-none {
+    display: none !important;
+  }
+  .d-lg-inline {
+    display: inline !important;
+  }
+  .d-lg-inline-block {
+    display: inline-block !important;
+  }
+  .d-lg-block {
+    display: block !important;
+  }
+  .d-lg-table {
+    display: table !important;
+  }
+  .d-lg-table-row {
+    display: table-row !important;
+  }
+  .d-lg-table-cell {
+    display: table-cell !important;
+  }
+  .d-lg-flex {
+    display: -ms-flexbox !important;
+    display: flex !important;
+  }
+  .d-lg-inline-flex {
+    display: -ms-inline-flexbox !important;
+    display: inline-flex !important;
+  }
+}
+
+@media (min-width: 1200px) {
+  .d-xl-none {
+    display: none !important;
+  }
+  .d-xl-inline {
+    display: inline !important;
+  }
+  .d-xl-inline-block {
+    display: inline-block !important;
+  }
+  .d-xl-block {
+    display: block !important;
+  }
+  .d-xl-table {
+    display: table !important;
+  }
+  .d-xl-table-row {
+    display: table-row !important;
+  }
+  .d-xl-table-cell {
+    display: table-cell !important;
+  }
+  .d-xl-flex {
+    display: -ms-flexbox !important;
+    display: flex !important;
+  }
+  .d-xl-inline-flex {
+    display: -ms-inline-flexbox !important;
+    display: inline-flex !important;
+  }
+}
+
+@media print {
+  .d-print-none {
+    display: none !important;
+  }
+  .d-print-inline {
+    display: inline !important;
+  }
+  .d-print-inline-block {
+    display: inline-block !important;
+  }
+  .d-print-block {
+    display: block !important;
+  }
+  .d-print-table {
+    display: table !important;
+  }
+  .d-print-table-row {
+    display: table-row !important;
+  }
+  .d-print-table-cell {
+    display: table-cell !important;
+  }
+  .d-print-flex {
+    display: -ms-flexbox !important;
+    display: flex !important;
+  }
+  .d-print-inline-flex {
+    display: -ms-inline-flexbox !important;
+    display: inline-flex !important;
+  }
+}
+
+.embed-responsive {
+  position: relative;
+  display: block;
+  width: 100%;
+  padding: 0;
+  overflow: hidden;
+}
+
+.embed-responsive::before {
+  display: block;
+  content: "";
+}
+
+.embed-responsive .embed-responsive-item,
+.embed-responsive iframe,
+.embed-responsive embed,
+.embed-responsive object,
+.embed-responsive video {
+  position: absolute;
+  top: 0;
+  bottom: 0;
+  left: 0;
+  width: 100%;
+  height: 100%;
+  border: 0;
+}
+
+.embed-responsive-21by9::before {
+  padding-top: 42.857143%;
+}
+
+.embed-responsive-16by9::before {
+  padding-top: 56.25%;
+}
+
+.embed-responsive-4by3::before {
+  padding-top: 75%;
+}
+
+.embed-responsive-1by1::before {
+  padding-top: 100%;
+}
+
+.flex-row {
+  -ms-flex-direction: row !important;
+  flex-direction: row !important;
+}
+
+.flex-column {
+  -ms-flex-direction: column !important;
+  flex-direction: column !important;
+}
+
+.flex-row-reverse {
+  -ms-flex-direction: row-reverse !important;
+  flex-direction: row-reverse !important;
+}
+
+.flex-column-reverse {
+  -ms-flex-direction: column-reverse !important;
+  flex-direction: column-reverse !important;
+}
+
+.flex-wrap {
+  -ms-flex-wrap: wrap !important;
+  flex-wrap: wrap !important;
+}
+
+.flex-nowrap {
+  -ms-flex-wrap: nowrap !important;
+  flex-wrap: nowrap !important;
+}
+
+.flex-wrap-reverse {
+  -ms-flex-wrap: wrap-reverse !important;
+  flex-wrap: wrap-reverse !important;
+}
+
+.flex-fill {
+  -ms-flex: 1 1 auto !important;
+  flex: 1 1 auto !important;
+}
+
+.flex-grow-0 {
+  -ms-flex-positive: 0 !important;
+  flex-grow: 0 !important;
+}
+
+.flex-grow-1 {
+  -ms-flex-positive: 1 !important;
+  flex-grow: 1 !important;
+}
+
+.flex-shrink-0 {
+  -ms-flex-negative: 0 !important;
+  flex-shrink: 0 !important;
+}
+
+.flex-shrink-1 {
+  -ms-flex-negative: 1 !important;
+  flex-shrink: 1 !important;
+}
+
+.justify-content-start {
+  -ms-flex-pack: start !important;
+  justify-content: flex-start !important;
+}
+
+.justify-content-end {
+  -ms-flex-pack: end !important;
+  justify-content: flex-end !important;
+}
+
+.justify-content-center {
+  -ms-flex-pack: center !important;
+  justify-content: center !important;
+}
+
+.justify-content-between {
+  -ms-flex-pack: justify !important;
+  justify-content: space-between !important;
+}
+
+.justify-content-around {
+  -ms-flex-pack: distribute !important;
+  justify-content: space-around !important;
+}
+
+.align-items-start {
+  -ms-flex-align: start !important;
+  align-items: flex-start !important;
+}
+
+.align-items-end {
+  -ms-flex-align: end !important;
+  align-items: flex-end !important;
+}
+
+.align-items-center {
+  -ms-flex-align: center !important;
+  align-items: center !important;
+}
+
+.align-items-baseline {
+  -ms-flex-align: baseline !important;
+  align-items: baseline !important;
+}
+
+.align-items-stretch {
+  -ms-flex-align: stretch !important;
+  align-items: stretch !important;
+}
+
+.align-content-start {
+  -ms-flex-line-pack: start !important;
+  align-content: flex-start !important;
+}
+
+.align-content-end {
+  -ms-flex-line-pack: end !important;
+  align-content: flex-end !important;
+}
+
+.align-content-center {
+  -ms-flex-line-pack: center !important;
+  align-content: center !important;
+}
+
+.align-content-between {
+  -ms-flex-line-pack: justify !important;
+  align-content: space-between !important;
+}
+
+.align-content-around {
+  -ms-flex-line-pack: distribute !important;
+  align-content: space-around !important;
+}
+
+.align-content-stretch {
+  -ms-flex-line-pack: stretch !important;
+  align-content: stretch !important;
+}
+
+.align-self-auto {
+  -ms-flex-item-align: auto !important;
+  align-self: auto !important;
+}
+
+.align-self-start {
+  -ms-flex-item-align: start !important;
+  align-self: flex-start !important;
+}
+
+.align-self-end {
+  -ms-flex-item-align: end !important;
+  align-self: flex-end !important;
+}
+
+.align-self-center {
+  -ms-flex-item-align: center !important;
+  align-self: center !important;
+}
+
+.align-self-baseline {
+  -ms-flex-item-align: baseline !important;
+  align-self: baseline !important;
+}
+
+.align-self-stretch {
+  -ms-flex-item-align: stretch !important;
+  align-self: stretch !important;
+}
+
+@media (min-width: 576px) {
+  .flex-sm-row {
+    -ms-flex-direction: row !important;
+    flex-direction: row !important;
+  }
+  .flex-sm-column {
+    -ms-flex-direction: column !important;
+    flex-direction: column !important;
+  }
+  .flex-sm-row-reverse {
+    -ms-flex-direction: row-reverse !important;
+    flex-direction: row-reverse !important;
+  }
+  .flex-sm-column-reverse {
+    -ms-flex-direction: column-reverse !important;
+    flex-direction: column-reverse !important;
+  }
+  .flex-sm-wrap {
+    -ms-flex-wrap: wrap !important;
+    flex-wrap: wrap !important;
+  }
+  .flex-sm-nowrap {
+    -ms-flex-wrap: nowrap !important;
+    flex-wrap: nowrap !important;
+  }
+  .flex-sm-wrap-reverse {
+    -ms-flex-wrap: wrap-reverse !important;
+    flex-wrap: wrap-reverse !important;
+  }
+  .flex-sm-fill {
+    -ms-flex: 1 1 auto !important;
+    flex: 1 1 auto !important;
+  }
+  .flex-sm-grow-0 {
+    -ms-flex-positive: 0 !important;
+    flex-grow: 0 !important;
+  }
+  .flex-sm-grow-1 {
+    -ms-flex-positive: 1 !important;
+    flex-grow: 1 !important;
+  }
+  .flex-sm-shrink-0 {
+    -ms-flex-negative: 0 !important;
+    flex-shrink: 0 !important;
+  }
+  .flex-sm-shrink-1 {
+    -ms-flex-negative: 1 !important;
+    flex-shrink: 1 !important;
+  }
+  .justify-content-sm-start {
+    -ms-flex-pack: start !important;
+    justify-content: flex-start !important;
+  }
+  .justify-content-sm-end {
+    -ms-flex-pack: end !important;
+    justify-content: flex-end !important;
+  }
+  .justify-content-sm-center {
+    -ms-flex-pack: center !important;
+    justify-content: center !important;
+  }
+  .justify-content-sm-between {
+    -ms-flex-pack: justify !important;
+    justify-content: space-between !important;
+  }
+  .justify-content-sm-around {
+    -ms-flex-pack: distribute !important;
+    justify-content: space-around !important;
+  }
+  .align-items-sm-start {
+    -ms-flex-align: start !important;
+    align-items: flex-start !important;
+  }
+  .align-items-sm-end {
+    -ms-flex-align: end !important;
+    align-items: flex-end !important;
+  }
+  .align-items-sm-center {
+    -ms-flex-align: center !important;
+    align-items: center !important;
+  }
+  .align-items-sm-baseline {
+    -ms-flex-align: baseline !important;
+    align-items: baseline !important;
+  }
+  .align-items-sm-stretch {
+    -ms-flex-align: stretch !important;
+    align-items: stretch !important;
+  }
+  .align-content-sm-start {
+    -ms-flex-line-pack: start !important;
+    align-content: flex-start !important;
+  }
+  .align-content-sm-end {
+    -ms-flex-line-pack: end !important;
+    align-content: flex-end !important;
+  }
+  .align-content-sm-center {
+    -ms-flex-line-pack: center !important;
+    align-content: center !important;
+  }
+  .align-content-sm-between {
+    -ms-flex-line-pack: justify !important;
+    align-content: space-between !important;
+  }
+  .align-content-sm-around {
+    -ms-flex-line-pack: distribute !important;
+    align-content: space-around !important;
+  }
+  .align-content-sm-stretch {
+    -ms-flex-line-pack: stretch !important;
+    align-content: stretch !important;
+  }
+  .align-self-sm-auto {
+    -ms-flex-item-align: auto !important;
+    align-self: auto !important;
+  }
+  .align-self-sm-start {
+    -ms-flex-item-align: start !important;
+    align-self: flex-start !important;
+  }
+  .align-self-sm-end {
+    -ms-flex-item-align: end !important;
+    align-self: flex-end !important;
+  }
+  .align-self-sm-center {
+    -ms-flex-item-align: center !important;
+    align-self: center !important;
+  }
+  .align-self-sm-baseline {
+    -ms-flex-item-align: baseline !important;
+    align-self: baseline !important;
+  }
+  .align-self-sm-stretch {
+    -ms-flex-item-align: stretch !important;
+    align-self: stretch !important;
+  }
+}
+
+@media (min-width: 768px) {
+  .flex-md-row {
+    -ms-flex-direction: row !important;
+    flex-direction: row !important;
+  }
+  .flex-md-column {
+    -ms-flex-direction: column !important;
+    flex-direction: column !important;
+  }
+  .flex-md-row-reverse {
+    -ms-flex-direction: row-reverse !important;
+    flex-direction: row-reverse !important;
+  }
+  .flex-md-column-reverse {
+    -ms-flex-direction: column-reverse !important;
+    flex-direction: column-reverse !important;
+  }
+  .flex-md-wrap {
+    -ms-flex-wrap: wrap !important;
+    flex-wrap: wrap !important;
+  }
+  .flex-md-nowrap {
+    -ms-flex-wrap: nowrap !important;
+    flex-wrap: nowrap !important;
+  }
+  .flex-md-wrap-reverse {
+    -ms-flex-wrap: wrap-reverse !important;
+    flex-wrap: wrap-reverse !important;
+  }
+  .flex-md-fill {
+    -ms-flex: 1 1 auto !important;
+    flex: 1 1 auto !important;
+  }
+  .flex-md-grow-0 {
+    -ms-flex-positive: 0 !important;
+    flex-grow: 0 !important;
+  }
+  .flex-md-grow-1 {
+    -ms-flex-positive: 1 !important;
+    flex-grow: 1 !important;
+  }
+  .flex-md-shrink-0 {
+    -ms-flex-negative: 0 !important;
+    flex-shrink: 0 !important;
+  }
+  .flex-md-shrink-1 {
+    -ms-flex-negative: 1 !important;
+    flex-shrink: 1 !important;
+  }
+  .justify-content-md-start {
+    -ms-flex-pack: start !important;
+    justify-content: flex-start !important;
+  }
+  .justify-content-md-end {
+    -ms-flex-pack: end !important;
+    justify-content: flex-end !important;
+  }
+  .justify-content-md-center {
+    -ms-flex-pack: center !important;
+    justify-content: center !important;
+  }
+  .justify-content-md-between {
+    -ms-flex-pack: justify !important;
+    justify-content: space-between !important;
+  }
+  .justify-content-md-around {
+    -ms-flex-pack: distribute !important;
+    justify-content: space-around !important;
+  }
+  .align-items-md-start {
+    -ms-flex-align: start !important;
+    align-items: flex-start !important;
+  }
+  .align-items-md-end {
+    -ms-flex-align: end !important;
+    align-items: flex-end !important;
+  }
+  .align-items-md-center {
+    -ms-flex-align: center !important;
+    align-items: center !important;
+  }
+  .align-items-md-baseline {
+    -ms-flex-align: baseline !important;
+    align-items: baseline !important;
+  }
+  .align-items-md-stretch {
+    -ms-flex-align: stretch !important;
+    align-items: stretch !important;
+  }
+  .align-content-md-start {
+    -ms-flex-line-pack: start !important;
+    align-content: flex-start !important;
+  }
+  .align-content-md-end {
+    -ms-flex-line-pack: end !important;
+    align-content: flex-end !important;
+  }
+  .align-content-md-center {
+    -ms-flex-line-pack: center !important;
+    align-content: center !important;
+  }
+  .align-content-md-between {
+    -ms-flex-line-pack: justify !important;
+    align-content: space-between !important;
+  }
+  .align-content-md-around {
+    -ms-flex-line-pack: distribute !important;
+    align-content: space-around !important;
+  }
+  .align-content-md-stretch {
+    -ms-flex-line-pack: stretch !important;
+    align-content: stretch !important;
+  }
+  .align-self-md-auto {
+    -ms-flex-item-align: auto !important;
+    align-self: auto !important;
+  }
+  .align-self-md-start {
+    -ms-flex-item-align: start !important;
+    align-self: flex-start !important;
+  }
+  .align-self-md-end {
+    -ms-flex-item-align: end !important;
+    align-self: flex-end !important;
+  }
+  .align-self-md-center {
+    -ms-flex-item-align: center !important;
+    align-self: center !important;
+  }
+  .align-self-md-baseline {
+    -ms-flex-item-align: baseline !important;
+    align-self: baseline !important;
+  }
+  .align-self-md-stretch {
+    -ms-flex-item-align: stretch !important;
+    align-self: stretch !important;
+  }
+}
+
+@media (min-width: 992px) {
+  .flex-lg-row {
+    -ms-flex-direction: row !important;
+    flex-direction: row !important;
+  }
+  .flex-lg-column {
+    -ms-flex-direction: column !important;
+    flex-direction: column !important;
+  }
+  .flex-lg-row-reverse {
+    -ms-flex-direction: row-reverse !important;
+    flex-direction: row-reverse !important;
+  }
+  .flex-lg-column-reverse {
+    -ms-flex-direction: column-reverse !important;
+    flex-direction: column-reverse !important;
+  }
+  .flex-lg-wrap {
+    -ms-flex-wrap: wrap !important;
+    flex-wrap: wrap !important;
+  }
+  .flex-lg-nowrap {
+    -ms-flex-wrap: nowrap !important;
+    flex-wrap: nowrap !important;
+  }
+  .flex-lg-wrap-reverse {
+    -ms-flex-wrap: wrap-reverse !important;
+    flex-wrap: wrap-reverse !important;
+  }
+  .flex-lg-fill {
+    -ms-flex: 1 1 auto !important;
+    flex: 1 1 auto !important;
+  }
+  .flex-lg-grow-0 {
+    -ms-flex-positive: 0 !important;
+    flex-grow: 0 !important;
+  }
+  .flex-lg-grow-1 {
+    -ms-flex-positive: 1 !important;
+    flex-grow: 1 !important;
+  }
+  .flex-lg-shrink-0 {
+    -ms-flex-negative: 0 !important;
+    flex-shrink: 0 !important;
+  }
+  .flex-lg-shrink-1 {
+    -ms-flex-negative: 1 !important;
+    flex-shrink: 1 !important;
+  }
+  .justify-content-lg-start {
+    -ms-flex-pack: start !important;
+    justify-content: flex-start !important;
+  }
+  .justify-content-lg-end {
+    -ms-flex-pack: end !important;
+    justify-content: flex-end !important;
+  }
+  .justify-content-lg-center {
+    -ms-flex-pack: center !important;
+    justify-content: center !important;
+  }
+  .justify-content-lg-between {
+    -ms-flex-pack: justify !important;
+    justify-content: space-between !important;
+  }
+  .justify-content-lg-around {
+    -ms-flex-pack: distribute !important;
+    justify-content: space-around !important;
+  }
+  .align-items-lg-start {
+    -ms-flex-align: start !important;
+    align-items: flex-start !important;
+  }
+  .align-items-lg-end {
+    -ms-flex-align: end !important;
+    align-items: flex-end !important;
+  }
+  .align-items-lg-center {
+    -ms-flex-align: center !important;
+    align-items: center !important;
+  }
+  .align-items-lg-baseline {
+    -ms-flex-align: baseline !important;
+    align-items: baseline !important;
+  }
+  .align-items-lg-stretch {
+    -ms-flex-align: stretch !important;
+    align-items: stretch !important;
+  }
+  .align-content-lg-start {
+    -ms-flex-line-pack: start !important;
+    align-content: flex-start !important;
+  }
+  .align-content-lg-end {
+    -ms-flex-line-pack: end !important;
+    align-content: flex-end !important;
+  }
+  .align-content-lg-center {
+    -ms-flex-line-pack: center !important;
+    align-content: center !important;
+  }
+  .align-content-lg-between {
+    -ms-flex-line-pack: justify !important;
+    align-content: space-between !important;
+  }
+  .align-content-lg-around {
+    -ms-flex-line-pack: distribute !important;
+    align-content: space-around !important;
+  }
+  .align-content-lg-stretch {
+    -ms-flex-line-pack: stretch !important;
+    align-content: stretch !important;
+  }
+  .align-self-lg-auto {
+    -ms-flex-item-align: auto !important;
+    align-self: auto !important;
+  }
+  .align-self-lg-start {
+    -ms-flex-item-align: start !important;
+    align-self: flex-start !important;
+  }
+  .align-self-lg-end {
+    -ms-flex-item-align: end !important;
+    align-self: flex-end !important;
+  }
+  .align-self-lg-center {
+    -ms-flex-item-align: center !important;
+    align-self: center !important;
+  }
+  .align-self-lg-baseline {
+    -ms-flex-item-align: baseline !important;
+    align-self: baseline !important;
+  }
+  .align-self-lg-stretch {
+    -ms-flex-item-align: stretch !important;
+    align-self: stretch !important;
+  }
+}
+
+@media (min-width: 1200px) {
+  .flex-xl-row {
+    -ms-flex-direction: row !important;
+    flex-direction: row !important;
+  }
+  .flex-xl-column {
+    -ms-flex-direction: column !important;
+    flex-direction: column !important;
+  }
+  .flex-xl-row-reverse {
+    -ms-flex-direction: row-reverse !important;
+    flex-direction: row-reverse !important;
+  }
+  .flex-xl-column-reverse {
+    -ms-flex-direction: column-reverse !important;
+    flex-direction: column-reverse !important;
+  }
+  .flex-xl-wrap {
+    -ms-flex-wrap: wrap !important;
+    flex-wrap: wrap !important;
+  }
+  .flex-xl-nowrap {
+    -ms-flex-wrap: nowrap !important;
+    flex-wrap: nowrap !important;
+  }
+  .flex-xl-wrap-reverse {
+    -ms-flex-wrap: wrap-reverse !important;
+    flex-wrap: wrap-reverse !important;
+  }
+  .flex-xl-fill {
+    -ms-flex: 1 1 auto !important;
+    flex: 1 1 auto !important;
+  }
+  .flex-xl-grow-0 {
+    -ms-flex-positive: 0 !important;
+    flex-grow: 0 !important;
+  }
+  .flex-xl-grow-1 {
+    -ms-flex-positive: 1 !important;
+    flex-grow: 1 !important;
+  }
+  .flex-xl-shrink-0 {
+    -ms-flex-negative: 0 !important;
+    flex-shrink: 0 !important;
+  }
+  .flex-xl-shrink-1 {
+    -ms-flex-negative: 1 !important;
+    flex-shrink: 1 !important;
+  }
+  .justify-content-xl-start {
+    -ms-flex-pack: start !important;
+    justify-content: flex-start !important;
+  }
+  .justify-content-xl-end {
+    -ms-flex-pack: end !important;
+    justify-content: flex-end !important;
+  }
+  .justify-content-xl-center {
+    -ms-flex-pack: center !important;
+    justify-content: center !important;
+  }
+  .justify-content-xl-between {
+    -ms-flex-pack: justify !important;
+    justify-content: space-between !important;
+  }
+  .justify-content-xl-around {
+    -ms-flex-pack: distribute !important;
+    justify-content: space-around !important;
+  }
+  .align-items-xl-start {
+    -ms-flex-align: start !important;
+    align-items: flex-start !important;
+  }
+  .align-items-xl-end {
+    -ms-flex-align: end !important;
+    align-items: flex-end !important;
+  }
+  .align-items-xl-center {
+    -ms-flex-align: center !important;
+    align-items: center !important;
+  }
+  .align-items-xl-baseline {
+    -ms-flex-align: baseline !important;
+    align-items: baseline !important;
+  }
+  .align-items-xl-stretch {
+    -ms-flex-align: stretch !important;
+    align-items: stretch !important;
+  }
+  .align-content-xl-start {
+    -ms-flex-line-pack: start !important;
+    align-content: flex-start !important;
+  }
+  .align-content-xl-end {
+    -ms-flex-line-pack: end !important;
+    align-content: flex-end !important;
+  }
+  .align-content-xl-center {
+    -ms-flex-line-pack: center !important;
+    align-content: center !important;
+  }
+  .align-content-xl-between {
+    -ms-flex-line-pack: justify !important;
+    align-content: space-between !important;
+  }
+  .align-content-xl-around {
+    -ms-flex-line-pack: distribute !important;
+    align-content: space-around !important;
+  }
+  .align-content-xl-stretch {
+    -ms-flex-line-pack: stretch !important;
+    align-content: stretch !important;
+  }
+  .align-self-xl-auto {
+    -ms-flex-item-align: auto !important;
+    align-self: auto !important;
+  }
+  .align-self-xl-start {
+    -ms-flex-item-align: start !important;
+    align-self: flex-start !important;
+  }
+  .align-self-xl-end {
+    -ms-flex-item-align: end !important;
+    align-self: flex-end !important;
+  }
+  .align-self-xl-center {
+    -ms-flex-item-align: center !important;
+    align-self: center !important;
+  }
+  .align-self-xl-baseline {
+    -ms-flex-item-align: baseline !important;
+    align-self: baseline !important;
+  }
+  .align-self-xl-stretch {
+    -ms-flex-item-align: stretch !important;
+    align-self: stretch !important;
+  }
+}
+
+.float-left {
+  float: left !important;
+}
+
+.float-right {
+  float: right !important;
+}
+
+.float-none {
+  float: none !important;
+}
+
+@media (min-width: 576px) {
+  .float-sm-left {
+    float: left !important;
+  }
+  .float-sm-right {
+    float: right !important;
+  }
+  .float-sm-none {
+    float: none !important;
+  }
+}
+
+@media (min-width: 768px) {
+  .float-md-left {
+    float: left !important;
+  }
+  .float-md-right {
+    float: right !important;
+  }
+  .float-md-none {
+    float: none !important;
+  }
+}
+
+@media (min-width: 992px) {
+  .float-lg-left {
+    float: left !important;
+  }
+  .float-lg-right {
+    float: right !important;
+  }
+  .float-lg-none {
+    float: none !important;
+  }
+}
+
+@media (min-width: 1200px) {
+  .float-xl-left {
+    float: left !important;
+  }
+  .float-xl-right {
+    float: right !important;
+  }
+  .float-xl-none {
+    float: none !important;
+  }
+}
+
+.overflow-auto {
+  overflow: auto !important;
+}
+
+.overflow-hidden {
+  overflow: hidden !important;
+}
+
+.position-static {
+  position: static !important;
+}
+
+.position-relative {
+  position: relative !important;
+}
+
+.position-absolute {
+  position: absolute !important;
+}
+
+.position-fixed {
+  position: fixed !important;
+}
+
+.position-sticky {
+  position: -webkit-sticky !important;
+  position: sticky !important;
+}
+
+.fixed-top {
+  position: fixed;
+  top: 0;
+  right: 0;
+  left: 0;
+  z-index: 1030;
+}
+
+.fixed-bottom {
+  position: fixed;
+  right: 0;
+  bottom: 0;
+  left: 0;
+  z-index: 1030;
+}
+
+@supports ((position: -webkit-sticky) or (position: sticky)) {
+  .sticky-top {
+    position: -webkit-sticky;
+    position: sticky;
+    top: 0;
+    z-index: 1020;
+  }
+}
+
+.sr-only {
+  position: absolute;
+  width: 1px;
+  height: 1px;
+  padding: 0;
+  overflow: hidden;
+  clip: rect(0, 0, 0, 0);
+  white-space: nowrap;
+  border: 0;
+}
+
+.sr-only-focusable:active, .sr-only-focusable:focus {
+  position: static;
+  width: auto;
+  height: auto;
+  overflow: visible;
+  clip: auto;
+  white-space: normal;
+}
+
+.shadow-sm {
+  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
+}
+
+.shadow {
+  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
+}
+
+.shadow-lg {
+  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
+}
+
+.shadow-none {
+  box-shadow: none !important;
+}
+
+.w-25 {
+  width: 25% !important;
+}
+
+.w-50 {
+  width: 50% !important;
+}
+
+.w-75 {
+  width: 75% !important;
+}
+
+.w-100 {
+  width: 100% !important;
+}
+
+.w-auto {
+  width: auto !important;
+}
+
+.h-25 {
+  height: 25% !important;
+}
+
+.h-50 {
+  height: 50% !important;
+}
+
+.h-75 {
+  height: 75% !important;
+}
+
+.h-100 {
+  height: 100% !important;
+}
+
+.h-auto {
+  height: auto !important;
+}
+
+.mw-100 {
+  max-width: 100% !important;
+}
+
+.mh-100 {
+  max-height: 100% !important;
+}
+
+.min-vw-100 {
+  min-width: 100vw !important;
+}
+
+.min-vh-100 {
+  min-height: 100vh !important;
+}
+
+.vw-100 {
+  width: 100vw !important;
+}
+
+.vh-100 {
+  height: 100vh !important;
+}
+
+.stretched-link::after {
+  position: absolute;
+  top: 0;
+  right: 0;
+  bottom: 0;
+  left: 0;
+  z-index: 1;
+  pointer-events: auto;
+  content: "";
+  background-color: rgba(0, 0, 0, 0);
+}
+
+.m-0 {
+  margin: 0 !important;
+}
+
+.mt-0,
+.my-0 {
+  margin-top: 0 !important;
+}
+
+.mr-0,
+.mx-0 {
+  margin-right: 0 !important;
+}
+
+.mb-0,
+.my-0 {
+  margin-bottom: 0 !important;
+}
+
+.ml-0,
+.mx-0 {
+  margin-left: 0 !important;
+}
+
+.m-1 {
+  margin: 0.25rem !important;
+}
+
+.mt-1,
+.my-1 {
+  margin-top: 0.25rem !important;
+}
+
+.mr-1,
+.mx-1 {
+  margin-right: 0.25rem !important;
+}
+
+.mb-1,
+.my-1 {
+  margin-bottom: 0.25rem !important;
+}
+
+.ml-1,
+.mx-1 {
+  margin-left: 0.25rem !important;
+}
+
+.m-2 {
+  margin: 0.5rem !important;
+}
+
+.mt-2,
+.my-2 {
+  margin-top: 0.5rem !important;
+}
+
+.mr-2,
+.mx-2 {
+  margin-right: 0.5rem !important;
+}
+
+.mb-2,
+.my-2 {
+  margin-bottom: 0.5rem !important;
+}
+
+.ml-2,
+.mx-2 {
+  margin-left: 0.5rem !important;
+}
+
+.m-3 {
+  margin: 1rem !important;
+}
+
+.mt-3,
+.my-3 {
+  margin-top: 1rem !important;
+}
+
+.mr-3,
+.mx-3 {
+  margin-right: 1rem !important;
+}
+
+.mb-3,
+.my-3 {
+  margin-bottom: 1rem !important;
+}
+
+.ml-3,
+.mx-3 {
+  margin-left: 1rem !important;
+}
+
+.m-4 {
+  margin: 1.5rem !important;
+}
+
+.mt-4,
+.my-4 {
+  margin-top: 1.5rem !important;
+}
+
+.mr-4,
+.mx-4 {
+  margin-right: 1.5rem !important;
+}
+
+.mb-4,
+.my-4 {
+  margin-bottom: 1.5rem !important;
+}
+
+.ml-4,
+.mx-4 {
+  margin-left: 1.5rem !important;
+}
+
+.m-5 {
+  margin: 3rem !important;
+}
+
+.mt-5,
+.my-5 {
+  margin-top: 3rem !important;
+}
+
+.mr-5,
+.mx-5 {
+  margin-right: 3rem !important;
+}
+
+.mb-5,
+.my-5 {
+  margin-bottom: 3rem !important;
+}
+
+.ml-5,
+.mx-5 {
+  margin-left: 3rem !important;
+}
+
+.p-0 {
+  padding: 0 !important;
+}
+
+.pt-0,
+.py-0 {
+  padding-top: 0 !important;
+}
+
+.pr-0,
+.px-0 {
+  padding-right: 0 !important;
+}
+
+.pb-0,
+.py-0 {
+  padding-bottom: 0 !important;
+}
+
+.pl-0,
+.px-0 {
+  padding-left: 0 !important;
+}
+
+.p-1 {
+  padding: 0.25rem !important;
+}
+
+.pt-1,
+.py-1 {
+  padding-top: 0.25rem !important;
+}
+
+.pr-1,
+.px-1 {
+  padding-right: 0.25rem !important;
+}
+
+.pb-1,
+.py-1 {
+  padding-bottom: 0.25rem !important;
+}
+
+.pl-1,
+.px-1 {
+  padding-left: 0.25rem !important;
+}
+
+.p-2 {
+  padding: 0.5rem !important;
+}
+
+.pt-2,
+.py-2 {
+  padding-top: 0.5rem !important;
+}
+
+.pr-2,
+.px-2 {
+  padding-right: 0.5rem !important;
+}
+
+.pb-2,
+.py-2 {
+  padding-bottom: 0.5rem !important;
+}
+
+.pl-2,
+.px-2 {
+  padding-left: 0.5rem !important;
+}
+
+.p-3 {
+  padding: 1rem !important;
+}
+
+.pt-3,
+.py-3 {
+  padding-top: 1rem !important;
+}
+
+.pr-3,
+.px-3 {
+  padding-right: 1rem !important;
+}
+
+.pb-3,
+.py-3 {
+  padding-bottom: 1rem !important;
+}
+
+.pl-3,
+.px-3 {
+  padding-left: 1rem !important;
+}
+
+.p-4 {
+  padding: 1.5rem !important;
+}
+
+.pt-4,
+.py-4 {
+  padding-top: 1.5rem !important;
+}
+
+.pr-4,
+.px-4 {
+  padding-right: 1.5rem !important;
+}
+
+.pb-4,
+.py-4 {
+  padding-bottom: 1.5rem !important;
+}
+
+.pl-4,
+.px-4 {
+  padding-left: 1.5rem !important;
+}
+
+.p-5 {
+  padding: 3rem !important;
+}
+
+.pt-5,
+.py-5 {
+  padding-top: 3rem !important;
+}
+
+.pr-5,
+.px-5 {
+  padding-right: 3rem !important;
+}
+
+.pb-5,
+.py-5 {
+  padding-bottom: 3rem !important;
+}
+
+.pl-5,
+.px-5 {
+  padding-left: 3rem !important;
+}
+
+.m-n1 {
+  margin: -0.25rem !important;
+}
+
+.mt-n1,
+.my-n1 {
+  margin-top: -0.25rem !important;
+}
+
+.mr-n1,
+.mx-n1 {
+  margin-right: -0.25rem !important;
+}
+
+.mb-n1,
+.my-n1 {
+  margin-bottom: -0.25rem !important;
+}
+
+.ml-n1,
+.mx-n1 {
+  margin-left: -0.25rem !important;
+}
+
+.m-n2 {
+  margin: -0.5rem !important;
+}
+
+.mt-n2,
+.my-n2 {
+  margin-top: -0.5rem !important;
+}
+
+.mr-n2,
+.mx-n2 {
+  margin-right: -0.5rem !important;
+}
+
+.mb-n2,
+.my-n2 {
+  margin-bottom: -0.5rem !important;
+}
+
+.ml-n2,
+.mx-n2 {
+  margin-left: -0.5rem !important;
+}
+
+.m-n3 {
+  margin: -1rem !important;
+}
+
+.mt-n3,
+.my-n3 {
+  margin-top: -1rem !important;
+}
+
+.mr-n3,
+.mx-n3 {
+  margin-right: -1rem !important;
+}
+
+.mb-n3,
+.my-n3 {
+  margin-bottom: -1rem !important;
+}
+
+.ml-n3,
+.mx-n3 {
+  margin-left: -1rem !important;
+}
+
+.m-n4 {
+  margin: -1.5rem !important;
+}
+
+.mt-n4,
+.my-n4 {
+  margin-top: -1.5rem !important;
+}
+
+.mr-n4,
+.mx-n4 {
+  margin-right: -1.5rem !important;
+}
+
+.mb-n4,
+.my-n4 {
+  margin-bottom: -1.5rem !important;
+}
+
+.ml-n4,
+.mx-n4 {
+  margin-left: -1.5rem !important;
+}
+
+.m-n5 {
+  margin: -3rem !important;
+}
+
+.mt-n5,
+.my-n5 {
+  margin-top: -3rem !important;
+}
+
+.mr-n5,
+.mx-n5 {
+  margin-right: -3rem !important;
+}
+
+.mb-n5,
+.my-n5 {
+  margin-bottom: -3rem !important;
+}
+
+.ml-n5,
+.mx-n5 {
+  margin-left: -3rem !important;
+}
+
+.m-auto {
+  margin: auto !important;
+}
+
+.mt-auto,
+.my-auto {
+  margin-top: auto !important;
+}
+
+.mr-auto,
+.mx-auto {
+  margin-right: auto !important;
+}
+
+.mb-auto,
+.my-auto {
+  margin-bottom: auto !important;
+}
+
+.ml-auto,
+.mx-auto {
+  margin-left: auto !important;
+}
+
+@media (min-width: 576px) {
+  .m-sm-0 {
+    margin: 0 !important;
+  }
+  .mt-sm-0,
+  .my-sm-0 {
+    margin-top: 0 !important;
+  }
+  .mr-sm-0,
+  .mx-sm-0 {
+    margin-right: 0 !important;
+  }
+  .mb-sm-0,
+  .my-sm-0 {
+    margin-bottom: 0 !important;
+  }
+  .ml-sm-0,
+  .mx-sm-0 {
+    margin-left: 0 !important;
+  }
+  .m-sm-1 {
+    margin: 0.25rem !important;
+  }
+  .mt-sm-1,
+  .my-sm-1 {
+    margin-top: 0.25rem !important;
+  }
+  .mr-sm-1,
+  .mx-sm-1 {
+    margin-right: 0.25rem !important;
+  }
+  .mb-sm-1,
+  .my-sm-1 {
+    margin-bottom: 0.25rem !important;
+  }
+  .ml-sm-1,
+  .mx-sm-1 {
+    margin-left: 0.25rem !important;
+  }
+  .m-sm-2 {
+    margin: 0.5rem !important;
+  }
+  .mt-sm-2,
+  .my-sm-2 {
+    margin-top: 0.5rem !important;
+  }
+  .mr-sm-2,
+  .mx-sm-2 {
+    margin-right: 0.5rem !important;
+  }
+  .mb-sm-2,
+  .my-sm-2 {
+    margin-bottom: 0.5rem !important;
+  }
+  .ml-sm-2,
+  .mx-sm-2 {
+    margin-left: 0.5rem !important;
+  }
+  .m-sm-3 {
+    margin: 1rem !important;
+  }
+  .mt-sm-3,
+  .my-sm-3 {
+    margin-top: 1rem !important;
+  }
+  .mr-sm-3,
+  .mx-sm-3 {
+    margin-right: 1rem !important;
+  }
+  .mb-sm-3,
+  .my-sm-3 {
+    margin-bottom: 1rem !important;
+  }
+  .ml-sm-3,
+  .mx-sm-3 {
+    margin-left: 1rem !important;
+  }
+  .m-sm-4 {
+    margin: 1.5rem !important;
+  }
+  .mt-sm-4,
+  .my-sm-4 {
+    margin-top: 1.5rem !important;
+  }
+  .mr-sm-4,
+  .mx-sm-4 {
+    margin-right: 1.5rem !important;
+  }
+  .mb-sm-4,
+  .my-sm-4 {
+    margin-bottom: 1.5rem !important;
+  }
+  .ml-sm-4,
+  .mx-sm-4 {
+    margin-left: 1.5rem !important;
+  }
+  .m-sm-5 {
+    margin: 3rem !important;
+  }
+  .mt-sm-5,
+  .my-sm-5 {
+    margin-top: 3rem !important;
+  }
+  .mr-sm-5,
+  .mx-sm-5 {
+    margin-right: 3rem !important;
+  }
+  .mb-sm-5,
+  .my-sm-5 {
+    margin-bottom: 3rem !important;
+  }
+  .ml-sm-5,
+  .mx-sm-5 {
+    margin-left: 3rem !important;
+  }
+  .p-sm-0 {
+    padding: 0 !important;
+  }
+  .pt-sm-0,
+  .py-sm-0 {
+    padding-top: 0 !important;
+  }
+  .pr-sm-0,
+  .px-sm-0 {
+    padding-right: 0 !important;
+  }
+  .pb-sm-0,
+  .py-sm-0 {
+    padding-bottom: 0 !important;
+  }
+  .pl-sm-0,
+  .px-sm-0 {
+    padding-left: 0 !important;
+  }
+  .p-sm-1 {
+    padding: 0.25rem !important;
+  }
+  .pt-sm-1,
+  .py-sm-1 {
+    padding-top: 0.25rem !important;
+  }
+  .pr-sm-1,
+  .px-sm-1 {
+    padding-right: 0.25rem !important;
+  }
+  .pb-sm-1,
+  .py-sm-1 {
+    padding-bottom: 0.25rem !important;
+  }
+  .pl-sm-1,
+  .px-sm-1 {
+    padding-left: 0.25rem !important;
+  }
+  .p-sm-2 {
+    padding: 0.5rem !important;
+  }
+  .pt-sm-2,
+  .py-sm-2 {
+    padding-top: 0.5rem !important;
+  }
+  .pr-sm-2,
+  .px-sm-2 {
+    padding-right: 0.5rem !important;
+  }
+  .pb-sm-2,
+  .py-sm-2 {
+    padding-bottom: 0.5rem !important;
+  }
+  .pl-sm-2,
+  .px-sm-2 {
+    padding-left: 0.5rem !important;
+  }
+  .p-sm-3 {
+    padding: 1rem !important;
+  }
+  .pt-sm-3,
+  .py-sm-3 {
+    padding-top: 1rem !important;
+  }
+  .pr-sm-3,
+  .px-sm-3 {
+    padding-right: 1rem !important;
+  }
+  .pb-sm-3,
+  .py-sm-3 {
+    padding-bottom: 1rem !important;
+  }
+  .pl-sm-3,
+  .px-sm-3 {
+    padding-left: 1rem !important;
+  }
+  .p-sm-4 {
+    padding: 1.5rem !important;
+  }
+  .pt-sm-4,
+  .py-sm-4 {
+    padding-top: 1.5rem !important;
+  }
+  .pr-sm-4,
+  .px-sm-4 {
+    padding-right: 1.5rem !important;
+  }
+  .pb-sm-4,
+  .py-sm-4 {
+    padding-bottom: 1.5rem !important;
+  }
+  .pl-sm-4,
+  .px-sm-4 {
+    padding-left: 1.5rem !important;
+  }
+  .p-sm-5 {
+    padding: 3rem !important;
+  }
+  .pt-sm-5,
+  .py-sm-5 {
+    padding-top: 3rem !important;
+  }
+  .pr-sm-5,
+  .px-sm-5 {
+    padding-right: 3rem !important;
+  }
+  .pb-sm-5,
+  .py-sm-5 {
+    padding-bottom: 3rem !important;
+  }
+  .pl-sm-5,
+  .px-sm-5 {
+    padding-left: 3rem !important;
+  }
+  .m-sm-n1 {
+    margin: -0.25rem !important;
+  }
+  .mt-sm-n1,
+  .my-sm-n1 {
+    margin-top: -0.25rem !important;
+  }
+  .mr-sm-n1,
+  .mx-sm-n1 {
+    margin-right: -0.25rem !important;
+  }
+  .mb-sm-n1,
+  .my-sm-n1 {
+    margin-bottom: -0.25rem !important;
+  }
+  .ml-sm-n1,
+  .mx-sm-n1 {
+    margin-left: -0.25rem !important;
+  }
+  .m-sm-n2 {
+    margin: -0.5rem !important;
+  }
+  .mt-sm-n2,
+  .my-sm-n2 {
+    margin-top: -0.5rem !important;
+  }
+  .mr-sm-n2,
+  .mx-sm-n2 {
+    margin-right: -0.5rem !important;
+  }
+  .mb-sm-n2,
+  .my-sm-n2 {
+    margin-bottom: -0.5rem !important;
+  }
+  .ml-sm-n2,
+  .mx-sm-n2 {
+    margin-left: -0.5rem !important;
+  }
+  .m-sm-n3 {
+    margin: -1rem !important;
+  }
+  .mt-sm-n3,
+  .my-sm-n3 {
+    margin-top: -1rem !important;
+  }
+  .mr-sm-n3,
+  .mx-sm-n3 {
+    margin-right: -1rem !important;
+  }
+  .mb-sm-n3,
+  .my-sm-n3 {
+    margin-bottom: -1rem !important;
+  }
+  .ml-sm-n3,
+  .mx-sm-n3 {
+    margin-left: -1rem !important;
+  }
+  .m-sm-n4 {
+    margin: -1.5rem !important;
+  }
+  .mt-sm-n4,
+  .my-sm-n4 {
+    margin-top: -1.5rem !important;
+  }
+  .mr-sm-n4,
+  .mx-sm-n4 {
+    margin-right: -1.5rem !important;
+  }
+  .mb-sm-n4,
+  .my-sm-n4 {
+    margin-bottom: -1.5rem !important;
+  }
+  .ml-sm-n4,
+  .mx-sm-n4 {
+    margin-left: -1.5rem !important;
+  }
+  .m-sm-n5 {
+    margin: -3rem !important;
+  }
+  .mt-sm-n5,
+  .my-sm-n5 {
+    margin-top: -3rem !important;
+  }
+  .mr-sm-n5,
+  .mx-sm-n5 {
+    margin-right: -3rem !important;
+  }
+  .mb-sm-n5,
+  .my-sm-n5 {
+    margin-bottom: -3rem !important;
+  }
+  .ml-sm-n5,
+  .mx-sm-n5 {
+    margin-left: -3rem !important;
+  }
+  .m-sm-auto {
+    margin: auto !important;
+  }
+  .mt-sm-auto,
+  .my-sm-auto {
+    margin-top: auto !important;
+  }
+  .mr-sm-auto,
+  .mx-sm-auto {
+    margin-right: auto !important;
+  }
+  .mb-sm-auto,
+  .my-sm-auto {
+    margin-bottom: auto !important;
+  }
+  .ml-sm-auto,
+  .mx-sm-auto {
+    margin-left: auto !important;
+  }
+}
+
+@media (min-width: 768px) {
+  .m-md-0 {
+    margin: 0 !important;
+  }
+  .mt-md-0,
+  .my-md-0 {
+    margin-top: 0 !important;
+  }
+  .mr-md-0,
+  .mx-md-0 {
+    margin-right: 0 !important;
+  }
+  .mb-md-0,
+  .my-md-0 {
+    margin-bottom: 0 !important;
+  }
+  .ml-md-0,
+  .mx-md-0 {
+    margin-left: 0 !important;
+  }
+  .m-md-1 {
+    margin: 0.25rem !important;
+  }
+  .mt-md-1,
+  .my-md-1 {
+    margin-top: 0.25rem !important;
+  }
+  .mr-md-1,
+  .mx-md-1 {
+    margin-right: 0.25rem !important;
+  }
+  .mb-md-1,
+  .my-md-1 {
+    margin-bottom: 0.25rem !important;
+  }
+  .ml-md-1,
+  .mx-md-1 {
+    margin-left: 0.25rem !important;
+  }
+  .m-md-2 {
+    margin: 0.5rem !important;
+  }
+  .mt-md-2,
+  .my-md-2 {
+    margin-top: 0.5rem !important;
+  }
+  .mr-md-2,
+  .mx-md-2 {
+    margin-right: 0.5rem !important;
+  }
+  .mb-md-2,
+  .my-md-2 {
+    margin-bottom: 0.5rem !important;
+  }
+  .ml-md-2,
+  .mx-md-2 {
+    margin-left: 0.5rem !important;
+  }
+  .m-md-3 {
+    margin: 1rem !important;
+  }
+  .mt-md-3,
+  .my-md-3 {
+    margin-top: 1rem !important;
+  }
+  .mr-md-3,
+  .mx-md-3 {
+    margin-right: 1rem !important;
+  }
+  .mb-md-3,
+  .my-md-3 {
+    margin-bottom: 1rem !important;
+  }
+  .ml-md-3,
+  .mx-md-3 {
+    margin-left: 1rem !important;
+  }
+  .m-md-4 {
+    margin: 1.5rem !important;
+  }
+  .mt-md-4,
+  .my-md-4 {
+    margin-top: 1.5rem !important;
+  }
+  .mr-md-4,
+  .mx-md-4 {
+    margin-right: 1.5rem !important;
+  }
+  .mb-md-4,
+  .my-md-4 {
+    margin-bottom: 1.5rem !important;
+  }
+  .ml-md-4,
+  .mx-md-4 {
+    margin-left: 1.5rem !important;
+  }
+  .m-md-5 {
+    margin: 3rem !important;
+  }
+  .mt-md-5,
+  .my-md-5 {
+    margin-top: 3rem !important;
+  }
+  .mr-md-5,
+  .mx-md-5 {
+    margin-right: 3rem !important;
+  }
+  .mb-md-5,
+  .my-md-5 {
+    margin-bottom: 3rem !important;
+  }
+  .ml-md-5,
+  .mx-md-5 {
+    margin-left: 3rem !important;
+  }
+  .p-md-0 {
+    padding: 0 !important;
+  }
+  .pt-md-0,
+  .py-md-0 {
+    padding-top: 0 !important;
+  }
+  .pr-md-0,
+  .px-md-0 {
+    padding-right: 0 !important;
+  }
+  .pb-md-0,
+  .py-md-0 {
+    padding-bottom: 0 !important;
+  }
+  .pl-md-0,
+  .px-md-0 {
+    padding-left: 0 !important;
+  }
+  .p-md-1 {
+    padding: 0.25rem !important;
+  }
+  .pt-md-1,
+  .py-md-1 {
+    padding-top: 0.25rem !important;
+  }
+  .pr-md-1,
+  .px-md-1 {
+    padding-right: 0.25rem !important;
+  }
+  .pb-md-1,
+  .py-md-1 {
+    padding-bottom: 0.25rem !important;
+  }
+  .pl-md-1,
+  .px-md-1 {
+    padding-left: 0.25rem !important;
+  }
+  .p-md-2 {
+    padding: 0.5rem !important;
+  }
+  .pt-md-2,
+  .py-md-2 {
+    padding-top: 0.5rem !important;
+  }
+  .pr-md-2,
+  .px-md-2 {
+    padding-right: 0.5rem !important;
+  }
+  .pb-md-2,
+  .py-md-2 {
+    padding-bottom: 0.5rem !important;
+  }
+  .pl-md-2,
+  .px-md-2 {
+    padding-left: 0.5rem !important;
+  }
+  .p-md-3 {
+    padding: 1rem !important;
+  }
+  .pt-md-3,
+  .py-md-3 {
+    padding-top: 1rem !important;
+  }
+  .pr-md-3,
+  .px-md-3 {
+    padding-right: 1rem !important;
+  }
+  .pb-md-3,
+  .py-md-3 {
+    padding-bottom: 1rem !important;
+  }
+  .pl-md-3,
+  .px-md-3 {
+    padding-left: 1rem !important;
+  }
+  .p-md-4 {
+    padding: 1.5rem !important;
+  }
+  .pt-md-4,
+  .py-md-4 {
+    padding-top: 1.5rem !important;
+  }
+  .pr-md-4,
+  .px-md-4 {
+    padding-right: 1.5rem !important;
+  }
+  .pb-md-4,
+  .py-md-4 {
+    padding-bottom: 1.5rem !important;
+  }
+  .pl-md-4,
+  .px-md-4 {
+    padding-left: 1.5rem !important;
+  }
+  .p-md-5 {
+    padding: 3rem !important;
+  }
+  .pt-md-5,
+  .py-md-5 {
+    padding-top: 3rem !important;
+  }
+  .pr-md-5,
+  .px-md-5 {
+    padding-right: 3rem !important;
+  }
+  .pb-md-5,
+  .py-md-5 {
+    padding-bottom: 3rem !important;
+  }
+  .pl-md-5,
+  .px-md-5 {
+    padding-left: 3rem !important;
+  }
+  .m-md-n1 {
+    margin: -0.25rem !important;
+  }
+  .mt-md-n1,
+  .my-md-n1 {
+    margin-top: -0.25rem !important;
+  }
+  .mr-md-n1,
+  .mx-md-n1 {
+    margin-right: -0.25rem !important;
+  }
+  .mb-md-n1,
+  .my-md-n1 {
+    margin-bottom: -0.25rem !important;
+  }
+  .ml-md-n1,
+  .mx-md-n1 {
+    margin-left: -0.25rem !important;
+  }
+  .m-md-n2 {
+    margin: -0.5rem !important;
+  }
+  .mt-md-n2,
+  .my-md-n2 {
+    margin-top: -0.5rem !important;
+  }
+  .mr-md-n2,
+  .mx-md-n2 {
+    margin-right: -0.5rem !important;
+  }
+  .mb-md-n2,
+  .my-md-n2 {
+    margin-bottom: -0.5rem !important;
+  }
+  .ml-md-n2,
+  .mx-md-n2 {
+    margin-left: -0.5rem !important;
+  }
+  .m-md-n3 {
+    margin: -1rem !important;
+  }
+  .mt-md-n3,
+  .my-md-n3 {
+    margin-top: -1rem !important;
+  }
+  .mr-md-n3,
+  .mx-md-n3 {
+    margin-right: -1rem !important;
+  }
+  .mb-md-n3,
+  .my-md-n3 {
+    margin-bottom: -1rem !important;
+  }
+  .ml-md-n3,
+  .mx-md-n3 {
+    margin-left: -1rem !important;
+  }
+  .m-md-n4 {
+    margin: -1.5rem !important;
+  }
+  .mt-md-n4,
+  .my-md-n4 {
+    margin-top: -1.5rem !important;
+  }
+  .mr-md-n4,
+  .mx-md-n4 {
+    margin-right: -1.5rem !important;
+  }
+  .mb-md-n4,
+  .my-md-n4 {
+    margin-bottom: -1.5rem !important;
+  }
+  .ml-md-n4,
+  .mx-md-n4 {
+    margin-left: -1.5rem !important;
+  }
+  .m-md-n5 {
+    margin: -3rem !important;
+  }
+  .mt-md-n5,
+  .my-md-n5 {
+    margin-top: -3rem !important;
+  }
+  .mr-md-n5,
+  .mx-md-n5 {
+    margin-right: -3rem !important;
+  }
+  .mb-md-n5,
+  .my-md-n5 {
+    margin-bottom: -3rem !important;
+  }
+  .ml-md-n5,
+  .mx-md-n5 {
+    margin-left: -3rem !important;
+  }
+  .m-md-auto {
+    margin: auto !important;
+  }
+  .mt-md-auto,
+  .my-md-auto {
+    margin-top: auto !important;
+  }
+  .mr-md-auto,
+  .mx-md-auto {
+    margin-right: auto !important;
+  }
+  .mb-md-auto,
+  .my-md-auto {
+    margin-bottom: auto !important;
+  }
+  .ml-md-auto,
+  .mx-md-auto {
+    margin-left: auto !important;
+  }
+}
+
+@media (min-width: 992px) {
+  .m-lg-0 {
+    margin: 0 !important;
+  }
+  .mt-lg-0,
+  .my-lg-0 {
+    margin-top: 0 !important;
+  }
+  .mr-lg-0,
+  .mx-lg-0 {
+    margin-right: 0 !important;
+  }
+  .mb-lg-0,
+  .my-lg-0 {
+    margin-bottom: 0 !important;
+  }
+  .ml-lg-0,
+  .mx-lg-0 {
+    margin-left: 0 !important;
+  }
+  .m-lg-1 {
+    margin: 0.25rem !important;
+  }
+  .mt-lg-1,
+  .my-lg-1 {
+    margin-top: 0.25rem !important;
+  }
+  .mr-lg-1,
+  .mx-lg-1 {
+    margin-right: 0.25rem !important;
+  }
+  .mb-lg-1,
+  .my-lg-1 {
+    margin-bottom: 0.25rem !important;
+  }
+  .ml-lg-1,
+  .mx-lg-1 {
+    margin-left: 0.25rem !important;
+  }
+  .m-lg-2 {
+    margin: 0.5rem !important;
+  }
+  .mt-lg-2,
+  .my-lg-2 {
+    margin-top: 0.5rem !important;
+  }
+  .mr-lg-2,
+  .mx-lg-2 {
+    margin-right: 0.5rem !important;
+  }
+  .mb-lg-2,
+  .my-lg-2 {
+    margin-bottom: 0.5rem !important;
+  }
+  .ml-lg-2,
+  .mx-lg-2 {
+    margin-left: 0.5rem !important;
+  }
+  .m-lg-3 {
+    margin: 1rem !important;
+  }
+  .mt-lg-3,
+  .my-lg-3 {
+    margin-top: 1rem !important;
+  }
+  .mr-lg-3,
+  .mx-lg-3 {
+    margin-right: 1rem !important;
+  }
+  .mb-lg-3,
+  .my-lg-3 {
+    margin-bottom: 1rem !important;
+  }
+  .ml-lg-3,
+  .mx-lg-3 {
+    margin-left: 1rem !important;
+  }
+  .m-lg-4 {
+    margin: 1.5rem !important;
+  }
+  .mt-lg-4,
+  .my-lg-4 {
+    margin-top: 1.5rem !important;
+  }
+  .mr-lg-4,
+  .mx-lg-4 {
+    margin-right: 1.5rem !important;
+  }
+  .mb-lg-4,
+  .my-lg-4 {
+    margin-bottom: 1.5rem !important;
+  }
+  .ml-lg-4,
+  .mx-lg-4 {
+    margin-left: 1.5rem !important;
+  }
+  .m-lg-5 {
+    margin: 3rem !important;
+  }
+  .mt-lg-5,
+  .my-lg-5 {
+    margin-top: 3rem !important;
+  }
+  .mr-lg-5,
+  .mx-lg-5 {
+    margin-right: 3rem !important;
+  }
+  .mb-lg-5,
+  .my-lg-5 {
+    margin-bottom: 3rem !important;
+  }
+  .ml-lg-5,
+  .mx-lg-5 {
+    margin-left: 3rem !important;
+  }
+  .p-lg-0 {
+    padding: 0 !important;
+  }
+  .pt-lg-0,
+  .py-lg-0 {
+    padding-top: 0 !important;
+  }
+  .pr-lg-0,
+  .px-lg-0 {
+    padding-right: 0 !important;
+  }
+  .pb-lg-0,
+  .py-lg-0 {
+    padding-bottom: 0 !important;
+  }
+  .pl-lg-0,
+  .px-lg-0 {
+    padding-left: 0 !important;
+  }
+  .p-lg-1 {
+    padding: 0.25rem !important;
+  }
+  .pt-lg-1,
+  .py-lg-1 {
+    padding-top: 0.25rem !important;
+  }
+  .pr-lg-1,
+  .px-lg-1 {
+    padding-right: 0.25rem !important;
+  }
+  .pb-lg-1,
+  .py-lg-1 {
+    padding-bottom: 0.25rem !important;
+  }
+  .pl-lg-1,
+  .px-lg-1 {
+    padding-left: 0.25rem !important;
+  }
+  .p-lg-2 {
+    padding: 0.5rem !important;
+  }
+  .pt-lg-2,
+  .py-lg-2 {
+    padding-top: 0.5rem !important;
+  }
+  .pr-lg-2,
+  .px-lg-2 {
+    padding-right: 0.5rem !important;
+  }
+  .pb-lg-2,
+  .py-lg-2 {
+    padding-bottom: 0.5rem !important;
+  }
+  .pl-lg-2,
+  .px-lg-2 {
+    padding-left: 0.5rem !important;
+  }
+  .p-lg-3 {
+    padding: 1rem !important;
+  }
+  .pt-lg-3,
+  .py-lg-3 {
+    padding-top: 1rem !important;
+  }
+  .pr-lg-3,
+  .px-lg-3 {
+    padding-right: 1rem !important;
+  }
+  .pb-lg-3,
+  .py-lg-3 {
+    padding-bottom: 1rem !important;
+  }
+  .pl-lg-3,
+  .px-lg-3 {
+    padding-left: 1rem !important;
+  }
+  .p-lg-4 {
+    padding: 1.5rem !important;
+  }
+  .pt-lg-4,
+  .py-lg-4 {
+    padding-top: 1.5rem !important;
+  }
+  .pr-lg-4,
+  .px-lg-4 {
+    padding-right: 1.5rem !important;
+  }
+  .pb-lg-4,
+  .py-lg-4 {
+    padding-bottom: 1.5rem !important;
+  }
+  .pl-lg-4,
+  .px-lg-4 {
+    padding-left: 1.5rem !important;
+  }
+  .p-lg-5 {
+    padding: 3rem !important;
+  }
+  .pt-lg-5,
+  .py-lg-5 {
+    padding-top: 3rem !important;
+  }
+  .pr-lg-5,
+  .px-lg-5 {
+    padding-right: 3rem !important;
+  }
+  .pb-lg-5,
+  .py-lg-5 {
+    padding-bottom: 3rem !important;
+  }
+  .pl-lg-5,
+  .px-lg-5 {
+    padding-left: 3rem !important;
+  }
+  .m-lg-n1 {
+    margin: -0.25rem !important;
+  }
+  .mt-lg-n1,
+  .my-lg-n1 {
+    margin-top: -0.25rem !important;
+  }
+  .mr-lg-n1,
+  .mx-lg-n1 {
+    margin-right: -0.25rem !important;
+  }
+  .mb-lg-n1,
+  .my-lg-n1 {
+    margin-bottom: -0.25rem !important;
+  }
+  .ml-lg-n1,
+  .mx-lg-n1 {
+    margin-left: -0.25rem !important;
+  }
+  .m-lg-n2 {
+    margin: -0.5rem !important;
+  }
+  .mt-lg-n2,
+  .my-lg-n2 {
+    margin-top: -0.5rem !important;
+  }
+  .mr-lg-n2,
+  .mx-lg-n2 {
+    margin-right: -0.5rem !important;
+  }
+  .mb-lg-n2,
+  .my-lg-n2 {
+    margin-bottom: -0.5rem !important;
+  }
+  .ml-lg-n2,
+  .mx-lg-n2 {
+    margin-left: -0.5rem !important;
+  }
+  .m-lg-n3 {
+    margin: -1rem !important;
+  }
+  .mt-lg-n3,
+  .my-lg-n3 {
+    margin-top: -1rem !important;
+  }
+  .mr-lg-n3,
+  .mx-lg-n3 {
+    margin-right: -1rem !important;
+  }
+  .mb-lg-n3,
+  .my-lg-n3 {
+    margin-bottom: -1rem !important;
+  }
+  .ml-lg-n3,
+  .mx-lg-n3 {
+    margin-left: -1rem !important;
+  }
+  .m-lg-n4 {
+    margin: -1.5rem !important;
+  }
+  .mt-lg-n4,
+  .my-lg-n4 {
+    margin-top: -1.5rem !important;
+  }
+  .mr-lg-n4,
+  .mx-lg-n4 {
+    margin-right: -1.5rem !important;
+  }
+  .mb-lg-n4,
+  .my-lg-n4 {
+    margin-bottom: -1.5rem !important;
+  }
+  .ml-lg-n4,
+  .mx-lg-n4 {
+    margin-left: -1.5rem !important;
+  }
+  .m-lg-n5 {
+    margin: -3rem !important;
+  }
+  .mt-lg-n5,
+  .my-lg-n5 {
+    margin-top: -3rem !important;
+  }
+  .mr-lg-n5,
+  .mx-lg-n5 {
+    margin-right: -3rem !important;
+  }
+  .mb-lg-n5,
+  .my-lg-n5 {
+    margin-bottom: -3rem !important;
+  }
+  .ml-lg-n5,
+  .mx-lg-n5 {
+    margin-left: -3rem !important;
+  }
+  .m-lg-auto {
+    margin: auto !important;
+  }
+  .mt-lg-auto,
+  .my-lg-auto {
+    margin-top: auto !important;
+  }
+  .mr-lg-auto,
+  .mx-lg-auto {
+    margin-right: auto !important;
+  }
+  .mb-lg-auto,
+  .my-lg-auto {
+    margin-bottom: auto !important;
+  }
+  .ml-lg-auto,
+  .mx-lg-auto {
+    margin-left: auto !important;
+  }
+}
+
+@media (min-width: 1200px) {
+  .m-xl-0 {
+    margin: 0 !important;
+  }
+  .mt-xl-0,
+  .my-xl-0 {
+    margin-top: 0 !important;
+  }
+  .mr-xl-0,
+  .mx-xl-0 {
+    margin-right: 0 !important;
+  }
+  .mb-xl-0,
+  .my-xl-0 {
+    margin-bottom: 0 !important;
+  }
+  .ml-xl-0,
+  .mx-xl-0 {
+    margin-left: 0 !important;
+  }
+  .m-xl-1 {
+    margin: 0.25rem !important;
+  }
+  .mt-xl-1,
+  .my-xl-1 {
+    margin-top: 0.25rem !important;
+  }
+  .mr-xl-1,
+  .mx-xl-1 {
+    margin-right: 0.25rem !important;
+  }
+  .mb-xl-1,
+  .my-xl-1 {
+    margin-bottom: 0.25rem !important;
+  }
+  .ml-xl-1,
+  .mx-xl-1 {
+    margin-left: 0.25rem !important;
+  }
+  .m-xl-2 {
+    margin: 0.5rem !important;
+  }
+  .mt-xl-2,
+  .my-xl-2 {
+    margin-top: 0.5rem !important;
+  }
+  .mr-xl-2,
+  .mx-xl-2 {
+    margin-right: 0.5rem !important;
+  }
+  .mb-xl-2,
+  .my-xl-2 {
+    margin-bottom: 0.5rem !important;
+  }
+  .ml-xl-2,
+  .mx-xl-2 {
+    margin-left: 0.5rem !important;
+  }
+  .m-xl-3 {
+    margin: 1rem !important;
+  }
+  .mt-xl-3,
+  .my-xl-3 {
+    margin-top: 1rem !important;
+  }
+  .mr-xl-3,
+  .mx-xl-3 {
+    margin-right: 1rem !important;
+  }
+  .mb-xl-3,
+  .my-xl-3 {
+    margin-bottom: 1rem !important;
+  }
+  .ml-xl-3,
+  .mx-xl-3 {
+    margin-left: 1rem !important;
+  }
+  .m-xl-4 {
+    margin: 1.5rem !important;
+  }
+  .mt-xl-4,
+  .my-xl-4 {
+    margin-top: 1.5rem !important;
+  }
+  .mr-xl-4,
+  .mx-xl-4 {
+    margin-right: 1.5rem !important;
+  }
+  .mb-xl-4,
+  .my-xl-4 {
+    margin-bottom: 1.5rem !important;
+  }
+  .ml-xl-4,
+  .mx-xl-4 {
+    margin-left: 1.5rem !important;
+  }
+  .m-xl-5 {
+    margin: 3rem !important;
+  }
+  .mt-xl-5,
+  .my-xl-5 {
+    margin-top: 3rem !important;
+  }
+  .mr-xl-5,
+  .mx-xl-5 {
+    margin-right: 3rem !important;
+  }
+  .mb-xl-5,
+  .my-xl-5 {
+    margin-bottom: 3rem !important;
+  }
+  .ml-xl-5,
+  .mx-xl-5 {
+    margin-left: 3rem !important;
+  }
+  .p-xl-0 {
+    padding: 0 !important;
+  }
+  .pt-xl-0,
+  .py-xl-0 {
+    padding-top: 0 !important;
+  }
+  .pr-xl-0,
+  .px-xl-0 {
+    padding-right: 0 !important;
+  }
+  .pb-xl-0,
+  .py-xl-0 {
+    padding-bottom: 0 !important;
+  }
+  .pl-xl-0,
+  .px-xl-0 {
+    padding-left: 0 !important;
+  }
+  .p-xl-1 {
+    padding: 0.25rem !important;
+  }
+  .pt-xl-1,
+  .py-xl-1 {
+    padding-top: 0.25rem !important;
+  }
+  .pr-xl-1,
+  .px-xl-1 {
+    padding-right: 0.25rem !important;
+  }
+  .pb-xl-1,
+  .py-xl-1 {
+    padding-bottom: 0.25rem !important;
+  }
+  .pl-xl-1,
+  .px-xl-1 {
+    padding-left: 0.25rem !important;
+  }
+  .p-xl-2 {
+    padding: 0.5rem !important;
+  }
+  .pt-xl-2,
+  .py-xl-2 {
+    padding-top: 0.5rem !important;
+  }
+  .pr-xl-2,
+  .px-xl-2 {
+    padding-right: 0.5rem !important;
+  }
+  .pb-xl-2,
+  .py-xl-2 {
+    padding-bottom: 0.5rem !important;
+  }
+  .pl-xl-2,
+  .px-xl-2 {
+    padding-left: 0.5rem !important;
+  }
+  .p-xl-3 {
+    padding: 1rem !important;
+  }
+  .pt-xl-3,
+  .py-xl-3 {
+    padding-top: 1rem !important;
+  }
+  .pr-xl-3,
+  .px-xl-3 {
+    padding-right: 1rem !important;
+  }
+  .pb-xl-3,
+  .py-xl-3 {
+    padding-bottom: 1rem !important;
+  }
+  .pl-xl-3,
+  .px-xl-3 {
+    padding-left: 1rem !important;
+  }
+  .p-xl-4 {
+    padding: 1.5rem !important;
+  }
+  .pt-xl-4,
+  .py-xl-4 {
+    padding-top: 1.5rem !important;
+  }
+  .pr-xl-4,
+  .px-xl-4 {
+    padding-right: 1.5rem !important;
+  }
+  .pb-xl-4,
+  .py-xl-4 {
+    padding-bottom: 1.5rem !important;
+  }
+  .pl-xl-4,
+  .px-xl-4 {
+    padding-left: 1.5rem !important;
+  }
+  .p-xl-5 {
+    padding: 3rem !important;
+  }
+  .pt-xl-5,
+  .py-xl-5 {
+    padding-top: 3rem !important;
+  }
+  .pr-xl-5,
+  .px-xl-5 {
+    padding-right: 3rem !important;
+  }
+  .pb-xl-5,
+  .py-xl-5 {
+    padding-bottom: 3rem !important;
+  }
+  .pl-xl-5,
+  .px-xl-5 {
+    padding-left: 3rem !important;
+  }
+  .m-xl-n1 {
+    margin: -0.25rem !important;
+  }
+  .mt-xl-n1,
+  .my-xl-n1 {
+    margin-top: -0.25rem !important;
+  }
+  .mr-xl-n1,
+  .mx-xl-n1 {
+    margin-right: -0.25rem !important;
+  }
+  .mb-xl-n1,
+  .my-xl-n1 {
+    margin-bottom: -0.25rem !important;
+  }
+  .ml-xl-n1,
+  .mx-xl-n1 {
+    margin-left: -0.25rem !important;
+  }
+  .m-xl-n2 {
+    margin: -0.5rem !important;
+  }
+  .mt-xl-n2,
+  .my-xl-n2 {
+    margin-top: -0.5rem !important;
+  }
+  .mr-xl-n2,
+  .mx-xl-n2 {
+    margin-right: -0.5rem !important;
+  }
+  .mb-xl-n2,
+  .my-xl-n2 {
+    margin-bottom: -0.5rem !important;
+  }
+  .ml-xl-n2,
+  .mx-xl-n2 {
+    margin-left: -0.5rem !important;
+  }
+  .m-xl-n3 {
+    margin: -1rem !important;
+  }
+  .mt-xl-n3,
+  .my-xl-n3 {
+    margin-top: -1rem !important;
+  }
+  .mr-xl-n3,
+  .mx-xl-n3 {
+    margin-right: -1rem !important;
+  }
+  .mb-xl-n3,
+  .my-xl-n3 {
+    margin-bottom: -1rem !important;
+  }
+  .ml-xl-n3,
+  .mx-xl-n3 {
+    margin-left: -1rem !important;
+  }
+  .m-xl-n4 {
+    margin: -1.5rem !important;
+  }
+  .mt-xl-n4,
+  .my-xl-n4 {
+    margin-top: -1.5rem !important;
+  }
+  .mr-xl-n4,
+  .mx-xl-n4 {
+    margin-right: -1.5rem !important;
+  }
+  .mb-xl-n4,
+  .my-xl-n4 {
+    margin-bottom: -1.5rem !important;
+  }
+  .ml-xl-n4,
+  .mx-xl-n4 {
+    margin-left: -1.5rem !important;
+  }
+  .m-xl-n5 {
+    margin: -3rem !important;
+  }
+  .mt-xl-n5,
+  .my-xl-n5 {
+    margin-top: -3rem !important;
+  }
+  .mr-xl-n5,
+  .mx-xl-n5 {
+    margin-right: -3rem !important;
+  }
+  .mb-xl-n5,
+  .my-xl-n5 {
+    margin-bottom: -3rem !important;
+  }
+  .ml-xl-n5,
+  .mx-xl-n5 {
+    margin-left: -3rem !important;
+  }
+  .m-xl-auto {
+    margin: auto !important;
+  }
+  .mt-xl-auto,
+  .my-xl-auto {
+    margin-top: auto !important;
+  }
+  .mr-xl-auto,
+  .mx-xl-auto {
+    margin-right: auto !important;
+  }
+  .mb-xl-auto,
+  .my-xl-auto {
+    margin-bottom: auto !important;
+  }
+  .ml-xl-auto,
+  .mx-xl-auto {
+    margin-left: auto !important;
+  }
+}
+
+.text-monospace {
+  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important;
+}
+
+.text-justify {
+  text-align: justify !important;
+}
+
+.text-wrap {
+  white-space: normal !important;
+}
+
+.text-nowrap {
+  white-space: nowrap !important;
+}
+
+.text-truncate {
+  overflow: hidden;
+  text-overflow: ellipsis;
+  white-space: nowrap;
+}
+
+.text-left {
+  text-align: left !important;
+}
+
+.text-right {
+  text-align: right !important;
+}
+
+.text-center {
+  text-align: center !important;
+}
+
+@media (min-width: 576px) {
+  .text-sm-left {
+    text-align: left !important;
+  }
+  .text-sm-right {
+    text-align: right !important;
+  }
+  .text-sm-center {
+    text-align: center !important;
+  }
+}
+
+@media (min-width: 768px) {
+  .text-md-left {
+    text-align: left !important;
+  }
+  .text-md-right {
+    text-align: right !important;
+  }
+  .text-md-center {
+    text-align: center !important;
+  }
+}
+
+@media (min-width: 992px) {
+  .text-lg-left {
+    text-align: left !important;
+  }
+  .text-lg-right {
+    text-align: right !important;
+  }
+  .text-lg-center {
+    text-align: center !important;
+  }
+}
+
+@media (min-width: 1200px) {
+  .text-xl-left {
+    text-align: left !important;
+  }
+  .text-xl-right {
+    text-align: right !important;
+  }
+  .text-xl-center {
+    text-align: center !important;
+  }
+}
+
+.text-lowercase {
+  text-transform: lowercase !important;
+}
+
+.text-uppercase {
+  text-transform: uppercase !important;
+}
+
+.text-capitalize {
+  text-transform: capitalize !important;
+}
+
+.font-weight-light {
+  font-weight: 300 !important;
+}
+
+.font-weight-lighter {
+  font-weight: lighter !important;
+}
+
+.font-weight-normal {
+  font-weight: 400 !important;
+}
+
+.font-weight-bold {
+  font-weight: 700 !important;
+}
+
+.font-weight-bolder {
+  font-weight: bolder !important;
+}
+
+.font-italic {
+  font-style: italic !important;
+}
+
+.text-white {
+  color: #fff !important;
+}
+
+.text-primary {
+  color: #007bff !important;
+}
+
+a.text-primary:hover, a.text-primary:focus {
+  color: #0056b3 !important;
+}
+
+.text-secondary {
+  color: #6c757d !important;
+}
+
+a.text-secondary:hover, a.text-secondary:focus {
+  color: #494f54 !important;
+}
+
+.text-success {
+  color: #28a745 !important;
+}
+
+a.text-success:hover, a.text-success:focus {
+  color: #19692c !important;
+}
+
+.text-info {
+  color: #17a2b8 !important;
+}
+
+a.text-info:hover, a.text-info:focus {
+  color: #0f6674 !important;
+}
+
+.text-warning {
+  color: #ffc107 !important;
+}
+
+a.text-warning:hover, a.text-warning:focus {
+  color: #ba8b00 !important;
+}
+
+.text-danger {
+  color: #dc3545 !important;
+}
+
+a.text-danger:hover, a.text-danger:focus {
+  color: #a71d2a !important;
+}
+
+.text-light {
+  color: #f8f9fa !important;
+}
+
+a.text-light:hover, a.text-light:focus {
+  color: #cbd3da !important;
+}
+
+.text-dark {
+  color: #343a40 !important;
+}
+
+a.text-dark:hover, a.text-dark:focus {
+  color: #121416 !important;
+}
+
+.text-body {
+  color: #212529 !important;
+}
+
+.text-muted {
+  color: #6c757d !important;
+}
+
+.text-black-50 {
+  color: rgba(0, 0, 0, 0.5) !important;
+}
+
+.text-white-50 {
+  color: rgba(255, 255, 255, 0.5) !important;
+}
+
+.text-hide {
+  font: 0/0 a;
+  color: transparent;
+  text-shadow: none;
+  background-color: transparent;
+  border: 0;
+}
+
+.text-decoration-none {
+  text-decoration: none !important;
+}
+
+.text-break {
+  word-break: break-word !important;
+  overflow-wrap: break-word !important;
+}
+
+.text-reset {
+  color: inherit !important;
+}
+
+.visible {
+  visibility: visible !important;
+}
+
+.invisible {
+  visibility: hidden !important;
+}
+
+@media print {
+  *,
+  *::before,
+  *::after {
+    text-shadow: none !important;
+    box-shadow: none !important;
+  }
+  a:not(.btn) {
+    text-decoration: underline;
+  }
+  abbr[title]::after {
+    content: " (" attr(title) ")";
+  }
+  pre {
+    white-space: pre-wrap !important;
+  }
+  pre,
+  blockquote {
+    border: 1px solid #adb5bd;
+    page-break-inside: avoid;
+  }
+  thead {
+    display: table-header-group;
+  }
+  tr,
+  img {
+    page-break-inside: avoid;
+  }
+  p,
+  h2,
+  h3 {
+    orphans: 3;
+    widows: 3;
+  }
+  h2,
+  h3 {
+    page-break-after: avoid;
+  }
+  @page {
+    size: a3;
+  }
+  body {
+    min-width: 992px !important;
+  }
+  .container {
+    min-width: 992px !important;
+  }
+  .navbar {
+    display: none;
+  }
+  .badge {
+    border: 1px solid #000;
+  }
+  .table {
+    border-collapse: collapse !important;
+  }
+  .table td,
+  .table th {
+    background-color: #fff !important;
+  }
+  .table-bordered th,
+  .table-bordered td {
+    border: 1px solid #dee2e6 !important;
+  }
+  .table-dark {
+    color: inherit;
+  }
+  .table-dark th,
+  .table-dark td,
+  .table-dark thead th,
+  .table-dark tbody + tbody {
+    border-color: #dee2e6;
+  }
+  .table .thead-dark th {
+    color: inherit;
+    border-color: #dee2e6;
+  }
+}
+/*# sourceMappingURL=bootstrap.css.map */
\ No newline at end of file
diff --git a/UyTube_mobile/web/css/contenido-alta-lista.css b/UyTube_mobile/web/css/contenido-alta-lista.css
new file mode 100644
index 0000000000000000000000000000000000000000..0824b967585b7807b11a61a0f9d6dda1832cc265
--- /dev/null
+++ b/UyTube_mobile/web/css/contenido-alta-lista.css
@@ -0,0 +1,106 @@
+.principal {
+  background-color: #f6f6f6;
+  min-height: 800px;
+  border-bottom: 2px solid #5aa1e3;
+  border-top: 2px solid #5aa1e3;
+  width: 100%; }
+
+.contenido {
+  background-color: #f6f6f6;
+  padding: 16px;
+  margin-left: auto;
+  margin-right: auto;
+  width: 1070px;
+  height: 100%; }
+  .contenido .contenido-flexible {
+    background-color: #f6f6f6;
+    margin-bottom: 16px;
+    display: flex;
+    flex-direction: row;
+    justify-content: space-between;
+    flex-wrap: wrap;
+    flex-grow: 0;
+    flex-shrink: 0; }
+    .contenido .contenido-flexible h3 {
+      width: 100%; }
+
+@media (max-width: 340px) {
+  .container-fluid {
+    padding-left: 0px;
+    padding-right: 0px; }
+
+  .contenido {
+    width: 100%;
+    padding-left: 2px;
+    padding-right: 2px; }
+    .contenido .contenido-flexible {
+      width: 100%;
+      justify-content: flex-start; } }
+@media (min-width: 341px) and (max-width: 387px) {
+  .container-fluid {
+    padding-left: 0px;
+    padding-right: 0px; }
+
+  .contenido {
+    width: 330px;
+    padding-left: 2px;
+    padding-right: 2px; }
+    .contenido .contenido-flexible {
+      width: 100%;
+      justify-content: flex-start; } }
+@media (min-width: 388px) and (max-width: 500px) {
+  .container-fluid {
+    padding-left: 0px;
+    padding-right: 0px; }
+
+  .contenido {
+    width: 388px;
+    padding-left: 2px;
+    padding-right: 2px; }
+    .contenido .contenido-flexible {
+      width: 100%;
+      justify-content: flex-start; }
+    .contenido .h3 {
+      width: 90%; } }
+@media (min-width: 501px) and (max-width: 575.98px) {
+  .container-fluid {
+    padding-left: 0px;
+    padding-right: 0px; }
+
+  .contenido {
+    width: 501px; }
+    .contenido .contenido-flexible {
+      width: 100%;
+      justify-content: flex-start; } }
+@media (min-width: 576px) and (max-width: 767.98px) {
+  .container-fluid {
+    padding-left: 0px;
+    padding-right: 0px; }
+
+  .contenido {
+    width: 576px; }
+    .contenido .contenido-flexible {
+      width: 100%;
+      justify-content: flex-start; } }
+@media (min-width: 768px) and (max-width: 991.98px) {
+  .container-fluid {
+    padding-left: 0px;
+    padding-right: 0px; }
+
+  .contenido {
+    width: 664px; }
+    .contenido .contenido-flexible {
+      width: 100%;
+      justify-content: flex-start; } }
+@media (min-width: 992px) {
+  .container-fluid {
+    padding-left: 0px;
+    padding-right: 0px; }
+
+  .contenido {
+    width: 35%; }
+    .contenido .contenido-flexible {
+      width: 100%;
+      justify-content: flex-start; } }
+
+/*# sourceMappingURL=contenido-alta-lista.css.map */
diff --git a/UyTube_mobile/web/css/contenido-alta-lista.css.map b/UyTube_mobile/web/css/contenido-alta-lista.css.map
new file mode 100644
index 0000000000000000000000000000000000000000..c43e1c97dfaea00cf935e742fbc970b3cc26638f
--- /dev/null
+++ b/UyTube_mobile/web/css/contenido-alta-lista.css.map
@@ -0,0 +1,7 @@
+{
+"version": 3,
+"mappings": "AAEA,UAAU;EACN,gBAAgB,ECUH,OAAO;EDTpB,UAAU,EAAE,KAAK;EACjB,aAAa,EAAE,iBAA4B;EAC3C,UAAU,EAAE,iBAA4B;EACxC,KAAK,EAAE,IAAI;;AAEf,UAAU;EACN,gBAAgB,ECGH,OAAO;EDFpB,OAAO,EAAE,IAAI;EACb,WAAW,EAAE,IAAI;EACjB,YAAY,EAAE,IAAI;EAClB,KAAK,EAAE,MAAM;EACb,MAAM,EAAE,IAAI;EACZ,8BAAmB;IACf,gBAAgB,ECJP,OAAO;IDKhB,aAAa,EAAE,IAAI;IACnB,OAAO,EAAE,IAAI;IACb,cAAc,EAAE,GAAG;IACnB,eAAe,EAAE,aAAa;IAC9B,SAAS,EAAE,IAAI;IACf,SAAS,EAAE,CAAC;IACZ,WAAW,EAAE,CAAC;IACd,iCAAE;MACE,KAAK,EAAE,IAAI;;AAIvB,yBAAyB;EACrB,gBAAgB;IACZ,YAAY,EAAE,GAAG;IACjB,aAAa,EAAE,GAAG;;EAGtB,UAAU;IACN,KAAK,EAAE,IAAI;IACX,YAAY,EAAE,GAAG;IACjB,aAAa,EAAE,GAAG;IAClB,8BAAmB;MACf,KAAK,EAAE,IAAI;MACX,eAAe,EAAE,UAAU;AAIvC,gDAAgD;EAC5C,gBAAgB;IACZ,YAAY,EAAE,GAAG;IACjB,aAAa,EAAE,GAAG;;EAGtB,UAAU;IACN,KAAK,EAAE,KAAK;IACZ,YAAY,EAAE,GAAG;IACjB,aAAa,EAAE,GAAG;IAClB,8BAAmB;MACf,KAAK,EAAE,IAAI;MACX,eAAe,EAAE,UAAU;AAKvC,gDAAgD;EAC5C,gBAAgB;IACZ,YAAY,EAAE,GAAG;IACjB,aAAa,EAAE,GAAG;;EAGtB,UAAU;IACN,KAAK,EAAE,KAAK;IACZ,YAAY,EAAE,GAAG;IACjB,aAAa,EAAE,GAAG;IAClB,8BAAmB;MACf,KAAK,EAAE,IAAI;MACX,eAAe,EAAE,UAAU;IAE/B,cAAG;MACC,KAAK,EAAE,GAAG;AAItB,mDAAmD;EAC/C,gBAAgB;IACZ,YAAY,EAAE,GAAG;IACjB,aAAa,EAAE,GAAG;;EAGtB,UAAU;IACN,KAAK,EAAE,KAAK;IACZ,8BAAmB;MACf,KAAK,EAAE,IAAI;MACX,eAAe,EAAE,UAAU;AAIvC,mDAAmD;EAC/C,gBAAgB;IACZ,YAAY,EAAE,GAAG;IACjB,aAAa,EAAE,GAAG;;EAGtB,UAAU;IACN,KAAK,EAAE,KAAK;IACZ,8BAAmB;MACf,KAAK,EAAE,IAAI;MACX,eAAe,EAAE,UAAU;AAIvC,mDAAmD;EAC/C,gBAAgB;IACZ,YAAY,EAAE,GAAG;IACjB,aAAa,EAAE,GAAG;;EAGtB,UAAU;IACN,KAAK,EAAE,KAAK;IACZ,8BAAmB;MACf,KAAK,EAAE,IAAI;MACX,eAAe,EAAE,UAAU;AAIvC,yBAAyB;EACrB,gBAAgB;IACZ,YAAY,EAAE,GAAG;IACjB,aAAa,EAAE,GAAG;;EAEtB,UAAU;IACN,KAAK,EAAE,GAAG;IACV,8BAAmB;MACf,KAAK,EAAE,IAAI;MACX,eAAe,EAAE,UAAU",
+"sources": ["contenido-alta-lista.sass","_colores.sass"],
+"names": [],
+"file": "contenido-alta-lista.css"
+}
\ No newline at end of file
diff --git a/UyTube_mobile/web/css/contenido-alta-lista.sass b/UyTube_mobile/web/css/contenido-alta-lista.sass
new file mode 100644
index 0000000000000000000000000000000000000000..f1ed6fab5afd0c17030e6087969af99b68eb3fda
--- /dev/null
+++ b/UyTube_mobile/web/css/contenido-alta-lista.sass
@@ -0,0 +1,139 @@
+@import _colores
+
+.principal
+    background-color: $colorGrisClaro
+    min-height: 800px
+    border-bottom: 2px solid $colorCelesteClaro
+    border-top: 2px solid $colorCelesteClaro
+    width: 100%
+
+.contenido    
+    background-color: $colorGrisClaro
+    padding: 16px
+    margin-left: auto
+    margin-right: auto
+    width: 1070px   
+    height: 100%
+    .contenido-flexible
+        background-color: $colorGrisClaro
+        margin-bottom: 16px
+        display: flex
+        flex-direction: row
+        justify-content: space-between
+        flex-wrap: wrap
+        flex-grow: 0
+        flex-shrink: 0
+        h3
+            width: 100%
+        
+
+// Para un maximo de 340px ================================================================================  
+@media (max-width: 340px) 
+    .container-fluid
+        padding-left: 0px
+        padding-right: 0px
+    
+    //estilos del contenido principal
+    .contenido
+        width: 100%
+        padding-left: 2px
+        padding-right: 2px
+        .contenido-flexible
+            width: 100%
+            justify-content: flex-start
+            
+
+// Para dispositivos mayores a 340 y menores a 388 ==============================================================
+@media (min-width: 341px) and (max-width: 387px)
+    .container-fluid
+        padding-left: 0px
+        padding-right: 0px
+    
+    //estilos del contenido principal
+    .contenido
+        width: 330px
+        padding-left: 2px
+        padding-right: 2px
+        .contenido-flexible
+            width: 100%
+            justify-content: flex-start
+            
+   
+    
+// Para dispositivos mayores a 387 y menores a 500 ================================================================
+@media (min-width: 388px) and (max-width: 500px)
+    .container-fluid
+        padding-left: 0px
+        padding-right: 0px
+    
+    //estilos del contenido principal
+    .contenido
+        width: 388px
+        padding-left: 2px
+        padding-right: 2px
+        .contenido-flexible
+            width: 100%
+            justify-content: flex-start
+            
+        .h3
+            width: 90%
+      
+        
+// Extra small devices (portrait phones, less than 576px) =======================================================
+@media (min-width: 501px) and (max-width: 575.98px)
+    .container-fluid
+        padding-left: 0px
+        padding-right: 0px
+    
+    //Estilos del contenido principal
+    .contenido
+        width: 501px
+        .contenido-flexible
+            width: 100%
+            justify-content: flex-start
+            
+
+// Small devices (landscape phones, 576px and up) ================================================================
+@media (min-width: 576px) and (max-width: 767.98px)
+    .container-fluid
+        padding-left: 0px
+        padding-right: 0px
+    
+    //Estilos del contenido principal
+    .contenido
+        width: 576px
+        .contenido-flexible
+            width: 100%
+            justify-content: flex-start
+            
+
+// Medium devices (tablets, 768px and up)
+@media (min-width: 768px) and (max-width: 991.98px)
+    .container-fluid
+        padding-left: 0px
+        padding-right: 0px
+    
+    //Estilos del contenido principal
+    .contenido
+        width: 664px
+        .contenido-flexible
+            width: 100%
+            justify-content: flex-start
+    
+    
+// Large devices (desktops, 992px and up) =======================================================================
+@media (min-width: 992px)
+    .container-fluid
+        padding-left: 0px
+        padding-right: 0px
+    //Estilos del contenido principal
+    .contenido
+        width: 35%
+        .contenido-flexible
+            width: 100%
+            justify-content: flex-start
+
+        
+    
+
+            
\ No newline at end of file
diff --git a/UyTube_mobile/web/css/contenido-alta-usuario.css b/UyTube_mobile/web/css/contenido-alta-usuario.css
new file mode 100644
index 0000000000000000000000000000000000000000..c1197bf544d5a738e76d1f20048cb7ae417cfe72
--- /dev/null
+++ b/UyTube_mobile/web/css/contenido-alta-usuario.css
@@ -0,0 +1,106 @@
+.principal {
+  background-color: #f6f6f6;
+  min-height: 800px;
+  border-bottom: 2px solid #5aa1e3;
+  border-top: 2px solid #5aa1e3;
+  width: 100%; }
+
+.contenido {
+  background-color: #f6f6f6;
+  padding: 16px;
+  margin-left: auto;
+  margin-right: auto;
+  width: 1070px;
+  height: 100%; }
+  .contenido .contenido-flexible {
+    background-color: #f6f6f6;
+    margin-bottom: 16px;
+    display: flex;
+    flex-direction: row;
+    justify-content: space-between;
+    flex-wrap: wrap;
+    flex-grow: 0;
+    flex-shrink: 0; }
+    .contenido .contenido-flexible h3 {
+      width: 100%; }
+
+@media (max-width: 340px) {
+  .container-fluid {
+    padding-left: 0px;
+    padding-right: 0px; }
+
+  .contenido {
+    width: 100%;
+    padding-left: 2px;
+    padding-right: 2px; }
+    .contenido .contenido-flexible {
+      width: 100%;
+      justify-content: flex-start; } }
+@media (min-width: 341px) and (max-width: 387px) {
+  .container-fluid {
+    padding-left: 0px;
+    padding-right: 0px; }
+
+  .contenido {
+    width: 330px;
+    padding-left: 2px;
+    padding-right: 2px; }
+    .contenido .contenido-flexible {
+      width: 100%;
+      justify-content: flex-start; } }
+@media (min-width: 388px) and (max-width: 500px) {
+  .container-fluid {
+    padding-left: 0px;
+    padding-right: 0px; }
+
+  .contenido {
+    width: 388px;
+    padding-left: 2px;
+    padding-right: 2px; }
+    .contenido .contenido-flexible {
+      width: 100%;
+      justify-content: flex-start; }
+    .contenido .h3 {
+      width: 90%; } }
+@media (min-width: 501px) and (max-width: 575.98px) {
+  .container-fluid {
+    padding-left: 0px;
+    padding-right: 0px; }
+
+  .contenido {
+    width: 501px; }
+    .contenido .contenido-flexible {
+      width: 100%;
+      justify-content: flex-start; } }
+@media (min-width: 576px) and (max-width: 767.98px) {
+  .container-fluid {
+    padding-left: 0px;
+    padding-right: 0px; }
+
+  .contenido {
+    width: 576px; }
+    .contenido .contenido-flexible {
+      width: 100%;
+      justify-content: flex-start; } }
+@media (min-width: 768px) and (max-width: 991.98px) {
+  .container-fluid {
+    padding-left: 0px;
+    padding-right: 0px; }
+
+  .contenido {
+    width: 664px; }
+    .contenido .contenido-flexible {
+      width: 100%;
+      justify-content: flex-start; } }
+@media (min-width: 992px) {
+  .container-fluid {
+    padding-left: 0px;
+    padding-right: 0px; }
+
+  .contenido {
+    width: 60%; }
+    .contenido .contenido-flexible {
+      width: 100%;
+      justify-content: flex-start; } }
+
+/*# sourceMappingURL=contenido-alta-usuario.css.map */
diff --git a/UyTube_mobile/web/css/contenido-alta-usuario.sass b/UyTube_mobile/web/css/contenido-alta-usuario.sass
new file mode 100644
index 0000000000000000000000000000000000000000..09cdd1601b50305e113ef195073025de21dfe0f7
--- /dev/null
+++ b/UyTube_mobile/web/css/contenido-alta-usuario.sass
@@ -0,0 +1,139 @@
+@import _colores
+
+.principal
+    background-color: $colorGrisClaro
+    min-height: 800px
+    border-bottom: 2px solid $colorCelesteClaro
+    border-top: 2px solid $colorCelesteClaro
+    width: 100%
+
+.contenido    
+    background-color: $colorGrisClaro
+    padding: 16px
+    margin-left: auto
+    margin-right: auto
+    width: 1070px   
+    height: 100%
+    .contenido-flexible
+        background-color: $colorGrisClaro
+        margin-bottom: 16px
+        display: flex
+        flex-direction: row
+        justify-content: space-between
+        flex-wrap: wrap
+        flex-grow: 0
+        flex-shrink: 0
+        h3
+            width: 100%
+        
+
+// Para un maximo de 340px ================================================================================  
+@media (max-width: 340px) 
+    .container-fluid
+        padding-left: 0px
+        padding-right: 0px
+    
+    //estilos del contenido principal
+    .contenido
+        width: 100%
+        padding-left: 2px
+        padding-right: 2px
+        .contenido-flexible
+            width: 100%
+            justify-content: flex-start
+            
+
+// Para dispositivos mayores a 340 y menores a 388 ==============================================================
+@media (min-width: 341px) and (max-width: 387px)
+    .container-fluid
+        padding-left: 0px
+        padding-right: 0px
+    
+    //estilos del contenido principal
+    .contenido
+        width: 330px
+        padding-left: 2px
+        padding-right: 2px
+        .contenido-flexible
+            width: 100%
+            justify-content: flex-start
+            
+   
+// Para dispositivos mayores a 387 y menores a 500 ================================================================
+@media (min-width: 388px) and (max-width: 500px)
+    .container-fluid
+        padding-left: 0px
+        padding-right: 0px
+    
+    //estilos del contenido principal
+    .contenido
+        width: 388px
+        padding-left: 2px
+        padding-right: 2px
+        .contenido-flexible
+            width: 100%
+            justify-content: flex-start
+            
+        .h3
+            width: 90%
+      
+        
+// Extra small devices (portrait phones, less than 576px) =======================================================
+@media (min-width: 501px) and (max-width: 575.98px)
+    .container-fluid
+        padding-left: 0px
+        padding-right: 0px
+    
+    //Estilos del contenido principal
+    .contenido
+        width: 501px
+        .contenido-flexible
+            width: 100%
+            justify-content: flex-start
+            
+
+// Small devices (landscape phones, 576px and up) ================================================================
+@media (min-width: 576px) and (max-width: 767.98px)
+    .container-fluid
+        padding-left: 0px
+        padding-right: 0px
+    
+    //Estilos del contenido principal
+    .contenido
+        width: 576px
+        .contenido-flexible
+            width: 100%
+            justify-content: flex-start
+            
+
+// Medium devices (tablets, 768px and up)
+@media (min-width: 768px) and (max-width: 991.98px)
+    .container-fluid
+        padding-left: 0px
+        padding-right: 0px
+    
+    //Estilos del contenido principal
+    .contenido
+        width: 664px
+        .contenido-flexible
+            width: 100%
+            justify-content: flex-start
+    
+    
+// Large devices (desktops, 992px and up) =======================================================================
+@media (min-width: 992px)
+    .container-fluid
+        padding-left: 0px
+        padding-right: 0px
+    //Estilos del contenido principal
+    .contenido
+        width: 60%
+        .contenido-flexible
+            width: 100%
+            justify-content: flex-start
+
+
+        
+    
+
+            
\ No newline at end of file
diff --git a/UyTube_mobile/web/css/contenido-alta-video.css b/UyTube_mobile/web/css/contenido-alta-video.css
new file mode 100644
index 0000000000000000000000000000000000000000..e069fb71a2034c47396237fd9fe2ca7a17ed7a4b
--- /dev/null
+++ b/UyTube_mobile/web/css/contenido-alta-video.css
@@ -0,0 +1,109 @@
+.principal {
+  background-color: #f6f6f6;
+  min-height: 800px;
+  border-bottom: 2px solid #5aa1e3;
+  border-top: 2px solid #5aa1e3;
+  width: 100%; }
+
+.contenido {
+  background-color: #f6f6f6;
+  padding: 16px;
+  margin-left: auto;
+  margin-right: auto;
+  width: 1070px;
+  height: 100%; }
+  .contenido .contenido-flexible {
+    background-color: #f6f6f6;
+    margin-bottom: 16px;
+    padding: 10px;
+    display: flex;
+    flex-direction: row;
+    justify-content: center;
+    flex-wrap: wrap;
+    flex-grow: 0;
+    flex-shrink: 0; }
+    .contenido .contenido-flexible h3 {
+      width: 60%; }
+    .contenido .contenido-flexible .form-alta-video {
+      width: 100%; }
+
+@media (max-width: 340px) {
+  .container-fluid {
+    padding-left: 0px;
+    padding-right: 0px; }
+
+  .contenido {
+    width: 100%;
+    padding-left: 2px;
+    padding-right: 2px; }
+    .contenido .contenido-flexible {
+      width: 100%;
+      justify-content: flex-start; } }
+@media (min-width: 341px) and (max-width: 387px) {
+  .container-fluid {
+    padding-left: 0px;
+    padding-right: 0px; }
+
+  .contenido {
+    width: 330px;
+    padding-left: 2px;
+    padding-right: 2px; }
+    .contenido .contenido-flexible {
+      width: 100%;
+      justify-content: flex-start; } }
+@media (min-width: 388px) and (max-width: 500px) {
+  .container-fluid {
+    padding-left: 0px;
+    padding-right: 0px; }
+
+  .contenido {
+    width: 388px;
+    padding-left: 2px;
+    padding-right: 2px; }
+    .contenido .contenido-flexible {
+      width: 100%;
+      justify-content: flex-start; }
+    .contenido .h3 {
+      width: 90%; } }
+@media (min-width: 501px) and (max-width: 575.98px) {
+  .container-fluid {
+    padding-left: 0px;
+    padding-right: 0px; }
+
+  .contenido {
+    width: 501px; }
+    .contenido .contenido-flexible {
+      width: 100%;
+      justify-content: flex-start; } }
+@media (min-width: 576px) and (max-width: 767.98px) {
+  .container-fluid {
+    padding-left: 0px;
+    padding-right: 0px; }
+
+  .contenido {
+    width: 576px; }
+    .contenido .contenido-flexible {
+      width: 100%;
+      justify-content: flex-start; } }
+@media (min-width: 768px) and (max-width: 991.98px) {
+  .container-fluid {
+    padding-left: 0px;
+    padding-right: 0px; }
+
+  .contenido {
+    width: 664px; }
+    .contenido .contenido-flexible {
+      width: 100%;
+      justify-content: flex-start; } }
+@media (min-width: 992px) {
+  .container-fluid {
+    padding-left: 0px;
+    padding-right: 0px; }
+
+  .contenido {
+    width: 50%; }
+    .contenido .contenido-flexible {
+      width: 100%;
+      justify-content: flex-start; } }
+
+/*# sourceMappingURL=contenido-alta-video.css.map */
diff --git a/UyTube_mobile/web/css/contenido-alta-video.sass b/UyTube_mobile/web/css/contenido-alta-video.sass
new file mode 100644
index 0000000000000000000000000000000000000000..b1afba97c542012d60e770cc6f4b7a0a18666bb2
--- /dev/null
+++ b/UyTube_mobile/web/css/contenido-alta-video.sass
@@ -0,0 +1,143 @@
+@import _colores
+
+.principal
+    background-color: $colorGrisClaro
+    min-height: 800px
+    border-bottom: 2px solid $colorCelesteClaro
+    border-top: 2px solid $colorCelesteClaro
+    width: 100%
+
+.contenido    
+    background-color: $colorGrisClaro
+    padding: 16px
+    margin-left: auto
+    margin-right: auto
+    width: 1070px   
+    height: 100%
+    .contenido-flexible
+        background-color: $colorGrisClaro
+        margin-bottom: 16px
+        padding: 10px
+        display: flex
+        flex-direction: row
+        justify-content: center
+        flex-wrap: wrap
+        flex-grow: 0
+        flex-shrink: 0
+        h3
+            width: 60%
+        .form-alta-video
+            width: 100%
+
+        
+
+// Para un maximo de 340px ================================================================================  
+@media (max-width: 340px) 
+    .container-fluid
+        padding-left: 0px
+        padding-right: 0px
+    
+    //estilos del contenido principal
+    .contenido
+        width: 100%
+        padding-left: 2px
+        padding-right: 2px
+        .contenido-flexible
+            width: 100%
+            justify-content: flex-start
+            
+
+// Para dispositivos mayores a 340 y menores a 388 ==============================================================
+@media (min-width: 341px) and (max-width: 387px)
+    .container-fluid
+        padding-left: 0px
+        padding-right: 0px
+    
+    //estilos del contenido principal
+    .contenido
+        width: 330px
+        padding-left: 2px
+        padding-right: 2px
+        .contenido-flexible
+            width: 100%
+            justify-content: flex-start
+            
+   
+    
+// Para dispositivos mayores a 387 y menores a 500 ================================================================
+@media (min-width: 388px) and (max-width: 500px)
+    .container-fluid
+        padding-left: 0px
+        padding-right: 0px
+    
+    //estilos del contenido principal
+    .contenido
+        width: 388px
+        padding-left: 2px
+        padding-right: 2px
+        .contenido-flexible
+            width: 100%
+            justify-content: flex-start
+            
+        .h3
+            width: 90%
+      
+        
+// Extra small devices (portrait phones, less than 576px) =======================================================
+@media (min-width: 501px) and (max-width: 575.98px)
+    .container-fluid
+        padding-left: 0px
+        padding-right: 0px
+    
+    //Estilos del contenido principal
+    .contenido
+        width: 501px
+        .contenido-flexible
+            width: 100%
+            justify-content: flex-start
+            
+
+// Small devices (landscape phones, 576px and up) ================================================================
+@media (min-width: 576px) and (max-width: 767.98px)
+    .container-fluid
+        padding-left: 0px
+        padding-right: 0px
+    
+    //Estilos del contenido principal
+    .contenido
+        width: 576px
+        .contenido-flexible
+            width: 100%
+            justify-content: flex-start
+            
+
+// Medium devices (tablets, 768px and up)
+@media (min-width: 768px) and (max-width: 991.98px)
+    .container-fluid
+        padding-left: 0px
+        padding-right: 0px
+    
+    //Estilos del contenido principal
+    .contenido
+        width: 664px
+        .contenido-flexible
+            width: 100%
+            justify-content: flex-start
+    
+    
+// Large devices (desktops, 992px and up) =======================================================================
+@media (min-width: 992px)
+    .container-fluid
+        padding-left: 0px
+        padding-right: 0px
+    //Estilos del contenido principal
+    .contenido
+        width: 50%
+        .contenido-flexible
+            width: 100%
+            justify-content: flex-start
+
+        
+    
+
+            
\ No newline at end of file
diff --git a/UyTube_mobile/web/css/contenido-base.css b/UyTube_mobile/web/css/contenido-base.css
new file mode 100644
index 0000000000000000000000000000000000000000..f40d535a68cf3e34c71a5b2e04afa8c7a5229966
--- /dev/null
+++ b/UyTube_mobile/web/css/contenido-base.css
@@ -0,0 +1,393 @@
+.principal {
+  background-color: #f6f6f6;
+  min-height: 800px;
+  border-bottom: 2px solid #5aa1e3;
+  border-top: 2px solid #5aa1e3; }
+
+.contenido {
+  background-color: #f6f6f6;
+  border-radius: 5px;
+  padding: 16px;
+  margin-left: auto;
+  margin-right: auto;
+  width: 70%;
+  height: 100%; }
+  .contenido .contenido-flexible {
+    background-color: #f6f6f6;
+    margin-bottom: 16px;
+    display: flex;
+    flex-direction: row;
+    justify-content: center;
+    flex-wrap: wrap;
+    flex-grow: 0;
+    flex-shrink: 0; }
+
+@media (max-width: 340px) {
+  .container-fluid {
+    padding-left: 0px;
+    padding-right: 0px; }
+
+  .header {
+    width: 100%;
+    left: 0px;
+    height: 175.112px; }
+    .header nav {
+      height: 175.112px; }
+    .header .item-header2 {
+      order: 3;
+      width: 100%; }
+
+  .relleno-header {
+    height: 175.112px; }
+
+  #navLogo {
+    justify-content: flex-start; }
+    #navLogo .icon-menu1 {
+      margin-left: 0px;
+      margin-right: 10px; }
+
+  #navbarSupportedContent {
+    width: 100%; }
+
+  #formBuscar {
+    display: flex;
+    justify-content: space-between;
+    width: 100%; }
+    #formBuscar input {
+      width: 100%; }
+    #formBuscar #btnBuscar {
+      display: none; }
+
+  .menu {
+    top: -171.112px; }
+
+  .contenido {
+    width: 100%; }
+    .contenido .contenido-flexible {
+      width: 100%;
+      justify-content: center; }
+
+  .widgets {
+    height: 170px;
+    padding-top: 5px;
+    padding-bottom: 5px;
+    flex-direction: column;
+    justify-content: space-around;
+    align-content: center; }
+    .widgets .widget-1 {
+      width: 100%;
+      flex-direction: row;
+      justify-content: space-around;
+      align-items: center; }
+    .widgets .widget-2 {
+      width: 100%;
+      justify-content: space-around; } }
+@media (min-width: 341px) and (max-width: 387px) {
+  .container-fluid {
+    padding-left: 0px;
+    padding-right: 0px; }
+
+  .header {
+    width: 100%;
+    height: 175.112px;
+    left: 0px; }
+    .header nav {
+      height: 175.112px; }
+    .header .item-header2 {
+      order: 3;
+      width: 100%; }
+
+  .relleno-header {
+    height: 175.112px; }
+
+  #navLogo {
+    justify-content: flex-start; }
+    #navLogo .icon-menu1 {
+      margin-left: 0px;
+      margin-right: 10px; }
+
+  #navbarSupportedContent {
+    width: 100%; }
+
+  #formBuscar {
+    display: flex;
+    justify-content: space-between;
+    width: 100%; }
+    #formBuscar input {
+      width: 100%; }
+    #formBuscar #btnBuscar {
+      display: none; }
+
+  .contenido {
+    width: 100%; }
+    .contenido .contenido-flexible {
+      width: 100%;
+      justify-content: center; }
+
+  .widgets {
+    height: 170px;
+    padding-top: 5px;
+    padding-bottom: 5px;
+    flex-direction: column;
+    justify-content: space-around;
+    align-content: center; }
+    .widgets .widget-1 {
+      width: 100%;
+      flex-direction: row;
+      justify-content: space-around;
+      align-items: center; }
+    .widgets .widget-2 {
+      width: 100%;
+      justify-content: space-around; } }
+@media (min-width: 388px) and (max-width: 500px) {
+  .container-fluid {
+    padding-left: 0px;
+    padding-right: 0px; }
+
+  .header {
+    width: 100%;
+    left: 0px;
+    height: 127.176px; }
+    .header nav {
+      height: 127.176px; }
+    .header .item-header2 {
+      order: 3;
+      width: 100%; }
+
+  .relleno-header {
+    height: 127.176px; }
+
+  #navLogo {
+    justify-content: flex-start; }
+    #navLogo .icon-menu1 {
+      margin-left: 0px;
+      margin-right: 10px; }
+
+  #navbarSupportedContent {
+    width: 100%; }
+
+  #formBuscar {
+    display: flex;
+    justify-content: space-between;
+    width: 100%; }
+    #formBuscar input {
+      width: 100%; }
+    #formBuscar #btnBuscar {
+      display: none; }
+
+  .contenido {
+    width: 100%; }
+    .contenido .contenido-flexible {
+      width: 100%;
+      justify-content: center; }
+    .contenido .h3 {
+      width: 90%; }
+
+  .widgets {
+    height: 180px;
+    padding-top: 10px;
+    padding-bottom: 10px;
+    flex-direction: column;
+    justify-content: space-around;
+    align-content: center; }
+    .widgets .widget-1 {
+      width: 100%;
+      flex-direction: row;
+      justify-content: space-around;
+      align-items: center; }
+    .widgets .widget-2 {
+      width: 100%;
+      justify-content: space-around; } }
+@media (min-width: 501px) and (max-width: 575.98px) {
+  .container-fluid {
+    padding-left: 0px;
+    padding-right: 0px; }
+
+  .header {
+    width: 100%;
+    left: 0px;
+    height: 129.176px; }
+    .header nav {
+      height: 129.176px; }
+    .header .item-header2 {
+      order: 3;
+      width: 100%; }
+
+  .relleno-header {
+    height: 129.176px; }
+
+  #navLogo {
+    justify-content: flex-start; }
+    #navLogo .icon-menu1 {
+      margin-left: 0px;
+      margin-right: 10px; }
+
+  #navbarSupportedContent {
+    width: 100%; }
+
+  #formBuscar {
+    display: flex;
+    justify-content: space-between;
+    width: 100%; }
+    #formBuscar input {
+      width: 100%; }
+    #formBuscar #btnBuscar {
+      display: none; }
+
+  .contenido {
+    width: 100%; }
+    .contenido .contenido-flexible {
+      width: 100%;
+      justify-content: center; }
+
+  .widgets {
+    height: 180px;
+    flex-direction: column;
+    justify-content: space-around;
+    align-items: center; }
+    .widgets .widget-1 {
+      width: 80%;
+      flex-direction: row;
+      justify-content: space-around;
+      align-items: center; }
+    .widgets .widget-2 {
+      width: 70%;
+      display: flex;
+      justify-content: space-around; }
+
+  .footer {
+    padding: 1rem 0.625rem; } }
+@media (min-width: 576px) and (max-width: 767.98px) {
+  .container-fluid {
+    padding-left: 0px;
+    padding-right: 0px; }
+
+  .header {
+    width: 100%;
+    left: 0rem;
+    height: 124.117px; }
+    .header .nav {
+      height: 124.117px; }
+    .header .item-header2 {
+      order: 3;
+      width: 100%; }
+
+  .relleno-header {
+    height: 124.117px; }
+
+  #navLogo {
+    justify-content: flex-start; }
+
+  #navbarSupportedContent {
+    width: 100%; }
+    #navbarSupportedContent #formBuscar {
+      display: flex;
+      justify-content: space-between;
+      width: 100%; }
+      #navbarSupportedContent #formBuscar input {
+        width: 87%; }
+
+  .contenido {
+    width: 100%; }
+    .contenido .contenido-flexible {
+      width: 100%;
+      justify-content: center; }
+
+  .widgets {
+    height: 160px;
+    flex-direction: column;
+    justify-content: space-around;
+    align-items: center; }
+    .widgets .widget-1 {
+      width: 60%;
+      flex-direction: row;
+      justify-content: space-between;
+      align-items: center; }
+    .widgets .widget-2 {
+      width: 60%;
+      display: flex;
+      justify-content: space-between; }
+
+  .footer {
+    padding: 1rem 0.625rem; } }
+@media (min-width: 768px) and (max-width: 991.98px) {
+  .container-fluid {
+    padding-left: 0px;
+    padding-right: 0px; }
+
+  .header {
+    width: 100%;
+    left: 0rem;
+    height: 77.2px; }
+    .header nav {
+      height: 77.2px;
+      justify-content: space-between; }
+      .header nav #navLogo {
+        justify-content: space-between; }
+      .header nav #navbarSupportedContent {
+        width: 100%; }
+        .header nav #navbarSupportedContent #formBuscar {
+          display: flex;
+          justify-content: space-between;
+          width: 100%; }
+          .header nav #navbarSupportedContent #formBuscar input {
+            width: 87%; }
+
+  .relleno-header {
+    height: 77.2px; }
+
+  .contenido {
+    width: 100%; }
+    .contenido .contenido-flexible {
+      width: 100%;
+      justify-content: center; }
+
+  .widgets {
+    height: 100px;
+    width: 100%;
+    flex-direction: row;
+    justify-content: space-around;
+    align-items: center; }
+    .widgets .widget-1 {
+      width: 50%;
+      flex-direction: row;
+      justify-content: space-around;
+      align-items: center; }
+    .widgets .widget-2 {
+      width: 30%;
+      display: flex;
+      flex-direction: row;
+      justify-content: center; }
+
+  .footer {
+    padding: 1rem 0.625rem; } }
+@media (min-width: 992px) {
+  .header {
+    width: 98%;
+    height: 56px; }
+    .header nav {
+      height: 56px; }
+
+  .relleno-header {
+    height: 56px; }
+
+  .contenido {
+    width: 70%; }
+
+  .widgets {
+    height: 123px;
+    padding-left: 30px;
+    padding-right: 30px;
+    justify-content: space-around;
+    flex-wrap: wrap;
+    align-content: center; }
+    .widgets .img-widget {
+      height: 83px; }
+    .widgets .widget-1 {
+      width: 460px;
+      display: flex;
+      justify-content: space-around; }
+    .widgets .widget-2 {
+      width: 350px; } }
+
+/*# sourceMappingURL=contenido-base.css.map */
diff --git a/UyTube_mobile/web/css/contenido-base.sass b/UyTube_mobile/web/css/contenido-base.sass
new file mode 100644
index 0000000000000000000000000000000000000000..2f0f3fcb56ef7b5672cdd31f342919eef33c8fbc
--- /dev/null
+++ b/UyTube_mobile/web/css/contenido-base.sass
@@ -0,0 +1,139 @@
+@import _colores
+
+.principal
+    background-color: $colorGrisClaro
+    min-height: 800px
+    border-bottom: 2px solid $colorCelesteClaro
+    border-top: 2px solid $colorCelesteClaro
+    width: 100%
+
+.contenido    
+    background-color: $colorGrisClaro
+    padding: 16px
+    margin-left: auto
+    margin-right: auto
+    width: 1070px   
+    height: 100%
+    .contenido-flexible
+        background-color: $colorGrisClaro
+        margin-bottom: 16px
+        display: flex
+        flex-direction: row
+        justify-content: space-between
+        flex-wrap: wrap
+        flex-grow: 0
+        flex-shrink: 0
+        h3
+            width: 100%
+        
+
+// Para un maximo de 340px ================================================================================  
+@media (max-width: 340px) 
+    .container-fluid
+        padding-left: 0px
+        padding-right: 0px
+    
+    //estilos del contenido principal
+    .contenido
+        width: 100%
+        padding-left: 2px
+        padding-right: 2px
+        .contenido-flexible
+            width: 100%
+            justify-content: flex-start
+            
+
+// Para dispositivos mayores a 340 y menores a 388 ==============================================================
+@media (min-width: 341px) and (max-width: 387px)
+    .container-fluid
+        padding-left: 0px
+        padding-right: 0px
+    
+    //estilos del contenido principal
+    .contenido
+        width: 330px
+        padding-left: 2px
+        padding-right: 2px
+        .contenido-flexible
+            width: 100%
+            justify-content: flex-start
+            
+   
+    
+// Para dispositivos mayores a 387 y menores a 500 ================================================================
+@media (min-width: 388px) and (max-width: 500px)
+    .container-fluid
+        padding-left: 0px
+        padding-right: 0px
+    
+    //estilos del contenido principal
+    .contenido
+        width: 388px
+        padding-left: 2px
+        padding-right: 2px
+        .contenido-flexible
+            width: 100%
+            justify-content: flex-start
+            
+        .h3
+            width: 90%
+      
+        
+// Extra small devices (portrait phones, less than 576px) =======================================================
+@media (min-width: 501px) and (max-width: 575.98px)
+    .container-fluid
+        padding-left: 0px
+        padding-right: 0px
+    
+    //Estilos del contenido principal
+    .contenido
+        width: 501px
+        .contenido-flexible
+            width: 100%
+            justify-content: flex-start
+            
+
+// Small devices (landscape phones, 576px and up) ================================================================
+@media (min-width: 576px) and (max-width: 767.98px)
+    .container-fluid
+        padding-left: 0px
+        padding-right: 0px
+    
+    //Estilos del contenido principal
+    .contenido
+        width: 576px
+        .contenido-flexible
+            width: 100%
+            justify-content: flex-start
+            
+
+// Medium devices (tablets, 768px and up)
+@media (min-width: 768px) and (max-width: 991.98px)
+    .container-fluid
+        padding-left: 0px
+        padding-right: 0px
+    
+    //Estilos del contenido principal
+    .contenido
+        width: 664px
+        .contenido-flexible
+            width: 100%
+            justify-content: flex-start
+    
+    
+// Large devices (desktops, 992px and up) =======================================================================
+@media (min-width: 992px)
+    .container-fluid
+        padding-left: 0px
+        padding-right: 0px
+    //Estilos del contenido principal
+    .contenido
+        width: 872px
+        .contenido-flexible
+            width: 100%
+            justify-content: flex-start
+
+        
+    
+
+            
\ No newline at end of file
diff --git a/UyTube_mobile/web/css/contenido-buscar.css b/UyTube_mobile/web/css/contenido-buscar.css
new file mode 100644
index 0000000000000000000000000000000000000000..4a9f15882f69999d627b049354d03f5092331955
--- /dev/null
+++ b/UyTube_mobile/web/css/contenido-buscar.css
@@ -0,0 +1,346 @@
+.principal {
+  background-color: #f6f6f6;
+  min-height: 800px;
+  border-bottom: 2px solid #5aa1e3;
+  border-top: 2px solid #5aa1e3; }
+
+.contenido {
+  background-color: #f6f6f6;
+  border-radius: 5px;
+  padding: 16px;
+  margin-left: auto;
+  margin-right: auto;
+  width: 70%;
+  height: 100%; }
+  .contenido .contenido-flexible {
+    background-color: #f6f6f6;
+    margin-bottom: 10px;
+    display: flex;
+    flex-direction: row;
+    justify-content: center;
+    flex-wrap: wrap;
+    flex-grow: 0;
+    flex-shrink: 0; }
+    .contenido .contenido-flexible .video, .contenido .contenido-flexible .canal, .contenido .contenido-flexible .lista {
+      display: flex;
+      padding: 0px; }
+      .contenido .contenido-flexible .video a, .contenido .contenido-flexible .canal a, .contenido .contenido-flexible .lista a {
+        color: #0d0d0d;
+        text-decoration: none; }
+    .contenido .contenido-flexible .caja-imagen {
+      display: flex; }
+    .contenido .contenido-flexible .caja-texto {
+      font-size: 0.8rem;
+      padding: 15px 10px 10px 10px;
+      display: flex;
+      flex-grow: 1; }
+    .contenido .contenido-flexible .caja-texto p {
+      overflow: auto;
+      overflow-wrap: break-word;
+      padding-right: 10px; }
+    .contenido .contenido-flexible .caja-texto h5 {
+      overflow: auto;
+      overflow-wrap: break-word; }
+
+@media (max-width: 340px) {
+  .container-fluid {
+    padding-left: 0px;
+    padding-right: 0px; }
+
+  .contenido {
+    width: 100%; }
+    .contenido .contenido-flexible {
+      width: 100%;
+      justify-content: center; }
+      .contenido .contenido-flexible .video, .contenido .contenido-flexible .canal, .contenido .contenido-flexible .lista {
+        flex-direction: column;
+        justify-content: flex-start;
+        align-content: center;
+        width: 100%;
+        height: 260px; }
+      .contenido .contenido-flexible .caja-imagen {
+        justify-content: center;
+        align-items: center;
+        min-width: 246px;
+        min-height: 150px; }
+      .contenido .contenido-flexible .video img {
+        width: 100%; }
+      .contenido .contenido-flexible .canal img {
+        width: 138px;
+        height: 138px; }
+      .contenido .contenido-flexible .caja-texto {
+        padding: 5px;
+        overflow: auto;
+        flex-direction: column;
+        justify-content: flex-start;
+        align-items: stretch;
+        min-width: 246px;
+        min-height: 110px; }
+        .contenido .contenido-flexible .caja-texto .caja-texto p {
+          min-height: 20px;
+          max-height: 55px;
+          overflow: auto; }
+        .contenido .contenido-flexible .caja-texto .caja-texto h5 {
+          min-height: 20px;
+          overflow: auto; }
+        .contenido .contenido-flexible .caja-texto a {
+          font-size: 0.95rem; }
+    .contenido .h3 {
+      width: 90%; } }
+@media (min-width: 341px) and (max-width: 387px) {
+  .container-fluid {
+    padding-left: 0px;
+    padding-right: 0px; }
+
+  .contenido {
+    width: 100%; }
+    .contenido .contenido-flexible {
+      width: 100%;
+      justify-content: center; }
+      .contenido .contenido-flexible .video, .contenido .contenido-flexible .canal, .contenido .contenido-flexible .lista {
+        flex-direction: column;
+        justify-content: flex-start;
+        align-content: center;
+        width: 100%;
+        height: 260px; }
+      .contenido .contenido-flexible .caja-imagen {
+        justify-content: center;
+        align-items: center;
+        min-width: 246px;
+        min-height: 150px; }
+      .contenido .contenido-flexible .video img {
+        height: 150px; }
+      .contenido .contenido-flexible .canal img {
+        width: 138px;
+        height: 138px; }
+      .contenido .contenido-flexible .caja-texto {
+        padding: 5px;
+        overflow: auto;
+        flex-direction: column;
+        justify-content: flex-start;
+        align-items: stretch;
+        width: 100%;
+        min-height: 110px; }
+        .contenido .contenido-flexible .caja-texto .caja-texto p {
+          min-height: 20px;
+          max-height: 55px;
+          overflow: auto; }
+        .contenido .contenido-flexible .caja-texto .caja-texto h5 {
+          min-height: 20px;
+          overflow: auto; }
+        .contenido .contenido-flexible .caja-texto a {
+          font-size: 0.95rem; }
+    .contenido .h3 {
+      width: 90%; } }
+@media (min-width: 388px) and (max-width: 500px) {
+  .container-fluid {
+    padding-left: 0px;
+    padding-right: 0px; }
+
+  .contenido {
+    width: 100%; }
+    .contenido .contenido-flexible {
+      width: 100%;
+      justify-content: center; }
+      .contenido .contenido-flexible .video, .contenido .contenido-flexible .canal, .contenido .contenido-flexible .lista {
+        flex-direction: column;
+        justify-content: flex-start;
+        align-content: center;
+        width: 100%;
+        height: 260px; }
+      .contenido .contenido-flexible .caja-imagen {
+        justify-content: center;
+        align-items: center;
+        min-width: 246px;
+        min-height: 150px; }
+      .contenido .contenido-flexible .video img {
+        height: 150px; }
+      .contenido .contenido-flexible .canal img {
+        width: 138px;
+        height: 138px; }
+      .contenido .contenido-flexible .caja-texto {
+        padding: 5px;
+        overflow: auto;
+        flex-direction: column;
+        justify-content: flex-start;
+        align-items: stretch;
+        width: 100%;
+        min-height: 110px; }
+        .contenido .contenido-flexible .caja-texto .caja-texto p {
+          min-height: 20px;
+          max-height: 55px;
+          overflow: auto; }
+        .contenido .contenido-flexible .caja-texto .caja-texto h5 {
+          min-height: 20px;
+          overflow: auto; }
+        .contenido .contenido-flexible .caja-texto a {
+          font-size: 0.95rem; }
+    .contenido .h3 {
+      width: 90%; } }
+@media (min-width: 501px) and (max-width: 575.98px) {
+  .container-fluid {
+    padding-left: 0px;
+    padding-right: 0px; }
+
+  .contenido {
+    width: 100%; }
+    .contenido .contenido-flexible {
+      width: 100%;
+      justify-content: center;
+      align-items: flex-start; }
+      .contenido .contenido-flexible .video, .contenido .contenido-flexible .canal, .contenido .contenido-flexible .lista {
+        flex-direction: row;
+        justify-content: space-between;
+        align-content: center;
+        width: 100%;
+        height: 150px; }
+      .contenido .contenido-flexible .caja-imagen {
+        justify-content: center;
+        align-items: center;
+        min-width: 246px;
+        height: 150px; }
+      .contenido .contenido-flexible .video img {
+        height: 150px; }
+      .contenido .contenido-flexible .canal img {
+        width: 138px;
+        height: 138px; }
+      .contenido .contenido-flexible .caja-texto {
+        padding: 5px;
+        overflow: auto;
+        flex-direction: column;
+        justify-content: flex-start;
+        align-items: stretch;
+        width: 100%;
+        height: 150px; }
+        .contenido .contenido-flexible .caja-texto .caja-texto p {
+          max-height: 75px;
+          min-height: 20px;
+          overflow: auto; }
+        .contenido .contenido-flexible .caja-texto .caja-texto h5 {
+          min-height: 20px;
+          max-height: 75px;
+          overflow: auto; } }
+@media (min-width: 576px) and (max-width: 767.98px) {
+  .container-fluid {
+    padding-left: 0px;
+    padding-right: 0px; }
+
+  .contenido {
+    width: 100%; }
+    .contenido .contenido-flexible {
+      width: 100%;
+      justify-content: center; }
+      .contenido .contenido-flexible .video, .contenido .contenido-flexible .canal, .contenido .contenido-flexible .lista {
+        flex-direction: row;
+        justify-content: space-between;
+        align-content: center;
+        width: 100%;
+        height: 150px; }
+      .contenido .contenido-flexible .caja-imagen {
+        justify-content: center;
+        align-items: center;
+        width: 100%;
+        height: 150px; }
+      .contenido .contenido-flexible .video img {
+        height: 150px; }
+      .contenido .contenido-flexible .canal img {
+        width: 138px;
+        height: 138px; }
+      .contenido .contenido-flexible .caja-texto {
+        padding: 5px;
+        overflow: auto;
+        flex-direction: column;
+        justify-content: flex-start;
+        align-items: stretch;
+        width: 100%;
+        height: 150px; }
+        .contenido .contenido-flexible .caja-texto .caja-texto p {
+          min-height: 50px;
+          max-height: 75px;
+          overflow: auto; }
+        .contenido .contenido-flexible .caja-texto .caja-texto h5 {
+          min-height: 20px;
+          max-height: 75px;
+          overflow: auto; } }
+@media (min-width: 768px) and (max-width: 991.98px) {
+  .container-fluid {
+    padding-left: 0px;
+    padding-right: 0px; }
+
+  .contenido {
+    width: 100%; }
+    .contenido .contenido-flexible {
+      width: 100%;
+      justify-content: center; }
+      .contenido .contenido-flexible .video, .contenido .contenido-flexible .canal, .contenido .contenido-flexible .lista {
+        flex-direction: row;
+        justify-content: space-between;
+        align-content: stretch;
+        width: 100%;
+        height: 150px; }
+      .contenido .contenido-flexible .caja-imagen {
+        justify-content: center;
+        align-items: center;
+        width: 200px;
+        min-width: 200px;
+        max-width: 200px;
+        height: 150px; }
+      .contenido .contenido-flexible .video img {
+        height: 150px; }
+      .contenido .contenido-flexible .canal img {
+        width: 138px;
+        height: 138px; }
+      .contenido .contenido-flexible .caja-texto {
+        padding: 5px;
+        overflow: auto;
+        flex-direction: column;
+        justify-content: flex-start;
+        align-items: stretch;
+        width: 100%;
+        height: 150px; }
+        .contenido .contenido-flexible .caja-texto .caja-texto p {
+          min-height: 60px;
+          max-height: 100px;
+          overflow: auto; }
+        .contenido .contenido-flexible .caja-texto .caja-texto h5 {
+          max-height: 50px;
+          min-height: 20px;
+          overflow: auto; } }
+@media (min-width: 992px) {
+  .filtos {
+    display: flex;
+    flex-direction: row; }
+
+  .contenido {
+    width: 70%; }
+    .contenido .video, .contenido .canal, .contenido .lista {
+      justify-content: space-between;
+      align-items: stretch;
+      width: 862px;
+      height: 152px; }
+    .contenido .caja-imagen {
+      justify-content: center;
+      align-items: center;
+      width: 246px;
+      height: 152px; }
+    .contenido .video img {
+      width: 246px; }
+    .contenido .canal img {
+      width: 138px;
+      height: 138px; }
+    .contenido .caja-texto {
+      flex-direction: column;
+      justify-content: flex-start;
+      align-items: stretch;
+      width: 600px;
+      height: 152px; }
+    .contenido .caja-texto p {
+      min-height: 50px;
+      max-height: 90px;
+      overflow: auto; }
+    .contenido .caja-texto h5 {
+      min-height: 20px;
+      max-height: 60px;
+      overflow: auto; } }
+
+/*# sourceMappingURL=contenido-buscar.css.map */
diff --git a/UyTube_mobile/web/css/contenido-buscar.sass b/UyTube_mobile/web/css/contenido-buscar.sass
new file mode 100644
index 0000000000000000000000000000000000000000..8b76b0e27f321d620dae53693679322c19f722bd
--- /dev/null
+++ b/UyTube_mobile/web/css/contenido-buscar.sass
@@ -0,0 +1,430 @@
+@import _colores
+
+.principal
+    background-color: $colorGrisClaro
+    min-height: 800px
+    border-bottom: 2px solid $colorCelesteClaro
+    border-top: 2px solid $colorCelesteClaro
+    
+.contenido    
+    background-color: $colorGrisClaro
+    //background-color: red
+    border-radius: 5px
+    padding: 16px
+    margin-left: auto
+    margin-right: auto
+    width: 70%   
+    height: 100%
+    .contenido-flexible
+        background-color: $colorGrisClaro
+        margin-bottom: 10px
+        display: flex
+        flex-direction: row
+        justify-content: center
+        flex-wrap: wrap
+        flex-grow: 0
+        flex-shrink: 0
+        .video, .canal, .lista
+            display: flex
+            padding: 0px
+            a
+                color: $tituloItem
+                text-decoration: none
+            //background-color: $amarillo
+        //Estilos del contenedor para las imagenes
+        .caja-imagen
+            display: flex
+        //Texto de los items
+        .caja-texto
+            font-size: 0.8rem
+            padding: 15px 10px 10px 10px
+            //background-color: orange
+            display: flex
+            flex-grow: 1
+        //Estilos generales para el texto de los items    
+        .caja-texto p
+            //background-color: $colorCelesteClaro
+            overflow: auto
+            overflow-wrap: break-word
+            padding-right: 10px
+        .caja-texto h5 
+            //background-color: green
+            overflow: auto
+            overflow-wrap: break-word
+        
+// Para un maximo de 340px ================================================================================  
+@media (max-width: 340px) 
+    .container-fluid
+        padding-left: 0px
+        padding-right: 0px
+    
+    //estilos del contenido principal
+    .contenido
+        width: 100%
+        .contenido-flexible
+            width: 100%
+            justify-content: center
+            //Estilos para los items
+            .video, .canal, .lista                
+                flex-direction: column
+                justify-content: flex-start
+                align-content: center
+                width: 100%
+                height: 260px  
+                //background-color: $violeta
+            .caja-imagen
+                justify-content: center
+                align-items: center
+                min-width: 246px
+                min-height: 150px 
+                //background-color: $grisVCodeBarra           
+            //Imagen del video
+            .video img
+                width: 100%
+                //height: 150px
+            //Imagen del canal
+            .canal img
+                width: 138px
+                height: 138px
+            //Texto de los items
+            .caja-texto
+                padding: 5px
+                overflow: auto
+                flex-direction: column
+                justify-content: flex-start
+                align-items: stretch
+                min-width: 246px
+                min-height: 110px
+                //Estilos para los textos de los items
+                .caja-texto p
+                    min-height: 20px
+                    max-height: 55px
+                    overflow: auto                              
+                .caja-texto h5 
+                    min-height: 20px
+                    overflow: auto
+                a 
+                    font-size: 0.95rem
+        .h3
+            width: 90%
+                    
+
+// Para dispositivos mayores a 340 y menores a 388 ==============================================================
+@media (min-width: 341px) and (max-width: 387px)
+    .container-fluid
+        padding-left: 0px
+        padding-right: 0px
+    
+    //estilos del contenido principal
+    .contenido
+        width: 100%
+        .contenido-flexible
+            width: 100%
+            justify-content: center
+            //Estilos para los items
+            .video, .canal, .lista                
+                flex-direction: column
+                justify-content: flex-start
+                align-content: center
+                width: 100%
+                height: 260px  
+                //background-color: $violeta
+            .caja-imagen
+                justify-content: center
+                align-items: center
+                min-width: 246px
+                min-height: 150px 
+                //background-color: $grisVCodeBarra           
+            //Imagen del video
+            .video img
+                //width: 200px
+                height: 150px
+            //Imagen del canal
+            .canal img
+                width: 138px
+                height: 138px
+            //Texto de los items
+            .caja-texto
+                padding: 5px
+                overflow: auto
+                flex-direction: column
+                justify-content: flex-start
+                align-items: stretch
+                width: 100%
+                min-height: 110px
+                //Estilos para los textos de los items
+                .caja-texto p
+                    min-height: 20px
+                    max-height: 55px
+                    overflow: auto                              
+                .caja-texto h5 
+                    min-height: 20px
+                    overflow: auto
+                a 
+                    font-size: 0.95rem
+        .h3
+            width: 90%
+                    
+// Para dispositivos mayores a 387 y menores a 500 ================================================================
+@media (min-width: 388px) and (max-width: 500px)
+    .container-fluid
+        padding-left: 0px
+        padding-right: 0px
+    
+    //estilos del contenido principal
+    .contenido
+        width: 100%
+        .contenido-flexible
+            width: 100%
+            justify-content: center
+            //Estilos para los items
+            .video, .canal, .lista                
+                flex-direction: column
+                justify-content: flex-start
+                align-content: center
+                width: 100%
+                height: 260px  
+                //background-color: $violeta
+            .caja-imagen
+                justify-content: center
+                align-items: center
+                min-width: 246px
+                min-height: 150px 
+                //background-color: $grisVCodeBarra           
+            //Imagen del video
+            .video img
+                //width: 200px
+                height: 150px
+            //Imagen del canal
+            .canal img
+                width: 138px
+                height: 138px
+            //Texto de los items
+            .caja-texto
+                padding: 5px
+                overflow: auto
+                flex-direction: column
+                justify-content: flex-start
+                align-items: stretch
+                width: 100%
+                min-height: 110px
+                //Estilos para los textos de los items
+                .caja-texto p
+                    min-height: 20px
+                    max-height: 55px
+                    overflow: auto                              
+                .caja-texto h5 
+                    min-height: 20px
+                    overflow: auto
+                a 
+                    font-size: 0.95rem
+        .h3
+            width: 90%
+        
+// Extra small devices (portrait phones, less than 576px) =======================================================
+@media (min-width: 501px) and (max-width: 575.98px)
+    .container-fluid
+        padding-left: 0px
+        padding-right: 0px
+    
+    //Estilos del contenido principal
+    .contenido
+        width: 100%
+        .contenido-flexible
+            width: 100%
+            justify-content: center
+            align-items: flex-start
+            //Estilos para los items
+            .video, .canal, .lista                
+                flex-direction: row
+                justify-content: space-between
+                align-content: center
+                width: 100%
+                height: 150px                  
+            .caja-imagen
+                justify-content: center
+                align-items: center
+                min-width: 246px
+                height: 150px                         
+            //Imagen del video
+            .video img
+                height: 150px
+            //Imagen del canal
+            .canal img
+                width: 138px
+                height: 138px
+            //Texto de los items
+            .caja-texto
+                padding: 5px
+                overflow: auto
+                flex-direction: column
+                justify-content: flex-start
+                align-items: stretch
+                width: 100%
+                height: 150px
+                //Estilos para los textos de los items
+                .caja-texto p
+                    max-height: 75px
+                    min-height: 20px
+                    overflow: auto            
+                .caja-texto h5 
+                    min-height: 20px
+                    max-height: 75px
+                    overflow: auto
+
+// Small devices (landscape phones, 576px and up) ================================================================
+@media (min-width: 576px) and (max-width: 767.98px)
+    .container-fluid
+        padding-left: 0px
+        padding-right: 0px
+    
+    //Estilos del contenido principal
+    .contenido
+        width: 100%
+        .contenido-flexible
+            width: 100%
+            justify-content: center
+            //Estilos para los items
+            .video, .canal, .lista                
+                flex-direction: row
+                justify-content: space-between
+                align-content: center
+                width: 100%
+                height: 150px  
+                //background-color: $violeta
+            .caja-imagen
+                justify-content: center
+                align-items: center
+                width: 100%
+                height: 150px 
+                //background-color: $grisVCodeBarra           
+            //Imagen del video
+            .video img
+                height: 150px
+            //Imagen del canal
+            .canal img
+                width: 138px
+                height: 138px
+            //Texto de los items
+            .caja-texto
+                padding: 5px
+                overflow: auto
+                flex-direction: column
+                justify-content: flex-start
+                align-items: stretch
+                width: 100%
+                height: 150px
+                //Estilos para los textos de los items
+                .caja-texto p
+                    min-height: 50px
+                    max-height: 75px
+                    overflow: auto            
+                .caja-texto h5
+                    min-height: 20px
+                    max-height: 75px
+                    overflow: auto
+
+// Medium devices (tablets, 768px and up)
+@media (min-width: 768px) and (max-width: 991.98px)
+    .container-fluid
+        padding-left: 0px
+        padding-right: 0px
+
+    //Estilos del contenido principal
+    .contenido
+        width: 100%
+        .contenido-flexible
+            width: 100%
+            justify-content: center
+            //Estilos para los items
+            .video, .canal, .lista                
+                flex-direction: row
+                justify-content: space-between
+                align-content: stretch
+                width: 100%
+                height: 150px  
+                //background-color: $violeta
+            .caja-imagen
+                justify-content: center
+                align-items: center
+                width: 200px
+                min-width: 200px
+                max-width: 200px
+                height: 150px 
+                //background-color: $grisVCodeBarra           
+            //Imagen del video
+            .video img
+                //width: 200px
+                height: 150px
+            //Imagen del canal
+            .canal img
+                width: 138px
+                height: 138px
+            //Texto de los items
+            .caja-texto
+                padding: 5px
+                overflow: auto
+                flex-direction: column
+                justify-content: flex-start
+                align-items: stretch
+                width: 100%
+                height: 150px
+                //Estilos para los textos de los items
+                .caja-texto p
+                    min-height: 60px
+                    max-height: 100px
+                    overflow: auto            
+                .caja-texto h5
+                    max-height: 50px 
+                    min-height: 20px
+                    overflow: auto
+
+// Large devices (desktops, 992px and up) =======================================================================
+@media (min-width: 992px)
+    
+    .filtos
+        display: flex
+        flex-direction: row
+    .contenido
+        width: 70%
+        .video, .canal, .lista
+            justify-content: space-between
+            align-items: stretch
+            width: 862px
+            height: 152px  
+        .caja-imagen
+            justify-content: center
+            align-items: center
+            width: 246px
+            height: 152px            
+        //Imagen del video
+        .video img
+            width: 246px
+        //Imagen del canal
+        .canal img
+            width: 138px
+            height: 138px
+        //Texto de los items
+        .caja-texto
+            //overflow: hidden
+            flex-direction: column
+            justify-content: flex-start
+            align-items: stretch
+            width: 600px
+            height: 152px
+        //Estilos para los textos de los items
+        .caja-texto p
+            min-height: 50px
+            max-height: 90px
+            //min-width: 550px
+            //max-width: 550px
+            overflow: auto            
+        .caja-texto h5 
+            min-height: 20px
+            max-height: 60px
+            overflow: auto
+     
+        
+    
+
+            
\ No newline at end of file
diff --git a/UyTube_mobile/web/css/contenido-consulta-usuario.css b/UyTube_mobile/web/css/contenido-consulta-usuario.css
new file mode 100644
index 0000000000000000000000000000000000000000..5467961c7a48389bc311824b673220168145543b
--- /dev/null
+++ b/UyTube_mobile/web/css/contenido-consulta-usuario.css
@@ -0,0 +1,109 @@
+.principal {
+  background-color: #f6f6f6;
+  min-height: 800px;
+  border-bottom: 2px solid #5aa1e3;
+  border-top: 2px solid #5aa1e3;
+  width: 100%; }
+
+.contenido {
+  background-color: #f6f6f6;
+  padding: 16px;
+  margin-left: auto;
+  margin-right: auto;
+  width: 1070px;
+  height: 100%; }
+  .contenido .contenido-flexible {
+    background-color: #f6f6f6;
+    margin-bottom: 16px;
+    display: flex;
+    flex-direction: row;
+    justify-content: space-between;
+    flex-wrap: wrap;
+    flex-grow: 0;
+    flex-shrink: 0; }
+    .contenido .contenido-flexible h3 {
+      width: 100%; }
+    .contenido .contenido-flexible #btnBaja, .contenido .contenido-flexible #btnBuscar {
+      height: 38px;
+      min-width: 198px; }
+
+@media (max-width: 340px) {
+  .container-fluid {
+    padding-left: 0px;
+    padding-right: 0px; }
+
+  .contenido {
+    width: 100%;
+    padding-left: 2px;
+    padding-right: 2px; }
+    .contenido .contenido-flexible {
+      width: 100%;
+      justify-content: flex-start; } }
+@media (min-width: 341px) and (max-width: 387px) {
+  .container-fluid {
+    padding-left: 0px;
+    padding-right: 0px; }
+
+  .contenido {
+    width: 330px;
+    padding-left: 2px;
+    padding-right: 2px; }
+    .contenido .contenido-flexible {
+      width: 100%;
+      justify-content: flex-start; } }
+@media (min-width: 388px) and (max-width: 500px) {
+  .container-fluid {
+    padding-left: 0px;
+    padding-right: 0px; }
+
+  .contenido {
+    width: 388px;
+    padding-left: 2px;
+    padding-right: 2px; }
+    .contenido .contenido-flexible {
+      width: 100%;
+      justify-content: flex-start; }
+    .contenido .h3 {
+      width: 90%; } }
+@media (min-width: 501px) and (max-width: 575.98px) {
+  .container-fluid {
+    padding-left: 0px;
+    padding-right: 0px; }
+
+  .contenido {
+    width: 501px; }
+    .contenido .contenido-flexible {
+      width: 100%;
+      justify-content: flex-start; } }
+@media (min-width: 576px) and (max-width: 767.98px) {
+  .container-fluid {
+    padding-left: 0px;
+    padding-right: 0px; }
+
+  .contenido {
+    width: 576px; }
+    .contenido .contenido-flexible {
+      width: 100%;
+      justify-content: flex-start; } }
+@media (min-width: 768px) and (max-width: 991.98px) {
+  .container-fluid {
+    padding-left: 0px;
+    padding-right: 0px; }
+
+  .contenido {
+    width: 664px; }
+    .contenido .contenido-flexible {
+      width: 100%;
+      justify-content: flex-start; } }
+@media (min-width: 992px) {
+  .container-fluid {
+    padding-left: 0px;
+    padding-right: 0px; }
+
+  .contenido {
+    width: 872px; }
+    .contenido .contenido-flexible {
+      width: 100%;
+      justify-content: flex-start; } }
+
+/*# sourceMappingURL=contenido-consulta-usuario.css.map */
diff --git a/UyTube_mobile/web/css/contenido-consulta-usuario.css.map b/UyTube_mobile/web/css/contenido-consulta-usuario.css.map
new file mode 100644
index 0000000000000000000000000000000000000000..eab302ba3d2e54859f0c43330169acd833fa40af
--- /dev/null
+++ b/UyTube_mobile/web/css/contenido-consulta-usuario.css.map
@@ -0,0 +1,7 @@
+{
+"version": 3,
+"mappings": "AAEA,UAAU;EACN,gBAAgB,ECUH,OAAO;EDTpB,UAAU,EAAE,KAAK;EACjB,aAAa,EAAE,iBAA4B;EAC3C,UAAU,EAAE,iBAA4B;EACxC,KAAK,EAAE,IAAI;;AAEf,UAAU;EACN,gBAAgB,ECGH,OAAO;EDFpB,OAAO,EAAE,IAAI;EACb,WAAW,EAAE,IAAI;EACjB,YAAY,EAAE,IAAI;EAClB,KAAK,EAAE,MAAM;EACb,MAAM,EAAE,IAAI;EACZ,8BAAmB;IACf,gBAAgB,ECJP,OAAO;IDKhB,aAAa,EAAE,IAAI;IACnB,OAAO,EAAE,IAAI;IACb,cAAc,EAAE,GAAG;IACnB,eAAe,EAAE,aAAa;IAC9B,SAAS,EAAE,IAAI;IACf,SAAS,EAAE,CAAC;IACZ,WAAW,EAAE,CAAC;IACd,iCAAE;MACE,KAAK,EAAE,IAAI;IACf,kFAAoB;MAChB,MAAM,EAAE,IAAI;MACZ,SAAS,EAAE,KAAK;;AAG5B,yBAAyB;EACrB,gBAAgB;IACZ,YAAY,EAAE,GAAG;IACjB,aAAa,EAAE,GAAG;;EAGtB,UAAU;IACN,KAAK,EAAE,IAAI;IACX,YAAY,EAAE,GAAG;IACjB,aAAa,EAAE,GAAG;IAClB,8BAAmB;MACf,KAAK,EAAE,IAAI;MACX,eAAe,EAAE,UAAU;AAIvC,gDAAgD;EAC5C,gBAAgB;IACZ,YAAY,EAAE,GAAG;IACjB,aAAa,EAAE,GAAG;;EAGtB,UAAU;IACN,KAAK,EAAE,KAAK;IACZ,YAAY,EAAE,GAAG;IACjB,aAAa,EAAE,GAAG;IAClB,8BAAmB;MACf,KAAK,EAAE,IAAI;MACX,eAAe,EAAE,UAAU;AAIvC,gDAAgD;EAC5C,gBAAgB;IACZ,YAAY,EAAE,GAAG;IACjB,aAAa,EAAE,GAAG;;EAGtB,UAAU;IACN,KAAK,EAAE,KAAK;IACZ,YAAY,EAAE,GAAG;IACjB,aAAa,EAAE,GAAG;IAClB,8BAAmB;MACf,KAAK,EAAE,IAAI;MACX,eAAe,EAAE,UAAU;IAE/B,cAAG;MACC,KAAK,EAAE,GAAG;AAItB,mDAAmD;EAC/C,gBAAgB;IACZ,YAAY,EAAE,GAAG;IACjB,aAAa,EAAE,GAAG;;EAGtB,UAAU;IACN,KAAK,EAAE,KAAK;IACZ,8BAAmB;MACf,KAAK,EAAE,IAAI;MACX,eAAe,EAAE,UAAU;AAIvC,mDAAmD;EAC/C,gBAAgB;IACZ,YAAY,EAAE,GAAG;IACjB,aAAa,EAAE,GAAG;;EAGtB,UAAU;IACN,KAAK,EAAE,KAAK;IACZ,8BAAmB;MACf,KAAK,EAAE,IAAI;MACX,eAAe,EAAE,UAAU;AAIvC,mDAAmD;EAC/C,gBAAgB;IACZ,YAAY,EAAE,GAAG;IACjB,aAAa,EAAE,GAAG;;EAGtB,UAAU;IACN,KAAK,EAAE,KAAK;IACZ,8BAAmB;MACf,KAAK,EAAE,IAAI;MACX,eAAe,EAAE,UAAU;AAIvC,yBAAyB;EACrB,gBAAgB;IACZ,YAAY,EAAE,GAAG;IACjB,aAAa,EAAE,GAAG;;EAEtB,UAAU;IACN,KAAK,EAAE,KAAK;IACZ,8BAAmB;MACf,KAAK,EAAE,IAAI;MACX,eAAe,EAAE,UAAU",
+"sources": ["contenido-consulta-usuario.sass","_colores.sass"],
+"names": [],
+"file": "contenido-consulta-usuario.css"
+}
\ No newline at end of file
diff --git a/UyTube_mobile/web/css/contenido-consulta-usuario.sass b/UyTube_mobile/web/css/contenido-consulta-usuario.sass
new file mode 100644
index 0000000000000000000000000000000000000000..e3f771ed38d27f3a947b52219d8edc36a11b79b9
--- /dev/null
+++ b/UyTube_mobile/web/css/contenido-consulta-usuario.sass
@@ -0,0 +1,135 @@
+@import _colores
+
+.principal
+    background-color: $colorGrisClaro
+    min-height: 800px
+    border-bottom: 2px solid $colorCelesteClaro
+    border-top: 2px solid $colorCelesteClaro
+    width: 100%
+
+.contenido    
+    background-color: $colorGrisClaro
+    padding: 16px
+    margin-left: auto
+    margin-right: auto
+    width: 1070px   
+    height: 100%
+    .contenido-flexible
+        background-color: $colorGrisClaro
+        margin-bottom: 16px
+        display: flex
+        flex-direction: row
+        justify-content: space-between
+        flex-wrap: wrap
+        flex-grow: 0
+        flex-shrink: 0
+        h3
+            width: 100%
+        #btnBaja, #btnBuscar
+            height: 38px
+            min-width: 198px
+
+// Para un maximo de 340px ================================================================================  
+@media (max-width: 340px) 
+    .container-fluid
+        padding-left: 0px
+        padding-right: 0px
+    
+    //estilos del contenido principal
+    .contenido
+        width: 100%
+        padding-left: 2px
+        padding-right: 2px
+        .contenido-flexible
+            width: 100%
+            justify-content: flex-start
+            
+
+// Para dispositivos mayores a 340 y menores a 388 ==============================================================
+@media (min-width: 341px) and (max-width: 387px)
+    .container-fluid
+        padding-left: 0px
+        padding-right: 0px
+    
+    //estilos del contenido principal
+    .contenido
+        width: 330px
+        padding-left: 2px
+        padding-right: 2px
+        .contenido-flexible
+            width: 100%
+            justify-content: flex-start
+            
+    
+// Para dispositivos mayores a 387 y menores a 500 ================================================================
+@media (min-width: 388px) and (max-width: 500px)
+    .container-fluid
+        padding-left: 0px
+        padding-right: 0px
+    
+    //estilos del contenido principal
+    .contenido
+        width: 388px
+        padding-left: 2px
+        padding-right: 2px
+        .contenido-flexible
+            width: 100%
+            justify-content: flex-start
+            
+        .h3
+            width: 90%
+      
+        
+// Extra small devices (portrait phones, less than 576px) =======================================================
+@media (min-width: 501px) and (max-width: 575.98px)
+    .container-fluid
+        padding-left: 0px
+        padding-right: 0px
+    
+    //Estilos del contenido principal
+    .contenido
+        width: 501px
+        .contenido-flexible
+            width: 100%
+            justify-content: flex-start
+            
+
+// Small devices (landscape phones, 576px and up) ================================================================
+@media (min-width: 576px) and (max-width: 767.98px)
+    .container-fluid
+        padding-left: 0px
+        padding-right: 0px
+    
+    //Estilos del contenido principal
+    .contenido
+        width: 576px
+        .contenido-flexible
+            width: 100%
+            justify-content: flex-start
+            
+
+// Medium devices (tablets, 768px and up)
+@media (min-width: 768px) and (max-width: 991.98px)
+    .container-fluid
+        padding-left: 0px
+        padding-right: 0px
+    
+    //Estilos del contenido principal
+    .contenido
+        width: 664px
+        .contenido-flexible
+            width: 100%
+            justify-content: flex-start
+    
+    
+// Large devices (desktops, 992px and up) =======================================================================
+@media (min-width: 992px)
+    .container-fluid
+        padding-left: 0px
+        padding-right: 0px
+    //Estilos del contenido principal
+    .contenido
+        width: 872px
+        .contenido-flexible
+            width: 100%
+            justify-content: flex-start
diff --git a/UyTube_mobile/web/css/contenido-consulta-video.css b/UyTube_mobile/web/css/contenido-consulta-video.css
new file mode 100644
index 0000000000000000000000000000000000000000..0755e2a141cae931500c6438042fa298733c96e5
--- /dev/null
+++ b/UyTube_mobile/web/css/contenido-consulta-video.css
@@ -0,0 +1,393 @@
+.principal {
+  background-color: #f6f6f6;
+  min-height: 800px;
+  border-bottom: 2px solid #5aa1e3;
+  border-top: 2px solid #5aa1e3; }
+
+.contenido {
+  background-color: #f6f6f6;
+  border-radius: 5px;
+  padding: 16px;
+  margin-left: auto;
+  margin-right: auto;
+  width: 70%;
+  height: 100%; }
+  .contenido .contenido-flexible {
+    background-color: #f6f6f6;
+    margin-bottom: 16px;
+    display: flex;
+    flex-direction: row;
+    justify-content: center;
+    flex-wrap: wrap;
+    flex-grow: 0;
+    flex-shrink: 0; }
+
+@media (max-width: 340px) {
+  .container-fluid {
+    padding-left: 0px;
+    padding-right: 0px; }
+
+  .header {
+    width: 100%;
+    left: 0px;
+    height: 175.112px; }
+    .header nav {
+      height: 175.112px; }
+    .header .item-header2 {
+      order: 3;
+      width: 100%; }
+
+  .relleno-header {
+    height: 175.112px; }
+
+  #navLogo {
+    justify-content: flex-start; }
+    #navLogo .icon-menu1 {
+      margin-left: 0px;
+      margin-right: 10px; }
+
+  #navbarSupportedContent {
+    width: 100%; }
+
+  #formBuscar {
+    display: flex;
+    justify-content: space-between;
+    width: 100%; }
+    #formBuscar input {
+      width: 100%; }
+    #formBuscar #btnBuscar {
+      display: none; }
+
+  .menu {
+    top: -171.112px; }
+
+  .contenido {
+    width: 100%; }
+    .contenido .contenido-flexible {
+      width: 100%;
+      justify-content: center; }
+
+  .widgets {
+    height: 170px;
+    padding-top: 5px;
+    padding-bottom: 5px;
+    flex-direction: column;
+    justify-content: space-around;
+    align-content: center; }
+    .widgets .widget-1 {
+      width: 100%;
+      flex-direction: row;
+      justify-content: space-around;
+      align-items: center; }
+    .widgets .widget-2 {
+      width: 100%;
+      justify-content: space-around; } }
+@media (min-width: 341px) and (max-width: 387px) {
+  .container-fluid {
+    padding-left: 0px;
+    padding-right: 0px; }
+
+  .header {
+    width: 100%;
+    height: 175.112px;
+    left: 0px; }
+    .header nav {
+      height: 175.112px; }
+    .header .item-header2 {
+      order: 3;
+      width: 100%; }
+
+  .relleno-header {
+    height: 175.112px; }
+
+  #navLogo {
+    justify-content: flex-start; }
+    #navLogo .icon-menu1 {
+      margin-left: 0px;
+      margin-right: 10px; }
+
+  #navbarSupportedContent {
+    width: 100%; }
+
+  #formBuscar {
+    display: flex;
+    justify-content: space-between;
+    width: 100%; }
+    #formBuscar input {
+      width: 100%; }
+    #formBuscar #btnBuscar {
+      display: none; }
+
+  .contenido {
+    width: 100%; }
+    .contenido .contenido-flexible {
+      width: 100%;
+      justify-content: center; }
+
+  .widgets {
+    height: 170px;
+    padding-top: 5px;
+    padding-bottom: 5px;
+    flex-direction: column;
+    justify-content: space-around;
+    align-content: center; }
+    .widgets .widget-1 {
+      width: 100%;
+      flex-direction: row;
+      justify-content: space-around;
+      align-items: center; }
+    .widgets .widget-2 {
+      width: 100%;
+      justify-content: space-around; } }
+@media (min-width: 388px) and (max-width: 500px) {
+  .container-fluid {
+    padding-left: 0px;
+    padding-right: 0px; }
+
+  .header {
+    width: 100%;
+    left: 0px;
+    height: 127.176px; }
+    .header nav {
+      height: 127.176px; }
+    .header .item-header2 {
+      order: 3;
+      width: 100%; }
+
+  .relleno-header {
+    height: 127.176px; }
+
+  #navLogo {
+    justify-content: flex-start; }
+    #navLogo .icon-menu1 {
+      margin-left: 0px;
+      margin-right: 10px; }
+
+  #navbarSupportedContent {
+    width: 100%; }
+
+  #formBuscar {
+    display: flex;
+    justify-content: space-between;
+    width: 100%; }
+    #formBuscar input {
+      width: 100%; }
+    #formBuscar #btnBuscar {
+      display: none; }
+
+  .contenido {
+    width: 100%; }
+    .contenido .contenido-flexible {
+      width: 100%;
+      justify-content: center; }
+    .contenido .h3 {
+      width: 90%; }
+
+  .widgets {
+    height: 180px;
+    padding-top: 10px;
+    padding-bottom: 10px;
+    flex-direction: column;
+    justify-content: space-around;
+    align-content: center; }
+    .widgets .widget-1 {
+      width: 100%;
+      flex-direction: row;
+      justify-content: space-around;
+      align-items: center; }
+    .widgets .widget-2 {
+      width: 100%;
+      justify-content: space-around; } }
+@media (min-width: 501px) and (max-width: 575.98px) {
+  .container-fluid {
+    padding-left: 0px;
+    padding-right: 0px; }
+
+  .header {
+    width: 100%;
+    left: 0px;
+    height: 129.176px; }
+    .header nav {
+      height: 129.176px; }
+    .header .item-header2 {
+      order: 3;
+      width: 100%; }
+
+  .relleno-header {
+    height: 129.176px; }
+
+  #navLogo {
+    justify-content: flex-start; }
+    #navLogo .icon-menu1 {
+      margin-left: 0px;
+      margin-right: 10px; }
+
+  #navbarSupportedContent {
+    width: 100%; }
+
+  #formBuscar {
+    display: flex;
+    justify-content: space-between;
+    width: 100%; }
+    #formBuscar input {
+      width: 100%; }
+    #formBuscar #btnBuscar {
+      display: none; }
+
+  .contenido {
+    width: 100%; }
+    .contenido .contenido-flexible {
+      width: 100%;
+      justify-content: center; }
+
+  .widgets {
+    height: 180px;
+    flex-direction: column;
+    justify-content: space-around;
+    align-items: center; }
+    .widgets .widget-1 {
+      width: 80%;
+      flex-direction: row;
+      justify-content: space-around;
+      align-items: center; }
+    .widgets .widget-2 {
+      width: 70%;
+      display: flex;
+      justify-content: space-around; }
+
+  .footer {
+    padding: 1rem 0.625rem; } }
+@media (min-width: 576px) and (max-width: 767.98px) {
+  .container-fluid {
+    padding-left: 0px;
+    padding-right: 0px; }
+
+  .header {
+    width: 100%;
+    left: 0rem;
+    height: 124.117px; }
+    .header .nav {
+      height: 124.117px; }
+    .header .item-header2 {
+      order: 3;
+      width: 100%; }
+
+  .relleno-header {
+    height: 124.117px; }
+
+  #navLogo {
+    justify-content: flex-start; }
+
+  #navbarSupportedContent {
+    width: 100%; }
+    #navbarSupportedContent #formBuscar {
+      display: flex;
+      justify-content: space-between;
+      width: 100%; }
+      #navbarSupportedContent #formBuscar input {
+        width: 87%; }
+
+  .contenido {
+    width: 100%; }
+    .contenido .contenido-flexible {
+      width: 100%;
+      justify-content: center; }
+
+  .widgets {
+    height: 160px;
+    flex-direction: column;
+    justify-content: space-around;
+    align-items: center; }
+    .widgets .widget-1 {
+      width: 60%;
+      flex-direction: row;
+      justify-content: space-between;
+      align-items: center; }
+    .widgets .widget-2 {
+      width: 60%;
+      display: flex;
+      justify-content: space-between; }
+
+  .footer {
+    padding: 1rem 0.625rem; } }
+@media (min-width: 768px) and (max-width: 991.98px) {
+  .container-fluid {
+    padding-left: 0px;
+    padding-right: 0px; }
+
+  .header {
+    width: 100%;
+    left: 0rem;
+    height: 77.2px; }
+    .header nav {
+      height: 77.2px;
+      justify-content: space-between; }
+      .header nav #navLogo {
+        justify-content: space-between; }
+      .header nav #navbarSupportedContent {
+        width: 100%; }
+        .header nav #navbarSupportedContent #formBuscar {
+          display: flex;
+          justify-content: space-between;
+          width: 100%; }
+          .header nav #navbarSupportedContent #formBuscar input {
+            width: 87%; }
+
+  .relleno-header {
+    height: 77.2px; }
+
+  .contenido {
+    width: 100%; }
+    .contenido .contenido-flexible {
+      width: 100%;
+      justify-content: center; }
+
+  .widgets {
+    height: 100px;
+    width: 100%;
+    flex-direction: row;
+    justify-content: space-around;
+    align-items: center; }
+    .widgets .widget-1 {
+      width: 50%;
+      flex-direction: row;
+      justify-content: space-around;
+      align-items: center; }
+    .widgets .widget-2 {
+      width: 30%;
+      display: flex;
+      flex-direction: row;
+      justify-content: center; }
+
+  .footer {
+    padding: 1rem 0.625rem; } }
+@media (min-width: 992px) {
+  .header {
+    width: 98%;
+    height: 56px; }
+    .header nav {
+      height: 56px; }
+
+  .relleno-header {
+    height: 56px; }
+
+  .contenido {
+    width: 70%; }
+
+  .widgets {
+    height: 123px;
+    padding-left: 30px;
+    padding-right: 30px;
+    justify-content: space-around;
+    flex-wrap: wrap;
+    align-content: center; }
+    .widgets .img-widget {
+      height: 83px; }
+    .widgets .widget-1 {
+      width: 460px;
+      display: flex;
+      justify-content: space-around; }
+    .widgets .widget-2 {
+      width: 350px; } }
+
+/*# sourceMappingURL=contenido-index.css.map */
diff --git a/UyTube_mobile/web/css/contenido-consulta-video.sass b/UyTube_mobile/web/css/contenido-consulta-video.sass
new file mode 100644
index 0000000000000000000000000000000000000000..0f08eaf1b4403c3f7e9594aa8c616d85302e859d
--- /dev/null
+++ b/UyTube_mobile/web/css/contenido-consulta-video.sass
@@ -0,0 +1,34 @@
+@import _colores
+
+.contenido 
+    width: 90%
+    margin: 20px auto
+    background-color: $colorGrisClaro
+    border-radius: 5px
+    padding: 0.9rem
+    text-justify: auto       
+    height: vh
+    display: grid
+    .widget
+        height: 123px
+    .contenido-lista
+        width: 405px
+        .lista-videos
+            width: 400px
+            display: flex
+            flex-direction: column
+            .row-lista-video
+                margin: 5px
+                display: flex
+                flex-wrap: nowrap                
+                .item-video
+                    width: 168px
+                .item-titulo
+                    width: 226px
+                    height: 94px
+                    padding: 0px 0px 0px 5px
+                    line-height: normal
+                    display: flex
+                    justify-content: center
+                    align-items: flex-start
+
diff --git a/UyTube_mobile/web/css/contenido-consulta-video2.sass b/UyTube_mobile/web/css/contenido-consulta-video2.sass
new file mode 100644
index 0000000000000000000000000000000000000000..0f08eaf1b4403c3f7e9594aa8c616d85302e859d
--- /dev/null
+++ b/UyTube_mobile/web/css/contenido-consulta-video2.sass
@@ -0,0 +1,34 @@
+@import _colores
+
+.contenido 
+    width: 90%
+    margin: 20px auto
+    background-color: $colorGrisClaro
+    border-radius: 5px
+    padding: 0.9rem
+    text-justify: auto       
+    height: vh
+    display: grid
+    .widget
+        height: 123px
+    .contenido-lista
+        width: 405px
+        .lista-videos
+            width: 400px
+            display: flex
+            flex-direction: column
+            .row-lista-video
+                margin: 5px
+                display: flex
+                flex-wrap: nowrap                
+                .item-video
+                    width: 168px
+                .item-titulo
+                    width: 226px
+                    height: 94px
+                    padding: 0px 0px 0px 5px
+                    line-height: normal
+                    display: flex
+                    justify-content: center
+                    align-items: flex-start
+
diff --git a/UyTube_mobile/web/css/contenido-index.css b/UyTube_mobile/web/css/contenido-index.css
new file mode 100644
index 0000000000000000000000000000000000000000..0bfbb9eb6007a6fa7a21213929c7fa5dfbf10f07
--- /dev/null
+++ b/UyTube_mobile/web/css/contenido-index.css
@@ -0,0 +1,128 @@
+.principal {
+  background-color: #f6f6f6;
+  min-height: 800px;
+  border-bottom: 2px solid #5aa1e3;
+  border-top: 2px solid #5aa1e3;
+  width: 100%; }
+
+.contenido {
+  background-color: #f6f6f6;
+  padding: 16px;
+  margin-left: auto;
+  margin-right: auto;
+  width: 1070px;
+  height: 100%; }
+  .contenido .contenido-flexible {
+    background-color: #f6f6f6;
+    margin-bottom: 16px;
+    display: flex;
+    flex-direction: row;
+    justify-content: space-between;
+    flex-wrap: wrap;
+    flex-grow: 0;
+    flex-shrink: 0; }
+    .contenido .contenido-flexible h3 {
+      width: 100%; }
+    .contenido .contenido-flexible .card {
+      width: 210px;
+      margin: 0px; }
+      .contenido .contenido-flexible .card .card-body {
+        height: 90px;
+        background-color: #f6f6f6;
+        overflow-wrap: break-word; }
+        .contenido .contenido-flexible .card .card-body a {
+          text-decoration: none; }
+        .contenido .contenido-flexible .card .card-body h6 {
+          color: #0d0d0d;
+          font-size: 1rem; }
+
+@media (max-width: 340px) {
+  .container-fluid {
+    padding-left: 0px;
+    padding-right: 0px; }
+
+  .contenido {
+    width: 100%;
+    padding-left: 2px;
+    padding-right: 2px; }
+    .contenido .contenido-flexible {
+      width: 100%;
+      justify-content: flex-start; }
+      .contenido .contenido-flexible .card {
+        width: 100%; } }
+@media (min-width: 341px) and (max-width: 387px) {
+  .container-fluid {
+    padding-left: 0px;
+    padding-right: 0px; }
+
+  .contenido {
+    width: 330px;
+    padding-left: 2px;
+    padding-right: 2px; }
+    .contenido .contenido-flexible {
+      width: 100%;
+      justify-content: flex-start; }
+      .contenido .contenido-flexible .card {
+        width: 325px; } }
+@media (min-width: 388px) and (max-width: 500px) {
+  .container-fluid {
+    padding-left: 0px;
+    padding-right: 0px; }
+
+  .contenido {
+    width: 388px;
+    padding-left: 2px;
+    padding-right: 2px; }
+    .contenido .contenido-flexible {
+      width: 100%;
+      justify-content: flex-start; }
+      .contenido .contenido-flexible .card {
+        width: 186px; }
+    .contenido .h3 {
+      width: 90%; } }
+@media (min-width: 501px) and (max-width: 575.98px) {
+  .container-fluid {
+    padding-left: 0px;
+    padding-right: 0px; }
+
+  .contenido {
+    width: 501px; }
+    .contenido .contenido-flexible {
+      width: 100%;
+      justify-content: flex-start; }
+      .contenido .contenido-flexible .card {
+        width: 230.5px; } }
+@media (min-width: 576px) and (max-width: 767.98px) {
+  .container-fluid {
+    padding-left: 0px;
+    padding-right: 0px; }
+
+  .contenido {
+    width: 576px; }
+    .contenido .contenido-flexible {
+      width: 100%;
+      justify-content: flex-start; }
+      .contenido .contenido-flexible .card {
+        width: 177px; } }
+@media (min-width: 768px) and (max-width: 991.98px) {
+  .container-fluid {
+    padding-left: 0px;
+    padding-right: 0px; }
+
+  .contenido {
+    width: 664px; }
+    .contenido .contenido-flexible {
+      width: 100%;
+      justify-content: flex-start; } }
+@media (min-width: 992px) {
+  .container-fluid {
+    padding-left: 0px;
+    padding-right: 0px; }
+
+  .contenido {
+    width: 872px; }
+    .contenido .contenido-flexible {
+      width: 100%;
+      justify-content: flex-start; } }
+
+/*# sourceMappingURL=contenido-index.css.map */
diff --git a/UyTube_mobile/web/css/contenido-index.sass b/UyTube_mobile/web/css/contenido-index.sass
new file mode 100644
index 0000000000000000000000000000000000000000..960d910cb3cc054050f9f9034e1dcb09dec019e6
--- /dev/null
+++ b/UyTube_mobile/web/css/contenido-index.sass
@@ -0,0 +1,160 @@
+@import _colores
+
+.principal
+    background-color: $colorGrisClaro
+    min-height: 800px
+    border-bottom: 2px solid $colorCelesteClaro
+    border-top: 2px solid $colorCelesteClaro
+    width: 100%
+
+.contenido    
+    background-color: $colorGrisClaro
+    padding: 16px
+    margin-left: auto
+    margin-right: auto
+    width: 1070px   
+    height: 100%
+    .contenido-flexible
+        background-color: $colorGrisClaro
+        margin-bottom: 16px
+        display: flex
+        flex-direction: row
+        justify-content: space-between
+        flex-wrap: wrap
+        flex-grow: 0
+        flex-shrink: 0
+        h3
+            width: 100%
+        .card
+            width: 210px
+            margin: 0px
+            .card-body
+                height: 90px
+                background-color: $colorGrisClaro
+                overflow-wrap: break-word
+                a 
+                    text-decoration: none
+                h6 
+                    color: $tituloItem
+                    font-size: 1rem
+
+
+// Para un maximo de 340px ================================================================================  
+@media (max-width: 340px) 
+    .container-fluid
+        padding-left: 0px
+        padding-right: 0px
+    
+    //estilos del contenido principal
+    .contenido
+        width: 100%
+        padding-left: 2px
+        padding-right: 2px
+        .contenido-flexible
+            width: 100%
+            justify-content: flex-start
+            .card
+                width: 100%
+    
+
+// Para dispositivos mayores a 340 y menores a 388 ==============================================================
+@media (min-width: 341px) and (max-width: 387px)
+    .container-fluid
+        padding-left: 0px
+        padding-right: 0px
+    
+    //estilos del contenido principal
+    .contenido
+        width: 330px
+        padding-left: 2px
+        padding-right: 2px
+        .contenido-flexible
+            width: 100%
+            justify-content: flex-start
+            .card
+                width: 325px
+
+   
+    
+// Para dispositivos mayores a 387 y menores a 500 ================================================================
+@media (min-width: 388px) and (max-width: 500px)
+    .container-fluid
+        padding-left: 0px
+        padding-right: 0px
+    
+    //estilos del contenido principal
+    .contenido
+        width: 388px
+        padding-left: 2px
+        padding-right: 2px
+        .contenido-flexible
+            width: 100%
+            justify-content: flex-start
+            .card
+                width: 186px
+        .h3
+            width: 90%
+      
+        
+// Extra small devices (portrait phones, less than 576px) =======================================================
+@media (min-width: 501px) and (max-width: 575.98px)
+    .container-fluid
+        padding-left: 0px
+        padding-right: 0px
+    
+    //Estilos del contenido principal
+    .contenido
+        width: 501px
+        .contenido-flexible
+            width: 100%
+            justify-content: flex-start
+            .card
+                width: 230.5px
+        
+
+// Small devices (landscape phones, 576px and up) ================================================================
+@media (min-width: 576px) and (max-width: 767.98px)
+    .container-fluid
+        padding-left: 0px
+        padding-right: 0px
+    
+    //Estilos del contenido principal
+    .contenido
+        width: 576px
+        .contenido-flexible
+            width: 100%
+            justify-content: flex-start
+            .card
+                width: 177px
+          
+
+// Medium devices (tablets, 768px and up)
+@media (min-width: 768px) and (max-width: 991.98px)
+    .container-fluid
+        padding-left: 0px
+        padding-right: 0px
+    
+    //Estilos del contenido principal
+    .contenido
+        width: 664px
+        .contenido-flexible
+            width: 100%
+            justify-content: flex-start
+    
+    
+// Large devices (desktops, 992px and up) =======================================================================
+@media (min-width: 992px)
+    .container-fluid
+        padding-left: 0px
+        padding-right: 0px
+    //Estilos del contenido principal
+    .contenido
+        width: 872px
+        .contenido-flexible
+            width: 100%
+            justify-content: flex-start
+
+        
+    
+
+            
\ No newline at end of file
diff --git a/UyTube_mobile/web/css/contenido-iniciar-sesion.css b/UyTube_mobile/web/css/contenido-iniciar-sesion.css
new file mode 100644
index 0000000000000000000000000000000000000000..77b484b723807b0d3b7ebeeba68cedf278721bb3
--- /dev/null
+++ b/UyTube_mobile/web/css/contenido-iniciar-sesion.css
@@ -0,0 +1,106 @@
+.principal {
+  background-color: #f6f6f6;
+  min-height: 800px;
+  border-bottom: 2px solid #5aa1e3;
+  border-top: 2px solid #5aa1e3;
+  width: 100%; }
+
+.contenido {
+  background-color: #f6f6f6;
+  padding: 16px;
+  margin-left: auto;
+  margin-right: auto;
+  width: 1070px;
+  height: 100%; }
+  .contenido .contenido-flexible {
+    background-color: #f6f6f6;
+    margin-bottom: 16px;
+    display: flex;
+    flex-direction: row;
+    justify-content: space-between;
+    flex-wrap: wrap;
+    flex-grow: 0;
+    flex-shrink: 0; }
+    .contenido .contenido-flexible h3 {
+      width: 100%; }
+
+@media (max-width: 340px) {
+  .container-fluid {
+    padding-left: 0px;
+    padding-right: 0px; }
+
+  .contenido {
+    width: 100%;
+    padding-left: 2px;
+    padding-right: 2px; }
+    .contenido .contenido-flexible {
+      width: 100%;
+      justify-content: flex-start; } }
+@media (min-width: 341px) and (max-width: 387px) {
+  .container-fluid {
+    padding-left: 0px;
+    padding-right: 0px; }
+
+  .contenido {
+    width: 330px;
+    padding-left: 2px;
+    padding-right: 2px; }
+    .contenido .contenido-flexible {
+      width: 100%;
+      justify-content: flex-start; } }
+@media (min-width: 388px) and (max-width: 500px) {
+  .container-fluid {
+    padding-left: 0px;
+    padding-right: 0px; }
+
+  .contenido {
+    width: 388px;
+    padding-left: 2px;
+    padding-right: 2px; }
+    .contenido .contenido-flexible {
+      width: 100%;
+      justify-content: flex-start; }
+    .contenido .h3 {
+      width: 90%; } }
+@media (min-width: 501px) and (max-width: 575.98px) {
+  .container-fluid {
+    padding-left: 0px;
+    padding-right: 0px; }
+
+  .contenido {
+    width: 501px; }
+    .contenido .contenido-flexible {
+      width: 100%;
+      justify-content: flex-start; } }
+@media (min-width: 576px) and (max-width: 767.98px) {
+  .container-fluid {
+    padding-left: 0px;
+    padding-right: 0px; }
+
+  .contenido {
+    width: 576px; }
+    .contenido .contenido-flexible {
+      width: 100%;
+      justify-content: flex-start; } }
+@media (min-width: 768px) and (max-width: 991.98px) {
+  .container-fluid {
+    padding-left: 0px;
+    padding-right: 0px; }
+
+  .contenido {
+    width: 664px; }
+    .contenido .contenido-flexible {
+      width: 100%;
+      justify-content: flex-start; } }
+@media (min-width: 992px) {
+  .container-fluid {
+    padding-left: 0px;
+    padding-right: 0px; }
+
+  .contenido {
+    width: 872px; }
+    .contenido .contenido-flexible {
+      width: 100%;
+      justify-content: flex-start; } }
+
+/*# sourceMappingURL=contenido-iniciar-sesion.css.map */
diff --git a/UyTube_mobile/web/css/contenido-iniciar-sesion.sass b/UyTube_mobile/web/css/contenido-iniciar-sesion.sass
new file mode 100644
index 0000000000000000000000000000000000000000..4f014c762ffce4fbc430f5e5860cbc40edf22482
--- /dev/null
+++ b/UyTube_mobile/web/css/contenido-iniciar-sesion.sass
@@ -0,0 +1,139 @@
+@import _colores
+
+.principal
+    background-color: $colorGrisClaro
+    min-height: 800px
+    border-bottom: 2px solid $colorCelesteClaro
+    border-top: 2px solid $colorCelesteClaro
+    width: 100%
+
+.contenido    
+    background-color: $colorGrisClaro
+    padding: 16px
+    margin-left: auto
+    margin-right: auto
+    width: 1070px   
+    height: 100%
+    .contenido-flexible
+        background-color: $colorGrisClaro
+        margin-bottom: 16px
+        display: flex
+        flex-direction: row
+        justify-content: space-between
+        flex-wrap: wrap
+        flex-grow: 0
+        flex-shrink: 0
+        h3
+            width: 100%
+        
+
+// Para un maximo de 340px ================================================================================  
+@media (max-width: 340px) 
+    .container-fluid
+        padding-left: 0px
+        padding-right: 0px
+    
+    //estilos del contenido principal
+    .contenido
+        width: 100%
+        padding-left: 2px
+        padding-right: 2px
+        .contenido-flexible
+            width: 100%
+            justify-content: flex-start
+            
+
+// Para dispositivos mayores a 340 y menores a 388 ==============================================================
+@media (min-width: 341px) and (max-width: 387px)
+    .container-fluid
+        padding-left: 0px
+        padding-right: 0px
+    
+    //estilos del contenido principal
+    .contenido
+        width: 330px
+        padding-left: 2px
+        padding-right: 2px
+        .contenido-flexible
+            width: 100%
+            justify-content: flex-start
+            
+   
+    
+// Para dispositivos mayores a 387 y menores a 500 ================================================================
+@media (min-width: 388px) and (max-width: 500px)
+    .container-fluid
+        padding-left: 0px
+        padding-right: 0px
+    
+    //estilos del contenido principal
+    .contenido
+        width: 388px
+        padding-left: 2px
+        padding-right: 2px
+        .contenido-flexible
+            width: 100%
+            justify-content: flex-start
+            
+        .h3
+            width: 90%
+      
+        
+// Extra small devices (portrait phones, less than 576px) =======================================================
+@media (min-width: 501px) and (max-width: 575.98px)
+    .container-fluid
+        padding-left: 0px
+        padding-right: 0px
+    
+    //Estilos del contenido principal
+    .contenido
+        width: 501px
+        .contenido-flexible
+            width: 100%
+            justify-content: flex-start
+            
+
+// Small devices (landscape phones, 576px and up) ================================================================
+@media (min-width: 576px) and (max-width: 767.98px)
+    .container-fluid
+        padding-left: 0px
+        padding-right: 0px
+    
+    //Estilos del contenido principal
+    .contenido
+        width: 576px
+        .contenido-flexible
+            width: 100%
+            justify-content: flex-start
+        
+
+// Medium devices (tablets, 768px and up)
+@media (min-width: 768px) and (max-width: 991.98px)
+    .container-fluid
+        padding-left: 0px
+        padding-right: 0px
+    
+    //Estilos del contenido principal
+    .contenido
+        width: 664px
+        .contenido-flexible
+            width: 100%
+            justify-content: flex-start
+    
+    
+// Large devices (desktops, 992px and up) =======================================================================
+@media (min-width: 992px)
+    .container-fluid
+        padding-left: 0px
+        padding-right: 0px
+    //Estilos del contenido principal
+    .contenido
+        width: 872px
+        .contenido-flexible
+            width: 100%
+            justify-content: flex-start
+
+        
+    
+
+            
\ No newline at end of file
diff --git a/UyTube_mobile/web/css/footer.css b/UyTube_mobile/web/css/footer.css
new file mode 100644
index 0000000000000000000000000000000000000000..761cd4ad8e6d5295798475856a0d6cbd6703800f
--- /dev/null
+++ b/UyTube_mobile/web/css/footer.css
@@ -0,0 +1,22 @@
+.footer {
+  background-color: #00001a;
+  border-bottom: 2px solid #5aa1e3;
+  padding: 1rem;
+  margin-bottom: 2px;
+  color: #fff;
+  display: flex;
+  flex-direction: column;
+  justify-content: space-around;
+  align-items: flex-start; }
+
+@media (min-width: 388px) and (max-width: 500px) {
+  .footer {
+    padding: 1rem 0.625rem; } }
+@media (min-width: 501px) and (max-width: 575.98px) {
+  .footer {
+    padding: 1rem 0.625rem; } }
+@media (min-width: 576px) and (max-width: 767.98px) {
+  .footer {
+    padding: 1rem 0.625rem; } }
+
+/*# sourceMappingURL=footer.css.map */
diff --git a/UyTube_mobile/web/css/footer.sass b/UyTube_mobile/web/css/footer.sass
new file mode 100644
index 0000000000000000000000000000000000000000..80563641c0feab665cf08bec8da6deb1a296d72e
--- /dev/null
+++ b/UyTube_mobile/web/css/footer.sass
@@ -0,0 +1,42 @@
+@import _colores
+
+.footer
+    background-color: $colorHeaderMenuFooter
+    border-bottom: 2px solid $colorCelesteClaro
+    padding: 1rem
+    margin-bottom: 2px
+    color: $colorBlanco
+    display: flex
+    flex-direction: column
+    justify-content: space-around
+    align-items: flex-start
+
+// Para un maximo de 340px ================================================================================  
+@media (max-width: 340px) 
+   
+   
+// Para dispositivos mayores a 340 y menores a 388 ==============================================================
+@media (min-width: 341px) and (max-width: 387px)
+
+
+// Para dispositivos mayores a 387 y menores a 500 ================================================================
+@media (min-width: 388px) and (max-width: 500px)
+    .footer
+        padding: 1rem 0.625rem
+// Extra small devices (portrait phones, less than 576px) =======================================================
+@media (min-width: 501px) and (max-width: 575.98px)
+    .footer
+        padding: 1rem 0.625rem
+
+// Small devices (landscape phones, 576px and up) ================================================================
+@media (min-width: 576px) and (max-width: 767.98px)
+    .footer
+        padding: 1rem 0.625rem        
+
+// Medium devices (tablets, 768px and up)
+@media (min-width: 768px) and (max-width: 991.98px)
+           
+
+// Large devices (desktops, 992px and up) =======================================================================
+@media (min-width: 992px)
+    
\ No newline at end of file
diff --git a/UyTube_mobile/web/css/header.css b/UyTube_mobile/web/css/header.css
new file mode 100644
index 0000000000000000000000000000000000000000..9fb955e5f5e821d2476f2ab2046a0ce0d4a0220f
--- /dev/null
+++ b/UyTube_mobile/web/css/header.css
@@ -0,0 +1,310 @@
+.header {
+  z-index: 9;
+  background-color: #00001a;
+  margin: 0px;
+  left: 0px;
+  padding-left: 20px;
+  padding-right: 20px; }
+  .header nav {
+    display: flex;
+    flex-wrap: wrap;
+    justify-content: space-between;
+    height: 100%; }
+    .header nav .item-header {
+      display: flex;
+      flex-wrap: wrap;
+      align-items: center;
+      justify-content: space-between;
+      padding: 0rem 0rem; }
+      .header nav .item-header #nombrePerfil {
+        color: #fff; }
+      .header nav .item-header .fotoLogo {
+        height: 30px;
+        margin-bottom: 2px; }
+      .header nav .item-header #fotoPerfil {
+        height: 38px;
+        width: 38px;
+        margin-left: 15px;
+        border: 2px solid #007bff;
+        border-radius: 50%; }
+      .header nav .item-header .formBuscar {
+        display: flex;
+        justify-content: center;
+        flex-wrap: nowrap; }
+        .header nav .item-header .formBuscar input {
+          height: 32px;
+          width: 400px;
+          border: 1px solid #ced4da;
+          border-radius: 0.25rem;
+          font-size: 1rem;
+          padding: 0.375rem 0.75rem; }
+      .header nav .item-header a {
+        color: #fff;
+        text-decoration: none; }
+      .header nav .item-header .icon-menu1 {
+        color: #fff;
+        margin-right: 16px;
+        margin-top: 8px;
+        font-size: 1.62rem;
+        cursor: pointer; }
+    .header nav .btn {
+      height: 32px;
+      padding: 0px 10px; }
+
+@media (max-width: 340px) {
+  .header {
+    position: absolute;
+    width: 100%;
+    left: 0px;
+    height: 56px; }
+    .header nav {
+      height: 100%; }
+      .header nav .item-header1 {
+        padding-left: 0px;
+        padding-right: 0px;
+        width: 10%; }
+        .header nav .item-header1 .fotoLogo {
+          display: none; }
+      .header nav .item-header2 {
+        order: 2;
+        width: 90%; }
+      .header nav .item-header3 {
+        order: 3; }
+        .header nav .item-header3 .fotoPerfil {
+          display: none; }
+      .header nav #iniciar-sesion {
+        display: none; }
+      .header nav #nombrePerfil {
+        display: none; }
+
+  .relleno-header {
+    height: 56px; }
+
+  #navLogo {
+    justify-content: center;
+    align-items: center; }
+    #navLogo .icon-menu1 {
+      margin-left: 10px;
+      margin-right: 16px;
+      margin-top: 12px; }
+
+  #navbarSupportedContent {
+    width: 100%; }
+
+  #formBuscar {
+    display: flex;
+    justify-content: space-between;
+    width: 100%; }
+    #formBuscar input {
+      width: 100%; }
+    #formBuscar #btnBuscar {
+      display: none; } }
+@media (min-width: 341px) and (max-width: 387px) {
+  .header {
+    position: absolute;
+    width: 100%;
+    left: 0px;
+    height: 56px; }
+    .header nav {
+      height: 100%; }
+      .header nav .item-header1 {
+        padding-left: 0px;
+        padding-right: 0px;
+        width: 10%; }
+        .header nav .item-header1 .fotoLogo {
+          display: none; }
+      .header nav .item-header2 {
+        order: 2;
+        width: 90%; }
+      .header nav .item-header3 {
+        order: 3; }
+        .header nav .item-header3 .fotoPerfil {
+          display: none; }
+      .header nav #iniciar-sesion {
+        display: none; }
+      .header nav #nombrePerfil {
+        display: none; }
+
+  .relleno-header {
+    height: 56px; }
+
+  #navLogo {
+    justify-content: center;
+    align-items: center; }
+    #navLogo .icon-menu1 {
+      margin-left: 10px;
+      margin-right: 16px;
+      margin-top: 12px; }
+
+  #navbarSupportedContent {
+    width: 100%; }
+
+  #formBuscar {
+    display: flex;
+    justify-content: space-between;
+    width: 100%; }
+    #formBuscar input {
+      width: 100%; }
+    #formBuscar #btnBuscar {
+      display: none; } }
+@media (min-width: 388px) and (max-width: 500px) {
+  .header {
+    position: absolute;
+    width: 100%;
+    left: 0px;
+    height: 56px; }
+    .header nav {
+      height: 100%; }
+      .header nav .item-header1 {
+        padding-left: 5px;
+        padding-right: 0px;
+        width: 10%; }
+        .header nav .item-header1 .fotoLogo {
+          display: none; }
+      .header nav .item-header2 {
+        order: 2;
+        width: 90%; }
+      .header nav .item-header3 {
+        order: 3; }
+        .header nav .item-header3 .fotoPerfil {
+          display: none; }
+      .header nav #iniciar-sesion {
+        display: none; }
+      .header nav #nombrePerfil {
+        display: none; }
+
+  .relleno-header {
+    height: 56px; }
+
+  #navLogo {
+    justify-content: center;
+    align-items: center; }
+    #navLogo .icon-menu1 {
+      margin-left: 10px;
+      margin-right: 16px;
+      margin-top: 14px; }
+
+  #navbarSupportedContent {
+    width: 100%; }
+
+  #formBuscar {
+    display: flex;
+    justify-content: space-between;
+    width: 100%; }
+    #formBuscar input {
+      width: 100%; }
+    #formBuscar #btnBuscar {
+      display: none; } }
+@media (min-width: 501px) and (max-width: 575.98px) {
+  .header {
+    position: absolute;
+    width: 100%;
+    left: 0rem;
+    height: 56px;
+    justify-items: flex-start;
+    align-content: center; }
+    .header nav {
+      height: 100%; }
+    .header .item-header2 {
+      order: 2;
+      width: 65%; }
+    .header .item-header3 {
+      order: 3; }
+      .header .item-header3 .fotoPerfil {
+        display: none; }
+    .header #iniciar-sesion {
+      display: none; }
+    .header #nombrePerfil {
+      display: none; }
+
+  .relleno-header {
+    height: 56px; }
+
+  #navLogo {
+    justify-content: flex-start; }
+    #navLogo .icon-menu1 {
+      margin-left: 5px;
+      margin-right: 5px; }
+
+  #navbarSupportedContent {
+    width: 100%; }
+
+  #formBuscar {
+    display: flex;
+    justify-content: space-between;
+    width: 100%; }
+    #formBuscar input {
+      width: 100%; }
+    #formBuscar #btnBuscar {
+      display: none; } }
+@media (min-width: 576px) and (max-width: 767.98px) {
+  .header {
+    position: absolute;
+    width: 100%;
+    left: 0rem;
+    height: 56px;
+    justify-items: flex-start;
+    align-content: center; }
+    .header nav {
+      height: 100%; }
+    .header .item-header2 {
+      order: 2;
+      width: 65%; }
+    .header .item-header3 {
+      order: 3; }
+      .header .item-header3 .fotoPerfil {
+        display: none; }
+    .header #iniciar-sesion {
+      display: none; }
+    .header #nombrePerfil {
+      display: none; }
+
+  .relleno-header {
+    height: 56px; }
+
+  #navLogo {
+    justify-content: flex-start; }
+
+  #navbarSupportedContent {
+    width: 100%; }
+    #navbarSupportedContent #formBuscar {
+      display: flex;
+      justify-content: space-between;
+      width: 100%; }
+      #navbarSupportedContent #formBuscar input {
+        width: 87%; }
+      #navbarSupportedContent #formBuscar #btnBuscar {
+        display: none; } }
+@media (min-width: 768px) and (max-width: 991.98px) {
+  .header {
+    position: absolute;
+    width: 100%;
+    left: 0rem;
+    height: 56px; }
+    .header nav {
+      justify-content: space-between; }
+      .header nav #navLogo {
+        justify-content: space-between; }
+      .header nav #navbarSupportedContent {
+        width: 100%; }
+        .header nav #navbarSupportedContent #formBuscar {
+          display: flex;
+          justify-content: space-between;
+          width: 100%; }
+          .header nav #navbarSupportedContent #formBuscar input {
+            width: 87%; }
+
+  .relleno-header {
+    height: 56px; } }
+@media (min-width: 992px) {
+  .header {
+    position: fixed;
+    width: 100%;
+    left: 0px;
+    top: 0px;
+    height: 56px; }
+
+  .relleno-header {
+    height: 56px; } }
+
+/*# sourceMappingURL=header.css.map */
diff --git a/UyTube_mobile/web/css/header.css.map b/UyTube_mobile/web/css/header.css.map
new file mode 100644
index 0000000000000000000000000000000000000000..d987e01281c761acbf6ce871e7f0d3f0c3932fd2
--- /dev/null
+++ b/UyTube_mobile/web/css/header.css.map
@@ -0,0 +1,7 @@
+{
+"version": 3,
+"mappings": "AAGA,OAAO;EACH,OAAO,EAAE,CAAC;EACV,gBAAgB,ECII,OAAO;EDH3B,MAAM,EAAE,GAAG;EACX,IAAI,EAAE,GAAG;EACT,YAAY,EAAE,IAAI;EAClB,aAAa,EAAE,IAAI;EAEnB,WAAG;IACC,OAAO,EAAE,IAAI;IACb,SAAS,EAAE,IAAI;IACf,eAAe,EAAE,aAAa;IAC9B,MAAM,EAAE,IAAI;IAEZ,wBAAY;MACR,OAAO,EAAE,IAAI;MACb,SAAS,EAAE,IAAI;MACf,WAAW,EAAE,MAAM;MACnB,eAAe,EAAE,aAAa;MAC9B,OAAO,EAAE,SAAS;MAIlB,sCAAa;QACT,KAAK,EChBP,IAAI;MDiBN,kCAAS;QACL,MAAM,EAAE,IAAI;QACZ,aAAa,EAAE,GAAG;MACtB,oCAAW;QACP,MAAM,EAAE,IAAI;QACZ,KAAK,EAAE,IAAI;QACX,WAAW,EAAE,IAAI;QACjB,MAAM,EAAE,iBAAuB;QAC/B,aAAa,EAAE,GAAG;MACtB,oCAAW;QACP,OAAO,EAAE,IAAI;QACb,eAAe,EAAE,MAAM;QACvB,SAAS,EAAE,MAAM;QACjB,0CAAK;UACD,MAAM,EAAE,IAAI;UACZ,KAAK,EAAE,KAAK;UACZ,MAAM,EAAE,iBAAiB;UACzB,aAAa,EAAE,OAAO;UACtB,SAAS,EAAE,IAAI;UACf,OAAO,EAAE,gBAAgB;MACjC,0BAAC;QACG,KAAK,ECtCP,IAAI;QDuCF,eAAe,EAAE,IAAI;MAIzB,oCAAW;QACP,KAAK,EC5CP,IAAI;QD6CF,YAAY,EAAE,IAAI;QAClB,UAAU,EAAE,GAAG;QACf,SAAS,EAAE,OAAO;QAClB,MAAM,EAAE,OAAO;IAEvB,gBAAI;MACA,MAAM,EAAE,IAAI;MACZ,OAAO,EAAE,QAAQ;;AAG7B,yBAAyB;EACrB,OAAO;IACH,QAAQ,EAAE,QAAQ;IAClB,KAAK,EAAE,IAAI;IACX,IAAI,EAAE,GAAG;IACT,MAAM,EEtEI,IAAI;IFuEd,WAAG;MACC,MAAM,EAAE,IAAI;MACZ,yBAAa;QACT,YAAY,EAAE,GAAG;QACjB,aAAa,EAAE,GAAG;QAClB,KAAK,EAAE,GAAG;QACV,mCAAS;UACL,OAAO,EAAE,IAAI;MACrB,yBAAa;QACT,KAAK,EAAE,CAAC;QACR,KAAK,EAAE,GAAG;MACd,yBAAa;QACT,KAAK,EAAE,CAAC;QACR,qCAAW;UACP,OAAO,EAAE,IAAI;MACrB,2BAAe;QACX,OAAO,EAAE,IAAI;MACjB,yBAAa;QACT,OAAO,EAAE,IAAI;;EAEzB,eAAe;IACX,MAAM,EE1FI,IAAI;;EF4FlB,QAAQ;IACJ,eAAe,EAAE,MAAM;IACvB,WAAW,EAAE,MAAM;IACnB,oBAAW;MACP,WAAW,EAAE,IAAI;MACjB,YAAY,EAAE,IAAI;MAClB,UAAU,EAAE,IAAI;;EAExB,uBAAuB;IACnB,KAAK,EAAE,IAAI;;EAEf,WAAW;IACP,OAAO,EAAE,IAAI;IACb,eAAe,EAAE,aAAa;IAC9B,KAAK,EAAE,IAAI;IACX,iBAAK;MACD,KAAK,EAAE,IAAI;IAEf,sBAAU;MACN,OAAO,EAAE,IAAI;AAGzB,gDAAgD;EAC5C,OAAO;IACH,QAAQ,EAAE,QAAQ;IAClB,KAAK,EAAE,IAAI;IACX,IAAI,EAAE,GAAG;IACT,MAAM,EErHI,IAAI;IFsHd,WAAG;MACC,MAAM,EAAE,IAAI;MACZ,yBAAa;QACT,YAAY,EAAE,GAAG;QACjB,aAAa,EAAE,GAAG;QAClB,KAAK,EAAE,GAAG;QACV,mCAAS;UACL,OAAO,EAAE,IAAI;MACrB,yBAAa;QACT,KAAK,EAAE,CAAC;QACR,KAAK,EAAE,GAAG;MACd,yBAAa;QACT,KAAK,EAAE,CAAC;QACR,qCAAW;UACP,OAAO,EAAE,IAAI;MACrB,2BAAe;QACX,OAAO,EAAE,IAAI;MACjB,yBAAa;QACT,OAAO,EAAE,IAAI;;EAEzB,eAAe;IACX,MAAM,EE7II,IAAI;;EF+IlB,QAAQ;IACJ,eAAe,EAAE,MAAM;IACvB,WAAW,EAAE,MAAM;IACnB,oBAAW;MACP,WAAW,EAAE,IAAI;MACjB,YAAY,EAAE,IAAI;MAClB,UAAU,EAAE,IAAI;;EAExB,uBAAuB;IACnB,KAAK,EAAE,IAAI;;EAEf,WAAW;IACP,OAAO,EAAE,IAAI;IACb,eAAe,EAAE,aAAa;IAC9B,KAAK,EAAE,IAAI;IACX,iBAAK;MACD,KAAK,EAAE,IAAI;IAEf,sBAAU;MACN,OAAO,EAAE,IAAI;AAGzB,gDAAgD;EAC5C,OAAO;IACH,QAAQ,EAAE,QAAQ;IAClB,KAAK,EAAE,IAAI;IACX,IAAI,EAAE,GAAG;IACT,MAAM,EExKI,IAAI;IFyKd,WAAG;MACC,MAAM,EAAE,IAAI;MACZ,yBAAa;QACT,YAAY,EAAE,GAAG;QACjB,aAAa,EAAE,GAAG;QAClB,KAAK,EAAE,GAAG;QACV,mCAAS;UACL,OAAO,EAAE,IAAI;MACrB,yBAAa;QACT,KAAK,EAAE,CAAC;QACR,KAAK,EAAE,GAAG;MACd,yBAAa;QACT,KAAK,EAAE,CAAC;QACR,qCAAW;UACP,OAAO,EAAE,IAAI;MACrB,2BAAe;QACX,OAAO,EAAE,IAAI;MACjB,yBAAa;QACT,OAAO,EAAE,IAAI;;EAEzB,eAAe;IACX,MAAM,EE9LI,IAAI;;EFiMlB,QAAQ;IACJ,eAAe,EAAE,MAAM;IACvB,WAAW,EAAE,MAAM;IACnB,oBAAW;MACP,WAAW,EAAE,IAAI;MACjB,YAAY,EAAE,IAAI;MAClB,UAAU,EAAE,IAAI;;EAExB,uBAAuB;IACnB,KAAK,EAAE,IAAI;;EAEf,WAAW;IACP,OAAO,EAAE,IAAI;IACb,eAAe,EAAE,aAAa;IAC9B,KAAK,EAAE,IAAI;IACX,iBAAK;MACD,KAAK,EAAE,IAAI;IAEf,sBAAU;MACN,OAAO,EAAE,IAAI;AAGzB,mDAAmD;EAE/C,OAAO;IACH,QAAQ,EAAE,QAAQ;IAClB,KAAK,EAAE,IAAI;IACX,IAAI,EAAE,IAAI;IACV,MAAM,EEzNI,IAAI;IF0Nd,aAAa,EAAE,UAAU;IACzB,aAAa,EAAE,MAAM;IACrB,WAAG;MACC,MAAM,EAAE,IAAI;IAChB,qBAAa;MACT,KAAK,EAAE,CAAC;MACR,KAAK,EAAE,GAAG;IACd,qBAAa;MACT,KAAK,EAAE,CAAC;MACR,iCAAW;QACP,OAAO,EAAE,IAAI;IACrB,uBAAe;MACX,OAAO,EAAE,IAAI;IACjB,qBAAa;MACT,OAAO,EAAE,IAAI;;EAGrB,eAAe;IACX,MAAM,EE9OI,IAAI;;EFgPlB,QAAQ;IACJ,eAAe,EAAE,UAAU;IAC3B,oBAAW;MACP,WAAW,EAAE,GAAG;MAChB,YAAY,EAAE,GAAG;;EAEzB,uBAAuB;IACnB,KAAK,EAAE,IAAI;;EAEf,WAAW;IACP,OAAO,EAAE,IAAI;IACb,eAAe,EAAE,aAAa;IAC9B,KAAK,EAAE,IAAI;IACX,iBAAK;MACD,KAAK,EAAE,IAAI;IAEf,sBAAU;MACN,OAAO,EAAE,IAAI;AAIzB,mDAAmD;EAE/C,OAAO;IACH,QAAQ,EAAE,QAAQ;IAClB,KAAK,EAAE,IAAI;IACX,IAAI,EAAE,IAAI;IACV,MAAM,EEzQI,IAAI;IF0Qd,aAAa,EAAE,UAAU;IACzB,aAAa,EAAE,MAAM;IACrB,WAAG;MACC,MAAM,EAAE,IAAI;IAChB,qBAAa;MACT,KAAK,EAAE,CAAC;MACR,KAAK,EAAE,GAAG;IACd,qBAAa;MACT,KAAK,EAAE,CAAC;MACR,iCAAW;QACP,OAAO,EAAE,IAAI;IACrB,uBAAe;MACX,OAAO,EAAE,IAAI;IACjB,qBAAa;MACT,OAAO,EAAE,IAAI;;EAGrB,eAAe;IACX,MAAM,EE5RI,IAAI;;EF8RlB,QAAQ;IACJ,eAAe,EAAE,UAAU;;EAE/B,uBAAuB;IACnB,KAAK,EAAE,IAAI;IACX,mCAAW;MACP,OAAO,EAAE,IAAI;MACb,eAAe,EAAE,aAAa;MAC9B,KAAK,EAAE,IAAI;MACX,yCAAK;QACD,KAAK,EAAE,GAAG;MACd,8CAAU;QACN,OAAO,EAAE,IAAI;AAK7B,mDAAmD;EAE/C,OAAO;IACH,QAAQ,EAAE,QAAQ;IAClB,KAAK,EAAE,IAAI;IACX,IAAI,EAAE,IAAI;IACV,MAAM,EEnTI,IAAI;IFoTd,WAAG;MAEC,eAAe,EAAE,aAAa;MAE9B,oBAAQ;QACJ,eAAe,EAAE,aAAa;MAElC,mCAAuB;QACnB,KAAK,EAAE,IAAI;QACX,+CAAW;UACP,OAAO,EAAE,IAAI;UACb,eAAe,EAAE,aAAa;UAC9B,KAAK,EAAE,IAAI;UACX,qDAAK;YACD,KAAK,EAAE,GAAG;;EAE9B,eAAe;IACX,MAAM,EErUI,IAAI;AFyUtB,yBAAyB;EAGrB,OAAO;IACH,QAAQ,EAAE,KAAK;IACf,KAAK,EAAE,IAAI;IACX,IAAI,EAAE,GAAG;IACT,GAAG,EAAE,GAAG;IACR,MAAM,EE/UI,IAAI;;EFkVlB,eAAe;IACX,MAAM,EEnVI,IAAI",
+"sources": ["header.sass","_colores.sass","_alturas.sass"],
+"names": [],
+"file": "header.css"
+}
\ No newline at end of file
diff --git a/UyTube_mobile/web/css/header.sass b/UyTube_mobile/web/css/header.sass
new file mode 100644
index 0000000000000000000000000000000000000000..9a0211ba2e3be23e6af27634dbb6cff0a8d08699
--- /dev/null
+++ b/UyTube_mobile/web/css/header.sass
@@ -0,0 +1,355 @@
+@import _colores
+@import _alturas
+
+.header 
+    z-index: 9
+    background-color: $colorHeaderMenuFooter
+    margin: 0px
+    left: 0px
+    padding-left: 20px
+    padding-right: 20px
+    //Estilos del nav
+    nav
+        display: flex
+        flex-wrap: wrap
+        justify-content: space-between
+        height: 100%        
+        //padding: 0.1rem 1rem
+        .item-header
+            display: flex
+            flex-wrap: wrap
+            align-items: center
+            justify-content: space-between
+            padding: 0rem 0rem
+            .logo
+                //width: 200px
+                
+            #nombrePerfil
+                color: $colorBlanco
+            .fotoLogo
+                height: 30px
+                margin-bottom: 2px
+            #fotoPerfil
+                height: 38px
+                width: 38px
+                margin-left: 15px
+                border: 2px solid $colorPrimary
+                border-radius: 50%
+            .formBuscar
+                display: flex
+                justify-content: center
+                flex-wrap: nowrap
+                input
+                    height: 32px
+                    width: 400px
+                    border: 1px solid #ced4da
+                    border-radius: 0.25rem
+                    font-size: 1rem
+                    padding: 0.375rem 0.75rem
+            a 
+                color: $colorBlanco
+                text-decoration: none    
+            
+                
+            //Estilos de icon del menú
+            .icon-menu1
+                color: $colorBlanco
+                margin-right: 16px
+                margin-top: 8px
+                font-size: 1.62rem
+                cursor: pointer
+        //Estilos de los botones del header
+        .btn
+            height: 32px
+            padding: 0px 10px
+
+// Para un maximo de 340px ================================================================================  
+@media (max-width: 340px) 
+    .header
+        position: absolute
+        width: 100%
+        left: 0px  
+        height: $alturaHeader340
+        nav
+            height: 100% 
+            .item-header1
+                padding-left: 0px
+                padding-right: 0px
+                width: 10%
+                .fotoLogo
+                    display: none   
+            .item-header2
+                order: 2
+                width: 90%
+            .item-header3
+                order: 3
+                .fotoPerfil
+                    display: none
+            #iniciar-sesion
+                display: none
+            #nombrePerfil
+                display: none
+    //Espacio de relleno 
+    .relleno-header
+        height: $alturaHeader341
+    //Estilos del contenedor del logo 
+    #navLogo
+        justify-content: center
+        align-items: center
+        .icon-menu1
+            margin-left: 10px
+            margin-right: 16px
+            margin-top: 12px
+    //Genera el espacio para dar lugar a el formulario de buscar
+    #navbarSupportedContent
+        width: 100%
+    //Estilos de formulario buscar
+    #formBuscar
+        display: flex
+        justify-content: space-between        
+        width: 100%
+        input
+            width: 100%
+        //Oculta el boton buscar
+        #btnBuscar
+            display: none
+    
+// Para dispositivos mayores a 340 y menores a 388 ==============================================================
+@media (min-width: 341px) and (max-width: 387px)
+    .header
+        position: absolute
+        width: 100%
+        left: 0px  
+        height: $alturaHeader388
+        nav
+            height: 100% 
+            .item-header1
+                padding-left: 0px
+                padding-right: 0px
+                width: 10%
+                .fotoLogo
+                    display: none   
+            .item-header2
+                order: 2
+                width: 90%
+            .item-header3
+                order: 3
+                .fotoPerfil
+                    display: none
+            #iniciar-sesion
+                display: none
+            #nombrePerfil
+                display: none
+    //Espacio de relleno 
+    .relleno-header
+        height: $alturaHeader341
+    //Estilos del contenedor del logo 
+    #navLogo
+        justify-content: center
+        align-items: center
+        .icon-menu1
+            margin-left: 10px
+            margin-right: 16px
+            margin-top: 12px
+    //Genera el espacio para dar lugar a el formulario de buscar
+    #navbarSupportedContent
+        width: 100%
+    //Estilos de formulario buscar
+    #formBuscar
+        display: flex
+        justify-content: space-between        
+        width: 100%
+        input
+            width: 100%
+        //Oculta el boton buscar
+        #btnBuscar
+            display: none
+
+// Para dispositivos mayores a 387 y menores a 500 ================================================================
+@media (min-width: 388px) and (max-width: 500px)
+    .header
+        position: absolute
+        width: 100%
+        left: 0px  
+        height: $alturaHeader388
+        nav
+            height: 100% 
+            .item-header1
+                padding-left: 5px
+                padding-right: 0px
+                width: 10%
+                .fotoLogo
+                    display: none   
+            .item-header2
+                order: 2
+                width: 90%
+            .item-header3
+                order: 3
+                .fotoPerfil
+                    display: none
+            #iniciar-sesion
+                display: none
+            #nombrePerfil
+                display: none
+    //Espacio de relleno 
+    .relleno-header
+        height: $alturaHeader388
+    
+    //Estilos del contenedor del logo 
+    #navLogo
+        justify-content: center
+        align-items: center
+        .icon-menu1
+            margin-left: 10px
+            margin-right: 16px
+            margin-top: 14px
+    //Genera el espacio para dar lugar a el formulario de buscar
+    #navbarSupportedContent
+        width: 100%
+    //Estilos de formulario buscar
+    #formBuscar
+        display: flex
+        justify-content: space-between        
+        width: 100%
+        input
+            width: 100%
+        //Oculta el boton buscar
+        #btnBuscar
+            display: none
+        
+// Extra small devices (portrait phones, less than 576px) =======================================================
+@media (min-width: 501px) and (max-width: 575.98px)
+    //Estilos del header
+    .header
+        position: absolute
+        width: 100%
+        left: 0rem
+        height: $alturaHeader576
+        justify-items: flex-start
+        align-content: center
+        nav
+            height: 100%
+        .item-header2
+            order: 2
+            width: 65%
+        .item-header3
+            order: 3
+            .fotoPerfil
+                display: none
+        #iniciar-sesion
+            display: none
+        #nombrePerfil
+            display: none
+            
+    //Espacio de relleno 
+    .relleno-header
+        height: $alturaHeader501
+    //Estilos del contenedor del logo 
+    #navLogo
+        justify-content: flex-start
+        .icon-menu1
+            margin-left: 5px
+            margin-right: 5px
+    //Genera el espacio para dar lugar a el formulario de buscar
+    #navbarSupportedContent
+        width: 100%
+    //Estilos de formulario buscar
+    #formBuscar
+        display: flex
+        justify-content: space-between        
+        width: 100%
+        input
+            width: 100%
+        //Oculta el boton buscar
+        #btnBuscar
+            display: none
+
+
+// Small devices (landscape phones, 576px and up) ================================================================
+@media (min-width: 576px) and (max-width: 767.98px)
+    //Estilos del header
+    .header
+        position: absolute
+        width: 100%
+        left: 0rem
+        height: $alturaHeader576
+        justify-items: flex-start
+        align-content: center
+        nav
+            height: 100%
+        .item-header2
+            order: 2
+            width: 65%
+        .item-header3
+            order: 3
+            .fotoPerfil
+                display: none
+        #iniciar-sesion
+            display: none
+        #nombrePerfil
+            display: none
+   
+    //Espacio de relleno 
+    .relleno-header
+        height: $alturaHeader576
+    //Estilos del contenedor del logo 
+    #navLogo
+        justify-content: flex-start
+    //Genera el espacio para el formulario de buscar
+    #navbarSupportedContent
+        width: 100%
+        #formBuscar
+            display: flex
+            justify-content: space-between
+            width: 100%
+            input
+                width: 87%
+            #btnBuscar
+                display: none
+    
+      
+
+// Medium devices (tablets, 768px and up)
+@media (min-width: 768px) and (max-width: 991.98px)
+    //Estilos del header
+    .header
+        position: absolute
+        width: 100%
+        left: 0rem
+        height: $alturaHeader768
+        nav 
+            //height: 100%
+            justify-content: space-between
+            //Estilos del contenedor del logo 
+            #navLogo
+                justify-content: space-between
+            //Genera el espacio para el formulario de buscar
+            #navbarSupportedContent
+                width: 100%
+                #formBuscar
+                    display: flex
+                    justify-content: space-between
+                    width: 100%
+                    input
+                        width: 87%
+    //Espacio de relleno 
+    .relleno-header
+        height: $alturaHeader768
+        
+
+// Large devices (deskheights, 992px and up) =======================================================================
+@media (min-width: 992px)
+    
+    //Estilos del header
+    .header
+        position: fixed
+        width: 100%
+        left: 0px
+        top: 0px
+        height: $alturaHeader992
+       
+    //Espacio de relleno 
+    .relleno-header
+        height: $alturaHeader992
+    
+
diff --git a/UyTube_mobile/web/css/menu.css b/UyTube_mobile/web/css/menu.css
new file mode 100644
index 0000000000000000000000000000000000000000..47811081f36265dd6106658182bb9b6fc6e79abb
--- /dev/null
+++ b/UyTube_mobile/web/css/menu.css
@@ -0,0 +1,95 @@
+.menu {
+  max-height: 450px;
+  z-index: 10;
+  width: 0px;
+  left: 0px;
+  padding-top: 20px;
+  background-color: #00001a;
+  overflow: auto;
+  transition: all 250ms; }
+  .menu ul {
+    list-style: none;
+    padding: 0px;
+    margin: 0px;
+    width: 100%; }
+    .menu ul .titulo, .menu ul .salir {
+      border-top: 1px solid #48549c33; }
+    .menu ul .titulo {
+      text-align: center;
+      padding: 0.5rem;
+      margin: auto;
+      color: #a9a9a9; }
+    .menu ul li {
+      transition: border 0.3s;
+      background-color: #08081a;
+      display: block;
+      width: 100%; }
+      .menu ul li label {
+        height: 50px; }
+      .menu ul li .icon-menu1 {
+        color: #fff;
+        margin: 1.5rem 1rem 0rem 3rem;
+        font-size: 1.62rem;
+        cursor: pointer; }
+      .menu ul li span {
+        text-align: center;
+        width: 100%;
+        color: #fff;
+        margin-left: auto;
+        margin-right: auto; }
+        .menu ul li span .fotoLogo {
+          height: 30px;
+          margin-bottom: 14px; }
+      .menu ul li a {
+        color: #fff;
+        padding: 0.625rem 0.625rem 0.625rem 1rem;
+        display: block;
+        text-decoration: none; }
+      .menu ul li a span {
+        padding-left: 16px; }
+
+.menu li a:hover {
+  text-decoration: none;
+  background-color: #48549c33; }
+
+.abrir {
+  width: 16.625rem;
+  left: 0px; }
+
+@media (max-width: 340px) {
+  .menu {
+    position: absolute;
+    top: 0px;
+    left: -3px; } }
+@media (min-width: 341px) and (max-width: 387px) {
+  .menu {
+    position: absolute;
+    top: 0px;
+    left: 0px; } }
+@media (min-width: 388px) and (max-width: 500px) {
+  .menu {
+    position: absolute;
+    top: 0px;
+    left: 0px; } }
+@media (min-width: 501px) and (max-width: 575.98px) {
+  .menu {
+    position: absolute;
+    top: 0px;
+    left: 0px; } }
+@media (min-width: 576px) and (max-width: 767.98px) {
+  .menu {
+    position: absolute;
+    top: 0px;
+    left: 0px; } }
+@media (min-width: 768px) and (max-width: 991.98px) {
+  .menu {
+    position: absolute;
+    top: 0px;
+    left: 0px; } }
+@media (min-width: 992px) {
+  .menu {
+    position: fixed;
+    top: 56px;
+    left: 0px; } }
+
+/*# sourceMappingURL=menu.css.map */
diff --git a/UyTube_mobile/web/css/menu.sass b/UyTube_mobile/web/css/menu.sass
new file mode 100644
index 0000000000000000000000000000000000000000..18acbd5c35394348982678306bb44cd835fcb37e
--- /dev/null
+++ b/UyTube_mobile/web/css/menu.sass
@@ -0,0 +1,120 @@
+@import _colores
+@import _alturas
+
+//Estilos del menu
+.menu
+    max-height: 450px
+    z-index: 10
+    width: 0px
+    left: 0px
+    padding-top: 20px
+    //padding-left: 16px
+    background-color: $colorHeaderMenuFooter
+    overflow: auto
+    transition: all 250ms
+    ul
+        list-style: none
+        padding: 0px
+        margin: 0px
+        width: 100%
+        .titulo, .salir
+            border-top: 1px solid $colorHover
+        //Estilos de las titulos del menú
+        .titulo
+            text-align: center
+            padding: 0.5rem
+            margin: auto
+            color: $gris
+        li 
+            transition: border 0.3s
+            background-color: #08081a
+            display: block
+            width: 100%
+            label
+                height: 50px
+            .icon-menu1
+                color: $colorBlanco
+                margin: 1.5rem 1rem 0rem 3rem
+                font-size: 1.62rem
+                cursor: pointer
+            span 
+                text-align: center
+                width: 100%
+                color: $colorBlanco
+                margin-left: auto
+                margin-right: auto
+                //Estilos del logo para el menu
+                .fotoLogo
+                    height: 30px
+                    margin-bottom: 14px
+            //Estilos de los links del menú
+            a 
+                color: $colorBlanco
+                padding: 0.625rem 0.625rem 0.625rem 1rem
+                display: block
+                text-decoration: none
+                //padding-left: 10px
+            a span 
+                padding-left: 16px
+                
+//Al pasar por los links al pasar el raton, cambian de color
+.menu li a:hover
+    text-decoration: none
+    background-color: $colorHover
+
+.abrir
+    width: 16.625rem
+    left: 0px
+
+// Para un maximo de 340px ================================================================================  
+@media (max-width: 340px) 
+    .menu
+        position: absolute
+        top: 0px
+        left: -3px
+// Para dispositivos mayores a 340 y menores a 388 ==============================================================
+@media (min-width: 341px) and (max-width: 387px)
+    .menu
+        position: absolute
+        top: 0px
+        left: 0px
+// Para dispositivos mayores a 387 y menores a 500 ================================================================
+@media (min-width: 388px) and (max-width: 500px)
+    .menu
+        position: absolute
+        top: 0px
+        left: 0px
+        
+// Extra small devices (portrait phones, less than 576px) =======================================================
+@media (min-width: 501px) and (max-width: 575.98px)
+    .menu
+        position: absolute
+        top: 0px
+        left: 0px
+
+// Small devices (landscape phones, 576px and up) ================================================================
+@media (min-width: 576px) and (max-width: 767.98px)
+    .menu
+        position: absolute
+        top: 0px
+        left: 0px
+      
+
+// Medium devices (tablets, 768px and up)
+@media (min-width: 768px) and (max-width: 991.98px)
+    .menu
+        position: absolute
+        top: 0px
+        left: 0px
+
+        
+        
+
+// Large devices (desktops, 992px and up) =======================================================================
+@media (min-width: 992px)
+    .menu
+        position: fixed
+        top: $alturaHeader992
+        left: 0px
+      
+        
diff --git a/UyTube_mobile/web/css/widget.css b/UyTube_mobile/web/css/widget.css
new file mode 100644
index 0000000000000000000000000000000000000000..219e96acbe7505d8aabf30374c5d4ec78a8b8c18
--- /dev/null
+++ b/UyTube_mobile/web/css/widget.css
@@ -0,0 +1,124 @@
+.widgets {
+  background-color: #f6f6f6;
+  margin-top: 0px;
+  display: flex;
+  border-bottom: 2px solid #5aa1e3; }
+  .widgets .img-widget {
+    height: 63px; }
+
+.widget-1, .widget-2 {
+  display: flex; }
+
+@media (max-width: 340px) {
+  .widgets {
+    height: 170px;
+    padding-top: 5px;
+    padding-bottom: 5px;
+    flex-direction: column;
+    justify-content: space-around;
+    align-content: center; }
+    .widgets .widget-1 {
+      width: 100%;
+      flex-direction: row;
+      justify-content: space-around;
+      align-items: center; }
+    .widgets .widget-2 {
+      width: 100%;
+      justify-content: space-around; } }
+@media (min-width: 341px) and (max-width: 387px) {
+  .widgets {
+    height: 170px;
+    padding-top: 5px;
+    padding-bottom: 5px;
+    flex-direction: column;
+    justify-content: space-around;
+    align-content: center; }
+    .widgets .widget-1 {
+      width: 100%;
+      flex-direction: row;
+      justify-content: space-around;
+      align-items: center; }
+    .widgets .widget-2 {
+      width: 100%;
+      justify-content: space-around; } }
+@media (min-width: 388px) and (max-width: 500px) {
+  .widgets {
+    height: 180px;
+    padding-top: 10px;
+    padding-bottom: 10px;
+    flex-direction: column;
+    justify-content: space-around;
+    align-content: center; }
+    .widgets .widget-1 {
+      width: 100%;
+      flex-direction: row;
+      justify-content: space-around;
+      align-items: center; }
+    .widgets .widget-2 {
+      width: 100%;
+      justify-content: space-around; } }
+@media (min-width: 501px) and (max-width: 575.98px) {
+  .widgets {
+    height: 180px;
+    flex-direction: column;
+    justify-content: space-around;
+    align-items: center; }
+    .widgets .widget-1 {
+      width: 80%;
+      flex-direction: row;
+      justify-content: space-around;
+      align-items: center; }
+    .widgets .widget-2 {
+      width: 70%;
+      display: flex;
+      justify-content: space-around; } }
+@media (min-width: 576px) and (max-width: 767.98px) {
+  .widgets {
+    height: 160px;
+    flex-direction: column;
+    justify-content: space-around;
+    align-items: center; }
+    .widgets .widget-1 {
+      width: 60%;
+      flex-direction: row;
+      justify-content: space-between;
+      align-items: center; }
+    .widgets .widget-2 {
+      width: 60%;
+      display: flex;
+      justify-content: space-between; } }
+@media (min-width: 768px) and (max-width: 991.98px) {
+  .widgets {
+    height: 100px;
+    width: 100%;
+    flex-direction: row;
+    justify-content: space-around;
+    align-items: center; }
+    .widgets .widget-1 {
+      width: 50%;
+      flex-direction: row;
+      justify-content: space-around;
+      align-items: center; }
+    .widgets .widget-2 {
+      width: 30%;
+      display: flex;
+      flex-direction: row;
+      justify-content: center; } }
+@media (min-width: 992px) {
+  .widgets {
+    height: 123px;
+    padding-left: 30px;
+    padding-right: 30px;
+    justify-content: space-around;
+    flex-wrap: wrap;
+    align-content: center; }
+    .widgets .img-widget {
+      height: 83px; }
+    .widgets .widget-1 {
+      width: 460px;
+      display: flex;
+      justify-content: space-around; }
+    .widgets .widget-2 {
+      width: 350px; } }
+
+/*# sourceMappingURL=widget.css.map */
diff --git a/UyTube_mobile/web/css/widget.sass b/UyTube_mobile/web/css/widget.sass
new file mode 100644
index 0000000000000000000000000000000000000000..aadb55c15f4f8d7205e865e621ee569cb0c69a48
--- /dev/null
+++ b/UyTube_mobile/web/css/widget.sass
@@ -0,0 +1,149 @@
+@import _colores
+@import _alturas
+     
+.widgets
+    background-color: $colorGrisClaro
+    margin-top: 0px
+    display: flex
+    border-bottom: 2px solid $colorCelesteClaro    
+    //Estilos generales para todas las imagenes de los widgets
+    .img-widget
+        height: 63px
+    #utec
+        //width: 118.567px
+        //margin: 0px 0px 16px 10px
+    #udelar
+        //width: 247px
+        //margin-left: 16px
+    #twiter, #facebook, #instagram
+        //width: 83px
+//Estilos de los 2 contenedores de widgets
+.widget-1, .widget-2
+    display: flex
+
+// Para un maximo de 340px ================================================================================  
+@media (max-width: 340px) 
+    .widgets
+        height: $alturaWidget340
+        padding-top: 5px
+        padding-bottom: 5px
+        flex-direction: column
+        justify-content: space-around
+        align-content: center
+        .widget-1
+            width: 100%            
+            flex-direction: row
+            justify-content: space-around
+            align-items: center
+        .widget-2
+            width: 100%
+            justify-content: space-around
+
+// Para dispositivos mayores a 340 y menores a 388 ==============================================================
+@media (min-width: 341px) and (max-width: 387px)
+    .widgets
+        height: $alturaWidget341
+        padding-top: 5px
+        padding-bottom: 5px
+        flex-direction: column
+        justify-content: space-around
+        align-content: center
+        .widget-1
+            width: 100%            
+            flex-direction: row
+            justify-content: space-around
+            align-items: center
+        .widget-2
+            width: 100%
+            justify-content: space-around
+
+// Para dispositivos mayores a 387 y menores a 500 ================================================================
+@media (min-width: 388px) and (max-width: 500px)
+    .widgets
+        height: $alturaWidget388
+        padding-top: 10px
+        padding-bottom: 10px
+        flex-direction: column
+        justify-content: space-around
+        align-content: center
+        .widget-1
+            width: 100%            
+            flex-direction: row
+            justify-content: space-around
+            align-items: center
+        .widget-2
+            width: 100%
+            justify-content: space-around
+
+// Extra small devices (portrait phones, less than 576px) =======================================================
+@media (min-width: 501px) and (max-width: 575.98px)
+    .widgets
+        height: $alturaWidget501
+        flex-direction: column
+        justify-content: space-around
+        align-items: center
+        .widget-1
+            width: 80%            
+            flex-direction: row
+            justify-content: space-around
+            align-items: center
+        .widget-2
+            width: 70%
+            display: flex
+            justify-content: space-around
+
+// Small devices (landscape phones, 576px and up) ================================================================
+@media (min-width: 576px) and (max-width: 767.98px)
+    .widgets
+        height: $alturaWidget576
+        flex-direction: column
+        justify-content: space-around
+        align-items: center
+        .widget-1
+            width: 60%            
+            flex-direction: row
+            justify-content: space-between
+            align-items: center
+        .widget-2
+            width: 60%
+            display: flex
+            justify-content: space-between
+
+// Medium devices (tablets, 768px and up)
+@media (min-width: 768px) and (max-width: 991.98px)
+    .widgets
+        height: $alturaWidget768
+        width: 100%
+        flex-direction: row
+        justify-content: space-around
+        align-items: center
+        .widget-1
+            width: 50%            
+            flex-direction: row
+            justify-content: space-around
+            align-items: center
+        .widget-2
+            width: 30%
+            display: flex
+            flex-direction: row
+            justify-content: center
+        
+
+// Large devices (desktops, 992px and up) =======================================================================
+@media (min-width: 992px)
+    .widgets
+        height: $alturaWidget992
+        //height: 223px
+        padding-left: 30px
+        padding-right: 30px
+        justify-content: space-around
+        flex-wrap: wrap   
+        align-content: center
+        .img-widget
+            height: 83px
+        .widget-1
+            width: 460px
+            display: flex
+            justify-content: space-around
+        .widget-2
+            width: 350px
\ No newline at end of file
diff --git a/UyTube_mobile/web/iconos/Read Me.txt b/UyTube_mobile/web/iconos/Read Me.txt
new file mode 100644
index 0000000000000000000000000000000000000000..8491652f8809d9b9b359647dc36f8cbc315fdac1
--- /dev/null
+++ b/UyTube_mobile/web/iconos/Read Me.txt	
@@ -0,0 +1,7 @@
+Open *demo.html* to see a list of all the glyphs in your font along with their codes/ligatures.
+
+To use the generated font in desktop programs, you can install the TTF font. In order to copy the character associated with each icon, refer to the text box at the bottom right corner of each glyph in demo.html. The character inside this text box may be invisible; but it can still be copied. See this guide for more info: https://icomoon.io/#docs/local-fonts
+
+You won't need any of the files located under the *demo-files* directory when including the generated font in your own projects.
+
+You can import *selection.json* back to the IcoMoon app using the *Import Icons* button (or via Main Menu → Manage Projects) to retrieve your icon selection.
diff --git a/UyTube_mobile/web/iconos/demo-files/demo.css b/UyTube_mobile/web/iconos/demo-files/demo.css
new file mode 100644
index 0000000000000000000000000000000000000000..8992f3f3efb9ad094a05b90e3694fdfa8a74c3dc
--- /dev/null
+++ b/UyTube_mobile/web/iconos/demo-files/demo.css
@@ -0,0 +1,155 @@
+body {
+  padding: 0;
+  margin: 0;
+  font-family: sans-serif;
+  font-size: 1em;
+  line-height: 1.5;
+  color: #555;
+  background: #fff;
+}
+h1 {
+  font-size: 1.5em;
+  font-weight: normal;
+}
+small {
+  font-size: .66666667em;
+}
+a {
+  color: #e74c3c;
+  text-decoration: none;
+}
+a:hover, a:focus {
+  box-shadow: 0 1px #e74c3c;
+}
+.bshadow0, input {
+  box-shadow: inset 0 -2px #e7e7e7;
+}
+input:hover {
+  box-shadow: inset 0 -2px #ccc;
+}
+input, fieldset {
+  font-family: sans-serif;
+  font-size: 1em;
+  margin: 0;
+  padding: 0;
+  border: 0;
+}
+input {
+  color: inherit;
+  line-height: 1.5;
+  height: 1.5em;
+  padding: .25em 0;
+}
+input:focus {
+  outline: none;
+  box-shadow: inset 0 -2px #449fdb;
+}
+.glyph {
+  font-size: 16px;
+  width: 15em;
+  padding-bottom: 1em;
+  margin-right: 4em;
+  margin-bottom: 1em;
+  float: left;
+  overflow: hidden;
+}
+.liga {
+  width: 80%;
+  width: calc(100% - 2.5em);
+}
+.talign-right {
+  text-align: right;
+}
+.talign-center {
+  text-align: center;
+}
+.bgc1 {
+  background: #f1f1f1;
+}
+.fgc1 {
+  color: #999;
+}
+.fgc0 {
+  color: #000;
+}
+p {
+  margin-top: 1em;
+  margin-bottom: 1em;
+}
+.mvm {
+  margin-top: .75em;
+  margin-bottom: .75em;
+}
+.mtn {
+  margin-top: 0;
+}
+.mtl, .mal {
+  margin-top: 1.5em;
+}
+.mbl, .mal {
+  margin-bottom: 1.5em;
+}
+.mal, .mhl {
+  margin-left: 1.5em;
+  margin-right: 1.5em;
+}
+.mhmm {
+  margin-left: 1em;
+  margin-right: 1em;
+}
+.mls {
+  margin-left: .25em;
+}
+.ptl {
+  padding-top: 1.5em;
+}
+.pbs, .pvs {
+  padding-bottom: .25em;
+}
+.pvs, .pts {
+  padding-top: .25em;
+}
+.unit {
+  float: left;
+}
+.unitRight {
+  float: right;
+}
+.size1of2 {
+  width: 50%;
+}
+.size1of1 {
+  width: 100%;
+}
+.clearfix:before, .clearfix:after {
+  content: " ";
+  display: table;
+}
+.clearfix:after {
+  clear: both;
+}
+.hidden-true {
+  display: none;
+}
+.textbox0 {
+  width: 3em;
+  background: #f1f1f1;
+  padding: .25em .5em;
+  line-height: 1.5;
+  height: 1.5em;
+}
+#testDrive {
+  display: block;
+  padding-top: 24px;
+  line-height: 1.5;
+}
+.fs0 {
+  font-size: 16px;
+}
+.fs1 {
+  font-size: 20px;
+}
+.fs2 {
+  font-size: 32px;
+}
+
diff --git a/UyTube_mobile/web/iconos/demo-files/demo.js b/UyTube_mobile/web/iconos/demo-files/demo.js
new file mode 100644
index 0000000000000000000000000000000000000000..6f45f1c409c03209da7fa089c8f636e21d60864a
--- /dev/null
+++ b/UyTube_mobile/web/iconos/demo-files/demo.js
@@ -0,0 +1,30 @@
+if (!('boxShadow' in document.body.style)) {
+    document.body.setAttribute('class', 'noBoxShadow');
+}
+
+document.body.addEventListener("click", function(e) {
+    var target = e.target;
+    if (target.tagName === "INPUT" &&
+        target.getAttribute('class').indexOf('liga') === -1) {
+        target.select();
+    }
+});
+
+(function() {
+    var fontSize = document.getElementById('fontSize'),
+        testDrive = document.getElementById('testDrive'),
+        testText = document.getElementById('testText');
+    function updateTest() {
+        testDrive.innerHTML = testText.value || String.fromCharCode(160);
+        if (window.icomoonLiga) {
+            window.icomoonLiga(testDrive);
+        }
+    }
+    function updateSize() {
+        testDrive.style.fontSize = fontSize.value + 'px';
+    }
+    fontSize.addEventListener('change', updateSize, false);
+    testText.addEventListener('input', updateTest, false);
+    testText.addEventListener('change', updateTest, false);
+    updateSize();
+}());
diff --git a/UyTube_mobile/web/iconos/demo.html b/UyTube_mobile/web/iconos/demo.html
new file mode 100644
index 0000000000000000000000000000000000000000..3cc8da95e529cee6df7958531305dab410316b85
--- /dev/null
+++ b/UyTube_mobile/web/iconos/demo.html
@@ -0,0 +1,12305 @@
+<!doctype html>
+<html>
+<head>
+    <meta charset="utf-8">
+    <title>IcoMoon Demo</title>
+    <meta name="description" content="An Icon Font Generated By IcoMoon.io">
+    <meta name="viewport" content="width=device-width, initial-scale=1">
+    <link rel="stylesheet" href="demo-files/demo.css">
+    <link rel="stylesheet" href="style.css"></head>
+<body>
+    <div class="bgc1 clearfix">
+        <h1 class="mhmm mvm"><span class="fgc1">Font Name:</span> icomoon_freeEntypo <small class="fgc1">(Glyphs:&nbsp;876)</small></h1>
+    </div>
+    <div class="clearfix mhl ptl">
+        <h1 class="mvm mtn fgc1">Grid Size: 20</h1>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-add-to-list"></span>
+                <span class="mls"> icon-add-to-list</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e900" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe900;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-classic-computer"></span>
+                <span class="mls"> icon-classic-computer</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e901" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe901;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-controller-fast-backward"></span>
+                <span class="mls"> icon-controller-fast-backward</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e902" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe902;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-creative-commons-attribution"></span>
+                <span class="mls"> icon-creative-commons-attribution</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e903" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe903;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-creative-commons-noderivs"></span>
+                <span class="mls"> icon-creative-commons-noderivs</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e904" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe904;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-creative-commons-noncommercial-eu"></span>
+                <span class="mls"> icon-creative-commons-noncommercial-eu</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e905" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe905;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-creative-commons-noncommercial-us"></span>
+                <span class="mls"> icon-creative-commons-noncommercial-us</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e906" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe906;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-creative-commons-public-domain"></span>
+                <span class="mls"> icon-creative-commons-public-domain</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e907" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe907;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-creative-commons-remix"></span>
+                <span class="mls"> icon-creative-commons-remix</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e908" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe908;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-creative-commons-share"></span>
+                <span class="mls"> icon-creative-commons-share</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e909" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe909;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-creative-commons-sharealike"></span>
+                <span class="mls"> icon-creative-commons-sharealike</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e90a" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe90a;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-creative-commons"></span>
+                <span class="mls"> icon-creative-commons</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e90b" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe90b;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-document-landscape"></span>
+                <span class="mls"> icon-document-landscape</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e90c" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe90c;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-remove-user"></span>
+                <span class="mls"> icon-remove-user</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e90d" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe90d;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-warning1"></span>
+                <span class="mls"> icon-warning1</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e90e" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe90e;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-arrow-bold-down"></span>
+                <span class="mls"> icon-arrow-bold-down</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e90f" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe90f;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-arrow-bold-left"></span>
+                <span class="mls"> icon-arrow-bold-left</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e910" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe910;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-arrow-bold-right"></span>
+                <span class="mls"> icon-arrow-bold-right</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e911" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe911;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-arrow-bold-up"></span>
+                <span class="mls"> icon-arrow-bold-up</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e912" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe912;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-arrow-down1"></span>
+                <span class="mls"> icon-arrow-down1</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e913" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe913;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-arrow-left1"></span>
+                <span class="mls"> icon-arrow-left1</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e914" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe914;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-arrow-long-down"></span>
+                <span class="mls"> icon-arrow-long-down</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e915" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe915;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-arrow-long-left"></span>
+                <span class="mls"> icon-arrow-long-left</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e916" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe916;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-arrow-long-right"></span>
+                <span class="mls"> icon-arrow-long-right</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e917" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe917;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-arrow-long-up"></span>
+                <span class="mls"> icon-arrow-long-up</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e918" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe918;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-arrow-right1"></span>
+                <span class="mls"> icon-arrow-right1</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e919" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe919;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-arrow-up1"></span>
+                <span class="mls"> icon-arrow-up1</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e91a" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe91a;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-arrow-with-circle-down"></span>
+                <span class="mls"> icon-arrow-with-circle-down</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e91b" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe91b;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-arrow-with-circle-left"></span>
+                <span class="mls"> icon-arrow-with-circle-left</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e91c" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe91c;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-arrow-with-circle-right"></span>
+                <span class="mls"> icon-arrow-with-circle-right</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e91d" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe91d;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-arrow-with-circle-up"></span>
+                <span class="mls"> icon-arrow-with-circle-up</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e91e" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe91e;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-bookmark1"></span>
+                <span class="mls"> icon-bookmark1</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e91f" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe91f;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-bookmarks1"></span>
+                <span class="mls"> icon-bookmarks1</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e920" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe920;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-chevron-down"></span>
+                <span class="mls"> icon-chevron-down</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e921" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe921;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-chevron-left"></span>
+                <span class="mls"> icon-chevron-left</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e922" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe922;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-chevron-right"></span>
+                <span class="mls"> icon-chevron-right</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e923" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe923;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-chevron-small-down"></span>
+                <span class="mls"> icon-chevron-small-down</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e924" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe924;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-chevron-small-left"></span>
+                <span class="mls"> icon-chevron-small-left</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e925" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe925;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-chevron-small-right"></span>
+                <span class="mls"> icon-chevron-small-right</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e926" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe926;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-chevron-small-up"></span>
+                <span class="mls"> icon-chevron-small-up</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e927" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe927;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-chevron-thin-down"></span>
+                <span class="mls"> icon-chevron-thin-down</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e928" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe928;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-chevron-thin-left"></span>
+                <span class="mls"> icon-chevron-thin-left</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e929" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe929;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-chevron-thin-right"></span>
+                <span class="mls"> icon-chevron-thin-right</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e92a" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe92a;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-chevron-thin-up"></span>
+                <span class="mls"> icon-chevron-thin-up</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e92b" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe92b;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-chevron-up"></span>
+                <span class="mls"> icon-chevron-up</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e92c" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe92c;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-chevron-with-circle-down"></span>
+                <span class="mls"> icon-chevron-with-circle-down</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e92d" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe92d;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-chevron-with-circle-left"></span>
+                <span class="mls"> icon-chevron-with-circle-left</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e92e" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe92e;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-chevron-with-circle-right"></span>
+                <span class="mls"> icon-chevron-with-circle-right</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e92f" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe92f;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-chevron-with-circle-up"></span>
+                <span class="mls"> icon-chevron-with-circle-up</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e930" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe930;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-cloud1"></span>
+                <span class="mls"> icon-cloud1</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e931" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe931;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-controller-fast-forward"></span>
+                <span class="mls"> icon-controller-fast-forward</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e932" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe932;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-controller-jump-to-start"></span>
+                <span class="mls"> icon-controller-jump-to-start</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e933" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe933;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-controller-next"></span>
+                <span class="mls"> icon-controller-next</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e934" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe934;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-controller-paus"></span>
+                <span class="mls"> icon-controller-paus</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e935" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe935;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-controller-play"></span>
+                <span class="mls"> icon-controller-play</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e936" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe936;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-controller-record"></span>
+                <span class="mls"> icon-controller-record</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e937" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe937;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-controller-stop"></span>
+                <span class="mls"> icon-controller-stop</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e938" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe938;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-controller-volume"></span>
+                <span class="mls"> icon-controller-volume</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e939" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe939;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-dot-single"></span>
+                <span class="mls"> icon-dot-single</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e93a" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe93a;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-dots-three-horizontal"></span>
+                <span class="mls"> icon-dots-three-horizontal</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e93b" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe93b;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-dots-three-vertical"></span>
+                <span class="mls"> icon-dots-three-vertical</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e93c" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe93c;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-dots-two-horizontal"></span>
+                <span class="mls"> icon-dots-two-horizontal</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e93d" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe93d;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-dots-two-vertical"></span>
+                <span class="mls"> icon-dots-two-vertical</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e93e" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe93e;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-download1"></span>
+                <span class="mls"> icon-download1</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e93f" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe93f;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-emoji-flirt"></span>
+                <span class="mls"> icon-emoji-flirt</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e940" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe940;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-flow-branch"></span>
+                <span class="mls"> icon-flow-branch</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e941" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe941;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-flow-cascade"></span>
+                <span class="mls"> icon-flow-cascade</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e942" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe942;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-flow-line"></span>
+                <span class="mls"> icon-flow-line</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e943" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe943;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-flow-parallel"></span>
+                <span class="mls"> icon-flow-parallel</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e944" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe944;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-flow-tree"></span>
+                <span class="mls"> icon-flow-tree</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e945" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe945;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-install"></span>
+                <span class="mls"> icon-install</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e946" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe946;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-layers"></span>
+                <span class="mls"> icon-layers</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e947" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe947;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-open-book"></span>
+                <span class="mls"> icon-open-book</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e948" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe948;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-resize-100"></span>
+                <span class="mls"> icon-resize-100</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e949" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe949;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-resize-full-screen"></span>
+                <span class="mls"> icon-resize-full-screen</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e94a" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe94a;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-save"></span>
+                <span class="mls"> icon-save</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e94b" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe94b;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-select-arrows"></span>
+                <span class="mls"> icon-select-arrows</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e94c" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe94c;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-sound-mute"></span>
+                <span class="mls"> icon-sound-mute</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e94d" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe94d;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-sound"></span>
+                <span class="mls"> icon-sound</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e94e" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe94e;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-trash"></span>
+                <span class="mls"> icon-trash</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e94f" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe94f;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-triangle-down"></span>
+                <span class="mls"> icon-triangle-down</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e950" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe950;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-triangle-left"></span>
+                <span class="mls"> icon-triangle-left</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e951" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe951;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-triangle-right"></span>
+                <span class="mls"> icon-triangle-right</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e952" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe952;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-triangle-up"></span>
+                <span class="mls"> icon-triangle-up</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e953" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe953;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-uninstall"></span>
+                <span class="mls"> icon-uninstall</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e954" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe954;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-upload-to-cloud"></span>
+                <span class="mls"> icon-upload-to-cloud</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e955" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe955;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-upload1"></span>
+                <span class="mls"> icon-upload1</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e956" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe956;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-add-user"></span>
+                <span class="mls"> icon-add-user</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e957" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe957;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-address"></span>
+                <span class="mls"> icon-address</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e958" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe958;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-adjust"></span>
+                <span class="mls"> icon-adjust</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e959" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe959;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-air"></span>
+                <span class="mls"> icon-air</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e95a" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe95a;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-aircraft-landing"></span>
+                <span class="mls"> icon-aircraft-landing</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e95b" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe95b;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-aircraft-take-off"></span>
+                <span class="mls"> icon-aircraft-take-off</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e95c" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe95c;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-aircraft"></span>
+                <span class="mls"> icon-aircraft</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e95d" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe95d;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-align-bottom"></span>
+                <span class="mls"> icon-align-bottom</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e95e" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe95e;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-align-horizontal-middle"></span>
+                <span class="mls"> icon-align-horizontal-middle</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e95f" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe95f;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-align-left"></span>
+                <span class="mls"> icon-align-left</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e960" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe960;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-align-right"></span>
+                <span class="mls"> icon-align-right</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e961" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe961;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-align-top"></span>
+                <span class="mls"> icon-align-top</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e962" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe962;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-align-vertical-middle"></span>
+                <span class="mls"> icon-align-vertical-middle</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e963" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe963;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-archive"></span>
+                <span class="mls"> icon-archive</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e964" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe964;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-area-graph"></span>
+                <span class="mls"> icon-area-graph</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e965" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe965;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-attachment1"></span>
+                <span class="mls"> icon-attachment1</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e966" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe966;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-awareness-ribbon"></span>
+                <span class="mls"> icon-awareness-ribbon</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e967" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe967;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-back-in-time"></span>
+                <span class="mls"> icon-back-in-time</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e968" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe968;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-back"></span>
+                <span class="mls"> icon-back</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e969" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe969;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-bar-graph"></span>
+                <span class="mls"> icon-bar-graph</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e96a" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe96a;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-battery"></span>
+                <span class="mls"> icon-battery</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e96b" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe96b;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-beamed-note"></span>
+                <span class="mls"> icon-beamed-note</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e96c" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe96c;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-bell1"></span>
+                <span class="mls"> icon-bell1</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e96d" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe96d;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-blackboard"></span>
+                <span class="mls"> icon-blackboard</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e96e" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe96e;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-block"></span>
+                <span class="mls"> icon-block</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e96f" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe96f;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-book1"></span>
+                <span class="mls"> icon-book1</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e970" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe970;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-bowl"></span>
+                <span class="mls"> icon-bowl</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e971" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe971;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-box"></span>
+                <span class="mls"> icon-box</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e972" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe972;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-briefcase1"></span>
+                <span class="mls"> icon-briefcase1</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e973" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe973;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-browser"></span>
+                <span class="mls"> icon-browser</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e974" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe974;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-brush"></span>
+                <span class="mls"> icon-brush</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e975" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe975;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-bucket"></span>
+                <span class="mls"> icon-bucket</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e976" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe976;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-cake"></span>
+                <span class="mls"> icon-cake</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e977" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe977;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-calculator1"></span>
+                <span class="mls"> icon-calculator1</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e978" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe978;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-calendar1"></span>
+                <span class="mls"> icon-calendar1</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e979" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe979;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-camera1"></span>
+                <span class="mls"> icon-camera1</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e97a" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe97a;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-ccw"></span>
+                <span class="mls"> icon-ccw</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e97b" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe97b;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-chat"></span>
+                <span class="mls"> icon-chat</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e97c" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe97c;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-check"></span>
+                <span class="mls"> icon-check</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e97d" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe97d;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-circle-with-cross"></span>
+                <span class="mls"> icon-circle-with-cross</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e97e" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe97e;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-circle-with-minus"></span>
+                <span class="mls"> icon-circle-with-minus</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e97f" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe97f;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-circle-with-plus"></span>
+                <span class="mls"> icon-circle-with-plus</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e980" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe980;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-circle"></span>
+                <span class="mls"> icon-circle</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e981" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe981;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-circular-graph"></span>
+                <span class="mls"> icon-circular-graph</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e982" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe982;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-clapperboard"></span>
+                <span class="mls"> icon-clapperboard</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e983" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe983;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-clipboard1"></span>
+                <span class="mls"> icon-clipboard1</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e984" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe984;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-clock1"></span>
+                <span class="mls"> icon-clock1</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e985" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe985;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-code"></span>
+                <span class="mls"> icon-code</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e986" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe986;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-cog1"></span>
+                <span class="mls"> icon-cog1</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e987" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe987;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-colours"></span>
+                <span class="mls"> icon-colours</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e988" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe988;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-compass1"></span>
+                <span class="mls"> icon-compass1</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e989" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe989;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-copy1"></span>
+                <span class="mls"> icon-copy1</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e98a" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe98a;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-credit-card1"></span>
+                <span class="mls"> icon-credit-card1</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e98b" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe98b;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-credit"></span>
+                <span class="mls"> icon-credit</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e98c" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe98c;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-cross1"></span>
+                <span class="mls"> icon-cross1</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e98d" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe98d;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-cup"></span>
+                <span class="mls"> icon-cup</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e98e" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe98e;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-cw"></span>
+                <span class="mls"> icon-cw</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e98f" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe98f;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-cycle"></span>
+                <span class="mls"> icon-cycle</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e990" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe990;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-database1"></span>
+                <span class="mls"> icon-database1</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e991" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe991;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-dial-pad"></span>
+                <span class="mls"> icon-dial-pad</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e992" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe992;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-direction"></span>
+                <span class="mls"> icon-direction</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e993" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe993;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-document"></span>
+                <span class="mls"> icon-document</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e994" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe994;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-documents"></span>
+                <span class="mls"> icon-documents</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e995" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe995;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-drink"></span>
+                <span class="mls"> icon-drink</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e996" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe996;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-drive1"></span>
+                <span class="mls"> icon-drive1</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e997" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe997;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-drop"></span>
+                <span class="mls"> icon-drop</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e998" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe998;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-edit"></span>
+                <span class="mls"> icon-edit</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e999" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe999;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-email"></span>
+                <span class="mls"> icon-email</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e99a" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe99a;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-emoji-happy"></span>
+                <span class="mls"> icon-emoji-happy</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e99b" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe99b;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-emoji-neutral"></span>
+                <span class="mls"> icon-emoji-neutral</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e99c" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe99c;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-emoji-sad"></span>
+                <span class="mls"> icon-emoji-sad</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e99d" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe99d;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-erase"></span>
+                <span class="mls"> icon-erase</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e99e" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe99e;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-eraser"></span>
+                <span class="mls"> icon-eraser</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e99f" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe99f;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-export"></span>
+                <span class="mls"> icon-export</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e9a0" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe9a0;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-eye1"></span>
+                <span class="mls"> icon-eye1</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e9a1" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe9a1;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-feather"></span>
+                <span class="mls"> icon-feather</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e9a2" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe9a2;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-flag1"></span>
+                <span class="mls"> icon-flag1</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e9a3" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe9a3;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-flash"></span>
+                <span class="mls"> icon-flash</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e9a4" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe9a4;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-flashlight"></span>
+                <span class="mls"> icon-flashlight</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e9a5" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe9a5;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-flat-brush"></span>
+                <span class="mls"> icon-flat-brush</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e9a6" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe9a6;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-folder-images"></span>
+                <span class="mls"> icon-folder-images</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e9a7" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe9a7;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-folder-music"></span>
+                <span class="mls"> icon-folder-music</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e9a8" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe9a8;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-folder-video"></span>
+                <span class="mls"> icon-folder-video</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e9a9" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe9a9;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-folder1"></span>
+                <span class="mls"> icon-folder1</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e9aa" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe9aa;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-forward1"></span>
+                <span class="mls"> icon-forward1</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e9ab" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe9ab;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-funnel"></span>
+                <span class="mls"> icon-funnel</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e9ac" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe9ac;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-game-controller"></span>
+                <span class="mls"> icon-game-controller</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e9ad" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe9ad;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-gauge"></span>
+                <span class="mls"> icon-gauge</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e9ae" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe9ae;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-globe"></span>
+                <span class="mls"> icon-globe</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e9af" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe9af;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-graduation-cap"></span>
+                <span class="mls"> icon-graduation-cap</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e9b0" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe9b0;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-grid"></span>
+                <span class="mls"> icon-grid</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e9b1" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe9b1;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-hair-cross"></span>
+                <span class="mls"> icon-hair-cross</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e9b2" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe9b2;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-hand"></span>
+                <span class="mls"> icon-hand</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e9b3" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe9b3;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-heart-outlined"></span>
+                <span class="mls"> icon-heart-outlined</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e9b4" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe9b4;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-heart1"></span>
+                <span class="mls"> icon-heart1</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e9b5" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe9b5;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-help-with-circle"></span>
+                <span class="mls"> icon-help-with-circle</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e9b6" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe9b6;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-help"></span>
+                <span class="mls"> icon-help</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e9b7" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe9b7;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-home1"></span>
+                <span class="mls"> icon-home1</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e9b8" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe9b8;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-hour-glass1"></span>
+                <span class="mls"> icon-hour-glass1</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e9b9" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe9b9;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-image-inverted"></span>
+                <span class="mls"> icon-image-inverted</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e9ba" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe9ba;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-image1"></span>
+                <span class="mls"> icon-image1</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e9bb" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe9bb;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-images1"></span>
+                <span class="mls"> icon-images1</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e9bc" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe9bc;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-inbox"></span>
+                <span class="mls"> icon-inbox</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e9bd" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe9bd;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-infinity"></span>
+                <span class="mls"> icon-infinity</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e9be" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe9be;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-info-with-circle"></span>
+                <span class="mls"> icon-info-with-circle</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e9bf" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe9bf;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-info1"></span>
+                <span class="mls"> icon-info1</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e9c0" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe9c0;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-key1"></span>
+                <span class="mls"> icon-key1</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e9c1" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe9c1;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-keyboard1"></span>
+                <span class="mls"> icon-keyboard1</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e9c2" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe9c2;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-lab-flask"></span>
+                <span class="mls"> icon-lab-flask</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e9c3" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe9c3;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-landline"></span>
+                <span class="mls"> icon-landline</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e9c4" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe9c4;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-language"></span>
+                <span class="mls"> icon-language</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e9c5" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe9c5;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-laptop1"></span>
+                <span class="mls"> icon-laptop1</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e9c6" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe9c6;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-leaf1"></span>
+                <span class="mls"> icon-leaf1</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e9c7" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe9c7;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-level-down"></span>
+                <span class="mls"> icon-level-down</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e9c8" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe9c8;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-level-up"></span>
+                <span class="mls"> icon-level-up</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e9c9" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe9c9;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-lifebuoy1"></span>
+                <span class="mls"> icon-lifebuoy1</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e9ca" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe9ca;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-light-bulb"></span>
+                <span class="mls"> icon-light-bulb</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e9cb" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe9cb;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-light-down"></span>
+                <span class="mls"> icon-light-down</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e9cc" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe9cc;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-light-up"></span>
+                <span class="mls"> icon-light-up</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e9cd" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe9cd;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-line-graph"></span>
+                <span class="mls"> icon-line-graph</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e9ce" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe9ce;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-link1"></span>
+                <span class="mls"> icon-link1</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e9cf" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe9cf;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-list1"></span>
+                <span class="mls"> icon-list1</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e9d0" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe9d0;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-location-pin"></span>
+                <span class="mls"> icon-location-pin</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e9d1" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe9d1;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-location1"></span>
+                <span class="mls"> icon-location1</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e9d2" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe9d2;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-lock-open"></span>
+                <span class="mls"> icon-lock-open</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e9d3" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe9d3;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-lock1"></span>
+                <span class="mls"> icon-lock1</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e9d4" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe9d4;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-log-out"></span>
+                <span class="mls"> icon-log-out</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e9d5" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe9d5;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-login"></span>
+                <span class="mls"> icon-login</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e9d6" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe9d6;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-loop1"></span>
+                <span class="mls"> icon-loop1</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e9d7" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe9d7;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-magnet1"></span>
+                <span class="mls"> icon-magnet1</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e9d8" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe9d8;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-magnifying-glass"></span>
+                <span class="mls"> icon-magnifying-glass</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e9d9" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe9d9;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-mail1"></span>
+                <span class="mls"> icon-mail1</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e9da" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe9da;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-man1"></span>
+                <span class="mls"> icon-man1</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e9db" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe9db;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-map1"></span>
+                <span class="mls"> icon-map1</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e9dc" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe9dc;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-mask"></span>
+                <span class="mls"> icon-mask</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e9dd" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe9dd;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-medal"></span>
+                <span class="mls"> icon-medal</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e9de" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe9de;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-megaphone"></span>
+                <span class="mls"> icon-megaphone</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e9df" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe9df;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-menu1"></span>
+                <span class="mls"> icon-menu1</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e9e0" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe9e0;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-message"></span>
+                <span class="mls"> icon-message</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e9e1" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe9e1;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-mic1"></span>
+                <span class="mls"> icon-mic1</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e9e2" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe9e2;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-minus1"></span>
+                <span class="mls"> icon-minus1</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e9e3" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe9e3;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-mobile1"></span>
+                <span class="mls"> icon-mobile1</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e9e4" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe9e4;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-modern-mic"></span>
+                <span class="mls"> icon-modern-mic</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e9e5" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe9e5;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-moon"></span>
+                <span class="mls"> icon-moon</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e9e6" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe9e6;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-mouse"></span>
+                <span class="mls"> icon-mouse</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e9e7" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe9e7;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-music1"></span>
+                <span class="mls"> icon-music1</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e9e8" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe9e8;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-network"></span>
+                <span class="mls"> icon-network</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e9e9" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe9e9;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-new-message"></span>
+                <span class="mls"> icon-new-message</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e9ea" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe9ea;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-new"></span>
+                <span class="mls"> icon-new</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e9eb" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe9eb;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-news"></span>
+                <span class="mls"> icon-news</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e9ec" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe9ec;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-note"></span>
+                <span class="mls"> icon-note</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e9ed" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe9ed;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-notification1"></span>
+                <span class="mls"> icon-notification1</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e9ee" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe9ee;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-old-mobile"></span>
+                <span class="mls"> icon-old-mobile</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e9ef" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe9ef;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-old-phone"></span>
+                <span class="mls"> icon-old-phone</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e9f0" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe9f0;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-palette"></span>
+                <span class="mls"> icon-palette</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e9f1" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe9f1;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-paper-plane"></span>
+                <span class="mls"> icon-paper-plane</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e9f2" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe9f2;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-pencil1"></span>
+                <span class="mls"> icon-pencil1</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e9f3" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe9f3;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-phone1"></span>
+                <span class="mls"> icon-phone1</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e9f4" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe9f4;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-pie-chart1"></span>
+                <span class="mls"> icon-pie-chart1</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e9f5" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe9f5;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-pin"></span>
+                <span class="mls"> icon-pin</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e9f6" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe9f6;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-plus1"></span>
+                <span class="mls"> icon-plus1</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e9f7" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe9f7;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-popup"></span>
+                <span class="mls"> icon-popup</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e9f8" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe9f8;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-power-plug"></span>
+                <span class="mls"> icon-power-plug</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e9f9" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe9f9;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-price-ribbon"></span>
+                <span class="mls"> icon-price-ribbon</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e9fa" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe9fa;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-price-tag1"></span>
+                <span class="mls"> icon-price-tag1</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e9fb" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe9fb;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-print"></span>
+                <span class="mls"> icon-print</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e9fc" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe9fc;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-progress-empty"></span>
+                <span class="mls"> icon-progress-empty</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e9fd" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe9fd;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-progress-full"></span>
+                <span class="mls"> icon-progress-full</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e9fe" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe9fe;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-progress-one"></span>
+                <span class="mls"> icon-progress-one</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="e9ff" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xe9ff;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-progress-two"></span>
+                <span class="mls"> icon-progress-two</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ea00" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xea00;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-publish"></span>
+                <span class="mls"> icon-publish</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ea01" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xea01;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-quote"></span>
+                <span class="mls"> icon-quote</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ea02" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xea02;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-radio"></span>
+                <span class="mls"> icon-radio</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ea03" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xea03;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-reply-all"></span>
+                <span class="mls"> icon-reply-all</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ea04" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xea04;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-reply1"></span>
+                <span class="mls"> icon-reply1</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ea05" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xea05;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-retweet"></span>
+                <span class="mls"> icon-retweet</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ea06" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xea06;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-rocket1"></span>
+                <span class="mls"> icon-rocket1</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ea07" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xea07;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-round-brush"></span>
+                <span class="mls"> icon-round-brush</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ea08" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xea08;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-rss1"></span>
+                <span class="mls"> icon-rss1</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ea09" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xea09;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-ruler"></span>
+                <span class="mls"> icon-ruler</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ea0a" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xea0a;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-scissors1"></span>
+                <span class="mls"> icon-scissors1</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ea0b" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xea0b;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-share-alternitive"></span>
+                <span class="mls"> icon-share-alternitive</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ea0c" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xea0c;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-share1"></span>
+                <span class="mls"> icon-share1</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ea0d" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xea0d;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-shareable"></span>
+                <span class="mls"> icon-shareable</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ea0e" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xea0e;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-shield1"></span>
+                <span class="mls"> icon-shield1</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ea0f" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xea0f;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-shop"></span>
+                <span class="mls"> icon-shop</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ea10" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xea10;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-shopping-bag"></span>
+                <span class="mls"> icon-shopping-bag</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ea11" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xea11;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-shopping-basket"></span>
+                <span class="mls"> icon-shopping-basket</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ea12" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xea12;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-shopping-cart"></span>
+                <span class="mls"> icon-shopping-cart</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ea13" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xea13;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-shuffle1"></span>
+                <span class="mls"> icon-shuffle1</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ea14" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xea14;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-signal"></span>
+                <span class="mls"> icon-signal</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ea15" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xea15;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-sound-mix"></span>
+                <span class="mls"> icon-sound-mix</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ea16" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xea16;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-sports-club"></span>
+                <span class="mls"> icon-sports-club</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ea17" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xea17;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-spreadsheet"></span>
+                <span class="mls"> icon-spreadsheet</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ea18" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xea18;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-squared-cross"></span>
+                <span class="mls"> icon-squared-cross</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ea19" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xea19;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-squared-minus"></span>
+                <span class="mls"> icon-squared-minus</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ea1a" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xea1a;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-squared-plus"></span>
+                <span class="mls"> icon-squared-plus</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ea1b" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xea1b;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-star-outlined"></span>
+                <span class="mls"> icon-star-outlined</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ea1c" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xea1c;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-star"></span>
+                <span class="mls"> icon-star</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ea1d" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xea1d;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-stopwatch1"></span>
+                <span class="mls"> icon-stopwatch1</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ea1e" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xea1e;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-suitcase"></span>
+                <span class="mls"> icon-suitcase</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ea1f" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xea1f;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-swap"></span>
+                <span class="mls"> icon-swap</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ea20" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xea20;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-sweden"></span>
+                <span class="mls"> icon-sweden</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ea21" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xea21;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-switch1"></span>
+                <span class="mls"> icon-switch1</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ea22" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xea22;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-tablet1"></span>
+                <span class="mls"> icon-tablet1</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ea23" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xea23;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-tag"></span>
+                <span class="mls"> icon-tag</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ea24" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xea24;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-text-document-inverted"></span>
+                <span class="mls"> icon-text-document-inverted</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ea25" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xea25;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-text-document"></span>
+                <span class="mls"> icon-text-document</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ea26" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xea26;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-text"></span>
+                <span class="mls"> icon-text</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ea27" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xea27;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-thermometer"></span>
+                <span class="mls"> icon-thermometer</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ea28" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xea28;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-thumbs-down"></span>
+                <span class="mls"> icon-thumbs-down</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ea29" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xea29;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-thumbs-up"></span>
+                <span class="mls"> icon-thumbs-up</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ea2a" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xea2a;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-thunder-cloud"></span>
+                <span class="mls"> icon-thunder-cloud</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ea2b" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xea2b;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-ticket1"></span>
+                <span class="mls"> icon-ticket1</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ea2c" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xea2c;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-time-slot"></span>
+                <span class="mls"> icon-time-slot</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ea2d" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xea2d;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-tools"></span>
+                <span class="mls"> icon-tools</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ea2e" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xea2e;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-traffic-cone"></span>
+                <span class="mls"> icon-traffic-cone</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ea2f" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xea2f;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-tree1"></span>
+                <span class="mls"> icon-tree1</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ea30" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xea30;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-trophy1"></span>
+                <span class="mls"> icon-trophy1</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ea31" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xea31;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-tv1"></span>
+                <span class="mls"> icon-tv1</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ea32" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xea32;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-typing"></span>
+                <span class="mls"> icon-typing</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ea33" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xea33;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-unread"></span>
+                <span class="mls"> icon-unread</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ea34" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xea34;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-untag"></span>
+                <span class="mls"> icon-untag</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ea35" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xea35;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-user1"></span>
+                <span class="mls"> icon-user1</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ea36" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xea36;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-users1"></span>
+                <span class="mls"> icon-users1</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ea37" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xea37;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-v-card"></span>
+                <span class="mls"> icon-v-card</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ea38" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xea38;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-video"></span>
+                <span class="mls"> icon-video</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ea39" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xea39;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-vinyl"></span>
+                <span class="mls"> icon-vinyl</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ea3a" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xea3a;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-voicemail"></span>
+                <span class="mls"> icon-voicemail</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ea3b" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xea3b;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-wallet"></span>
+                <span class="mls"> icon-wallet</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ea3c" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xea3c;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-water"></span>
+                <span class="mls"> icon-water</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ea3d" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xea3d;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-500px-with-circle"></span>
+                <span class="mls"> icon-500px-with-circle</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ea3e" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xea3e;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-500px1"></span>
+                <span class="mls"> icon-500px1</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ea3f" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xea3f;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-basecamp1"></span>
+                <span class="mls"> icon-basecamp1</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ea40" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xea40;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-behance1"></span>
+                <span class="mls"> icon-behance1</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ea41" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xea41;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-creative-cloud"></span>
+                <span class="mls"> icon-creative-cloud</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ea42" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xea42;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-dropbox1"></span>
+                <span class="mls"> icon-dropbox1</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ea43" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xea43;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-evernote"></span>
+                <span class="mls"> icon-evernote</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ea44" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xea44;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-flattr1"></span>
+                <span class="mls"> icon-flattr1</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ea45" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xea45;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-foursquare1"></span>
+                <span class="mls"> icon-foursquare1</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ea46" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xea46;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-google-drive1"></span>
+                <span class="mls"> icon-google-drive1</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ea47" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xea47;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-google-hangouts"></span>
+                <span class="mls"> icon-google-hangouts</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ea48" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xea48;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-grooveshark"></span>
+                <span class="mls"> icon-grooveshark</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ea49" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xea49;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-icloud"></span>
+                <span class="mls"> icon-icloud</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ea4a" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xea4a;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-mixi"></span>
+                <span class="mls"> icon-mixi</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ea4b" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xea4b;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-onedrive1"></span>
+                <span class="mls"> icon-onedrive1</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ea4c" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xea4c;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-paypal1"></span>
+                <span class="mls"> icon-paypal1</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ea4d" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xea4d;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-picasa"></span>
+                <span class="mls"> icon-picasa</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ea4e" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xea4e;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-qq"></span>
+                <span class="mls"> icon-qq</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ea4f" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xea4f;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-rdio-with-circle"></span>
+                <span class="mls"> icon-rdio-with-circle</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ea50" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xea50;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-renren1"></span>
+                <span class="mls"> icon-renren1</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ea51" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xea51;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-scribd"></span>
+                <span class="mls"> icon-scribd</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ea52" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xea52;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-sina-weibo1"></span>
+                <span class="mls"> icon-sina-weibo1</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ea53" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xea53;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-skype-with-circle"></span>
+                <span class="mls"> icon-skype-with-circle</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ea54" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xea54;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-skype1"></span>
+                <span class="mls"> icon-skype1</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ea55" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xea55;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-slideshare"></span>
+                <span class="mls"> icon-slideshare</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ea56" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xea56;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-smashing"></span>
+                <span class="mls"> icon-smashing</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ea57" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xea57;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-soundcloud1"></span>
+                <span class="mls"> icon-soundcloud1</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ea58" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xea58;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-spotify-with-circle"></span>
+                <span class="mls"> icon-spotify-with-circle</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ea59" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xea59;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-spotify1"></span>
+                <span class="mls"> icon-spotify1</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ea5a" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xea5a;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-swarm"></span>
+                <span class="mls"> icon-swarm</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ea5b" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xea5b;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-vine-with-circle"></span>
+                <span class="mls"> icon-vine-with-circle</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ea5c" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xea5c;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-vine1"></span>
+                <span class="mls"> icon-vine1</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ea5d" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xea5d;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-vk-alternitive"></span>
+                <span class="mls"> icon-vk-alternitive</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ea5e" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xea5e;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-vk-with-circle"></span>
+                <span class="mls"> icon-vk-with-circle</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ea5f" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xea5f;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-vk1"></span>
+                <span class="mls"> icon-vk1</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ea60" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xea60;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-xing-with-circle"></span>
+                <span class="mls"> icon-xing-with-circle</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ea61" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xea61;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-xing1"></span>
+                <span class="mls"> icon-xing1</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ea62" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xea62;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-yelp1"></span>
+                <span class="mls"> icon-yelp1</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ea63" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xea63;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-dribbble-with-circle"></span>
+                <span class="mls"> icon-dribbble-with-circle</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ea64" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xea64;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-dribbble1"></span>
+                <span class="mls"> icon-dribbble1</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ea65" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xea65;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-facebook-with-circle"></span>
+                <span class="mls"> icon-facebook-with-circle</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ea66" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xea66;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-facebook1"></span>
+                <span class="mls"> icon-facebook1</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ea67" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xea67;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-flickr-with-circle"></span>
+                <span class="mls"> icon-flickr-with-circle</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ea68" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xea68;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-flickr1"></span>
+                <span class="mls"> icon-flickr1</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ea69" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xea69;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-github-with-circle"></span>
+                <span class="mls"> icon-github-with-circle</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ea6a" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xea6a;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-github1"></span>
+                <span class="mls"> icon-github1</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ea6b" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xea6b;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-google-with-circle"></span>
+                <span class="mls"> icon-google-with-circle</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ea6c" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xea6c;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-google1"></span>
+                <span class="mls"> icon-google1</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ea6d" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xea6d;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-instagram-with-circle"></span>
+                <span class="mls"> icon-instagram-with-circle</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ea6e" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xea6e;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-instagram1"></span>
+                <span class="mls"> icon-instagram1</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ea6f" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xea6f;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-lastfm-with-circle"></span>
+                <span class="mls"> icon-lastfm-with-circle</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ea70" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xea70;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-lastfm1"></span>
+                <span class="mls"> icon-lastfm1</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ea71" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xea71;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-linkedin-with-circle"></span>
+                <span class="mls"> icon-linkedin-with-circle</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ea72" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xea72;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-linkedin1"></span>
+                <span class="mls"> icon-linkedin1</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ea73" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xea73;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-pinterest-with-circle"></span>
+                <span class="mls"> icon-pinterest-with-circle</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ea74" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xea74;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-pinterest1"></span>
+                <span class="mls"> icon-pinterest1</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ea75" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xea75;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-rdio"></span>
+                <span class="mls"> icon-rdio</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ea76" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xea76;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-stumbleupon-with-circle"></span>
+                <span class="mls"> icon-stumbleupon-with-circle</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ea77" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xea77;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-stumbleupon1"></span>
+                <span class="mls"> icon-stumbleupon1</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ea78" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xea78;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-tumblr-with-circle"></span>
+                <span class="mls"> icon-tumblr-with-circle</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ea79" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xea79;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-tumblr1"></span>
+                <span class="mls"> icon-tumblr1</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ea7a" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xea7a;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-twitter-with-circle"></span>
+                <span class="mls"> icon-twitter-with-circle</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ea7b" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xea7b;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-twitter1"></span>
+                <span class="mls"> icon-twitter1</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ea7c" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xea7c;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-vimeo-with-circle"></span>
+                <span class="mls"> icon-vimeo-with-circle</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ea7d" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xea7d;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-vimeo1"></span>
+                <span class="mls"> icon-vimeo1</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ea7e" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xea7e;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-youtube-with-circle"></span>
+                <span class="mls"> icon-youtube-with-circle</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ea7f" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xea7f;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs1">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-youtube1"></span>
+                <span class="mls"> icon-youtube1</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ea80" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xea80;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="" class="liga unitRight" />
+            </div>
+        </div>
+    </div>
+    <div class="clearfix mhl ptl">
+        <h1 class="mvm mtn fgc1">Grid Size: 16</h1>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-home"></span>
+                <span class="mls"> icon-home</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ea81" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xea81;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="home, house" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-home2"></span>
+                <span class="mls"> icon-home2</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ea82" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xea82;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="home2, house2" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-home3"></span>
+                <span class="mls"> icon-home3</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ea83" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xea83;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="home3, house3" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-office"></span>
+                <span class="mls"> icon-office</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ea84" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xea84;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="office, buildings" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-newspaper"></span>
+                <span class="mls"> icon-newspaper</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ea85" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xea85;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="newspaper, news" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-pencil"></span>
+                <span class="mls"> icon-pencil</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ea86" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xea86;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="pencil, write" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-pencil2"></span>
+                <span class="mls"> icon-pencil2</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ea87" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xea87;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="pencil2, write2" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-quill"></span>
+                <span class="mls"> icon-quill</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ea88" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xea88;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="quill, feather" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-pen"></span>
+                <span class="mls"> icon-pen</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ea89" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xea89;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="pen, write3" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-blog"></span>
+                <span class="mls"> icon-blog</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ea8a" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xea8a;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="blog, pen2" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-eyedropper"></span>
+                <span class="mls"> icon-eyedropper</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ea8b" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xea8b;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="eyedropper, color" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-droplet"></span>
+                <span class="mls"> icon-droplet</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ea8c" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xea8c;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="droplet, color2" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-paint-format"></span>
+                <span class="mls"> icon-paint-format</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ea8d" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xea8d;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="paint-format, format" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-image"></span>
+                <span class="mls"> icon-image</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ea8e" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xea8e;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="image, picture" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-images"></span>
+                <span class="mls"> icon-images</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ea8f" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xea8f;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="images, pictures" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-camera"></span>
+                <span class="mls"> icon-camera</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ea90" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xea90;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="camera, photo" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-headphones"></span>
+                <span class="mls"> icon-headphones</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ea91" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xea91;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="headphones, headset" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-music"></span>
+                <span class="mls"> icon-music</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ea92" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xea92;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="music, song" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-play"></span>
+                <span class="mls"> icon-play</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ea93" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xea93;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="play, video" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-film"></span>
+                <span class="mls"> icon-film</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ea94" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xea94;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="film, video2" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-video-camera"></span>
+                <span class="mls"> icon-video-camera</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ea95" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xea95;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="video-camera, video3" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-dice"></span>
+                <span class="mls"> icon-dice</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ea96" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xea96;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="dice, game" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-pacman"></span>
+                <span class="mls"> icon-pacman</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ea97" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xea97;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="pacman, game2" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-spades"></span>
+                <span class="mls"> icon-spades</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ea98" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xea98;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="spades, cards" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-clubs"></span>
+                <span class="mls"> icon-clubs</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ea99" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xea99;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="clubs, cards2" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-diamonds"></span>
+                <span class="mls"> icon-diamonds</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ea9a" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xea9a;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="diamonds, cards3" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-bullhorn"></span>
+                <span class="mls"> icon-bullhorn</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ea9b" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xea9b;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="bullhorn, megaphone" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-connection"></span>
+                <span class="mls"> icon-connection</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ea9c" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xea9c;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="connection, wifi" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-podcast"></span>
+                <span class="mls"> icon-podcast</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ea9d" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xea9d;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="podcast, broadcast" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-feed"></span>
+                <span class="mls"> icon-feed</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ea9e" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xea9e;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="feed, wave" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-mic"></span>
+                <span class="mls"> icon-mic</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ea9f" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xea9f;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="mic, microphone" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-book"></span>
+                <span class="mls"> icon-book</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eaa0" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeaa0;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="book, read" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-books"></span>
+                <span class="mls"> icon-books</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eaa1" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeaa1;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="books, library" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-library"></span>
+                <span class="mls"> icon-library</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eaa2" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeaa2;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="library2, bank" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-file-text"></span>
+                <span class="mls"> icon-file-text</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eaa3" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeaa3;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="file-text, file" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-profile"></span>
+                <span class="mls"> icon-profile</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eaa4" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeaa4;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="profile, file2" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-file-empty"></span>
+                <span class="mls"> icon-file-empty</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eaa5" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeaa5;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="file-empty, file3" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-files-empty"></span>
+                <span class="mls"> icon-files-empty</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eaa6" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeaa6;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="files-empty, files" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-file-text2"></span>
+                <span class="mls"> icon-file-text2</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eaa7" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeaa7;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="file-text2, file4" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-file-picture"></span>
+                <span class="mls"> icon-file-picture</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eaa8" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeaa8;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="file-picture, file5" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-file-music"></span>
+                <span class="mls"> icon-file-music</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eaa9" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeaa9;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="file-music, file6" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-file-play"></span>
+                <span class="mls"> icon-file-play</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eaaa" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeaaa;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="file-play, file7" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-file-video"></span>
+                <span class="mls"> icon-file-video</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eaab" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeaab;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="file-video, file8" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-file-zip"></span>
+                <span class="mls"> icon-file-zip</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eaac" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeaac;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="file-zip, file9" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-copy"></span>
+                <span class="mls"> icon-copy</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eaad" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeaad;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="copy, duplicate" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-paste"></span>
+                <span class="mls"> icon-paste</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eaae" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeaae;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="paste, clipboard-file" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-stack"></span>
+                <span class="mls"> icon-stack</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eaaf" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeaaf;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="stack, layers" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-folder"></span>
+                <span class="mls"> icon-folder</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eab0" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeab0;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="folder, directory" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-folder-open"></span>
+                <span class="mls"> icon-folder-open</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eab1" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeab1;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="folder-open, directory2" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-folder-plus"></span>
+                <span class="mls"> icon-folder-plus</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eab2" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeab2;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="folder-plus, directory3" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-folder-minus"></span>
+                <span class="mls"> icon-folder-minus</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eab3" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeab3;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="folder-minus, directory4" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-folder-download"></span>
+                <span class="mls"> icon-folder-download</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eab4" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeab4;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="folder-download, directory5" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-folder-upload"></span>
+                <span class="mls"> icon-folder-upload</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eab5" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeab5;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="folder-upload, directory6" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-price-tag"></span>
+                <span class="mls"> icon-price-tag</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eab6" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeab6;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="price-tag" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-price-tags"></span>
+                <span class="mls"> icon-price-tags</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eab7" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeab7;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="price-tags" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-barcode"></span>
+                <span class="mls"> icon-barcode</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eab8" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeab8;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="barcode" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-qrcode"></span>
+                <span class="mls"> icon-qrcode</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eab9" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeab9;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="qrcode" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-ticket"></span>
+                <span class="mls"> icon-ticket</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eaba" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeaba;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="ticket, theater" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-cart"></span>
+                <span class="mls"> icon-cart</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eabb" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeabb;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="cart, purchase" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-coin-dollar"></span>
+                <span class="mls"> icon-coin-dollar</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eabc" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeabc;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="coin-dollar, money" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-coin-euro"></span>
+                <span class="mls"> icon-coin-euro</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eabd" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeabd;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="coin-euro, money2" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-coin-pound"></span>
+                <span class="mls"> icon-coin-pound</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eabe" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeabe;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="coin-pound, money3" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-coin-yen"></span>
+                <span class="mls"> icon-coin-yen</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eabf" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeabf;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="coin-yen, money4" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-credit-card"></span>
+                <span class="mls"> icon-credit-card</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eac0" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeac0;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="credit-card, money5" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-calculator"></span>
+                <span class="mls"> icon-calculator</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eac1" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeac1;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="calculator, compute" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-lifebuoy"></span>
+                <span class="mls"> icon-lifebuoy</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eac2" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeac2;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="lifebuoy, support" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-phone"></span>
+                <span class="mls"> icon-phone</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eac3" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeac3;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="phone, telephone" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-phone-hang-up"></span>
+                <span class="mls"> icon-phone-hang-up</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eac4" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeac4;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="phone-hang-up, telephone2" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-address-book"></span>
+                <span class="mls"> icon-address-book</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eac5" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeac5;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="address-book, contact" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-envelop"></span>
+                <span class="mls"> icon-envelop</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eac6" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeac6;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="envelop, mail" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-pushpin"></span>
+                <span class="mls"> icon-pushpin</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eac7" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeac7;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="pushpin, pin" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-location"></span>
+                <span class="mls"> icon-location</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eac8" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeac8;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="location, map-marker" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-location2"></span>
+                <span class="mls"> icon-location2</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eac9" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeac9;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="location2, map-marker2" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-compass"></span>
+                <span class="mls"> icon-compass</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eaca" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeaca;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="compass, direction" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-compass2"></span>
+                <span class="mls"> icon-compass2</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eacb" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeacb;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="compass2, direction2" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-map"></span>
+                <span class="mls"> icon-map</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eacc" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeacc;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="map, guide" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-map2"></span>
+                <span class="mls"> icon-map2</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eacd" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeacd;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="map2, guide2" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-history"></span>
+                <span class="mls"> icon-history</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eace" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeace;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="history, time" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-clock"></span>
+                <span class="mls"> icon-clock</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eacf" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeacf;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="clock, time2" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-clock2"></span>
+                <span class="mls"> icon-clock2</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ead0" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xead0;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="clock2, time3" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-alarm"></span>
+                <span class="mls"> icon-alarm</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ead1" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xead1;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="alarm, time4" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-bell"></span>
+                <span class="mls"> icon-bell</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ead2" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xead2;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="bell, alarm2" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-stopwatch"></span>
+                <span class="mls"> icon-stopwatch</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ead3" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xead3;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="stopwatch, time5" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-calendar"></span>
+                <span class="mls"> icon-calendar</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ead4" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xead4;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="calendar, date" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-printer"></span>
+                <span class="mls"> icon-printer</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ead5" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xead5;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="printer, print" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-keyboard"></span>
+                <span class="mls"> icon-keyboard</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ead6" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xead6;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="keyboard, typing" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-display"></span>
+                <span class="mls"> icon-display</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ead7" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xead7;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="display, screen" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-laptop"></span>
+                <span class="mls"> icon-laptop</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ead8" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xead8;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="laptop, computer" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-mobile"></span>
+                <span class="mls"> icon-mobile</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ead9" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xead9;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="mobile, cell-phone" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-mobile2"></span>
+                <span class="mls"> icon-mobile2</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eada" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeada;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="mobile2, cell-phone2" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-tablet"></span>
+                <span class="mls"> icon-tablet</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eadb" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeadb;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="tablet, mobile3" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-tv"></span>
+                <span class="mls"> icon-tv</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eadc" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeadc;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="tv, television" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-drawer"></span>
+                <span class="mls"> icon-drawer</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eadd" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeadd;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="drawer, box" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-drawer2"></span>
+                <span class="mls"> icon-drawer2</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eade" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeade;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="drawer2, box2" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-box-add"></span>
+                <span class="mls"> icon-box-add</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eadf" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeadf;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="box-add, box3" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-box-remove"></span>
+                <span class="mls"> icon-box-remove</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eae0" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeae0;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="box-remove, box4" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-download"></span>
+                <span class="mls"> icon-download</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eae1" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeae1;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="download, save" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-upload"></span>
+                <span class="mls"> icon-upload</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eae2" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeae2;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="upload, load" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-floppy-disk"></span>
+                <span class="mls"> icon-floppy-disk</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eae3" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeae3;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="floppy-disk, save2" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-drive"></span>
+                <span class="mls"> icon-drive</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eae4" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeae4;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="drive, save3" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-database"></span>
+                <span class="mls"> icon-database</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eae5" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeae5;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="database, db" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-undo"></span>
+                <span class="mls"> icon-undo</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eae6" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeae6;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="undo, ccw" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-redo"></span>
+                <span class="mls"> icon-redo</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eae7" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeae7;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="redo, cw" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-undo2"></span>
+                <span class="mls"> icon-undo2</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eae8" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeae8;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="undo2, left" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-redo2"></span>
+                <span class="mls"> icon-redo2</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eae9" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeae9;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="redo2, right" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-forward"></span>
+                <span class="mls"> icon-forward</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eaea" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeaea;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="forward, right2" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-reply"></span>
+                <span class="mls"> icon-reply</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eaeb" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeaeb;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="reply, left2" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-bubble"></span>
+                <span class="mls"> icon-bubble</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eaec" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeaec;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="bubble, comment" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-bubbles"></span>
+                <span class="mls"> icon-bubbles</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eaed" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeaed;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="bubbles, comments" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-bubbles2"></span>
+                <span class="mls"> icon-bubbles2</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eaee" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeaee;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="bubbles2, comments2" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-bubble2"></span>
+                <span class="mls"> icon-bubble2</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eaef" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeaef;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="bubble2, comment2" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-bubbles3"></span>
+                <span class="mls"> icon-bubbles3</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eaf0" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeaf0;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="bubbles3, comments3" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-bubbles4"></span>
+                <span class="mls"> icon-bubbles4</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eaf1" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeaf1;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="bubbles4, comments4" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-user"></span>
+                <span class="mls"> icon-user</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eaf2" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeaf2;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="user, profile2" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-users"></span>
+                <span class="mls"> icon-users</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eaf3" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeaf3;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="users, group" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-user-plus"></span>
+                <span class="mls"> icon-user-plus</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eaf4" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeaf4;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="user-plus, user2" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-user-minus"></span>
+                <span class="mls"> icon-user-minus</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eaf5" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeaf5;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="user-minus, user3" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-user-check"></span>
+                <span class="mls"> icon-user-check</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eaf6" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeaf6;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="user-check, user4" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-user-tie"></span>
+                <span class="mls"> icon-user-tie</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eaf7" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeaf7;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="user-tie, user5" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-quotes-left"></span>
+                <span class="mls"> icon-quotes-left</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eaf8" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeaf8;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="quotes-left, ldquo" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-quotes-right"></span>
+                <span class="mls"> icon-quotes-right</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eaf9" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeaf9;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="quotes-right, rdquo" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-hour-glass"></span>
+                <span class="mls"> icon-hour-glass</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eafa" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeafa;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="hour-glass, loading" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-spinner"></span>
+                <span class="mls"> icon-spinner</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eafb" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeafb;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="spinner, loading2" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-spinner2"></span>
+                <span class="mls"> icon-spinner2</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eafc" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeafc;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="spinner2, loading3" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-spinner3"></span>
+                <span class="mls"> icon-spinner3</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eafd" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeafd;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="spinner3, loading4" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-spinner4"></span>
+                <span class="mls"> icon-spinner4</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eafe" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeafe;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="spinner4, loading5" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-spinner5"></span>
+                <span class="mls"> icon-spinner5</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eaff" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeaff;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="spinner5, loading6" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-spinner6"></span>
+                <span class="mls"> icon-spinner6</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eb00" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeb00;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="spinner6, loading7" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-spinner7"></span>
+                <span class="mls"> icon-spinner7</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eb01" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeb01;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="spinner7, loading8" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-spinner8"></span>
+                <span class="mls"> icon-spinner8</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eb02" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeb02;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="spinner8, loading9" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-spinner9"></span>
+                <span class="mls"> icon-spinner9</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eb03" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeb03;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="spinner9, loading10" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-spinner10"></span>
+                <span class="mls"> icon-spinner10</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eb04" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeb04;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="spinner10, loading11" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-spinner11"></span>
+                <span class="mls"> icon-spinner11</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eb05" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeb05;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="spinner11, loading12" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-binoculars"></span>
+                <span class="mls"> icon-binoculars</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eb06" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeb06;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="binoculars, lookup" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-search"></span>
+                <span class="mls"> icon-search</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eb07" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeb07;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="search, magnifier" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-zoom-in"></span>
+                <span class="mls"> icon-zoom-in</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eb08" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeb08;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="zoom-in, magnifier2" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-zoom-out"></span>
+                <span class="mls"> icon-zoom-out</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eb09" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeb09;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="zoom-out, magnifier3" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-enlarge"></span>
+                <span class="mls"> icon-enlarge</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eb0a" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeb0a;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="enlarge, expand" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-shrink"></span>
+                <span class="mls"> icon-shrink</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eb0b" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeb0b;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="shrink, collapse" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-enlarge2"></span>
+                <span class="mls"> icon-enlarge2</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eb0c" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeb0c;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="enlarge2, expand2" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-shrink2"></span>
+                <span class="mls"> icon-shrink2</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eb0d" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeb0d;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="shrink2, collapse2" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-key"></span>
+                <span class="mls"> icon-key</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eb0e" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeb0e;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="key, password" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-key2"></span>
+                <span class="mls"> icon-key2</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eb0f" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeb0f;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="key2, password2" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-lock"></span>
+                <span class="mls"> icon-lock</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eb10" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeb10;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="lock, secure" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-unlocked"></span>
+                <span class="mls"> icon-unlocked</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eb11" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeb11;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="unlocked, lock-open" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-wrench"></span>
+                <span class="mls"> icon-wrench</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eb12" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeb12;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="wrench, tool" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-equalizer"></span>
+                <span class="mls"> icon-equalizer</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eb13" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeb13;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="equalizer, sliders" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-equalizer2"></span>
+                <span class="mls"> icon-equalizer2</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eb14" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeb14;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="equalizer2, sliders2" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-cog"></span>
+                <span class="mls"> icon-cog</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eb15" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeb15;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="cog, gear" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-cogs"></span>
+                <span class="mls"> icon-cogs</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eb16" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeb16;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="cogs, gears" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-hammer"></span>
+                <span class="mls"> icon-hammer</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eb17" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeb17;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="hammer, tool2" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-magic-wand"></span>
+                <span class="mls"> icon-magic-wand</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eb18" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeb18;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="magic-wand, wizard" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-aid-kit"></span>
+                <span class="mls"> icon-aid-kit</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eb19" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeb19;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="aid-kit, health" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-bug"></span>
+                <span class="mls"> icon-bug</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eb1a" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeb1a;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="bug, virus" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-pie-chart"></span>
+                <span class="mls"> icon-pie-chart</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eb1b" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeb1b;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="pie-chart, stats" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-stats-dots"></span>
+                <span class="mls"> icon-stats-dots</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eb1c" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeb1c;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="stats-dots, stats2" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-stats-bars"></span>
+                <span class="mls"> icon-stats-bars</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eb1d" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeb1d;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="stats-bars, stats3" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-stats-bars2"></span>
+                <span class="mls"> icon-stats-bars2</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eb1e" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeb1e;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="stats-bars2, stats4" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-trophy"></span>
+                <span class="mls"> icon-trophy</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eb1f" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeb1f;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="trophy, cup" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-gift"></span>
+                <span class="mls"> icon-gift</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eb20" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeb20;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="gift, present" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-glass"></span>
+                <span class="mls"> icon-glass</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eb21" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeb21;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="glass, drink" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-glass2"></span>
+                <span class="mls"> icon-glass2</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eb22" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeb22;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="glass2, drink2" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-mug"></span>
+                <span class="mls"> icon-mug</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eb23" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeb23;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="mug, drink3" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-spoon-knife"></span>
+                <span class="mls"> icon-spoon-knife</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eb24" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeb24;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="spoon-knife, food" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-leaf"></span>
+                <span class="mls"> icon-leaf</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eb25" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeb25;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="leaf, nature" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-rocket"></span>
+                <span class="mls"> icon-rocket</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eb26" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeb26;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="rocket, jet" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-meter"></span>
+                <span class="mls"> icon-meter</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eb27" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeb27;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="meter, gauge" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-meter2"></span>
+                <span class="mls"> icon-meter2</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eb28" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeb28;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="meter2, gauge2" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-hammer2"></span>
+                <span class="mls"> icon-hammer2</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eb29" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeb29;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="hammer2, gavel" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-fire"></span>
+                <span class="mls"> icon-fire</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eb2a" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeb2a;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="fire, flame" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-lab"></span>
+                <span class="mls"> icon-lab</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eb2b" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeb2b;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="lab, beta" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-magnet"></span>
+                <span class="mls"> icon-magnet</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eb2c" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeb2c;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="magnet, attract" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-bin"></span>
+                <span class="mls"> icon-bin</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eb2d" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeb2d;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="bin, trashcan" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-bin2"></span>
+                <span class="mls"> icon-bin2</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eb2e" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeb2e;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="bin2, trashcan2" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-briefcase"></span>
+                <span class="mls"> icon-briefcase</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eb2f" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeb2f;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="briefcase, portfolio" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-airplane"></span>
+                <span class="mls"> icon-airplane</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eb30" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeb30;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="airplane, travel" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-truck"></span>
+                <span class="mls"> icon-truck</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eb31" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeb31;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="truck, transit" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-road"></span>
+                <span class="mls"> icon-road</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eb32" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeb32;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="road, asphalt" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-accessibility"></span>
+                <span class="mls"> icon-accessibility</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eb33" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeb33;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="accessibility" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-target"></span>
+                <span class="mls"> icon-target</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eb34" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeb34;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="target, goal" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-shield"></span>
+                <span class="mls"> icon-shield</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eb35" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeb35;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="shield, security" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-power"></span>
+                <span class="mls"> icon-power</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eb36" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeb36;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="power, lightning" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-switch"></span>
+                <span class="mls"> icon-switch</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eb37" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeb37;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="switch" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-power-cord"></span>
+                <span class="mls"> icon-power-cord</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eb38" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeb38;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="power-cord, plugin" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-clipboard"></span>
+                <span class="mls"> icon-clipboard</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eb39" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeb39;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="clipboard, board" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-list-numbered"></span>
+                <span class="mls"> icon-list-numbered</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eb3a" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeb3a;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="list-numbered, options" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-list"></span>
+                <span class="mls"> icon-list</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eb3b" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeb3b;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="list, todo" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-list2"></span>
+                <span class="mls"> icon-list2</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eb3c" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeb3c;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="list2, todo2" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-tree"></span>
+                <span class="mls"> icon-tree</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eb3d" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeb3d;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="tree, branches" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-menu"></span>
+                <span class="mls"> icon-menu</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eb3e" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeb3e;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="menu, list3" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-menu2"></span>
+                <span class="mls"> icon-menu2</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eb3f" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeb3f;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="menu2, options2" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-menu3"></span>
+                <span class="mls"> icon-menu3</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eb40" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeb40;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="menu3, options3" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-menu4"></span>
+                <span class="mls"> icon-menu4</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eb41" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeb41;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="menu4, options4" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-cloud"></span>
+                <span class="mls"> icon-cloud</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eb42" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeb42;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="cloud, weather" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-cloud-download"></span>
+                <span class="mls"> icon-cloud-download</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eb43" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeb43;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="cloud-download, cloud2" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-cloud-upload"></span>
+                <span class="mls"> icon-cloud-upload</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eb44" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeb44;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="cloud-upload, cloud3" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-cloud-check"></span>
+                <span class="mls"> icon-cloud-check</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eb45" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeb45;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="cloud-check, cloud4" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-download2"></span>
+                <span class="mls"> icon-download2</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eb46" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeb46;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="download2, save4" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-upload2"></span>
+                <span class="mls"> icon-upload2</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eb47" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeb47;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="upload2, load2" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-download3"></span>
+                <span class="mls"> icon-download3</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eb48" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeb48;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="download3, save5" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-upload3"></span>
+                <span class="mls"> icon-upload3</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eb49" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeb49;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="upload3, load3" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-sphere"></span>
+                <span class="mls"> icon-sphere</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eb4a" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeb4a;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="sphere, globe" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-earth"></span>
+                <span class="mls"> icon-earth</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eb4b" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeb4b;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="earth, globe2" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-link"></span>
+                <span class="mls"> icon-link</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eb4c" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeb4c;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="link, chain" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-flag"></span>
+                <span class="mls"> icon-flag</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eb4d" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeb4d;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="flag, report" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-attachment"></span>
+                <span class="mls"> icon-attachment</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eb4e" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeb4e;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="attachment, paperclip" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-eye"></span>
+                <span class="mls"> icon-eye</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eb4f" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeb4f;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="eye, views" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-eye-plus"></span>
+                <span class="mls"> icon-eye-plus</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eb50" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeb50;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="eye-plus, views2" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-eye-minus"></span>
+                <span class="mls"> icon-eye-minus</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eb51" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeb51;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="eye-minus, views3" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-eye-blocked"></span>
+                <span class="mls"> icon-eye-blocked</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eb52" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeb52;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="eye-blocked, views4" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-bookmark"></span>
+                <span class="mls"> icon-bookmark</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eb53" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeb53;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="bookmark, ribbon" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-bookmarks"></span>
+                <span class="mls"> icon-bookmarks</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eb54" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeb54;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="bookmarks, ribbons" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-sun"></span>
+                <span class="mls"> icon-sun</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eb55" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeb55;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="sun, weather2" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-contrast"></span>
+                <span class="mls"> icon-contrast</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eb56" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeb56;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="contrast" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-brightness-contrast"></span>
+                <span class="mls"> icon-brightness-contrast</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eb57" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeb57;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="brightness-contrast" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-star-empty"></span>
+                <span class="mls"> icon-star-empty</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eb58" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeb58;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="star-empty, rate" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-star-half"></span>
+                <span class="mls"> icon-star-half</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eb59" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeb59;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="star-half, rate2" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-star-full"></span>
+                <span class="mls"> icon-star-full</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eb5a" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeb5a;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="star-full, rate3" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-heart"></span>
+                <span class="mls"> icon-heart</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eb5b" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeb5b;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="heart, like" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-heart-broken"></span>
+                <span class="mls"> icon-heart-broken</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eb5c" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeb5c;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="heart-broken, heart2" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-man"></span>
+                <span class="mls"> icon-man</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eb5d" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeb5d;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="man, male" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-woman"></span>
+                <span class="mls"> icon-woman</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eb5e" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeb5e;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="woman, female" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-man-woman"></span>
+                <span class="mls"> icon-man-woman</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eb5f" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeb5f;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="man-woman, toilet" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-happy"></span>
+                <span class="mls"> icon-happy</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eb60" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeb60;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="happy, emoticon" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-happy2"></span>
+                <span class="mls"> icon-happy2</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eb61" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeb61;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="happy2, emoticon2" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-smile"></span>
+                <span class="mls"> icon-smile</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eb62" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeb62;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="smile, emoticon3" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-smile2"></span>
+                <span class="mls"> icon-smile2</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eb63" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeb63;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="smile2, emoticon4" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-tongue"></span>
+                <span class="mls"> icon-tongue</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eb64" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeb64;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="tongue, emoticon5" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-tongue2"></span>
+                <span class="mls"> icon-tongue2</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eb65" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeb65;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="tongue2, emoticon6" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-sad"></span>
+                <span class="mls"> icon-sad</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eb66" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeb66;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="sad, emoticon7" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-sad2"></span>
+                <span class="mls"> icon-sad2</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eb67" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeb67;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="sad2, emoticon8" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-wink"></span>
+                <span class="mls"> icon-wink</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eb68" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeb68;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="wink, emoticon9" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-wink2"></span>
+                <span class="mls"> icon-wink2</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eb69" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeb69;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="wink2, emoticon10" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-grin"></span>
+                <span class="mls"> icon-grin</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eb6a" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeb6a;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="grin, emoticon11" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-grin2"></span>
+                <span class="mls"> icon-grin2</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eb6b" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeb6b;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="grin2, emoticon12" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-cool"></span>
+                <span class="mls"> icon-cool</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eb6c" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeb6c;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="cool, emoticon13" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-cool2"></span>
+                <span class="mls"> icon-cool2</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eb6d" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeb6d;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="cool2, emoticon14" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-angry"></span>
+                <span class="mls"> icon-angry</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eb6e" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeb6e;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="angry, emoticon15" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-angry2"></span>
+                <span class="mls"> icon-angry2</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eb6f" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeb6f;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="angry2, emoticon16" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-evil"></span>
+                <span class="mls"> icon-evil</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eb70" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeb70;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="evil, emoticon17" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-evil2"></span>
+                <span class="mls"> icon-evil2</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eb71" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeb71;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="evil2, emoticon18" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-shocked"></span>
+                <span class="mls"> icon-shocked</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eb72" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeb72;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="shocked, emoticon19" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-shocked2"></span>
+                <span class="mls"> icon-shocked2</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eb73" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeb73;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="shocked2, emoticon20" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-baffled"></span>
+                <span class="mls"> icon-baffled</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eb74" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeb74;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="baffled, emoticon21" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-baffled2"></span>
+                <span class="mls"> icon-baffled2</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eb75" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeb75;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="baffled2, emoticon22" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-confused"></span>
+                <span class="mls"> icon-confused</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eb76" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeb76;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="confused, emoticon23" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-confused2"></span>
+                <span class="mls"> icon-confused2</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eb77" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeb77;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="confused2, emoticon24" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-neutral"></span>
+                <span class="mls"> icon-neutral</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eb78" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeb78;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="neutral, emoticon25" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-neutral2"></span>
+                <span class="mls"> icon-neutral2</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eb79" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeb79;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="neutral2, emoticon26" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-hipster"></span>
+                <span class="mls"> icon-hipster</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eb7a" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeb7a;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="hipster, emoticon27" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-hipster2"></span>
+                <span class="mls"> icon-hipster2</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eb7b" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeb7b;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="hipster2, emoticon28" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-wondering"></span>
+                <span class="mls"> icon-wondering</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eb7c" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeb7c;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="wondering, emoticon29" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-wondering2"></span>
+                <span class="mls"> icon-wondering2</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eb7d" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeb7d;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="wondering2, emoticon30" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-sleepy"></span>
+                <span class="mls"> icon-sleepy</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eb7e" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeb7e;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="sleepy, emoticon31" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-sleepy2"></span>
+                <span class="mls"> icon-sleepy2</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eb7f" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeb7f;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="sleepy2, emoticon32" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-frustrated"></span>
+                <span class="mls"> icon-frustrated</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eb80" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeb80;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="frustrated, emoticon33" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-frustrated2"></span>
+                <span class="mls"> icon-frustrated2</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eb81" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeb81;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="frustrated2, emoticon34" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-crying"></span>
+                <span class="mls"> icon-crying</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eb82" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeb82;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="crying, emoticon35" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-crying2"></span>
+                <span class="mls"> icon-crying2</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eb83" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeb83;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="crying2, emoticon36" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-point-up"></span>
+                <span class="mls"> icon-point-up</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eb84" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeb84;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="point-up, finger" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-point-right"></span>
+                <span class="mls"> icon-point-right</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eb85" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeb85;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="point-right, finger2" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-point-down"></span>
+                <span class="mls"> icon-point-down</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eb86" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeb86;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="point-down, finger3" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-point-left"></span>
+                <span class="mls"> icon-point-left</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eb87" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeb87;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="point-left, finger4" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-warning"></span>
+                <span class="mls"> icon-warning</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eb88" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeb88;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="warning, sign" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-notification"></span>
+                <span class="mls"> icon-notification</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eb89" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeb89;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="notification, warning2" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-question"></span>
+                <span class="mls"> icon-question</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eb8a" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeb8a;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="question, help" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-plus"></span>
+                <span class="mls"> icon-plus</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eb8b" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeb8b;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="plus, add" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-minus"></span>
+                <span class="mls"> icon-minus</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eb8c" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeb8c;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="minus, subtract" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-info"></span>
+                <span class="mls"> icon-info</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eb8d" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeb8d;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="info, information" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-cancel-circle"></span>
+                <span class="mls"> icon-cancel-circle</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eb8e" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeb8e;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="cancel-circle, close" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-blocked"></span>
+                <span class="mls"> icon-blocked</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eb8f" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeb8f;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="blocked, forbidden" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-cross"></span>
+                <span class="mls"> icon-cross</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eb90" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeb90;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="cross, cancel" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-checkmark"></span>
+                <span class="mls"> icon-checkmark</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eb91" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeb91;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="checkmark, tick" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-checkmark2"></span>
+                <span class="mls"> icon-checkmark2</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eb92" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeb92;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="checkmark2, tick2" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-spell-check"></span>
+                <span class="mls"> icon-spell-check</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eb93" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeb93;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="spell-check, spelling" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-enter"></span>
+                <span class="mls"> icon-enter</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eb94" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeb94;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="enter, signin" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-exit"></span>
+                <span class="mls"> icon-exit</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eb95" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeb95;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="exit, signout" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-play2"></span>
+                <span class="mls"> icon-play2</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eb96" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeb96;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="play2, player" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-pause"></span>
+                <span class="mls"> icon-pause</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eb97" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeb97;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="pause, player2" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-stop"></span>
+                <span class="mls"> icon-stop</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eb98" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeb98;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="stop, player3" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-previous"></span>
+                <span class="mls"> icon-previous</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eb99" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeb99;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="previous, player4" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-next"></span>
+                <span class="mls"> icon-next</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eb9a" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeb9a;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="next, player5" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-backward"></span>
+                <span class="mls"> icon-backward</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eb9b" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeb9b;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="backward, player6" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-forward2"></span>
+                <span class="mls"> icon-forward2</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eb9c" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeb9c;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="forward2, player7" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-play3"></span>
+                <span class="mls"> icon-play3</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eb9d" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeb9d;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="play3, player8" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-pause2"></span>
+                <span class="mls"> icon-pause2</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eb9e" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeb9e;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="pause2, player9" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-stop2"></span>
+                <span class="mls"> icon-stop2</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eb9f" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeb9f;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="stop2, player10" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-backward2"></span>
+                <span class="mls"> icon-backward2</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eba0" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeba0;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="backward2, player11" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-forward3"></span>
+                <span class="mls"> icon-forward3</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eba1" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeba1;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="forward3, player12" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-first"></span>
+                <span class="mls"> icon-first</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eba2" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeba2;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="first, player13" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-last"></span>
+                <span class="mls"> icon-last</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eba3" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeba3;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="last, player14" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-previous2"></span>
+                <span class="mls"> icon-previous2</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eba4" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeba4;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="previous2, player15" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-next2"></span>
+                <span class="mls"> icon-next2</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eba5" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeba5;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="next2, player16" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-eject"></span>
+                <span class="mls"> icon-eject</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eba6" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeba6;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="eject, player17" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-volume-high"></span>
+                <span class="mls"> icon-volume-high</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eba7" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeba7;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="volume-high, volume" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-volume-medium"></span>
+                <span class="mls"> icon-volume-medium</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eba8" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeba8;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="volume-medium, volume2" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-volume-low"></span>
+                <span class="mls"> icon-volume-low</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="eba9" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xeba9;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="volume-low, volume3" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-volume-mute"></span>
+                <span class="mls"> icon-volume-mute</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ebaa" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xebaa;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="volume-mute, volume4" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-volume-mute2"></span>
+                <span class="mls"> icon-volume-mute2</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ebab" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xebab;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="volume-mute2, volume5" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-volume-increase"></span>
+                <span class="mls"> icon-volume-increase</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ebac" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xebac;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="volume-increase, volume6" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-volume-decrease"></span>
+                <span class="mls"> icon-volume-decrease</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ebad" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xebad;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="volume-decrease, volume7" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-loop"></span>
+                <span class="mls"> icon-loop</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ebae" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xebae;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="loop, repeat" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-loop2"></span>
+                <span class="mls"> icon-loop2</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ebaf" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xebaf;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="loop2, repeat2" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-infinite"></span>
+                <span class="mls"> icon-infinite</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ebb0" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xebb0;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="infinite" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-shuffle"></span>
+                <span class="mls"> icon-shuffle</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ebb1" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xebb1;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="shuffle, random" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-arrow-up-left"></span>
+                <span class="mls"> icon-arrow-up-left</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ebb2" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xebb2;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="arrow-up-left, up-left" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-arrow-up"></span>
+                <span class="mls"> icon-arrow-up</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ebb3" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xebb3;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="arrow-up, up" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-arrow-up-right"></span>
+                <span class="mls"> icon-arrow-up-right</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ebb4" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xebb4;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="arrow-up-right, up-right" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-arrow-right"></span>
+                <span class="mls"> icon-arrow-right</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ebb5" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xebb5;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="arrow-right, right3" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-arrow-down-right"></span>
+                <span class="mls"> icon-arrow-down-right</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ebb6" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xebb6;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="arrow-down-right, down-right" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-arrow-down"></span>
+                <span class="mls"> icon-arrow-down</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ebb7" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xebb7;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="arrow-down, down" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-arrow-down-left"></span>
+                <span class="mls"> icon-arrow-down-left</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ebb8" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xebb8;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="arrow-down-left, down-left" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-arrow-left"></span>
+                <span class="mls"> icon-arrow-left</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ebb9" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xebb9;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="arrow-left, left3" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-arrow-up-left2"></span>
+                <span class="mls"> icon-arrow-up-left2</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ebba" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xebba;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="arrow-up-left2, up-left2" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-arrow-up2"></span>
+                <span class="mls"> icon-arrow-up2</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ebbb" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xebbb;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="arrow-up2, up2" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-arrow-up-right2"></span>
+                <span class="mls"> icon-arrow-up-right2</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ebbc" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xebbc;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="arrow-up-right2, up-right2" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-arrow-right2"></span>
+                <span class="mls"> icon-arrow-right2</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ebbd" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xebbd;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="arrow-right2, right4" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-arrow-down-right2"></span>
+                <span class="mls"> icon-arrow-down-right2</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ebbe" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xebbe;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="arrow-down-right2, down-right2" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-arrow-down2"></span>
+                <span class="mls"> icon-arrow-down2</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ebbf" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xebbf;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="arrow-down2, down2" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-arrow-down-left2"></span>
+                <span class="mls"> icon-arrow-down-left2</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ebc0" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xebc0;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="arrow-down-left2, down-left2" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-arrow-left2"></span>
+                <span class="mls"> icon-arrow-left2</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ebc1" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xebc1;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="arrow-left2, left4" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-circle-up"></span>
+                <span class="mls"> icon-circle-up</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ebc2" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xebc2;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="circle-up, up3" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-circle-right"></span>
+                <span class="mls"> icon-circle-right</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ebc3" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xebc3;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="circle-right, right5" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-circle-down"></span>
+                <span class="mls"> icon-circle-down</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ebc4" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xebc4;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="circle-down, down3" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-circle-left"></span>
+                <span class="mls"> icon-circle-left</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ebc5" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xebc5;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="circle-left, left5" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-tab"></span>
+                <span class="mls"> icon-tab</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ebc6" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xebc6;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="tab, arrows" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-move-up"></span>
+                <span class="mls"> icon-move-up</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ebc7" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xebc7;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="move-up, sort" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-move-down"></span>
+                <span class="mls"> icon-move-down</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ebc8" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xebc8;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="move-down, sort2" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-sort-alpha-asc"></span>
+                <span class="mls"> icon-sort-alpha-asc</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ebc9" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xebc9;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="sort-alpha-asc, arrange" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-sort-alpha-desc"></span>
+                <span class="mls"> icon-sort-alpha-desc</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ebca" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xebca;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="sort-alpha-desc, arrange2" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-sort-numeric-asc"></span>
+                <span class="mls"> icon-sort-numeric-asc</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ebcb" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xebcb;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="sort-numeric-asc, arrange3" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-sort-numberic-desc"></span>
+                <span class="mls"> icon-sort-numberic-desc</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ebcc" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xebcc;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="sort-numberic-desc, arrange4" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-sort-amount-asc"></span>
+                <span class="mls"> icon-sort-amount-asc</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ebcd" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xebcd;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="sort-amount-asc, arrange5" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-sort-amount-desc"></span>
+                <span class="mls"> icon-sort-amount-desc</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ebce" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xebce;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="sort-amount-desc, arrange6" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-command"></span>
+                <span class="mls"> icon-command</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ebcf" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xebcf;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="command, cmd" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-shift"></span>
+                <span class="mls"> icon-shift</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ebd0" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xebd0;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="shift" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-ctrl"></span>
+                <span class="mls"> icon-ctrl</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ebd1" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xebd1;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="ctrl, control" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-opt"></span>
+                <span class="mls"> icon-opt</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ebd2" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xebd2;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="opt, option" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-checkbox-checked"></span>
+                <span class="mls"> icon-checkbox-checked</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ebd3" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xebd3;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="checkbox-checked, checkbox" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-checkbox-unchecked"></span>
+                <span class="mls"> icon-checkbox-unchecked</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ebd4" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xebd4;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="checkbox-unchecked, checkbox2" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-radio-checked"></span>
+                <span class="mls"> icon-radio-checked</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ebd5" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xebd5;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="radio-checked, radio-button" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-radio-checked2"></span>
+                <span class="mls"> icon-radio-checked2</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ebd6" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xebd6;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="radio-checked2, radio-button2" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-radio-unchecked"></span>
+                <span class="mls"> icon-radio-unchecked</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ebd7" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xebd7;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="radio-unchecked, radio-button3" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-crop"></span>
+                <span class="mls"> icon-crop</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ebd8" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xebd8;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="crop, resize" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-make-group"></span>
+                <span class="mls"> icon-make-group</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ebd9" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xebd9;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="make-group" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-ungroup"></span>
+                <span class="mls"> icon-ungroup</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ebda" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xebda;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="ungroup" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-scissors"></span>
+                <span class="mls"> icon-scissors</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ebdb" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xebdb;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="scissors, cut" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-filter"></span>
+                <span class="mls"> icon-filter</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ebdc" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xebdc;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="filter, funnel" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-font"></span>
+                <span class="mls"> icon-font</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ebdd" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xebdd;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="font, typeface" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-ligature"></span>
+                <span class="mls"> icon-ligature</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ebde" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xebde;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="ligature, typography" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-ligature2"></span>
+                <span class="mls"> icon-ligature2</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ebdf" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xebdf;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="ligature2, typography2" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-text-height"></span>
+                <span class="mls"> icon-text-height</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ebe0" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xebe0;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="text-height, wysiwyg" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-text-width"></span>
+                <span class="mls"> icon-text-width</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ebe1" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xebe1;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="text-width, wysiwyg2" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-font-size"></span>
+                <span class="mls"> icon-font-size</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ebe2" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xebe2;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="font-size, wysiwyg3" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-bold"></span>
+                <span class="mls"> icon-bold</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ebe3" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xebe3;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="bold, wysiwyg4" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-underline"></span>
+                <span class="mls"> icon-underline</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ebe4" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xebe4;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="underline, wysiwyg5" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-italic"></span>
+                <span class="mls"> icon-italic</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ebe5" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xebe5;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="italic, wysiwyg6" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-strikethrough"></span>
+                <span class="mls"> icon-strikethrough</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ebe6" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xebe6;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="strikethrough, wysiwyg7" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-omega"></span>
+                <span class="mls"> icon-omega</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ebe7" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xebe7;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="omega, wysiwyg8" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-sigma"></span>
+                <span class="mls"> icon-sigma</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ebe8" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xebe8;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="sigma, wysiwyg9" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-page-break"></span>
+                <span class="mls"> icon-page-break</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ebe9" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xebe9;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="page-break, wysiwyg10" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-superscript"></span>
+                <span class="mls"> icon-superscript</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ebea" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xebea;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="superscript, wysiwyg11" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-subscript"></span>
+                <span class="mls"> icon-subscript</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ebeb" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xebeb;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="subscript, wysiwyg12" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-superscript2"></span>
+                <span class="mls"> icon-superscript2</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ebec" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xebec;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="superscript2, wysiwyg13" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-subscript2"></span>
+                <span class="mls"> icon-subscript2</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ebed" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xebed;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="subscript2, wysiwyg14" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-text-color"></span>
+                <span class="mls"> icon-text-color</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ebee" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xebee;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="text-color, wysiwyg15" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-pagebreak"></span>
+                <span class="mls"> icon-pagebreak</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ebef" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xebef;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="pagebreak, wysiwyg16" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-clear-formatting"></span>
+                <span class="mls"> icon-clear-formatting</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ebf0" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xebf0;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="clear-formatting, wysiwyg17" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-table"></span>
+                <span class="mls"> icon-table</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ebf1" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xebf1;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="table, wysiwyg18" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-table2"></span>
+                <span class="mls"> icon-table2</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ebf2" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xebf2;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="table2, wysiwyg19" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-insert-template"></span>
+                <span class="mls"> icon-insert-template</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ebf3" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xebf3;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="insert-template, wysiwyg20" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-pilcrow"></span>
+                <span class="mls"> icon-pilcrow</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ebf4" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xebf4;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="pilcrow, wysiwyg21" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-ltr"></span>
+                <span class="mls"> icon-ltr</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ebf5" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xebf5;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="ltr, wysiwyg22" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-rtl"></span>
+                <span class="mls"> icon-rtl</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ebf6" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xebf6;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="rtl, wysiwyg23" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-section"></span>
+                <span class="mls"> icon-section</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ebf7" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xebf7;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="section, wysiwyg24" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-paragraph-left"></span>
+                <span class="mls"> icon-paragraph-left</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ebf8" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xebf8;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="paragraph-left, wysiwyg25" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-paragraph-center"></span>
+                <span class="mls"> icon-paragraph-center</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ebf9" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xebf9;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="paragraph-center, wysiwyg26" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-paragraph-right"></span>
+                <span class="mls"> icon-paragraph-right</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ebfa" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xebfa;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="paragraph-right, wysiwyg27" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-paragraph-justify"></span>
+                <span class="mls"> icon-paragraph-justify</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ebfb" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xebfb;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="paragraph-justify, wysiwyg28" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-indent-increase"></span>
+                <span class="mls"> icon-indent-increase</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ebfc" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xebfc;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="indent-increase, wysiwyg29" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-indent-decrease"></span>
+                <span class="mls"> icon-indent-decrease</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ebfd" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xebfd;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="indent-decrease, wysiwyg30" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-share"></span>
+                <span class="mls"> icon-share</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ebfe" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xebfe;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="share, out" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-new-tab"></span>
+                <span class="mls"> icon-new-tab</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ebff" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xebff;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="new-tab, out2" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-embed"></span>
+                <span class="mls"> icon-embed</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ec00" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xec00;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="embed, code" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-embed2"></span>
+                <span class="mls"> icon-embed2</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ec01" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xec01;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="embed2, code2" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-terminal"></span>
+                <span class="mls"> icon-terminal</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ec02" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xec02;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="terminal, console" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-share2"></span>
+                <span class="mls"> icon-share2</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ec03" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xec03;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="share2, social" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-mail"></span>
+                <span class="mls"> icon-mail</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ec04" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xec04;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="mail2, contact2" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-mail2"></span>
+                <span class="mls"> icon-mail2</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ec05" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xec05;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="mail3, contact3" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-mail3"></span>
+                <span class="mls"> icon-mail3</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ec06" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xec06;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="mail4, contact4" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-mail4"></span>
+                <span class="mls"> icon-mail4</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ec07" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xec07;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="mail5, contact5" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-amazon"></span>
+                <span class="mls"> icon-amazon</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ec08" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xec08;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="amazon, brand" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-google"></span>
+                <span class="mls"> icon-google</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ec09" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xec09;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="google, brand2" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-google2"></span>
+                <span class="mls"> icon-google2</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ec0a" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xec0a;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="google2, brand3" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-google3"></span>
+                <span class="mls"> icon-google3</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ec0b" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xec0b;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="google3, brand4" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-google-plus"></span>
+                <span class="mls"> icon-google-plus</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ec0c" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xec0c;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="google-plus, brand5" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-google-plus2"></span>
+                <span class="mls"> icon-google-plus2</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ec0d" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xec0d;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="google-plus2, brand6" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-google-plus3"></span>
+                <span class="mls"> icon-google-plus3</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ec0e" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xec0e;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="google-plus3, brand7" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-hangouts"></span>
+                <span class="mls"> icon-hangouts</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ec0f" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xec0f;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="hangouts, brand8" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-google-drive"></span>
+                <span class="mls"> icon-google-drive</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ec10" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xec10;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="google-drive, brand9" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-facebook"></span>
+                <span class="mls"> icon-facebook</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ec11" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xec11;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="facebook, brand10" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-facebook2"></span>
+                <span class="mls"> icon-facebook2</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ec12" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xec12;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="facebook2, brand11" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-instagram"></span>
+                <span class="mls"> icon-instagram</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ec13" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xec13;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="instagram, brand12" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-whatsapp"></span>
+                <span class="mls"> icon-whatsapp</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ec14" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xec14;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="whatsapp, brand13" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-spotify"></span>
+                <span class="mls"> icon-spotify</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ec15" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xec15;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="spotify, brand14" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-telegram"></span>
+                <span class="mls"> icon-telegram</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ec16" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xec16;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="telegram, brand15" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-twitter"></span>
+                <span class="mls"> icon-twitter</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ec17" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xec17;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="twitter, brand16" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-vine"></span>
+                <span class="mls"> icon-vine</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ec18" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xec18;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="vine, brand17" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-vk"></span>
+                <span class="mls"> icon-vk</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ec19" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xec19;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="vk, brand18" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-renren"></span>
+                <span class="mls"> icon-renren</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ec1a" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xec1a;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="renren, brand19" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-sina-weibo"></span>
+                <span class="mls"> icon-sina-weibo</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ec1b" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xec1b;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="sina-weibo, brand20" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-rss"></span>
+                <span class="mls"> icon-rss</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ec1c" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xec1c;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="feed2, rss" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-rss2"></span>
+                <span class="mls"> icon-rss2</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ec1d" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xec1d;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="feed3, rss2" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-youtube"></span>
+                <span class="mls"> icon-youtube</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ec1e" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xec1e;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="youtube, brand21" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-youtube2"></span>
+                <span class="mls"> icon-youtube2</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ec1f" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xec1f;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="youtube2, brand22" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-twitch"></span>
+                <span class="mls"> icon-twitch</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ec20" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xec20;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="twitch, brand23" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-vimeo"></span>
+                <span class="mls"> icon-vimeo</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ec21" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xec21;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="vimeo, brand24" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-vimeo2"></span>
+                <span class="mls"> icon-vimeo2</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ec22" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xec22;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="vimeo2, brand25" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-lanyrd"></span>
+                <span class="mls"> icon-lanyrd</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ec23" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xec23;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="lanyrd, brand26" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-flickr"></span>
+                <span class="mls"> icon-flickr</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ec24" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xec24;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="flickr, brand27" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-flickr2"></span>
+                <span class="mls"> icon-flickr2</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ec25" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xec25;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="flickr2, brand28" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-flickr3"></span>
+                <span class="mls"> icon-flickr3</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ec26" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xec26;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="flickr3, brand29" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-flickr4"></span>
+                <span class="mls"> icon-flickr4</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ec27" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xec27;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="flickr4, brand30" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-dribbble"></span>
+                <span class="mls"> icon-dribbble</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ec28" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xec28;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="dribbble, brand31" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-behance"></span>
+                <span class="mls"> icon-behance</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ec29" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xec29;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="behance, brand32" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-behance2"></span>
+                <span class="mls"> icon-behance2</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ec2a" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xec2a;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="behance2, brand33" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-deviantart"></span>
+                <span class="mls"> icon-deviantart</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ec2b" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xec2b;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="deviantart, brand34" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-500px"></span>
+                <span class="mls"> icon-500px</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ec2c" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xec2c;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="500px, brand35" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-steam"></span>
+                <span class="mls"> icon-steam</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ec2d" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xec2d;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="steam, brand36" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-steam2"></span>
+                <span class="mls"> icon-steam2</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ec2e" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xec2e;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="steam2, brand37" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-dropbox"></span>
+                <span class="mls"> icon-dropbox</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ec2f" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xec2f;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="dropbox, brand38" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-onedrive"></span>
+                <span class="mls"> icon-onedrive</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ec30" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xec30;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="onedrive, brand39" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-github"></span>
+                <span class="mls"> icon-github</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ec31" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xec31;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="github, brand40" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-npm"></span>
+                <span class="mls"> icon-npm</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ec32" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xec32;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="npm, brand41" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-basecamp"></span>
+                <span class="mls"> icon-basecamp</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ec33" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xec33;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="basecamp, brand42" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-trello"></span>
+                <span class="mls"> icon-trello</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ec34" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xec34;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="trello, brand43" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-wordpress"></span>
+                <span class="mls"> icon-wordpress</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ec35" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xec35;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="wordpress, brand44" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-joomla"></span>
+                <span class="mls"> icon-joomla</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ec36" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xec36;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="joomla, brand45" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-ello"></span>
+                <span class="mls"> icon-ello</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ec37" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xec37;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="ello, brand46" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-blogger"></span>
+                <span class="mls"> icon-blogger</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ec38" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xec38;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="blogger, brand47" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-blogger2"></span>
+                <span class="mls"> icon-blogger2</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ec39" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xec39;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="blogger2, brand48" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-tumblr"></span>
+                <span class="mls"> icon-tumblr</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ec3a" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xec3a;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="tumblr, brand49" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-tumblr2"></span>
+                <span class="mls"> icon-tumblr2</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ec3b" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xec3b;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="tumblr2, brand50" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-yahoo"></span>
+                <span class="mls"> icon-yahoo</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ec3c" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xec3c;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="yahoo, brand51" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-yahoo2"></span>
+                <span class="mls"> icon-yahoo2</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ec3d" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xec3d;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="yahoo2" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-tux"></span>
+                <span class="mls"> icon-tux</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ec3e" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xec3e;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="tux, brand52" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-appleinc"></span>
+                <span class="mls"> icon-appleinc</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ec3f" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xec3f;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="apple, brand53" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-finder"></span>
+                <span class="mls"> icon-finder</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ec40" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xec40;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="finder, brand54" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-android"></span>
+                <span class="mls"> icon-android</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ec41" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xec41;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="android, brand55" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-windows"></span>
+                <span class="mls"> icon-windows</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ec42" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xec42;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="windows, brand56" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-windows8"></span>
+                <span class="mls"> icon-windows8</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ec43" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xec43;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="windows8, brand57" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-soundcloud"></span>
+                <span class="mls"> icon-soundcloud</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ec44" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xec44;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="soundcloud, brand58" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-soundcloud2"></span>
+                <span class="mls"> icon-soundcloud2</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ec45" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xec45;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="soundcloud2, brand59" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-skype"></span>
+                <span class="mls"> icon-skype</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ec46" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xec46;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="skype, brand60" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-reddit"></span>
+                <span class="mls"> icon-reddit</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ec47" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xec47;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="reddit, brand61" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-hackernews"></span>
+                <span class="mls"> icon-hackernews</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ec48" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xec48;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="hackernews, brand62" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-wikipedia"></span>
+                <span class="mls"> icon-wikipedia</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ec49" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xec49;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="wikipedia, brand63" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-linkedin"></span>
+                <span class="mls"> icon-linkedin</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ec4a" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xec4a;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="linkedin, brand64" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-linkedin2"></span>
+                <span class="mls"> icon-linkedin2</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ec4b" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xec4b;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="linkedin2, brand65" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-lastfm"></span>
+                <span class="mls"> icon-lastfm</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ec4c" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xec4c;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="lastfm, brand66" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-lastfm2"></span>
+                <span class="mls"> icon-lastfm2</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ec4d" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xec4d;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="lastfm2, brand67" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-delicious"></span>
+                <span class="mls"> icon-delicious</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ec4e" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xec4e;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="delicious, brand68" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-stumbleupon"></span>
+                <span class="mls"> icon-stumbleupon</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ec4f" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xec4f;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="stumbleupon, brand69" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-stumbleupon2"></span>
+                <span class="mls"> icon-stumbleupon2</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ec50" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xec50;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="stumbleupon2, brand70" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-stackoverflow"></span>
+                <span class="mls"> icon-stackoverflow</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ec51" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xec51;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="stackoverflow, brand71" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-pinterest"></span>
+                <span class="mls"> icon-pinterest</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ec52" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xec52;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="pinterest, brand72" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-pinterest2"></span>
+                <span class="mls"> icon-pinterest2</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ec53" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xec53;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="pinterest2, brand73" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-xing"></span>
+                <span class="mls"> icon-xing</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ec54" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xec54;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="xing, brand74" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-xing2"></span>
+                <span class="mls"> icon-xing2</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ec55" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xec55;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="xing2, brand75" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-flattr"></span>
+                <span class="mls"> icon-flattr</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ec56" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xec56;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="flattr, brand76" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-foursquare"></span>
+                <span class="mls"> icon-foursquare</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ec57" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xec57;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="foursquare, brand77" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-yelp"></span>
+                <span class="mls"> icon-yelp</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ec58" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xec58;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="yelp, brand78" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-paypal"></span>
+                <span class="mls"> icon-paypal</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ec59" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xec59;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="paypal, brand79" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-chrome"></span>
+                <span class="mls"> icon-chrome</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ec5a" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xec5a;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="chrome, browser" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-firefox"></span>
+                <span class="mls"> icon-firefox</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ec5b" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xec5b;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="firefox, browser2" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-IE"></span>
+                <span class="mls"> icon-IE</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ec5c" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xec5c;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="IE, browser3" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-edge"></span>
+                <span class="mls"> icon-edge</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ec5d" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xec5d;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="edge, browser4" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-safari"></span>
+                <span class="mls"> icon-safari</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ec5e" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xec5e;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="safari, browser5" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-opera"></span>
+                <span class="mls"> icon-opera</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ec5f" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xec5f;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="opera, browser6" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-file-pdf"></span>
+                <span class="mls"> icon-file-pdf</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ec60" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xec60;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="file-pdf, file10" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-file-openoffice"></span>
+                <span class="mls"> icon-file-openoffice</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ec61" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xec61;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="file-openoffice, file11" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-file-word"></span>
+                <span class="mls"> icon-file-word</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ec62" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xec62;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="file-word, file12" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-file-excel"></span>
+                <span class="mls"> icon-file-excel</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ec63" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xec63;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="file-excel, file13" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-libreoffice"></span>
+                <span class="mls"> icon-libreoffice</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ec64" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xec64;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="libreoffice, file14" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-html-five"></span>
+                <span class="mls"> icon-html-five</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ec65" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xec65;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="html-five, w3c" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-html-five2"></span>
+                <span class="mls"> icon-html-five2</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ec66" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xec66;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="html-five2, w3c2" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-css3"></span>
+                <span class="mls"> icon-css3</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ec67" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xec67;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="css3, w3c3" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-git"></span>
+                <span class="mls"> icon-git</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ec68" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xec68;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="git, brand80" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-codepen"></span>
+                <span class="mls"> icon-codepen</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ec69" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xec69;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="codepen, brand81" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-svg"></span>
+                <span class="mls"> icon-svg</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ec6a" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xec6a;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="svg" class="liga unitRight" />
+            </div>
+        </div>
+        <div class="glyph fs2">
+            <div class="clearfix bshadow0 pbs">
+                <span class="icon-IcoMoon"></span>
+                <span class="mls"> icon-IcoMoon</span>
+            </div>
+            <fieldset class="fs0 size1of1 clearfix hidden-false">
+                <input type="text" readonly value="ec6b" class="unit size1of2" />
+                <input type="text" maxlength="1" readonly value="&#xec6b;" class="unitRight size1of2 talign-right" />
+            </fieldset>
+            <div class="fs0 bshadow0 clearfix hidden-true">
+                <span class="unit pvs fgc1">liga: </span>
+                <input type="text" readonly value="IcoMoon, icomoon" class="liga unitRight" />
+            </div>
+        </div>
+    </div>
+
+    <!--[if gt IE 8]><!-->
+    <div class="mhl clearfix mbl">
+        <h1>Font Test Drive</h1>
+        <label>
+            Font Size: <input id="fontSize" type="number" class="textbox0 mbm"
+            min="8" value="48" />
+            px
+        </label>
+        <input id="testText" type="text" class="phl size1of1 mvl"
+        placeholder="Type some text to test..." value=""/>
+        <div id="testDrive" class="icon-" style="font-family: icomoon_freeEntypo">&nbsp;
+        </div>
+    </div>
+    <!--<![endif]-->
+    <div class="bgc1 clearfix">
+        <p class="mhl">Generated by <a href="https://icomoon.io/app">IcoMoon</a></p>
+    </div>
+
+    <script src="demo-files/demo.js"></script>
+</body>
+</html>
diff --git a/UyTube_mobile/web/iconos/fonts/icomoon_freeEntypo.eot b/UyTube_mobile/web/iconos/fonts/icomoon_freeEntypo.eot
new file mode 100644
index 0000000000000000000000000000000000000000..57024d838866ccac46a77f06b5caae4fbea15971
Binary files /dev/null and b/UyTube_mobile/web/iconos/fonts/icomoon_freeEntypo.eot differ
diff --git a/UyTube_mobile/web/iconos/fonts/icomoon_freeEntypo.svg b/UyTube_mobile/web/iconos/fonts/icomoon_freeEntypo.svg
new file mode 100644
index 0000000000000000000000000000000000000000..b0dec7ae56ea37924ff0ccd2bda2730d273829ab
--- /dev/null
+++ b/UyTube_mobile/web/iconos/fonts/icomoon_freeEntypo.svg
@@ -0,0 +1,886 @@
+<?xml version="1.0" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
+<svg xmlns="http://www.w3.org/2000/svg">
+<metadata>Generated by IcoMoon</metadata>
+<defs>
+<font id="icomoon_freeEntypo" horiz-adv-x="1024">
+<font-face units-per-em="1024" ascent="960" descent="-64" />
+<missing-glyph horiz-adv-x="1024" />
+<glyph unicode="&#x20;" horiz-adv-x="512" d="" />
+<glyph unicode="&#xe900;" glyph-name="add-to-list" d="M993.28 512h-174.080v174.080c0 30.72-20.48 30.72-51.2 30.72s-51.2 0-51.2-30.72v-174.080h-174.080c-30.72 0-30.72-20.48-30.72-51.2s0-51.2 30.72-51.2h174.080v-174.080c0-30.72 20.48-30.72 51.2-30.72s51.2 0 51.2 30.72v174.080h174.080c30.72 0 30.72 20.48 30.72 51.2s0 51.2-30.72 51.2zM378.88 512h-348.16c-30.72 0-30.72-20.48-30.72-51.2s0-51.2 30.72-51.2h348.16c30.72 0 30.72 20.48 30.72 51.2s0 51.2-30.72 51.2zM378.88 256h-348.16c-30.72 0-30.72-20.48-30.72-51.2s0-51.2 30.72-51.2h348.16c30.72 0 30.72 20.48 30.72 51.2s0 51.2-30.72 51.2zM378.88 768h-348.16c-30.72 0-30.72-20.48-30.72-51.2s0-51.2 30.72-51.2h348.16c30.72 0 30.72 20.48 30.72 51.2s0 51.2-30.72 51.2z" />
+<glyph unicode="&#xe901;" glyph-name="classic-computer" d="M819.2 972.8h-614.4c-56.32 0-102.4-46.029-102.4-102.4v-768c0-28.262 22.886-51.2 51.2-51.2v-102.4h716.8v102.4c28.314 0 51.2 22.938 51.2 51.2v768c0 56.371-46.029 102.4-102.4 102.4zM716.8 204.8h-204.8v51.2h204.8v-51.2zM768 409.6h-512v409.6h512v-409.6z" />
+<glyph unicode="&#xe902;" glyph-name="controller-fast-backward" d="M919.501 738.765l-368.794-253.389c0 0-14.285-10.291-14.285-24.627s14.285-24.525 14.285-24.525l368.794-253.491c29.286-19.456 53.299-5.069 53.299 32.051v491.981c0 37.222-24.013 51.61-53.299 32zM454.81 738.765l-368.794-253.389c0 0-14.285-10.291-14.285-24.627s14.285-24.525 14.285-24.525l368.794-253.491c29.286-19.507 53.299-5.12 53.299 32v492.032c0 37.222-24.013 51.61-53.299 32z" />
+<glyph unicode="&#xe903;" glyph-name="creative-commons-attribution" d="M644.26 582.494c0 17.535-14.234 31.739-31.739 31.739h-201.050c-17.527 0-31.739-14.205-31.739-31.739v-201.058h56.077v-238.076h152.367v238.076h56.085v201.058zM580.766 709.467c0-37.983-30.791-68.774-68.774-68.774s-68.774 30.791-68.774 68.774c0 37.983 30.791 68.774 68.774 68.774s68.774-30.791 68.774-68.774zM511.376 952.312c-136.16 0-251.41-47.505-345.722-142.528-96.8-98.309-145.174-214.631-145.174-348.985 0-134.338 48.374-249.866 145.174-346.524 96.771-96.659 212.023-144.988 345.722-144.988 135.329 0 252.627 48.72 351.88 146.217 93.493 92.549 140.264 207.658 140.264 345.295s-47.58 253.961-142.723 348.985c-95.158 95.023-211.633 142.528-349.421 142.528zM512.607 863.859c111.553 0 206.277-39.315 284.215-117.974 78.734-77.819 118.094-172.842 118.094-285.085 0-113.039-38.535-206.847-115.648-281.395-81.209-80.279-176.757-120.419-286.661-120.419-109.925 0-204.656 39.72-284.215 119.189s-119.338 173.667-119.338 282.626c0 108.958 40.192 203.982 120.576 285.085 77.106 78.659 171.416 117.974 282.977 117.974z" />
+<glyph unicode="&#xe904;" glyph-name="creative-commons-noderivs" d="M511.366 952.316c-136.147 0-251.398-47.49-345.711-142.529-96.801-98.309-145.175-214.617-145.175-348.987 0-134.339 48.374-249.868 145.175-346.497 96.772-96.689 212.025-145.019 345.711-145.019 135.336 0 252.635 48.749 351.889 146.218 93.494 92.58 140.265 207.689 140.265 345.298 0 137.638-47.58 253.979-142.724 348.987-95.159 95.039-211.633 142.529-349.43 142.529zM512.603 863.877c111.554 0 206.279-39.331 284.218-117.988 78.735-77.821 118.094-172.829 118.094-285.089 0-113.040-38.535-206.848-115.649-281.398-81.209-80.28-176.758-120.389-286.663-120.389-109.918 0-204.65 39.719-284.21 119.19-79.559 79.469-119.339 173.668-119.339 282.597 0 108.989 40.192 203.999 120.577 285.089 77.107 78.658 171.418 117.988 282.972 117.988zM697.702 577.289h-357.282v-84.63h357.282v84.63zM697.702 419.341h-357.282v-84.63h357.282v84.63z" />
+<glyph unicode="&#xe905;" glyph-name="creative-commons-noncommercial-eu" d="M860.779 809.79c-95.16 95.040-211.621 142.53-349.411 142.53-136.169 0-251.399-47.49-345.72-142.53-96.809-98.31-145.169-214.621-145.169-348.99 0-134.34 48.359-249.87 145.169-346.5 96.78-96.69 212.011-145.020 345.72-145.020 135.331 0 252.631 48.75 351.87 146.22 93.51 92.579 140.282 207.69 140.282 345.3 0 137.639-47.581 253.979-142.741 348.99zM799.249 179.4c-81.21-80.281-176.76-120.39-286.65-120.39-109.919 0-204.66 39.719-284.22 119.189-79.56 79.471-119.34 173.671-119.34 282.601 0 46.080 7.274 89.639 21.659 130.709l130.245-57.645h-9.39v-58.409h46.095c0-8.25-0.825-16.471-0.825-24.69v-14.011h-45.271v-58.409h53.49c7.41-43.619 23.865-78.99 46.080-106.979 46.080-60.901 120.135-93.811 200.775-93.811 52.68 0 100.381 15.63 128.37 31.291l-19.77 91.32c-17.28-9.061-55.92-21.39-93.779-21.39-41.16 0-79.815 12.329-106.156 41.97-12.345 13.981-21.39 32.91-27.135 57.6h178.89l254.19-112.515c-17.61-31.199-39.959-60.030-67.26-86.429zM479.569 436.754l-1.080 0.826 1.86-0.826h-0.78zM632.599 475.455h7.35v58.409h-139.32l-56.595 25.051c4.875 10.95 10.635 20.745 17.355 28.41 25.516 31.319 61.71 44.46 101.221 44.46 36.21 0 69.929-10.68 91.32-19.739l23.040 93.81c-29.64 13.139-73.23 24.659-123.421 24.659-77.339 0-143.175-31.259-190.080-83.909-10.41-12.031-19.44-25.531-27.63-39.81l-161.639 71.535c15.66 23.49 34.079 46.049 55.41 67.559 77.13 78.66 171.419 117.991 282.99 117.991 111.54 0 206.28-39.331 284.22-117.991 78.72-77.82 118.080-172.829 118.080-285.089 0-36.99-4.199-71.88-12.48-104.76l-269.82 119.415z" />
+<glyph unicode="&#xe906;" glyph-name="creative-commons-noncommercial-us" d="M511.369 952.32c137.79 0 254.28-47.505 349.44-142.53 95.131-95.040 142.711-211.364 142.711-348.99s-46.771-252.735-140.251-345.3c-99.27-97.485-216.57-146.22-351.901-146.22-133.68 0-248.939 48.315-345.72 144.989-96.794 96.661-145.169 212.191-145.169 346.531s48.375 250.68 145.169 348.99c94.321 95.025 209.581 142.53 345.72 142.53zM131.060 592.83c-14.67-41.475-22.005-85.485-22.005-132.030 0-108.961 39.779-203.161 119.34-282.615 79.576-79.47 174.285-119.206 284.205-119.206 109.921 0 205.471 40.125 286.68 120.421 27.179 26.279 49.559 54.93 67.14 85.994l-185.28 82.515c-12.571-62.34-68.131-104.46-135.3-109.411v-75.765h-56.416v75.765c-55.17 0.631-108.465 23.175-149.204 58.861l67.71 68.264c32.594-30.689 65.189-44.475 109.709-44.475 28.831 0 60.81 11.28 60.81 48.856 0 13.319-5.159 22.575-13.289 29.534l-105.21 46.845c-28.86 12.855-53.31 23.745-77.851 34.651l-251.039 111.795zM512.599 863.865c-111.54 0-205.859-39.329-282.96-117.989-20.999-21.166-39.239-43.291-54.749-66.375l187.89-83.655c16.98 52.11 66.51 83.715 126.645 87.254v75.766h56.416v-75.766c38.879-1.874 81.509-12.525 123.51-45.089l-64.559-66.375c-23.82 16.905-53.911 28.815-84.030 28.815-24.436 0-58.921-7.529-58.921-38.205 0-4.68 1.561-8.806 4.41-12.48l105.391-46.936c27.21-12.105 53.19-23.67 78.929-35.13l251.85-112.14c8.341 33.001 12.511 68.085 12.511 105.241 0 112.245-39.36 207.269-118.111 285.075-77.94 78.66-172.649 117.989-284.22 117.989z" />
+<glyph unicode="&#xe907;" glyph-name="creative-commons-public-domain" d="M511.358 952.316c-136.147 0-251.398-47.505-345.711-142.529-96.801-98.309-145.175-214.633-145.175-348.987 0-134.339 48.374-249.853 145.175-346.513 96.772-96.674 212.025-145.003 345.711-145.003 135.336 0 252.635 48.734 351.889 146.218 93.494 92.565 140.265 207.673 140.265 345.298 0 137.638-47.58 253.963-142.724 348.987-95.159 95.024-211.633 142.529-349.43 142.529zM512.594 863.862c111.554 0 206.279-39.315 284.218-117.975 78.735-77.819 118.094-172.843 118.094-285.087 0-113.040-38.535-206.848-115.649-281.398-81.209-80.28-176.758-120.42-286.663-120.42-109.918 0-204.65 39.736-284.21 119.205-79.559 79.454-119.339 173.668-119.339 282.613 0 108.958 40.192 203.984 120.577 285.087 77.107 78.659 171.418 117.975 282.972 117.975zM349.164 548.94h55.326c30.909 0 43.875-14.881 43.875-41.969 0-20.986-11.062-41.206-41.969-41.206h-57.232v83.175zM281.244 327.631h68.685v87.763h53.032c93.106 0 113.325 55.71 113.325 91.95 0 53.804-27.090 91.964-100.349 91.964h-134.692v-271.678zM534.78 327.631h105.313c82.799 0 138.494 39.3 138.494 135.838 0 96.54-55.695 135.84-138.494 135.84h-105.313v-271.678zM602.685 542.069h38.549c51.135 0 69.45-34.724 69.45-78.6 0-43.874-18.315-78.6-69.060-78.6h-38.939v157.199z" />
+<glyph unicode="&#xe908;" glyph-name="creative-commons-remix" d="M511.354 952.305c-136.135 0-251.391-47.489-345.71-142.526-96.777-98.307-145.164-214.614-145.164-348.98 0-134.336 48.387-249.832 145.164-346.49 96.777-96.687 212.034-145.016 345.71-145.016 135.342 0 252.654 48.748 351.92 146.215 93.478 92.578 140.246 207.684 140.246 345.29 0 137.635-47.578 253.973-142.706 348.98-95.157 95.037-211.659 142.526-349.46 142.526zM512.585 863.868c111.582 0 206.305-39.33 284.242-117.987 78.747-77.818 118.106-172.824 118.106-285.081 0-113.037-38.548-206.844-115.647-281.392-81.208-80.278-176.77-120.417-286.701-120.417-109.916 0-204.623 39.749-284.181 119.218-79.558 79.436-119.338 173.664-119.338 282.591 0 108.958 40.17 203.995 120.566 285.081 77.099 78.658 171.416 117.987 282.952 117.987zM833.454 452.1l-97.857 40.678v121.887l-300.62 125.156-134.006-58.858v-139.406l1.41-0.599-118.196-49.2v-126.326l126.326-54.149 127 52.559 8.58-3.421 263.048-108.477 5.76 2.401 128.155 54.718v139.196l-9.6 3.84zM693.779 291.215l-1.2 0.479v-0.75l-225.354 93.388v88.856l225.354-92.097v-2.88l1.2-0.51v-86.487zM708.959 404.731l-71.443 30.599 76.933 32.969 73.377-30.509-78.867-33.060zM812.335 329.703l-87.837-37.827v86.036l87.837 36.96v-85.169z" />
+<glyph unicode="&#xe909;" glyph-name="creative-commons-share" d="M511.354 952.313c-136.135 0-251.391-47.489-345.71-142.526-96.777-98.307-145.164-214.614-145.164-348.98 0-134.351 48.387-249.848 145.164-346.505 96.777-96.687 212.034-145.016 345.71-145.016 135.342 0 252.654 48.748 351.92 146.215 93.478 92.578 140.246 207.684 140.246 345.306 0 137.635-47.578 253.972-142.706 348.98-95.157 95.037-211.659 142.526-349.46 142.526zM512.585 863.876c111.582 0 206.305-39.33 284.242-117.987 78.747-77.818 118.106-172.824 118.106-285.081 0-113.052-38.548-206.859-115.647-281.407-81.208-80.278-176.77-120.417-286.701-120.417-109.916 0-204.623 39.749-284.181 119.218-79.558 79.437-119.338 173.664-119.338 282.606 0 108.956 40.17 203.993 120.566 285.081 77.099 78.658 171.416 117.987 282.952 117.987zM713.309 601.622h-107.532v107.038c0 14.834-12.030 26.879-26.879 26.879h-268.297c-0.809 0.029-1.619 0.029-2.399 0-13.92-1.259-24.54-12.93-24.48-26.879v-361.925c0-14.85 12.030-26.879 26.879-26.879h107.517v-107.036c0-14.85 12.030-26.879 26.879-26.879h268.313c14.85 0 26.879 12.030 26.879 26.879v361.923c0 14.836-12.030 26.879-26.879 26.879zM337.479 373.63v308.151h214.554v-80.158h-107.038c-0.96 0.046-1.92 0.046-2.88 0-13.71-1.484-24.088-13.094-23.999-26.879v-201.113h-80.638zM686.43 547.864v-308.165h-214.554v308.165h214.554z" />
+<glyph unicode="&#xe90a;" glyph-name="creative-commons-sharealike" d="M511.366 952.316c-136.147 0-251.398-47.519-345.711-142.529-96.801-98.309-145.175-214.648-145.175-348.987s48.374-249.868 145.175-346.527c96.772-96.675 212.025-144.99 345.711-144.99 135.336 0 252.635 48.735 351.889 146.218 93.494 92.565 140.265 207.673 140.265 345.298s-47.58 253.948-142.724 348.987c-95.159 95.010-211.633 142.529-349.43 142.529zM512.603 863.862c111.554 0 206.279-39.329 284.218-117.975 78.735-77.819 118.094-172.843 118.094-285.087 0-113.040-38.535-206.848-115.649-281.413-81.209-80.278-176.758-120.405-286.663-120.405-109.918 0-204.643 39.736-284.21 119.19-79.559 79.469-119.339 173.67-119.339 282.628 0 108.96 40.192 203.984 120.577 285.087 77.107 78.646 171.418 117.975 282.972 117.975zM293.508 530.174c19.611 123.659 106.656 189.779 215.757 189.779 156.923 0 252.546-113.88 252.546-265.694 0-148.154-101.759-263.248-254.997-263.248-105.427 0-199.821 64.891-216.989 192.224h123.825c3.674-66.12 46.582-89.384 107.879-89.384 69.869 0 115.244 64.903 115.244 164.083 0 104.069-39.24 159.164-112.798 159.164-53.933 0-100.515-19.59-110.324-86.925l35.991 0.195-97.462-97.454-97.462 97.454 38.79-0.195z" />
+<glyph unicode="&#xe90b;" glyph-name="creative-commons" d="M391.75 377.447c-20.797 0-36.5 7.603-47.1 22.806-10.7 15.097-16 35.297-16 60.497 0 55.5 20.997 83.303 63.1 83.303 8.4 0 17.5-2.803 27.3-8.403s18.097-15.4 24.8-29.4l63.1 32.8c-25.2 45.4-67 68.1-125.303 68.1-39.85 0-72.797-13.2-98.794-39.5-26.103-26.4-39.206-61.997-39.206-106.9 0-46 12.956-81.9 38.703-107.7 25.8-25.8 59.803-38.6 101.8-38.6 26.4 0 50.5 6.6 72.353 19.697 21.847 13.206 38.947 31.303 51.347 54.303l-58.1 29.4c-11.2-26.9-30.553-40.403-58-40.403zM663.447 377.447c-20.797 0-36.494 7.603-47.1 22.806-10.7 15.097-16 35.297-16 60.497 0 55.5 21.003 83.303 63.1 83.303 8.903 0 18.303-2.803 28.103-8.403 9.853-5.6 18.1-15.4 24.9-29.4l62.197 32.8c-24.7 45.4-66.197 68.1-124.497 68.1-39.8 0-72.75-13.2-98.8-39.5-26.097-26.4-39.103-61.997-39.103-106.9 0-46 12.703-81.9 38.253-107.7 25.5-25.8 59.55-38.6 102.2-38.6 25.747 0 49.647 6.6 71.45 19.697 21.903 13.206 39.3 31.303 52.203 54.303l-58.903 29.4c-11.2-26.9-30.6-40.403-58.003-40.403zM860.816 809.787c-95.159 95.038-211.659 142.525-349.463 142.525-136.134 0-251.391-47.487-345.709-142.525-96.778-98.306-145.163-214.613-145.163-348.978 0-134.353 48.384-249.85 145.163-346.506 96.778-96.687 212.034-145.016 345.709-145.016 135.344 0 252.656 48.747 351.922 146.216 93.478 92.578 140.244 207.684 140.244 345.306 0 137.634-47.575 253.972-142.703 348.978zM799.284 179.403c-81.206-80.281-176.769-120.419-286.7-120.419-109.916 0-204.622 39.75-284.181 119.219-79.556 79.434-119.337 173.662-119.337 282.606 0 108.956 40.169 203.994 120.566 285.081 77.1 78.656 171.416 117.988 282.953 117.988 111.581 0 206.306-39.331 284.244-117.988 78.747-77.819 118.103-172.825 118.103-285.081 0-113.053-38.547-206.859-115.647-281.406z" />
+<glyph unicode="&#xe90c;" glyph-name="document-landscape" d="M972.8 819.2h-921.6c-28.262 0-51.2-22.886-51.2-51.2v-614.4c0-28.314 22.938-51.2 51.2-51.2h921.6c28.262 0 51.2 22.886 51.2 51.2v614.4c0 28.314-22.886 51.2-51.2 51.2zM921.6 204.8h-819.2v512h819.2v-512z" />
+<glyph unicode="&#xe90d;" glyph-name="remove-user" d="M818.637-6.605c0 114.995-111.974 173.517-221.030 220.518-108.698 46.797-143.411 86.221-143.411 170.701 0 50.637 33.178 34.15 47.718 127.027 6.144 38.502 35.43 0.614 41.062 88.525 0 35.021-16.026 43.725-16.026 43.725s8.141 51.866 11.315 91.802c3.277 41.83-20.378 131.072-117.811 158.464-16.998 17.459-28.518 45.158 23.91 72.909-114.688 5.325-141.363-54.682-202.445-98.816-51.968-38.707-65.997-99.994-63.488-132.608 3.328-39.936 11.418-91.802 11.418-91.802s-16.077-8.704-16.077-43.725c5.632-87.962 35.021-50.022 41.114-88.525 14.541-92.877 47.77-76.39 47.77-127.027 0-84.48-10.854-113.152-119.603-159.949-109.107-46.95-143.053-122.214-142.49-231.219 0.154-32.614-0.563-44.595-0.563-44.595h819.2c0 0-0.563 11.981-0.563 44.595zM819.2 458.803l-117.709 122.778-54.323-54.323 122.829-117.658-122.778-117.658 54.323-54.323 117.658 122.778 117.658-122.778 54.323 54.323-122.778 117.658 122.726 117.658-54.323 54.323-117.606-122.778z" />
+<glyph unicode="&#xe90e;" glyph-name="warning1" d="M998.963 52.224l-456.038 851.558c-6.349 11.008-18.125 17.818-30.925 17.818-12.851 0-24.627-6.81-30.925-17.818l-455.987-851.558c-6.195-10.803-6.093-24.115 0.256-34.816 6.4-10.803 18.022-17.408 30.618-17.408h912.077c12.544 0 24.269 6.605 30.618 17.408 6.349 10.701 6.451 24.013 0.307 34.816zM563.2 102.4h-102.4v102.4h102.4v-102.4zM563.2 281.6h-102.4v332.8h102.4v-332.8z" />
+<glyph unicode="&#xe90f;" glyph-name="arrow-bold-down" d="M128 460.8h179.2v358.4h409.6v-358.4h179.2l-384-384-384 384z" />
+<glyph unicode="&#xe910;" glyph-name="arrow-bold-left" d="M512 844.8v-179.2h358.4v-409.6h-358.4v-179.2l-384 384 384 384z" />
+<glyph unicode="&#xe911;" glyph-name="arrow-bold-right" d="M896 460.8l-384-384v179.2h-358.4v409.6h358.4v179.2l384-384z" />
+<glyph unicode="&#xe912;" glyph-name="arrow-bold-up" d="M512 844.8l384-384h-179.2v-358.4h-409.6v358.4h-179.2l384 384z" />
+<glyph unicode="&#xe913;" glyph-name="arrow-down1" d="M512 76.8l-332.8 332.8h179.2v409.6h307.2v-409.6h179.2l-332.8-332.8z" />
+<glyph unicode="&#xe914;" glyph-name="arrow-left1" d="M128 460.8l332.8 332.8v-179.2h409.6v-307.2h-409.6v-179.2l-332.8 332.8z" />
+<glyph unicode="&#xe915;" glyph-name="arrow-long-down" d="M512-12.8l-281.6 268.8h179.2v665.6h204.8v-665.6h179.2l-281.6-268.8z" />
+<glyph unicode="&#xe916;" glyph-name="arrow-long-left" d="M38.4 460.8l268.8 281.6v-179.2h665.6v-204.8h-665.6v-179.2l-268.8 281.6z" />
+<glyph unicode="&#xe917;" glyph-name="arrow-long-right" d="M716.8 179.2v179.2h-665.6v204.8h665.6v179.2l268.8-281.6-268.8-281.6z" />
+<glyph unicode="&#xe918;" glyph-name="arrow-long-up" d="M512 934.4l281.6-268.8h-179.2v-665.6h-204.8v665.6h-179.2l281.6 268.8z" />
+<glyph unicode="&#xe919;" glyph-name="arrow-right1" d="M563.2 128v179.2h-409.6v307.2h409.6v179.2l332.8-332.8-332.8-332.8z" />
+<glyph unicode="&#xe91a;" glyph-name="arrow-up1" d="M512 844.8l332.8-332.8h-179.2v-409.6h-307.2v409.6h-179.2l332.8 332.8z" />
+<glyph unicode="&#xe91b;" glyph-name="arrow-with-circle-down" d="M512 952.32c-271.514 0-491.571-220.058-491.571-491.52 0-271.514 220.058-491.571 491.571-491.571 271.411 0 491.52 220.058 491.52 491.571 0 271.462-220.109 491.52-491.52 491.52zM511.949 71.68c-214.886 0-389.12 174.182-389.12 389.12s174.182 389.12 389.12 389.12 389.171-174.234 389.171-389.12-174.285-389.12-389.171-389.12zM614.4 665.6h-204.8v-204.8h-128l230.4-230.4 230.4 230.4h-128v204.8z" />
+<glyph unicode="&#xe91c;" glyph-name="arrow-with-circle-left" d="M512 952.32c-271.514 0-491.571-220.058-491.571-491.52 0-271.514 220.058-491.571 491.571-491.571 271.411 0 491.52 220.058 491.52 491.571 0 271.462-220.109 491.52-491.52 491.52zM511.949 71.68c-214.886 0-389.12 174.182-389.12 389.12s174.182 389.12 389.12 389.12 389.171-174.234 389.171-389.12-174.285-389.12-389.171-389.12zM512 691.2l-230.4-230.4 230.4-230.4v128h204.8v204.8h-204.8v128z" />
+<glyph unicode="&#xe91d;" glyph-name="arrow-with-circle-right" d="M512 952.32c-271.514 0-491.571-220.058-491.571-491.52 0-271.514 220.058-491.571 491.571-491.571 271.411 0 491.52 220.058 491.52 491.571 0 271.462-220.109 491.52-491.52 491.52zM511.949 71.68c-214.886 0-389.12 174.182-389.12 389.12s174.182 389.12 389.12 389.12 389.171-174.234 389.171-389.12-174.285-389.12-389.171-389.12zM512 563.2h-204.8v-204.8h204.8v-128l230.4 230.4-230.4 230.4v-128z" />
+<glyph unicode="&#xe91e;" glyph-name="arrow-with-circle-up" d="M512 952.32c-271.514 0-491.571-220.058-491.571-491.52 0-271.514 220.058-491.571 491.571-491.571 271.411 0 491.52 220.058 491.52 491.571 0 271.462-220.109 491.52-491.52 491.52zM511.949 71.68c-214.886 0-389.12 174.182-389.12 389.12s174.182 389.12 389.12 389.12 389.171-174.234 389.171-389.12-174.285-389.12-389.171-389.12zM512 691.2l230.4-230.4h-128v-204.8h-204.8v204.8h-128l230.4 230.4z" />
+<glyph unicode="&#xe91f;" glyph-name="bookmark1" d="M716.8 870.4v-870.4l-204.8 204.8-204.8-204.8v870.4c0 28.314 29.952 52.224 51.2 51.2h307.2c35.277 1.024 51.2-22.886 51.2-51.2z" />
+<glyph unicode="&#xe920;" glyph-name="bookmarks1" d="M768 972.8h-204.8c-28.314 0-51.2-22.886-51.2-51.2l1.178-11.366c56.422 0 102.4-45.926 102.4-102.4v-581.581l50.022 60.467 153.6-184.32v819.2c0 28.314-22.886 51.2-51.2 51.2zM461.978 819.2h-205.978c-28.314 0-51.2-22.886-51.2-51.2v-819.2l153.6 184.32 153.6-184.32v819.2c0 28.314-21.709 51.2-50.022 51.2z" />
+<glyph unicode="&#xe921;" glyph-name="chevron-down" d="M231.219 586.342c22.323 22.835 53.402 24.627 80.691 0l200.090-191.846 200.090 191.846c27.29 24.627 58.419 22.835 80.589 0 22.323-22.784 20.89-61.286 0-82.688-20.787-21.402-240.384-230.502-240.384-230.502-11.11-11.418-25.702-17.152-40.294-17.152s-29.184 5.734-40.397 17.152c0 0-219.494 209.101-240.384 230.502-20.941 21.402-22.323 59.904 0 82.688z" />
+<glyph unicode="&#xe922;" glyph-name="chevron-left" d="M637.542 741.581c22.835-22.323 24.627-53.402 0-80.691l-191.846-200.090 191.846-200.090c24.627-27.29 22.835-58.419 0-80.589-22.784-22.323-61.286-20.89-82.688 0-21.402 20.787-230.502 240.384-230.502 240.384-11.418 11.11-17.152 25.702-17.152 40.294s5.734 29.184 17.152 40.397c0 0 209.101 219.494 230.502 240.384 21.402 20.941 59.904 22.323 82.688 0z" />
+<glyph unicode="&#xe923;" glyph-name="chevron-right" d="M469.146 741.581c21.402-20.89 230.502-240.384 230.502-240.384 11.418-11.213 17.152-25.805 17.152-40.397s-5.734-29.184-17.152-40.294c0 0-209.101-219.597-230.502-240.384-21.402-20.89-59.904-22.323-82.688 0-22.835 22.221-24.627 53.299 0 80.589l191.846 200.090-191.846 200.090c-24.627 27.29-22.835 58.419 0 80.691 22.784 22.323 61.286 20.941 82.688 0z" />
+<glyph unicode="&#xe924;" glyph-name="chevron-small-down" d="M687.002 570.419c13.875 13.722 36.301 13.722 50.074 0 13.824-13.722 13.926-35.891 0-49.613l-200.090-196.096c-13.824-13.722-36.198-13.722-50.125 0l-200.090 196.096c-13.824 13.67-13.824 35.891 0 49.613 13.875 13.722 36.301 13.722 50.074 0l175.155-160.819 175.002 160.819z" />
+<glyph unicode="&#xe925;" glyph-name="chevron-small-left" d="M621.619 285.798c13.722-13.875 13.722-36.301 0-50.074-13.722-13.824-35.891-13.926-49.613 0l-196.096 200.090c-13.722 13.824-13.722 36.198 0 50.125l196.096 200.090c13.67 13.824 35.891 13.824 49.613 0 13.722-13.875 13.722-36.301 0-50.074l-160.819-175.155 160.819-175.002z" />
+<glyph unicode="&#xe926;" glyph-name="chevron-small-right" d="M563.2 460.8l-160.819 175.104c-13.722 13.824-13.722 36.198 0 50.074 13.722 13.824 35.891 13.824 49.613 0l196.096-200.090c13.722-13.875 13.722-36.301 0-50.125l-196.096-200.090c-13.67-13.926-35.891-13.824-49.613 0-13.722 13.773-13.722 36.198 0 50.074l160.819 175.053z" />
+<glyph unicode="&#xe927;" glyph-name="chevron-small-up" d="M336.998 351.181c-13.875-13.722-36.301-13.722-50.074 0s-13.926 35.891 0 49.613l200.090 196.096c13.824 13.722 36.198 13.722 50.125 0l200.090-196.096c13.824-13.67 13.824-35.891 0-49.613-13.875-13.722-36.301-13.722-50.125 0l-175.104 160.819-175.002-160.819z" />
+<glyph unicode="&#xe928;" glyph-name="chevron-thin-down" d="M891.802 660.019c13.926 13.722 36.301 13.722 50.125 0s13.875-35.891 0-49.613l-404.89-400.896c-13.824-13.722-36.198-13.722-50.125 0l-404.89 400.896c-13.824 13.722-13.824 35.891 0 49.613 13.875 13.722 36.301 13.722 50.125 0l379.853-365.619 379.802 365.619z" />
+<glyph unicode="&#xe929;" glyph-name="chevron-thin-left" d="M711.219 80.998c13.722-13.926 13.722-36.301 0-50.125s-35.891-13.875-49.613 0l-400.896 404.89c-13.722 13.824-13.722 36.198 0 50.125l400.896 404.89c13.722 13.824 35.891 13.824 49.613 0 13.722-13.875 13.722-36.301 0-50.125l-365.619-379.853 365.619-379.802z" />
+<glyph unicode="&#xe92a;" glyph-name="chevron-thin-right" d="M678.4 460.8l-365.619 379.904c-13.722 13.824-13.722 36.198 0 50.125 13.722 13.824 35.891 13.824 49.613 0l400.896-404.89c13.722-13.875 13.722-36.301 0-50.125l-400.896-404.89c-13.722-13.875-35.891-13.824-49.613 0-13.722 13.773-13.722 36.198 0 50.125l365.619 379.75z" />
+<glyph unicode="&#xe92b;" glyph-name="chevron-thin-up" d="M132.198 261.581c-13.926-13.722-36.301-13.722-50.125 0s-13.875 35.891 0 49.613l404.89 400.896c13.824 13.722 36.198 13.722 50.125 0l404.89-400.896c13.824-13.722 13.824-35.891 0-49.613-13.875-13.722-36.301-13.722-50.074 0l-379.904 365.619-379.802-365.619z" />
+<glyph unicode="&#xe92c;" glyph-name="chevron-up" d="M792.781 335.258c-22.323-22.835-53.402-24.627-80.691 0l-200.090 191.846-200.090-191.846c-27.29-24.627-58.419-22.835-80.589 0-22.323 22.784-20.89 61.286 0 82.688 20.787 21.402 240.384 230.502 240.384 230.502 11.11 11.418 25.702 17.152 40.294 17.152s29.184-5.734 40.397-17.152c0 0 219.494-209.101 240.384-230.502 20.941-21.402 22.323-59.904 0-82.688z" />
+<glyph unicode="&#xe92d;" glyph-name="chevron-with-circle-down" d="M640.256 527.462l-128.256-117.862-128.307 117.862c-10.138 10.035-26.522 10.035-36.762 0-10.086-10.035-10.086-26.368 0-36.352l146.637-143.718c10.189-10.035 26.624-10.035 36.71 0l146.637 143.718c10.189 9.984 10.138 26.317 0 36.352-10.086 10.035-26.47 10.035-36.659 0zM512 952.32c-271.462 0-491.52-220.058-491.52-491.52 0-271.514 220.058-491.52 491.52-491.52s491.52 220.006 491.52 491.52c0 271.462-220.058 491.52-491.52 491.52zM512 33.075c-236.288 0-427.725 191.488-427.725 427.725s191.437 427.725 427.725 427.725c236.186 0 427.725-191.488 427.725-427.725s-191.539-427.725-427.725-427.725z" />
+<glyph unicode="&#xe92e;" glyph-name="chevron-with-circle-left" d="M578.662 625.869c-10.035 10.086-26.368 10.086-36.352 0l-143.718-146.688c-10.035-10.189-10.035-26.624 0-36.71l143.718-146.637c9.984-10.189 26.317-10.138 36.352 0 10.035 10.086 10.035 26.522 0 36.71l-117.862 128.256 117.862 128.307c10.035 10.138 10.035 26.522 0 36.762zM512 952.32c-271.462 0-491.52-220.058-491.52-491.52 0-271.514 220.058-491.52 491.52-491.52s491.52 220.006 491.52 491.52c0 271.462-220.058 491.52-491.52 491.52zM512 33.075c-236.288 0-427.725 191.488-427.725 427.725s191.437 427.725 427.725 427.725c236.186 0 427.725-191.488 427.725-427.725s-191.539-427.725-427.725-427.725z" />
+<glyph unicode="&#xe92f;" glyph-name="chevron-with-circle-right" d="M563.2 460.8l-117.862 128.307c-10.035 10.138-10.035 26.573 0 36.762 10.035 10.086 26.368 10.086 36.352 0l143.718-146.637c10.035-10.189 10.035-26.624 0-36.71l-143.718-146.637c-9.984-10.189-26.317-10.138-36.352 0-10.035 10.086-10.035 26.522 0 36.71l117.862 128.205zM512 952.32c271.462 0 491.52-220.058 491.52-491.52 0-271.514-220.058-491.52-491.52-491.52s-491.52 220.006-491.52 491.52c0 271.462 220.058 491.52 491.52 491.52zM512 33.075c236.186 0 427.725 191.488 427.725 427.725s-191.539 427.725-427.725 427.725c-236.288 0-427.725-191.488-427.725-427.725-0.051-236.237 191.437-427.725 427.725-427.725z" />
+<glyph unicode="&#xe930;" glyph-name="chevron-with-circle-up" d="M530.381 574.208c-10.189 10.035-26.624 10.035-36.71 0l-146.637-143.718c-10.189-9.984-10.138-26.317 0-36.352 10.086-10.035 26.522-10.035 36.71 0l128.256 117.862 128.307-117.862c10.138-10.035 26.522-10.035 36.762 0 10.086 10.035 10.086 26.368 0 36.352l-146.688 143.718zM512 952.32c-271.462 0-491.52-220.058-491.52-491.52 0-271.514 220.058-491.52 491.52-491.52s491.52 220.006 491.52 491.52c0 271.462-220.058 491.52-491.52 491.52zM512 33.075c-236.288 0-427.725 191.488-427.725 427.725s191.437 427.725 427.725 427.725c236.186 0 427.725-191.488 427.725-427.725s-191.539-427.725-427.725-427.725z" />
+<glyph unicode="&#xe931;" glyph-name="cloud1" d="M1024 393.216c0-132.301-109.773-239.616-245.094-239.616h-593.715c-102.298 0-185.19 81.101-185.19 181.094 0 99.891 82.893 180.992 185.19 180.992 7.475 0 14.746-0.614 21.965-1.382-1.894 12.595-2.918 25.498-2.918 38.707 0 146.995 121.907 266.189 272.384 266.189 123.238 0 227.277-79.974 260.915-189.798 13.466 2.202 27.238 3.379 41.421 3.379 135.27 0 245.043-107.162 245.043-239.565z" />
+<glyph unicode="&#xe932;" glyph-name="controller-fast-forward" d="M473.293 485.376l-368.794 253.389c-29.286 19.61-53.299 5.222-53.299-32v-491.981c0-37.12 24.013-51.507 53.299-32l368.794 253.491c0 0 14.285 10.189 14.285 24.474 0 14.336-14.285 24.627-14.285 24.627zM952.32 460.749c0-14.285-14.285-24.474-14.285-24.474l-368.794-253.491c-29.286-19.507-53.299-5.12-53.299 32v491.981c0 37.222 24.013 51.61 53.299 32l368.742-253.389c0 0 14.336-10.291 14.336-24.627z" />
+<glyph unicode="&#xe933;" glyph-name="controller-jump-to-start" d="M765.901 738.765l-368.794-253.389c0 0-14.285-10.291-14.285-24.627s14.285-24.525 14.285-24.525l368.794-253.491c29.286-19.456 53.299-5.069 53.299 32.051v491.981c0 37.222-24.013 51.61-53.299 32zM307.2 768h-51.2c-28.314 0-51.2-2.458-51.2-30.72v-552.96c0-28.262 22.886-30.72 51.2-30.72h51.2c28.314 0 51.2 2.458 51.2 30.72v552.96c0 28.262-22.886 30.72-51.2 30.72z" />
+<glyph unicode="&#xe934;" glyph-name="controller-next" d="M626.893 485.376l-368.794 253.389c-29.286 19.61-53.299 5.222-53.299-32v-491.981c0-37.12 24.013-51.507 53.299-32l368.794 253.491c0 0 14.285 10.189 14.285 24.474 0 14.336-14.285 24.627-14.285 24.627zM716.8 768h51.2c28.314 0 51.2-2.458 51.2-30.72v-552.96c0-28.262-22.886-30.72-51.2-30.72h-51.2c-28.314 0-51.2 2.458-51.2 30.72v552.96c0 28.262 22.886 30.72 51.2 30.72z" />
+<glyph unicode="&#xe935;" glyph-name="controller-paus" d="M768 819.2h-102.4c-28.314 0-51.2-2.458-51.2-30.72v-655.36c0-28.262 22.886-30.72 51.2-30.72h102.4c28.314 0 51.2 2.458 51.2 30.72v655.36c0 28.262-22.886 30.72-51.2 30.72zM358.4 819.2h-102.4c-28.314 0-51.2-2.458-51.2-30.72v-655.36c0-28.262 22.886-30.72 51.2-30.72h102.4c28.314 0 51.2 2.458 51.2 30.72v655.36c0 28.262-22.886 30.72-51.2 30.72z" />
+<glyph unicode="&#xe936;" glyph-name="controller-play" d="M768 460.749c0-15.309-15.616-26.317-15.616-26.317l-438.323-271.514c-31.949-20.941-58.061-5.427-58.061 34.253v527.206c0 39.782 26.112 55.194 58.112 34.304l438.323-271.616c-0.051 0 15.565-11.008 15.565-26.317z" />
+<glyph unicode="&#xe937;" glyph-name="controller-record" d="M512 819.2c-197.939 0-358.4-160.41-358.4-358.4 0-197.888 160.461-358.4 358.4-358.4s358.4 160.512 358.4 358.4c0 197.99-160.461 358.4-358.4 358.4z" />
+<glyph unicode="&#xe938;" glyph-name="controller-stop" d="M819.2 717.056v-502.17c0-33.843-27.443-61.286-61.235-61.286h-502.118c-28.211 0-51.046 22.835-51.046 51.046v502.118c0 33.792 27.443 61.235 61.235 61.235h502.17c28.16 0 50.995-22.835 50.995-50.944z" />
+<glyph unicode="&#xe939;" glyph-name="controller-volume" d="M972.8 265.984c0-33.638-27.546-61.184-61.184-61.184h-833.126c-45.056 0-50.278 18.995-11.725 42.086l835.738 463.616c38.656 23.194 70.298 5.325 70.298-39.782v-404.736z" />
+<glyph unicode="&#xe93a;" glyph-name="dot-single" d="M399.36 460.8c0-62.208 50.483-112.64 112.691-112.64s112.589 50.483 112.589 112.64c0 62.208-50.381 112.589-112.589 112.589s-112.691-50.381-112.691-112.589z" />
+<glyph unicode="&#xe93b;" glyph-name="dots-three-horizontal" d="M512.051 573.44c-62.208 0-112.691-50.432-112.691-112.64s50.483-112.64 112.691-112.64c62.208 0 112.589 50.432 112.589 112.64s-50.381 112.64-112.589 112.64zM153.651 573.44c-62.208 0-112.691-50.432-112.691-112.64s50.483-112.64 112.691-112.64c62.208 0 112.589 50.483 112.589 112.64s-50.381 112.64-112.589 112.64zM870.451 573.44c-62.208 0-112.691-50.432-112.691-112.64s50.483-112.64 112.691-112.64c62.208 0 112.589 50.432 112.589 112.64s-50.381 112.64-112.589 112.64z" />
+<glyph unicode="&#xe93c;" glyph-name="dots-three-vertical" d="M512.051 573.44c-62.208 0-112.691-50.432-112.691-112.64s50.483-112.64 112.691-112.64c62.208 0 112.589 50.432 112.589 112.64s-50.381 112.64-112.589 112.64zM512.051 706.56c62.208 0 112.589 50.483 112.589 112.64s-50.381 112.64-112.589 112.64c-62.208 0-112.691-50.432-112.691-112.64s50.483-112.64 112.691-112.64zM512.051 215.040c-62.208 0-112.691-50.432-112.691-112.64s50.483-112.64 112.691-112.64c62.208 0 112.589 50.432 112.589 112.64s-50.381 112.64-112.589 112.64z" />
+<glyph unicode="&#xe93d;" glyph-name="dots-two-horizontal" d="M716.851 573.44c-62.208 0-112.691-50.432-112.691-112.64s50.483-112.64 112.691-112.64c62.208 0 112.589 50.432 112.589 112.64s-50.381 112.64-112.589 112.64zM307.251 573.44c-62.208 0-112.691-50.432-112.691-112.64s50.483-112.64 112.691-112.64c62.208 0 112.589 50.483 112.589 112.64s-50.381 112.64-112.589 112.64z" />
+<glyph unicode="&#xe93e;" glyph-name="dots-two-vertical" d="M512.051 552.96c62.208 0 112.589 50.483 112.589 112.64s-50.381 112.64-112.589 112.64c-62.208 0-112.691-50.432-112.691-112.64s50.483-112.64 112.691-112.64zM512.051 368.64c-62.208 0-112.691-50.432-112.691-112.64s50.483-112.64 112.691-112.64c62.208 0 112.589 50.432 112.589 112.64s-50.381 112.64-112.589 112.64z" />
+<glyph unicode="&#xe93f;" glyph-name="download1" d="M768 614.4h-153.6v307.2h-204.8v-307.2h-153.6l256-256 256 256zM990.106 279.962c-10.752 11.469-82.483 88.218-102.963 108.237-13.568 13.261-32.973 21.402-53.35 21.402h-89.958l156.877-153.293h-181.453c-5.222 0-9.933-2.662-12.288-6.81l-41.779-95.898h-306.381l-41.779 95.898c-2.355 4.147-7.117 6.81-12.288 6.81h-181.453l156.826 153.293h-89.907c-20.326 0-39.731-8.141-53.35-21.402-20.48-20.070-92.211-96.819-102.963-108.237-25.037-26.675-38.81-47.923-32.256-74.189l28.723-157.389c6.554-26.317 35.379-47.923 64.102-47.923h835.174c28.723 0 57.549 21.606 64.102 47.923l28.723 157.389c6.451 26.266-7.27 47.514-32.358 74.189z" />
+<glyph unicode="&#xe940;" glyph-name="emoji-flirt" d="M384 473.6c42.445 0 76.8 40.090 76.8 89.6s-34.355 89.6-76.8 89.6-76.8-40.141-76.8-89.6 34.406-89.6 76.8-89.6zM512 952.32c-271.462 0-491.52-220.058-491.52-491.52s220.058-491.52 491.52-491.52c271.411 0 491.52 220.058 491.52 491.571 0 271.411-220.109 491.469-491.52 491.469zM512 71.731c-214.886 0-389.12 174.182-389.12 389.12 0 214.886 174.182 389.12 389.12 389.12s389.12-174.234 389.12-389.171c0-214.886-174.234-389.069-389.12-389.069zM734.259 392.397c-18.586 9.574-41.728 2.202-51.61-16.384-1.741-3.328-44.493-81.562-170.598-81.562-125.491 0-168.499 77.466-170.65 81.51-9.626 18.688-32.358 26.317-51.405 16.845-18.944-9.472-26.675-32.563-17.152-51.558 2.56-5.069 63.898-123.597 239.206-123.597 175.36 0 236.595 118.579 239.104 123.648 9.421 18.79 1.843 41.472-16.896 51.098zM576 524.8h128c21.197 0 38.4 17.203 38.4 38.4s-17.203 38.4-38.4 38.4h-128c-21.197 0-38.4-17.203-38.4-38.4 0-21.248 17.203-38.4 38.4-38.4z" />
+<glyph unicode="&#xe941;" glyph-name="flow-branch" d="M839.68 768c0 67.891-54.989 122.88-122.88 122.88s-122.88-54.989-122.88-122.88c0-49.203 29.082-91.341 70.861-110.95-4.198-81.101-65.024-108.646-170.752-148.275-44.544-16.742-93.645-35.277-135.629-63.181v210.995c42.24 19.456 71.68 61.901 71.68 111.411 0 67.891-54.989 122.88-122.88 122.88s-122.88-54.989-122.88-122.88c0-49.51 29.491-91.955 71.68-111.411v-391.629c-42.24-19.405-71.68-61.85-71.68-111.36 0-67.891 54.989-122.88 122.88-122.88s122.88 55.040 122.88 122.88c0 49.203-29.082 91.341-70.861 110.95 4.198 81.050 65.075 108.646 170.752 148.275 103.936 39.014 232.499 87.603 237.568 243.507 42.445 19.354 72.141 61.952 72.141 111.667zM307.2 838.912c39.117 0 70.861-31.693 70.861-70.912 0-39.117-31.744-70.912-70.861-70.912-39.168 0-70.861 31.795-70.861 70.912 0 39.219 31.693 70.912 70.861 70.912zM307.2 82.688c-39.219 0-70.912 31.795-70.912 70.912 0 39.219 31.693 70.912 70.912 70.912 39.117 0 70.861-31.693 70.861-70.912 0-39.117-31.744-70.912-70.861-70.912zM716.8 697.088c-39.219 0-70.912 31.795-70.912 70.912 0 39.219 31.693 70.912 70.912 70.912 39.117 0 70.861-31.693 70.861-70.912 0-39.117-31.744-70.912-70.861-70.912z" />
+<glyph unicode="&#xe942;" glyph-name="flow-cascade" d="M716.8 225.28c-49.51 0-91.955-29.491-111.411-71.68h-170.189c-42.394 0-76.8 34.406-76.8 76.8v197.12c23.347-11.162 49.203-17.92 76.8-17.92h170.189c19.456-42.189 61.85-71.68 111.411-71.68 67.891 0 122.88 55.040 122.88 122.88s-54.989 122.88-122.88 122.88c-49.51 0-91.955-29.491-111.411-71.68h-170.189c-42.394 0-76.8 34.406-76.8 76.8v118.989c42.24 19.456 71.68 61.901 71.68 111.411 0 67.891-54.989 122.88-122.88 122.88s-122.88-54.989-122.88-122.88c0-49.51 29.491-91.955 71.68-111.411v-477.389c0-98.97 80.23-179.2 179.2-179.2h170.189c19.456-42.189 61.85-71.68 111.411-71.68 67.891 0 122.88 55.040 122.88 122.88s-54.989 122.88-122.88 122.88zM716.8 531.712c39.117 0 70.861-31.693 70.861-70.912 0-39.117-31.744-70.912-70.861-70.912-39.219 0-70.912 31.795-70.912 70.912 0.051 39.219 31.744 70.912 70.912 70.912zM307.2 890.112c39.117 0 70.861-31.693 70.861-70.912 0-39.117-31.744-70.912-70.861-70.912-39.168 0-70.861 31.795-70.861 70.912 0 39.219 31.693 70.912 70.861 70.912zM716.8 31.488c-39.219 0-70.912 31.795-70.912 70.912 0 39.219 31.693 70.912 70.912 70.912 39.117 0 70.861-31.693 70.861-70.912 0-39.117-31.744-70.912-70.861-70.912z" />
+<glyph unicode="&#xe943;" glyph-name="flow-line" d="M563.2 265.011v391.578c42.24 19.456 71.68 61.85 71.68 111.411 0 67.891-54.989 122.88-122.88 122.88s-122.88-54.989-122.88-122.88c0-49.51 29.491-91.955 71.68-111.411v-391.629c-42.24-19.405-71.68-61.85-71.68-111.36 0-67.891 54.989-122.88 122.88-122.88s122.88 55.040 122.88 122.88c0 49.51-29.44 91.955-71.68 111.411zM512 838.912c39.117 0 70.861-31.693 70.861-70.912 0-39.117-31.744-70.912-70.861-70.912-39.168 0-70.861 31.795-70.861 70.912 0 39.219 31.693 70.912 70.861 70.912zM512 82.688c-39.219 0-70.912 31.795-70.912 70.912 0 39.219 31.693 70.912 70.912 70.912 39.117 0 70.861-31.693 70.861-70.912 0-39.117-31.744-70.912-70.861-70.912z" />
+<glyph unicode="&#xe944;" glyph-name="flow-parallel" d="M430.080 768c0 67.891-54.989 122.88-122.88 122.88s-122.88-54.989-122.88-122.88c0-49.51 29.491-91.955 71.68-111.411v-391.629c-42.24-19.405-71.68-61.85-71.68-111.36 0-67.891 54.989-122.88 122.88-122.88s122.88 55.040 122.88 122.88c0 49.51-29.491 91.955-71.68 111.411v391.578c42.24 19.456 71.68 61.901 71.68 111.411zM378.061 153.6c0-39.117-31.744-70.912-70.861-70.912-39.219 0-70.912 31.795-70.912 70.912 0 39.219 31.693 70.912 70.912 70.912 39.117 0 70.861-31.693 70.861-70.912zM307.2 697.088c-39.168 0-70.861 31.795-70.861 70.912 0 39.219 31.693 70.912 70.912 70.912 39.117 0 70.861-31.693 70.861-70.912-0.051-39.117-31.795-70.912-70.912-70.912zM768 265.011v391.578c42.24 19.456 71.68 61.85 71.68 111.411 0 67.891-54.989 122.88-122.88 122.88s-122.88-54.989-122.88-122.88c0-49.51 29.491-91.955 71.68-111.411v-391.629c-42.24-19.456-71.68-61.85-71.68-111.411 0-67.891 54.989-122.88 122.88-122.88s122.88 55.040 122.88 122.88c0 49.562-29.44 92.006-71.68 111.462zM645.939 768c0 39.219 31.693 70.912 70.912 70.912 39.117 0 70.861-31.693 70.861-70.912 0-39.117-31.744-70.912-70.861-70.912-39.219 0-70.912 31.795-70.912 70.912zM716.8 82.688c-39.219 0-70.912 31.795-70.912 70.912 0 39.219 31.693 70.912 70.912 70.912 39.117 0 70.861-31.693 70.861-70.912 0-39.117-31.744-70.912-70.861-70.912z" />
+<glyph unicode="&#xe945;" glyph-name="flow-tree" d="M921.6 213.811v118.989c0 98.97-80.23 179.2-179.2 179.2h-102.4c-42.394 0-76.8 34.406-76.8 76.8v118.989c42.24 19.456 71.68 61.85 71.68 111.411 0 67.891-54.989 122.88-122.88 122.88s-122.88-54.989-122.88-122.88c0-49.51 29.491-91.955 71.68-111.411v-118.989c0-42.394-34.406-76.8-76.8-76.8h-102.4c-98.97 0-179.2-80.23-179.2-179.2v-118.989c-42.24-19.456-71.68-61.901-71.68-111.411 0-67.891 54.989-122.88 122.88-122.88s122.88 55.040 122.88 122.88c0 49.51-29.491 91.955-71.68 111.411v118.989c0 42.394 34.406 76.8 76.8 76.8h102.4c27.597 0 53.453 6.758 76.8 17.92v-213.709c-42.24-19.456-71.68-61.901-71.68-111.411 0-67.891 54.989-122.88 122.88-122.88s122.88 55.040 122.88 122.88c0 49.51-29.491 91.955-71.68 111.411v213.709c23.347-11.162 49.203-17.92 76.8-17.92h102.4c42.394 0 76.8-34.406 76.8-76.8v-118.989c-42.24-19.456-71.68-61.85-71.68-111.411 0-67.891 54.989-122.88 122.88-122.88s122.88 55.040 122.88 122.88c0 49.51-29.44 91.955-71.68 111.411zM512 890.112c39.117 0 70.861-31.693 70.861-70.912 0-39.117-31.744-70.912-70.861-70.912-39.168 0-70.861 31.795-70.861 70.912 0 39.219 31.693 70.912 70.861 70.912zM153.6 31.488c-39.219 0-70.912 31.795-70.912 70.912 0 39.219 31.693 70.912 70.912 70.912 39.117 0 70.861-31.693 70.861-70.912 0-39.117-31.744-70.912-70.861-70.912zM512 31.488c-39.219 0-70.912 31.795-70.912 70.912 0 39.219 31.693 70.912 70.912 70.912 39.117 0 70.861-31.693 70.861-70.912 0-39.117-31.744-70.912-70.861-70.912zM870.4 31.488c-39.219 0-70.912 31.795-70.912 70.912 0 39.219 31.693 70.912 70.912 70.912 39.117 0 70.861-31.693 70.861-70.912 0-39.117-31.744-70.912-70.861-70.912z" />
+<glyph unicode="&#xe946;" glyph-name="install" d="M975.821 414.822l-162.355 405.862c-11.981 30.054-41.062 49.715-73.421 49.715h-124.621l19.456-208.128h138.24l-261.12-216.474-261.12 216.474h138.24l19.456 208.128h-124.621c-32.358 0-61.44-19.661-73.421-49.715l-162.355-405.862c-14.746-36.915-19.098-77.158-12.595-116.326l30.208-181.197c6.349-38.144 39.322-66.099 77.978-66.099h736.41c38.656 0 71.629 27.955 77.978 66.099l30.208 181.197c6.605 39.168 2.253 79.411-12.544 116.326zM868.301 192.256c-3.686-22.323-22.989-38.656-45.619-38.656h-621.363c-22.63 0-41.933 16.333-45.619 38.656l-18.688 112.282c-4.762 28.211 16.998 53.862 45.619 53.862h658.79c28.57 0 50.33-25.651 45.619-53.862l-18.739-112.282z" />
+<glyph unicode="&#xe947;" glyph-name="layers" d="M473.498 378.829c23.040-16.026 53.76-16.026 76.8 0l465.306 270.387c12.083 8.397 10.752 26.522-2.458 33.075l-471.296 181.094c-18.842 9.37-41.062 9.37-59.904 0l-471.296-181.094c-13.21-6.502-14.541-24.678-2.458-33.075l465.306-270.387zM1013.146 419.277l-127.283 63.13-293.12-170.342c-24.013-15.821-51.917-24.115-80.845-24.115s-56.832 8.346-80.845 24.115l-292.915 170.445-127.488-63.181c-13.21-6.554-14.541-24.678-2.458-33.075l465.306-323.021c23.040-16.026 53.76-16.026 76.8 0l465.306 323.021c12.083 8.346 10.752 26.47-2.458 33.024z" />
+<glyph unicode="&#xe948;" glyph-name="open-book" d="M542.464 706.765l22.835-70.195c18.893 16.179 42.752 30.669 73.779 40.704 30.208 9.83 56.883 15.36 80.998 18.534l-22.016 67.738c-24.371-3.533-51.251-9.216-80.896-18.842-29.594-9.626-54.016-23.040-74.701-37.939zM589.926 560.589l22.835-70.195c18.893 16.179 42.752 30.669 73.779 40.704 30.208 9.83 56.883 15.36 80.998 18.534l-22.016 67.738c-24.371-3.533-51.251-9.216-80.896-18.842-29.594-9.574-53.965-22.989-74.701-37.939zM637.44 414.464l22.835-70.195c18.893 16.179 42.752 30.669 73.779 40.704 30.208 9.83 56.883 15.36 80.998 18.534l-22.016 67.738c-24.371-3.533-51.251-9.216-80.896-18.842-29.645-9.574-54.016-23.040-74.701-37.939zM275.866 303.258l22.016-67.738c21.35 11.571 46.182 22.784 76.39 32.563 31.027 10.086 58.829 12.39 83.61 10.394l-22.835 70.195c-25.549-0.102-53.146-3.584-82.688-13.158-29.645-9.626-54.733-20.787-76.493-32.256zM180.89 595.558l22.016-67.738c21.35 11.571 46.182 22.733 76.39 32.563 31.027 10.086 58.829 12.39 83.61 10.394l-22.784 70.246c-25.549-0.154-53.146-3.584-82.739-13.21-29.645-9.626-54.733-20.787-76.493-32.256zM228.352 449.382l22.016-67.738c21.35 11.571 46.182 22.784 76.39 32.563 31.027 10.086 58.829 12.39 83.61 10.394l-22.784 70.246c-25.549-0.102-53.146-3.584-82.688-13.158-29.645-9.626-54.784-20.838-76.544-32.307zM566.477 900.608c-88.218-28.672-134.298-89.702-156.314-131.021-42.086 20.48-115.2 42.752-203.418 14.080-129.178-41.984-203.213-134.502-203.213-134.502l209.664-644.454c6.451-19.814 33.075-24.422 44.954-7.322 25.549 36.813 74.752 84.89 166.758 114.79 87.962 28.57 152.013-2.765 187.136-29.594 13.926-10.65 33.894-3.072 39.014 13.722 12.902 42.342 46.438 104.448 133.632 132.762 92.109 29.952 160.205 19.917 202.547 5.12 19.712-6.861 38.4 12.39 32 32.205l-209.306 644.813c0 0-114.278 31.334-243.456-10.598zM560.691 191.693c-41.933 12.493-97.331 18.33-160.819-2.253-64.051-20.787-108.902-48.589-138.189-71.885l-166.144 511.078c18.33 18.33 60.774 53.35 136.294 77.875 71.117 23.091 129.434 3.328 167.885-19.354l160.973-495.462zM913.664 329.37c-37.427 1.638-90.061-2.253-154.112-23.091-63.488-20.634-104.858-57.958-131.43-92.672l-160.973 495.462c17.715 40.96 53.248 91.238 124.416 114.33 75.469 24.525 130.406 21.146 156.006 17.101l166.093-511.13z" />
+<glyph unicode="&#xe949;" glyph-name="resize-100" d="M209.92 250.88l-158.72-148.48 102.4-102.4 148.48 158.72 107.52-107.52v307.2h-307.2l107.52-107.52zM972.8 819.2l-102.4 102.4-148.48-158.72-107.52 107.52v-307.2h307.2l-107.52 107.52 158.72 148.48z" />
+<glyph unicode="&#xe94a;" glyph-name="resize-full-screen" d="M357.734 410.266l-150.067-155.187-105.267 124.365v-328.243h327.014l-124.416 106.547 155.136 150.118-102.4 102.4zM594.586 870.4l124.416-106.547-155.136-150.118 102.4-102.4 150.067 155.187 105.267-124.365v328.243h-327.014z" />
+<glyph unicode="&#xe94b;" glyph-name="save" d="M776.858 870.4h-572.058c-56.371 0-102.4-46.080-102.4-102.4v-614.4c0-56.32 46.029-102.4 102.4-102.4h614.4c56.371 0 102.4 46.080 102.4 102.4v556.698l-144.742 160.102zM716.8 563.2c0-28.109-23.040-51.2-51.2-51.2h-307.2c-28.16 0-51.2 23.091-51.2 51.2v256h409.6v-256zM665.6 768h-102.4v-204.8h102.4v204.8z" />
+<glyph unicode="&#xe94c;" glyph-name="select-arrows" d="M512 921.6l-256-358.4h512l-256 358.4zM512 0l256 358.4h-512l256-358.4z" />
+<glyph unicode="&#xe94d;" glyph-name="sound-mute" d="M727.091 502.067c71.117-96.41 93.082-180.070 79.821-193.382-13.312-13.21-96.922 8.704-193.434 79.821l-282.931-282.982c214.323-94.106 492.902 103.322 542.976 153.395 47.36 47.206 4.966 169.421-95.027 294.605l-51.405-51.456zM443.75 566.221c-56.269 84.89-73.267 154.778-61.133 166.912 11.93 11.981 81.92-4.915 166.758-61.286l52.378 52.48c-115.917 85.709-225.024 119.501-269.158 75.213-47.514-47.411-227.738-300.902-165.427-509.798l276.582 276.48zM948.275 897.126c-19.968 20.019-52.378 20.019-72.397 0l-800.205-800.256c-20.019-20.019-20.019-52.429 0-72.397 20.019-20.019 52.378-20.019 72.397 0l800.205 800.256c20.019 20.019 20.019 52.429 0 72.397z" />
+<glyph unicode="&#xe94e;" glyph-name="sound" d="M271.974 739.021c-57.446-57.293-308.582-415.488-91.597-632.422 216.883-216.986 574.976 34.202 632.525 91.597 57.395 57.293-17.152 225.024-166.502 374.374-149.453 149.453-316.979 224.051-374.426 166.451zM746.291 248.013c-16.998-16.794-148.224 23.398-274.637 149.914-126.31 126.413-166.707 257.69-149.709 274.586 16.794 16.998 148.173-23.398 274.432-149.811 126.515-126.31 166.81-257.69 149.914-274.688zM790.221 666.522l97.485 97.587c20.019 20.019 20.019 52.378 0 72.397-19.968 20.019-52.378 20.019-72.397 0l-97.485-97.587c-20.019-20.019-20.019-52.429 0-72.397 19.968-19.968 52.378-19.968 72.397 0zM569.549 778.24c24.73-13.722 55.859-4.864 69.632 19.866l55.654 98.611c13.722 24.73 4.864 55.859-19.866 69.632-24.678 13.773-55.859 4.864-69.632-19.866l-55.654-98.611c-13.722-24.781-4.813-55.962 19.866-69.632zM1017.446 623.821c-13.67 24.73-44.902 33.638-69.632 19.866l-99.328-54.323c-24.73-13.722-33.638-44.954-19.866-69.632 13.722-24.73 44.902-33.638 69.632-19.866l99.328 54.323c24.73 13.773 33.638 44.902 19.866 69.632z" />
+<glyph unicode="&#xe94f;" glyph-name="trash" d="M173.517 608.614l56.371-558.49c3.123-23.603 117.094-101.222 282.112-101.325 165.12 0.102 279.091 77.722 282.163 101.325l56.422 558.49c-86.221-48.23-215.091-71.014-338.586-71.014-123.392 0-252.314 22.784-338.483 71.014zM674.202 895.488l-43.981 48.691c-16.998 24.218-35.43 28.621-71.322 28.621h-93.747c-35.84 0-54.323-4.403-71.27-28.621l-43.981-48.691c-131.584-22.989-227.021-83.968-227.021-128.973v-8.704c0-79.206 174.234-143.411 389.12-143.411 214.938 0 389.171 64.205 389.171 143.411v8.704c0 45.005-95.386 105.984-226.97 128.973zM617.984 750.592l-54.784 68.608h-102.4l-54.682-68.608h-87.040c0 0 95.334 113.715 108.083 129.126 9.728 11.776 19.661 16.282 32.563 16.282h104.602c12.954 0 22.886-4.506 32.614-16.282 12.698-15.411 108.083-129.126 108.083-129.126h-87.040z" />
+<glyph unicode="&#xe950;" glyph-name="triangle-down" d="M256 665.6h512l-256-460.8-256 460.8z" />
+<glyph unicode="&#xe951;" glyph-name="triangle-left" d="M716.8 716.8v-512l-460.8 256 460.8 256z" />
+<glyph unicode="&#xe952;" glyph-name="triangle-right" d="M768 460.8l-460.8-256v512l460.8-256z" />
+<glyph unicode="&#xe953;" glyph-name="triangle-up" d="M768 256h-512l256 460.8 256-460.8z" />
+<glyph unicode="&#xe954;" glyph-name="uninstall" d="M975.821 414.822l-162.355 405.862c-11.981 30.054-41.062 49.715-73.421 49.715h-456.090c-32.358 0-61.44-19.661-73.421-49.715l-162.355-405.862c-14.746-36.915-19.098-77.158-12.595-116.326l30.208-181.197c6.349-38.144 39.322-66.099 77.978-66.099h736.41c38.656 0 71.629 27.955 77.978 66.099l30.208 181.197c6.605 39.168 2.253 79.411-12.544 116.326zM282.624 727.757l83.917 57.958 146.842-102.963 146.842 102.963 83.917-57.958-146.893-104.090 149.914-105.472-83.917-59.955-149.862 106.291-149.862-106.291-83.917 59.955 149.914 105.472-146.893 104.090zM868.301 192.256c-3.686-22.323-22.989-38.656-45.619-38.656h-621.363c-22.63 0-41.933 16.333-45.619 38.656l-18.688 112.282c-4.762 28.211 16.998 53.862 45.619 53.862h658.79c28.57 0 50.33-25.651 45.619-53.862l-18.739-112.282z" />
+<glyph unicode="&#xe955;" glyph-name="upload-to-cloud" d="M778.906 632.883c-14.131 0-27.955-1.28-41.421-3.482-33.587 109.824-137.626 189.798-260.864 189.798-150.477 0-272.384-119.194-272.384-266.189 0-13.107 1.024-26.010 2.918-38.707-7.219 0.87-14.49 1.382-21.965 1.382-102.298 0-185.19-80.998-185.19-180.992s82.893-181.094 185.19-181.094h224.41v204.8h-128l230.4 256 230.4-256h-128v-204.8h164.506c135.322 0 245.094 107.315 245.094 239.616 0 132.403-109.773 239.667-245.094 239.667z" />
+<glyph unicode="&#xe956;" glyph-name="upload1" d="M409.6 358.4h204.8v307.2h153.6l-256 256-256-256h153.6v-307.2zM990.106 279.962c-10.752 11.469-82.483 88.218-102.963 108.237-13.568 13.261-32.973 21.402-53.35 21.402h-89.958l156.877-153.293h-181.453c-5.222 0-9.933-2.662-12.288-6.81l-41.779-95.898h-306.381l-41.779 95.898c-2.355 4.147-7.117 6.81-12.288 6.81h-181.453l156.826 153.293h-89.907c-20.326 0-39.731-8.141-53.35-21.402-20.48-20.070-92.211-96.819-102.963-108.237-25.037-26.675-38.81-47.923-32.256-74.189l28.723-157.389c6.554-26.317 35.379-47.923 64.102-47.923h835.174c28.723 0 57.549 21.606 64.102 47.923l28.723 157.389c6.451 26.266-7.27 47.514-32.358 74.189z" />
+<glyph unicode="&#xe957;" glyph-name="add-user" d="M818.637-6.605c0.563 109.005-111.923 173.517-221.030 220.518-108.698 46.797-143.411 86.221-143.411 170.701 0 50.637 33.178 34.15 47.718 127.027 6.144 38.502 35.43 0.614 41.062 88.525 0 35.021-16.026 43.725-16.026 43.725s8.141 51.866 11.315 91.802c3.277 41.83-20.378 131.072-117.811 158.464-16.998 17.459-28.518 45.158 23.91 72.909-114.688 5.325-141.363-54.682-202.445-98.816-51.968-38.707-65.997-99.994-63.488-132.608 3.328-39.936 11.418-91.802 11.418-91.802s-16.077-8.704-16.077-43.725c5.632-87.962 35.021-50.022 41.114-88.525 14.541-92.877 47.77-76.39 47.77-127.027 0-84.48-10.854-113.152-119.603-159.949-109.107-46.95-143.053-122.214-142.49-231.219 0.154-32.614-0.563-44.595-0.563-44.595h819.2c0 0-0.717 11.981-0.563 44.595zM870.4 460.8v153.6h-102.4v-153.6h-153.6v-102.4h153.6v-153.6h102.4v153.6h153.6v102.4h-153.6z" />
+<glyph unicode="&#xe958;" glyph-name="address" d="M1013.709 708.352l-121.6 93.696c-6.912 4.762-16.589 9.011-26.675 12.134-10.138 3.123-20.634 5.018-29.030 5.018h-350.003l41.011-256h308.992c8.397 0 18.893 1.894 28.979 5.018s19.814 7.424 26.675 12.083l121.6 93.798c6.912 4.659 10.342 10.854 10.342 17.101s-3.43 12.442-10.291 17.152zM435.2 921.6h-51.2c-14.131 0-25.6-11.469-25.6-25.6v-179.2h-170.803c-8.499 0-18.944-1.894-29.030-5.069-10.138-3.072-19.814-7.322-26.675-12.083l-121.6-93.696c-6.912-4.659-10.291-10.906-10.291-17.152 0-6.195 3.379-12.39 10.291-17.152l121.6-93.798c6.861-4.659 16.538-8.96 26.675-12.032 10.086-3.123 20.531-5.018 29.030-5.018h170.803v-435.2c0-14.131 11.469-25.6 25.6-25.6h51.2c14.131 0 25.6 11.469 25.6 25.6v870.4c0 14.131-11.469 25.6-25.6 25.6z" />
+<glyph unicode="&#xe959;" glyph-name="adjust" d="M972.8 501.811c-9.318 0-40.909 0-50.176 0-28.314 0-51.2-18.381-51.2-41.011 0-22.579 22.886-40.909 51.2-40.909 9.318 0 40.909 0 50.176 0 28.262 0 51.2 18.278 51.2 40.909 0 22.579-22.989 41.011-51.2 41.011zM512 742.4c-156.211 0-281.6-125.389-281.6-281.6s125.389-281.6 281.6-281.6c156.16 0 281.6 125.389 281.6 281.6s-125.491 281.6-281.6 281.6zM512 256c-113.203 0-204.8 91.699-204.8 204.8 0 113.203 91.597 204.8 204.8 204.8v-409.6zM153.6 460.8c0 22.579-22.989 41.011-51.2 41.011-9.472 0-41.779 0-51.2 0-28.314 0-51.2-18.381-51.2-41.011 0-22.579 22.886-40.909 51.2-40.909 9.421 0 41.728 0 51.2 0 28.211 0 51.2 18.33 51.2 40.909zM512 819.2c22.579 0 40.909 22.886 40.909 51.2 0 9.421 0 41.779 0 51.2 0 28.314-18.33 51.2-40.909 51.2-22.63 0-41.011-22.886-41.011-51.2 0-9.421 0-41.779 0-51.2 0-28.314 18.381-51.2 41.011-51.2zM512 102.4c-22.63 0-41.011-22.886-41.011-51.2 0-9.421 0-41.779 0-51.2 0-28.314 18.381-51.2 41.011-51.2 22.579 0 40.909 22.886 40.909 51.2 0 9.421 0 41.779 0 51.2 0 28.314-18.33 51.2-40.909 51.2zM889.088 779.981c20.019 20.019 23.245 49.203 7.27 65.178s-45.21 12.698-65.126-7.322c-5.53-5.478-30.362-30.31-35.84-35.789-20.019-20.019-23.245-49.203-7.27-65.178s45.21-12.698 65.178 7.322c5.478 5.53 30.259 30.31 35.789 35.789zM170.701 177.51c-5.53-5.581-30.362-30.413-35.84-35.891-20.019-20.019-23.245-49.101-7.27-65.075s45.21-12.8 65.126 7.219c5.53 5.478 30.362 30.31 35.84 35.789 20.019 20.019 23.245 49.203 7.27 65.229s-45.21 12.646-65.126-7.27zM192.768 837.888c-19.968 20.019-49.203 23.296-65.178 7.322s-12.698-45.21 7.219-65.229c5.53-5.478 30.362-30.31 35.84-35.789 20.019-20.019 49.152-23.296 65.126-7.322s12.749 45.21-7.219 65.178c-5.478 5.53-30.259 30.362-35.789 35.84zM795.341 119.501c5.53-5.478 30.362-30.31 35.84-35.789 20.019-20.019 49.152-23.194 65.126-7.322 15.974 15.974 12.749 45.21-7.27 65.178-5.478 5.478-30.31 30.31-35.789 35.789-20.019 20.019-49.203 23.296-65.229 7.322s-12.698-45.158 7.322-65.178z" />
+<glyph unicode="&#xe95a;" glyph-name="air" d="M135.322 647.322c89.446 76.8 160.102 137.523 351.846 29.184 92.109-52.019 166.4-71.68 228.198-71.578 108.288 0 178.483 60.211 239.155 112.282 21.658 18.586 24.422 51.61 6.246 73.677-18.278 22.118-50.534 24.986-72.192 6.4-89.395-76.902-160.102-137.626-351.846-29.184-253.338 143.002-372.019 41.114-467.354-40.806-21.606-18.586-24.371-51.507-6.195-73.677 18.227-22.016 50.483-24.934 72.141-6.298zM888.576 535.808c-89.395-76.8-160.102-137.626-351.846-29.184-253.338 143.104-372.019 41.165-467.354-40.704-21.606-18.586-24.422-51.61-6.195-73.677 18.176-22.118 50.483-24.986 72.141-6.4 89.446 76.851 160.102 137.574 351.846 29.286 92.109-52.122 166.4-71.68 228.198-71.68 108.288 0 178.483 60.211 239.155 112.384 21.658 18.586 24.422 51.61 6.246 73.626-18.227 22.17-50.534 24.934-72.192 6.349zM888.576 274.381c-89.395-76.902-160.102-137.626-351.846-29.286-253.338 143.104-372.019 41.216-467.354-40.704-21.606-18.586-24.422-51.61-6.195-73.677 18.176-22.118 50.483-24.883 72.141-6.298 89.446 76.8 160.102 137.472 351.846 29.184 92.109-52.019 166.4-71.68 228.198-71.68 108.288 0 178.483 60.314 239.155 112.384 21.658 18.586 24.422 51.61 6.246 73.677-18.227 22.118-50.534 24.934-72.192 6.4z" />
+<glyph unicode="&#xe95b;" glyph-name="aircraft-landing" d="M960.102 151.654c-4.966-13.619-42.086-51.302-308.685 44.954l-261.376 94.362c-90.982 32.819-219.034 84.429-269.21 113.51-35.123 20.326-42.803 65.638-42.803 65.638s-8.346 151.347-13.466 188.621c-5.12 37.274 4.864 43.674 40.755 25.19 22.323-11.52 95.488-131.174 126.157-182.63 77.414-19.507 146.534-38.963 178.842-48.589-13.158 87.91-37.888 252.314-46.746 303.77-8.499 49.306 28.16 27.392 28.16 27.392 16.947-9.728 50.33-33.843 61.747-51.302 77.926-119.091 188.006-337.92 196.403-354.714 45.875-14.336 116.582-37.53 158.822-52.736 110.387-39.885 158.054-155.341 151.398-173.466z" />
+<glyph unicode="&#xe95c;" glyph-name="aircraft-take-off" d="M1017.344 642.406c6.093-13.158 6.502-66.048-250.061-186.47l-251.546-118.067c-87.552-41.114-214.579-95.181-270.592-110.131-39.219-10.445-76.646 16.179-76.646 16.179s-112.947 101.12-142.95 123.853c-29.952 22.733-27.392 34.304 11.008 46.592 23.91 7.629 160.256-25.242 218.368-39.936 68.557 40.96 131.174 76.083 160.819 92.058-71.475 52.89-205.21 151.654-247.859 181.76-40.909 28.928 0.512 39.322 0.512 39.322 18.842 5.069 59.494 11.674 79.974 7.373 139.315-29.133 371.866-106.035 389.683-111.923 42.598 22.323 108.954 55.91 149.606 75.008 106.24 49.869 221.542 1.894 229.683-15.616z" />
+<glyph unicode="&#xe95d;" glyph-name="aircraft" d="M639.795 81.203c-20.173 56.115-92.416 244.48-122.368 322.406-56.474-37.734-119.501-73.472-179.814-98.714-18.739-65.536-56.013-189.901-74.035-206.49-30.925-28.518-42.598-24.832-47.36 14.285s-24.832 165.683-24.832 165.683-110.694 62.413-145.408 80.282-34.15 30.259 2.918 49.869c21.606 11.418 149.862 4.352 217.19-0.256 44.083 48.691 98.867 96.358 153.242 137.165-62.208 55.091-212.48 188.16-257.741 226.509-39.731 33.69 4.045 40.806 4.045 40.806 19.968 3.584 62.566 6.758 83.354 0.461 129.229-39.066 329.83-105.882 376.986-121.651 18.074 12.749 37.734 26.624 59.494 42.035 240.742 170.496 301.414 132.762 312.883 116.224s25.754-87.091-214.989-257.638c-21.76-15.411-41.37-29.338-59.392-42.138-1.485-50.176-8.038-263.731-15.923-399.923-1.28-21.914-18.79-61.338-28.928-79.053-0.051 0-21.658-39.168-39.322 10.138z" />
+<glyph unicode="&#xe95e;" glyph-name="align-bottom" d="M665.6 409.6h-102.4v409.6h-102.4v-409.6h-102.4l153.6-153.6 153.6 153.6zM890.88 204.8h-757.76c-28.262 0-30.72-22.886-30.72-51.2s2.458-51.2 30.72-51.2h757.76c28.262 0 30.72 22.886 30.72 51.2s-2.458 51.2-30.72 51.2z" />
+<glyph unicode="&#xe95f;" glyph-name="align-horizontal-middle" d="M409.6 460.8l-153.6 153.6v-102.4h-204.8v-102.4h204.8v-102.4l153.6 153.6zM768 307.2v102.4h204.8v102.4h-204.8v102.4l-153.6-153.6 153.6-153.6zM512 51.2c28.314 0 51.2 2.509 51.2 30.72v757.76c0 28.314-22.886 30.72-51.2 30.72-28.262 0-51.2-2.406-51.2-30.72v-757.76c0-28.211 22.938-30.72 51.2-30.72z" />
+<glyph unicode="&#xe960;" glyph-name="align-left" d="M307.2 460.8l153.6-153.6v102.4h409.6v102.4h-409.6v102.4l-153.6-153.6zM204.8 870.4c-28.314 0-51.2-2.406-51.2-30.72v-757.76c0-28.211 22.886-30.72 51.2-30.72 28.262 0 51.2 2.509 51.2 30.72v757.76c0 28.314-22.938 30.72-51.2 30.72z" />
+<glyph unicode="&#xe961;" glyph-name="align-right" d="M563.2 614.4v-102.4h-409.6v-102.4h409.6v-102.4l153.6 153.6-153.6 153.6zM768 839.68v-757.76c0-28.211 22.938-30.72 51.2-30.72 28.314 0 51.2 2.509 51.2 30.72v757.76c0 28.314-22.886 30.72-51.2 30.72-28.262 0-51.2-2.406-51.2-30.72z" />
+<glyph unicode="&#xe962;" glyph-name="align-top" d="M512 665.6l-153.6-153.6h102.4v-409.6h102.4v409.6h102.4l-153.6 153.6zM921.6 768c0 28.314-2.458 51.2-30.72 51.2h-757.76c-28.262 0-30.72-22.886-30.72-51.2s2.458-51.2 30.72-51.2h757.76c28.262 0 30.72 22.886 30.72 51.2z" />
+<glyph unicode="&#xe963;" glyph-name="align-vertical-middle" d="M512 358.4l-153.6-153.6h102.4v-204.8h102.4v204.8h102.4l-153.6 153.6zM665.6 716.8h-102.4v204.8h-102.4v-204.8h-102.4l153.6-153.6 153.6 153.6zM921.6 460.8c0 28.314-2.458 51.2-30.72 51.2h-757.76c-28.262 0-30.72-22.886-30.72-51.2 0-28.211 2.458-51.2 30.72-51.2h757.76c28.262 0 30.72 22.989 30.72 51.2z" />
+<glyph unicode="&#xe964;" glyph-name="archive" d="M715.827 870.4h-407.706c0 0-50.995 0-50.995-51.2h509.696c0 51.2-50.995 51.2-50.995 51.2zM868.762 716.8c0 51.2-50.944 51.2-50.944 51.2h-611.635c0 0-50.944 0-50.944-51.2v-51.2h713.523v51.2zM970.65 665.6c-30.106 30.31-30.106 30.31-30.106 30.31v-81.51h-857.088v81.51c0 0 0 0-30.157-30.31s-51.763-38.4-39.629-102.4c12.083-63.795 70.605-413.491 79.309-460.8 9.523-51.917 62.31-51.2 62.31-51.2h713.523c0 0 52.736-0.717 62.31 51.2 8.704 47.309 67.174 397.005 79.309 460.8 12.032 64-9.574 72.090-39.782 102.4zM716.8 358.554c0-28.365-22.989-51.354-51.354-51.354h-306.893c-28.365 0-51.354 22.989-51.354 51.354v102.246h51.2v-102.4h307.2v102.4h51.2v-102.246z" />
+<glyph unicode="&#xe965;" glyph-name="area-graph" d="M1024 870.4v-819.2h-1007.616c-16.282 0-21.299 10.701-11.059 23.808l228.813 294.298c10.189 13.107 28.314 14.49 40.397 3.174l72.653-68.301c12.032-11.315 29.286-9.114 38.246 4.915l156.006 242.688c8.96 13.978 26.061 15.974 37.939 4.608l111.155-107.315c11.878-11.52 28.621-9.216 37.069 5.12l262.81 398.592c8.499 14.438 20.787 17.613 33.587 17.613z" />
+<glyph unicode="&#xe966;" glyph-name="attachment1" d="M286.822-40.96c-66.202 0-128.205 28.416-172.954 73.728-86.784 87.859-110.95 241.203 10.701 364.339 71.219 72.090 356.659 361.114 499.098 505.344 50.586 51.2 114.944 71.014 176.538 54.272 60.57-16.384 110.131-66.611 126.362-127.898 16.486-62.464-3.021-127.642-53.555-178.842l-477.338-483.328c-27.238-27.597-58.061-43.93-88.986-47.206-30.669-3.277-59.904 6.656-80.384 27.392-37.069 37.683-42.394 108.39 19.354 170.854l335.258 339.456c13.773 13.926 36.096 13.926 49.869 0s13.773-36.557 0-50.483l-335.309-339.507c-28.979-29.286-31.642-57.293-19.302-69.837 5.427-5.427 13.619-7.936 23.091-6.861 14.49 1.485 31.027 11.059 46.541 26.675l477.338 483.277c32.768 33.178 45.312 72.192 35.328 109.824-9.83 37.12-39.834 67.482-76.442 77.466-37.171 10.086-75.776-2.662-108.544-35.84-142.438-144.282-427.827-433.254-499.098-505.344-92.979-94.157-70.707-202.547-10.701-263.322 60.058-60.774 167.014-83.405 260.045 10.854l499.098 505.344c13.773 13.926 36.096 13.926 49.869 0s13.773-36.557 0-50.534l-499.098-505.344c-58.829-59.494-124.723-84.48-186.778-84.48z" />
+<glyph unicode="&#xe967;" glyph-name="awareness-ribbon" d="M848.589 136.294c-38.758 53.811-145.971 195.789-233.984 312.627 35.635 51.149 64.051 92.928 77.056 114.79 79.104 132.813 44.749 218.112 1.126 290.304-43.725 72.243-50.637 113.971-180.787 113.971-130.202 0-137.114-41.728-180.787-114.022-43.725-72.192-78.029-157.491 1.075-290.304 13.005-21.811 41.421-63.642 77.107-114.79-88.064-116.787-195.277-258.816-234.035-312.627-9.011-12.493-8.192-33.997 0.461-55.398 6.656-16.486 32.256-90.214 38.502-105.677 7.987-19.917 33.997-34.304 55.398-4.71 12.339 17.101 132.198 180.48 242.278 333.926 110.029-153.395 229.939-316.826 242.278-333.926 21.35-29.594 47.411-15.206 55.398 4.71 6.246 15.514 31.846 89.19 38.502 105.677 8.55 21.453 9.421 42.957 0.41 55.45zM493.261 611.174c-54.682 75.981-93.798 164.403-93.798 164.403s21.504 38.81 112.538 38.81c91.034 0 112.538-38.81 112.538-38.81s-39.219-88.422-93.85-164.403c-4.506-6.195-11.162-15.206-18.688-25.446-7.629 10.24-14.285 19.251-18.739 25.446z" />
+<glyph unicode="&#xe968;" glyph-name="back-in-time" d="M563.2 880.691c-227.584 0-412.723-182.374-418.253-409.395v-10.496h-121.446l184.013-199.373 178.893 199.373h-136.806v10.496c5.478 169.114 143.77 304.384 313.6 304.384 173.363 0 313.907-141.005 313.907-314.88s-140.544-314.88-313.907-314.88c-69.478 0-133.683 22.784-185.702 61.082l-71.987-77.005c71.066-55.706 160.512-88.986 257.69-88.986 231.168 0 418.509 187.904 418.509 419.789s-187.341 419.891-418.509 419.891zM512 716.8v-256c0-6.656 1.382-13.312 3.942-19.558 2.611-6.246 6.349-11.93 11.059-16.64l163.84-163.84c14.49 9.37 28.16 19.917 40.294 32.154l-116.736 116.685v307.2h-102.4z" />
+<glyph unicode="&#xe969;" glyph-name="back" d="M972.8 614.4v-307.2c0-56.474-45.875-102.4-102.4-102.4h-716.8v153.6h665.6v204.8h-563.2v-102.4l-204.8 179.2 204.8 179.2v-102.4h614.4c56.525 0 102.4-45.875 102.4-102.4z" />
+<glyph unicode="&#xe96a;" glyph-name="bar-graph" d="M870.4 921.6h-102.4c-28.262 0-51.2-22.886-51.2-51.2v-869.99h204.8v869.99c0 28.314-22.886 51.2-51.2 51.2zM563.2 614.4h-102.4c-28.262 0-51.2-22.886-51.2-51.2v-562.79h204.8v562.79c0 28.314-22.886 51.2-51.2 51.2zM256 307.2h-102.4c-28.262 0-51.2-22.886-51.2-51.2v-255.59h204.8v255.59c0 28.314-22.886 51.2-51.2 51.2z" />
+<glyph unicode="&#xe96b;" glyph-name="battery" d="M788.89 460.8c0 141.619 65.382 221.184 116.582 221.184 18.586 0 67.328 0 67.328 0-34.202 54.221-62.515 86.016-187.29 86.016h-512.41c-191.181 0-273.101-176.179-273.101-307.2s81.92-307.2 273.101-307.2h512.41c124.826 0 153.088 31.795 187.29 86.016 0 0-16.128 0-67.328 0s-116.582 79.565-116.582 221.184zM649.626 368.896c-8.397-12.8-34.611-0.819-34.611-0.819l-151.398 68.506c0 0-13.517-34.304-23.91-58.419-10.496-24.115-18.483-51.405-61.901-20.89-43.469 30.618-183.347 166.4-183.347 166.4s-17.664 14.541-8.858 28.211c8.346 12.902 34.611 0.819 34.611 0.819l151.347-68.403c0 0 13.568 34.202 23.962 58.317 10.496 24.064 18.483 51.507 61.901 20.89 43.469-30.515 183.296-166.4 183.296-166.4s17.664-14.49 8.909-28.211zM966.349 566.886h-38.349c-28.621 0-56.576-38.605-56.576-101.325 0-62.822 28.006-101.376 56.576-101.376h38.349c28.672 0 57.651 38.605 57.651 101.376 0 62.72-28.979 101.325-57.651 101.325z" />
+<glyph unicode="&#xe96c;" glyph-name="beamed-note" d="M870.4 921.6l-0.102-665.6c0-63.642-66.611-153.6-191.898-153.6-63.642 0-115.2 33.434-115.2 96 0 81.357 73.984 130.56 153.6 130.56 22.118 0 38.605-3.021 51.2-6.298v375.501l-358.4-65.178v-479.386h-0.102c0-63.642-66.611-153.6-191.898-153.6-63.642 0-115.2 33.434-115.2 96 0 81.357 73.984 130.56 153.6 130.56 22.118 0 38.605-3.021 51.2-6.298v598.938l563.2 102.4z" />
+<glyph unicode="&#xe96d;" glyph-name="bell1" d="M750.080 536.986c-116.736 251.238-177.459 346.675-368.179 342.682-67.942-1.382-51.661 49.254-103.475 30.054-51.712-19.2-7.322-47.309-60.262-90.778-148.582-122.010-134.912-234.854-65.997-503.808 29.030-113.306-69.99-118.835-30.822-228.608 28.621-80.077 239.565-113.613 462.080-31.078 222.566 82.586 362.803 246.477 334.182 326.554-39.168 109.824-118.323 49.203-167.526 154.982zM559.309 123.136c-198.758-73.728-362.086-30.413-368.998-11.11-11.878 33.28 64.154 144.179 291.379 228.506s354.048 53.043 367.309 15.923c7.834-21.965-90.88-159.539-289.69-233.318zM495.411 302.029c-103.885-38.554-176.077-82.637-222.874-122.317 32.922-29.901 94.566-37.171 155.955-14.387 78.182 28.928 126.259 95.539 107.264 148.685-0.256 0.666-0.563 1.178-0.819 1.843-12.851-4.198-26.010-8.755-39.526-13.824z" />
+<glyph unicode="&#xe96e;" glyph-name="blackboard" d="M129.997-51.2h177.203l71.987 189.338-151.859 51.405-97.331-240.742zM644.813 138.138l71.987-189.338h177.203l-97.331 240.742-151.859-51.405zM921.6 870.4h-332.8l-25.6 102.4h-102.4l-25.6-102.4h-332.8c-28.314 0-51.2-22.886-51.2-51.2v-563.2c0-28.262 22.886-51.2 51.2-51.2h819.2c28.314 0 51.2 22.938 51.2 51.2v563.2c0 28.262-22.886 51.2-51.2 51.2z" />
+<glyph unicode="&#xe96f;" glyph-name="block" d="M512 952.32c-271.514 0-491.571-220.058-491.571-491.52 0-271.514 220.058-491.571 491.571-491.571 271.411 0 491.52 220.058 491.52 491.571 0 271.462-220.109 491.52-491.52 491.52zM122.829 460.8c0 214.886 174.182 389.12 389.12 389.12 93.645 0 179.507-33.126 246.63-88.218l-547.533-547.533c-55.091 67.174-88.218 152.986-88.218 246.63zM511.949 71.731c-93.594 0-179.456 33.075-246.528 88.166l547.533 547.482c55.040-67.174 88.166-152.934 88.166-246.579 0-214.886-174.285-389.069-389.171-389.069z" />
+<glyph unicode="&#xe970;" glyph-name="book1" d="M870.4 668.16v-529.971c0-26.726-23.142-39.475-51.2-59.392-22.528-16.026-51.2 3.84-51.2 30.054 0 0 0 507.136 0 517.837 0 10.803-3.789 21.094-16.077 27.392s-396.186 208.128-396.186 208.128c-6.195 2.304-33.229 19.354-69.274 0.819-34.253-17.613-52.89-36.762-57.651-45.773l418.816-229.478c11.11-5.837 17.971-14.848 17.971-26.419v-553.062c0-11.776-7.27-24.371-18.893-29.952-5.325-2.662-11.213-3.942-17.050-3.942-6.912 0-13.875 1.69-19.763 5.325-11.008 6.707-398.029 244.019-423.578 259.43-12.288 7.373-26.675 22.477-26.982 33.69l-5.734 526.643c0 10.138-1.178 28.006 14.797 52.838 35.686 55.501 160.205 118.63 223.232 85.914l460.749-233.216c11.11-5.734 18.022-17.203 18.022-36.864z" />
+<glyph unicode="&#xe971;" glyph-name="bowl" d="M867.789 590.234c-111.411-148.582-209.664-153.702-360.755-161.382h-5.171c-183.859 0.102-314.266 68.403-314.266 93.798-0.102 24.115 117.658 86.886 286.976 93.133l30.208 75.418c-0.973 0-1.894 0.102-2.918 0.102-251.29 0-398.899-79.974-398.899-156.211v-102.4c0-47.002 29.798-458.189 388.198-458.189s409.6 411.187 409.6 458.189v102.4c0 20.019-10.291 40.294-29.901 59.29l-3.072-4.147zM900.557 834.458c-22.579 16.896-54.733 12.39-71.629-10.291l-184.73-246.221 119.603 298.906c10.547 26.214-2.253 56.013-28.518 66.611-26.010 10.496-56.115-2.202-66.56-28.621l-166.861-416.87c147.558 7.526 218.982 11.622 310.63 133.683 91.597 122.214 98.253 131.123 98.253 131.123 16.998 22.579 12.442 54.682-10.189 71.68z" />
+<glyph unicode="&#xe972;" glyph-name="box" d="M942.029 870.4h-860.109c-16.998 0-30.72-13.67-30.72-30.72v-122.88h921.6v122.88c0 17.050-13.824 30.72-30.771 30.72zM102.4 122.88c0-39.424 32.205-71.68 71.629-71.68h675.84c39.424 0 71.68 32.307 71.68 71.68v542.72h-819.149v-542.72zM358.4 563.2h307.2v-102.4h-307.2v102.4z" />
+<glyph unicode="&#xe973;" glyph-name="briefcase1" d="M460.8 460.8h102.4v-102.4h460.8c0 0-7.629 228.301-10.24 299.725-2.56 67.891-26.88 109.875-102.4 109.875h-164.25c-25.446 48.026-52.838 99.584-61.286 115.507-16.947 31.898-22.733 38.093-60.365 38.093h-226.97c-37.632 0-43.366-6.195-60.365-38.093-8.448-15.923-35.84-67.482-61.235-115.507h-164.301c-75.571 0-99.584-41.984-102.4-109.875-2.765-67.942-10.189-299.725-10.189-299.725h460.8v102.4zM391.629 823.501c11.776 22.118 15.77 26.419 41.83 26.419h157.030c26.061 0 30.106-4.301 41.779-26.419 4.403-8.192 16.282-30.72 29.44-55.501h-299.52c13.158 24.781 25.037 47.309 29.44 55.501zM563.2 204.8h-102.4v102.4h-435.2c0 0 6.349-92.006 10.189-170.086 1.587-32.41 11.162-85.914 92.16-85.914h768.051c80.998 0 90.368 53.606 92.16 85.914 4.454 80.282 10.24 170.086 10.24 170.086h-435.2v-102.4z" />
+<glyph unicode="&#xe974;" glyph-name="browser" d="M921.6 870.4h-819.2c-56.32 0-102.4-46.080-102.4-102.4v-614.4c0-56.32 46.080-102.4 102.4-102.4h819.2c56.32 0 102.4 46.080 102.4 102.4v614.4c0 56.32-46.080 102.4-102.4 102.4zM230.4 780.8c21.197 0 38.4-17.203 38.4-38.4s-17.203-38.4-38.4-38.4c-21.197 0-38.4 17.203-38.4 38.4s17.203 38.4 38.4 38.4zM89.6 742.4c0 21.197 17.203 38.4 38.4 38.4s38.4-17.203 38.4-38.4c0-21.197-17.203-38.4-38.4-38.4s-38.4 17.203-38.4 38.4zM921.6 153.6h-819.2v460.8h819.2v-460.8zM921.6 716.8h-614.4v51.2h615.373l-0.973-51.2z" />
+<glyph unicode="&#xe975;" glyph-name="brush" d="M141.466 278.374c-77.568-76.186-12.032-154.419-115.046-270.285-46.49-52.378 191.386-36.403 309.197 79.411 50.022 49.203 35.891 120.781-17.715 173.517-53.606 52.634-126.464 66.56-176.435 17.357zM1000.397 939.059c-39.731 39.117-480.205-313.805-611.277-442.675-65.075-64-86.784-98.304-106.701-123.904-8.704-11.213 2.816-14.592 7.885-17.203 25.805-13.21 43.827-25.395 67.123-48.282 23.347-22.886 35.789-40.602 49.101-65.997 2.714-5.018 6.195-16.282 17.51-7.782 26.112 19.61 60.979 41.011 126.054 104.909 131.123 128.819 490.138 561.869 450.304 600.934z" />
+<glyph unicode="&#xe976;" glyph-name="bucket" d="M563.2 921.6c-251.29 0-409.498-81.51-398.848-151.040 3.072-19.917 11.52-99.584 22.221-167.578-123.136-47.821-163.942-125.389-158.464-188.621 6.502-74.803 73.779-154.88 221.594-168.704 84.378-7.885 185.907 38.4 251.699 117.504-6.246 10.598-9.882 23.040-9.882 36.198 0 39.629 32.102 71.68 71.68 71.68 39.629 0 71.68-32.102 71.68-71.68 0-39.014-31.232-70.707-70.093-71.578-78.285-101.018-197.53-161.997-310.477-154.88 2.611-16.589 3.584-48.486 4.915-56.986 4.608-29.645 120.166-115.712 303.974-115.917 183.808 0.205 299.366 86.272 304.026 115.866 4.506 29.542 84.019 584.141 94.822 654.694 10.65 69.53-147.61 151.040-398.848 151.040zM99.482 420.608c-2.816 32.922 23.296 76.698 98.509 109.517 10.803-68.608 22.579-143.206 32.922-208.589-82.125 16.026-127.898 58.829-131.43 99.072zM563.2 664.371c-183.808 0.102-314.214 68.301-314.214 93.798-0.102 25.293 130.406 91.648 314.214 91.546 183.808 0.102 314.317-66.253 314.214-91.546 0-25.498-130.406-93.696-314.214-93.798z" />
+<glyph unicode="&#xe977;" glyph-name="cake" d="M490.701 663.757c99.942 0 132.659 70.707 94.157 145.562-44.595 86.682 97.024 161.536 26.675 161.536-66.611 0-191.283-72.602-214.528-162.97-17.357-67.789 15.155-144.128 93.696-144.128zM757.555 205.466l-22.733 19.61c-24.934 21.504-64 21.402-88.832 0l-22.63-19.558c-31.744-27.341-71.526-41.011-111.309-41.011s-79.565 13.67-111.258 40.96l-22.733 19.661c-24.934 21.402-63.949 21.453-88.781-0.051l-22.733-19.61c-61.082-52.634-151.91-54.067-215.245-5.12v-200.346c0-28.262 22.938-51.2 51.2-51.2h819.2c28.262 0 51.2 22.938 51.2 51.2v200.294c-63.334-48.845-154.163-47.565-215.347 5.171zM512 614.4c-387.789 0-460.8-172.083-460.8-256v-24.013l59.597-51.354c24.883-21.555 63.949-21.35 88.832 0l22.733 19.61c63.334 54.528 158.976 54.579 222.464 0l22.733-19.661c24.781-21.35 63.744-21.504 88.832 0.051l22.63 19.558c63.488 54.63 159.078 54.63 222.515 0.051l22.733-19.61c24.934-21.555 64-21.35 88.832 0l59.699 51.354v24.013c0 83.917-73.011 256-460.8 256z" />
+<glyph unicode="&#xe978;" glyph-name="calculator1" d="M747.52 921.6h-471.142c-39.373 0-71.578-32.205-71.578-71.68v-778.24c0-39.424 32.205-71.68 71.578-71.68h471.142c39.373 0 71.68 32.307 71.68 71.68v778.24c0 39.475-32.307 71.68-71.68 71.68zM358.4 358.4c35.277 0 64-22.886 64-51.2s-28.723-51.2-64-51.2c-35.328 0-64 22.886-64 51.2s28.672 51.2 64 51.2zM294.4 460.8c0 28.314 28.672 51.2 64 51.2 35.277 0 64-22.886 64-51.2s-28.723-51.2-64-51.2c-35.328 0-64 22.886-64 51.2zM358.4 204.8c35.277 0 64-22.886 64-51.2s-28.723-51.2-64-51.2c-35.328 0-64 22.886-64 51.2s28.672 51.2 64 51.2zM512 358.4c35.277 0 64-22.886 64-51.2s-28.723-51.2-64-51.2c-35.328 0-64 22.886-64 51.2s28.672 51.2 64 51.2zM448 460.8c0 28.314 28.672 51.2 64 51.2 35.277 0 64-22.886 64-51.2s-28.723-51.2-64-51.2c-35.328 0-64 22.886-64 51.2zM512 204.8c35.277 0 64-22.886 64-51.2s-28.723-51.2-64-51.2c-35.328 0-64 22.886-64 51.2s28.672 51.2 64 51.2zM665.6 358.4c35.277 0 64-22.886 64-51.2s-28.723-51.2-64-51.2c-35.328 0-64 22.886-64 51.2s28.672 51.2 64 51.2zM601.6 460.8c0 28.314 28.672 51.2 64 51.2 35.277 0 64-22.886 64-51.2s-28.723-51.2-64-51.2c-35.328 0-64 22.886-64 51.2zM665.6 204.8c35.277 0 64-22.886 64-51.2s-28.723-51.2-64-51.2c-35.328 0-64 22.886-64 51.2s28.672 51.2 64 51.2zM256 614.4v153.6h512v-153.6h-512z" />
+<glyph unicode="&#xe979;" glyph-name="calendar1" d="M870.4 819.2h-51.2v-102.4h-153.6v102.4h-307.2v-102.4h-153.6v102.4h-51.2c-56.371 0-102.4-46.080-102.4-102.4v-614.4c0-56.32 46.029-102.4 102.4-102.4h716.8c56.32 0 102.4 46.080 102.4 102.4v614.4c0 56.32-46.080 102.4-102.4 102.4zM870.4 102.4h-716.8v409.6h716.8v-409.6zM332.8 921.6h-102.4v-179.2h102.4v179.2zM793.6 921.6h-102.4v-179.2h102.4v179.2z" />
+<glyph unicode="&#xe97a;" glyph-name="camera1" d="M512 563.2c-84.838 0-153.6-68.813-153.6-153.6s68.762-153.6 153.6-153.6c84.787 0 153.6 68.813 153.6 153.6s-68.813 153.6-153.6 153.6zM921.6 716.8h-122.88c-16.896 0-35.123 13.107-40.397 29.184l-31.795 95.283c-5.376 16.026-23.501 29.133-40.448 29.133h-348.16c-16.896 0-35.123-13.107-40.397-29.082l-31.846-95.334c-5.325-16.077-23.501-29.184-40.397-29.184h-122.88c-56.32 0-102.4-46.080-102.4-102.4v-460.8c0-56.32 46.080-102.4 102.4-102.4h819.2c56.32 0 102.4 46.080 102.4 102.4v460.8c0 56.32-46.080 102.4-102.4 102.4zM512 153.6c-141.414 0-256 114.586-256 256s114.586 256 256 256c141.363 0 256-114.586 256-256s-114.637-256-256-256zM896 552.96c-19.814 0-35.84 16.077-35.84 35.891 0 19.712 16.026 35.84 35.84 35.84s35.84-16.077 35.84-35.84c0-19.814-16.026-35.891-35.84-35.891z" />
+<glyph unicode="&#xe97b;" glyph-name="ccw" d="M35.072 460.8h121.446v10.496c5.53 227.021 190.669 409.395 418.253 409.395 231.168 0 418.509-188.006 418.509-419.891s-187.341-419.789-418.509-419.789c-97.178 0-186.624 33.28-257.69 88.986l71.987 77.005c52.019-38.298 116.224-61.082 185.702-61.082 173.363 0 313.907 141.005 313.907 314.88s-140.544 314.88-313.907 314.88c-169.83 0-308.122-135.322-313.6-304.384v-10.496h136.806l-178.893-199.373-184.013 199.373z" />
+<glyph unicode="&#xe97c;" glyph-name="chat" d="M296.96 348.16v317.44h-194.56c-56.32 0-102.4-46.080-102.4-102.4v-307.2c0-56.32 46.080-102.4 102.4-102.4h51.2v-153.6l153.6 153.6h256c56.32 0 102.4 46.080 102.4 102.4v93.184c-3.277-0.717-6.758-1.075-10.24-1.075l-358.4 0.051zM921.6 921.6h-460.8c-56.32 0-102.4-46.080-102.4-102.4v-409.6h358.4l153.6-153.6v153.6h51.2c56.32 0 102.4 46.029 102.4 102.4v307.2c0 56.32-46.080 102.4-102.4 102.4z" />
+<glyph unicode="&#xe97d;" glyph-name="check" d="M424.653 102.502c-22.272 0-43.366 10.394-56.883 28.314l-182.938 241.715c-23.808 31.386-17.613 76.083 13.824 99.891 31.488 23.91 76.186 17.613 99.994-13.824l120.371-158.925 302.643 485.99c20.838 33.382 64.87 43.622 98.355 22.784 33.434-20.787 43.725-64.819 22.835-98.304l-357.581-573.952c-12.39-20.019-33.843-32.512-57.344-33.587-1.126-0.102-2.15-0.102-3.277-0.102z" />
+<glyph unicode="&#xe97e;" glyph-name="circle-with-cross" d="M512 890.88c-237.517 0-430.080-192.563-430.080-430.080s192.563-430.080 430.080-430.080 430.080 192.563 430.080 430.080c0 237.517-192.563 430.080-430.080 430.080zM757.197 304.077l-88.525-88.525-156.672 156.723-156.723-156.672-88.525 88.525 156.774 156.672-156.723 156.723 88.525 88.474 156.672-156.672 156.723 156.723 88.525-88.525-156.774-156.723 156.723-156.723z" />
+<glyph unicode="&#xe97f;" glyph-name="circle-with-minus" d="M512 890.88c-237.517 0-430.080-192.563-430.080-430.080s192.563-430.080 430.080-430.080 430.080 192.563 430.080 430.080c0 237.517-192.563 430.080-430.080 430.080zM768 409.6h-512v102.4h512v-102.4z" />
+<glyph unicode="&#xe980;" glyph-name="circle-with-plus" d="M512 890.88c-237.517 0-430.080-192.563-430.080-430.080s192.563-430.080 430.080-430.080 430.080 192.563 430.080 430.080c0 237.517-192.563 430.080-430.080 430.080zM768 409.6h-204.8v-204.8h-102.4v204.8h-204.8v102.4h204.8v204.8h102.4v-204.8h204.8v-102.4z" />
+<glyph unicode="&#xe981;" glyph-name="circle" d="M512 952.32c-271.462 0-491.52-220.058-491.52-491.52s220.058-491.52 491.52-491.52c271.411 0 491.52 220.058 491.52 491.571 0 271.411-220.109 491.469-491.52 491.469zM512 71.731c-214.886 0-389.12 174.182-389.12 389.12s174.182 389.069 389.12 389.069c214.886 0 389.171-174.182 389.171-389.12s-174.285-389.069-389.171-389.069z" />
+<glyph unicode="&#xe982;" glyph-name="circular-graph" d="M900.301 492.954h102.4c-3.328 53.709-15.002 105.114-34.202 152.781l-89.907-51.917c11.469-31.898 18.995-65.69 21.709-100.864zM721.971 906.496c-48.896 23.091-101.888 38.758-158.003 44.544v-103.475c37.53-4.966 73.37-15.104 106.701-29.952l51.302 88.883zM831.59 684.954l89.139 51.456c-30.259 44.954-68.096 84.224-111.206 116.992l-51.507-89.19c28.109-22.835 52.787-49.562 73.574-79.258zM512.717 73.165c-214.886 0-389.12 174.182-389.12 389.12 0 197.53 147.302 360.243 337.971 385.331v103.475c-247.45-25.6-440.371-234.65-440.371-488.806 0-271.514 220.058-491.571 491.571-491.571 246.989 0 450.918 182.426 485.683 419.84h-103.475c-33.69-180.582-191.898-317.389-382.259-317.389z" />
+<glyph unicode="&#xe983;" glyph-name="clapperboard" d="M1024 819.2v-716.8c0-28.262-22.886-51.2-51.2-51.2h-921.6c-28.314 0-51.2 22.938-51.2 51.2v716.8c0 28.314 22.886 51.2 51.2 51.2h51.2l153.6-153.6h128l-153.6 153.6h153.6l153.6-153.6h128l-153.6 153.6h153.6l153.6-153.6h128l-153.6 153.6h179.2c28.314 0 51.2-22.938 51.2-51.2z" />
+<glyph unicode="&#xe984;" glyph-name="clipboard1" d="M798.72 870.4l-61.44-153.6h-450.56l-61.44 153.6c-39.475 0-71.68-32.205-71.68-71.68v-778.24c0-39.424 32.205-71.68 71.629-71.68h573.44c39.424 0 71.68 32.307 71.68 71.68v778.24c0.051 39.475-32.256 71.68-71.629 71.68zM696.32 768l46.080 102.4h-111.667l-36.813 102.4h-163.84l-36.864-102.4h-111.616l46.029-102.4h368.691z" />
+<glyph unicode="&#xe985;" glyph-name="clock1" d="M512 952.32c-271.514 0-491.571-220.058-491.571-491.52 0-271.514 220.058-491.571 491.571-491.571 271.411 0 491.52 220.058 491.52 491.571 0 271.462-220.109 491.52-491.52 491.52zM511.949 71.68c-214.886 0-389.12 174.182-389.12 389.12 0 214.886 174.182 389.12 389.12 389.12 214.886 0 389.171-174.182 389.171-389.12 0-214.886-174.285-389.12-389.171-389.12zM563.2 495.104v272.896h-102.4v-319.744l-181.555-104.858 51.2-88.678 210.688 121.702c12.186 7.014 22.067 24.218 22.067 38.298v8.602l217.088 213.299c-10.138 13.875-21.043 27.085-33.126 39.219l-183.962-180.736z" />
+<glyph unicode="&#xe986;" glyph-name="code" d="M292.813 217.6c-12.083 0-24.269 4.25-33.997 12.902l-259.072 230.298 273.459 243.098c21.094 18.688 53.453 16.896 72.243-4.25s16.896-53.504-4.25-72.294l-187.341-166.554 172.954-153.702c21.146-18.79 23.040-51.149 4.25-72.294-10.086-11.418-24.166-17.203-38.246-17.203zM750.797 217.702l273.459 243.098-259.072 230.298c-21.146 18.79-53.504 16.896-72.243-4.25-18.79-21.146-16.896-53.504 4.25-72.294l172.954-153.754-187.341-166.502c-21.146-18.79-23.040-51.149-4.25-72.294 10.086-11.418 24.166-17.203 38.246-17.203 12.083 0 24.269 4.25 33.997 12.902zM511.283 145.152l102.4 614.4c4.659 27.904-14.182 54.272-42.086 58.931-28.006 4.71-54.323-14.182-58.88-42.086l-102.4-614.4c-4.659-27.904 14.182-54.272 42.086-58.931 2.867-0.461 5.632-0.666 8.448-0.666 24.576 0 46.285 17.766 50.432 42.752z" />
+<glyph unicode="&#xe987;" glyph-name="cog1" d="M859.29 460.8c0 53.709 33.075 96 82.79 125.082-9.011 29.901-20.838 58.624-35.43 85.606-55.757-14.592-100.864 7.219-138.803 45.21-37.939 37.888-49.562 82.995-34.97 138.803-26.982 14.592-55.706 26.522-85.606 35.379-29.082-49.664-81.664-82.688-135.27-82.688-53.658 0-106.189 33.024-135.322 82.688-29.952-8.858-58.573-20.787-85.555-35.379 14.592-55.808 3.021-100.915-35.021-138.803-37.888-37.99-82.995-59.802-138.803-45.21-14.592-26.982-26.47-55.706-35.379-85.606 49.664-29.082 82.688-71.373 82.688-125.082 0-53.606-33.024-106.189-82.688-135.322 8.96-29.901 20.787-58.573 35.379-85.606 55.808 14.592 100.915 3.021 138.803-34.918 37.939-37.99 49.613-83.098 35.021-138.803 26.982-14.592 55.654-26.522 85.606-35.482 29.082 49.818 81.664 82.79 135.322 82.79 53.606 0 106.189-33.024 135.322-82.79 29.901 9.011 58.573 20.89 85.606 35.482-14.592 55.706-3.021 100.813 34.97 138.803 37.939 37.888 83.046 59.699 138.803 45.21 14.592 26.982 26.47 55.603 35.43 85.606-49.818 29.133-82.893 71.424-82.893 125.030zM512 273.818c-103.322 0-187.034 83.712-187.034 186.982 0 103.322 83.763 187.085 187.034 187.085 103.322 0 186.982-83.814 186.982-187.085 0-103.322-83.661-186.982-186.982-186.982z" />
+<glyph unicode="&#xe988;" glyph-name="colours" d="M162.765 665.702c-21.658 17.92-54.118 14.848-72.090-6.758l-65.382-78.797c-17.92-21.658-14.899-54.17 6.707-72.038l403.866-334.95-194.918 427.725-78.182 64.819zM359.066 835.43l-93.184-42.445c-25.549-11.674-36.966-42.24-25.344-67.789l217.6-477.44 10.906 469.965-42.086 92.365c-11.776 25.6-42.291 37.018-67.891 25.344zM727.603 824.986c0.666 28.16-21.862 51.712-49.971 52.378l-102.4 2.355c-28.109 0.666-51.661-21.862-52.326-49.971l-12.237-524.442 214.528 418.15 2.406 101.53zM982.579 776.346l-91.085 46.746c-25.037 12.8-56.115 2.816-68.966-22.221l-327.219-637.747c-12.851-25.037-2.867-56.115 22.221-68.966l91.085-46.746c25.037-12.851 56.064-2.867 68.915 22.17l327.219 637.747c12.851 25.139 2.867 56.166-22.17 69.018zM655.309 138.598c-12.902-25.19-43.776-35.123-68.915-22.221-25.19 12.902-35.072 43.725-22.17 68.915s43.725 35.072 68.915 22.17c25.19-12.851 35.072-43.725 22.17-68.864z" />
+<glyph unicode="&#xe989;" glyph-name="compass1" d="M279.245 227.942c0 0 233.882 32.102 333.722 131.891s131.891 333.722 131.891 333.722-233.933-32.102-333.722-131.891-131.891-333.722-131.891-333.722zM461.67 511.232c41.882 41.882 122.112 71.68 190.925 90.214-18.483-68.71-48.384-149.504-90.112-191.078-27.802-27.904-73.011-27.904-100.813 0-27.904 27.802-27.904 72.96 0 100.864zM512.051 952.32c-271.514 0-491.571-220.058-491.571-491.52 0-271.514 220.058-491.571 491.571-491.571 271.411 0 491.52 220.058 491.52 491.571 0 271.462-220.109 491.52-491.52 491.52zM512 71.68c-214.886 0-389.12 174.182-389.12 389.12 0 214.886 174.182 389.12 389.12 389.12 214.886 0 389.171-174.182 389.171-389.12 0-214.886-174.285-389.12-389.171-389.12z" />
+<glyph unicode="&#xe98a;" glyph-name="copy1" d="M563.2 972.8h-409.6c-28.314 0-51.2-22.886-51.2-51.2v-614.4c0-28.262 22.886-51.2 51.2-51.2h256v-102.4h102.4v102.4h-102.349v102.4h102.349v102.4h-102.4v-102.4h-204.8v512h307.2v-204.8h102.4v256c0 28.262-22.886 51.2-51.2 51.2zM409.6 614.4v-51.2h102.4v102.4h-51.2c-28.314 0-51.2-22.886-51.2-51.2zM614.4-51.2h102.4v102.4h-102.4v-102.4zM614.4 563.2h102.4v102.4h-102.4v-102.4zM409.6 0c0-28.262 22.886-51.2 51.2-51.2h51.2v102.4h-102.4v-51.2zM870.4 665.6h-51.2v-102.4h102.4v51.2c0 28.262-22.886 51.2-51.2 51.2zM819.2-51.2h51.2c28.314 0 51.2 22.938 51.2 51.2v51.2h-102.4v-102.4zM819.2 358.4h102.4v102.4h-102.4v-102.4zM819.2 153.6h102.4v102.4h-102.4v-102.4z" />
+<glyph unicode="&#xe98b;" glyph-name="credit-card1" d="M921.6 819.2h-819.2c-56.371 0-102.4-46.080-102.4-102.4v-512c0-56.32 46.029-102.4 102.4-102.4h819.2c56.32 0 102.4 46.080 102.4 102.4v512c0 56.32-46.080 102.4-102.4 102.4zM921.6 204.8h-819.2v307.2h819.2v-307.2zM921.6 665.6h-819.2v51.2h819.2v-51.2zM204.8 404.48v-30.72h30.72v30.72h-30.72zM389.12 343.091v-30.771h61.44v30.771h30.72v30.72h30.72v30.72h-61.44v-30.72h-30.771v-30.72h-30.669zM512 312.32v30.771h-30.771v-30.771h30.771zM358.4 312.32v30.771h-61.44v-30.771h61.44zM389.12 373.811h30.72v30.72h-61.44v-61.389h30.72v30.669zM266.189 343.091h30.771v30.72h30.72v30.72h-61.44v-30.72h-30.72v-30.72h-30.72v-30.771h61.389v30.771z" />
+<glyph unicode="&#xe98c;" glyph-name="credit" d="M563.2 114.944v-114.944h-102.4v109.722c-87.654 5.12-156.979 30.157-217.139 92.006l87.962 89.088c43.981-44.544 103.578-59.392 168.038-59.392 80.128 0 123.136 30.669 123.136 87.142 0 24.73-6.81 45.517-21.504 59.392-13.67 12.851-29.286 19.814-61.542 24.73l-84.070 11.878c-59.597 8.909-103.526 27.699-134.861 58.419-33.178 33.638-49.818 79.155-49.818 138.598 0 110.336 70.758 191.642 189.798 209.92v100.096h102.4v-98.918c70.758-7.424 126.208-31.744 174.848-79.411l-85.965-86.118c-43.981 42.598-96.717 48.486-142.694 48.486-72.294 0-107.469-40.55-107.469-89.088 0-17.818 5.888-36.659 20.531-50.483 13.67-12.902 36.147-23.757 64.512-27.699l82.022-11.878c63.539-8.909 103.578-26.726 132.915-54.426 37.171-35.635 53.76-87.142 53.76-149.504 0-115.2-80.23-187.494-192.461-207.616z" />
+<glyph unicode="&#xe98d;" glyph-name="cross1" d="M734.618 212.531c-24.013-24.013-62.925-24.013-86.886 0l-135.731 155.136-135.731-155.085c-24.013-24.013-62.925-24.013-86.886 0-24.013 24.013-24.013 62.925 0 86.886l141.21 161.28-141.261 161.382c-24.013 24.013-24.013 62.874 0 86.886s62.874 24.013 86.886 0l135.782-155.187 135.731 155.187c24.013 24.013 62.874 24.013 86.886 0s24.013-62.925 0-86.886l-141.21-161.382 141.21-161.28c24.013-24.013 24.013-62.925 0-86.938z" />
+<glyph unicode="&#xe98e;" glyph-name="cup" d="M512 921.6c-219.085 0-355.328-72.192-347.904-130.816l73.83-689.51c2.97-23.552 113.715-101.171 274.074-101.274 160.307 0.102 271.104 77.722 273.971 101.325l73.83 689.51c7.424 58.573-128.717 130.765-347.802 130.765zM512 701.901c-160.358 0.102-274.074 57.19-274.074 78.592-0.051 21.197 113.766 78.387 274.074 78.285 160.307 0.102 274.125-57.088 273.971-78.285 0-21.402-113.664-78.49-273.971-78.592z" />
+<glyph unicode="&#xe98f;" glyph-name="cw" d="M988.928 460.8h-121.446v10.496c-5.53 227.021-190.669 409.395-418.253 409.395-231.168 0-418.509-188.006-418.509-419.891s187.341-419.789 418.509-419.789c97.178 0 186.624 33.28 257.69 88.986l-71.987 77.005c-52.019-38.298-116.224-61.082-185.702-61.082-173.363 0-313.907 141.005-313.907 314.88s140.544 314.88 313.907 314.88c169.83 0 308.122-135.322 313.6-304.384v-10.496h-136.806l178.893-199.373 184.013 199.373z" />
+<glyph unicode="&#xe990;" glyph-name="cycle" d="M282.419 244.531c-115.814 124.518-113.766 319.693 6.554 440.883 49.254 49.613 110.797 79.206 174.797 88.883l-3.533 106.342c-89.856-10.906-176.742-50.995-245.606-120.371-161.229-162.304-163.174-424.397-6.298-590.387l-89.139-89.702 282.112-15.411-0.768 298.701-118.118-118.938zM622.746 856.832l0.768-298.701 118.118 118.886c115.814-124.621 113.766-319.795-6.554-440.883-49.203-49.613-110.797-79.206-174.797-88.883l3.533-106.291c89.856 10.906 176.742 50.995 245.658 120.32 161.178 162.406 163.123 424.499 6.246 590.387l89.139 89.805-282.112 15.36z" />
+<glyph unicode="&#xe991;" glyph-name="database1" d="M856.371 325.581c-43.162-69.786-180.992-120.883-344.371-120.883s-301.21 51.098-344.422 120.883c-9.114 14.848-13.978 6.912-13.978-0.358 0-7.373 0-102.502 0-102.502 0-99.328 160.461-202.24 358.4-202.24s358.4 102.912 358.4 202.189c0 0 0 95.13 0 102.502 0 7.322-4.915 15.258-14.029 0.41zM856.934 587.52c-42.496-61.696-180.838-107.008-344.934-107.008s-302.49 45.312-344.986 107.008c-8.755 12.698-13.414 5.786-13.414 0.102 0-5.786 0-120.678 0-120.678 0-90.214 160.461-163.277 358.4-163.277s358.4 73.114 358.4 163.277c0 0 0 114.893 0 120.678 0 5.683-4.71 12.595-13.466-0.102zM512 921.6c-197.939 0-358.4-60.416-358.4-134.81v-64.512c0-78.899 160.461-142.899 358.4-142.899s358.4 64 358.4 142.899v64.512c0 74.394-160.461 134.81-358.4 134.81z" />
+<glyph unicode="&#xe992;" glyph-name="dial-pad" d="M307.2 972.8h-102.4c-28.262 0-51.2-22.938-51.2-51.2v-102.4c0-28.262 22.938-51.2 51.2-51.2h102.4c28.262 0 51.2 22.938 51.2 51.2v102.4c0 28.262-22.938 51.2-51.2 51.2zM563.2 972.8h-102.4c-28.262 0-51.2-22.938-51.2-51.2v-102.4c0-28.262 22.938-51.2 51.2-51.2h102.4c28.262 0 51.2 22.938 51.2 51.2v102.4c0 28.262-22.938 51.2-51.2 51.2zM819.2 972.8h-102.4c-28.262 0-51.2-22.938-51.2-51.2v-102.4c0-28.262 22.938-51.2 51.2-51.2h102.4c28.262 0 51.2 22.938 51.2 51.2v102.4c0 28.262-22.938 51.2-51.2 51.2zM307.2 716.8h-102.4c-28.262 0-51.2-22.938-51.2-51.2v-102.4c0-28.262 22.938-51.2 51.2-51.2h102.4c28.262 0 51.2 22.938 51.2 51.2v102.4c0 28.262-22.938 51.2-51.2 51.2zM563.2 716.8h-102.4c-28.262 0-51.2-22.938-51.2-51.2v-102.4c0-28.262 22.938-51.2 51.2-51.2h102.4c28.262 0 51.2 22.938 51.2 51.2v102.4c0 28.262-22.938 51.2-51.2 51.2zM819.2 716.8h-102.4c-28.262 0-51.2-22.938-51.2-51.2v-102.4c0-28.262 22.938-51.2 51.2-51.2h102.4c28.262 0 51.2 22.938 51.2 51.2v102.4c0 28.262-22.938 51.2-51.2 51.2zM307.2 460.8h-102.4c-28.262 0-51.2-22.938-51.2-51.2v-102.4c0-28.262 22.938-51.2 51.2-51.2h102.4c28.262 0 51.2 22.938 51.2 51.2v102.4c0 28.262-22.938 51.2-51.2 51.2zM563.2 460.8h-102.4c-28.262 0-51.2-22.938-51.2-51.2v-102.4c0-28.262 22.938-51.2 51.2-51.2h102.4c28.262 0 51.2 22.938 51.2 51.2v102.4c0 28.262-22.938 51.2-51.2 51.2zM563.2 153.6h-102.4c-28.262 0-51.2-22.938-51.2-51.2v-102.4c0-28.262 22.938-51.2 51.2-51.2h102.4c28.262 0 51.2 22.938 51.2 51.2v102.4c0 28.262-22.938 51.2-51.2 51.2zM819.2 460.8h-102.4c-28.262 0-51.2-22.938-51.2-51.2v-102.4c0-28.262 22.938-51.2 51.2-51.2h102.4c28.262 0 51.2 22.938 51.2 51.2v102.4c0 28.262-22.938 51.2-51.2 51.2z" />
+<glyph unicode="&#xe993;" glyph-name="direction" d="M924.672 873.421c-30.003 30.003-58.573 1.69-155.699-45.005-259.84-124.877-712.653-378.675-712.653-378.675l389.069-55.501 55.552-389.069c0 0 253.85 452.762 378.675 712.499 46.694 97.178 75.008 125.747 45.056 155.75zM831.283 773.325l-282.573-524.646-28.723 238.336 311.296 286.31z" />
+<glyph unicode="&#xe994;" glyph-name="document" d="M819.2 921.6h-614.4c-28.314 0-51.2-22.886-51.2-51.2v-819.2c0-28.262 22.886-51.2 51.2-51.2h614.4c28.314 0 51.2 22.938 51.2 51.2v819.2c0 28.262-22.886 51.2-51.2 51.2zM768 102.4h-512v716.8h512v-716.8z" />
+<glyph unicode="&#xe995;" glyph-name="documents" d="M993.178 593.152l-381.133 102.195-66.714 248.883c-5.581 20.787-27.904 32.87-49.818 27.085l-464.691-124.518c-21.914-5.837-35.123-27.546-29.542-48.333l165.376-617.011c5.581-20.787 27.853-32.922 49.715-26.982l184.986 49.51-25.19-94.106c-5.581-20.787 7.629-42.496 29.542-48.282l415.232-111.309c21.914-5.888 44.134 6.195 49.766 27.085l152.064 567.501c5.53 20.787-7.68 42.496-29.594 48.282zM83.61 786.893l400.896 107.315 148.378-553.882-400.896-107.315-148.378 553.882zM802.714 27.494l-348.877 95.386 27.443 102.502 199.731 53.606c21.914 5.786 35.226 27.494 29.594 48.282l-77.21 288.102 304.486-83.507-135.168-504.371z" />
+<glyph unicode="&#xe996;" glyph-name="drink" d="M897.946 837.683c20.173 27.904 23.654 83.917 23.654 83.917h-819.2c0 0 3.482-56.013 23.654-83.917l334.746-428.083v-307.2h-102.4c-102.4 0-102.4-102.4-102.4-102.4h512c0 0 0 102.4-102.4 102.4h-102.4v307.2l334.746 428.083zM481.28 665.6c0 45.312 36.659 81.92 81.92 81.92s81.92-36.608 81.92-81.92c0-45.21-36.659-81.92-81.92-81.92s-81.92 36.71-81.92 81.92z" />
+<glyph unicode="&#xe997;" glyph-name="drive1" d="M975.821 414.822l-162.355 405.862c-11.981 30.054-41.062 49.715-73.421 49.715h-456.090c-32.358 0-61.44-19.661-73.421-49.715l-162.355-405.862c-14.746-36.915-19.098-77.158-12.595-116.326l30.208-181.197c6.349-38.144 39.322-66.099 77.978-66.099h736.41c38.656 0 71.629 27.955 77.978 66.099l30.208 181.197c6.605 39.168 2.253 79.411-12.544 116.326zM868.301 192.256c-3.686-22.323-22.989-38.656-45.619-38.656h-621.363c-22.63 0-41.933 16.333-45.619 38.656l-18.688 112.282c-4.762 28.211 16.998 53.862 45.619 53.862h658.79c28.57 0 50.33-25.651 45.619-53.862l-18.739-112.282z" />
+<glyph unicode="&#xe998;" glyph-name="drop" d="M522.394 944.077c-1.382 11.008-19.456 11.008-20.787 0-45.21-363.878-276.378-438.886-276.378-691.814 0-156.314 131.277-282.982 286.771-282.982 155.443 0 286.72 126.72 286.72 282.982 0 252.928-231.117 327.936-276.326 691.814zM478.72 541.798c-3.021-11.213-6.298-22.733-9.677-34.714-20.531-72.909-43.827-155.597-43.827-251.187 0-51.814-30.618-70.195-59.187-70.195-32.717 0-59.187 26.778-59.187 59.699 0 112.998 54.374 186.829 102.4 251.904 15.104 20.378 29.286 39.68 40.806 58.88 5.274 8.806 19.456 8.397 25.907-0.307 3.021-4.096 4.045-9.318 2.765-14.080z" />
+<glyph unicode="&#xe999;" glyph-name="edit" d="M899.123 847.923c-73.83 73.882-129.28 62.822-129.28 62.822l-656.691-656.64-51.712-243.814 243.866 51.712 656.691 656.538c-0.051 0 11.059 55.45-62.874 129.382zM290.816 91.29l-83.149-17.92c-7.987 15.002-17.664 30.003-35.328 47.718-17.715 17.715-32.717 27.29-47.718 35.379l17.92 83.098 24.064 24.013c0 0 45.21-0.922 96.307-52.019 51.046-50.995 52.019-96.307 52.019-96.307l-24.115-23.962z" />
+<glyph unicode="&#xe99a;" glyph-name="email" d="M747.93 349.594c0-43.008 12.237-60.16 44.237-60.16 71.322 0 116.736 90.88 116.736 242.022 0 231.014-168.346 341.606-378.522 341.606-216.218 0-412.877-144.998-412.877-419.021 0-261.734 172.032-404.275 436.224-404.275 89.702 0 149.914 9.83 242.022 40.55l19.763-82.278c-90.931-29.542-188.109-38.093-263.014-38.093-346.522 0-532.122 190.464-532.122 484.147 0 296.141 215.091 497.664 511.232 497.664 308.429 0 471.808-184.32 471.808-410.419 0-191.693-60.16-337.92-249.395-337.92-86.067 0-142.541 34.406-149.914 110.643-22.118-84.787-81.101-110.643-161.024-110.643-106.906 0-196.608 82.381-196.608 248.218 0 167.117 78.694 270.336 220.006 270.336 74.957 0 121.651-29.491 142.438-76.186l35.686 65.126h103.219v-361.318h0.102zM596.838 511.795c0 67.533-50.432 95.846-92.211 95.846-45.466 0-95.795-36.813-95.795-144.998 0-86.016 38.093-133.939 95.795-133.939 40.55 0 92.211 25.805 92.211 97.075v86.016z" />
+<glyph unicode="&#xe99b;" glyph-name="emoji-happy" d="M512 952.32c-271.462 0-491.52-220.058-491.52-491.52s220.058-491.52 491.52-491.52c271.411 0 491.52 220.058 491.52 491.571 0 271.411-220.109 491.469-491.52 491.469zM512 71.731c-214.886 0-389.12 174.182-389.12 389.12s174.182 389.069 389.12 389.069c214.886 0 389.171-174.182 389.171-389.12s-174.285-389.069-389.171-389.069zM384.051 473.6c42.394 0 76.749 40.090 76.749 89.6s-34.406 89.6-76.8 89.6-76.8-40.090-76.8-89.6 34.406-89.6 76.851-89.6zM640 473.6c42.445 0 76.8 40.090 76.8 89.6s-34.406 89.6-76.8 89.6-76.8-40.141-76.8-89.6 34.406-89.6 76.8-89.6zM734.259 392.397c-18.586 9.523-41.728 2.202-51.61-16.384-1.741-3.379-44.493-81.562-170.598-81.562-125.491 0-168.499 77.466-170.65 81.51-9.626 18.688-32.358 26.317-51.405 16.845-18.944-9.523-26.624-32.563-17.152-51.558 2.56-5.069 63.898-123.597 239.206-123.597 175.36 0 236.595 118.579 239.104 123.648 9.421 18.79 1.843 41.472-16.896 51.098z" />
+<glyph unicode="&#xe99c;" glyph-name="emoji-neutral" d="M512 952.32c-271.462 0-491.52-220.058-491.52-491.52s220.058-491.52 491.52-491.52c271.411 0 491.52 220.058 491.52 491.571 0 271.411-220.109 491.469-491.52 491.469zM512 71.731c-214.886 0-389.12 174.182-389.12 389.12 0 214.886 174.182 389.12 389.12 389.12 214.886 0 389.12-174.182 389.12-389.12s-174.234-389.12-389.12-389.12zM640 652.749c-42.394 0-76.8-40.090-76.8-89.549s34.406-89.6 76.8-89.6c42.445 0 76.8 40.090 76.8 89.6s-34.355 89.549-76.8 89.549zM384.051 473.6c42.394 0 76.749 40.090 76.749 89.6s-34.406 89.6-76.8 89.6c-42.394 0-76.8-40.090-76.8-89.6s34.406-89.6 76.851-89.6zM665.6 345.6h-307.2c-21.197 0-38.4-17.203-38.4-38.4s17.203-38.4 38.4-38.4h307.2c21.197 0 38.4 17.203 38.4 38.4 0 21.248-17.152 38.4-38.4 38.4z" />
+<glyph unicode="&#xe99d;" glyph-name="emoji-sad" d="M512.051 952.32c-271.514 0-491.571-220.058-491.571-491.52 0-271.514 220.058-491.571 491.571-491.571 271.411 0 491.52 220.058 491.52 491.571-0.051 271.462-220.16 491.52-491.52 491.52zM512 71.731c-214.886 0-389.12 174.182-389.12 389.12 0 214.886 174.182 389.12 389.12 389.12 214.886 0 389.12-174.182 389.12-389.12s-174.234-389.12-389.12-389.12zM640.051 473.6c42.394 0 76.8 40.090 76.8 89.6s-34.406 89.6-76.8 89.6c-42.394 0-76.8-40.090-76.8-89.6s34.355-89.6 76.8-89.6zM384.051 473.6c42.394 0 76.8 40.090 76.8 89.6s-34.406 89.6-76.8 89.6c-42.394 0-76.8-40.090-76.8-89.6s34.355-89.6 76.8-89.6zM512.102 396.8c-175.309 0-236.646-118.528-239.206-123.597-9.523-18.995-1.792-42.035 17.152-51.558 5.53-2.714 11.366-4.045 17.152-4.045 14.080 0 27.648 7.731 34.406 21.197 0.41 0.87 42.086 81.203 170.496 81.203 126.106 0 168.858-78.182 170.394-81.152 9.421-18.944 32.512-26.778 51.507-17.203 18.995 9.421 26.675 32.563 17.203 51.507-2.509 5.069-63.795 123.648-239.104 123.648z" />
+<glyph unicode="&#xe99e;" glyph-name="erase" d="M921.6 819.2h-489.165c-22.528 0-54.835-12.083-71.782-26.88l-347.955-304.538c-16.947-14.797-16.947-39.117 0-53.914l347.955-304.486c16.947-14.797 49.254-26.982 71.782-26.982h489.165c56.32 0 102.4 46.080 102.4 102.4v512c0 56.32-46.080 102.4-102.4 102.4zM777.779 256l-130.918 130.918-130.867-130.918-73.882 73.882 130.867 130.918-130.867 130.918 73.882 73.882 130.918-130.816 130.816 130.816 73.933-73.882-130.867-130.918 130.918-130.816-73.933-73.984z" />
+<glyph unicode="&#xe99f;" glyph-name="eraser" d="M870.298 758.784l-161.485 124.16c-44.646 34.355-109.312 25.907-143.718-18.688l-430.080-557.926c-34.355-44.595-25.958-109.158 18.688-143.514l161.434-124.16c44.646-34.355 109.312-25.907 143.718 18.688l430.131 557.926c34.355 44.595 25.958 109.158-18.688 143.514zM437.658 129.69l-27.494-34.867c-7.782-10.086-19.712-15.872-32.717-15.872-6.349 0-15.821 1.485-24.832 8.397l-161.434 124.16c-8.602 6.605-14.080 16.23-15.514 27.136s1.434 21.606 8.038 30.157l27.494 34.867c7.782 10.086 19.712 15.923 32.768 15.923 6.349 0 15.821-1.485 24.832-8.397l161.485-124.16c8.602-6.605 14.080-16.23 15.514-27.136 1.331-10.906-1.536-21.606-8.141-30.208z" />
+<glyph unicode="&#xe9a0;" glyph-name="export" d="M768 204.8h-665.6v460.8h132.864c0 0 35.277 45.875 111.104 102.4h-295.168c-28.314 0-51.2-22.989-51.2-51.2v-563.2c0-28.314 22.886-51.2 51.2-51.2h768c28.314 0 51.2 22.886 51.2 51.2v191.795l-102.4-84.224v-56.371zM684.083 560.64v-181.811l339.917 266.291-339.917 255.949v-160.307c-412.723 0-412.723-407.962-412.723-407.962 116.838 191.898 188.723 227.84 412.723 227.84z" />
+<glyph unicode="&#xe9a1;" glyph-name="eye1" d="M512 747.52c-335.923 0-512-247.398-512-286.72 0-39.219 176.077-286.72 512-286.72 335.872 0 512 247.501 512 286.72 0 39.322-176.128 286.72-512 286.72zM512 240.282c-125.696 0-227.584 98.714-227.584 220.518s101.888 220.621 227.584 220.621c125.696 0 227.533-98.816 227.533-220.621s-101.837-220.518-227.533-220.518zM512 460.8c-20.838 22.886 33.946 110.285 0 110.285-62.874 0-113.818-49.408-113.818-110.285s50.944-110.285 113.818-110.285c62.822 0 113.818 49.408 113.818 110.285 0 28.006-96.102-19.405-113.818 0z" />
+<glyph unicode="&#xe9a2;" glyph-name="feather" d="M217.805-29.030c15.718 50.278 39.424 121.037 71.219 223.334 138.598 21.965 195.942-17.459 283.955 139.725-71.424-21.862-157.542 40.55-152.934 67.635 4.659 27.034 200.346-19.507 328.499 162.458-161.536-35.635-213.197 42.803-192.358 54.63 48.077 27.341 190.771 11.366 266.854 85.453 39.219 38.144 57.6 130.867 41.626 163.942-19.149 39.987-135.987 99.635-200.397 94.003-64.41-5.581-165.427-245.248-195.43-243.405-29.901 1.894-35.994 107.418 16.333 205.466-55.142-24.422-156.211-100.301-187.904-165.171-59.034-120.678 5.53-397.619-15.155-407.45-20.736-9.882-90.419 127.027-111.206 189.133-28.416-95.181-29.082-190.515 53.914-317.133-31.283-83.098-48.384-178.739-50.995-227.379-1.229-38.861 37.069-47.206 43.981-25.242z" />
+<glyph unicode="&#xe9a3;" glyph-name="flag1" d="M969.011 686.899c-478.157-694.682-314.47 13.312-718.694-325.478l91.904-361.421h-103.373l-187.648 737.792 94.72 33.997c453.069 331.315 216.474-297.984 800.614-64.205 18.637 7.526 33.536-4.608 22.477-20.685z" />
+<glyph unicode="&#xe9a4;" glyph-name="flash" d="M348.314 0.102c-9.933 6.502 161.434 366.592 155.546 382.413-5.939 15.821-187.648 73.523-196.506 101.325-8.909 27.802 358.758 445.798 368.435 437.709 9.626-8.090-160.205-370.586-155.597-382.413 4.659-11.776 190.874-71.885 196.506-101.325 5.683-29.44-358.502-444.211-368.384-437.709z" />
+<glyph unicode="&#xe9a5;" glyph-name="flashlight" d="M876.288 825.139c-85.811 85.811-193.485 117.146-227.789 82.842l-138.035-138.035c-20.941-20.992-39.219-91.085-30.822-161.997l-417.843-417.843c-24.781-24.781-4.71-84.992 44.851-134.605s109.875-69.581 134.605-44.902l417.843 417.894c70.963-8.397 141.056 9.882 161.997 30.771l138.035 138.086c34.304 34.304 2.97 142.029-82.842 227.789zM416.819 407.603c-19.098 19.046-12.851 56.115 13.773 82.79 26.675 26.675 63.795 32.922 82.842 13.824 19.046-18.995 12.851-56.166-13.824-82.79-26.675-26.726-63.744-32.922-82.79-13.824zM762.419 711.27c-66.458 66.406-83.098 154.112-77.21 160 5.888 5.939 90.112-14.182 156.621-80.64 66.458-66.458 86.426-150.835 80.64-156.621-5.734-5.734-93.645 10.752-160.051 77.261z" />
+<glyph unicode="&#xe9a6;" glyph-name="flat-brush" d="M94.413 210.483c25.498-19.251 81.613 60.314 99.43 46.848s-41.984-90.214-27.034-101.478c14.95-11.264 77.466 63.437 94.822 50.381 17.306-13.056-41.114-90.829-22.374-105.011 18.79-14.182 79.974 61.542 94.822 50.33s-39.578-92.006-22.374-104.96c17.203-13.005 75.827 64.666 90.112 53.862 14.336-10.803-43.213-89.242-17.715-108.493 25.498-19.2 274.944 458.957 274.944 458.957l-198.451 150.477c0 0-391.68-371.712-366.182-390.912zM666.778 930.253l-172.134-263.987 210.995-159.181 225.075 217.395c-26.982 76.954-176.128 196.762-263.936 205.773z" />
+<glyph unicode="&#xe9a7;" glyph-name="folder-images" d="M942.336 829.491c-5.734 22.528-33.587 40.909-61.952 40.909h-736.768c-28.416 0-56.269-18.381-61.952-40.909l-10.291-61.491h881.203l-10.24 61.491zM993.894 716.8h-963.84c-17.51 0-31.181-15.053-29.542-32.512l47.258-597.453c1.946-20.173 18.944-35.635 39.219-35.635h849.971c20.326 0 37.274 15.462 39.219 35.635l47.258 597.453c1.69 17.459-12.032 32.512-29.542 32.512zM636.826 544c26.522 0 48.026-21.504 48.026-48.026s-21.504-48.026-48.026-48.026-48.026 21.555-48.026 48.077c0 26.47 21.504 47.974 48.026 47.974zM281.6 256l127.283 292.557 144.742-234.291 124.109 61.645 64.666-119.91h-460.8z" />
+<glyph unicode="&#xe9a8;" glyph-name="folder-music" d="M942.336 829.491c-5.734 22.528-33.587 40.909-61.952 40.909h-736.768c-28.416 0-56.269-18.381-61.952-40.909l-10.291-61.491h881.203l-10.24 61.491zM993.894 716.8h-963.84c-17.51 0-31.181-15.053-29.542-32.512l47.258-597.453c1.946-20.173 18.944-35.635 39.219-35.635h849.971c20.326 0 37.274 15.462 39.219 35.635l47.258 597.453c1.69 17.459-12.032 32.512-29.542 32.512zM611.43 331.725c-6.554-13.568-13.21-14.285-10.342 0 7.475 36.915 2.406 116.173-53.402 124.979v-168.653c0-34.509-15.923-64.614-58.163-78.234-41.062-13.107-86.989 0.563-97.69 30.003-10.752 29.491 13.363 65.331 53.862 80.077 22.63 8.243 48.845 10.394 66.509 3.584v239.718h35.533c-0.051-83.61 144.282-65.28 63.693-231.475z" />
+<glyph unicode="&#xe9a9;" glyph-name="folder-video" d="M942.336 829.491c-5.734 22.528-33.587 40.909-61.952 40.909h-736.768c-28.416 0-56.269-18.381-61.952-40.909l-10.291-61.491h881.203l-10.24 61.491zM993.894 716.8h-963.84c-17.51 0-31.181-15.053-29.542-32.512l47.258-597.453c1.946-20.173 18.944-35.635 39.219-35.635h849.971c20.326 0 37.274 15.462 39.219 35.635l47.258 597.453c1.69 17.459-12.032 32.512-29.542 32.512zM409.6 256v256l224.41-128-224.41-128z" />
+<glyph unicode="&#xe9aa;" glyph-name="folder1" d="M942.336 727.091c-5.683 22.528-33.536 40.909-61.952 40.909h-348.877c-28.365 0-68.096 16.282-88.166 36.198l-30.515 30.106c-20.070 19.917-59.75 36.096-88.115 36.096h-166.656c-28.416 0-54.221-22.886-57.344-50.893l-14.95-153.907h866.867l-10.291 61.491zM993.894 614.4h-963.789c-17.51 0-31.232-15.053-29.542-32.512l47.258-495.053c1.894-20.173 18.893-35.635 39.219-35.635h849.92c20.326 0 37.274 15.462 39.219 35.635l47.258 495.053c1.69 17.459-12.032 32.512-29.542 32.512z" />
+<glyph unicode="&#xe9ab;" glyph-name="forward1" d="M614.4 364.851v-223.078l358.4 342.528-358.4 336.486v-203.93c-449.28 0-563.2-498.278-563.2-498.278 127.181 224.666 319.334 246.272 563.2 246.272z" />
+<glyph unicode="&#xe9ac;" glyph-name="funnel" d="M512 921.6c-251.29 0-409.6-77.414-409.6-153.651v-102.4c0-47.002 307.2-307.2 307.2-307.2v-307.2c-0.051-35.021 51.2-51.2 102.4-51.2s102.451 16.179 102.4 51.2v307.2c0 0 307.2 260.198 307.2 307.2v102.4c0 76.237-158.31 153.651-409.6 153.651zM512 659.302c-183.859 0.051-314.266 68.25-314.266 93.747-0.102 25.344 130.458 93.747 314.266 93.645 183.808 0.102 314.368-68.301 314.266-93.594 0-25.549-130.406-93.747-314.266-93.798z" />
+<glyph unicode="&#xe9ad;" glyph-name="game-controller" d="M995.533 493.517c-45.158 252.211-146.125 326.605-199.834 326.605-83.814 0-105.318-62.31-283.699-64.41-178.381 2.099-199.885 64.41-283.699 64.41-53.709 0-154.726-74.394-199.885-326.605-25.754-143.974-53.709-358.912 12.902-384.717 82.893-32.102 111.002 48.179 202.035 116.019 92.416 68.762 136.755 84.941 268.646 84.941s176.23-16.179 268.646-84.941c91.034-67.789 119.142-148.122 202.035-116.019 66.611 25.805 38.656 240.691 12.851 384.717zM307.2 460.8c-56.576 0-102.4 45.875-102.4 102.4 0 56.576 45.824 102.4 102.4 102.4s102.4-45.824 102.4-102.4c0-56.525-45.875-102.4-102.4-102.4zM665.6 460.8c-28.314 0-51.2 22.886-51.2 51.2s22.886 51.2 51.2 51.2c28.314 0 51.2-22.886 51.2-51.2s-22.886-51.2-51.2-51.2zM768 563.2c-28.314 0-51.2 22.886-51.2 51.2s22.886 51.2 51.2 51.2c28.314 0 51.2-22.886 51.2-51.2s-22.886-51.2-51.2-51.2z" />
+<glyph unicode="&#xe9ae;" glyph-name="gauge" d="M416.102 276.48c-35.277-61.286-11.52-111.616 37.478-139.878 48.947-28.314 104.499-23.808 139.878 37.478 35.277 61.184 258.406 607.488 239.002 618.701s-381.030-455.066-416.358-516.301zM512 665.6c22.426 0 44.237-1.894 65.587-5.581 22.426 28.109 47.514 59.085 71.936 88.474-43.622 12.595-89.702 19.507-137.523 19.507-287.078 0-512-242.125-512-551.219 0-18.995 0.819-37.99 2.509-56.474 2.509-28.211 27.648-48.896 55.501-46.49 28.211 2.611 48.998 27.392 46.49 55.603-1.382 15.462-2.099 31.488-2.099 47.36 0 251.699 179.917 448.819 409.6 448.819zM881.613 601.6c-14.285-38.4-29.389-77.517-42.701-111.309 51.968-75.264 82.688-169.677 82.688-273.51 0-16.179-0.768-32.512-2.202-48.282-2.56-28.211 18.176-53.094 46.336-55.706 1.536-0.102 3.123-0.205 4.71-0.205 26.163 0 48.538 20.019 50.944 46.592 1.69 18.944 2.611 38.298 2.611 57.6 0 151.245-53.914 286.208-142.387 384.819z" />
+<glyph unicode="&#xe9af;" glyph-name="globe" d="M512 952.32c-271.104 0-491.571-220.518-491.571-491.52s220.467-491.52 491.571-491.52c271.002 0 491.52 220.518 491.52 491.52s-220.518 491.52-491.52 491.52zM931.226 460.8c0-95.898-32.563-184.32-86.835-254.976-15.36 11.981-31.693 44.39-16.333 77.978 15.514 33.792 19.558 112.026 15.974 142.49-3.379 30.413-19.2 103.68-62.157 104.397-42.906 0.614-72.346 14.797-97.843 65.69-52.89 105.882 99.277 126.208 46.387 184.781-14.797 16.486-91.29-67.686-102.502 44.493-0.717 8.038 6.912 20.070 17.203 32.563 166.093-55.808 286.106-212.838 286.106-397.414zM454.4 875.878c-10.035-19.558-36.506-27.494-52.582-42.189-35.021-31.693-50.074-27.29-68.915-57.702-18.995-30.413-80.23-74.189-80.23-96.205s30.925-47.923 46.387-42.906c15.462 5.12 56.269 4.813 80.23-3.584 24.013-8.499 200.397-16.998 144.179-166.093-17.818-47.411-95.898-39.424-116.685-117.914-3.123-11.52-13.926-60.723-14.592-76.8-1.28-24.883 17.613-118.682-6.4-118.682-24.115 0-88.986 83.917-88.986 99.123s-16.794 68.506-16.794 114.176c0 45.619-77.722 44.902-77.722 105.574 0 54.682 42.138 81.92 32.666 108.186-9.267 26.112-83.302 26.982-114.176 30.208 53.914 139.827 180.736 243.61 333.619 264.806zM380.109 62.976c25.19 13.312 27.75 30.515 50.586 31.386 26.112 1.178 47.36 10.189 76.8 16.691 26.112 5.683 72.858 32.205 113.971 35.584 34.714 2.816 103.168-1.792 121.6-35.277-66.304-44.083-145.818-69.786-231.117-69.786-46.029 0-90.368 7.629-131.84 21.402z" />
+<glyph unicode="&#xe9b0;" glyph-name="graduation-cap" d="M169.062 346.214c23.757-96.205 53.965-138.291 154.726-182.374 100.813-44.032 148.685-92.16 188.211-92.16 39.475 0 84.378 42.086 185.139 86.221 100.813 44.083 73.882 57.498 97.638 153.702l-282.778-137.523-342.938 172.134zM998.963 597.197l-426.24 238.694c-33.382 18.688-88.064 18.688-121.446 0l-426.291-238.694c-33.382-18.688-33.382-49.306 0-67.994l426.24-238.694c33.382-18.688 88.064-18.688 121.446 0l275.558 154.317-298.803 69.99c-11.52-2.816-24.166-4.403-37.427-4.403-53.862 0-97.485 25.907-97.485 57.907 0 32.102 43.674 58.010 97.485 58.010 41.779 0 77.312-15.718 91.136-37.581l316.518-103.885 79.309 44.39c33.331 18.637 33.331 49.254 0 67.942zM868.71 144.896c-3.328-19.712 65.69-52.122 72.243 5.478 29.645 259.686-21.299 334.387-21.299 334.387l-71.424-39.987c0 0.051 60.57-57.6 20.48-299.878z" />
+<glyph unicode="&#xe9b1;" glyph-name="grid" d="M409.6 768h-153.6c-28.314 0-51.2-22.886-51.2-51.2v-153.6c0-28.262 22.886-51.2 51.2-51.2h153.6c28.314 0 51.2 22.938 51.2 51.2v153.6c0 28.262-22.886 51.2-51.2 51.2zM768 768h-153.6c-28.314 0-51.2-22.886-51.2-51.2v-153.6c0-28.262 22.886-51.2 51.2-51.2h153.6c28.314 0 51.2 22.938 51.2 51.2v153.6c0 28.262-22.886 51.2-51.2 51.2zM409.6 409.6h-153.6c-28.314 0-51.2-22.886-51.2-51.2v-153.6c0-28.262 22.886-51.2 51.2-51.2h153.6c28.314 0 51.2 22.938 51.2 51.2v153.6c0 28.262-22.886 51.2-51.2 51.2zM768 409.6h-153.6c-28.314 0-51.2-22.886-51.2-51.2v-153.6c0-28.262 22.886-51.2 51.2-51.2h153.6c28.314 0 51.2 22.938 51.2 51.2v153.6c0 28.262-22.886 51.2-51.2 51.2z" />
+<glyph unicode="&#xe9b2;" glyph-name="hair-cross" d="M512 952.32c-271.514 0-491.571-220.058-491.571-491.52 0-271.514 220.058-491.571 491.571-491.571 271.411 0 491.52 220.058 491.52 491.571 0 271.462-220.109 491.52-491.52 491.52zM563.2 75.52v231.68h-102.4v-231.68c-173.875 22.835-311.296 160.205-334.182 334.080h231.782v102.4h-231.782c22.886 173.875 160.307 311.245 334.182 334.080v-231.68h102.4v231.68c173.773-22.886 311.194-160.256 334.080-334.080h-231.68v-102.4h231.68c-22.886-173.773-160.307-311.194-334.080-334.080z" />
+<glyph unicode="&#xe9b3;" glyph-name="hand" d="M917.709 86.272c-2.918-8.909-9.882-18.79-21.299-22.118-8.243-2.406-280.986-81.408-289.382-83.61-24.013-6.4-40.704-1.69-51.661 7.987-16.691 14.694-209.562 145.92-452.864 158.31-26.010 1.28-13.261 99.891 61.082 99.891 50.944 0 199.885-37.018 217.856-18.995 13.875 13.926 20.173 96.205-37.734 239.77v0l-116.48 288.614c-11.059 27.392 2.253 58.522 29.594 69.581 27.392 11.059 58.624-2.202 69.581-29.594 0 0 91.699-227.226 101.683-251.853 9.882-24.576 22.067-33.894 35.328-28.774 11.827 4.506 14.285 12.39 7.117 36.301l-104.755 308.634c-9.523 27.955 5.427 58.266 33.382 67.789 28.006 9.574 58.419-5.427 67.84-33.382l99.635-293.478c8.806-25.805 18.125-39.322 32.87-33.075 8.858 3.738 8.243 17.306 5.888 29.133l-69.939 280.115c-7.168 28.723 10.291 57.702 38.963 64.87 28.672 7.117 57.6-10.24 64.819-38.963l64.512-258.15c9.421-37.939 18.074-51.61 33.075-47.872 15.309 3.738 14.592 16.333 12.493 26.726-4.864 24.32-44.646 221.594-44.646 221.594-5.274 26.368 11.776 51.968 38.093 57.242 26.266 5.274 51.917-11.776 57.139-38.042l48.538-241.203 0.051-0.051c0 0 0 0 0-0.051l29.082-144.64c6.349-27.29 13.619-52.992 23.040-78.182 55.552-147.917 26.573-284.877 17.101-314.522z" />
+<glyph unicode="&#xe9b4;" glyph-name="heart-outlined" d="M880.128 760.013c-85.606 78.592-224.41 78.592-310.016 0l-58.112-53.299-58.163 53.299c-85.606 78.592-224.358 78.592-309.965 0-96.307-88.371-96.307-231.373 0-319.744l368.128-337.869 368.128 337.869c96.256 88.371 96.256 231.424 0 319.744zM825.549 492.8l-313.549-292.608-313.6 292.608c-31.59 29.030-43.827 66.918-43.827 107.213s7.066 73.37 38.707 102.349c27.904 25.651 65.434 39.782 105.626 39.782 40.141 0 77.67-24.371 105.574-50.074l107.52-93.44 107.469 93.491c27.955 25.702 65.434 50.074 105.626 50.074s77.722-14.131 105.626-39.782c31.642-28.979 38.656-62.054 38.656-102.349s-12.186-78.234-43.827-107.264z" />
+<glyph unicode="&#xe9b5;" glyph-name="heart1" d="M880.128 760.064c-85.606 78.541-224.41 78.541-310.016 0l-58.112-53.35-58.163 53.35c-85.606 78.541-224.358 78.541-309.965 0-96.307-88.422-96.307-231.424 0-319.795l368.128-337.869 368.128 337.869c96.256 88.371 96.256 231.424 0 319.795z" />
+<glyph unicode="&#xe9b6;" glyph-name="help-with-circle" d="M512 952.32c-271.462 0-491.52-220.058-491.52-491.52s220.058-491.52 491.52-491.52c271.411 0 491.52 220.058 491.52 491.571 0 271.411-220.109 491.469-491.52 491.469zM504.269 174.131h-2.611c-40.038 1.178-68.301 30.72-67.123 70.195 1.126 38.81 30.054 67.021 68.762 67.021l2.355-0.102c41.165-1.178 69.12-30.413 67.942-71.014-1.178-38.912-29.594-66.099-69.325-66.099zM672.768 508.518c-9.421-13.312-30.106-30.003-56.218-50.33l-28.774-19.814c-15.77-12.288-25.293-23.91-28.826-35.226-2.867-8.909-4.198-11.315-4.454-29.491v-4.608h-109.824l0.307 9.318c1.382 38.093 2.304 60.621 18.125 79.206 24.832 29.082 79.616 64.41 81.92 65.894 7.885 5.888 14.49 12.595 19.405 19.814 11.52 15.923 16.589 28.416 16.589 40.602 0 17.101-5.018 32.922-15.002 46.899-9.626 13.619-27.904 20.378-54.323 20.378-26.214 0-44.186-8.294-54.886-25.395-11.059-17.459-16.64-35.84-16.64-54.63v-4.71h-113.203l0.205 4.915c2.918 69.274 27.699 119.194 73.472 148.326 28.826 18.483 64.717 27.853 106.547 27.853 54.682 0 100.966-13.312 137.318-39.526 36.915-26.573 55.603-66.406 55.603-118.323-0.051-29.030-9.216-56.32-27.341-81.152z" />
+<glyph unicode="&#xe9b7;" glyph-name="help" d="M721.408 858.47c-58.368 42.086-131.686 63.13-219.955 63.13-67.123 0-123.802-14.797-169.83-44.442-73.062-46.387-111.872-125.184-116.582-236.288h169.318c0 32.41 9.472 63.488 28.314 93.594 18.893 30.003 50.944 45.005 96.154 45.005 45.978 0 77.67-12.186 94.925-36.506 17.357-24.422 26.010-51.405 26.010-80.998 0-25.805-12.902-49.408-28.518-70.81-8.55-12.493-19.814-24.013-33.843-34.509 0 0-91.802-58.88-132.096-106.189-23.347-27.392-25.446-68.506-27.546-127.386-0.102-4.198 1.485-12.902 16.128-12.902 14.694 0 118.579 0 131.635 0 13.107 0 15.821 9.677 15.974 14.029 0.922 21.402 3.277 32.41 7.219 44.8 7.373 23.398 27.546 43.776 50.125 61.389l46.592 32.102c42.086 32.819 75.622 59.699 90.47 80.794 25.293 34.611 43.11 77.312 43.11 128-0.051 82.688-29.235 144.998-87.603 187.187zM498.739 208.691c-58.317 1.792-106.445-38.605-108.288-101.888-1.792-63.181 43.93-105.011 102.298-106.701 60.877-1.792 107.725 37.222 109.619 100.506 1.741 63.283-42.701 106.291-103.629 108.083z" />
+<glyph unicode="&#xe9b8;" glyph-name="home1" d="M956.006 409.6h-85.606v-307.2c0-22.784-9.933-51.2-51.2-51.2h-204.8v307.2h-204.8v-307.2h-204.8c-41.267 0-51.2 28.416-51.2 51.2v307.2h-85.606c-30.618 0-24.064 16.589-3.072 38.298l410.829 411.238c9.984 10.342 23.091 15.462 36.25 15.974 13.158-0.512 26.266-5.581 36.25-15.974l410.778-411.187c21.043-21.76 27.597-38.349-3.021-38.349z" />
+<glyph unicode="&#xe9b9;" glyph-name="hour-glass1" d="M798.72 738.509c0 109.517 0 120.218 0 120.218 0 40.397-128.41 114.074-286.72 114.074-158.362 0-286.72-73.677-286.72-114.074 0 0 0-10.701 0-120.218 0-109.619 198.502-200.090 198.502-277.709 0-77.517-198.502-167.987-198.502-277.606s0-120.32 0-120.32c0-40.346 128.358-114.074 286.72-114.074 158.31 0 286.72 73.728 286.72 114.125 0 0 0 10.701 0 120.32s-198.502 200.090-198.502 277.606c0 77.568 198.502 168.038 198.502 277.658zM304.179 853.606c35.635 22.477 102.4 55.398 210.637 55.398 108.186 0 205.107-55.398 205.107-55.398 7.27-4.403 35.738-19.61 16.23-31.181-42.906-25.446-126.874-52.224-224.154-52.224s-178.381 29.491-221.389 54.989c-19.507 11.52 13.568 28.416 13.568 28.416zM537.651 460.8c0-61.082 50.995-100.403 105.011-152.883 39.475-38.298 93.491-90.778 93.491-124.672v-67.994c-49.664 24.73-198.246 48.896-198.246 128.205 0 40.090-51.866 40.090-51.866 0 0-79.309-148.582-103.475-198.246-128.205v67.994c0 33.894 54.067 86.426 93.491 124.672 54.016 52.48 105.011 91.802 105.011 152.883s-50.995 100.403-105.011 152.883c-39.475 38.4-93.491 90.88-93.491 124.826l-2.355 51.098c52.531-28.314 135.782-55.194 226.56-55.194 90.726 0 174.387 26.88 226.97 55.194l-2.816-51.098c0-33.894-54.067-86.426-93.491-124.826-53.965-52.48-105.011-91.802-105.011-152.883z" />
+<glyph unicode="&#xe9ba;" glyph-name="image-inverted" d="M921.6 819.2h-819.2c-28.314 0-51.2-22.886-51.2-51.2v-614.4c0-28.262 22.886-51.2 51.2-51.2h819.2c28.314 0 51.2 22.938 51.2 51.2v614.4c0 28.262-22.886 51.2-51.2 51.2zM678.4 640c35.328 0 64-28.672 64-64s-28.672-64-64-64-64 28.672-64 64 28.672 64 64 64zM204.8 256l169.677 390.093 192.973-312.422 165.427 82.176 86.323-159.846h-614.4z" />
+<glyph unicode="&#xe9bb;" glyph-name="image1" d="M972.8 870.4h-921.6c-28.314 0-51.2-22.886-51.2-51.2v-716.8c0-28.262 22.886-51.2 51.2-51.2h921.6c28.314 0 51.2 22.938 51.2 51.2v716.8c0 28.262-22.886 51.2-51.2 51.2zM921.6 153.6h-819.2v614.4h819.2v-614.4zM732.928 415.898l-165.427-82.176-193.024 312.371-169.677-390.093h614.4l-86.272 159.898zM678.4 512c35.328 0 64 28.672 64 64s-28.672 64-64 64-64-28.672-64-64 28.672-64 64-64z" />
+<glyph unicode="&#xe9bc;" glyph-name="images1" d="M876.8 656.896l-104.755 288.512c-7.731 21.299-30.464 32.614-50.637 25.19l-696.218-254.106c-20.173-7.373-30.362-30.566-22.579-51.866l110.387-304.179v162.97c0 73.626 58.778 133.478 131.072 133.478h183.962l219.392 154.010 126.925-154.010h102.451zM984.986 563.2h-740.915c-21.504 0-39.014-17.101-39.014-39.782v-482.304c0.051-22.733 17.562-41.114 39.014-41.114h740.915c21.504 0 39.014 18.381 39.014 41.114v482.304c0 22.682-17.51 39.782-39.014 39.782zM921.6 102.4h-614.4v102.4l101.581 205.722 141.722-175.923 133.018 136.294 170.906 61.696 67.174-176.589v-153.6z" />
+<glyph unicode="&#xe9bd;" glyph-name="inbox" d="M985.754 484.25c-19.866 21.299-115.968 116.275-159.846 159.642-13.466 13.261-32.717 21.709-52.89 21.709h-522.035c-20.173 0-39.424-8.448-52.89-21.709-43.93-43.366-139.981-138.291-159.846-159.642-24.832-26.675-37.018-46.182-31.949-74.189s23.859-135.885 28.467-157.389c4.506-21.453 35.021-47.872 63.488-47.872h827.494c28.467 0 58.982 26.419 63.539 47.872 4.557 21.504 23.398 129.382 28.467 157.389s-7.117 47.565-32 74.189zM717.517 460.646c-5.171 0-9.882-2.662-12.186-6.81l-41.472-95.437h-303.718l-41.421 95.437c-2.304 4.147-7.014 6.81-12.186 6.81h-179.917l103.526 102.554h563.712l103.578-102.554h-179.917z" />
+<glyph unicode="&#xe9be;" glyph-name="infinity" d="M814.182 686.080c-106.445 0-223.13-59.29-302.182-149.299-79.104 90.010-195.84 149.299-302.285 149.299-101.376 0-209.715-59.187-209.715-225.28s108.339-225.178 209.715-225.28v0c106.445 0 223.13 59.29 302.234 149.299 79.053-90.010 195.738-149.299 302.182-149.299 101.427 0 209.869 59.187 209.869 225.28s-108.442 225.28-209.818 225.28zM209.715 325.581c-77.414 0-117.555 45.517-117.555 135.219s40.141 135.219 117.555 135.219c85.658 0 185.037-55.603 246.118-135.219-61.082-79.616-160.461-135.219-246.118-135.219zM814.182 325.581c-85.658 0-185.037 55.603-246.118 135.219 61.030 79.616 160.512 135.219 246.118 135.219 77.414 0 117.658-45.517 117.658-135.219s-40.243-135.219-117.658-135.219z" />
+<glyph unicode="&#xe9bf;" glyph-name="info-with-circle" d="M512 952.32c-271.514 0-491.571-220.058-491.571-491.52 0-271.514 220.058-491.571 491.571-491.571 271.411 0 491.52 220.058 491.52 491.571 0 271.462-220.109 491.52-491.52 491.52zM557.875 774.861c47.923 0 62.003-27.802 62.003-59.597 0-39.68-31.744-76.39-85.965-76.39-45.363 0-66.97 22.784-65.638 60.518 0 31.795 26.573 75.469 89.6 75.469zM435.098 166.4c-32.768 0-56.678 19.917-33.792 107.213l37.53 154.88c6.502 24.781 7.578 34.714 0 34.714-9.779 0-52.326-17.101-77.414-33.997l-16.333 26.778c79.616 66.509 171.162 105.523 210.33 105.523 32.768 0 38.195-38.707 21.862-98.304l-43.008-162.816c-7.629-28.774-4.352-38.707 3.277-38.707 9.83 0 41.984 11.878 73.626 36.813l18.534-24.883c-77.466-77.414-161.894-107.213-194.611-107.213z" />
+<glyph unicode="&#xe9c0;" glyph-name="info1" d="M636.518 972.8c68.608 0 102.912-46.694 102.912-100.198 0-66.816-59.597-128.614-137.165-128.614-64.973 0-102.861 38.4-101.069 101.888 0 53.402 45.107 126.925 135.322 126.925zM425.421-51.2c-54.17 0-93.85 33.382-55.962 180.429l62.157 260.71c10.803 41.677 12.595 58.419 0 58.419-16.23 0-86.477-28.774-128.102-57.19l-27.034 45.056c131.686 111.923 283.187 177.51 348.211 177.51 54.118 0 63.13-65.178 36.096-165.376l-71.219-274.022c-12.595-48.384-7.219-65.075 5.427-65.075 16.23 0 69.478 20.070 121.805 61.798l30.72-41.677c-128.102-130.406-268.032-180.582-322.099-180.582z" />
+<glyph unicode="&#xe9c1;" glyph-name="key1" d="M905.779 730.88c-25.754 152.422-164.864 254.31-310.733 227.379-145.92-26.88-269.107-144.179-243.354-296.704 5.478-32.819 20.89-84.173 39.066-121.088l-264.96-395.418c-9.779-14.592-15.309-40.909-12.39-58.419l17.050-100.915c2.97-17.51 19.046-29.286 35.84-26.317l77.619 14.387c16.794 3.021 38.093 17.818 47.309 32.717l104.806 169.523 0.922 1.126 70.963 13.107 122.368 198.605c40.192-7.117 97.894-4.71 131.994 1.587 145.818 26.931 209.254 187.904 183.501 340.429zM776.499 652.698c-40.141-59.904-81.101-17.715-138.394 24.32-57.293 41.882-109.312 67.686-69.222 127.59 40.141 59.904 119.091 74.496 176.486 32.512 57.344-41.933 71.219-124.518 31.13-184.422z" />
+<glyph unicode="&#xe9c2;" glyph-name="keyboard1" d="M952.32 768h-880.64c-39.475 0-71.68-32.205-71.68-71.68v-471.040c0-39.373 32.205-71.68 71.629-71.68h880.64c39.424 0 71.68 32.307 71.68 71.68v471.040c0.051 39.475-32.256 71.68-71.629 71.68zM563.2 665.6h102.4v-102.4h-102.4v102.4zM716.8 512v-102.4h-102.4v102.4h102.4zM409.6 665.6h102.4v-102.4h-102.4v102.4zM563.2 512v-102.4h-102.4v102.4h102.4zM256 665.6h102.4v-102.4h-102.4v102.4zM409.6 512v-102.4h-102.4v102.4h102.4zM102.4 665.6h102.4v-102.4h-102.4v102.4zM256 512v-102.4h-102.4v102.4h102.4zM204.8 256h-102.4v102.4h102.4v-102.4zM768 256h-512v102.4h512v-102.4zM921.6 256h-102.4v102.4h102.4v-102.4zM768 409.6v102.4h102.4v-102.4h-102.4zM921.6 563.2h-204.8v102.4h204.8v-102.4z" />
+<glyph unicode="&#xe9c3;" glyph-name="lab-flask" d="M841.318 204.8c-104.704 261.478-226.918 330.394-226.918 460.8v153.6h25.6c14.131 0 25.6 11.469 25.6 25.6v51.2c0 14.131-11.469 25.6-25.6 25.6h-256c-14.131 0-25.6-11.469-25.6-25.6v-51.2c0-14.131 11.469-25.6 25.6-25.6h25.6v-153.6c0-130.406-122.214-199.322-226.918-460.8-33.331-83.2-118.938-204.8 329.318-204.8s362.65 121.6 329.318 204.8zM758.528 115.149c-35.942-10.752-107.469-22.989-246.528-22.989s-210.586 12.237-246.528 22.989c-12.749 3.789-17.715 18.586-13.21 32.154 11.264 34.304 32.512 93.594 72.243 159.795 97.075 161.741 197.786-25.446 281.6-25.446s60.826 79.923 93.389 25.446c39.629-66.253 60.979-125.491 72.243-159.795 4.506-13.568-0.461-28.314-13.21-32.154z" />
+<glyph unicode="&#xe9c4;" glyph-name="landline" d="M250.982 960c-71.885 14.182-142.694-32-157.133-103.578-56.576-279.296-56.576-511.846 0-791.245 12.646-62.72 68.454-106.138 130.816-106.138 8.704 0 17.51 0.819 26.368 2.56 72.294 14.285 119.245 83.866 104.755 155.443-50.074 247.398-50.074 440.218 0 687.616 14.438 71.475-32.512 141.056-104.806 155.341zM870.4 870.4h-438.477c3.738-23.91 4.147-48.691-0.87-73.728-47.923-241.664-47.923-429.978 0-671.744 5.018-25.088 4.608-49.818 0.87-73.728h438.477c56.32 0 102.4 46.080 102.4 102.4v614.4c0 56.32-46.029 102.4-102.4 102.4zM614.4 230.4c-42.394 0-76.8 34.406-76.8 76.8s34.406 76.8 76.8 76.8 76.8-34.406 76.8-76.8-34.406-76.8-76.8-76.8zM870.4 512h-358.4v204.8h358.4v-204.8z" />
+<glyph unicode="&#xe9c5;" glyph-name="language" d="M1011.354 414.259c-31.949 87.398-121.139 139.571-238.643 139.571-4.608 0-9.011-0.102-13.414-0.307l-0.819 105.626c0 0 174.592 30.106 180.48 31.078s6.81 6.093 5.581 11.827c-1.178 5.683-8.55 45.21-9.626 49.971-1.382 6.707-5.222 6.502-10.598 5.581-5.325-0.922-166.4-23.603-166.4-23.603s-0.614 99.994-0.666 106.394c-0.051 6.4-3.533 8.090-9.933 7.987s-47.104-0.717-52.48-0.819c-5.376-0.102-8.397-2.509-8.294-7.578 0.102-5.12 1.69-118.118 1.69-118.118s-156.723-26.982-160.973-27.802c-4.301-0.717-8.704-2.714-7.731-7.322s9.728-56.013 10.65-60.006c0.922-4.096 3.686-6.605 9.626-5.478 5.888 0.973 149.709 25.805 149.709 25.805l1.792-103.322c-55.142-14.387-92.211-42.189-115.507-66.714-39.322-41.318-61.798-96.614-61.798-151.706 0-81.203 49.715-129.485 119.194-137.984 161.894-19.814 262.093 156.672 295.373 241.408 56.166-77.107 13.107-222.925-107.213-306.176-2.202-1.485-5.018-6.605-1.69-10.598s27.699-33.894 31.693-38.707c4.096-4.915 10.547-3.021 13.107-1.178 128.512 88.576 187.443 231.168 146.893 342.17zM633.19 251.034c-49.459 6.195-48.333 46.797-48.333 74.394 0 39.578 16.742 80.896 44.851 110.387 17.152 18.125 38.4 31.795 62.925 40.909l4.198-218.982c-19.712-6.707-40.909-9.472-63.642-6.707zM757.453 279.347l2.355 210.381c4.301 0.205 8.499 0.512 12.902 0.512 39.578 0 76.493-7.424 96.512-18.483 20.019-11.11-52.378-138.906-111.77-192.41zM299.213 671.949c-1.536 4.813-5.274 7.424-10.035 7.424h-99.84c-4.762 0-8.448-2.611-9.933-7.373-21.094-66.509-178.176-562.688-178.995-565.299-0.87-2.611-0.563-3.891 3.174-3.891h88.73c3.84 0 5.069 1.178 5.837 3.686 0.768 2.611 51.61 169.882 51.61 169.882h178.995c0 0 50.79-167.322 51.61-169.882 0.819-2.509 1.997-3.686 5.786-3.686h88.781c3.686 0 3.994 1.28 3.174 3.891-0.717 2.56-157.85 498.739-178.893 565.248zM165.171 348.467l74.086 268.8 74.086-268.8h-148.173z" />
+<glyph unicode="&#xe9c6;" glyph-name="laptop1" d="M1011.405 172.493c-12.646 18.995-89.805 134.707-89.805 134.707v460.8c0 56.422-46.080 102.4-102.4 102.4h-614.4c-56.371 0-102.4-45.978-102.4-102.4v-460.8c0 0-77.158-115.712-89.805-134.707-12.595-18.893-12.595-29.798-12.595-44.493v-25.6c0-25.6 25.6-51.2 51.149-51.2h921.702c25.549 0 51.149 25.6 51.149 51.2v25.6c0 14.694 0 25.6-12.595 44.493zM358.4 153.6l30.72 51.2h245.76l30.72-51.2h-307.2zM819.2 358.4h-614.4v409.6h614.4v-409.6z" />
+<glyph unicode="&#xe9c7;" glyph-name="leaf1" d="M974.080 789.146c-223.027-130.867-207.053-399.667-363.315-520.96-117.606-91.29-283.546-45.056-379.494-5.786 0 0-65.024-82.074-111.667-191.488-15.616-36.71-84.173 3.738-72.141 34.816 152.474 393.472 671.232 589.773 671.232 589.773s-366.029 15.514-610.662-304.128c-6.554 73.011-17.408 270.541 172.032 391.68 256.819 164.403 746.086 36.608 694.016 6.093z" />
+<glyph unicode="&#xe9c8;" glyph-name="level-down" d="M51.2 358.4v358.4h153.6v-307.2h512v153.6l256-230.4-256-230.4v153.6h-563.2c-56.576 0-102.4 45.875-102.4 102.4z" />
+<glyph unicode="&#xe9c9;" glyph-name="level-up" d="M972.8 512v-358.4h-153.6v307.2h-512v-153.6l-256 230.4 256 230.4v-153.6h563.2c56.525 0 102.4-45.926 102.4-102.4z" />
+<glyph unicode="&#xe9ca;" glyph-name="lifebuoy1" d="M859.546 808.346c-191.949 191.949-503.142 191.949-695.040 0-192-192-192-503.194-0.102-695.091 192-192 503.194-192 695.194 0 191.898 191.949 191.898 503.142-0.051 695.091zM345.498 294.298c-92.006 92.006-92.006 241.101 0 333.056 91.904 91.955 241.101 91.955 333.107 0 92.006-92.006 91.904-241.101 0-333.056-92.006-92.006-241.101-92.006-333.107 0zM785.766 313.395c49.562 92.109 49.613 202.701 0 294.861l91.29 49.152c65.997-122.419 65.997-270.848 0.102-393.114l-91.392 49.101zM708.557 825.907l-49.203-91.341c-92.109 49.51-202.701 49.51-294.707 0l-49.203 91.29c122.368 65.946 270.694 65.946 393.114 0.051zM146.944 657.408l91.341-49.203c-49.562-92.058-49.562-202.598-0.051-294.707l-91.341-49.203c-65.946 122.317-65.894 270.694 0.051 393.114zM315.341 95.795l49.203 91.29c92.109-49.613 202.752-49.613 294.861 0l49.203-91.392c-122.47-65.894-270.848-65.894-393.267 0.102z" />
+<glyph unicode="&#xe9cb;" glyph-name="light-bulb" d="M367.923-8.806c40.397-26.112 87.091-43.776 144.077-42.394 56.883-1.382 103.68 16.282 144.077 42.394l-0.87 111.206h-286.413l-0.87-111.206zM650.086 153.6c0 223.078 237.056 299.418 219.29 521.626-11.162 140.186-106.138 297.472-357.376 297.472s-346.214-157.286-357.427-297.523c-17.766-222.157 219.341-298.496 219.341-521.574h276.173zM256 665.6c10.598 133.018 108.186 204.8 256 204.8 147.763 0 238.285-70.195 248.883-203.213 5.786-72.909-36.096-121.498-92.621-201.011-41.677-58.675-82.074-119.962-105.062-210.176h-102.4c-22.989 90.214-63.386 151.501-105.114 210.227-56.474 79.462-105.523 126.464-99.686 199.373z" />
+<glyph unicode="&#xe9cc;" glyph-name="light-down" d="M512 624.794c-90.88 0-163.84-73.011-163.84-163.891 0-90.778 72.96-163.789 163.84-163.789 90.829 0 163.789 73.011 163.789 163.789 0 90.88-72.96 163.891-163.789 163.891zM512 355.994c-58.010 0-105.011 46.899-105.011 104.909s47.002 105.011 105.011 105.011c57.958 0 104.96-47.002 104.96-105.011-0.051-58.010-47.053-104.909-104.96-104.909zM768 716.8c-15.974 15.974-45.21 12.698-65.178-7.27-19.968-20.019-23.194-49.101-7.219-65.126s45.158-12.8 65.178 7.219c19.968 19.968 23.194 49.203 7.219 65.178zM263.27 269.875c-20.019-19.968-23.245-49.101-7.27-65.075s45.158-12.8 65.178 7.219c20.019 20.019 23.245 49.203 7.27 65.178s-45.21 12.698-65.178-7.322zM256 716.8c-15.974-15.974-12.749-45.21 7.219-65.178 20.019-20.019 49.203-23.194 65.178-7.219s12.749 45.21-7.27 65.178c-19.917 19.917-49.152 23.194-65.126 7.219zM702.822 212.122c19.968-20.019 49.152-23.296 65.178-7.322s12.749 45.21-7.27 65.229c-20.019 20.019-49.152 23.194-65.178 7.219s-12.698-45.158 7.27-65.126zM512 716.902c22.579 0 40.96 22.886 40.96 51.2-0.051 28.314-18.381 51.098-40.96 51.098-22.63 0-41.011-22.784-41.011-51.098s18.33-51.2 41.011-51.2zM512 102.4c22.579 0 40.96 22.886 40.96 51.2s-18.33 51.098-40.909 51.098c-22.63 0-41.011-22.784-41.011-51.098-0.051-28.314 18.278-51.2 40.96-51.2zM256 460.8c0 22.579-23.040 40.96-51.354 40.96s-51.046-18.381-51.046-40.96c0-22.63 22.733-40.96 51.046-40.96s51.354 18.33 51.354 40.96zM870.4 460.8c0 22.579-22.938 40.96-51.251 40.96s-51.149-18.381-51.149-40.96c0-22.63 22.835-40.96 51.149-40.96s51.251 18.33 51.251 40.96z" />
+<glyph unicode="&#xe9cd;" glyph-name="light-up" d="M972.8 501.811c-9.318 0-40.909 0-50.176 0-28.314 0-51.2-18.381-51.2-41.011 0-22.579 22.886-40.909 51.2-40.909 9.318 0 40.909 0 50.176 0 28.262 0 51.2 18.278 51.2 40.909 0 22.579-22.989 41.011-51.2 41.011zM512 742.4c-156.211 0-281.6-125.389-281.6-281.6s125.389-281.6 281.6-281.6c156.16 0 281.6 125.389 281.6 281.6s-125.491 281.6-281.6 281.6zM512 256c-113.203 0-204.8 91.699-204.8 204.8 0 113.203 91.597 204.8 204.8 204.8 113.101 0 204.8-91.597 204.8-204.8 0-113.101-91.699-204.8-204.8-204.8zM153.6 460.8c0 22.579-22.989 41.011-51.2 41.011-9.472 0-41.779 0-51.2 0-28.314 0-51.2-18.381-51.2-41.011 0-22.579 22.886-40.909 51.2-40.909 9.421 0 41.728 0 51.2 0 28.211 0 51.2 18.33 51.2 40.909zM512 819.2c22.579 0 40.909 22.886 40.909 51.2 0 9.421 0 41.779 0 51.2 0 28.314-18.33 51.2-40.909 51.2-22.63 0-41.011-22.886-41.011-51.2 0-9.421 0-41.779 0-51.2 0-28.314 18.381-51.2 41.011-51.2zM512 102.4c-22.63 0-41.011-22.886-41.011-51.2 0-9.421 0-41.779 0-51.2 0-28.314 18.381-51.2 41.011-51.2 22.579 0 40.909 22.886 40.909 51.2 0 9.421 0 41.779 0 51.2 0 28.314-18.33 51.2-40.909 51.2zM889.088 779.981c20.019 20.019 23.245 49.203 7.27 65.178s-45.21 12.698-65.126-7.322c-5.53-5.478-30.362-30.31-35.84-35.789-20.019-20.019-23.245-49.203-7.27-65.178s45.21-12.698 65.178 7.322c5.478 5.53 30.259 30.31 35.789 35.789zM170.701 177.51c-5.53-5.581-30.362-30.413-35.84-35.891-20.019-20.019-23.245-49.101-7.27-65.075s45.21-12.8 65.126 7.219c5.53 5.478 30.362 30.31 35.84 35.789 20.019 20.019 23.245 49.203 7.27 65.229s-45.21 12.646-65.126-7.27zM192.768 837.888c-19.968 20.019-49.203 23.296-65.178 7.322s-12.698-45.21 7.219-65.229c5.53-5.478 30.362-30.31 35.84-35.789 20.019-20.019 49.152-23.296 65.126-7.322s12.749 45.21-7.219 65.178c-5.478 5.53-30.259 30.362-35.789 35.84zM795.341 119.501c5.53-5.478 30.362-30.31 35.84-35.789 20.019-20.019 49.152-23.194 65.126-7.322 15.974 15.974 12.749 45.21-7.27 65.178-5.478 5.478-30.31 30.31-35.789 35.789-20.019 20.019-49.203 23.296-65.229 7.322s-12.698-45.158 7.322-65.178z" />
+<glyph unicode="&#xe9ce;" glyph-name="line-graph" d="M35.328 392.653l69.786-17.306 52.531 82.483-99.84 24.678c-24.986 6.195-50.227-8.909-56.422-33.792-6.195-24.73 8.96-49.818 33.946-56.064zM946.227 379.29l-228.506-205.619-268.646 207.923c-5.12 3.891-11.008 6.81-17.306 8.294l-35.738 8.909-52.582-82.483 56.32-13.978 291.686-225.69c8.499-6.502 18.534-9.677 28.621-9.677 11.213 0 22.426 3.994 31.181 11.878l257.434 231.782c19.046 17.101 20.531 46.387 3.277 65.382-17.254 18.944-46.643 20.48-65.741 3.277zM444.621 605.184l250.214-160.205c21.146-13.517 49.203-7.885 63.488 12.595l257.382 370.79c14.643 21.094 9.37 50.022-11.827 64.512-21.197 14.592-50.125 9.318-64.768-11.776l-231.834-333.875-251.699 161.126c-10.445 6.707-23.091 8.909-35.226 6.298-12.083-2.714-22.63-10.086-29.235-20.48l-383.846-602.47c-13.824-21.606-7.373-50.33 14.336-64 7.68-4.915 16.333-7.219 24.883-7.219 15.411 0 30.515 7.629 39.322 21.504l358.81 563.2z" />
+<glyph unicode="&#xe9cf;" glyph-name="link1" d="M402.381 220.621l-41.472-41.216c-35.891-35.584-94.362-35.584-130.304 0-17.203 17.101-26.675 39.885-26.675 64.102s9.523 46.899 26.675 64.102l152.576 151.296c31.59 31.386 91.085 77.568 134.451 34.56 19.917-19.763 52.019-19.661 71.834 0.256 19.712 19.917 19.61 52.070-0.307 71.782-73.626 73.114-182.579 59.597-277.453-34.56l-152.576-151.347c-36.608-36.301-56.73-84.685-56.73-136.090 0-51.507 20.173-99.789 56.73-136.090 37.683-37.376 87.142-56.115 136.653-56.115s99.021 18.688 136.653 56.115l41.523 41.216c19.917 19.712 20.019 51.814 0.256 71.68-19.814 19.866-51.917 19.968-71.834 0.307zM864.819 808.602c-79.206 78.541-189.901 82.79-263.117 10.086l-51.661-51.302c-19.917-19.763-20.070-51.866-0.307-71.731 19.763-19.917 51.866-20.019 71.782-0.256l51.712 51.251c37.888 37.683 87.603 22.067 120.115-10.086 17.203-17.152 26.726-39.885 26.726-64.102s-9.523-46.95-26.726-64.051l-162.816-161.485c-74.445-73.779-109.363-39.219-124.262-24.422-19.917 19.763-52.019 19.61-71.731-0.256-19.763-19.917-19.661-52.070 0.256-71.731 34.202-33.894 73.216-50.688 114.074-50.688 50.022 0 102.912 25.19 153.242 75.11l162.816 161.434c36.454 36.352 56.678 84.685 56.678 136.090 0 51.456-20.224 99.789-56.781 136.141z" />
+<glyph unicode="&#xe9d0;" glyph-name="list1" d="M737.28 512h-296.96c-28.262 0-30.72-22.886-30.72-51.2s2.458-51.2 30.72-51.2h296.96c28.262 0 30.72 22.886 30.72 51.2s-2.458 51.2-30.72 51.2zM839.68 256h-399.36c-28.262 0-30.72-22.886-30.72-51.2s2.458-51.2 30.72-51.2h399.36c28.262 0 30.72 22.886 30.72 51.2s-2.458 51.2-30.72 51.2zM440.32 665.6h399.36c28.262 0 30.72 22.886 30.72 51.2s-2.458 51.2-30.72 51.2h-399.36c-28.262 0-30.72-22.886-30.72-51.2s2.458-51.2 30.72-51.2zM276.48 512h-92.16c-28.262 0-30.72-22.886-30.72-51.2s2.458-51.2 30.72-51.2h92.16c28.262 0 30.72 22.886 30.72 51.2s-2.458 51.2-30.72 51.2zM276.48 256h-92.16c-28.262 0-30.72-22.886-30.72-51.2s2.458-51.2 30.72-51.2h92.16c28.262 0 30.72 22.886 30.72 51.2s-2.458 51.2-30.72 51.2zM276.48 768h-92.16c-28.262 0-30.72-22.886-30.72-51.2s2.458-51.2 30.72-51.2h92.16c28.262 0 30.72 22.886 30.72 51.2s-2.458 51.2-30.72 51.2z" />
+<glyph unicode="&#xe9d1;" glyph-name="location-pin" d="M512 869.939c-141.414 0-256-114.125-256-255.488 0-244.429 256-563.2 256-563.2s256 318.822 256 563.2c0 141.312-114.586 255.488-256 255.488zM512 473.088c-76.39 0-138.24 61.901-138.24 138.24s61.85 138.24 138.24 138.24c76.288 0 138.189-61.901 138.189-138.24s-61.901-138.24-138.189-138.24z" />
+<glyph unicode="&#xe9d2;" glyph-name="location1" d="M991.59 45.978l-69.99 210.022h-76.8l42.65-204.8h-750.899l42.65 204.8h-76.8l-70.042-210.022c-17.766-53.453 13.722-97.178 70.042-97.178h819.2c56.32 0 87.808 43.725 69.99 97.178zM768 716.8c0 141.363-114.586 256-256 256s-256-114.637-256-256c0-244.48 256-512 256-512s256 267.52 256 512zM373.76 713.728c0 76.339 61.85 138.189 138.24 138.189s138.24-61.85 138.24-138.189c0-76.39-61.901-138.24-138.24-138.24s-138.24 61.901-138.24 138.24z" />
+<glyph unicode="&#xe9d3;" glyph-name="lock-open" d="M808.96 563.2h-92.16v122.88c0 148.326-68.352 235.52-204.8 235.52-136.499 0-204.8-87.194-204.8-235.52v-20.48h102.4v41.011c0 73.984 40.806 112.589 102.4 112.589s102.4-38.605 102.4-112.589v-143.411h-409.6c-28.314 0-51.2-33.075-51.2-61.389v-399.411c0-28.109 21.914-58.317 48.691-66.918l61.286-19.814c26.829-8.55 71.782-15.667 99.942-15.667h296.96c28.109 0 73.114 7.117 99.891 15.718l61.235 19.814c26.829 8.55 48.794 38.758 48.794 66.867v399.411c0 28.314-33.178 61.389-61.44 61.389z" />
+<glyph unicode="&#xe9d4;" glyph-name="lock1" d="M808.96 563.2h-92.16v122.88c0 148.326-68.352 235.52-204.8 235.52-136.499 0-204.8-87.194-204.8-235.52v-122.88h-102.4c-28.314 0-51.2-33.075-51.2-61.389v-399.411c0-28.109 21.914-58.317 48.691-66.918l61.286-19.814c26.829-8.55 71.782-15.667 99.942-15.667h296.96c28.109 0 73.114 7.117 99.891 15.718l61.235 19.814c26.829 8.55 48.794 38.758 48.794 66.867v399.411c0 28.314-33.178 61.389-61.44 61.389zM614.4 563.2h-204.8v143.411c0 73.984 40.806 112.589 102.4 112.589s102.4-38.605 102.4-112.589v-143.411z" />
+<glyph unicode="&#xe9d5;" glyph-name="log-out" d="M972.8 460.8l-307.2 256v-153.6h-358.4v-204.8h358.4v-153.6l307.2 256zM153.6 819.2h409.6v102.4h-409.6c-56.32 0-102.4-46.080-102.4-102.4v-716.8c0-56.32 46.080-102.4 102.4-102.4h409.6v102.4h-409.6v716.8z" />
+<glyph unicode="&#xe9d6;" glyph-name="login" d="M716.8 460.8l-307.2 256v-153.6h-358.4v-204.8h358.4v-153.6l307.2 256zM870.4 102.4h-409.6v-102.4h409.6c56.32 0 102.4 46.080 102.4 102.4v716.8c0 56.32-46.080 102.4-102.4 102.4h-409.6v-102.4h409.6v-716.8z" />
+<glyph unicode="&#xe9d7;" glyph-name="loop1" d="M1024 614.4v-358.4c0-56.474-45.875-102.4-102.4-102.4h-819.2c-56.525 0-102.4 45.926-102.4 102.4v358.4c0 56.525 45.875 102.4 102.4 102.4h358.4v102.4l204.8-179.2-204.8-179.2v102.4h-307.2v-256h716.8v256h-153.6v153.6h204.8c56.525 0 102.4-45.875 102.4-102.4z" />
+<glyph unicode="&#xe9d8;" glyph-name="magnet1" d="M622.848 58.368c-1.434-15.821 11.11-29.901 27.904-31.283l204.032-16.691c16.845-1.382 31.795 10.394 33.28 26.214l15.923 168.294-265.216 21.811-15.923-168.346zM120.013 204.851l15.974-168.294c1.434-15.821 16.435-27.597 33.28-26.214l204.032 16.691c16.794 1.382 29.338 15.514 27.955 31.283l-15.974 168.294-265.267-21.76zM93.747 482.15l16.435-173.619 265.267 21.811-16.486 173.414c-0.358 4.198-0.563 8.499-0.563 12.8 0 79.616 68.915 144.384 153.6 144.384s153.6-64.819 153.6-144.384c0-4.301-0.205-8.602-0.614-12.8l-16.435-173.414 265.267-21.811 16.435 173.619c1.075 11.52 1.536 22.989 1.536 34.406 0.051 217.702-188.262 394.803-419.789 394.803s-419.84-177.101-419.84-394.803c0-11.418 0.563-22.886 1.587-34.406z" />
+<glyph unicode="&#xe9d9;" glyph-name="magnifying-glass" d="M898.304 180.89l-193.485 193.485c29.184 47.872 45.978 104.192 45.978 164.352 0 174.95-151.603 326.502-326.554 326.502-174.95 0.051-316.723-141.773-316.723-316.723 0-174.899 151.603-326.502 326.502-326.502 58.214 0 112.64 15.821 159.488 43.213l194.509-194.611c19.046-18.995 49.92-18.995 68.915 0l48.282 48.282c18.995 18.995 12.083 43.008-6.912 62.003zM205.005 548.506c0 121.139 98.15 219.29 219.238 219.29 121.139 0 229.069-107.878 229.069-229.069 0-121.088-98.202-219.29-219.29-219.29-121.139 0.051-229.018 107.981-229.018 229.069z" />
+<glyph unicode="&#xe9da;" glyph-name="mail1" d="M80.589 702.157c24.986-13.414 371.098-199.373 384-206.285s29.594-10.189 46.387-10.189c16.794 0 33.485 3.277 46.387 10.189s359.014 192.87 384 206.285c25.037 13.466 48.691 65.843 2.765 65.843h-866.253c-45.926 0-22.272-52.378 2.714-65.843zM952.986 589.363c-28.416-14.797-378.214-197.069-395.622-206.182s-29.594-10.189-46.387-10.189-28.979 1.075-46.387 10.189-365.21 191.437-393.626 206.234c-19.968 10.445-19.763-1.792-19.763-11.213s0-373.402 0-373.402c0-21.504 28.979-51.2 51.2-51.2h819.2c22.221 0 51.2 29.696 51.2 51.2 0 0 0 363.93 0 373.35s0.205 21.658-19.814 11.213z" />
+<glyph unicode="&#xe9db;" glyph-name="man1" d="M512 768c56.525 0 102.4 45.875 102.4 102.4 0 56.576-45.875 102.4-102.4 102.4s-102.4-45.824-102.4-102.4c0-56.525 45.875-102.4 102.4-102.4zM818.074 379.75c-19.712 90.88-54.17 240.026-104.55 301.773-48.998 60.058-147.712 62.566-201.523 62.566v0c-53.811 0-152.525-2.509-201.523-62.566-50.381-61.747-84.838-210.893-104.55-301.773-10.906-50.33 59.085-68.813 77.363-18.176 27.187 75.418 48.179 138.752 94.157 191.283 24.166-148.838-65.024-407.859-70.246-552.858 0-28.262 22.938-51.2 51.2-51.2 21.811 0 40.448 13.619 47.821 32.87 23.398 81.254 105.779 307.354 105.779 307.354v0 0c0 0 82.381-226.099 105.779-307.354 7.373-19.251 26.010-32.87 47.821-32.87 28.262 0 51.2 22.938 51.2 51.2-5.222 144.998-94.413 404.019-70.246 552.806 45.978-52.531 66.97-115.866 94.157-191.283 18.227-50.586 88.269-32.102 77.363 18.227z" />
+<glyph unicode="&#xe9dc;" glyph-name="map1" d="M995.686 782.438l-307.2 153.6c-14.387 7.219-31.386 7.219-45.824 0l-288.256-144.128-287.027 95.693c-15.667 5.222-32.768 2.611-46.131-7.066-13.363-9.626-21.248-25.088-21.248-41.523v-665.651c0-19.405 10.957-37.12 28.314-45.773l307.2-153.6c7.219-3.584 15.053-5.427 22.886-5.427s15.718 1.792 22.886 5.427l288.256 144.077 287.027-95.693c15.616-5.12 32.768-2.509 46.131 7.117s21.248 25.088 21.248 41.472v665.702c0.051 19.405-10.906 37.12-28.262 45.773zM409.6 704.973l204.8 102.4v-602.266l-204.8-102.4v602.266zM102.4 768l204.8-68.25v-597.043l-204.8 102.4v562.893zM921.6 141.978l-204.8 68.301v597.094l204.8-102.4v-562.995z" />
+<glyph unicode="&#xe9dd;" glyph-name="mask" d="M1002.547 673.792c-2.202 24.013-23.654 41.114-47.104 37.376-89.19-14.234-298.291-96.768-443.443-96.768s-354.253 82.534-443.443 96.768c-23.45 3.738-44.851-13.312-47.104-37.325-7.27-78.438-21.453-287.283-21.453-318.925 0-42.496 177.766-139.878 307.2-139.878 125.542 0 151.040 139.878 204.8 139.878s79.258-139.878 204.8-139.878c129.434 0 307.2 97.382 307.2 139.878 0 31.642-14.182 240.486-21.453 318.874zM392.192 423.936c-18.074-16.282-68.352-54.784-129.587-42.752s-98.253 67.738-110.899 90.010c-3.072 5.427-2.099 12.288 2.253 16.23 18.074 16.282 68.352 54.784 129.638 42.752 61.235-12.032 98.253-67.738 110.899-90.010 3.021-5.427 2.048-12.288-2.304-16.23zM872.294 471.194c-12.595-22.323-49.613-77.978-110.899-90.010-61.235-12.032-111.565 26.47-129.587 42.752-4.403 3.942-5.325 10.803-2.304 16.23 12.595 22.323 49.613 77.978 110.899 90.010 61.235 12.032 111.565-26.47 129.587-42.752 4.403-3.942 5.376-10.803 2.304-16.23z" />
+<glyph unicode="&#xe9de;" glyph-name="medal" d="M512 460.8c27.034 0 52.531-5.325 77.005-13.107l-311.142 466.688c-3.021 4.506-8.038 7.219-13.466 7.219h-182.067c-5.99 0-9.626-6.707-6.246-11.725l319.027-478.566c35.174 18.227 74.547 29.491 116.89 29.491zM941.67 921.6h-182.067c-5.427 0-10.445-2.714-13.466-7.219l-195.738-293.581 102.4-153.6 295.117 442.675c3.328 5.018-0.256 11.725-6.246 11.725zM512 409.6c-113.101 0-204.8-91.699-204.8-204.8s91.699-204.8 204.8-204.8 204.8 91.699 204.8 204.8c0 113.101-91.699 204.8-204.8 204.8zM620.134 198.81c3.174-3.277 2.662-8.090-1.126-10.65s-4.864-7.834-2.509-11.725c2.406-3.891 0.922-8.448-3.328-10.189s-6.4-6.656-4.864-10.957-0.87-8.448-5.325-9.267-7.629-5.171-7.014-9.677-2.611-8.090-7.168-7.936c-4.557 0.154-8.55-3.482-8.909-7.987s-4.25-7.373-8.653-6.298-9.114-1.587-10.394-5.99-5.683-6.349-9.779-4.352c-4.096 1.997-9.216 0.307-11.366-3.686s-6.861-5.018-10.496-2.202-8.96 2.253-11.878-1.229-7.731-3.482-10.701 0-8.294 4.045-11.878 1.229-8.294-1.792-10.496 2.202-7.27 5.683-11.366 3.686c-4.096-1.997-8.499 0-9.779 4.352s-5.939 7.066-10.394 5.99-8.346 1.741-8.653 6.298-4.301 8.141-8.858 8.038c-4.557-0.154-7.782 3.43-7.168 7.936s-2.56 8.858-7.014 9.677-6.912 4.966-5.325 9.267-0.666 9.216-4.864 10.957-5.683 6.298-3.328 10.189c2.406 3.891 1.28 9.165-2.509 11.725s-4.25 7.373-1.126 10.65c3.174 3.277 3.174 8.653 0 11.981s-2.662 8.090 1.126 10.65 4.864 7.834 2.509 11.725c-2.406 3.891-0.922 8.448 3.328 10.189s6.4 6.656 4.864 10.957 0.87 8.448 5.325 9.267 7.629 5.171 7.014 9.677 2.611 8.090 7.168 7.936c4.557-0.154 8.55 3.482 8.909 7.987s4.25 7.373 8.653 6.298 9.114 1.587 10.394 5.99 5.683 6.349 9.779 4.352c4.096-1.997 9.216-0.307 11.366 3.686s6.861 5.018 10.496 2.202 8.96-2.253 11.878 1.229 7.731 3.482 10.701 0 8.294-4.045 11.878-1.229 8.294 1.792 10.496-2.202 7.27-5.683 11.366-3.686c4.096 1.997 8.499 0 9.779-4.352s5.939-7.066 10.394-5.99 8.346-1.741 8.653-6.298 4.352-8.141 8.909-7.987c4.557 0.154 7.782-3.43 7.168-7.936s2.56-8.858 7.014-9.677 6.912-4.966 5.325-9.267 0.666-9.216 4.864-10.957 5.683-6.298 3.328-10.189c-2.406-3.891-1.28-9.165 2.509-11.725s4.25-7.373 1.126-10.65-3.226-8.755-0.051-12.032z" />
+<glyph unicode="&#xe9df;" glyph-name="megaphone" d="M881.818 612.864c-81.101 188.723-211.558 332.288-277.555 305.51-112.077-45.619 66.765-264.397-483.686-488.090-47.565-19.405-59.597-96.666-39.68-142.95 19.866-46.182 84.89-92.211 132.454-72.909 8.243 3.379 38.451 13.107 38.451 13.107 33.946-45.619 69.478-18.586 82.125-47.514 15.155-34.816 48.077-110.49 59.29-136.192s36.608-49.51 55.040-42.496c18.381 7.014 80.998 30.822 104.96 39.885 23.962 9.114 29.645 30.515 22.323 47.309-7.885 18.176-40.243 23.501-49.51 44.698-9.216 21.094-39.373 88.986-48.026 110.387-11.776 29.082 13.261 52.787 49.664 56.525 250.573 26.214 297.421-128.614 382.72-93.901 65.894 26.88 52.48 218.061-28.57 406.63zM853.606 306.893c-14.694-5.888-113.306 71.782-176.282 218.47-63.027 146.586-55.091 280.576-40.448 286.566 14.643 5.888 110.848-87.91 173.824-234.496 63.027-146.586 57.549-264.55 42.906-270.541z" />
+<glyph unicode="&#xe9e0;" glyph-name="menu1" d="M839.68 512h-655.36c-28.262 0-30.72-22.886-30.72-51.2s2.458-51.2 30.72-51.2h655.36c28.262 0 30.72 22.886 30.72 51.2s-2.458 51.2-30.72 51.2zM839.68 307.2h-655.36c-28.262 0-30.72-22.886-30.72-51.2s2.458-51.2 30.72-51.2h655.36c28.262 0 30.72 22.886 30.72 51.2s-2.458 51.2-30.72 51.2zM184.32 614.4h655.36c28.262 0 30.72 22.886 30.72 51.2s-2.458 51.2-30.72 51.2h-655.36c-28.262 0-30.72-22.886-30.72-51.2s2.458-51.2 30.72-51.2z" />
+<glyph unicode="&#xe9e1;" glyph-name="message" d="M921.6 665.6v-358.4c0-56.32-46.080-102.4-102.4-102.4h-204.8v-153.6l-204.8 153.6h-204.8c-56.371 0-102.4 46.080-102.4 102.4v358.4c0 56.32 46.029 102.4 102.4 102.4h614.4c56.32 0 102.4-46.080 102.4-102.4z" />
+<glyph unicode="&#xe9e2;" glyph-name="mic1" d="M839.629 581.478v-141.158c0-114.483-84.122-237.005-276.429-253.901v-135.219h133.12c11.264 0 20.48-9.216 20.48-20.48v-61.44c0-11.315-9.267-20.48-20.48-20.48h-368.64c-11.264 0-20.48 9.216-20.48 20.48v61.44c0 11.264 9.216 20.48 20.429 20.48h133.171v135.219c-192.41 16.896-276.48 139.418-276.48 253.901v141.158c0 11.315 9.216 20.48 20.48 20.48h30.72c11.264 0 20.48-9.216 20.48-20.48v-141.158c0-68.403 53.914-184.32 256-184.32 202.035 0 256 115.917 256 184.32v141.158c0 11.315 9.216 20.48 20.429 20.48h30.771c11.264 0.051 20.429-9.165 20.429-20.48zM512 358.4c120.115 0 153.6 49.408 153.6 81.92v161.69h-307.2v-161.69c0-32.512 33.382-81.92 153.6-81.92zM665.6 890.88c0 32.614-33.485 81.92-153.6 81.92-120.218 0-153.6-49.306-153.6-81.92v-217.19h307.2v217.19z" />
+<glyph unicode="&#xe9e3;" glyph-name="minus1" d="M819.2 460.8c0-28.314-2.458-51.2-30.771-51.2h-552.858c-28.262 0-30.771 22.886-30.771 51.2s2.509 51.2 30.771 51.2h552.909c28.262 0 30.72-22.886 30.72-51.2z" />
+<glyph unicode="&#xe9e4;" glyph-name="mobile1" d="M717.005 972.8h-410.010c-56.422 0-102.195-45.773-102.195-102.195v-819.558c0-56.474 45.773-102.246 102.195-102.246h409.958c56.474 0 102.246 45.773 102.246 102.195v819.61c0 56.422-45.773 102.195-102.195 102.195zM512 0c-35.328 0-64 22.886-64 51.2s28.672 51.2 64 51.2 64-22.886 64-51.2-28.672-51.2-64-51.2zM716.8 153.6h-409.6v716.8h409.6v-716.8z" />
+<glyph unicode="&#xe9e5;" glyph-name="modern-mic" d="M62.874 415.181c-11.315-7.578-14.95-23.552-8.141-35.328l66.355-114.893c6.81-11.776 22.426-16.64 34.662-10.65l202.65 98.15v-352.461h102.4v402.125l208.435 101.018-134.144 232.448-472.218-320.41zM944.998 817.306c-57.395 99.328-184.525 133.376-283.955 75.981-46.592-26.88-77.21-69.581-92.211-117.197l152.371-263.987c48.691-10.854 101.018-5.632 147.712 21.248 99.43 57.395 133.478 184.474 76.083 283.955z" />
+<glyph unicode="&#xe9e6;" glyph-name="moon" d="M702.413 880.64c35.123-19.712 68.198-44.39 98.099-74.189 175.104-175.206 175.104-459.059 0-634.163s-459.008-175.104-634.163 0c-29.85 29.901-54.528 63.027-74.189 98.099 170.752-95.59 390.81-71.014 536.013 74.189 145.254 145.254 169.882 365.261 74.24 536.064z" />
+<glyph unicode="&#xe9e7;" glyph-name="mouse" d="M788.582 235.418l-134.502 385.792c-36.966 106.138-151.859 164.864-260.71 135.834l-101.171 196.352c-9.165 17.715-30.618 24.525-48.026 15.155-17.357-9.37-24.013-31.437-14.797-49.203l98.765-191.59c-78.694-52.224-119.603-151.245-93.645-244.429l109.517-394.035c30.822-110.694 157.696-167.117 285.235-128.102 125.901 44.186 197.12 165.734 159.334 274.227zM455.629 515.942c-37.376-12.288-77.363 8.806-89.344 47.155-12.032 38.298 8.602 79.258 45.926 91.546 37.376 12.288 77.414-8.806 89.395-47.104s-8.602-79.309-45.978-91.597z" />
+<glyph unicode="&#xe9e8;" glyph-name="music1" d="M819.2 921.6h-614.4c-28.314 0-51.2-22.886-51.2-51.2v-819.2c0-28.262 22.886-51.2 51.2-51.2h614.4c28.314 0 51.2 22.938 51.2 51.2v819.2c0 28.262-22.886 51.2-51.2 51.2zM655.104 383.027c-9.472-19.558-19.098-20.582-14.899 0 10.803 53.197 3.482 167.475-77.005 180.173v-243.2c0-49.818-22.938-93.184-83.917-112.794-59.187-18.893-125.389 0.819-140.902 43.315s19.302 94.208 77.722 115.507c32.614 11.878 70.4 14.95 95.898 5.171v345.6h51.2c0-120.576 208.128-94.157 91.904-333.773z" />
+<glyph unicode="&#xe9e9;" glyph-name="network" d="M270.029 618.752c10.24 0 20.173-1.485 29.491-4.403 35.328 39.578 74.496 75.622 116.89 107.52-1.792 7.475-2.765 15.309-2.765 23.296 0 11.11 1.843 21.811 5.222 31.795-47.565 33.997-99.174 62.618-154.163 84.685-51.456-31.795-96.358-73.267-132.198-121.907 26.573-47.104 58.163-90.982 94.106-130.918 13.107 6.349 27.802 9.933 43.418 9.933zM169.779 518.554c0 14.080 2.97 27.494 8.141 39.578-32.154 35.43-61.286 73.523-86.784 114.125-32-63.59-50.176-135.424-50.176-211.507 0-88.013 24.269-170.394 66.304-240.896 15.053 84.685 43.571 164.813 82.944 238.182-12.8 16.794-20.429 37.837-20.429 60.518zM513.843 845.363c26.47 0 50.432-10.291 68.403-27.085 52.275 22.477 107.315 39.782 164.608 50.79-69.171 39.885-149.35 62.771-234.854 62.771-58.317 0-114.125-10.701-165.683-30.106 40.909-20.224 79.923-43.776 116.582-70.4 14.95 8.909 32.307 14.029 50.944 14.029zM663.654 373.35c6.246 13.005 15.104 24.525 26.061 33.587-29.594 90.982-76.442 174.285-136.806 245.914-11.981-5.12-25.19-7.885-39.117-7.885-21.76 0-41.779 7.014-58.214 18.688-36.352-27.597-69.99-58.522-100.557-92.314 9.626-15.309 15.206-33.382 15.206-52.787 0-10.394-1.587-20.48-4.608-30.003 87.91-58.675 189.133-99.021 298.035-115.2zM793.651 238.029c1.331-18.995 2.099-38.093 2.099-57.395 0-33.997-2.15-67.482-6.246-100.403 79.872 58.317 140.698 141.21 171.366 237.517-36.352-8.806-73.626-15.104-111.667-18.688-8.858-27.494-29.286-49.613-55.552-61.030zM640.205 305.971c-116.326 19.302-224.102 63.693-317.952 127.181-15.258-9.318-33.126-14.797-52.275-14.797-7.117 0-13.926 0.717-20.582 2.099-44.902-85.094-73.626-180.070-81.869-280.781 44.851-48.128 99.533-86.886 161.024-112.896 76.39 117.402 183.091 214.477 311.654 279.194zM828.211 809.933c-75.52-7.322-147.61-26.317-214.682-54.682 0.307-3.379 0.512-6.707 0.512-10.086 0-15.821-3.789-30.72-10.291-43.981 67.123-78.797 119.142-170.496 152.013-270.899 40.806-0.819 75.622-25.702 90.624-61.184 45.363 4.608 89.498 13.312 131.994 25.805 3.072 21.504 4.71 43.52 4.71 65.894-0.051 138.445-59.75 262.963-154.88 349.133zM690.637 252.467c-120.013-56.218-220.365-142.797-293.018-248.627 36.608-9.165 74.906-14.080 114.381-14.080 71.014 0 138.342 15.821 198.758 43.981 9.728 47.514 14.848 96.614 14.848 146.893 0 18.176-0.819 36.198-2.202 54.016-12.083 3.891-23.194 9.882-32.768 17.818z" />
+<glyph unicode="&#xe9ea;" glyph-name="new-message" d="M930.509 879.309c-56.422 56.422-106.598 39.782-106.598 39.782l-442.317-441.958-74.394-221.133 221.030 74.445 442.061 442.266c0 0 16.589 50.176-39.782 106.598zM542.976 378.624l-24.115-24.064-75.418-25.6c-5.325 12.288-11.981 24.422-25.498 37.888-13.517 13.517-25.6 20.173-37.888 25.498l25.6 75.418 24.115 24.064c0 0 39.731 4.557 78.694-34.458 39.014-38.963 34.509-78.746 34.509-78.746zM819.2 102.4h-665.6v665.6h256l102.4 102.4h-358.4c-56.32 0-102.4-46.080-102.4-102.4v-665.6c0-56.32 46.080-102.4 102.4-102.4h665.6c56.32 0 102.4 46.080 102.4 102.4v358.4l-102.4-102.4v-256z" />
+<glyph unicode="&#xe9eb;" glyph-name="new" d="M956.928 340.787l-88.422 78.746c-25.6 22.784-25.6 60.109 0 82.893l88.422 78.797c25.6 22.784 18.79 43.981-15.155 47.309l-117.248 11.11c-33.894 3.174-52.224 32.41-40.499 64.819l62.208 173.21c11.674 32.512-2.611 44.288-31.693 26.317l-138.291-85.504c-29.082-18.125-66.714-8.192-83.507 21.811l-50.074 89.395c-16.845 30.106-44.646 30.208-61.798 0.41l-46.541-80.896c-17.254-29.952-56.73-42.65-87.706-28.467l-81.92 37.581c-31.13 14.336-54.938-2.15-53.094-36.659l4.403-82.688c1.894-34.509-23.603-69.99-56.525-78.899l-79.104-21.197c-32.87-8.909-38.912-34.816-13.312-57.6l88.422-78.797c25.6-22.784 25.6-60.109 0-82.893l-88.422-78.797c-25.6-22.784-18.842-44.902 15.002-48.998l107.264-13.005c33.843-4.096 52.685-34.304 41.882-67.123l-54.989-166.81c-10.803-32.819 4.608-45.517 34.202-28.416l126.106 73.011c29.594 17.101 69.427 7.68 88.525-20.89l52.326-78.797c19.046-28.621 47.667-27.085 63.488 3.482l46.029 88.73c15.872 30.618 53.862 43.11 84.378 27.802l88.781-44.39c30.618-15.206 54.118 0.512 52.275 34.918l-4.454 82.79c-1.792 34.509 23.603 69.888 56.627 78.797l79.002 21.299c32.973 8.909 39.014 34.816 13.414 57.6zM563.2 256h-102.4v102.4h102.4v-102.4zM563.2 409.6h-102.4v256h102.4v-256z" />
+<glyph unicode="&#xe9ec;" glyph-name="news" d="M716.8 716.8h-204.8v-102.4h204.8v102.4zM716.8 563.2h-204.8v-51.2h204.8v51.2zM460.8 716.8h-153.6v-204.8h153.6v204.8zM460.8 409.6h256v51.2h-256v-51.2zM614.4 307.2h102.4v51.2h-102.4v-51.2zM716.8 256h-409.6v-51.2h409.6v51.2zM563.2 358.4h-256v-51.2h256v51.2zM409.6 460.8h-102.4v-51.2h102.4v51.2zM870.4 921.6h-716.8c-28.314 0-51.2-22.886-51.2-51.2v-819.2c0-28.262 22.886-51.2 51.2-51.2h716.8c28.314 0 51.2 22.938 51.2 51.2v819.2c0 28.262-22.886 51.2-51.2 51.2zM819.2 102.4h-614.4v716.8h614.4v-716.8z" />
+<glyph unicode="&#xe9ed;" glyph-name="note" d="M766.515 489.574c-21.606-33.587-33.075-19.2-26.624 0 17.203 50.842 17.818 231.834-125.491 254.413l-0.102-590.387c0-84.838-88.832-204.8-255.898-204.8-84.838 0-153.6 44.595-153.6 128 0 108.493 98.662 174.080 204.8 174.080 67.994 0 102.4-20.48 102.4-20.48v742.4h102.4c0-137.011 306.483-242.893 152.115-483.226z" />
+<glyph unicode="&#xe9ee;" glyph-name="notification1" d="M768 543.744v-441.344h-614.4v614.4h441.344c-3.738 16.486-6.144 33.536-6.144 51.2s2.406 34.714 6.144 51.2h-441.344c-56.422 0-102.4-46.080-102.4-102.4v-614.4c0-56.32 46.080-102.4 102.4-102.4h614.4c56.32 0 102.4 46.080 102.4 102.4v441.344c-16.486-3.738-33.536-6.144-51.2-6.144s-34.714 2.406-51.2 6.144zM819.2 921.6c-84.838 0-153.6-68.762-153.6-153.6s68.762-153.6 153.6-153.6 153.6 68.762 153.6 153.6-68.762 153.6-153.6 153.6z" />
+<glyph unicode="&#xe9ef;" glyph-name="old-mobile" d="M696.32 819.2h-337.92v153.6h-102.4v-952.32c0-39.424 32.205-71.68 71.578-71.68h368.742c39.373 0 71.68 32.307 71.68 71.68v726.989c0 39.526-32.307 71.731-71.68 71.731zM409.6 204.8c-35.379 0-64 22.886-64 51.2s28.621 51.2 64 51.2 64-22.886 64-51.2-28.621-51.2-64-51.2zM473.6 102.4c0-28.314-28.621-51.2-64-51.2s-64 22.886-64 51.2 28.621 51.2 64 51.2 64-22.886 64-51.2zM358.4 409.6v307.2h307.2v-307.2h-307.2zM614.4 204.8c-35.379 0-64 22.886-64 51.2s28.621 51.2 64 51.2 64-22.886 64-51.2-28.621-51.2-64-51.2zM678.4 102.4c0-28.314-28.621-51.2-64-51.2s-64 22.886-64 51.2 28.621 51.2 64 51.2 64-22.886 64-51.2z" />
+<glyph unicode="&#xe9f0;" glyph-name="old-phone" d="M883.507 345.446c-4.915 34.15-31.283 60.774-65.229 68.71-131.942 30.925-165.018 106.906-170.598 191.181-23.398 4.352-65.024 9.062-135.68 9.062s-112.282-4.71-135.68-9.062c-5.581-84.275-38.656-160.256-170.598-191.181-33.946-7.987-60.314-34.56-65.229-68.71l-25.446-176.23c-8.96-62.054 36.608-118.016 99.994-118.016h593.92c63.334 0 108.954 55.962 99.994 118.016l-25.446 176.23zM512 179.61c-71.424 0-129.331 57.344-129.331 128s57.907 128 129.331 128 129.331-57.344 129.331-128-57.958-128-129.331-128zM1021.44 665.6c-1.229 76.8-196.71 204.749-509.44 204.8-312.781-0.051-508.262-128-509.44-204.8s1.075-176.742 129.792-160.102c150.579 19.507 141.312 72.090 141.312 147.251 0 52.429 122.47 65.075 238.336 65.075s238.285-12.646 238.336-65.075c0-75.162-9.267-127.744 141.312-147.251 128.666-16.64 130.97 83.302 129.792 160.102z" />
+<glyph unicode="&#xe9f1;" glyph-name="palette" d="M805.888 839.27c-180.634 60.723-361.779 49.203-548.864-65.229-146.074-89.242-241.562-311.091-210.074-470.118 37.274-187.955 222.771-306.944 473.242-238.131 270.080 74.189 335.309 232.755 326.605 273.101s-136.448 84.582-87.962 179.098c60.826 118.426 160.205 58.829 203.878 83.046 43.776 24.166 27.597 176.23-156.826 238.234zM619.213 291.123c-40.858-11.162-83.098 13.107-94.362 54.221-11.315 41.216 12.698 83.507 53.555 94.669s83.046-13.005 94.362-54.221c11.264-41.114-12.698-83.507-53.555-94.669z" />
+<glyph unicode="&#xe9f2;" glyph-name="paper-plane" d="M954.368 837.939c-17.613-6.195-886.835-312.525-903.987-318.566-14.541-5.12-17.766-17.664-0.512-24.525 20.531-8.243 194.355-77.875 194.355-77.875v0l115.2-46.131c0 0 554.906 407.45 562.381 412.979 7.578 5.53 16.282-4.864 10.803-10.803-5.478-5.99-402.995-435.866-402.995-435.866v-0.102l-23.142-25.754 30.669-16.486c0 0 238.080-128.205 255.078-137.318 14.899-7.987 34.202-1.382 38.502 17.101 5.069 21.811 145.664 627.763 148.787 641.28 4.045 17.562-7.578 28.262-25.139 22.067zM358.4 94.106c0-12.595 7.117-16.128 16.947-7.219 12.851 11.725 145.92 131.123 145.92 131.123l-162.867 84.173v-208.077z" />
+<glyph unicode="&#xe9f3;" glyph-name="pencil1" d="M752.128 836.557c-96.973 70.605-165.99 69.069-192.205 64.819-7.373-1.178-13.568-5.427-17.92-11.418l-352.41-486.246c-14.182-19.558-22.374-42.803-23.654-66.918l-15.155-287.949c-1.075-20.736 19.558-35.738 38.912-28.314l269.107 102.912c22.682 8.704 42.394 23.808 56.627 43.469l352.256 486.093c4.557 6.298 6.4 13.978 5.12 21.658-4.301 26.931-24.934 92.262-120.678 161.894zM459.622 180.992l-104.602-40.397c-4.096-1.587-8.653-0.307-11.315 3.174-13.466 17.152-29.491 34.15-55.040 52.736-25.549 18.534-46.643 28.57-67.072 36.147-4.096 1.536-6.707 5.427-6.451 9.83l6.246 111.923 28.109 38.656c0 0 62.925 8.653 145.050-51.098 82.022-59.699 93.235-122.266 93.235-122.266l-28.16-38.707z" />
+<glyph unicode="&#xe9f4;" glyph-name="phone1" d="M574.925 397.875c-81.050-80.998-174.95-158.515-212.070-121.395-53.094 53.094-85.862 99.379-203.008 5.222-117.094-94.106-27.136-156.877 24.32-208.282 59.392-59.392 280.781-3.174 499.61 215.603 218.778 218.829 274.842 440.218 215.398 499.61-51.456 51.507-113.92 141.414-208.026 24.32-94.157-117.094-47.923-149.862 5.274-203.008 36.966-37.12-40.499-131.021-121.498-212.070z" />
+<glyph unicode="&#xe9f5;" glyph-name="pie-chart1" d="M563.2 923.75v-462.797c0-28.365-22.989-51.354-51.354-51.354h-462.797c25.498-233.216 222.976-414.72 462.95-414.72 257.331 0 465.92 208.589 465.92 465.92 0 240.026-181.504 437.453-414.72 462.95zM460.8 923.75c-216.371-23.654-388.096-195.379-411.75-411.75h411.75v411.75z" />
+<glyph unicode="&#xe9f6;" glyph-name="pin" d="M244.429 190.106l-107.776-166.4 11.469-54.426 54.272 11.622 107.725 166.298c-11.469 6.144-22.835 12.698-33.843 19.968-11.162 7.219-21.811 14.95-31.846 22.938zM700.723 248.218c0.717 1.485 1.178 3.123 1.843 4.71 2.714 5.99 5.12 11.981 7.066 18.278 0.307 1.126 0.461 2.253 0.819 3.277 1.997 6.963 3.686 13.824 5.018 20.89 0 0.358 0 0.614 0 1.075 9.984 59.853-7.424 126.618-47.258 186.931l56.832 87.757c65.485-8.346 122.112 8.141 149.35 50.278 47.258 72.858-10.24 194.15-128.256 271.002-118.118 76.902-252.058 80.128-299.213 7.373-27.341-42.189-19.354-100.71 15.002-157.338l-56.934-87.757c-71.117 11.93-139.059 0.819-189.594-32.768-0.307-0.102-0.666-0.205-0.87-0.41-5.888-3.994-11.622-8.397-16.998-13.005-0.87-0.717-1.894-1.382-2.611-2.099-5.018-4.301-9.523-9.114-13.875-13.926-1.024-1.229-2.458-2.304-3.43-3.584-5.427-6.195-10.445-12.749-14.848-19.712-70.861-109.21-10.394-274.483 134.81-369.101 145.306-94.618 320.512-82.637 391.219 26.573 4.454 6.912 8.55 14.131 11.93 21.555zM658.995 758.067c-45.414 29.542-67.584 76.134-49.408 104.243 18.125 28.006 69.683 26.726 114.995-2.816 45.517-29.542 67.482-76.237 49.408-104.243s-69.53-26.726-114.995 2.816z" />
+<glyph unicode="&#xe9f7;" glyph-name="plus1" d="M819.2 460.8c0-28.314-2.458-51.2-30.771-51.2h-225.229v-225.229c0-28.262-22.886-30.771-51.2-30.771s-51.2 2.509-51.2 30.771v225.229h-225.229c-28.262 0-30.771 22.886-30.771 51.2s2.509 51.2 30.771 51.2h225.229v225.229c0 28.314 22.886 30.771 51.2 30.771s51.2-2.458 51.2-30.771v-225.229h225.229c28.314 0 30.771-22.886 30.771-51.2z" />
+<glyph unicode="&#xe9f8;" glyph-name="popup" d="M819.2 870.4h-410.675c-56.269 0-101.325-45.056-101.325-101.376v-410.624c0-56.32 46.080-102.4 102.4-102.4h409.6c56.32 0 102.4 46.080 102.4 102.4v409.6c0 56.32-46.080 102.4-102.4 102.4zM819.2 358.4h-409.6v409.6h409.6v-409.6zM204.8 460.8h-102.4v-307.2c0-56.32 46.080-102.4 102.4-102.4h307.2v102.4h-307.2v307.2z" />
+<glyph unicode="&#xe9f9;" glyph-name="power-plug" d="M0 256v-76.698c0-14.182 11.52-25.702 25.702-25.702h51.046c14.131 0 25.651 11.52 25.651 25.702v76.698c0 49.101 41.011 116.378 102.4 142.285v107.776c-118.579-27.443-204.8-146.125-204.8-250.061zM617.728 732.109l-129.536-97.178c-17.766-13.312-39.373-20.531-61.594-20.531h-119.142c-28.416 0-51.456-23.040-51.456-51.456v-204.339c0-28.365 23.040-51.405 51.456-51.405h119.142c22.221 0 43.827-7.219 61.594-20.531l129.587-97.178c31.027-23.296 68.813-35.891 107.622-35.891h93.798v614.4h-93.798c-38.81 0-76.595-12.595-107.674-35.891zM870.4 665.6v-102.4h153.6v102.4h-153.6zM870.4 256h153.6v102.4h-153.6v-102.4z" />
+<glyph unicode="&#xe9fa;" glyph-name="price-ribbon" d="M656.64 427.366c6.042 13.21 22.784 25.446 37.222 27.085s27.597 14.848 29.235 29.286c1.741 14.336 13.926 31.13 27.085 37.222 13.21 6.093 21.658 22.682 18.893 36.864-2.97 14.234 3.482 33.946 14.131 43.725 10.701 9.933 13.619 28.314 6.502 41.011-7.117 12.595-7.117 33.331 0 45.926 7.117 12.749 4.198 31.13-6.502 41.011-10.65 9.882-17.050 29.542-14.131 43.725 2.765 14.234-5.683 30.874-18.893 36.966-13.107 6.093-25.344 22.784-27.085 37.222-1.69 14.336-14.848 27.546-29.235 29.286-14.438 1.69-31.181 13.926-37.222 27.034-6.144 13.21-22.733 21.658-36.966 18.739-14.234-2.816-33.894 3.584-43.725 14.234-9.882 10.752-28.314 13.619-40.96 6.502s-33.382-7.117-45.978 0c-12.646 7.219-31.027 4.352-41.011-6.4-9.779-10.65-29.44-17.050-43.725-14.234-14.182 2.867-30.822-5.581-36.864-18.79-6.093-13.107-22.835-25.344-37.274-26.982-14.438-1.792-27.597-14.95-29.286-29.338-1.741-14.387-13.875-31.13-27.085-37.171-13.107-6.093-21.606-22.733-18.739-36.966 2.816-14.182-3.584-33.894-14.234-43.725s-13.619-28.262-6.502-41.011c7.117-12.595 7.117-33.331 0-45.926-7.117-12.698-4.198-31.078 6.502-41.062 10.701-9.728 17.050-29.44 14.234-43.725-2.867-14.182 5.632-30.822 18.739-36.864 13.21-6.093 25.344-22.886 27.034-37.222 1.741-14.438 14.848-27.648 29.286-29.286s31.181-13.926 37.274-27.085c6.042-13.107 22.682-21.555 36.864-18.739 14.234 2.816 33.946-3.533 43.725-14.234 9.933-10.65 28.314-13.619 41.011-6.502 12.595 7.117 33.331 7.117 45.978 0s31.078-4.147 40.96 6.502c9.882 10.752 29.491 17.050 43.725 14.234 14.285-2.867 30.925 5.581 37.018 18.688zM512 491.571c-96.154 0-174.080 77.978-174.080 174.029 0 96.154 77.926 174.131 174.080 174.131s174.080-77.978 174.080-174.131c0-96.051-77.978-174.029-174.080-174.029zM305.92 388.659l-63.642-360.909 160.154 23.757 142.387-77.107 63.386 359.475c-30.566-8.858-62.822-13.875-96.256-13.875-77.261 0-148.429 25.702-206.029 68.659zM714.803 386.202c-15.923-11.571-32.87-21.811-50.688-30.566l-38.298-216.883 172.493 93.594-83.507 153.856z" />
+<glyph unicode="&#xe9fb;" glyph-name="price-tag1" d="M992.666 952.064c-5.683 16.077-23.245 24.576-39.373 18.995s-24.627-23.296-19.046-39.424c47.565-136.704-46.848-238.797-118.835-293.478l-29.082 41.677c-9.779 13.978-31.642 25.6-48.64 25.805l-163.226-0.717c-16.998 0.307-42.24-7.475-56.166-17.306l-480.973-337.254c-23.296-16.384-28.928-48.486-12.646-71.885l218.573-312.73c16.384-23.296 42.547-20.48 65.894-4.198l480.973 337.306c13.824 9.779 29.798 30.874 35.43 47.002l51.098 161.024c5.632 16.077 2.202 40.602-7.578 54.579l-17.715 25.395c96.666 74.086 197.018 205.005 141.312 365.21zM768.87 472.934c-37.222-26.112-88.627-16.998-114.688 20.275-26.163 37.376-17.050 88.781 20.224 114.995 29.594 20.736 67.994 19.251 95.642-0.87-13.926-8.397-23.501-13.312-25.293-14.080-15.411-7.322-22.016-25.805-14.746-41.216 5.325-11.213 16.435-17.818 28.006-17.818 4.403 0 8.909 1.024 13.158 3.021 9.933 4.71 20.582 10.291 31.693 16.896 4.966-30.413-7.117-62.31-33.997-81.203z" />
+<glyph unicode="&#xe9fc;" glyph-name="print" d="M76.851 665.6h870.4c29.184 0 24.422 31.13 9.882 36.198-14.592 5.069-176.282 66.202-204.493 66.202h-35.84v153.6h-409.6v-153.6h-35.789c-28.16 0-189.901-61.133-204.442-66.202s-19.302-36.198 9.882-36.198zM972.8 614.4h-921.6c-28.16 0-51.2-23.040-51.2-51.2v-256c0-28.211 23.040-51.2 51.2-51.2h116.89l-45.158-256h778.189l-45.21 256h116.89c28.211 0 51.2 22.989 51.2 51.2v256c0 28.16-22.989 51.2-51.2 51.2zM235.674 102.4l61.338 358.554h430.029l61.389-358.554h-552.755z" />
+<glyph unicode="&#xe9fd;" glyph-name="progress-empty" d="M921.6 716.8h-819.2c-56.32 0-102.4-46.080-102.4-102.4v-307.2c0-56.32 46.080-102.4 102.4-102.4h819.2c56.32 0 102.4 46.080 102.4 102.4v307.2c0 56.32-46.080 102.4-102.4 102.4zM921.6 307.2h-819.2v307.2h819.2v-307.2z" />
+<glyph unicode="&#xe9fe;" glyph-name="progress-full" d="M921.6 716.8h-819.2c-56.32 0-102.4-46.080-102.4-102.4v-307.2c0-56.32 46.080-102.4 102.4-102.4h819.2c56.32 0 102.4 46.080 102.4 102.4v307.2c0 56.32-46.080 102.4-102.4 102.4zM921.6 307.2h-819.2v307.2h819.2v-307.2zM358.4 563.2h-204.8v-204.8h204.8v204.8zM614.4 563.2h-204.8v-204.8h204.8v204.8zM870.4 563.2h-204.8v-204.8h204.8v204.8z" />
+<glyph unicode="&#xe9ff;" glyph-name="progress-one" d="M921.6 716.8h-819.2c-56.32 0-102.4-46.080-102.4-102.4v-307.2c0-56.32 46.080-102.4 102.4-102.4h819.2c56.32 0 102.4 46.080 102.4 102.4v307.2c0 56.32-46.080 102.4-102.4 102.4zM921.6 307.2h-819.2v307.2h819.2v-307.2zM358.4 563.2h-204.8v-204.8h204.8v204.8z" />
+<glyph unicode="&#xea00;" glyph-name="progress-two" d="M921.6 716.8h-819.2c-56.32 0-102.4-46.080-102.4-102.4v-307.2c0-56.32 46.080-102.4 102.4-102.4h819.2c56.32 0 102.4 46.080 102.4 102.4v307.2c0 56.32-46.080 102.4-102.4 102.4zM921.6 307.2h-819.2v307.2h819.2v-307.2zM358.4 563.2h-204.8v-204.8h204.8v204.8zM614.4 563.2h-204.8v-204.8h204.8v204.8z" />
+<glyph unicode="&#xea01;" glyph-name="publish" d="M510.31 553.318l-254.31-246.118h153.6v-307.2h204.8v307.2h153.6l-257.69 246.118zM921.6 921.6h-819.2c-56.32 0-102.4-46.080-102.4-102.4v-614.4c0-56.32 46.080-102.4 102.4-102.4h204.8v102.4h-204.8v460.8h819.2v-460.8h-204.8v-102.4h204.8c56.32 0 102.4 46.080 102.4 102.4v614.4c0 56.32-46.080 102.4-102.4 102.4zM128 755.2c-21.197 0-38.4 17.203-38.4 38.4s17.203 38.4 38.4 38.4c21.197 0 38.4-17.203 38.4-38.4s-17.203-38.4-38.4-38.4zM230.4 755.2c-21.197 0-38.4 17.203-38.4 38.4s17.203 38.4 38.4 38.4c21.197 0 38.4-17.203 38.4-38.4s-17.203-38.4-38.4-38.4zM921.6 768h-614.4v51.2h615.373l-0.973-51.2z" />
+<glyph unicode="&#xea02;" glyph-name="quote" d="M272.128 798.669c-82.432 0-149.299-68.762-149.299-153.6 0-84.787 66.867-153.6 149.299-153.6 149.248 0 49.766-296.909-149.299-296.909v-71.68c355.277-0.051 494.49 675.789 149.299 675.789zM702.208 798.669c-82.381 0-149.248-68.762-149.248-153.6 0-84.787 66.867-153.6 149.248-153.6 149.299 0 49.818-296.909-149.248-296.909v-71.68c355.226-0.051 494.438 675.789 149.248 675.789z" />
+<glyph unicode="&#xea03;" glyph-name="radio" d="M870.4 563.2h-613.325l459.469 269.568-50.944 88.832-576.717-336.435c-23.347-13.619-37.683-38.554-37.683-65.587v-417.178c0-56.576 45.824-102.4 102.4-102.4h716.8c56.576 0 102.4 45.824 102.4 102.4v358.4c0 56.576-45.824 102.4-102.4 102.4zM793.6 102.4c-42.394 0-76.8 34.406-76.8 76.8s34.406 76.8 76.8 76.8 76.8-34.406 76.8-76.8c0-42.394-34.406-76.8-76.8-76.8zM870.4 358.4h-716.8v102.4h716.8v-102.4z" />
+<glyph unicode="&#xea04;" glyph-name="reply-all" d="M369.92 677.53v137.267l-369.92-330.547 369.92-342.579v142.182l-216.32 200.397 216.32 193.28zM625.92 616.806v197.99l-369.92-330.547 369.92-342.579v223.078c168.55 0 270.899-21.606 398.080-246.272 0 0.051-18.842 498.33-398.080 498.33z" />
+<glyph unicode="&#xea05;" glyph-name="reply1" d="M972.8 118.528c0 0-113.92 498.278-563.2 498.278v203.981l-358.4-336.538 358.4-342.528v223.078c243.866 0.051 436.019-21.555 563.2-246.272z" />
+<glyph unicode="&#xea06;" glyph-name="retweet" d="M256 307.2v256h102.4l-179.2 204.8-179.2-204.8h102.4v-307.2c0-56.525 45.824-102.4 102.4-102.4h485.478l-135.066 153.6h-299.213zM468.787 614.4l-135.066 153.6h485.478c56.525 0 102.4-45.926 102.4-102.4v-307.2h102.4l-179.2-204.8-179.2 204.8h102.4v256h-299.213z" />
+<glyph unicode="&#xea07;" glyph-name="rocket1" d="M610.97 303.667c0 0 361.421 260.813 321.331 559.309-0.87 6.502-3.021 10.906-5.734 13.722-2.765 2.816-7.014 5.018-13.466 5.888-291.686 41.011-546.509-328.806-546.509-328.806-221.082 26.47-205.005-17.613-305.869-259.891-19.302-46.182 11.981-62.106 46.285-49.101 34.304 12.902 109.978 41.523 109.978 41.523l132.608-135.578c0 0-27.955-77.517-40.602-112.589-12.698-35.123 2.816-67.123 48.026-47.411 236.749 103.219 279.859 86.733 253.952 312.934zM662.63 606.566c-30.618 31.386-30.618 82.125 0 113.51 30.618 31.283 80.23 31.283 110.899 0 30.618-31.283 30.618-82.074 0-113.51-30.669-31.283-80.333-31.283-110.899 0z" />
+<glyph unicode="&#xea08;" glyph-name="round-brush" d="M621.312 496.435c-130.97 96.205-343.040-59.904-390.758-270.541-36.762-162.304-207.002-155.648-204.595-177.357 2.355-21.709 382.618-56.474 519.987 57.498 128.307 106.496 218.982 284.877 75.366 390.4zM734.106 895.59l-172.186-263.987c56.422-9.165 186.112-96.512 210.995-159.181l225.075 217.395c-26.931 76.954-176.026 196.813-263.885 205.773z" />
+<glyph unicode="&#xea09;" glyph-name="rss1" d="M122.88 849.92v-121.19c362.803 0 656.896-294.195 656.896-656.998h121.293c0 429.773-348.416 778.189-778.189 778.189zM122.88 607.386v-121.293c228.813 0 414.362-185.498 414.362-414.413h121.242c0 295.834-239.821 535.706-535.603 535.706zM239.053 304.179c-64.205 0-116.224-52.122-116.224-116.275s52.019-116.224 116.224-116.224 116.173 52.019 116.173 116.224-51.968 116.275-116.173 116.275z" />
+<glyph unicode="&#xea0a;" glyph-name="ruler" d="M729.549 950.374l-707.123-707.226c-29.901-29.901-29.901-78.746 0.102-108.749l163.072-163.174c29.901-29.901 78.899-30.003 108.749-0.102l707.226 707.226c29.901 29.952 29.901 78.899 0 108.8l-163.123 163.226c-30.054 30.003-78.95 29.85-108.902 0zM201.165 188.826l-38.861-38.861-97.075 97.126 38.861 38.861 97.075-97.126zM356.608 188.826l-38.861-38.861-174.848 174.848 38.861 38.912 174.848-174.899zM356.608 344.269l-38.861-38.861-97.178 97.075 38.912 38.912 97.126-97.126zM434.33 421.99l-38.861-38.861-97.075 97.075 38.861 38.912 97.075-97.126zM589.722 421.99l-38.861-38.861-174.797 174.797 38.861 38.861 174.797-174.797zM589.722 577.382l-38.861-38.861-97.075 97.075 38.861 38.861 97.075-97.075zM667.443 655.053l-38.861-38.861-97.126 97.126 38.861 38.861 97.126-97.126zM822.886 655.053l-38.912-38.861-174.797 174.848 38.861 38.912 174.848-174.899zM822.835 810.445l-38.861-38.861-97.075 97.178 38.861 38.81 97.075-97.126z" />
+<glyph unicode="&#xea0b;" glyph-name="scissors1" d="M429.056 686.592c0 104.346-84.582 188.928-188.928 188.928s-188.928-84.582-188.928-188.928c0-104.346 84.582-188.928 188.928-188.928 49.152 0 93.491 19.251 127.13 49.971l93.542-86.374 0.614-0.461-0.205-0.154-94.003-86.682c-33.587 30.72-77.926 49.971-127.078 49.971-104.346 0-188.928-84.582-188.928-188.928s84.582-188.928 188.928-188.928 188.928 84.582 188.928 188.928c0 15.206-2.253 29.798-5.683 43.93l145.613 101.939 211.302-156.928c113.254-79.309 192.512 33.946 192.512 33.946l-549.427 384.768c3.379 14.131 5.683 28.723 5.683 43.93zM240.128 594.432c-50.893 0-92.16 41.267-92.16 92.16s41.267 92.16 92.16 92.16 92.16-41.267 92.16-92.16-41.267-92.16-92.16-92.16zM240.128 142.848c-50.893 0-92.16 41.267-92.16 92.16s41.267 92.16 92.16 92.16 92.16-41.267 92.16-92.16-41.267-92.16-92.16-92.16zM972.8 663.654c0 0-79.258 113.254-192.512 33.946l-164.096-114.432 120.525-84.378 236.083 164.864z" />
+<glyph unicode="&#xea0c;" glyph-name="share-alternitive" d="M460.8 307.2h102.4v460.8h102.4l-153.6 204.8-153.6-204.8h102.4v-460.8zM870.4 614.4h-153.6v-102.4h102.4v-460.8h-614.4v460.8h102.4v102.4h-153.6c-28.314 0-51.2-22.886-51.2-51.2v-563.2c0-28.262 22.886-51.2 51.2-51.2h716.8c28.314 0 51.2 22.938 51.2 51.2v563.2c0 28.262-22.886 51.2-51.2 51.2z" />
+<glyph unicode="&#xea0d;" glyph-name="share1" d="M768 284.57c-32.41 0-61.645-12.595-83.814-32.87l-304.026 177.306c2.355 9.626 3.84 19.661 3.84 29.901s-1.485 20.224-3.84 29.85l300.8 175.565c22.835-21.35 53.35-34.56 87.040-34.56 70.605 0 128 57.395 128 128s-57.395 128-128 128-128-57.395-128-128c0-10.24 1.485-20.275 3.84-29.85l-300.8-175.565c-22.835 21.299-53.35 34.56-87.040 34.56-70.605 0-128-57.395-128-128s57.395-128 128-128c33.69 0 64.205 13.21 87.040 34.56l304.026-177.306c-2.15-8.96-3.43-18.33-3.43-27.955 0-68.71 55.654-124.365 124.365-124.365s124.365 55.706 124.365 124.365-55.654 124.365-124.365 124.365z" />
+<glyph unicode="&#xea0e;" glyph-name="shareable" d="M348.16 460.8c0-90.522 73.37-163.891 163.84-163.891 90.522 0 163.789 73.37 163.789 163.891 0 90.47-73.267 163.84-163.789 163.84s-163.84-73.37-163.84-163.84zM231.885 522.24c28.109 128.819 142.797 225.28 280.115 225.28 79.155 0 150.784-32.102 202.701-83.968 24.013-24.013 62.925-24.013 86.886 0 24.013 24.013 24.013 62.925 0 86.886-74.086 74.086-176.486 119.962-289.587 119.962-183.398 0-338.637-120.525-390.81-286.771h-121.19v-122.829h163.789c51.149 0 63.744 41.626 68.096 61.44zM860.16 460.8c-51.149 0-63.744-41.677-68.045-61.389-28.109-128.819-142.797-225.28-280.115-225.28-79.206 0-150.835 32.102-202.701 84.019-24.013 24.013-62.925 24.013-86.938 0-23.962-24.013-23.962-62.925 0-86.886 74.138-74.189 176.538-120.064 289.638-120.064 183.398 0 338.586 120.627 390.81 286.72h121.19v122.88h-163.84z" />
+<glyph unicode="&#xea0f;" glyph-name="shield1" d="M901.325 802.202c-236.237-34.202-283.085 25.549-389.325 119.398-106.24-93.85-153.088-153.6-389.325-119.398-125.901-627.098 389.325-802.202 389.325-802.202s515.226 175.104 389.325 802.202zM638.618 291.379l-126.618 66.56-126.566-66.56 24.166 140.954-102.4 99.84 141.517 20.531 63.283 128.256 63.283-128.256 141.517-20.531-102.4-99.789 24.218-141.005z" />
+<glyph unicode="&#xea10;" glyph-name="shop" d="M313.498 601.6l40.499 268.8h-210.637l-88.013-230.4c-2.714-8.192-4.147-16.691-4.147-25.6 0-56.525 58.88-102.4 131.635-102.4 67.072 0 122.522 39.117 130.662 89.6zM512 512c72.704 0 131.635 45.875 131.635 102.4 0 2.099-0.154 4.198-0.256 6.195l-26.061 249.805h-210.637l-26.112-249.6c-0.102-2.099-0.205-4.198-0.205-6.4 0-56.525 58.931-102.4 131.635-102.4zM768 458.445v-202.445h-512v202.138c-22.426-8.090-47.104-12.698-73.165-12.698-9.984 0-19.661 1.178-29.235 2.509v-325.069c0-39.424 32.205-71.68 71.578-71.68h573.542c39.424 0 71.68 32.307 71.68 71.68v325.018c-9.626-1.28-19.251-2.509-29.235-2.509-25.907 0.051-50.688 4.762-73.165 13.056zM968.704 640l-88.115 230.4h-210.586l40.448-268.39c7.885-50.688 63.334-90.010 130.714-90.010 72.704 0 131.635 45.875 131.635 102.4 0 8.909-1.434 17.408-4.096 25.6z" />
+<glyph unicode="&#xea11;" glyph-name="shopping-bag" d="M927.795 805.325c-15.104 13.107-97.587 88.627-112.998 101.939-15.309 13.261-38.707 14.336-56.422 14.336h-492.749c-17.664 0-41.062-1.075-56.422-14.336-15.411-13.312-97.894-88.883-112.998-101.939-15.206-13.107-27.802-32.922-23.757-61.030 4.045-28.211 96.768-699.443 99.174-715.418 2.355-15.923 16.282-28.518 33.178-28.877h614.4c16.896 0.358 30.822 12.954 33.178 28.928 2.406 15.923 95.13 687.206 99.226 715.418 3.994 28.058-8.602 47.872-23.808 60.979zM512 359.782c-166.298 0-201.882 235.315-209.254 283.802h94.054c14.131-70.707 46.285-191.693 115.2-191.693s101.12 120.986 115.2 191.693h94.106c-7.424-48.486-43.008-283.802-209.306-283.802zM162.304 767.693l93.696 102.707h512l93.696-102.707h-699.392z" />
+<glyph unicode="&#xea12;" glyph-name="shopping-basket" d="M942.029 614.4h-256.358l-92.774-92.774c-23.194-23.194-54.067-35.942-86.835-35.942-32.87 0-63.693 12.8-86.938 35.994-23.142 23.142-35.942 53.965-35.994 86.784 0 1.997 0.512 3.942 0.563 5.939h-301.773c-16.998 0-30.72-13.722-30.72-30.72v-122.88h921.6v122.88c0 16.998-13.824 30.72-30.771 30.72zM551.322 563.251l258.816 258.816c12.032 11.981 12.134 31.386 0.102 43.469l-47.104 47.104c-11.981 11.981-31.437 11.93-43.52 0l-258.816-258.867c-24.986-24.986-24.986-65.536 0-90.522 24.986-24.934 65.485-24.986 90.522 0zM195.738 88.525c4.966-20.531 26.368-37.325 47.462-37.325h537.6c21.094 0 42.496 16.794 47.462 37.325l77.978 321.075h-788.48l77.978-321.075z" />
+<glyph unicode="&#xea13;" glyph-name="shopping-cart" d="M665.6 102.4c0-56.525 45.773-102.4 102.4-102.4 56.525 0 102.4 45.875 102.4 102.4 0 56.627-45.875 102.4-102.4 102.4-56.627 0-102.4-45.773-102.4-102.4zM153.6 102.4c0-56.525 45.824-102.4 102.4-102.4 56.474 0 102.4 45.875 102.4 102.4 0 56.627-45.926 102.4-102.4 102.4-56.576 0-102.4-45.773-102.4-102.4zM335.206 349.594l566.682 161.894c10.803 3.123 19.712 14.797 19.712 26.112v281.6h-716.8v81.92c0 11.264-9.267 20.48-20.429 20.48h-163.942c-11.213 0-20.429-9.216-20.429-20.48v-81.92h102.4l97.792-458.598 4.608-48.282v-84.429c0-11.213 9.216-20.48 20.48-20.48h675.84c11.264 0 20.48 9.318 20.48 20.48v79.309h-575.898c-58.88 0-60.109 28.211-10.496 42.394z" />
+<glyph unicode="&#xea14;" glyph-name="shuffle1" d="M772.762 630.067h47.104v-146.534l204.134 206.029-204.186 206.080v-122.214h-47.104c-189.133 0-295.731-140.186-389.837-263.782-84.582-111.206-157.696-207.309-275.763-207.309h-107.11v-143.309h107.162c189.133 0 295.731 140.083 389.837 263.782 84.582 111.258 157.696 207.258 275.763 207.258zM276.992 539.75c8.090 10.394 16.179 21.094 24.422 31.898 19.968 26.317 41.165 54.016 64.102 81.715-67.686 63.181-149.248 109.773-258.355 109.773h-107.162v-143.309h107.162c67.942 0 120.934-31.898 169.83-80.077zM819.814 292.147h-47.104c-72.038 0-127.334 35.891-178.739 88.986-5.12-6.707-10.291-13.517-15.514-20.326-22.579-29.696-46.848-61.491-73.677-93.082 69.427-67.789 153.6-118.989 267.878-118.989h47.104v-122.778l204.237 206.080-204.186 206.080v-145.971z" />
+<glyph unicode="&#xea15;" glyph-name="signal" d="M512 256c-56.013 0-101.427-45.773-101.427-102.4 0-56.525 45.414-102.4 101.427-102.4s101.376 45.875 101.376 102.4c0 56.576-45.363 102.4-101.376 102.4zM296.96 370.79l71.68-72.397c79.155 79.974 207.565 79.974 286.771 0l71.629 72.397c-118.733 119.962-311.347 119.962-430.080 0zM153.6 515.686l71.68-72.397c158.31 159.898 415.027 159.898 573.389 0l71.731 72.397c-197.888 199.885-518.912 199.885-716.8 0zM10.189 660.48l71.68-72.397c237.517 239.923 622.643 239.923 860.211 0l71.68 72.397c-277.094 279.91-726.426 279.91-1003.571 0z" />
+<glyph unicode="&#xea16;" glyph-name="sound-mix" d="M256 890.88c0 28.314-22.938 30.72-51.2 30.72-28.314 0-51.2-2.406-51.2-30.72v-430.080h102.4v430.080zM153.6 30.72c0-28.211 22.886-30.72 51.2-30.72 28.262 0 51.2 2.509 51.2 30.72v174.080h-102.4v-174.080zM327.629 409.6h-245.76c-28.314 0-30.669-22.938-30.669-51.2v-51.2c0-28.314 2.355-51.2 30.669-51.2h245.811c28.16 0 30.72 22.886 30.72 51.2v51.2c0 28.262-2.56 51.2-30.771 51.2zM942.029 358.4h-245.811c-28.262 0-30.618-22.938-30.618-51.2v-51.2c0-28.314 2.355-51.2 30.669-51.2h245.811c28.16 0 30.72 22.886 30.72 51.2v51.2c0 28.262-2.56 51.2-30.771 51.2zM665.6 614.4c0 28.262-2.56 51.2-30.771 51.2h-245.76c-28.314 0-30.669-22.938-30.669-51.2v-51.2c0-28.314 2.355-51.2 30.669-51.2h245.811c28.16 0 30.72 22.886 30.72 51.2v51.2zM563.2 890.88c0 28.314-22.938 30.72-51.2 30.72-28.314 0-51.2-2.406-51.2-30.72v-174.080h102.4v174.080zM460.8 30.72c0-28.211 22.886-30.72 51.2-30.72 28.262 0 51.2 2.509 51.2 30.72v430.080h-102.4v-430.080zM870.4 890.88c0 28.314-22.938 30.72-51.2 30.72-28.314 0-51.2-2.406-51.2-30.72v-481.28h102.4v481.28zM768 30.72c0-28.211 22.886-30.72 51.2-30.72 28.262 0 51.2 2.509 51.2 30.72v122.88h-102.4v-122.88z" />
+<glyph unicode="&#xea17;" glyph-name="sports-club" d="M307.2 281.6l204.8-128 204.8 128v435.2h-409.6v-435.2zM230.4 460.8c0 56.576-45.875 102.4-102.4 102.4s-102.4-45.824-102.4-102.4c0-56.576 45.875-102.4 102.4-102.4s102.4 45.824 102.4 102.4zM896 563.2c-56.525 0-102.4-45.824-102.4-102.4s45.875-102.4 102.4-102.4 102.4 45.824 102.4 102.4c0 56.576-45.875 102.4-102.4 102.4zM229.632 655.411c64.256 92.928 169.83 148.429 282.368 148.429 110.49 0 214.938-54.067 279.347-144.538 22.989-32.205 67.738-39.731 99.942-16.845 32.256 22.938 39.782 67.738 16.845 99.994-91.238 128.205-239.36 204.749-396.134 204.749-159.59 0-309.248-78.592-400.23-210.278-22.477-32.563-14.336-77.21 18.176-99.738 32.614-22.426 77.21-14.285 99.686 18.227zM791.347 262.298c-64.41-90.522-168.858-144.538-279.347-144.538-112.538 0-218.112 55.501-282.368 148.429-22.477 32.563-67.123 40.653-99.686 18.227-32.563-22.528-40.704-67.174-18.176-99.738 90.982-131.686 240.64-210.278 400.23-210.278 156.774 0 304.896 76.544 396.134 204.749 22.938 32.256 15.411 77.005-16.845 99.994-32.205 22.886-76.954 15.36-99.942-16.845z" />
+<glyph unicode="&#xea18;" glyph-name="spreadsheet" d="M819.2 921.6h-614.4c-28.314 0-51.2-22.886-51.2-51.2v-819.2c0-28.262 22.886-51.2 51.2-51.2h614.4c28.314 0 51.2 22.938 51.2 51.2v819.2c0 28.262-22.886 51.2-51.2 51.2zM768 563.2h-307.2v-460.8h-51.2v460.8h-153.6v51.2h153.6v204.8h51.2v-204.8h307.2v-51.2z" />
+<glyph unicode="&#xea19;" glyph-name="squared-cross" d="M819.2 870.4h-614.4c-56.32 0-102.4-46.080-102.4-102.4v-614.4c0-56.32 46.080-102.4 102.4-102.4h614.4c56.32 0 102.4 46.080 102.4 102.4v614.4c0 56.32-46.080 102.4-102.4 102.4zM668.723 215.603l-156.723 156.672-156.723-156.672-88.525 88.474 156.723 156.723-156.672 156.723 88.525 88.525 156.672-156.723 156.621 156.723 88.525-88.525-156.621-156.723 156.672-156.723-88.474-88.474z" />
+<glyph unicode="&#xea1a;" glyph-name="squared-minus" d="M819.2 870.4h-614.4c-56.32 0-102.4-46.080-102.4-102.4v-614.4c0-56.32 46.080-102.4 102.4-102.4h614.4c56.32 0 102.4 46.080 102.4 102.4v614.4c0 56.32-46.080 102.4-102.4 102.4zM768 409.6h-512v102.4h512v-102.4z" />
+<glyph unicode="&#xea1b;" glyph-name="squared-plus" d="M819.2 870.4h-614.4c-56.32 0-102.4-46.080-102.4-102.4v-614.4c0-56.32 46.080-102.4 102.4-102.4h614.4c56.32 0 102.4 46.080 102.4 102.4v614.4c0 56.32-46.080 102.4-102.4 102.4zM768 409.6h-204.8v-204.8h-102.4v204.8h-204.8v102.4h204.8v204.8h102.4v-204.8h204.8v-102.4z" />
+<glyph unicode="&#xea1c;" glyph-name="star-outlined" d="M962.56 562.074h-328.346l-122.214 344.166-122.317-344.166h-328.294l267.878-202.086-95.795-354.765 278.528 212.685 278.426-212.685-95.693 354.765 267.827 202.086zM512 318.31l-154.317-128 63.642 182.374-145.971 117.76 180.326-5.171 56.32 206.848 56.269-206.848 180.275 5.171-145.971-117.76 63.642-182.374-154.214 128z" />
+<glyph unicode="&#xea1d;" glyph-name="star" d="M512 906.24l122.266-344.166h328.294l-267.878-202.138 95.795-354.714-278.477 212.685-278.426-212.685 95.744 354.714-267.93 202.138h328.294l122.317 344.166z" />
+<glyph unicode="&#xea1e;" glyph-name="stopwatch1" d="M377.651 627.456c-22.886-14.080 61.286-217.19 81.818-250.266 17.92-29.133 55.962-37.99 84.89-20.173 29.082 18.022 38.144 56.013 20.224 84.992-20.326 33.178-164.096 199.578-186.931 185.446zM360.499 849.818c47.514 16.538 98.406 25.702 151.501 25.702s103.987-9.165 151.501-25.702c16.845-5.837 39.168 5.888 29.286 31.283-7.219 18.432-14.182 36.454-16.998 43.776-6.707 17.357-30.72 31.693-41.165 34.048-39.526 8.909-80.486 13.875-122.624 13.875s-83.098-4.966-122.675-13.875c-10.445-2.355-34.406-16.691-41.114-34.048-2.816-7.322-9.83-25.344-16.998-43.776-9.882-25.395 12.442-37.171 29.286-31.283zM977.818 809.677c-9.83 11.776-20.275 23.296-31.386 34.406-11.059 11.11-22.579 21.504-34.304 31.386-7.834 6.605-30.874 11.981-45.466-2.611-14.541-14.592-84.378-84.326-84.378-84.326 20.582-14.746 40.602-30.976 59.136-49.459s34.662-38.502 49.459-59.136c0 0 69.786 69.734 84.326 84.326 14.643 14.643 9.267 37.632 2.611 45.414zM512 824.32c-229.12 0-414.771-185.651-414.771-414.72 0-229.12 185.651-414.771 414.771-414.771 229.018 0 414.72 185.651 414.72 414.771 0 229.018-185.702 414.72-414.72 414.72zM512 97.229c-172.442 0-312.32 139.827-312.32 312.32s139.827 312.32 312.32 312.32c172.493 0 312.371-139.827 312.371-312.32 0-172.442-139.878-312.32-312.371-312.32z" />
+<glyph unicode="&#xea1f;" glyph-name="suitcase" d="M921.6 768h-51.2v-768h51.2c56.32 0 102.4 46.080 102.4 102.4v563.2c0 56.32-46.080 102.4-102.4 102.4zM0 665.6v-563.2c0-56.32 46.029-102.4 102.4-102.4h51.2v768h-51.2c-56.371 0-102.4-46.080-102.4-102.4zM691.2 875.213c-34.867 16.179-96.717 46.387-180.173 46.387-83.61 0-143.36-30.208-178.227-46.387v-107.213h-128v-768h614.4v768h-128v107.213zM614.4 768h-204.8v68.403c27.341 11.776 55.194 23.808 101.427 23.808 46.182 0 76.083-11.981 103.373-23.808v-68.403z" />
+<glyph unicode="&#xea20;" glyph-name="swap" d="M716.8 716.8h-512v102.4l-204.8-179.2 204.8-179.2v102.4h512v153.6zM1024 281.6l-204.8 179.2v-102.4h-512v-153.6h512v-102.4l204.8 179.2z" />
+<glyph unicode="&#xea21;" glyph-name="sweden" d="M921.6 768h-460.8v-256h512v204.8c0 28.314-22.886 51.2-51.2 51.2zM51.2 204.8c0-28.314 12.698-51.2 40.96-51.2h266.24v256h-307.2v-204.8zM460.8 153.6h460.8c28.314 0 51.2 22.886 51.2 51.2v204.8h-512v-256zM51.2 716.8v-204.8h307.2v256h-266.24c-28.262 0-40.96-22.886-40.96-51.2z" />
+<glyph unicode="&#xea22;" glyph-name="switch1" d="M665.6 819.2h-307.2c-197.939 0-358.4-160.461-358.4-358.4s160.461-358.4 358.4-358.4h307.2c197.939 0 358.4 160.461 358.4 358.4s-160.461 358.4-358.4 358.4zM665.6 204.8c-141.363 0-256 114.637-256 256s114.637 256 256 256 256-114.637 256-256-114.637-256-256-256z" />
+<glyph unicode="&#xea23;" glyph-name="tablet1" d="M819.2 972.8h-614.4c-56.32 0-102.4-46.029-102.4-102.4v-819.2c0-56.32 46.080-102.4 102.4-102.4h614.4c56.371 0 102.4 46.080 102.4 102.4v819.2c0 56.371-46.029 102.4-102.4 102.4zM512 0c-35.328 0-64 22.886-64 51.2s28.672 51.2 64 51.2c35.277 0 64-22.886 64-51.2s-28.723-51.2-64-51.2zM819.2 153.6h-614.4v716.8h614.4v-716.8z" />
+<glyph unicode="&#xea24;" glyph-name="tag" d="M955.494 690.125l-687.36-690.125 36.198 254.31-253.184-36.301 687.36 690.125c20.019 20.070 58.010 15.77 72.294 0l144.691-145.357c25.6-24.218 20.019-52.531 0-72.653z" />
+<glyph unicode="&#xea25;" glyph-name="text-document-inverted" d="M819.2 921.6h-614.4c-28.314 0-51.2-22.886-51.2-51.2v-819.2c0-28.262 22.886-51.2 51.2-51.2h614.4c28.314 0 51.2 22.938 51.2 51.2v819.2c0 28.262-22.886 51.2-51.2 51.2zM665.6 204.8h-307.2v102.4h307.2v-102.4zM665.6 409.6h-307.2v102.4h307.2v-102.4zM665.6 614.4h-307.2v102.4h307.2v-102.4z" />
+<glyph unicode="&#xea26;" glyph-name="text-document" d="M819.2 921.6h-614.4c-28.314 0-51.2-22.886-51.2-51.2v-819.2c0-28.262 22.886-51.2 51.2-51.2h614.4c28.314 0 51.2 22.938 51.2 51.2v819.2c0 28.262-22.886 51.2-51.2 51.2zM768 102.4h-512v716.8h512v-716.8zM665.6 716.8h-307.2v-102.4h307.2v102.4zM665.6 307.2h-307.2v-102.4h307.2v102.4zM665.6 512h-307.2v-102.4h307.2v102.4z" />
+<glyph unicode="&#xea27;" glyph-name="text" d="M793.6 409.6h-563.2c-14.080 0-25.6-11.52-25.6-25.6v-51.2c0-14.131 11.52-25.6 25.6-25.6h563.2c14.131 0 25.6 11.469 25.6 25.6v51.2c0 14.080-11.469 25.6-25.6 25.6zM793.6 614.4h-563.2c-14.080 0-25.6-11.52-25.6-25.6v-51.2c0-14.131 11.52-25.6 25.6-25.6h563.2c14.131 0 25.6 11.469 25.6 25.6v51.2c0 14.080-11.469 25.6-25.6 25.6zM537.6 204.8h-307.2c-14.080 0-25.6-11.52-25.6-25.6v-51.2c0-14.131 11.52-25.6 25.6-25.6h307.2c14.131 0 25.6 11.469 25.6 25.6v51.2c0 14.080-11.469 25.6-25.6 25.6zM793.6 819.2h-563.2c-14.080 0-25.6-11.52-25.6-25.6v-51.2c0-14.131 11.52-25.6 25.6-25.6h563.2c14.131 0 25.6 11.469 25.6 25.6v51.2c0 14.080-11.469 25.6-25.6 25.6z" />
+<glyph unicode="&#xea28;" glyph-name="thermometer" d="M665.6 454.502v467.098c0 28.314-22.886 51.2-51.2 51.2h-215.091c-28.262 0-40.909-22.886-40.909-51.2v-467.098c-73.933-49.613-122.88-133.53-122.88-229.222 0-152.678 123.802-276.48 276.48-276.48s276.48 123.802 276.48 276.48c0 95.693-48.947 179.61-122.88 229.222zM512 56.32c-93.338 0-168.96 75.622-168.96 168.96 0 75.366 49.664 138.394 117.76 160.205v382.515h102.4v-382.515c68.096-21.811 117.76-84.838 117.76-160.205 0-93.286-75.622-168.96-168.96-168.96z" />
+<glyph unicode="&#xea29;" glyph-name="thumbs-down" d="M325.222 325.734c6.81-18.227-181.197-186.061-71.526-322.099 25.651-31.795 112.691 152.32 236.288 235.622 68.147 46.029 226.816 143.923 226.816 198.042v350.31c0 65.075-251.597 133.99-442.778 133.99-70.093 0-171.622-439.091-171.622-508.877 0-69.99 216.115-68.762 222.822-86.989zM768 330.598c33.69 0 153.6 20.48 153.6 159.898v248.218c0 139.315-119.91 154.675-153.6 154.675-33.638 0 51.2-29.286 51.2-115.712v-326.298c0-90.522-84.838-120.781-51.2-120.781z" />
+<glyph unicode="&#xea2a;" glyph-name="thumbs-up" d="M698.778 595.866c-6.81 18.176 181.197 186.061 71.578 322.099-25.651 31.795-112.691-152.32-236.288-235.674-68.198-45.978-226.867-143.872-226.867-197.99v-350.31c0-65.075 251.597-133.99 442.778-133.99 70.093 0 171.622 439.091 171.622 508.826 0 70.042-216.115 68.813-222.822 87.040zM256 591.002c-33.69 0-153.6-20.48-153.6-159.898v-248.218c0-139.315 119.91-154.675 153.6-154.675 33.638 0-51.2 29.286-51.2 115.712v326.298c0 90.522 84.838 120.781 51.2 120.781z" />
+<glyph unicode="&#xea2b;" glyph-name="thunder-cloud" d="M778.906 632.781c-14.131 0-27.955-1.178-41.421-3.379-33.587 109.824-137.677 189.798-260.864 189.798-150.477 0-272.384-119.194-272.384-266.189 0-13.21 1.024-26.112 2.918-38.707-7.27 0.819-14.541 1.382-21.965 1.382-102.298 0-185.19-81.101-185.19-180.992 0-99.994 82.893-181.094 185.19-181.094h593.715c135.322 0 245.094 107.315 245.094 239.616 0 132.403-109.773 239.565-245.094 239.565zM582.195 412.109c-25.293-35.994-133.837-147.917-138.445-152.576-5.325-6.605-20.019-17.613-33.946-8.499-4.045 2.611-8.806 7.782-8.806 18.125 0 9.882 4.506 20.019 5.018 21.094l52.89 117.094c-9.882 3.994-26.982 10.803-40.192 16.589l-3.482 1.485c-13.414 5.683-30.106 12.8-30.106 31.078 0 8.806 4.147 19.098 12.749 31.181 25.344 36.096 133.837 147.917 138.496 152.678 5.274 6.502 19.968 17.51 33.946 8.499 3.994-2.611 8.755-7.885 8.755-18.125 0-9.882-4.506-20.019-5.018-21.197l-52.941-116.992c9.984-3.994 27.034-10.906 40.294-16.589l3.482-1.485c13.414-5.683 30.106-12.8 30.106-31.181 0-8.806-4.198-18.995-12.8-31.181z" />
+<glyph unicode="&#xea2c;" glyph-name="ticket1" d="M251.187 381.901l181.811-181.914 333.722 333.722-181.914 181.811-333.619-333.619zM978.125 631.603l-77.363 77.414c-14.797-7.987-31.642-12.595-49.613-12.595-57.242 0-103.629 46.387-103.629 103.578 0 18.022 4.557 34.918 12.595 49.613l-77.363 77.414c-20.173 20.122-53.146 20.122-73.318 0l-563.712-563.712c-20.122-20.070-20.122-53.094 0-73.318l77.414-77.312c14.797 7.987 31.642 12.595 49.664 12.595 57.19 0 103.578-46.387 103.578-103.68 0-17.92-4.557-34.816-12.595-49.613l77.414-77.312c20.173-20.173 53.094-20.173 73.318 0l563.61 563.61c20.173 20.224 20.173 53.197 0 73.318zM432.998 116.787l-265.011 265.114 416.87 416.819 265.011-265.011-416.87-416.922z" />
+<glyph unicode="&#xea2d;" glyph-name="time-slot" d="M512 952.32c-271.462 0-491.52-220.058-491.52-491.52s220.058-491.52 491.52-491.52c271.411 0 491.52 220.058 491.52 491.571 0 271.411-220.109 491.469-491.52 491.469zM512 71.731c-214.886 0-389.12 174.182-389.12 389.12 0 214.886 174.182 389.12 389.12 389.12v0-389.171l347.75 173.875c26.266-52.378 41.37-111.258 41.37-173.875 0-214.886-174.234-389.069-389.12-389.069z" />
+<glyph unicode="&#xea2e;" glyph-name="tools" d="M160.512 620.032c47.77 37.12 87.398 11.52 140.288-49.715 5.939-6.912 13.926 1.178 18.483 5.12 4.506 3.994 74.291 66.816 77.722 69.683 3.379 3.021 7.475 8.653 2.099 14.95-5.478 6.298-25.293 32-38.042 48.691-92.57 121.088 253.235 203.213 200.141 204.493-27.034 0.717-135.475 1.997-151.706 0.205-65.69-6.912-148.173-68.301-189.696-96.922-54.323-37.171-74.598-58.982-77.926-62.003-15.36-13.414-2.458-44.39-30.31-68.813-29.44-25.754-47.821-6.246-64.87-21.197-8.448-7.475-32.102-25.19-38.861-31.078-6.81-5.99-8.038-16.077-1.075-24.115 0 0 64.717-71.475 70.144-77.824 5.376-6.246 20.019-11.674 29.030-3.635 9.062 7.987 32.358 28.314 36.25 31.898 3.994 3.379-2.56 44.083 18.33 60.262zM452.762 593.562c-6.144 7.117-13.773 7.322-20.326 1.485l-73.421-64.102c-5.786-5.12-6.605-14.49-1.382-20.48l424.653-483.277c9.933-11.418 27.136-12.595 38.451-2.714l49.664 41.626c11.366 9.984 12.544 27.29 2.662 38.81l-420.301 488.653zM1018.982 799.232c-3.789 25.293-16.896 20.019-23.706 9.318-6.81-10.803-36.915-56.422-49.306-77.107-12.288-20.48-42.598-60.979-99.021-20.992-58.778 41.523-38.349 70.502-28.109 90.010 10.291 19.61 41.882 74.598 46.438 81.408 4.557 6.912-0.768 26.982-18.995 18.586-18.278-8.397-129.178-52.48-144.538-115.712-15.718-64.307 13.158-121.805-43.52-178.893l-68.762-71.68 69.069-80.179 84.685 80.384c20.173 20.275 63.283 39.987 102.298 31.078 83.61-18.893 129.229 12.493 156.723 64.41 24.678 46.387 20.582 144.077 16.742 169.37zM140.237 99.686c-10.65-10.701-10.65-28.109 0-38.81l48.691-47.616c10.65-10.701 27.546-6.195 38.195 4.506l251.238 246.989-76.954 87.757-261.171-252.826z" />
+<glyph unicode="&#xea2f;" glyph-name="traffic-cone" d="M512 354.406c122.368 0 224.87 41.574 231.066 95.898-18.227 50.995-38.093 106.701-57.6 161.382-13.517-38.963-88.32-66.611-173.466-66.611s-159.949 27.648-173.466 66.611c-19.507-54.682-39.373-110.387-57.549-161.382 6.195-54.323 108.646-95.898 231.014-95.898zM512 697.702c57.549 0 110.95 17.818 126.618 45.517-21.555 60.518-40.038 112.486-51.763 145.203-7.782 21.862-43.059 33.178-74.854 33.178s-67.072-11.315-74.854-33.178c-11.674-32.717-30.208-84.685-51.763-145.203 15.667-27.699 69.12-45.517 126.618-45.517zM961.536 303.821l-192.256 77.517 22.17-61.798c-1.126-65.485-128.205-117.709-279.45-117.709-151.194 0-278.374 52.173-279.45 117.709l22.17 61.798-192.256-77.517c-53.914-21.709-56.218-61.901-5.018-89.293l361.574-193.894c51.098-27.392 134.81-27.392 185.958 0l361.626 193.894c51.149 27.392 48.845 67.584-5.069 89.293z" />
+<glyph unicode="&#xea30;" glyph-name="tree1" d="M1024 460.8c0 69.683-38.81 133.939-103.987 185.446-0.102 0.051-0.205 0.051-0.256 0.154-18.534 182.886-193.894 326.4-407.757 326.4s-389.222-143.514-407.757-326.4c-0.051-0.102-0.154-0.102-0.256-0.154-65.178-51.507-103.987-115.763-103.987-185.446 0-159.334 202.086-290.253 460.8-305.664 0-17.306 0-34.97 0-52.736 0-51.2-93.235-97.843-93.235-97.843-5.069-2.509-7.578-8.858-5.581-14.182 0 0 15.616-41.574 47.616-41.574s57.549 25.6 121.549 25.6 124.877-22.118 124.877-22.118c5.222-1.946 12.851-0.256 16.845 3.738l36.71 36.71c3.994 3.994 2.97 8.858-2.355 10.854 0 0-92.774 34.816-92.774 98.816 0 15.974 0 36.147 0 57.395 233.677 28.416 409.549 152.371 409.549 301.005zM102.4 460.8c0 52.173 39.322 99.584 103.526 135.731-0.512 5.939-1.126 11.878-1.126 17.869 0 141.414 137.574 256 307.2 256s307.2-114.586 307.2-256c0-5.99-0.614-11.93-1.075-17.869 64.154-36.147 103.475-83.558 103.475-135.731 0-95.437-130.611-175.309-307.149-198.093 0 20.531 0 34.202 0 34.202 0 5.632 3.328 13.414 7.424 17.254l93.85 88.371c4.096 3.891 7.475 11.622 7.475 17.254v43.571c0 5.632-3.994 7.936-8.806 5.069l-91.085-53.606c-4.915-2.867-8.858-0.614-8.858 5.069v184.269c0 5.632-4.352 8.806-9.728 7.014l-134.195-44.749c-5.325-1.792-9.677-7.834-9.677-13.466v-133.12c0-5.632-4.045-8.090-9.062-5.478l-103.526 54.477c-4.966 2.611-12.288 1.536-16.282-2.458l-17.51-17.51c-3.994-3.994-3.738-10.291 0.461-13.978l138.24-120.883c4.25-3.738 7.68-11.366 7.68-16.998 0 0 0-15.258 0-39.168-201.984 12.544-358.451 98.509-358.451 202.957z" />
+<glyph unicode="&#xea31;" glyph-name="trophy1" d="M572.416 237.773c0 74.291 56.32 115.405 148.173 176.23 112.333 74.547 252.211 167.168 252.211 387.072 0 19.814-16.23 35.789-36.301 35.789h-175.616c-24.781 45.875-98.765 94.976-248.883 94.976-150.221 0-224.102-49.101-248.934-94.976h-175.667c-20.019 0-36.198-16.026-36.198-35.789 0-219.904 139.776-312.525 252.211-387.021 91.853-60.826 148.173-101.939 148.173-176.23v-67.123c-96.461-10.701-167.373-46.387-167.373-88.883 0-50.893 101.99-92.109 227.789-92.109s227.789 41.216 227.789 92.109c0 42.496-70.912 78.182-167.373 88.883v67.072zM714.598 496.64c28.979 61.389 52.019 144.691 55.706 268.595h128.512c-12.288-138.291-95.334-208.077-184.218-268.595zM512 869.069c139.878 0.102 194.509-57.088 194.458-78.285 0-21.402-54.579-78.49-194.458-78.592-139.878 0.051-194.509 57.139-194.509 78.541-0.051 21.197 54.63 78.438 194.509 78.336zM125.184 765.235h128.461c3.738-123.904 26.675-207.206 55.757-268.595-88.883 60.518-171.981 130.304-184.218 268.595z" />
+<glyph unicode="&#xea32;" glyph-name="tv1" d="M921.6 921.6h-819.2c-56.371 0-102.4-46.080-102.4-102.4v-563.2c0-56.32 45.158-111.514 100.403-122.522l223.846-44.8c0 0-192.666-88.678-68.25-88.678h512c124.416 0-68.301 88.678-68.301 88.678l223.898 44.8c55.194 11.008 100.403 66.202 100.403 122.522v563.2c0 56.32-46.080 102.4-102.4 102.4zM921.6 256h-819.2v563.2h819.2v-563.2z" />
+<glyph unicode="&#xea33;" glyph-name="typing" d="M819.2 768h-614.4c-56.371 0-102.4-46.080-102.4-102.4v-358.4c0-56.32 46.029-102.4 102.4-102.4h204.8l204.8-153.6v153.6h204.8c56.32 0 102.4 46.080 102.4 102.4v358.4c0 56.32-46.080 102.4-102.4 102.4zM307.2 430.080c-31.078 0-56.32 25.19-56.32 56.32s25.19 56.32 56.32 56.32 56.32-25.19 56.32-56.32c0-31.078-25.242-56.32-56.32-56.32zM512 430.080c-31.078 0-56.32 25.19-56.32 56.32s25.19 56.32 56.32 56.32 56.32-25.19 56.32-56.32c0-31.078-25.242-56.32-56.32-56.32zM716.8 430.080c-31.078 0-56.32 25.19-56.32 56.32s25.19 56.32 56.32 56.32 56.32-25.19 56.32-56.32c0-31.078-25.242-56.32-56.32-56.32z" />
+<glyph unicode="&#xea34;" glyph-name="unread" d="M870.4 819.2c-56.525 0-102.4-45.824-102.4-102.4s45.875-102.4 102.4-102.4 102.4 45.824 102.4 102.4c0 56.576-45.875 102.4-102.4 102.4zM640 768h-563.2c-14.131 0-25.6-11.469-25.6-25.6v-51.2c0-14.131 11.469-25.6 25.6-25.6h563.2c14.131 0 25.6 11.469 25.6 25.6v51.2c0 14.131-11.469 25.6-25.6 25.6zM640 512h-563.2c-14.131 0-25.6-11.469-25.6-25.6v-51.2c0-14.131 11.469-25.6 25.6-25.6h563.2c14.131 0 25.6 11.469 25.6 25.6v51.2c0 14.131-11.469 25.6-25.6 25.6zM640 256h-563.2c-14.131 0-25.6-11.469-25.6-25.6v-51.2c0-14.131 11.469-25.6 25.6-25.6h563.2c14.131 0 25.6 11.469 25.6 25.6v51.2c0 14.131-11.469 25.6-25.6 25.6z" />
+<glyph unicode="&#xea35;" glyph-name="untag" d="M51.2 218.010l253.184 36.301-36.147-254.31 305.254 306.432-208.333 226.765-313.958-315.187zM955.597 690.125c20.019 20.122 25.6 48.384 0 72.653l-144.691 145.357c-14.285 15.77-52.275 20.070-72.294 0l-192.819-193.536 208.282-226.765 201.523 202.291zM957.747 189.798l-716.851 716.8c-20.019 20.019-52.378 20.019-72.397 0s-20.019-52.378 0-72.397l716.851-716.8c10.035-10.035 23.142-15.002 36.198-15.002 13.107 0 26.214 5.018 36.198 15.002 20.019 19.968 20.019 52.378 0 72.397z" />
+<glyph unicode="&#xea36;" glyph-name="user1" d="M395.52 862.925c-52.019-38.707-65.997-99.994-63.437-132.608 3.277-39.885 11.366-91.802 11.366-91.802s-16.026-8.704-16.026-43.725c5.581-87.91 34.97-49.971 41.011-88.525 14.541-92.877 47.77-76.339 47.77-127.027 0-84.429-34.816-123.904-143.514-170.701-109.056-47.002-221.491-106.138-221.491-208.538v-51.2h921.6v51.2c0 102.4-112.486 161.536-221.594 208.486-108.698 46.797-143.411 86.221-143.411 170.701 0 50.688 33.126 34.15 47.718 127.027 6.093 38.554 35.43 0.614 41.114 88.525 0 35.021-16.077 43.725-16.077 43.725s8.090 51.917 11.315 91.802c3.328 41.83-20.378 131.123-117.76 158.515-17.050 17.408-28.57 45.107 23.859 72.909-114.688 5.376-141.363-54.63-202.445-98.765z" />
+<glyph unicode="&#xea37;" glyph-name="users1" d="M818.637-6.605c0 114.995-111.974 173.517-221.030 220.518-108.698 46.797-143.411 86.221-143.411 170.701 0 50.637 33.178 34.15 47.718 127.027 6.144 38.502 35.43 0.614 41.062 88.525 0 35.021-16.026 43.725-16.026 43.725s8.141 51.866 11.315 91.802c3.277 41.83-20.378 131.072-117.811 158.464-16.998 17.459-28.518 45.158 23.91 72.909-114.688 5.325-141.363-54.682-202.445-98.816-51.968-38.707-65.997-99.994-63.488-132.608 3.328-39.936 11.418-91.802 11.418-91.802s-16.077-8.704-16.077-43.725c5.632-87.962 35.021-50.022 41.114-88.525 14.541-92.877 47.77-76.39 47.77-127.027 0-84.48-10.854-113.152-119.603-159.949-109.107-46.95-143.053-122.214-142.49-231.219 0.154-32.614-0.563-44.595-0.563-44.595h819.2c0 0-0.563 11.981-0.563 44.595zM948.634 288.512c-58.112 23.398-82.176 51.302-82.176 105.779 0 32.819 21.402 22.118 30.822 82.074 3.942 24.781 22.886 0.41 26.522 57.088 0 22.579-10.342 28.211-10.342 28.211s5.274 33.587 7.322 59.341c2.56 32.102-18.637 115.046-116.122 115.046-97.434 0-118.682-82.944-116.173-115.046 2.15-25.702 7.373-59.341 7.373-59.341s-10.342-5.581-10.342-28.211c3.635-56.678 22.579-32.307 26.522-57.088 9.421-60.006 30.822-49.306 30.822-82.074 0-54.477-22.426-79.974-92.621-110.182-3.533-1.485-6.144-3.482-9.37-5.222 83.968-36.454 216.371-99.379 247.706-227.686h135.424c0 0 0 97.587 0 118.682 0 51.2-13.978 93.901-75.366 118.63z" />
+<glyph unicode="&#xea38;" glyph-name="v-card" d="M972.8 819.2h-921.6c-28.314 0-51.2-22.886-51.2-51.2v-614.4c0-28.262 22.886-51.2 51.2-51.2h921.6c28.314 0 51.2 22.938 51.2 51.2v614.4c0 28.262-22.886 51.2-51.2 51.2zM665.6 614.4h204.8v-51.2h-204.8v51.2zM563.2 214.886c-6.605 5.222-15.002 10.291-27.085 15.514-60.416 26.010-151.603 64.512-151.603 111.411 0 28.211 18.381 18.995 26.522 70.605 3.379 21.402 19.712 0.358 22.784 49.203 0 19.456-8.909 24.32-8.909 24.32s4.506 28.774 6.298 50.995c1.843 23.194-11.315 92.16-65.382 107.366-9.523 9.626-15.923 5.683 13.21 21.094-63.693 3.021-78.541-30.31-112.435-54.835-28.877-21.504-36.71-55.552-35.277-73.677 1.894-22.17 6.4-50.995 6.4-50.995s-8.96-4.813-8.96-24.269c3.123-48.845 19.456-27.802 22.784-49.203 8.090-51.61 26.573-42.394 26.573-70.605 0-46.899-91.187-85.402-151.603-111.411-10.394-4.506-17.869-8.858-24.115-13.312v499.712h460.8v-501.914zM921.6 409.6h-256v51.2h256v-51.2z" />
+<glyph unicode="&#xea39;" glyph-name="video" d="M1024 716.8v61.491c0 22.63-18.278 40.909-40.909 40.909h-942.080c-22.682 0-41.011-18.278-41.011-40.909v-61.491h102.4v-102.4h-102.4v-102.4h102.4v-102.4h-102.4v-102.4h102.4v-102.4h-102.4v-61.389c0-22.63 18.33-41.011 41.011-41.011h942.080c22.63 0 40.909 18.381 40.909 41.011v61.389h-102.4v102.4h102.4v102.4h-102.4v102.4h102.4v102.4h-102.4v102.4h102.4zM409.6 307.2v307.2l256-153.6-256-153.6z" />
+<glyph unicode="&#xea3a;" glyph-name="vinyl" d="M511.949 931.84c-260.147 0-470.989-210.893-470.989-471.091 0-260.096 210.842-470.989 470.989-470.989s471.040 210.893 471.040 470.989c0 260.198-210.893 471.091-471.040 471.091zM512 307.149c-84.838 0-153.6 68.813-153.6 153.6s68.762 153.6 153.6 153.6c84.787 0 153.6-68.813 153.6-153.6s-68.813-153.6-153.6-153.6z" />
+<glyph unicode="&#xea3b;" glyph-name="voicemail" d="M788.48 675.789c-130.099 0-235.571-105.421-235.571-235.52 0-49.408 15.258-95.181 41.267-133.12h-164.403c26.010 37.888 41.216 83.712 41.216 133.12 0 130.099-105.421 235.52-235.52 235.52-130.048 0-235.52-105.421-235.52-235.52 0.051-130.048 105.472-235.469 235.571-235.469h552.96c130.048 0 235.52 105.421 235.52 235.52s-105.472 235.469-235.52 235.469zM102.4 440.32c0 73.523 59.597 133.12 133.12 133.12s133.12-59.597 133.12-133.12c0-73.523-59.597-133.12-133.12-133.12s-133.12 59.597-133.12 133.12zM788.48 307.2c-73.574 0-133.171 59.597-133.171 133.12s59.597 133.12 133.171 133.12c73.472 0 133.12-59.597 133.12-133.12s-59.597-133.12-133.12-133.12z" />
+<glyph unicode="&#xea3c;" glyph-name="wallet" d="M819.2 665.6h-640v25.6l563.2 45.056v-45.056h76.8v76.8c0 56.32-45.619 95.846-101.325 87.91l-514.099-73.421c-55.757-7.987-101.376-60.57-101.376-116.89v-512c0-56.525 45.824-102.4 102.4-102.4h614.4c56.525 0 102.4 45.875 102.4 102.4v409.6c0 56.525-45.875 102.4-102.4 102.4zM742.4 306.893c-42.394 0-76.8 34.406-76.8 76.8s34.406 76.8 76.8 76.8 76.8-34.406 76.8-76.8-34.406-76.8-76.8-76.8z" />
+<glyph unicode="&#xea3d;" glyph-name="water" d="M505.958 507.238c-26.163-210.688-159.795-248.166-159.795-394.65 0-90.419 75.93-163.789 165.837-163.789s165.786 73.421 165.786 163.789c0 146.483-133.632 183.962-159.795 394.65-0.819 6.298-11.213 6.298-12.032 0zM198.81 968.038c-26.163-210.688-159.795-248.115-159.795-394.65 0-90.368 75.878-163.789 165.786-163.789s165.786 73.421 165.786 163.789c0 146.483-133.632 183.962-159.795 394.65-0.768 6.298-11.213 6.298-11.981 0zM813.21 968.038c-26.163-210.688-159.795-248.166-159.795-394.65 0-90.368 75.878-163.789 165.786-163.789s165.786 73.421 165.786 163.789c0 146.483-133.632 183.962-159.795 394.65-0.819 6.298-11.213 6.298-11.981 0z" />
+<glyph unicode="&#xea3e;" glyph-name="500px-with-circle" d="M427.469 498.842c-8.141 6.093-16.64 11.11-25.446 15.002-8.909 3.994-17.715 5.99-26.573 5.99-16.333 0-29.235-6.195-38.758-18.483-9.626-12.39-14.387-26.266-14.387-41.574 0-16.742 4.915-30.515 14.694-41.216s23.296-16.077 40.499-16.077c8.858 0 17.664 1.792 26.573 5.325 8.858 3.482 17.254 7.885 25.139 13.261 7.936 5.325 15.411 11.366 22.374 18.125 7.014 6.707 13.261 13.414 18.842 19.917-5.581 5.939-12.134 12.595-19.558 19.814s-15.258 13.875-23.398 19.917zM646.502 519.834c-9.318 0-18.33-1.997-26.88-5.99-8.602-3.891-16.742-8.909-24.474-15.002-7.68-6.042-15.002-12.698-22.016-19.917s-13.363-13.875-18.842-19.917c6.042-7.014 12.544-13.926 19.558-20.582 7.014-6.81 14.387-12.8 22.426-18.176 7.834-5.325 16.077-9.626 24.73-12.902 8.602-3.277 17.869-4.915 27.597-4.915 17.254 0 30.464 5.581 39.782 16.794 9.37 11.213 13.926 24.883 13.926 41.216 0 16.282-5.069 30.31-15.002 41.882-9.984 11.674-23.603 17.51-40.806 17.51zM512 952.32c-271.462 0-491.52-220.058-491.52-491.52s220.058-491.52 491.52-491.52 491.52 220.058 491.52 491.52-220.058 491.52-491.52 491.52zM759.552 411.546c-5.53-15.821-13.466-29.696-23.706-41.523-10.24-11.93-22.938-21.197-38.042-27.955-15.155-6.758-32-10.086-50.637-10.086-14.438 0-27.955 2.202-40.499 6.605-12.595 4.454-24.371 10.24-35.277 17.51-10.957 7.219-21.299 15.565-31.13 25.088-9.728 9.626-19.046 19.456-27.955 29.696-9.728-10.24-19.302-20.122-28.621-29.696-9.37-9.523-19.2-17.92-29.747-25.088-10.445-7.27-21.862-13.056-34.202-17.51-12.288-4.403-26.163-6.605-41.574-6.605-19.098 0-36.045 3.328-50.995 10.086-14.899 6.758-27.75 15.821-38.4 27.238-10.701 11.469-18.842 25.037-24.474 40.858-5.478 15.821-8.294 32.819-8.294 50.944 0 18.176 2.662 35.021 8.038 50.637s13.21 29.082 23.398 40.55c10.24 11.469 22.784 20.429 37.734 27.238 14.848 6.707 31.59 10.086 50.278 10.086 15.36 0 29.44-2.304 42.24-7.014 12.8-4.608 24.627-10.803 35.584-18.483 11.008-7.629 21.248-16.486 30.822-26.522s18.944-20.582 28.262-31.795c8.909 10.701 18.125 21.197 27.597 31.386 9.626 10.291 19.814 19.251 30.822 26.88 10.906 7.68 22.784 13.875 35.584 18.483 12.8 4.71 26.675 7.014 41.472 7.014 18.688 0 35.43-3.174 50.381-9.779 14.899-6.502 27.443-15.411 37.683-26.829 10.24-11.469 18.125-24.73 23.706-40.141 5.632-15.411 8.397-32.102 8.397-50.278 0-18.227-2.765-35.226-8.448-50.995z" />
+<glyph unicode="&#xea3f;" glyph-name="500px1" d="M327.578 216.32c24.627 8.909 47.514 20.48 68.454 34.97 20.992 14.438 40.806 31.13 59.392 50.278 18.586 19.098 37.683 38.861 57.242 59.341 17.715-20.48 36.352-40.243 55.91-59.341 19.558-19.149 40.294-35.84 62.157-50.278 21.914-14.438 45.414-26.061 70.605-34.97 25.088-8.858 52.070-13.261 80.998-13.261 37.222 0 71.014 6.758 101.222 20.275 30.259 13.517 55.654 32.102 76.134 55.91 20.429 23.757 36.352 51.456 47.514 83.098 11.213 31.59 16.794 65.587 16.794 101.939s-5.581 69.837-16.794 100.557c-11.162 30.822-27.034 57.498-47.514 80.333s-45.67 40.704-75.418 53.76c-29.85 13.107-63.386 19.61-100.659 19.61-29.747 0-57.498-4.71-83.098-13.978-25.6-9.318-49.357-21.658-71.219-37.018-21.914-15.36-42.394-33.28-61.491-53.811-19.046-20.429-37.478-41.472-55.194-62.874-18.637 22.374-37.478 43.52-56.525 63.59-19.098 20.019-39.578 37.734-61.491 53.094s-45.619 27.699-71.219 37.018c-25.6 9.318-53.811 13.978-84.48 13.978-37.274 0-70.912-6.81-100.608-20.275-29.901-13.517-54.938-31.59-75.469-54.477-20.48-22.835-36.147-49.869-46.797-81.050-10.701-31.181-16.026-64.922-16.026-101.171 0-36.352 5.53-70.349 16.691-101.99 11.213-31.693 27.494-58.88 48.896-81.766 21.453-22.835 47.053-41.011 76.8-54.477 29.901-13.517 63.795-20.275 102.042-20.275 30.72 0 58.47 4.403 83.149 13.261zM161.997 376.32c-19.61 21.402-29.338 48.896-29.338 82.381 0 30.72 9.523 58.47 28.723 83.149 19.046 24.576 44.851 37.018 77.568 37.018 17.664 0 35.277-3.994 52.992-11.878s34.714-17.92 51.046-30.054c16.23-12.134 31.846-25.395 46.694-39.782 14.899-14.49 27.955-27.75 39.168-39.834-11.213-13.056-23.757-26.368-37.734-39.731-13.978-13.619-28.774-25.702-44.646-36.352-15.923-10.752-32.614-19.558-50.33-26.573-17.664-7.014-35.379-10.496-53.043-10.496-34.56 0-61.542 10.701-81.101 32.154zM729.907 353.894c-17.203 6.502-33.792 15.155-49.562 25.856-15.923 10.701-30.874 22.784-44.749 36.301-13.978 13.517-27.034 27.238-39.117 41.267 11.162 12.083 23.706 25.344 37.683 39.834 13.978 14.387 28.672 27.648 43.981 39.731 15.36 12.134 31.693 22.17 48.896 30.054 17.254 7.885 35.226 11.878 53.811 11.878 34.458 0 61.645-11.622 81.715-34.97 20.070-23.245 30.054-51.2 30.054-83.866 0-32.614-9.37-60.006-27.955-82.33-18.637-22.426-45.158-33.536-79.616-33.536-19.507 0.051-37.939 3.277-55.142 9.779z" />
+<glyph unicode="&#xea40;" glyph-name="basecamp1" d="M512 870.4c-239.258 0-476.16-331.827-476.16-636.006 0-70.502 232.141-183.194 476.16-183.194s476.16 112.691 476.16 183.194c0 304.179-236.902 636.006-476.16 636.006zM512.307 173.312c-266.138 0-341.658 105.882-341.658 139.366 0 65.894 109.056 229.632 148.787 229.632 36.813 0 78.95-92.723 118.477-92.723 63.539 0 131.43 202.445 183.245 202.445s235.571-265.114 235.571-345.549c0-13.875-55.501-133.171-344.422-133.171z" />
+<glyph unicode="&#xea41;" glyph-name="behance1" d="M413.286 496.589c0 0 96.87 7.526 96.87 125.901 0 118.528-79.258 176.179-179.712 176.179h-330.445v-661.811h330.445c0 0 201.779-6.605 201.779 195.379-0.051 0.051 8.755 164.352-118.938 164.352zM145.613 681.114h184.832c0 0 44.954 0 44.954-68.813 0-68.915-26.419-78.899-56.422-78.899h-173.363v147.712zM321.075 254.515h-175.462v176.896h184.832c0 0 66.97 0.922 66.97-90.88 0-77.414-50.022-85.453-76.339-86.016zM801.229 630.374c-244.275 0-244.070-254.31-244.070-254.31s-16.691-252.979 244.070-252.979c0 0 217.242-13.005 217.242 175.974h-111.718c0 0 3.686-71.219-101.786-71.219 0 0-111.821-7.782-111.821 115.2h328.858c0.051 0.051 36.301 287.334-220.774 287.334zM900.608 431.411h-208.589c0 0 13.619 101.99 111.718 101.99s96.87-101.99 96.87-101.99zM926.566 759.808h-261.99v-81.613h261.99v81.613z" />
+<glyph unicode="&#xea42;" glyph-name="creative-cloud" d="M645.12 819.2c-100.659 0-191.488-41.626-256.614-108.493-19.661 3.994-39.987 6.093-60.826 6.093-169.677 0-307.2-137.523-307.2-307.2s137.523-307.2 307.2-307.2h317.44c197.939 0 358.4 160.461 358.4 358.4s-160.461 358.4-358.4 358.4zM327.68 167.526c-64.666 0-125.44 25.19-171.213 70.912-45.67 45.722-70.861 106.547-70.861 171.162s25.19 125.44 70.912 171.162c45.722 45.722 106.496 70.912 171.162 70.912s125.44-25.19 171.213-70.912l95.949-96c13.978-13.978 13.978-36.659 0-50.688-14.029-14.029-36.762-13.978-50.688 0l-95.949 96.051c-64.41 64.307-176.589 64.307-240.998 0-32.205-32.256-49.92-75.008-49.92-120.525s17.715-88.269 49.92-120.525c40.192-40.141 98.97-55.194 153.139-45.261 16.589-21.709 35.277-41.728 56.32-59.136-28.006-11.059-58.010-17.152-88.986-17.152zM854.477 251.443c-55.962-55.91-130.304-86.733-209.357-86.733-79.104 0-153.446 30.822-209.408 86.733l-138.701 138.701c-13.978 13.978-13.978 36.71 0 50.688s36.71 13.978 50.688 0l138.701-138.701c42.394-42.394 98.765-65.741 158.72-65.741s116.275 23.347 158.669 65.741 65.741 98.765 65.741 158.669-23.347 116.275-65.741 158.669-98.714 65.741-158.669 65.741c-44.698 0-87.398-13.056-123.802-37.222-19.507 15.821-41.062 29.133-64.051 39.885 52.992 43.93 118.221 69.069 187.904 69.069 79.053 0 153.395-30.822 209.357-86.733 55.962-55.962 86.733-130.304 86.733-209.357s-30.822-153.498-86.784-209.408z" />
+<glyph unicode="&#xea43;" glyph-name="dropbox1" d="M312.781 926.618l-292.301-182.016 200.243-167.885 291.277 189.082-199.219 160.819zM688.742 154.010c-5.222 0-10.394 1.69-14.592 5.222l-162.15 134.554-162.15-134.605c-4.198-3.482-9.421-5.222-14.592-5.222-4.352 0-8.704 1.178-12.493 3.686l-120.115 78.49v-46.285l309.35-194.867 309.35 194.918v46.285l-120.115-78.49c-3.789-2.509-8.141-3.686-12.493-3.686zM1003.52 744.602l-292.352 182.016-199.168-160.819 291.226-189.082 200.294 167.885zM512 394.701l180.634-149.914 288.819 188.826-178.227 143.104-291.226-182.016zM331.366 244.787l180.634 149.914-291.277 182.016-178.176-143.104 288.819-188.826z" />
+<glyph unicode="&#xea44;" glyph-name="evernote" d="M887.757 752.282c0 58.88-88.678 65.382-88.678 65.382l-208.333 13.107c0 0-4.454 56.678-46.541 76.39-42.086 19.61-88.371 13.619-121.651 13.312-33.28-0.358-41.114-42.752-41.114-82.79 0-39.987 0.717-86.221 0.717-115.2 0-52.122-22.886-74.189-80.179-74.189h-118.118c-33.024 2.099-58.726-3.277-58.726-30.003 0-26.778 38.861-254.618 92.211-307.2 30.976-30.515 220.416-51.917 260.301-51.917s26.573 117.811 37.683 117.811c11.11 0 23.245-66.509 86.118-82.074 62.771-15.718 146.637-12.8 151.091-57.498 5.786-58.982 11.11-135.27-27.699-140.698l-87.859-3.482c-60.211 4.301-44.032 70.093-17.459 70.093s39.885 0.973 39.885 0.973l3.328 71.987c0 0-137.882 16.282-143.718-76.698-5.376-84.992 9.216-125.082 19.917-133.786 10.701-8.806 29.235-25.805 198.093-25.805 237.926 0 150.733 693.402 150.733 752.282zM790.528 444.416c-9.318-10.035-43.11 16.384-75.366 16.384-32.307 0-67.123-17.101-75.315-5.786-8.192 11.213 7.475 101.888 68.301 101.888s91.802-102.605 82.381-112.486zM297.165 759.501c0 11.725 2.97 152.781 2.97 152.781l-179.456-176.128c0 0 124.006 0 148.378 0 24.371 0.051 28.109 11.725 28.109 23.347z" />
+<glyph unicode="&#xea45;" glyph-name="flattr1" d="M286.618 535.501c0 83.814 22.221 137.114 96.717 149.094 26.010 5.12 80.179 3.277 114.637 3.277v-128c0-1.229 0.154-3.277 0.461-4.301 1.382-5.171 6.093-8.96 11.674-8.96 3.123 0 6.042 1.587 9.114 4.608l319.283 319.181h-452.045c-188.109 0-284.058-108.288-284.058-310.579v-424.294l184.218 184.422v215.552zM737.28 601.702v-215.501c0-83.814-22.221-137.216-96.717-149.094-26.010-5.12-80.179-3.328-114.586-3.328v128c0 1.126-0.205 3.174-0.461 4.301-1.434 5.12-6.144 8.909-11.674 9.011-3.174 0-6.042-1.69-9.165-4.71l-319.232-319.078 452.096-0.102c188.058 0 284.058 108.288 284.058 310.579v424.294l-184.32-184.371z" />
+<glyph unicode="&#xea46;" glyph-name="foursquare1" d="M251.904 921.6c-26.010 0-47.104-21.094-47.104-47.104v-845.619c0-32 39.168-47.411 61.030-24.064l228.915 245.248c3.482 3.789 8.346 5.939 13.517 5.939h165.734c24.883 0 46.336 17.562 51.251 41.984l108.083 538.317c8.858 44.134-24.883 85.299-69.888 85.299h-511.539zM452.506 348.672l-145.306-170.854v623.821c0 9.677 7.885 17.562 17.562 17.562h365.568c17.51 0 30.618-16.026 27.136-33.178l-21.146-105.216c-1.741-8.858-9.523-15.206-18.534-15.206h-189.952c-14.95 0-27.034-12.083-27.034-27.034v-62.464c0-7.117 5.786-12.902 12.954-12.902h168.653c15.667 0 27.443-14.336 24.371-29.747l-31.437-156.57c-2.202-10.752-11.674-18.483-22.63-18.483h-139.11c-8.141 0-15.821-3.533-21.094-9.728z" />
+<glyph unicode="&#xea47;" glyph-name="google-drive1" d="M418.56 307.2l-170.189-307.2h605.389l170.24 307.2h-605.44zM300.288 855.091l-300.288-543.488 172.646-311.501 300.339 543.488-172.698 311.501zM995.584 358.4l-312.115 563.2h-345.344l311.706-563.2h345.754z" />
+<glyph unicode="&#xea48;" glyph-name="google-hangouts" d="M512 972.8c-243.2 0-440.32-194.867-440.32-435.2s197.12-435.2 440.32-435.2v-153.6c172.442 85.606 440.32 271.616 440.32 588.8 0 240.333-197.12 435.2-440.32 435.2zM460.8 474.061c0-67.994-52.275-124.006-118.784-129.946-6.298-0.563-11.674 4.506-11.674 10.803v43.622c0 5.427 4.045 9.933 9.421 10.752 27.187 3.891 47.974 24.934 53.606 51.507h-99.891c-20.685 0-37.478 16.794-37.478 37.478v129.843c0 20.685 16.794 37.478 37.478 37.478h129.843c20.685 0 37.478-16.794 37.478-37.478v-154.061zM768 474.061c0-67.994-52.275-124.006-118.784-129.946-6.298-0.563-11.674 4.506-11.674 10.803v43.622c0 5.427 4.045 9.933 9.421 10.752 27.187 3.942 47.974 24.934 53.606 51.507h-99.891c-20.685 0-37.478 16.794-37.478 37.478v129.843c0 20.685 16.794 37.478 37.478 37.478h129.843c20.685 0 37.478-16.794 37.478-37.478v-154.061z" />
+<glyph unicode="&#xea49;" glyph-name="grooveshark" d="M512 911.411c-248.883 0-450.56-201.728-450.56-450.611 0-248.781 201.677-450.611 450.611-450.611 248.832 0 450.56 201.779 450.56 450.611-0.051 248.883-201.728 450.611-450.611 450.611zM693.146 443.494c-24.371 34.099-49.306 67.584-76.646 99.277-25.651 29.901-52.941 58.419-82.637 84.224-29.594 25.805-61.85 50.278-97.28 67.379-23.808 11.52-48.333 20.122-73.677 27.443-2.867 0.768-10.65 4.301-12.902 0.768-1.434-2.202-0.307-6.298-0.102-8.704 0.717-5.274 1.331-10.496 1.997-15.77 7.578-62.874 10.445-129.28-9.114-190.413-10.445-32.922-29.594-62.976-55.040-86.323-21.146-19.405-51.302-38.912-81.254-37.478-5.53 0.205-11.162 1.178-16.589 3.021-32.051 10.803-33.946 45.363-34.15 73.882-0.205 30.618 3.482 61.184 11.059 90.88 2.304 9.114 5.171 18.074 8.192 26.982 35.072 101.683 116.224 184.422 218.061 220.518 38.093 13.517 78.438 20.326 118.938 20.326 119.091 0 232.397-61.184 297.83-160.614 16.384-24.986 29.542-52.019 39.219-80.179h-0.154c3.123-8.909 5.99-17.92 8.346-26.982 7.475-29.696 11.264-60.314 11.059-90.88-0.41-57.6-18.944-121.19-91.29-90.675-34.15 14.438-62.669 43.622-83.866 73.318z" />
+<glyph unicode="&#xea4a;" glyph-name="icloud" d="M558.541 716.8c96.461 0 174.95-81.818 174.95-182.323 0-6.963-0.614-14.848-1.894-24.781 0 0-8.346-64.614-10.547-81.613s9.523-33.28 27.034-33.434c17.51-0.102 84.48-0.512 84.48-0.512 49.050-0.307 89.037-42.752 89.037-94.618 0-52.224-40.192-94.72-89.6-94.72h-618.65c-61.184 0-110.95 52.326-110.95 116.634 0 46.746 26.573 88.832 67.738 107.264 0 0 21.555 9.626 33.331 14.899s26.010 22.067 26.419 39.68c0.41 17.613 0.819 36.557 0.819 36.557 0.614 27.392 21.555 49.664 46.592 49.664 1.638 0 4.813-0.307 10.598-1.792 0 0 39.629-10.086 53.197-13.517s31.027 3.379 37.376 15.821c6.349 12.442 25.754 50.227 25.754 50.227 30.618 59.546 89.754 96.563 154.317 96.563zM558.541 819.2c-106.547 0-198.963-61.798-245.402-152.269-11.52 2.918-23.398 4.915-35.789 4.915-81.254 0-147.098-66.765-148.992-149.709-75.469-33.741-128.358-110.797-128.358-200.704 0-120.986 95.488-219.034 213.35-219.034h618.65c106.035 0 192 88.269 192 197.12 0 108.442-85.35 196.352-190.874 197.018 1.587 12.442 2.714 25.037 2.714 37.939 0.051 157.235-124.109 284.723-277.299 284.723v0z" />
+<glyph unicode="&#xea4b;" glyph-name="mixi" d="M488.755 89.19h48.896v-109.722c333.312 35.021 511.078 365.722 482.355 598.579-28.877 232.96-279.091 393.83-560.333 359.424-281.19-34.509-484.762-251.29-455.987-484.301 26.266-211.866 235.622-364.186 485.069-363.981zM803.533 314.368h-93.747v253.594c0 10.189-0.922 19.814-2.714 28.518-1.485 7.578-4.301 13.978-8.397 19.507-3.891 5.12-9.574 9.318-16.896 12.493-7.782 3.379-18.586 5.12-31.898 5.12-27.494 0-48.998-7.219-64.051-21.299-14.899-13.978-22.17-32.41-22.17-56.32v-241.613h-93.696v253.594c0 10.496-0.973 20.224-3.021 28.877-1.741 7.68-4.659 14.182-8.858 19.814-3.942 5.222-9.165 9.114-16.077 12.134-7.373 3.174-17.408 4.813-29.696 4.813-15.974 0-29.696-3.021-40.704-8.909-11.418-5.99-20.736-13.312-27.699-21.606-7.066-8.397-12.237-17.101-15.309-25.907-3.174-8.806-4.71-15.872-4.71-21.197v-241.613h-93.798v394.035h90.010v-30.72c29.389 26.010 66.867 39.219 111.667 39.219 26.112 0 50.227-5.274 71.629-15.616 15.667-7.526 28.365-18.688 37.786-33.382 11.827 12.698 25.805 23.091 41.677 31.181 23.245 11.827 49.050 17.818 76.749 17.818 20.582 0 39.578-2.202 56.422-6.502 17.562-4.403 32.973-11.52 45.824-21.094 13.21-9.882 23.552-22.784 30.822-38.4 7.219-15.411 10.854-33.792 10.854-54.784v-281.754z" />
+<glyph unicode="&#xea4c;" glyph-name="onedrive1" d="M329.165 468.634c24.934 100.403 115.149 173.773 222.259 173.773 63.283 0 122.573-25.856 165.478-70.758 18.125 5.837 39.322 10.342 58.163 10.752v6.656c0 127.078-94.464 230.144-210.944 230.144-83.251 0-154.624-53.146-188.928-129.587-25.293 17.101-54.835 27.392-86.733 27.392-91.392 0-165.427-80.742-165.427-180.378 0-10.752 1.229-21.197 2.918-31.386-70.502-6.963-125.696-79.053-125.696-157.696 0-0.819 0.205-1.485 0.205-2.304-0.051-0.717-0.461-1.434-0.461-2.15 0-31.488 10.957-60.262 28.723-83.507 25.19-33.894 64.614-54.784 109.568-54.784h64.563c-12.595 24.986-20.378 52.838-20.378 82.688-0.051 88.934 62.976 163.43 146.688 181.146zM915.917 369.818c-1.28 0-2.56-0.358-3.84-0.41 0.358 3.789 1.126 7.475 1.126 11.366 0 75.366-61.082 136.397-136.448 136.397-30.003 0-57.498-9.933-80.077-26.419-27.955 51.968-82.125 87.654-145.306 87.654-91.546 0-165.734-74.189-165.734-165.734 0-1.178 0.307-2.202 0.358-3.379-6.042 0.922-12.083 1.843-18.381 1.843-68.352 0-123.648-55.347-123.648-123.648 0-8.55 0.87-16.896 2.509-24.934 11.674-62.003 65.946-108.954 131.379-108.954h548.147v0.973c54.886 5.222 97.997 50.893 97.997 107.11 0 59.699-48.384 108.134-108.083 108.134z" />
+<glyph unicode="&#xea4d;" glyph-name="paypal1" d="M405.197 426.138h84.941c184.525 0 289.229 83.098 322.56 253.952 1.075 5.632 2.048 11.059 2.867 16.486 1.843 11.571 2.765 21.965 3.174 31.949 0.307 6.861 0.512 10.906 0.461 14.694-0.41 20.019-3.942 36.966-11.059 53.197-6.605 15.155-16.589 30.054-31.386 47.002-43.674 49.664-119.757 78.182-210.637 78.182h-289.434c-20.378 0-37.734-14.848-40.909-34.97l-52.224-336.435-64.973-419.072c-2.355-15.104 9.318-28.723 24.576-28.723h141.926l43.469 258.202c5.99 37.888 38.246 65.536 76.646 65.536zM871.27 660.992c-40.55-193.075-171.878-295.526-381.184-295.526h-84.89c-8.397 0-15.462-6.042-16.794-14.438l-56.576-351.027h148.838c17.818 0 33.024 12.954 35.789 30.566l1.485 7.68 28.416 179.917 1.843 9.933c2.765 17.613 17.971 30.566 35.789 30.566h22.528c145.92 0 260.147 59.29 293.53 230.707 13.722 70.656 6.758 129.741-28.774 171.622z" />
+<glyph unicode="&#xea4e;" glyph-name="picasa" d="M297.37 879.462c-158.157-81.306-256.41-241.715-256.41-419.738 0-32.41 4.096-65.28 11.315-98.202l406.989 370.637c-43.418 39.475-157.491 143.309-161.894 147.302zM706.202 889.549c-61.44 27.904-126.771 42.291-194.253 42.291-47.821 0-94.976-7.987-140.749-22.579l335.002-304.691v284.979zM777.83 847.974v-543.59h178.432c17.562 50.278 26.726 102.605 26.726 155.392 0.051 155.29-77.926 300.646-205.158 388.198zM74.906 285.235c34.509-86.682 95.078-161.28 172.442-214.221v371.2l-104.704-95.283c-35.738-32.461-65.536-59.699-67.738-61.696zM318.976 29.44c47.872-21.606 97.946-34.918 149.504-39.68h86.477c154.573 14.387 293.222 105.882 368.589 242.893h-604.57v-203.213z" />
+<glyph unicode="&#xea4f;" glyph-name="qq" d="M870.656 306.278c-39.885 28.006-89.651 26.112-117.965-14.182-28.314-40.192-226.202-288.41-550.451-185.293 12.237-10.701 25.088-20.787 38.656-30.31 212.634-149.811 506.47-98.714 656.179 113.92 28.416 40.294 13.466 87.757-26.419 115.866zM244.992 337.869c-20.685 44.595-136.653 340.122 114.688 569.395-15.36-5.325-30.566-11.315-45.568-18.278-235.981-109.312-338.739-389.274-229.427-625.306 20.634-44.595 69.274-55.501 113.562-35.021 44.237 20.531 67.379 64.614 46.746 109.21zM554.291 930.662c-48.947 4.403-82.637-32.205-87.040-80.794-4.352-48.589 22.272-90.675 71.219-95.078s362.854-51.712 435.712-384.102c3.174 15.923 5.427 32.102 6.963 48.589 23.296 259.123-167.782 488.090-426.854 511.386zM352.819 433.664c-13.517-31.693-15.667-62.106-4.813-67.686 7.475-3.891 19.149 5.018 30.106 21.299 4.352-17.766 15.104-33.894 30.464-46.797-16.077-5.888-26.624-15.616-26.624-26.573 0-18.125 28.467-32.717 63.539-32.717 31.642 0 57.856 11.878 62.72 27.494 1.28 0 6.298 0 7.526 0 4.864-15.616 31.078-27.494 62.771-27.494 35.123 0 63.539 14.592 63.539 32.717 0 11.008-10.496 20.685-26.624 26.573 15.309 12.902 26.112 28.979 30.413 46.797 10.957-16.282 22.63-25.19 30.157-21.299 10.803 5.581 8.704 35.994-4.864 67.686-10.598 24.986-24.986 43.418-35.942 47.411 0.205 1.587 0.205 3.226 0.205 4.813 0 9.728-2.662 18.586-7.27 25.805 0.102 0.614 0.102 1.178 0.102 1.69 0 4.506-1.075 8.602-2.867 12.186-2.765 64.922-45.005 116.429-113.357 116.429-68.403 0-110.643-51.507-113.408-116.378-1.792-3.584-2.918-7.68-2.918-12.186 0-0.512 0.051-1.075 0.102-1.69-4.506-7.27-7.219-16.179-7.219-25.856 0-1.587 0.051-3.174 0.205-4.813-10.906-3.994-25.344-22.374-35.942-47.411z" />
+<glyph unicode="&#xea50;" glyph-name="rdio-with-circle" d="M512 952.32c-271.462 0-491.52-220.058-491.52-491.52s220.058-491.52 491.52-491.52 491.52 220.058 491.52 491.52-220.058 491.52-491.52 491.52zM686.234 487.322c1.126-8.704 1.741-17.51 1.741-26.522 0-111.411-89.19-201.779-199.27-201.779-109.978 0-199.219 90.419-199.219 201.779 0 111.514 89.19 201.83 199.219 201.83 15.821 0 31.13-1.997 45.875-5.478v-114.944c-23.245 8.499-51.968 7.27-78.899-5.683-48.742-23.603-73.472-76.493-55.245-118.323 18.278-41.779 72.602-56.627 121.395-33.024 33.587 16.179 63.181 55.194 63.181 104.192v148.122c4.198-2.304 8.294-4.915 12.288-7.475 37.837-23.808 94.106-55.603 159.795-58.982 25.651-1.331-10.086-65.741-70.861-83.712z" />
+<glyph unicode="&#xea51;" glyph-name="renren1" d="M433.562 928.512c-222.771-37.325-392.602-231.014-392.602-464.435 0-116.019 41.984-222.106 111.565-304.179 164.915 79.821 280.166 260.403 281.037 470.579v298.035zM512.102 345.19c-29.338-121.498-116.992-225.28-226.202-294.298 67.072-36.813 144.179-57.805 226.099-57.805 82.022 0 159.13 20.992 226.202 57.805-109.21 69.018-196.813 172.8-226.099 294.298zM590.592 632.678c0-211.098 115.507-392.602 280.934-472.781 69.53 82.074 111.514 188.211 111.514 304.179 0 233.421-169.728 427.008-392.448 464.384v-295.782z" />
+<glyph unicode="&#xea52;" glyph-name="scribd" d="M237.722 36.659c0-11.469-3.686-25.19-7.578-36.659h293.734c16.794 19.302 26.266 42.547 26.266 68.71 0 70.912-84.173 110.285-268.339 196.71l-25.907 12.083c-90.778 43.162-158.003 81.152-204.698 126.413v-225.178c9.011 1.229 18.381 2.15 28.57 2.15 153.651-0.051 157.952-142.797 157.952-144.23zM870.4 921.6h-191.386c89.498-60.314 126.31-145.51 126.31-212.070 0-112.333-94.003-148.736-139.622-148.736l-13.875-0.102c-104.755 0-158.208 63.846-158.925 189.798-6.195 4.915-35.226 23.194-120.166 23.194-100.352 0-141.978-79.002-141.978-121.293 0-49.818 27.802-105.216 229.581-173.158 344.883-115.405 344.883-269.056 344.883-404.634v-1.331c0-22.374-1.587-47.309-5.99-73.267h71.168c56.32 0 102.4 46.029 102.4 102.4v716.8c0 56.32-46.080 102.4-102.4 102.4z" />
+<glyph unicode="&#xea53;" glyph-name="sina-weibo1" d="M752.026 457.318c-14.029 4.301-23.706 7.27-16.333 26.010 15.923 40.806 17.613 75.981 0.358 101.12-32.41 47.104-121.037 44.595-222.618 1.28 0 0.102-31.898-14.182-23.757 11.622 15.667 51.046 13.261 93.85-11.059 118.528-55.091 56.218-201.574-2.099-327.27-129.997-94.157-95.795-148.787-197.274-148.787-285.082 0-167.987 211.558-280.32 418.56-280.32 271.309 0 451.84 170.701 451.84 298.086 0 77.056-63.693 120.73-120.934 138.752zM421.683 95.795c-165.12-16.384-307.763 58.726-318.464 167.68-10.701 109.005 114.483 210.688 279.654 227.226 165.171 16.384 307.763-58.675 318.464-167.68 10.701-109.107-114.483-210.842-279.654-227.226zM1021.44 594.074c-0.051 169.574-137.523 306.995-307.2 306.995-19.814 0-35.789-15.974-35.789-35.789s15.974-35.789 35.789-35.789c130.099 0 235.571-105.523 235.571-235.622 0-19.814 16.026-35.789 35.84-35.789s35.789 16.026 35.789 35.84v0.154zM879.053 599.296c-16.333 79.974-79.411 143.002-159.386 159.386-19.354 3.994-38.298-8.499-42.291-27.904-3.942-19.302 8.499-38.298 27.904-42.291 52.019-10.598 92.979-51.61 103.629-103.578 3.994-19.405 22.938-31.795 42.291-27.904 19.302 3.994 31.846 22.989 27.853 42.291zM336.998 383.898c-66.56-13.414-111.462-69.222-100.301-124.621 11.162-55.501 74.086-89.6 140.646-76.186 66.509 13.414 111.411 69.222 100.301 124.621-11.162 55.398-74.189 89.6-140.646 76.186z" />
+<glyph unicode="&#xea54;" glyph-name="skype-with-circle" d="M622.797 468.378c-11.776 7.885-26.317 14.694-43.059 20.224-16.538 5.478-35.226 10.496-55.654 15.002-16.077 3.789-27.802 6.81-34.765 8.806-6.81 1.894-13.619 4.608-20.275 8.090-6.349 3.277-11.418 7.219-15.002 11.725-3.328 4.198-5.018 9.216-5.018 15.104 0 9.626 5.12 17.715 15.616 24.781 10.854 7.322 25.549 11.008 43.571 11.008 19.456 0 33.587-3.277 42.035-9.882 8.704-6.81 16.282-16.486 22.528-28.774 5.427-9.626 10.291-16.282 15.053-20.48 5.069-4.608 12.339-7.014 21.658-7.014 10.291 0 18.944 3.686 25.856 11.11 6.861 7.322 10.342 15.718 10.342 24.986 0 9.626-2.714 19.61-7.885 29.491s-13.414 19.405-24.422 28.314c-11.008 8.909-24.934 15.974-41.523 21.299-16.486 5.325-36.301 7.987-58.726 7.987-28.16 0-52.992-3.994-73.882-11.981-21.146-8.090-37.581-19.866-48.845-34.97-11.366-15.206-17.101-32.819-17.101-52.378 0-20.48 5.478-37.888 16.282-51.814 10.598-13.722 25.19-24.678 43.213-32.614 17.715-7.68 39.834-14.49 65.997-20.275 19.149-4.096 34.714-8.090 46.131-11.776 10.957-3.482 20.019-8.602 26.88-15.206 6.502-6.298 9.677-14.285 9.677-24.627 0-12.902-6.093-23.398-18.586-32.307-12.851-9.011-29.901-13.517-50.688-13.517-15.155 0-27.392 2.202-36.557 6.707-9.062 4.403-16.128 9.984-21.094 16.691-5.171 7.014-9.984 15.923-14.438 26.419-3.994 9.677-9.011 17.101-14.797 22.221-5.99 5.325-13.517 7.885-22.118 7.885-10.598 0-19.405-3.379-26.317-9.984-6.963-6.81-10.496-15.002-10.496-24.525 0-15.104 5.427-30.925 16.128-46.694 10.598-15.821 24.525-28.518 41.472-37.888 23.654-12.902 53.965-19.405 90.112-19.405 30.106 0 56.525 4.813 78.643 14.182 22.272 9.523 39.475 22.989 51.098 39.885 11.674 16.998 17.613 36.506 17.613 57.805 0 17.818-3.43 33.178-10.24 45.619-6.81 12.39-16.384 22.682-28.416 30.771zM512 952.32c-271.462 0-491.52-220.058-491.52-491.52s220.058-491.52 491.52-491.52 491.52 220.058 491.52 491.52-220.058 491.52-491.52 491.52zM629.811 185.6c-24.934 0-48.435 6.4-69.018 17.818-14.899-2.918-30.31-4.403-46.080-4.403-138.906 0-251.597 116.019-251.597 258.918 0 17.92 1.792 35.328 5.12 52.122-12.749 22.221-20.070 48.128-20.070 75.827 0 82.893 65.331 150.221 145.971 150.221 28.518 0 55.091-8.499 77.619-23.091 13.926 2.509 28.365 3.789 42.957 3.789 139.008 0 251.648-115.917 251.648-258.918 0-18.995-1.997-37.581-5.786-55.501 9.677-20.122 15.155-42.701 15.155-66.714-0.051-82.842-65.331-150.067-145.92-150.067z" />
+<glyph unicode="&#xea55;" glyph-name="skype1" d="M955.955 356.506c6.758 31.898 10.394 65.126 10.394 99.226 0 255.283-201.216 462.285-449.382 462.285-26.163 0-51.814-2.406-76.8-6.81-40.192 26.010-87.654 41.114-138.598 41.114-143.923 0-260.608-120.013-260.608-268.134 0-49.408 13.107-95.795 35.789-135.578-5.939-30.003-9.114-61.133-9.114-92.928 0-255.283 201.216-462.285 449.28-462.285 28.211 0 55.654 2.611 82.278 7.68 36.71-20.275 78.592-31.795 123.187-31.795 143.923 0 260.608 120.013 260.608 268.083 0.051 42.854-9.728 83.251-27.034 119.142zM747.469 234.701c-20.787-30.208-51.507-54.221-91.29-71.219-39.373-16.896-86.63-25.395-140.39-25.395-64.512 0-118.63 11.622-160.922 34.714-30.208 16.794-55.091 39.475-73.984 67.482-19.046 28.416-28.723 56.525-28.723 83.61 0 16.896 6.298 31.59 18.688 43.622 12.288 11.878 28.109 18.022 46.899 18.022 15.411 0 28.774-4.813 39.578-14.182 10.342-9.011 19.2-22.426 26.317-39.578 7.987-18.79 16.691-34.611 25.856-47.104 8.806-11.981 21.504-22.118 37.632-30.003 16.282-7.885 38.298-11.878 65.28-11.878 37.12 0 67.584 8.090 90.522 24.218 22.426 15.821 33.28 34.611 33.28 57.702 0 18.278-5.683 32.614-17.408 43.878-12.186 11.674-28.416 20.89-47.923 27.187-20.429 6.502-48.179 13.619-82.483 20.992-46.592 10.291-86.17 22.477-117.709 36.198-32.256 14.080-58.214 33.69-77.21 58.214-19.2 24.73-29.030 55.91-29.030 92.518 0 34.918 10.24 66.406 30.515 93.594 20.122 26.88 49.408 47.872 87.194 62.31 37.274 14.182 81.715 21.402 131.891 21.402 40.090 0 75.418-4.813 104.806-14.182 29.594-9.523 54.579-22.323 74.189-38.093 19.814-15.923 34.509-32.922 43.725-50.483 9.318-17.92 14.080-35.584 14.080-52.787 0-16.486-6.195-31.488-18.483-44.595-12.288-13.21-27.802-19.814-46.080-19.814-16.589 0-29.696 4.198-38.707 12.39-8.397 7.578-17.203 19.61-26.829 36.71-11.213 21.914-24.781 39.219-40.346 51.302-15.104 11.878-40.346 17.92-75.059 17.92-32.205 0-58.419-6.707-77.773-19.814-18.842-12.749-27.904-27.238-27.904-44.339 0-10.598 2.97-19.405 9.011-26.88 6.4-8.090 15.411-15.104 26.778-20.992 11.776-6.144 23.91-10.957 36.096-14.438 12.493-3.584 33.485-8.806 62.208-15.718 36.403-7.987 69.786-16.998 99.277-26.675 29.952-9.882 55.808-22.016 76.902-36.096 21.504-14.49 38.605-33.024 50.637-55.091 12.134-22.221 18.278-49.613 18.278-81.408 0.051-38.144-10.547-72.806-31.386-103.219z" />
+<glyph unicode="&#xea56;" glyph-name="slideshare" d="M665.6 610.304c70.707 0 128 57.293 128 128s-57.293 128-128 128-128-57.293-128-128 57.344-128 128-128zM964.864 668.518c-183.296-130.816-267.725-107.93-350.464-105.318-57.242 2.918-76.8-15.258-76.8-55.296l0.051-307.2c0-256 431.155-175.616 264.448 253.389 85.555 49.101 157.491 124.621 198.451 174.694 21.043 31.13-1.434 63.744-35.686 39.731zM358.4 866.304c-70.707 0-128-57.293-128-128s57.293-128 128-128 128 57.293 128 128-57.344 128-128 128zM409.6 563.2c-82.739-2.611-167.168-25.498-350.464 105.318-34.253 24.013-56.73-8.602-35.686-39.68 40.96-50.125 112.896-125.594 198.451-174.694-166.707-429.005 264.448-509.389 264.448-253.389l0.051 307.2c0 39.987-19.558 58.163-76.8 55.245z" />
+<glyph unicode="&#xea57;" glyph-name="smashing" d="M513.178 151.962c-128.41 0-217.754 79.616-217.754 79.616l-75.93-172.186c52.378-28.006 107.11-47.923 138.701-58.419l-81.51-19.507c-38.195-9.114-76.595 14.49-85.76 52.685l-158.208 661.914c-9.165 38.195 14.387 76.595 52.634 85.811l190.259 45.517c-46.592-52.685-64.666-115.302-60.109-186.88 7.117-112.282 114.534-198.605 242.381-246.886 240.691-90.931 183.603-241.664 55.296-241.664zM991.283 225.587l-158.259 661.914c-9.114 38.195-47.514 61.798-85.76 52.582l-136.346-32.614c34.765-5.376 103.629-20.48 179.456-60.314l-59.341-164.506c0 0-49.408 55.194-181.914 61.901-125.952 6.4-195.994-129.894 49.613-210.176 188.109-61.491 248.218-180.019 245.094-289.69-1.587-56.986-21.555-103.322-44.646-138.291l139.52 33.382c38.195 9.114 61.747 47.514 52.582 85.811z" />
+<glyph unicode="&#xea58;" glyph-name="soundcloud1" d="M34.406 304.384l16.794 71.731-16.794 74.086c-0.461 2.202-4.71 3.891-9.779 3.891-5.222 0-9.421-1.69-9.779-3.891l-14.848-74.086 14.797-71.68c0.41-2.304 4.608-3.891 9.779-3.891 5.12-0.051 9.37 1.536 9.83 3.84zM139.418 264.602l14.182 110.797-14.182 171.418c-0.461 4.301-5.837 7.782-12.237 7.782-6.502 0-11.93-3.482-12.186-7.782l-12.595-171.418 12.595-110.797c0.307-4.403 5.683-7.782 12.186-7.782 6.4 0 11.776 3.379 12.237 7.782zM244.122 266.394l11.878 108.902-11.878 228.198c-0.307 5.427-6.605 9.626-14.438 9.626-7.782 0-14.080-4.198-14.387-9.626l-10.496-228.198 10.496-109.005c0.307-5.274 6.605-9.523 14.387-9.523 7.834 0.051 14.131 4.25 14.438 9.626zM348.672 267.981l9.728 107.315-9.728 229.888c-0.256 6.298-7.475 11.315-16.384 11.315-9.011 0-16.179-5.018-16.435-11.315l-8.653-229.888 8.704-107.315c0.205-6.298 7.424-11.315 16.384-11.315 8.909 0.051 16.128 4.915 16.384 11.315zM453.12 269.414l7.68 105.779-7.68 263.629c-0.205 7.27-8.397 13.056-18.33 13.056s-18.125-5.888-18.278-13.107l-6.912-263.475 6.912-105.882c0.154-7.219 8.346-13.107 18.278-13.107s18.125 5.786 18.33 13.107zM526.182 256.205c0.41 0 363.52-0.205 365.824-0.205 72.909 0 131.994 57.19 131.994 127.693s-59.085 127.59-131.994 127.59c-18.074 0-35.277-3.584-50.995-9.882-10.496 114.995-110.234 205.21-231.885 205.21-29.747 0-58.778-5.683-84.378-15.206-10.035-3.789-12.646-7.578-12.749-15.104v-404.992c0.102-7.834 6.349-14.285 14.182-15.104z" />
+<glyph unicode="&#xea59;" glyph-name="spotify-with-circle" d="M512 952.32c-271.462 0-491.52-220.058-491.52-491.52s220.058-491.52 491.52-491.52 491.52 220.058 491.52 491.52-220.058 491.52-491.52 491.52zM663.757 264.346c-7.578 0-12.8 2.867-18.381 6.246-51.866 31.386-116.122 47.872-185.754 47.872-35.533 0-73.882-4.198-113.971-12.39l-4.864-1.229c-5.12-1.229-10.291-2.56-14.285-2.56-16.128 0-28.774 12.544-28.774 28.621 0 16.282 9.216 27.802 24.525 30.72 47.821 10.906 92.877 16.179 137.574 16.179 80.896 0 153.293-18.688 215.091-55.808 10.65-6.195 17.306-13.312 17.306-29.133-0.051-15.77-12.749-28.518-28.467-28.518zM703.59 376.115c-9.062 0-14.95 3.43-20.224 6.502-93.44 55.501-232.806 73.882-347.392 43.366-1.894-0.563-3.584-1.075-5.222-1.587-4.301-1.382-8.397-2.714-14.029-2.714-18.842 0-34.15 15.411-34.15 34.406 0 18.278 9.523 31.078 26.829 35.942 44.134 12.083 85.709 20.122 145.408 20.122 96.563 0 190.157-24.218 263.475-68.096 13.363-7.578 19.405-18.074 19.405-33.69 0-18.944-15.309-34.253-34.099-34.253zM748.8 503.501c-8.499 0-13.773 1.997-21.555 6.298-63.437 38.093-162.355 60.723-264.909 60.723-53.402 0-101.888-5.888-144.23-17.306-1.434-0.358-2.816-0.768-4.25-1.229-4.506-1.331-10.138-2.97-15.974-2.97-22.477 0-40.090 17.818-40.090 40.55 0 19.763 11.11 34.867 29.645 40.346 51.098 15.104 109.978 22.682 174.848 22.682 116.787 0 227.994-25.907 304.998-71.219 14.541-8.192 21.658-20.685 21.658-37.99 0-22.323-17.664-39.885-40.141-39.885z" />
+<glyph unicode="&#xea5a;" glyph-name="spotify1" d="M512 911.36c-248.883 0-450.56-201.626-450.56-450.56 0-248.781 201.677-450.56 450.56-450.56 248.934 0 450.509 201.728 450.509 450.56 0 248.883-201.523 450.56-450.509 450.56zM690.074 230.298c-8.858 0-15.053 3.379-21.555 7.322-60.877 36.915-136.294 56.269-218.010 56.269-41.677 0-86.682-4.966-133.632-14.592l-5.734-1.434c-5.939-1.434-12.032-3.021-16.691-3.021-18.995 0-33.843 14.746-33.843 33.587 0 19.098 10.752 32.614 28.774 35.994 56.115 12.8 108.954 19.046 161.382 19.046 94.976 0 179.866-22.016 252.467-65.485 12.442-7.27 20.275-15.667 20.275-34.202-0.051-18.483-15.002-33.485-33.434-33.485zM736.819 361.421c-10.598 0-17.562 4.045-23.706 7.629-109.722 65.075-273.050 86.682-407.603 50.842-2.253-0.666-4.301-1.28-6.144-1.894-5.069-1.587-9.779-3.174-16.435-3.174-22.118 0-40.090 18.074-40.090 40.346 0 21.453 11.213 36.454 31.437 42.189 51.866 14.234 100.557 23.654 170.65 23.654 113.254 0 223.078-28.416 309.146-79.923 15.667-8.96 22.784-21.197 22.784-39.475 0-22.221-17.971-40.192-40.038-40.192zM789.862 510.925c-9.984 0-16.128 2.406-25.344 7.373-74.394 44.646-190.464 71.219-310.733 71.219-62.669 0-119.603-6.912-169.267-20.326-1.69-0.41-3.277-0.87-5.018-1.382-5.274-1.587-11.878-3.482-18.688-3.482-26.419 0-47.053 20.89-47.053 47.565 0 23.194 13.005 40.909 34.816 47.36 59.955 17.715 128.973 26.675 205.107 26.675 137.114 0 267.571-30.464 357.939-83.507 16.998-9.677 25.344-24.32 25.344-44.646 0-26.266-20.685-46.848-47.104-46.848z" />
+<glyph unicode="&#xea5b;" glyph-name="swarm" d="M526.643 9.165c-73.165 11.878-139.93 31.078-188.262 47.258-2.355 0.768-39.987 14.438-51.558 18.944-14.234 5.478-21.658 22.067-16.23 36.352 4.403 11.52 19.405 48.589 20.429 50.893 20.48 47.104 51.2 110.234 91.904 173.005 1.485-61.594 15.206-122.829 40.499-179.507 24.576-55.142 59.853-105.267 103.219-146.944zM520.858 613.018c-142.899 291.277-460.288 280.883-510.362 150.682-38.451-99.942 129.792-338.022 516.966-166.093 0.102 0.051 0.102 0.051 0.205 0.102-1.331 2.406-5.837 12.646-6.81 15.309zM591.872 624.384c0.051 0 0.102 0.051 0.102 0.051 218.675 97.126 188.109 265.779 131.533 287.437-76.134 29.133-214.528-83.149-135.526-278.886 0.768-1.382 3.379-7.168 3.891-8.602zM993.946 411.136c-33.075 74.24-93.85 127.437-164.506 152.781-7.117 2.56-14.387 3.738-21.658 3.738-36.71 0-72.038-30.464-75.366-68.506-5.581-63.437 7.014-128.051 34.816-190.362 27.392-61.389 66.253-113.306 116.224-151.398 13.005-9.933 28.928-14.592 44.8-14.592 28.621 0 57.19 15.155 68.557 42.291 29.235 69.734 30.566 151.194-2.867 226.048zM828.006 85.043c-61.184 46.694-109.67 109.517-144.128 186.675-34.918 78.285-49.203 157.44-42.342 235.315 1.894 21.658 8.243 42.547 18.432 61.645-1.792-0.461-5.683-1.382-5.837-1.434-32.154-8.038-63.334-21.965-91.034-40.141-40.141-26.317-75.52-65.382-90.726-111.462-4.096-12.442-7.219-26.112-8.243-39.168-4.864-62.362 5.274-126.771 32.563-187.904 26.419-59.136 65.792-108.442 113.306-146.074 28.979-22.886 81.203-37.376 123.904-37.376 40.090 0 79.667 11.93 115.2 29.952 11.11 5.632 35.584 20.89 37.171 21.965-21.248 5.427-41.165 14.95-58.266 28.006z" />
+<glyph unicode="&#xea5c;" glyph-name="vine-with-circle" d="M512 952.32c-271.462 0-491.52-220.058-491.52-491.52s220.058-491.52 491.52-491.52 491.52 220.058 491.52 491.52-220.058 491.52-491.52 491.52zM609.69 622.029c-18.944 0-32.358-18.022-32.358-52.634 0-70.554 44.8-111.155 102.963-111.155 10.291 0 21.862 1.229 33.69 3.942v-54.886c-19.354-4.403-38.81-6.195-54.989-6.298-38.656-81.459-108.186-151.091-131.328-164.25-14.848-8.346-28.723-8.806-44.954 0.922-28.621 17.050-136.602 105.728-172.698 384.41h78.336c19.814-167.322 67.84-252.979 120.986-317.235 29.235 29.235 57.395 68.198 79.462 112.282-52.48 26.726-84.378 85.146-84.378 153.19 0 68.864 39.68 120.934 107.622 120.934 65.894 0 101.939-41.062 101.939-111.667 0-26.317-5.581-56.218-16.077-79.258-48.998-9.626-66.816 21.658-66.816 21.658 3.584 12.083 8.602 32.512 8.602 51.098 0.051 32.768-11.981 48.947-30.003 48.947z" />
+<glyph unicode="&#xea5d;" glyph-name="vine1" d="M893.542 463.309c-22.426-5.171-44.186-7.424-63.693-7.424-109.824 0-194.406 76.595-194.406 210.022 0 65.382 25.242 99.379 61.030 99.379 33.997 0 56.678-30.515 56.678-92.416 0-35.226-9.421-73.728-16.384-96.614 0 0 33.792-58.982 126.413-40.909 19.712 43.622 30.362 100.147 30.362 149.709 0 133.376-68.096 210.893-192.666 210.893-128.205 0-203.162-98.406-203.162-228.403 0-128.614 60.16-239.002 159.386-289.331-41.728-83.405-94.822-156.928-150.17-212.275-100.403 121.395-191.181 283.341-228.506 599.347h-147.968c68.352-526.285 272.333-693.914 326.298-726.067 30.515-18.33 56.73-17.459 84.685-1.741 43.776 24.832 175.206 156.365 248.166 310.323 30.566 0.102 67.277 3.533 103.936 11.827v103.68z" />
+<glyph unicode="&#xea5e;" glyph-name="vk-alternitive" d="M972.8 102.4v716.8c0 56.32-46.234 102.4-102.656 102.4h-716.288c-58.88 0-102.656-43.674-102.656-102.4v-716.8c0-58.778 43.776-102.4 102.656-102.4h716.288c56.422 0 102.656 46.029 102.656 102.4zM777.421 378.522c0 0 57.958-57.19 72.243-83.712 0.41-0.563 0.563-1.075 0.717-1.28 5.786-9.728 7.27-17.408 4.352-23.040-4.813-9.37-21.197-14.080-26.778-14.49 0 0-99.482 0-102.349 0-7.168 0-22.016 1.843-40.038 14.285-13.824 9.626-27.494 25.549-40.806 41.062-19.866 23.040-37.069 43.008-54.374 43.008-2.202 0-4.403-0.358-6.451-1.075-13.158-4.198-29.85-22.886-29.85-72.806 0-15.616-12.288-24.525-20.992-24.525 0 0-44.646 0-46.899 0-15.974 0-99.174 5.581-172.851 83.354-90.419 95.232-171.622 286.259-172.339 287.949-5.12 12.339 5.478 19.046 16.998 19.046h103.424c13.875 0 18.33-8.397 21.504-15.923 3.584-8.55 17.101-43.059 39.219-81.869 35.994-63.13 58.163-88.832 75.827-88.832 3.277 0 6.451 0.87 9.421 2.509 23.091 12.749 18.79 95.078 17.766 112.077 0 3.226-0.051 36.813-11.827 52.941-8.499 11.674-22.886 16.128-31.59 17.818 2.304 3.328 7.27 8.499 13.619 11.571 15.821 7.885 44.339 9.011 72.704 9.011h15.77c30.771-0.41 38.758-2.406 49.869-5.222 22.477-5.376 22.938-19.968 20.941-69.632-0.563-14.131-1.178-30.157-1.178-48.947 0-4.045-0.154-8.499-0.154-13.107-0.717-25.395-1.536-54.118 16.384-65.894 2.355-1.434 4.966-2.253 7.731-2.253 6.246 0 24.934 0 75.571 86.886 22.272 38.349 39.424 83.61 40.602 86.989 1.024 1.843 4.045 7.27 7.578 9.37 2.867 1.69 6.554 1.997 8.499 1.997h121.6c13.312 0 22.323-1.997 24.013-7.066 2.918-8.141-0.563-32.973-56.115-108.032-9.421-12.442-17.562-23.296-24.73-32.768-50.381-65.946-50.381-69.325 2.97-119.398z" />
+<glyph unicode="&#xea5f;" glyph-name="vk-with-circle" d="M512 952.32c-271.462 0-491.52-220.058-491.52-491.52s220.058-491.52 491.52-491.52 491.52 220.058 491.52 491.52-220.058 491.52-491.52 491.52zM701.030 397.773c0 0 43.469-42.906 54.17-62.822 0.307-0.41 0.461-0.819 0.563-1.024 4.352-7.322 5.376-13.005 3.226-17.254-3.584-7.066-15.872-10.547-20.070-10.854 0 0-74.65 0-76.8 0-5.325 0-16.486 1.382-30.003 10.701-10.394 7.27-20.634 19.2-30.618 30.822-14.899 17.306-27.802 32.256-40.806 32.256-1.638 0-3.328-0.256-4.864-0.768-9.83-3.174-22.426-17.203-22.426-54.579 0-11.674-9.216-18.381-15.718-18.381 0 0-33.536 0-35.174 0-11.981 0-74.394 4.198-129.69 62.515-67.686 71.424-128.614 214.682-129.126 216.013-3.84 9.267 4.096 14.234 12.749 14.234h77.568c10.342 0 13.722-6.298 16.077-11.878 2.765-6.502 12.902-32.358 29.542-61.44 26.982-47.411 43.52-66.662 56.781-66.662 2.509 0 4.813 0.666 7.117 1.843 17.306 9.626 14.080 71.322 13.312 84.122 0 2.406-0.051 27.597-8.909 39.68-6.349 8.755-17.152 12.083-23.706 13.312 1.69 2.509 5.478 6.349 10.189 8.653 11.878 5.939 33.28 6.81 54.528 6.81h11.827c23.040-0.307 28.979-1.792 37.325-3.891 16.896-4.045 17.254-14.95 15.77-52.275-0.461-10.598-0.922-22.579-0.922-36.71 0-3.072-0.154-6.349-0.154-9.83-0.512-18.995-1.126-40.55 12.288-49.408 1.741-1.075 3.738-1.69 5.837-1.69 4.659 0 18.688 0 56.678 65.178 16.64 28.774 29.542 62.72 30.464 65.229 0.768 1.331 3.021 5.427 5.683 7.014 2.099 1.229 4.915 1.485 6.349 1.485h91.187c9.933 0 16.742-1.485 18.022-5.325 2.253-6.093-0.41-24.678-42.035-81.050-7.014-9.318-13.21-17.459-18.586-24.525-37.734-49.459-37.734-51.968 2.355-89.498z" />
+<glyph unicode="&#xea60;" glyph-name="vk1" d="M911.462 343.142c0 0 82.79-81.766 103.27-119.603 0.563-0.819 0.819-1.434 0.922-1.792 8.346-13.978 10.394-24.934 6.298-33.024-6.912-13.363-30.31-20.070-38.246-20.634 0 0-142.234 0-146.33 0-10.189 0-31.386 2.662-57.19 20.48-19.712 13.773-39.322 36.454-58.317 58.624-28.365 32.922-52.89 61.491-77.722 61.491-3.174 0-6.246-0.512-9.216-1.536-18.79-5.939-42.65-32.717-42.65-104.038 0-22.323-17.613-35.021-29.952-35.021 0 0-63.898 0-67.021 0-22.835 0-141.722 7.987-247.142 119.142-129.178 136.090-245.197 409.088-246.323 411.494-7.219 17.664 7.936 27.29 24.32 27.29h147.763c19.814 0 26.266-11.981 30.771-22.733 5.222-12.339 24.576-61.696 56.32-117.146 51.405-90.214 82.995-126.925 108.237-126.925 4.762 0 9.267 1.178 13.517 3.584 32.973 18.125 26.829 135.885 25.293 160.154 0 4.71-0.051 52.582-16.947 75.725-12.083 16.589-32.666 23.040-45.107 25.395 3.328 4.813 10.394 12.186 19.456 16.538 22.579 11.264 63.386 12.902 103.885 12.902h22.477c43.93-0.614 55.296-3.43 71.27-7.475 32.154-7.68 32.768-28.518 29.952-99.482-0.819-20.275-1.69-43.11-1.69-69.99 0-5.734-0.256-12.134-0.256-18.637-0.973-36.403-2.253-77.414 23.45-94.259 3.277-2.048 7.117-3.174 11.11-3.174 8.909 0 35.584 0 107.93 124.16 31.744 54.835 56.32 119.501 58.010 124.365 1.434 2.714 5.734 10.342 10.957 13.414 3.994 2.458 9.318 2.867 12.083 2.867h173.824c18.944 0 31.795-2.867 34.304-10.035 4.198-11.622-0.819-47.104-80.179-154.419-13.363-17.869-25.088-33.331-35.379-46.848-71.936-94.413-71.936-99.174 4.25-170.854z" />
+<glyph unicode="&#xea61;" glyph-name="xing-with-circle" d="M512 952.32c-271.462 0-491.52-220.058-491.52-491.52s220.058-491.52 491.52-491.52 491.52 220.058 491.52 491.52-220.058 491.52-491.52 491.52zM412.826 384c0 0-4.403-8.806-7.834-15.821-3.635-7.066-12.083-9.779-17.766-9.779h-72.397c-12.8 0-12.237 9.779-9.114 16.179 3.226 6.4 4.71 9.421 4.71 9.421l57.6 115.2-32 64c0 0-1.485 3.072-4.71 9.472-3.123 6.4-3.686 16.128 9.114 16.128h72.397c5.683 0 14.131-2.714 17.766-9.728 3.43-7.066 7.834-15.872 7.834-15.872l32-64-57.6-115.2zM718.336 675.072c-3.226-6.4-4.71-9.472-4.71-9.472l-128-256 76.8-153.6c0 0 1.485-3.021 4.71-9.421 3.174-6.4 3.686-16.179-9.114-16.179h-72.397c-5.734 0-14.080 2.714-17.664 9.779-3.533 7.066-7.936 15.821-7.936 15.821l-76.8 153.6 128 256c0 0 4.403 8.806 7.936 15.872s11.878 9.728 17.664 9.728h72.397c12.8 0 12.237-9.728 9.114-16.128z" />
+<glyph unicode="&#xea62;" glyph-name="xing1" d="M906.394 921.6h-144.794c-11.418 0-28.314-5.376-35.328-19.507s-15.872-31.693-15.872-31.693l-256-512 153.6-307.2c0 0 8.806-17.613 15.872-31.693s23.91-19.507 35.328-19.507h144.794c25.6 0 24.576 19.507 18.176 32.307s-9.37 18.893-9.37 18.893l-153.6 307.2 256 512c0 0 3.021 6.093 9.421 18.893s7.373 32.307-18.227 32.307zM348.928 697.293c-7.014 14.131-23.91 19.507-35.328 19.507h-144.794c-25.6 0-24.576-19.507-18.176-32.307s9.37-18.893 9.37-18.893l64-128-115.2-230.4c0 0-3.021-6.093-9.421-18.893s-7.373-32.307 18.227-32.307h144.794c11.418 0 28.314 5.427 35.379 19.507 7.014 14.080 15.821 31.693 15.821 31.693l115.2 230.4-64 128c0 0-8.806 17.613-15.872 31.693z" />
+<glyph unicode="&#xea63;" glyph-name="yelp1" d="M641.946 334.285l231.578-75.059c0 0 33.126-6.093 32.768-28.262-0.205-15.616-10.086-33.382-10.086-33.382l-97.792-141.107c0 0-17.459-14.643-35.123-14.643-17.613 0-37.939 27.494-37.939 27.494l-123.75 208.538c0 0-13.926 30.413 2.56 47.155 15.104 15.36 37.786 9.267 37.786 9.267zM592.384 430.080c11.827-20.275 44.544-14.387 44.544-14.387l231.066 68.147c0 0 31.488 12.954 35.994 30.157 4.403 17.254-5.222 38.042-5.222 38.042l-110.438 131.277c0 0-9.574 16.589-29.44 18.278-21.914 1.894-35.379-24.883-35.379-24.883l-130.56-207.36c0.051 0.051-11.469-20.582-0.563-39.27zM483.226 510.925c27.187 6.758 31.539 46.643 31.539 46.643l-1.843 332.032c0 0-4.096 40.96-22.323 52.070-28.621 17.51-37.069 8.397-45.261 7.168l-191.846-71.936c0 0-18.79-6.298-28.57-22.118-13.978-22.374 14.182-55.245 14.182-55.245l199.373-274.33c0 0 19.712-20.531 44.749-14.285zM435.866 376.576c0.666 25.6-30.464 41.011-30.464 41.011l-206.234 105.114c0 0-30.566 12.698-45.414 3.84-11.315-6.758-21.402-19.046-22.374-29.85l-13.414-166.861c0 0-1.997-28.928 5.427-42.086 10.496-18.637 45.107-5.683 45.107-5.683l240.742 53.709c9.318 6.349 25.702 6.963 26.624 40.806zM495.718 286.515c-20.685 10.701-45.414-11.469-45.414-11.469l-161.178-179.098c0 0-20.122-27.392-15.002-44.186 4.813-15.77 12.8-23.603 24.064-29.133l161.894-51.558c0 0 19.61-4.096 34.509 0.256 21.094 6.195 17.203 39.526 17.203 39.526l3.635 242.483c0-0.051-0.819 23.296-19.712 33.178z" />
+<glyph unicode="&#xea64;" glyph-name="dribbble-with-circle" d="M525.312 461.722c1.69 0.614 3.482 1.075 5.274 1.587-4.25 9.472-8.96 19.302-14.285 29.901-96.256-28.518-188.416-28.774-204.851-28.518-0.154-1.28-0.154-2.611-0.154-3.891 0-48.384 17.408-94.874 49.050-131.379 10.547 16.998 66.458 100.403 164.966 132.301zM390.298 301.414c35.277-27.034 77.414-41.318 121.702-41.318 26.47 0 52.173 5.12 76.493 15.104-3.379 19.507-15.104 78.899-42.086 149.606-108.595-38.4-149.606-110.694-156.109-123.392zM642.816 613.018c-36.403 31.283-82.79 48.486-130.816 48.486-14.541 0-29.133-1.587-43.52-4.813 10.496-14.080 42.598-58.675 72.755-113.818 65.69 25.242 95.386 61.645 101.581 70.144zM496.896 529.203c-31.13 54.886-63.539 100.096-72.448 112.179-54.63-26.47-94.822-77.107-108.186-136.090h0.87c20.787 0 94.669 1.69 179.763 23.91zM589.517 435.405c23.808-66.202 34.765-121.19 37.888-138.803 43.622 30.72 73.421 77.875 82.381 130.202-8.909 2.714-41.062 11.315-81.51 11.315-13.21 0-26.266-0.922-38.758-2.714zM512 952.32c-271.462 0-491.52-220.058-491.52-491.52s220.058-491.52 491.52-491.52 491.52 220.058 491.52 491.52-220.058 491.52-491.52 491.52zM512 220.314c-132.71 0-240.589 107.878-240.589 240.486 0 132.71 107.878 240.589 240.589 240.589 132.659 0 240.538-107.93 240.538-240.589 0-132.608-107.878-240.486-240.538-240.486zM559.206 508.211c4.454-9.216 8.602-18.278 12.39-27.187 1.178-2.918 2.458-5.786 3.635-8.704 14.182 1.69 29.338 2.509 45.158 2.509 43.725 0 80.026-6.4 92.211-8.806-1.126 43.52-16.538 85.811-43.622 119.808-8.192-10.547-41.882-49.306-109.773-77.619z" />
+<glyph unicode="&#xea65;" glyph-name="dribbble1" d="M489.728 592.845c-69.53 123.597-143.923 224.41-149.35 231.834-112.179-53.043-195.891-156.416-222.054-280.934 10.547-0.205 178.278-2.202 371.405 49.101zM539.802 457.677c5.222 1.69 10.547 3.277 15.821 4.813-10.086 22.886-21.094 45.824-32.614 68.403-207.155-62.054-405.914-57.549-412.928-57.344-0.154-4.301-0.358-8.499-0.358-12.8 0-103.373 39.066-197.683 103.219-268.902l-0.256 0.307c0 0 110.080 195.277 327.117 265.523zM264.755 143.667v0.205c-2.97 2.304-6.144 4.403-9.114 6.912 5.427-4.352 9.114-7.117 9.114-7.117zM415.642 851.354c-0.358-0.102-0.768-0.205-0.768-0.205 0.307 0.102 0.717 0.102 0.717 0.102l0.051 0.102zM777.677 762.675c-70.861 62.362-163.789 100.403-265.677 100.403-32.717 0-64.41-3.994-94.822-11.315 6.144-8.192 81.664-108.493 150.426-234.701 151.654 56.781 208.947 143.974 210.074 145.613zM512-10.24c-260.096 0-470.989 210.893-470.989 470.989-0.051 260.198 210.842 471.091 470.989 471.091 260.198 0 471.040-210.893 471.040-471.091 0-260.096-210.842-470.989-471.040-470.989zM580.403 394.957c-236.083-82.278-314.061-247.706-315.648-251.085 68.301-53.299 153.907-85.299 247.194-85.299 55.706 0 108.8 11.315 157.030 31.795-5.939 35.277-29.338 158.515-85.965 305.51-0.819-0.307-1.69-0.614-2.611-0.922zM598.528 557.056c9.421-19.098 18.33-38.605 26.778-58.317 3.021-6.912 5.837-13.926 8.704-20.787 138.906 17.51 275.712-12.186 280.218-13.107-0.973 95.386-35.123 182.886-91.494 251.494-0.922-1.178-65.485-94.362-224.205-159.283zM658.483 414.464c52.787-145.203 74.189-263.27 78.285-287.283 90.317 60.979 154.522 157.696 172.39 269.824-7.987 2.56-120.627 38.246-250.675 17.459z" />
+<glyph unicode="&#xea66;" glyph-name="facebook-with-circle" d="M512 952.32c-271.462 0-491.52-220.058-491.52-491.52s220.058-491.52 491.52-491.52 491.52 220.058 491.52 491.52-220.058 491.52-491.52 491.52zM628.429 612.659h-73.882c-8.755 0-18.483-11.52-18.483-26.829v-53.35h92.416l-13.978-76.083h-78.438v-228.403h-87.194v228.403h-79.104v76.083h79.104v44.749c0 64.205 44.544 116.378 105.677 116.378h73.882v-80.947z" />
+<glyph unicode="&#xea67;" glyph-name="facebook1" d="M870.4 921.6h-716.8c-56.32 0-102.4-46.080-102.4-102.4v-716.8c0-56.371 46.080-102.4 102.4-102.4h358.4v358.4h-102.4v126.72h102.4v104.96c0 110.797 62.054 188.621 192.819 188.621l92.314-0.102v-133.376h-61.286c-50.893 0-70.246-38.195-70.246-73.626v-86.528h131.482l-29.082-126.669h-102.4v-358.4h204.8c56.32 0 102.4 46.029 102.4 102.4v716.8c0 56.32-46.080 102.4-102.4 102.4z" />
+<glyph unicode="&#xea68;" glyph-name="flickr-with-circle" d="M512 952.32c-271.462 0-491.52-220.058-491.52-491.52s220.058-491.52 491.52-491.52 491.52 220.058 491.52 491.52-220.058 491.52-491.52 491.52zM380.723 358.4c-56.115 0-101.478 45.824-101.478 102.4s45.414 102.4 101.478 102.4c56.013 0 101.478-45.824 101.478-102.4s-45.517-102.4-101.478-102.4zM643.328 358.4c-56.064 0-101.53 45.824-101.53 102.4s45.466 102.4 101.53 102.4c56.115 0 101.478-45.824 101.478-102.4s-45.414-102.4-101.478-102.4z" />
+<glyph unicode="&#xea69;" glyph-name="flickr1" d="M256 256c-112.026 0-202.752 91.597-202.752 204.8s90.726 204.8 202.752 204.8c111.974 0 202.752-91.597 202.752-204.8s-90.778-204.8-202.752-204.8zM768 256c-112.026 0-202.752 91.597-202.752 204.8s90.726 204.8 202.752 204.8c111.974 0 202.752-91.597 202.752-204.8s-90.778-204.8-202.752-204.8z" />
+<glyph unicode="&#xea6a;" glyph-name="github-with-circle" d="M512.768 463.411c0 0-0.512 0-0.768 0h-0.768c-60.979 0-114.688 15.514-146.483-13.722-18.995-17.51-26.982-38.605-26.982-61.286 0-94.822 75.93-106.496 173.517-106.496h1.485c97.536 0 173.517 11.725 173.517 106.496 0 22.682-7.987 43.827-26.982 61.286-31.846 29.235-85.555 13.722-146.534 13.722zM429.722 333.824c-18.586 0-33.587 20.89-33.587 46.592s15.002 46.49 33.587 46.49c18.586 0 33.638-20.787 33.638-46.49 0.051-25.702-15.002-46.592-33.638-46.592zM594.227 333.824c-18.586 0-33.638 20.89-33.638 46.592s15.053 46.49 33.638 46.49c18.534 0 33.587-20.787 33.587-46.49 0.051-25.702-15.002-46.592-33.587-46.592zM512 952.32c-271.462 0-491.52-220.058-491.52-491.52s220.058-491.52 491.52-491.52 491.52 220.058 491.52 491.52-220.058 491.52-491.52 491.52zM556.851 259.123c-8.806 0-26.317 0-44.851-0.102-18.534 0.102-36.045 0.102-44.851 0.102-38.912 0-193.126 3.021-193.126 188.877 0 42.701 14.643 73.984 38.656 100.096-3.789 9.421-3.994 63.078 16.384 114.483 0 0 46.899-5.12 117.811-53.811 14.797 4.147 39.987 6.246 65.126 6.246s50.278-2.099 65.178-6.195c70.912 48.691 117.811 53.811 117.811 53.811 20.378-51.405 20.224-105.114 16.384-114.483 24.013-26.112 38.656-57.395 38.656-100.096-0.051-185.958-154.266-188.928-193.178-188.928z" />
+<glyph unicode="&#xea6b;" glyph-name="github1" d="M674.816 393.779c-36.762 0-66.56-41.318-66.56-92.109 0-50.893 29.798-92.211 66.56-92.211s66.56 41.318 66.56 92.211c-0.051 50.79-29.798 92.109-66.56 92.109zM906.547 633.549c7.629 18.688 7.936 124.877-32.512 226.611 0 0-92.723-10.189-233.011-106.496-29.44 8.192-79.258 12.186-128.973 12.186-49.818 0-99.584-3.994-129.024-12.186-140.339 96.307-233.062 106.496-233.062 106.496-40.397-101.734-39.987-207.923-32.461-226.611-47.514-51.61-76.544-113.613-76.544-198.195 0-367.923 305.306-373.811 382.31-373.811 17.51 0 52.122-0.102 88.781-0.102 36.608 0 71.27 0.102 88.678 0.102 77.107 0 382.31 5.888 382.31 373.811 0 84.582-28.979 146.586-76.493 198.195zM513.434 106.752h-2.867c-193.075 0-343.501 22.989-343.501 210.688 0 45.005 15.872 86.682 53.606 121.293 62.822 57.702 169.216 27.187 289.894 27.187 0.512 0 1.024 0 1.485 0 0.512 0 0.922 0 1.382 0 120.678 0 227.123 30.515 289.997-27.187 37.632-34.611 53.504-76.288 53.504-121.293 0-187.699-150.374-210.688-343.501-210.688zM349.235 393.779c-36.762 0-66.56-41.318-66.56-92.109 0-50.893 29.798-92.211 66.56-92.211 36.813 0 66.611 41.318 66.611 92.211 0 50.79-29.798 92.109-66.611 92.109z" />
+<glyph unicode="&#xea6c;" glyph-name="google-with-circle" d="M512 952.32c-271.462 0-491.52-220.058-491.52-491.52s220.058-491.52 491.52-491.52 491.52 220.058 491.52 491.52-220.058 491.52-491.52 491.52zM483.686 249.805c-30.874-15.002-64.102-16.589-76.954-16.589-2.458 0-3.84 0-3.84 0s-1.178 0-2.765 0c-20.070 0-119.962 4.608-119.962 95.59 0 89.395 108.8 96.41 142.131 96.41h0.87c-19.251 25.702-15.258 51.61-15.258 51.61-1.69-0.102-4.147-0.205-7.168-0.205-12.544 0-36.762 1.997-57.549 15.411-25.498 16.384-38.4 44.288-38.4 82.893 0 109.107 119.142 113.51 120.32 113.613h118.989v-2.611c0-13.312-23.91-15.923-40.192-18.125-5.53-0.819-16.64-1.894-19.763-3.482 30.157-16.128 35.021-41.421 35.021-79.104 0-42.906-16.794-65.587-34.611-81.51-11.059-9.882-19.712-17.613-19.712-28.006 0-10.189 11.878-20.582 25.702-32.717 22.579-19.917 53.555-47.002 53.555-92.723 0-47.258-20.326-81.050-60.416-100.454zM742.4 460.8h-76.8v-76.8h-51.2v76.8h-76.8v51.2h76.8v76.8h51.2v-76.8h76.8v-51.2zM421.018 401.92c-2.662 0-5.325-0.102-8.038-0.307-22.733-1.69-43.725-10.189-58.88-24.013-15.053-13.619-22.733-30.822-21.658-48.179 2.304-36.403 41.37-57.702 88.832-54.323 46.694 3.379 77.824 30.31 75.571 66.714-2.15 34.202-31.898 60.109-75.827 60.109zM465.766 599.808c-12.39 43.52-32.358 56.422-63.386 56.422-3.328 0-6.707-0.512-9.933-1.382-13.466-3.84-24.166-15.053-30.106-31.744-6.093-16.896-6.451-34.509-1.229-54.579 9.472-35.891 34.97-61.901 60.672-61.901 3.379 0 6.758 0.41 9.933 1.382 28.109 7.885 45.722 50.79 34.048 91.802z" />
+<glyph unicode="&#xea6d;" glyph-name="google1" d="M101.837 686.643c0-76.493 25.549-131.686 75.878-164.096 41.267-26.624 89.088-30.618 113.971-30.618 6.042 0 10.906 0.307 14.285 0.512 0 0-7.885-51.405 30.208-102.195h-1.741c-65.997 0-281.242-13.773-281.242-190.822 0-180.019 197.683-189.184 237.363-189.184 3.123 0 4.966 0.102 4.966 0.102 0.41 0 3.226-0.102 8.090-0.102 25.446 0 91.238 3.174 152.32 32.922 79.258 38.4 119.45 105.421 119.45 198.912 0 90.317-61.235 144.077-105.933 183.398-27.29 24.013-50.893 44.698-50.893 64.819 0 20.48 17.254 35.891 39.014 55.398 35.277 31.488 68.557 76.39 68.557 161.28 0 74.598-9.677 124.723-69.325 156.518 6.195 3.174 28.211 5.478 39.066 7.014 32.307 4.403 79.565 9.421 79.565 35.789v5.069h-235.469c-2.355-0.102-238.131-8.806-238.131-224.717zM481.946 225.178c4.506-71.987-57.088-125.082-149.606-131.789-93.952-6.912-171.264 35.379-175.77 107.315-2.202 34.611 13.005 68.403 42.752 95.386 30.157 27.29 71.578 44.186 116.634 47.514 5.325 0.307 10.598 0.614 15.872 0.614 86.989-0.051 145.869-51.149 150.118-119.040zM420.454 735.949c23.091-81.306-11.776-166.195-67.379-181.914-6.4-1.792-12.954-2.662-19.661-2.662-50.893 0-101.325 51.507-120.064 122.522-10.445 39.731-9.574 74.65 2.406 108.134 11.725 33.024 32.922 55.194 59.546 62.72 6.4 1.792 13.005 2.714 19.712 2.714 61.44 0 100.966-25.498 125.44-111.514zM819.2 563.2v153.6h-102.4v-153.6h-153.6v-102.4h153.6v-153.6h102.4v153.6h153.6v102.4h-153.6z" />
+<glyph unicode="&#xea6e;" glyph-name="instagram-with-circle" d="M665.6 460.8c0-84.838-68.762-153.6-153.6-153.6s-153.6 68.762-153.6 153.6c0 8.755 0.922 17.306 2.509 25.6h-53.709v-204.646c0-14.234 11.52-25.754 25.754-25.754h358.144c14.182 0 25.702 11.52 25.702 25.754v204.646h-53.709c1.587-8.294 2.509-16.845 2.509-25.6zM512 358.4c56.525 0 102.4 45.875 102.4 102.4s-45.875 102.4-102.4 102.4-102.4-45.875-102.4-102.4 45.875-102.4 102.4-102.4zM634.88 568.32h61.389c8.499 0 15.411 6.912 15.411 15.36v61.389c0 8.499-6.912 15.411-15.411 15.411h-61.389c-8.499 0-15.411-6.912-15.411-15.411v-61.389c0.051-8.448 6.963-15.36 15.411-15.36zM512 952.32c-271.462 0-491.52-220.058-491.52-491.52s220.058-491.52 491.52-491.52c271.462 0 491.52 220.058 491.52 491.52s-220.058 491.52-491.52 491.52zM768 261.683c0-31.283-25.6-56.883-56.883-56.883h-398.234c-31.283 0-56.883 25.6-56.883 56.883v398.234c0 31.283 25.6 56.883 56.883 56.883h398.234c31.283 0 56.883-25.6 56.883-56.883v-398.234z" />
+<glyph unicode="&#xea6f;" glyph-name="instagram1" d="M870.4 921.6h-716.8c-56.32 0-102.4-46.080-102.4-102.4v-716.8c0-56.371 46.080-102.4 102.4-102.4h716.8c56.32 0 102.4 46.029 102.4 102.4v716.8c0 56.32-46.080 102.4-102.4 102.4zM511.181 178.022c156.621 0 283.546 127.027 283.546 283.597 0 17.306-2.202 33.997-5.274 50.381h80.947v-369.459c0-19.558-15.872-35.328-35.482-35.328h-645.837c-19.61 0-35.482 15.77-35.482 35.328v369.459h79.309c-3.123-16.384-5.325-33.075-5.325-50.381 0-156.621 127.027-283.597 283.597-283.597zM333.978 461.619c0 97.894 79.36 177.203 177.254 177.203 97.843 0 177.254-79.309 177.254-177.203s-79.411-177.254-177.254-177.254c-97.946 0-177.254 79.36-177.254 177.254zM834.918 665.6h-82.688c-19.558 0-35.43 15.974-35.43 35.43v82.79c0 19.558 15.872 35.379 35.379 35.379h82.688c19.661 0 35.533-15.821 35.533-35.379v-82.739c0-19.507-15.872-35.482-35.482-35.482z" />
+<glyph unicode="&#xea70;" glyph-name="lastfm-with-circle" d="M512 952.32c-271.462 0-491.52-220.058-491.52-491.52s220.058-491.52 491.52-491.52 491.52 220.058 491.52 491.52-220.058 491.52-491.52 491.52zM647.373 315.904c-102.502 0-138.086 46.592-156.979 104.602l-18.995 59.699c-14.182 43.571-25.651 75.11-77.773 75.11-36.147 0-83.251-23.706-83.251-97.178 0-57.293 39.424-93.184 80.282-93.184 34.662 0 55.501 19.507 66.355 29.286l18.125-51.814c-12.339-8.909-37.581-26.47-87.398-26.47-68.915 0-134.4 48.998-134.4 139.776 0 94.413 68.25 150.016 138.496 150.016 78.848 0 108.186-28.672 133.12-106.394l19.558-59.699c14.234-43.622 44.288-75.315 104.141-75.315 40.294 0 61.645 9.011 61.645 31.078 0 17.306-10.086 29.901-40.294 37.018l-40.294 9.626c-49.203 11.878-68.762 37.581-68.762 78.285 0 65.075 52.122 85.402 105.523 85.402 60.467 0 97.178-22.118 101.888-75.878l-59.238-7.117c-2.355 25.6-17.766 36.403-46.234 36.403-26.061 0-42.035-11.981-42.035-32.307 0-17.92 7.68-28.621 33.792-34.611l37.888-8.397c50.944-11.93 78.234-37.018 78.234-85.402-0.051-59.853-49.869-82.534-123.392-82.534z" />
+<glyph unicode="&#xea71;" glyph-name="lastfm1" d="M438.989 226.509c-24.422-17.818-74.496-52.429-173.107-52.429-136.243 0-265.882 96.922-265.882 276.736 0 186.778 135.014 296.704 274.125 296.704 156.006 0 214.17-56.73 263.373-210.381l38.707-118.221c28.211-86.426 87.706-148.992 206.131-148.992 79.77 0 121.958 17.715 121.958 61.389 0 34.304-19.917 59.187-79.718 73.421l-79.821 18.893c-97.28 23.603-135.987 74.496-135.987 154.88 0 128.819 103.219 169.011 208.742 169.011 119.654 0 192.358-43.725 201.728-150.118l-117.299-14.182c-4.71 50.79-35.226 72.090-91.494 72.090-51.61 0-83.302-23.603-83.302-63.795 0-35.482 15.309-56.781 66.918-68.608l75.059-16.589c100.864-23.603 154.88-73.318 154.88-169.114 0-118.221-98.509-163.123-244.019-163.123-202.906 0-273.306 92.211-310.784 206.899l-37.581 118.221c-28.109 86.374-50.688 148.582-153.907 148.582-71.578 0-164.813-46.899-164.813-192.307 0-113.51 77.978-184.525 158.925-184.525 68.608 0 109.875 38.605 131.277 57.907l35.891-102.349z" />
+<glyph unicode="&#xea72;" glyph-name="linkedin-with-circle" d="M512 952.32c-271.462 0-491.52-220.058-491.52-491.52s220.058-491.52 491.52-491.52 491.52 220.058 491.52 491.52-220.058 491.52-491.52 491.52zM391.68 257.075h-99.533v320.307h99.533v-320.307zM341.299 616.704c-31.437 0-51.763 22.272-51.763 49.818 0 28.109 20.941 49.715 53.043 49.715s51.763-21.606 52.378-49.715c0-27.546-20.275-49.818-53.658-49.818zM755.2 257.075h-99.533v177.51c0 41.318-14.438 69.376-50.432 69.376-27.494 0-43.827-18.995-51.046-37.274-2.662-6.502-3.328-15.718-3.328-24.883v-184.678h-99.584v218.112c0 39.987-1.28 73.421-2.611 102.195h86.477l4.557-44.493h1.997c13.107 20.89 45.21 51.712 98.918 51.712 65.485 0 114.586-43.878 114.586-138.189v-189.389z" />
+<glyph unicode="&#xea73;" glyph-name="linkedin1" d="M256 819.2c0-54.374-36.352-101.171-102.451-101.171-62.208 0-102.349 44.134-102.349 98.509 0 55.808 38.912 105.062 102.4 105.062s101.171-46.592 102.4-102.4zM51.2 0v665.6h204.8v-665.6h-204.8zM358.4 438.067c0 79.104-2.611 145.203-5.222 202.291h184.013l9.114-88.218h3.891c25.907 41.523 89.395 102.4 195.686 102.4 129.638 0 226.918-86.784 226.918-273.51v-381.030h-204.8v351.283c0 81.613-31.078 143.872-102.4 143.872-54.374 0-81.613-44.032-95.898-80.333-5.222-13.005-6.502-31.13-6.502-49.306v-365.517h-204.8v438.067z" />
+<glyph unicode="&#xea74;" glyph-name="pinterest-with-circle" d="M512 952.32c-271.462 0-491.52-220.058-491.52-491.52s220.058-491.52 491.52-491.52 491.52 220.058 491.52 491.52-220.058 491.52-491.52 491.52zM545.638 344.32c-31.539 2.406-44.749 18.022-69.427 32.973-13.568-71.219-30.157-139.52-79.309-175.206-15.206 107.725 22.221 188.518 39.629 274.381-29.645 49.92 3.533 150.323 66.099 125.645 76.954-30.515-66.662-185.6 29.747-205.005 100.659-20.173 141.773 174.694 79.36 237.978-90.214 91.494-262.502 2.099-241.306-128.87 5.12-32 38.246-41.728 13.21-85.914-57.702 12.8-74.957 58.317-72.704 118.989 3.533 99.328 89.242 168.909 175.155 178.483 108.698 12.083 210.688-39.885 224.819-142.182 15.821-115.405-49.101-240.282-165.274-231.27z" />
+<glyph unicode="&#xea75;" glyph-name="pinterest1" d="M441.19 295.578c-26.931-141.005-59.75-276.173-157.082-346.778-30.003 213.094 44.083 373.094 78.541 542.976-58.726 98.816 7.066 297.574 130.816 248.576 152.32-60.211-131.891-367.206 58.88-405.606 199.219-39.987 280.525 345.6 156.979 470.989-178.432 181.146-519.475 4.25-477.491-255.078 10.189-63.386 75.674-82.586 26.163-170.086-114.227 25.293-148.326 115.405-143.923 235.52 7.066 196.608 176.589 334.182 346.675 353.28 215.091 24.115 416.973-79.002 444.877-281.293 31.386-228.403-97.075-475.802-327.117-457.984-62.362 4.864-88.474 35.789-137.318 65.485z" />
+<glyph unicode="&#xea76;" glyph-name="rdio" d="M829.594 460.749c0-220.518-176.538-399.309-394.291-399.309s-394.342 178.79-394.342 399.309c0 220.621 176.538 399.411 394.291 399.411 31.283 0 61.645-3.891 90.829-10.906v-227.379c-46.182 16.896-102.912 14.387-156.314-11.418-96.512-46.592-145.459-151.398-109.312-233.984 36.096-82.688 143.718-112.026 240.179-65.382 66.509 32.102 125.082 109.414 125.082 206.285v293.069c8.294-4.608 16.384-9.626 24.32-14.797 74.957-47.104 186.266-110.182 316.314-116.787 50.688-2.509-19.917-130.099-140.186-165.683 2.253-17.101 3.43-34.611 3.43-52.429z" />
+<glyph unicode="&#xea77;" glyph-name="stumbleupon-with-circle" d="M512 952.32c-271.462 0-491.52-220.058-491.52-491.52s220.058-491.52 491.52-491.52 491.52 220.058 491.52 491.52-220.058 491.52-491.52 491.52zM512 574.208c-15.002 0-27.187-12.186-27.187-27.085v-162.202c0-63.693-51.968-115.507-115.763-115.507s-115.763 51.814-115.763 115.507v67.891h88.525v-67.891c0-15.002 12.186-27.085 27.187-27.085s27.187 12.083 27.187 27.085v162.202c0.102 63.693 51.968 115.456 115.814 115.456 63.795 0 115.763-51.814 115.763-115.507v-30.874l-53.248-17.101-35.328 17.101v30.925c0 14.899-12.134 27.085-27.187 27.085zM770.714 384.922c0-63.693-51.968-115.507-115.763-115.507-63.846 0-115.814 51.814-115.814 115.507v69.325l35.328-17.101 53.248 17.101v-69.325c0-15.002 12.186-27.085 27.187-27.085s27.136 12.083 27.136 27.085v67.891h88.627v-67.891z" />
+<glyph unicode="&#xea78;" glyph-name="stumbleupon1" d="M565.811 560.179l69.888-33.792 105.421 33.792v61.133c0 126.106-102.81 228.608-229.12 228.608s-229.12-102.502-229.12-228.608v-321.024c0-29.594-24.166-53.709-53.811-53.709-29.696 0-53.811 24.115-53.811 53.709v134.4h-175.258v-134.4c0-126.003 102.758-228.608 229.12-228.608 126.31 0 229.069 102.605 229.069 228.608v321.024c0 29.594 24.166 53.709 53.862 53.709 29.645 0 53.811-24.115 53.811-53.709v-61.133zM848.691 434.688v-134.4c0-29.594-24.115-53.709-53.811-53.709s-53.811 24.115-53.811 53.709v137.114l-105.421-33.69-69.888 33.69v-137.114c0-126.003 102.81-228.608 229.12-228.608s229.12 102.605 229.12 228.608v134.4h-175.309z" />
+<glyph unicode="&#xea79;" glyph-name="tumblr-with-circle" d="M512 952.32c-271.462 0-491.52-220.058-491.52-491.52s220.058-491.52 491.52-491.52 491.52 220.058 491.52 491.52-220.058 491.52-491.52 491.52zM643.942 248.781c-20.122-9.626-38.298-16.282-54.579-20.224-16.282-3.789-33.894-5.786-52.787-5.786-21.504 0-40.499 2.816-57.037 8.294s-30.618 13.312-42.291 23.501c-11.674 10.086-19.763 20.992-24.269 32.41-4.506 11.52-6.758 28.109-6.758 49.818v167.014h-52.019v67.277c18.381 6.093 34.304 14.797 47.462 26.214 13.158 11.315 23.757 24.883 31.693 40.806 7.987 15.872 13.466 36.198 16.486 60.672h66.918v-120.32h111.616v-74.65h-111.616v-122.112c0-27.597 1.434-45.312 4.352-53.094 2.867-7.885 8.243-14.080 16.128-18.79 10.445-6.298 22.374-9.472 35.686-9.472 23.859 0 47.514 7.885 71.066 23.603v-75.162z" />
+<glyph unicode="&#xea7a;" glyph-name="tumblr1" d="M798.72 41.165c-39.782-18.995-75.776-32.307-107.981-39.987-32.256-7.578-67.123-11.418-104.602-11.418-42.547 0-80.179 5.478-112.896 16.282-32.717 10.906-60.57 26.419-83.712 46.49-23.091 20.224-39.117 41.574-48.026 64.205-8.909 22.682-13.363 55.603-13.363 98.611v330.496h-102.861v133.325c36.557 11.981 67.891 29.184 93.952 51.712 26.112 22.426 47.002 49.408 62.822 80.896 15.77 31.386 26.573 71.475 32.563 120.064h132.352v-238.182h220.877v-147.814h-220.877v-241.613c0-54.579 2.867-89.702 8.602-105.216 5.683-15.514 16.333-27.904 31.846-37.12 20.634-12.493 44.186-18.79 70.707-18.79 47.104 0 94.003 15.514 140.595 46.49v-148.429z" />
+<glyph unicode="&#xea7b;" glyph-name="twitter-with-circle" d="M512 952.32c-271.462 0-491.52-220.058-491.52-491.52s220.058-491.52 491.52-491.52 491.52 220.058 491.52 491.52-220.058 491.52-491.52 491.52zM711.936 549.683c0.205-4.198 0.256-8.397 0.256-12.493 0-128-97.331-275.507-275.405-275.507-54.682 0-105.574 15.974-148.378 43.52 7.526-0.922 15.258-1.28 23.091-1.28 45.363 0 87.091 15.411 120.218 41.421-42.342 0.819-78.080 28.774-90.419 67.174 5.888-1.075 11.93-1.69 18.176-1.69 8.806 0 17.408 1.178 25.498 3.379-44.288 8.909-77.67 48.026-77.67 94.925v1.178c13.056-7.219 28.006-11.622 43.878-12.134-26.010 17.408-43.059 47.002-43.059 80.64 0 17.715 4.762 34.406 13.107 48.691 47.77-58.573 119.040-97.075 199.526-101.222-1.69 7.117-2.509 14.49-2.509 22.118 0 53.402 43.315 96.819 96.819 96.819 27.802 0 52.992-11.776 70.656-30.618 22.067 4.403 42.752 12.39 61.44 23.501-7.219-22.579-22.528-41.574-42.547-53.606 19.61 2.406 38.246 7.578 55.603 15.309-12.954-19.405-29.389-36.506-48.282-50.125z" />
+<glyph unicode="&#xea7c;" glyph-name="twitter1" d="M886.579 653.005c0.41-8.294 0.563-16.691 0.563-24.986 0-255.488-194.406-549.99-549.888-549.99-109.21 0-210.739 32-296.294 86.886 15.155-1.792 30.515-2.714 46.080-2.714 90.624 0 173.926 30.925 240.026 82.688-84.531 1.587-155.955 57.395-180.531 134.195 11.776-2.202 23.91-3.379 36.352-3.379 17.664 0 34.765 2.304 50.944 6.707-88.422 17.818-155.034 95.898-155.034 189.594 0 0.819 0 1.587 0 2.406 26.061-14.49 55.91-23.194 87.552-24.218-51.866 34.714-86.016 93.798-86.016 160.922 0 35.379 9.523 68.608 26.214 97.178 95.283-116.992 237.773-193.894 398.387-201.984-3.277 14.182-4.966 28.877-4.966 44.083 0 106.701 86.477 193.178 193.229 193.178 55.603 0 105.83-23.398 141.107-60.979 43.981 8.704 85.35 24.781 122.726 46.899-14.438-45.107-45.107-82.995-84.992-106.906 39.117 4.71 76.288 15.002 111.002 30.413-25.907-38.81-58.675-72.806-96.461-99.994z" />
+<glyph unicode="&#xea7d;" glyph-name="vimeo-with-circle" d="M512 952.32c-271.462 0-491.52-220.058-491.52-491.52s220.058-491.52 491.52-491.52 491.52 220.058 491.52 491.52-220.058 491.52-491.52 491.52zM737.331 555.52c-26.010-149.299-171.418-275.814-215.091-304.691-43.725-28.774-83.661 11.622-98.099 42.189-16.589 34.918-66.202 223.898-79.206 239.616-13.005 15.667-52.019-15.718-52.019-15.718l-18.893 25.293c0 0 79.206 96.41 139.469 108.39 63.898 12.8 63.795-99.891 79.155-162.509 14.899-60.57 24.883-95.181 37.837-95.181 13.005 0 37.837 33.69 64.973 85.504 27.238 51.814-1.126 97.587-54.323 65.024 21.248 130.048 222.208 161.382 196.198 12.083z" />
+<glyph unicode="&#xea7e;" glyph-name="vimeo1" d="M968.192 673.792c-51.507-295.578-339.2-545.792-425.728-602.982-86.528-57.088-165.53 22.886-194.15 83.507-32.819 68.966-131.021 443.187-156.774 474.163-25.754 31.027-102.912-30.976-102.912-30.976l-37.427 49.971c0 0 156.723 190.72 276.019 214.579 126.464 25.242 126.259-197.837 156.672-321.638 29.389-119.91 49.203-188.416 74.906-188.416s74.854 66.816 128.614 169.216c53.914 102.605-2.304 193.126-107.571 128.717 42.138 257.382 439.859 319.283 388.352 23.859z" />
+<glyph unicode="&#xea7f;" glyph-name="youtube-with-circle" d="M594.074 469.35l-114.995 53.658c-10.035 4.659-18.278-0.563-18.278-11.674v-101.069c0-11.11 8.243-16.333 18.278-11.674l114.944 53.658c10.086 4.71 10.086 12.39 0.051 17.101zM512 952.32c-271.462 0-491.52-220.058-491.52-491.52s220.058-491.52 491.52-491.52 491.52 220.058 491.52 491.52-220.058 491.52-491.52 491.52zM512 261.12c-251.597 0-256 22.682-256 199.68s4.403 199.68 256 199.68 256-22.682 256-199.68-4.403-199.68-256-199.68z" />
+<glyph unicode="&#xea80;" glyph-name="youtube1" d="M512 855.040c-503.194 0-512-44.749-512-394.24s8.806-394.24 512-394.24 512 44.749 512 394.24-8.806 394.24-512 394.24zM676.096 443.699l-229.888-107.315c-20.122-9.318-36.608 1.126-36.608 23.347v202.138c0 22.17 16.486 32.666 36.608 23.347l229.888-107.315c20.122-9.421 20.122-24.781 0-34.202z" />
+<glyph unicode="&#xea81;" glyph-name="home" d="M1024 369.556l-512 397.426-512-397.428v162.038l512 397.426 512-397.428zM896 384v-384h-256v256h-256v-256h-256v384l384 288z" />
+<glyph unicode="&#xea82;" glyph-name="home2" d="M512 928l-512-512 96-96 96 96v-416h256v192h128v-192h256v416l96-96 96 96-512 512zM512 512c-35.346 0-64 28.654-64 64s28.654 64 64 64c35.346 0 64-28.654 64-64s-28.654-64-64-64z" />
+<glyph unicode="&#xea83;" glyph-name="home3" d="M1024 352l-192 192v288h-128v-160l-192 192-512-512v-32h128v-320h320v192h128v-192h320v320h128z" />
+<glyph unicode="&#xea84;" glyph-name="office" d="M0-64h512v1024h-512v-1024zM320 832h128v-128h-128v128zM320 576h128v-128h-128v128zM320 320h128v-128h-128v128zM64 832h128v-128h-128v128zM64 576h128v-128h-128v128zM64 320h128v-128h-128v128zM576 640h448v-64h-448zM576-64h128v256h192v-256h128v576h-448z" />
+<glyph unicode="&#xea85;" glyph-name="newspaper" d="M896 704v128h-896v-704c0-35.346 28.654-64 64-64h864c53.022 0 96 42.978 96 96v544h-128zM832 128h-768v640h768v-640zM128 640h640v-64h-640zM512 512h256v-64h-256zM512 384h256v-64h-256zM512 256h192v-64h-192zM128 512h320v-320h-320z" />
+<glyph unicode="&#xea86;" glyph-name="pencil" d="M864 960c88.364 0 160-71.634 160-160 0-36.020-11.91-69.258-32-96l-64-64-224 224 64 64c26.742 20.090 59.978 32 96 32zM64 224l-64-288 288 64 592 592-224 224-592-592zM715.578 596.422l-448-448-55.156 55.156 448 448 55.156-55.156z" />
+<glyph unicode="&#xea87;" glyph-name="pencil2" d="M384 320l128 64 448 448-64 64-448-448-64-128zM289.3 92.902c-31.632 66.728-65.666 100.762-132.396 132.394l99.096 272.792 128 77.912 384 384h-192l-384-384-192-640 640 192 384 384v192l-384-384-77.912-128z" />
+<glyph unicode="&#xea88;" glyph-name="quill" d="M0-64c128 384 463 1024 1024 1024-263-211-384-704-576-704s-192 0-192 0l-192-320h-64z" />
+<glyph unicode="&#xea89;" glyph-name="pen" d="M1018.17 668.11l-286.058 286.058c-9.334 9.334-21.644 7.234-27.356-4.666l-38.354-79.904 267.198-267.198 79.904 38.354c11.9 5.712 14 18.022 4.666 27.356zM615.384 824.616l-263.384-21.95c-17.5-2.166-32.080-5.898-37.090-28.752-0.006-0.024-0.012-0.042-0.018-0.066-71.422-343.070-314.892-677.848-314.892-677.848l57.374-57.374 271.986 271.99c-5.996 12.53-9.36 26.564-9.36 41.384 0 53.020 42.98 96 96 96s96-42.98 96-96-42.98-96-96-96c-14.82 0-28.852 3.364-41.384 9.36l-271.988-271.986 57.372-57.374c0 0 334.778 243.47 677.848 314.892 0.024 0.006 0.042 0.012 0.066 0.018 22.854 5.010 26.586 19.59 28.752 37.090l21.95 263.384-273.232 273.232z" />
+<glyph unicode="&#xea8a;" glyph-name="blog" d="M384 960v-96c73.482 0 144.712-14.37 211.716-42.71 64.768-27.394 122.958-66.632 172.948-116.624s89.228-108.18 116.624-172.948c28.342-67.004 42.712-138.238 42.712-211.718h96c0 353.46-286.54 640-640 640zM384 768v-96c94.022 0 182.418-36.614 248.9-103.098 66.486-66.484 103.1-154.878 103.1-248.902h96c0 247.422-200.576 448-448 448zM480 576l-64-64-224-64-192-416 25.374-25.374 232.804 232.804c-1.412 5.286-2.178 10.84-2.178 16.57 0 35.346 28.654 64 64 64s64-28.654 64-64-28.654-64-64-64c-5.732 0-11.282 0.764-16.568 2.178l-232.804-232.804 25.372-25.374 416 192 64 224 64 64-160 160z" />
+<glyph unicode="&#xea8b;" glyph-name="eyedropper" d="M986.51 922.51c-49.988 49.986-131.032 49.986-181.020 0l-172.118-172.118-121.372 121.372-135.764-135.764 106.426-106.426-472.118-472.118c-8.048-8.048-11.468-18.958-10.3-29.456h-0.244v-160c0-17.674 14.328-32 32-32h160c0 0 2.664 0 4 0 9.212 0 18.426 3.516 25.456 10.544l472.118 472.118 106.426-106.426 135.764 135.764-121.372 121.372 172.118 172.118c49.986 49.988 49.986 131.032 0 181.020zM173.090 0h-109.090v109.090l469.574 469.572 109.088-109.088-469.572-469.574z" />
+<glyph unicode="&#xea8c;" glyph-name="droplet" d="M864.626 486.838c-65.754 183.44-205.11 348.15-352.626 473.162-147.516-125.012-286.87-289.722-352.626-473.162-40.664-113.436-44.682-236.562 12.584-345.4 65.846-125.14 198.632-205.438 340.042-205.438s274.196 80.298 340.040 205.44c57.27 108.838 53.25 231.962 12.586 345.398zM738.764 201.044c-43.802-83.252-132.812-137.044-226.764-137.044-55.12 0-108.524 18.536-152.112 50.652 13.242-1.724 26.632-2.652 40.112-2.652 117.426 0 228.668 67.214 283.402 171.242 44.878 85.292 40.978 173.848 23.882 244.338 14.558-28.15 26.906-56.198 36.848-83.932 22.606-63.062 40.024-156.34-5.368-242.604z" />
+<glyph unicode="&#xea8d;" glyph-name="paint-format" d="M1024 384v384h-192v64c0 35.2-28.8 64-64 64h-704c-35.2 0-64-28.8-64-64v-192c0-35.2 28.8-64 64-64h704c35.2 0 64 28.8 64 64v64h128v-256h-576v-128h-32c-17.674 0-32-14.326-32-32v-320c0-17.674 14.326-32 32-32h128c17.674 0 32 14.326 32 32v320c0 17.674-14.326 32-32 32h-32v64h576zM768 768h-704v64h704v-64z" />
+<glyph unicode="&#xea8e;" glyph-name="image" d="M959.884 832c0.040-0.034 0.082-0.076 0.116-0.116v-767.77c-0.034-0.040-0.076-0.082-0.116-0.116h-895.77c-0.040 0.034-0.082 0.076-0.114 0.116v767.772c0.034 0.040 0.076 0.082 0.114 0.114h895.77zM960 896h-896c-35.2 0-64-28.8-64-64v-768c0-35.2 28.8-64 64-64h896c35.2 0 64 28.8 64 64v768c0 35.2-28.8 64-64 64v0zM832 672c0-53.020-42.98-96-96-96s-96 42.98-96 96 42.98 96 96 96 96-42.98 96-96zM896 128h-768v128l224 384 256-320h64l224 192z" />
+<glyph unicode="&#xea8f;" glyph-name="images" horiz-adv-x="1152" d="M1088 832h-64v64c0 35.2-28.8 64-64 64h-896c-35.2 0-64-28.8-64-64v-768c0-35.2 28.8-64 64-64h64v-64c0-35.2 28.8-64 64-64h896c35.2 0 64 28.8 64 64v768c0 35.2-28.8 64-64 64zM128 768v-640h-63.886c-0.040 0.034-0.082 0.076-0.114 0.116v767.77c0.034 0.040 0.076 0.082 0.114 0.114h895.77c0.040-0.034 0.082-0.076 0.116-0.116v-63.884h-768c-35.2 0-64-28.8-64-64v0zM1088 0.116c-0.034-0.040-0.076-0.082-0.116-0.116h-895.77c-0.040 0.034-0.082 0.076-0.114 0.116v767.77c0.034 0.040 0.076 0.082 0.114 0.114h895.77c0.040-0.034 0.082-0.076 0.116-0.116v-767.768zM960 608c0-53.020-42.98-96-96-96s-96 42.98-96 96 42.98 96 96 96 96-42.98 96-96zM1024 64h-768v128l224 384 256-320h64l224 192z" />
+<glyph unicode="&#xea90;" glyph-name="camera" d="M304 352c0-114.876 93.124-208 208-208s208 93.124 208 208-93.124 208-208 208-208-93.124-208-208zM960 704h-224c-16 64-32 128-96 128h-256c-64 0-80-64-96-128h-224c-35.2 0-64-28.8-64-64v-576c0-35.2 28.8-64 64-64h896c35.2 0 64 28.8 64 64v576c0 35.2-28.8 64-64 64zM512 68c-156.85 0-284 127.148-284 284 0 156.85 127.15 284 284 284 156.852 0 284-127.15 284-284 0-156.852-127.146-284-284-284zM960 512h-128v64h128v-64z" />
+<glyph unicode="&#xea91;" glyph-name="headphones" d="M288 384h-64v-448h64c17.6 0 32 14.4 32 32v384c0 17.6-14.4 32-32 32zM736 384c-17.602 0-32-14.4-32-32v-384c0-17.6 14.398-32 32-32h64v448h-64zM1024 448c0 282.77-229.23 512-512 512s-512-229.23-512-512c0-61.412 10.83-120.29 30.656-174.848-19.478-33.206-30.656-71.87-30.656-113.152 0-112.846 83.448-206.188 192-221.716v443.418c-31.914-4.566-61.664-15.842-87.754-32.378-5.392 26.718-8.246 54.364-8.246 82.676 0 229.75 186.25 416 416 416s416-186.25 416-416c0-28.314-2.83-55.968-8.22-82.696-26.1 16.546-55.854 27.848-87.78 32.418v-443.44c108.548 15.532 192 108.874 192 221.714 0 41.274-11.178 79.934-30.648 113.138 19.828 54.566 30.648 113.452 30.648 174.866z" />
+<glyph unicode="&#xea92;" glyph-name="music" d="M960 960h64v-736c0-88.366-100.29-160-224-160s-224 71.634-224 160c0 88.368 100.29 160 224 160 62.684 0 119.342-18.4 160-48.040v368.040l-512-113.778v-494.222c0-88.366-100.288-160-224-160s-224 71.634-224 160c0 88.368 100.288 160 224 160 62.684 0 119.342-18.4 160-48.040v624.040l576 128z" />
+<glyph unicode="&#xea93;" glyph-name="play" d="M981.188 799.892c-143.632 20.65-302.332 32.108-469.186 32.108-166.86 0-325.556-11.458-469.194-32.108-27.53-107.726-42.808-226.75-42.808-351.892 0-125.14 15.278-244.166 42.808-351.89 143.638-20.652 302.336-32.11 469.194-32.11 166.854 0 325.552 11.458 469.186 32.11 27.532 107.724 42.812 226.75 42.812 351.89 0 125.142-15.28 244.166-42.812 351.892zM384.002 256v384l320-192-320-192z" />
+<glyph unicode="&#xea94;" glyph-name="film" d="M0 832v-768h1024v768h-1024zM192 128h-128v128h128v-128zM192 384h-128v128h128v-128zM192 640h-128v128h128v-128zM768 128h-512v640h512v-640zM960 128h-128v128h128v-128zM960 384h-128v128h128v-128zM960 640h-128v128h128v-128zM384 640v-384l256 192z" />
+<glyph unicode="&#xea95;" glyph-name="video-camera" d="M384 672c0 88.366 71.634 160 160 160s160-71.634 160-160c0-88.366-71.634-160-160-160s-160 71.634-160 160zM0 672c0 88.366 71.634 160 160 160s160-71.634 160-160c0-88.366-71.634-160-160-160s-160 71.634-160 160zM768 352v96c0 35.2-28.8 64-64 64h-640c-35.2 0-64-28.8-64-64v-320c0-35.2 28.8-64 64-64h640c35.2 0 64 28.8 64 64v96l256-160v448l-256-160zM640 192h-512v192h512v-192z" />
+<glyph unicode="&#xea96;" glyph-name="dice" d="M864 768h-512c-88 0-160-72-160-160v-512c0-88 72-160 160-160h512c88 0 160 72 160 160v512c0 88-72 160-160 160zM416 64c-53.020 0-96 42.98-96 96s42.98 96 96 96 96-42.98 96-96-42.98-96-96-96zM416 448c-53.020 0-96 42.98-96 96s42.98 96 96 96 96-42.98 96-96-42.98-96-96-96zM608 256c-53.020 0-96 42.98-96 96s42.98 96 96 96 96-42.98 96-96-42.98-96-96-96zM800 64c-53.020 0-96 42.98-96 96s42.98 96 96 96 96-42.98 96-96-42.98-96-96-96zM800 448c-53.020 0-96 42.98-96 96s42.98 96 96 96 96-42.98 96-96-42.98-96-96-96zM828.76 832c-14.93 72.804-79.71 128-156.76 128h-512c-88 0-160-72-160-160v-512c0-77.046 55.196-141.83 128-156.76v636.76c0 35.2 28.8 64 64 64h636.76z" />
+<glyph unicode="&#xea97;" glyph-name="pacman" d="M964.73 781.196c-93.902 109.45-233.21 178.804-388.73 178.804-282.77 0-512-229.23-512-512s229.23-512 512-512c155.52 0 294.828 69.356 388.728 178.804l-324.728 333.196 324.73 333.196zM704 839.398c39.432 0 71.398-31.964 71.398-71.398 0-39.432-31.966-71.398-71.398-71.398s-71.398 31.966-71.398 71.398c0 39.432 31.966 71.398 71.398 71.398z" />
+<glyph unicode="&#xea98;" glyph-name="spades" d="M817.57 611.85c-193.566 143.858-260.266 259.018-305.566 348.148v0c-0.004 0-0.004 0.002-0.004 0.002v-0.002c-45.296-89.13-112-204.292-305.566-348.148-330.036-245.286-19.376-587.668 253.758-399.224-17.796-116.93-78.53-202.172-140.208-238.882v-37.744h384.032v37.74c-61.682 36.708-122.41 121.954-140.212 238.884 273.136-188.446 583.8 153.94 253.766 399.226z" />
+<glyph unicode="&#xea99;" glyph-name="clubs" d="M786.832 567.228c-59.032 0-112.086-24.596-149.852-64.694-15.996-16.984-43.762-37.112-73.8-54.81 14.11 53.868 58.676 121.7 89.628 151.456 39.64 38.17 63.984 91.83 63.984 151.5 0.006 114.894-91.476 208.096-204.788 209.32-113.32-1.222-204.796-94.426-204.796-209.318 0-59.672 24.344-113.33 63.986-151.5 30.954-29.756 75.52-97.588 89.628-151.456-30.042 17.7-57.806 37.826-73.8 54.81-37.768 40.098-90.82 64.694-149.85 64.694-114.386 0-207.080-93.664-207.080-209.328 0-115.638 92.692-209.338 207.080-209.338 59.042 0 112.082 25.356 149.85 65.452 16.804 17.872 46.444 40.138 78.292 58.632-3.002-147.692-73.532-256.168-145.318-298.906v-37.742h384.014v37.74c-71.792 42.736-142.32 151.216-145.32 298.906 31.852-18.494 61.488-40.768 78.292-58.632 37.766-40.094 90.808-65.452 149.852-65.452 114.386 0 207.078 93.7 207.078 209.338-0.002 115.664-92.692 209.328-207.080 209.328z" />
+<glyph unicode="&#xea9a;" glyph-name="diamonds" d="M512 960l-320-512 320-512 320 512z" />
+<glyph unicode="&#xea9b;" glyph-name="bullhorn" d="M1024 530.744c0 200.926-58.792 363.938-131.482 365.226 0.292 0.006 0.578 0.030 0.872 0.030h-82.942c0 0-194.8-146.336-475.23-203.754-8.56-45.292-14.030-99.274-14.030-161.502s5.466-116.208 14.030-161.5c280.428-57.418 475.23-203.756 475.23-203.756h82.942c-0.292 0-0.578 0.024-0.872 0.032 72.696 1.288 131.482 164.298 131.482 365.224zM864.824 220.748c-9.382 0-19.532 9.742-24.746 15.548-12.63 14.064-24.792 35.96-35.188 63.328-23.256 61.232-36.066 143.31-36.066 231.124 0 87.81 12.81 169.89 36.066 231.122 10.394 27.368 22.562 49.266 35.188 63.328 5.214 5.812 15.364 15.552 24.746 15.552 9.38 0 19.536-9.744 24.744-15.552 12.634-14.064 24.796-35.958 35.188-63.328 23.258-61.23 36.068-143.312 36.068-231.122 0-87.804-12.81-169.888-36.068-231.124-10.39-27.368-22.562-49.264-35.188-63.328-5.208-5.806-15.36-15.548-24.744-15.548zM251.812 530.744c0 51.95 3.81 102.43 11.052 149.094-47.372-6.554-88.942-10.324-140.34-10.324-67.058 0-67.058 0-67.058 0l-55.466-94.686v-88.17l55.46-94.686c0 0 0 0 67.060 0 51.398 0 92.968-3.774 140.34-10.324-7.236 46.664-11.048 97.146-11.048 149.096zM368.15 317.828l-127.998 24.51 81.842-321.544c4.236-16.634 20.744-25.038 36.686-18.654l118.556 47.452c15.944 6.376 22.328 23.964 14.196 39.084l-123.282 229.152zM864.824 411.27c-3.618 0-7.528 3.754-9.538 5.992-4.87 5.42-9.556 13.86-13.562 24.408-8.962 23.6-13.9 55.234-13.9 89.078s4.938 65.478 13.9 89.078c4.006 10.548 8.696 18.988 13.562 24.408 2.010 2.24 5.92 5.994 9.538 5.994 3.616 0 7.53-3.756 9.538-5.994 4.87-5.42 9.556-13.858 13.56-24.408 8.964-23.598 13.902-55.234 13.902-89.078 0-33.842-4.938-65.478-13.902-89.078-4.004-10.548-8.696-18.988-13.56-24.408-2.008-2.238-5.92-5.992-9.538-5.992z" />
+<glyph unicode="&#xea9c;" glyph-name="connection" horiz-adv-x="1280" d="M640 384c105.87 0 201.87-43.066 271.402-112.598l-90.468-90.468c-46.354 46.356-110.356 75.066-180.934 75.066s-134.578-28.71-180.934-75.066l-90.468 90.468c69.532 69.532 165.532 112.598 271.402 112.598zM187.452 452.548c120.88 120.88 281.598 187.452 452.548 187.452s331.668-66.572 452.55-187.452l-90.51-90.508c-96.706 96.704-225.28 149.96-362.040 149.96-136.762 0-265.334-53.256-362.038-149.962l-90.51 90.51zM988.784 825.562c106.702-45.132 202.516-109.728 284.782-191.996v0l-90.508-90.508c-145.056 145.056-337.92 224.942-543.058 224.942-205.14 0-398-79.886-543.058-224.942l-90.51 90.51c82.268 82.266 178.082 146.862 284.784 191.994 110.504 46.738 227.852 70.438 348.784 70.438s238.278-23.7 348.784-70.438zM576 64c0 35.346 28.654 64 64 64s64-28.654 64-64c0-35.346-28.654-64-64-64s-64 28.654-64 64z" />
+<glyph unicode="&#xea9d;" glyph-name="podcast" d="M1024 448c0 282.77-229.23 512-512 512s-512-229.23-512-512c0-220.054 138.836-407.664 333.686-480.068l-13.686-31.932h384l-13.686 31.932c194.85 72.404 333.686 260.014 333.686 480.068zM486.79 325.174c-22.808 9.788-38.79 32.436-38.79 58.826 0 35.346 28.654 64 64 64s64-28.654 64-64c0-26.39-15.978-49.044-38.786-58.834l-25.214 58.834-25.21-58.826zM538.268 322.708c58.092 12.118 101.732 63.602 101.732 125.292 0 70.694-57.306 128-128 128-70.692 0-128-57.306-128-128 0-61.692 43.662-113.122 101.76-125.228l-74.624-174.122c-91.23 39.15-155.136 129.784-155.136 235.35 0 141.384 114.616 268 256 268s256-126.616 256-268c0-105.566-63.906-196.2-155.136-235.35l-74.596 174.058zM688.448-27.708l-73.924 172.486c126.446 42.738 217.476 162.346 217.476 303.222 0 176.73-143.268 320-320 320-176.73 0-320-143.27-320-320 0-140.876 91.030-260.484 217.476-303.222l-73.924-172.486c-159.594 68.488-271.386 227.034-271.386 411.708 0 247.332 200.502 459.834 447.834 459.834s447.834-212.502 447.834-459.834c0-184.674-111.792-343.22-271.386-411.708z" />
+<glyph unicode="&#xea9e;" glyph-name="feed" d="M384 448c0 70.692 57.308 128 128 128s128-57.308 128-128c0-70.692-57.308-128-128-128s-128 57.308-128 128zM664.348 729.474c99.852-54.158 167.652-159.898 167.652-281.474s-67.8-227.316-167.652-281.474c44.066 70.126 71.652 170.27 71.652 281.474s-27.586 211.348-71.652 281.474zM288 448c0-111.204 27.584-211.348 71.652-281.474-99.852 54.16-167.652 159.898-167.652 281.474s67.8 227.314 167.652 281.474c-44.068-70.126-71.652-170.27-71.652-281.474zM96 448c0-171.9 54.404-326.184 140.652-431.722-142.302 90.948-236.652 250.314-236.652 431.722s94.35 340.774 236.652 431.722c-86.248-105.538-140.652-259.822-140.652-431.722zM787.352 879.72c142.298-90.946 236.648-250.312 236.648-431.72s-94.35-340.774-236.648-431.72c86.244 105.536 140.648 259.82 140.648 431.72s-54.404 326.184-140.648 431.72z" />
+<glyph unicode="&#xea9f;" glyph-name="mic" d="M480 256c88.366 0 160 71.634 160 160v384c0 88.366-71.634 160-160 160s-160-71.634-160-160v-384c0-88.366 71.636-160 160-160zM704 512v-96c0-123.71-100.29-224-224-224-123.712 0-224 100.29-224 224v96h-64v-96c0-148.238 112.004-270.3 256-286.22v-129.78h-128v-64h320v64h-128v129.78c143.994 15.92 256 137.982 256 286.22v96h-64z" />
+<glyph unicode="&#xeaa0;" glyph-name="book" d="M896 832v-832h-672c-53.026 0-96 42.98-96 96s42.974 96 96 96h608v768h-640c-70.398 0-128-57.6-128-128v-768c0-70.4 57.602-128 128-128h768v896h-64zM224.056 128v0c-0.018-0.002-0.038 0-0.056 0-17.672 0-32-14.326-32-32s14.328-32 32-32c0.018 0 0.038 0.002 0.056 0.002v-0.002h607.89v64h-607.89z" />
+<glyph unicode="&#xeaa1;" glyph-name="books" horiz-adv-x="1152" d="M224 832h-192c-17.6 0-32-14.4-32-32v-704c0-17.6 14.4-32 32-32h192c17.6 0 32 14.4 32 32v704c0 17.6-14.4 32-32 32zM192 640h-128v64h128v-64zM544 832h-192c-17.6 0-32-14.4-32-32v-704c0-17.6 14.4-32 32-32h192c17.6 0 32 14.4 32 32v704c0 17.6-14.4 32-32 32zM512 640h-128v64h128v-64zM765.088 782.52l-171.464-86.394c-15.716-7.918-22.096-27.258-14.178-42.976l287.978-571.548c7.918-15.718 27.258-22.098 42.976-14.178l171.464 86.392c15.716 7.92 22.096 27.26 14.178 42.974l-287.978 571.55c-7.92 15.718-27.26 22.1-42.976 14.18z" />
+<glyph unicode="&#xeaa2;" glyph-name="library" horiz-adv-x="1088" d="M1024 0v64h-64v384h64v64h-192v-64h64v-384h-192v384h64v64h-192v-64h64v-384h-192v384h64v64h-192v-64h64v-384h-192v384h64v64h-192v-64h64v-384h-64v-64h-64v-64h1088v64h-64zM512 960h64l512-320v-64h-1088v64l512 320z" />
+<glyph unicode="&#xeaa3;" glyph-name="file-text" d="M864 960h-768c-52.8 0-96-43.2-96-96v-832c0-52.8 43.2-96 96-96h768c52.8 0 96 43.2 96 96v832c0 52.8-43.2 96-96 96zM832 64h-704v768h704v-768zM256 512h448v-64h-448zM256 384h448v-64h-448zM256 256h448v-64h-448zM256 640h448v-64h-448z" />
+<glyph unicode="&#xeaa4;" glyph-name="profile" d="M864 960h-768c-52.8 0-96-43.2-96-96v-832c0-52.8 43.2-96 96-96h768c52.8 0 96 43.2 96 96v832c0 52.8-43.2 96-96 96zM832 64h-704v768h704v-768zM256 384h448v-64h-448zM256 256h448v-64h-448zM320 672c0 53.019 42.981 96 96 96s96-42.981 96-96c0-53.019-42.981-96-96-96s-96 42.981-96 96zM480 576h-128c-52.8 0-96-28.8-96-64v-64h320v64c0 35.2-43.2 64-96 64z" />
+<glyph unicode="&#xeaa5;" glyph-name="file-empty" d="M917.806 730.924c-22.212 30.292-53.174 65.7-87.178 99.704s-69.412 64.964-99.704 87.178c-51.574 37.82-76.592 42.194-90.924 42.194h-496c-44.112 0-80-35.888-80-80v-864c0-44.112 35.888-80 80-80h736c44.112 0 80 35.888 80 80v624c0 14.332-4.372 39.35-42.194 90.924zM785.374 785.374c30.7-30.7 54.8-58.398 72.58-81.374h-153.954v153.946c22.984-17.78 50.678-41.878 81.374-72.572zM896 16c0-8.672-7.328-16-16-16h-736c-8.672 0-16 7.328-16 16v864c0 8.672 7.328 16 16 16 0 0 495.956 0.002 496 0v-224c0-17.672 14.326-32 32-32h224v-624z" />
+<glyph unicode="&#xeaa6;" glyph-name="files-empty" d="M917.806 602.924c-22.21 30.292-53.174 65.7-87.178 99.704s-69.412 64.964-99.704 87.178c-51.574 37.82-76.592 42.194-90.924 42.194h-368c-44.114 0-80-35.888-80-80v-736c0-44.112 35.886-80 80-80h608c44.112 0 80 35.888 80 80v496c0 14.332-4.372 39.35-42.194 90.924zM785.374 657.374c30.7-30.7 54.8-58.398 72.58-81.374h-153.954v153.946c22.982-17.78 50.678-41.878 81.374-72.572v0zM896 16c0-8.672-7.328-16-16-16h-608c-8.672 0-16 7.328-16 16v736c0 8.672 7.328 16 16 16 0 0 367.956 0.002 368 0v-224c0-17.672 14.324-32 32-32h224v-496zM602.924 917.804c-51.574 37.822-76.592 42.196-90.924 42.196h-368c-44.112 0-80-35.888-80-80v-736c0-38.632 27.528-70.958 64-78.39v814.39c0 8.672 7.328 16 16 16h486.876c-9.646 7.92-19.028 15.26-27.952 21.804z" />
+<glyph unicode="&#xeaa7;" glyph-name="file-text2" d="M917.806 730.924c-22.212 30.292-53.174 65.7-87.178 99.704s-69.412 64.964-99.704 87.178c-51.574 37.82-76.592 42.194-90.924 42.194h-496c-44.112 0-80-35.888-80-80v-864c0-44.112 35.888-80 80-80h736c44.112 0 80 35.888 80 80v624c0 14.332-4.372 39.35-42.194 90.924zM785.374 785.374c30.7-30.7 54.8-58.398 72.58-81.374h-153.954v153.946c22.984-17.78 50.678-41.878 81.374-72.572zM896 16c0-8.672-7.328-16-16-16h-736c-8.672 0-16 7.328-16 16v864c0 8.672 7.328 16 16 16 0 0 495.956 0.002 496 0v-224c0-17.672 14.326-32 32-32h224v-624zM736 128h-448c-17.672 0-32 14.326-32 32s14.328 32 32 32h448c17.674 0 32-14.326 32-32s-14.326-32-32-32zM736 256h-448c-17.672 0-32 14.326-32 32s14.328 32 32 32h448c17.674 0 32-14.326 32-32s-14.326-32-32-32zM736 384h-448c-17.672 0-32 14.326-32 32s14.328 32 32 32h448c17.674 0 32-14.326 32-32s-14.326-32-32-32z" />
+<glyph unicode="&#xeaa8;" glyph-name="file-picture" d="M832 64h-640v128l192 320 263-320 185 128v-256zM832 480c0-53.020-42.98-96-96-96-53.022 0-96 42.98-96 96s42.978 96 96 96c53.020 0 96-42.98 96-96zM917.806 730.924c-22.212 30.292-53.174 65.7-87.178 99.704s-69.412 64.964-99.704 87.178c-51.574 37.82-76.592 42.194-90.924 42.194h-496c-44.112 0-80-35.888-80-80v-864c0-44.112 35.888-80 80-80h736c44.112 0 80 35.888 80 80v624c0 14.332-4.372 39.35-42.194 90.924zM785.374 785.374c30.7-30.7 54.8-58.398 72.58-81.374h-153.954v153.946c22.984-17.78 50.678-41.878 81.374-72.572zM896 16c0-8.672-7.328-16-16-16h-736c-8.672 0-16 7.328-16 16v864c0 8.672 7.328 16 16 16 0 0 495.956 0.002 496 0v-224c0-17.672 14.326-32 32-32h224v-624z" />
+<glyph unicode="&#xeaa9;" glyph-name="file-music" d="M917.806 730.924c-22.21 30.292-53.174 65.7-87.178 99.704s-69.412 64.964-99.704 87.178c-51.574 37.82-76.592 42.194-90.924 42.194h-496c-44.112 0-80-35.888-80-80v-864c0-44.112 35.886-80 80-80h736c44.112 0 80 35.888 80 80v624c0 14.332-4.372 39.35-42.194 90.924v0zM785.374 785.374c30.7-30.7 54.8-58.398 72.58-81.374h-153.954v153.946c22.982-17.78 50.678-41.878 81.374-72.572v0zM896 16c0-8.672-7.328-16-16-16h-736c-8.672 0-16 7.328-16 16v864c0 8.672 7.328 16 16 16 0 0 495.956 0.002 496 0v-224c0-17.672 14.324-32 32-32h224v-624zM756.288 568.748c-7.414 6.080-17.164 8.514-26.562 6.632l-320-64c-14.958-2.994-25.726-16.126-25.726-31.38v-236.876c-18.832 8.174-40.678 12.876-64 12.876-70.692 0-128-42.98-128-96s57.308-96 128-96 128 42.98 128 96v229.766l256 51.202v-133.842c-18.832 8.174-40.678 12.876-64 12.876-70.692 0-128-42.98-128-96s57.308-96 128-96 128 42.98 128 96v319.998c0 9.586-4.298 18.668-11.712 24.748z" />
+<glyph unicode="&#xeaaa;" glyph-name="file-play" d="M384 576l320-224-320-224v448zM917.806 730.924c-22.212 30.292-53.174 65.7-87.178 99.704s-69.412 64.964-99.704 87.178c-51.574 37.82-76.592 42.194-90.924 42.194h-496c-44.112 0-80-35.888-80-80v-864c0-44.112 35.888-80 80-80h736c44.112 0 80 35.888 80 80v624c0 14.332-4.372 39.35-42.194 90.924zM785.374 785.374c30.7-30.7 54.8-58.398 72.58-81.374h-153.954v153.946c22.984-17.78 50.678-41.878 81.374-72.572zM896 16c0-8.672-7.328-16-16-16h-736c-8.672 0-16 7.328-16 16v864c0 8.672 7.328 16 16 16 0 0 495.956 0.002 496 0v-224c0-17.672 14.326-32 32-32h224v-624z" />
+<glyph unicode="&#xeaab;" glyph-name="file-video" d="M917.806 730.924c-22.208 30.292-53.174 65.7-87.178 99.704s-69.412 64.964-99.704 87.178c-51.574 37.82-76.594 42.194-90.924 42.194h-496c-44.112 0-80-35.888-80-80v-864c0-44.112 35.882-80 80-80h736c44.112 0 80 35.888 80 80v624c0 14.332-4.372 39.35-42.194 90.924v0 0zM785.374 785.374c30.7-30.7 54.8-58.398 72.58-81.374h-153.954v153.946c22.98-17.78 50.678-41.878 81.374-72.572v0 0zM896 16c0-8.672-7.328-16-16-16h-736c-8.672 0-16 7.328-16 16v864c0 8.672 7.328 16 16 16 0 0 495.956 0.002 496 0v-224c0-17.672 14.32-32 32-32h224v-624zM256 448h320v-320h-320v320zM576 320l192 128v-320l-192 128z" />
+<glyph unicode="&#xeaac;" glyph-name="file-zip" d="M917.806 730.924c-22.208 30.292-53.174 65.7-87.178 99.704s-69.412 64.964-99.704 87.178c-51.574 37.82-76.592 42.194-90.924 42.194h-496c-44.112 0-80-35.888-80-80v-864c0-44.112 35.884-80 80-80h736c44.112 0 80 35.888 80 80v624c0 14.332-4.372 39.35-42.194 90.924v0 0zM785.374 785.374c30.7-30.7 54.8-58.398 72.58-81.374h-153.954v153.946c22.98-17.78 50.678-41.878 81.374-72.572v0 0zM896 16c0-8.672-7.328-16-16-16h-736c-8.672 0-16 7.328-16 16v864c0 8.672 7.328 16 16 16 0 0 495.956 0.002 496 0v-224c0-17.672 14.322-32 32-32h224v-624zM256 896h128v-64h-128v64zM384 832h128v-64h-128v64zM256 768h128v-64h-128v64zM384 704h128v-64h-128v64zM256 640h128v-64h-128v64zM384 576h128v-64h-128v64zM256 512h128v-64h-128v64zM384 448h128v-64h-128v64zM256 112c0-26.4 21.6-48 48-48h160c26.4 0 48 21.6 48 48v160c0 26.4-21.6 48-48 48h-80v64h-128v-272zM448 192v-64h-128v64h128z" />
+<glyph unicode="&#xeaad;" glyph-name="copy" d="M640 704v256h-448l-192-192v-576h384v-256h640v768h-384zM192 869.49v-101.49h-101.49l101.49 101.49zM64 256v448h192v192h320v-192l-192-192v-256h-320zM576 613.49v-101.49h-101.49l101.49 101.49zM960 0h-512v448h192v192h320v-640z" />
+<glyph unicode="&#xeaae;" glyph-name="paste" d="M704 832h-128v64c0 35.2-28.8 64-64 64h-128c-35.204 0-64-28.8-64-64v-64h-128v-128h512v128zM512 832h-128v63.886c0.034 0.038 0.072 0.078 0.114 0.114h127.768c0.042-0.036 0.082-0.076 0.118-0.114v-63.886zM832 640v160c0 17.6-14.4 32-32 32h-64v-64h32v-128h-192l-192-192v-256h-256v576h32v64h-64c-17.602 0-32-14.4-32-32v-640c0-17.6 14.398-32 32-32h288v-192h640v704h-192zM576 549.49v-101.49h-101.49l101.49 101.49zM960 0h-512v384h192v192h320v-576z" />
+<glyph unicode="&#xeaaf;" glyph-name="stack" d="M1024 640l-512 256-512-256 512-256 512 256zM512 811.030l342.058-171.030-342.058-171.030-342.058 171.030 342.058 171.030zM921.444 499.278l102.556-51.278-512-256-512 256 102.556 51.278 409.444-204.722zM921.444 307.278l102.556-51.278-512-256-512 256 102.556 51.278 409.444-204.722z" />
+<glyph unicode="&#xeab0;" glyph-name="folder" d="M448 832l128-128h448v-704h-1024v832z" />
+<glyph unicode="&#xeab1;" glyph-name="folder-open" d="M832 0l192 512h-832l-192-512zM128 576l-128-576v832h288l128-128h416v-128z" />
+<glyph unicode="&#xeab2;" glyph-name="folder-plus" d="M576 704l-128 128h-448v-832h1024v704h-448zM704 256h-128v-128h-128v128h-128v128h128v128h128v-128h128v-128z" />
+<glyph unicode="&#xeab3;" glyph-name="folder-minus" d="M576 704l-128 128h-448v-832h1024v704h-448zM704 256h-384v128h384v-128z" />
+<glyph unicode="&#xeab4;" glyph-name="folder-download" d="M576 704l-128 128h-448v-832h1024v704h-448zM512 96l-224 224h160v256h128v-256h160l-224-224z" />
+<glyph unicode="&#xeab5;" glyph-name="folder-upload" d="M576 704l-128 128h-448v-832h1024v704h-448zM512 480l224-224h-160v-256h-128v256h-160l224 224z" />
+<glyph unicode="&#xeab6;" glyph-name="price-tag" d="M976 960h-384c-26.4 0-63.274-15.274-81.942-33.942l-476.116-476.116c-18.668-18.668-18.668-49.214 0-67.882l412.118-412.118c18.668-18.668 49.214-18.668 67.882 0l476.118 476.118c18.666 18.666 33.94 55.54 33.94 81.94v384c0 26.4-21.6 48-48 48zM736 576c-53.020 0-96 42.98-96 96s42.98 96 96 96 96-42.98 96-96-42.98-96-96-96z" />
+<glyph unicode="&#xeab7;" glyph-name="price-tags" horiz-adv-x="1280" d="M1232 960h-384c-26.4 0-63.274-15.274-81.942-33.942l-476.116-476.116c-18.668-18.668-18.668-49.214 0-67.882l412.118-412.118c18.668-18.668 49.214-18.668 67.882 0l476.118 476.118c18.666 18.666 33.94 55.54 33.94 81.94v384c0 26.4-21.6 48-48 48zM992 576c-53.020 0-96 42.98-96 96s42.98 96 96 96 96-42.98 96-96-42.98-96-96-96zM128 416l544 544h-80c-26.4 0-63.274-15.274-81.942-33.942l-476.116-476.116c-18.668-18.668-18.668-49.214 0-67.882l412.118-412.118c18.668-18.668 49.214-18.668 67.882 0l30.058 30.058-416 416z" />
+<glyph unicode="&#xeab8;" glyph-name="barcode" d="M0 832h128v-640h-128zM192 832h64v-640h-64zM320 832h64v-640h-64zM512 832h64v-640h-64zM768 832h64v-640h-64zM960 832h64v-640h-64zM640 832h32v-640h-32zM448 832h32v-640h-32zM864 832h32v-640h-32zM0 128h64v-64h-64zM192 128h64v-64h-64zM320 128h64v-64h-64zM640 128h64v-64h-64zM960 128h64v-64h-64zM768 128h128v-64h-128zM448 128h128v-64h-128z" />
+<glyph unicode="&#xeab9;" glyph-name="qrcode" d="M320 896h-256v-256h256v256zM384 960v0-384h-384v384h384zM128 832h128v-128h-128zM960 896h-256v-256h256v256zM1024 960v0-384h-384v384h384zM768 832h128v-128h-128zM320 256h-256v-256h256v256zM384 320v0-384h-384v384h384zM128 192h128v-128h-128zM448 960h64v-64h-64zM512 896h64v-64h-64zM448 832h64v-64h-64zM512 768h64v-64h-64zM448 704h64v-64h-64zM512 640h64v-64h-64zM448 576h64v-64h-64zM448 448h64v-64h-64zM512 384h64v-64h-64zM448 320h64v-64h-64zM512 256h64v-64h-64zM448 192h64v-64h-64zM512 128h64v-64h-64zM448 64h64v-64h-64zM512 0h64v-64h-64zM960 448h64v-64h-64zM64 448h64v-64h-64zM128 512h64v-64h-64zM0 512h64v-64h-64zM256 512h64v-64h-64zM320 448h64v-64h-64zM384 512h64v-64h-64zM576 448h64v-64h-64zM640 512h64v-64h-64zM704 448h64v-64h-64zM768 512h64v-64h-64zM832 448h64v-64h-64zM896 512h64v-64h-64zM960 320h64v-64h-64zM576 320h64v-64h-64zM640 384h64v-64h-64zM704 320h64v-64h-64zM832 320h64v-64h-64zM896 384h64v-64h-64zM960 192h64v-64h-64zM576 192h64v-64h-64zM640 256h64v-64h-64zM768 256h64v-64h-64zM832 192h64v-64h-64zM896 256h64v-64h-64zM960 64h64v-64h-64zM640 128h64v-64h-64zM704 64h64v-64h-64zM768 128h64v-64h-64zM832 64h64v-64h-64zM640 0h64v-64h-64zM768 0h64v-64h-64zM896 0h64v-64h-64z" />
+<glyph unicode="&#xeaba;" glyph-name="ticket" d="M575.996 640l127.998-127.998-255.994-255.994-127.998 127.998zM1001.526 662.496l-73.516 73.516-32.008-32.008c-16.378-16.38-39.010-26.51-64-26.51-49.988 0-90.514 40.522-90.514 90.51 0 25.002 10.14 47.638 26.534 64.018l31.988 31.986-73.518 73.516c-29.968 29.968-79.008 29.968-108.976 0l-595.040-595.038c-29.966-29.968-29.966-79.010 0-108.976l73.52-73.518 31.962 31.964c16.382 16.406 39.030 26.552 64.044 26.552 49.988 0 90.51-40.524 90.51-90.51 0-25.006-10.14-47.64-26.534-64.022l-31.984-31.986 73.516-73.518c29.966-29.966 79.008-29.966 108.976 0l595.040 595.040c29.964 29.976 29.964 79.016 0 108.984zM448.002 128.004l-256 256 384 384 256-256-384-384z" />
+<glyph unicode="&#xeabb;" glyph-name="cart" d="M384 32c0-53.019-42.981-96-96-96s-96 42.981-96 96c0 53.019 42.981 96 96 96s96-42.981 96-96zM1024 32c0-53.019-42.981-96-96-96s-96 42.981-96 96c0 53.019 42.981 96 96 96s96-42.981 96-96zM1024 448v384h-768c0 35.346-28.654 64-64 64h-192v-64h128l48.074-412.054c-29.294-23.458-48.074-59.5-48.074-99.946 0-70.696 57.308-128 128-128h768v64h-768c-35.346 0-64 28.654-64 64 0 0.218 0.014 0.436 0.016 0.656l831.984 127.344z" />
+<glyph unicode="&#xeabc;" glyph-name="coin-dollar" d="M480 896c-265.096 0-480-214.904-480-480 0-265.098 214.904-480 480-480 265.098 0 480 214.902 480 480 0 265.096-214.902 480-480 480zM480 32c-212.078 0-384 171.922-384 384s171.922 384 384 384c212.078 0 384-171.922 384-384s-171.922-384-384-384zM512 448v128h128v64h-128v64h-64v-64h-128v-256h128v-128h-128v-64h128v-64h64v64h128.002l-0.002 256h-128zM448 448h-64v128h64v-128zM576.002 256h-64.002v128h64.002v-128z" />
+<glyph unicode="&#xeabd;" glyph-name="coin-euro" d="M480 896c-265.096 0-480-214.904-480-480s214.904-480 480-480c265.098 0 480 214.902 480 480s-214.902 480-480 480zM480 32c-212.078 0-384 171.922-384 384s171.922 384 384 384c212.076 0 384-171.922 384-384s-171.924-384-384-384zM670.824 315.66c-15.27 8.884-34.862 3.708-43.75-11.57-17.256-29.662-49.088-48.090-83.074-48.090h-128c-41.716 0-77.286 26.754-90.496 64h154.496c17.672 0 32 14.326 32 32s-14.328 32-32 32h-160v64h160c17.672 0 32 14.328 32 32s-14.328 32-32 32h-154.496c13.21 37.246 48.78 64 90.496 64h128c33.986 0 65.818-18.426 83.074-48.090 8.888-15.276 28.478-20.456 43.752-11.568 15.276 8.888 20.456 28.476 11.568 43.752-28.672 49.288-81.702 79.906-138.394 79.906h-128c-77.268 0-141.914-55.056-156.78-128h-35.22c-17.672 0-32-14.328-32-32s14.328-32 32-32h32v-64h-32c-17.672 0-32-14.326-32-32s14.328-32 32-32h35.22c14.866-72.944 79.512-128 156.78-128h128c56.692 0 109.72 30.62 138.394 79.91 8.888 15.276 3.708 34.864-11.57 43.75z" />
+<glyph unicode="&#xeabe;" glyph-name="coin-pound" d="M480 896c-265.096 0-480-214.904-480-480s214.904-480 480-480c265.098 0 480 214.902 480 480s-214.902 480-480 480zM480 32c-212.078 0-384 171.922-384 384s171.922 384 384 384c212.074 0 384-171.922 384-384s-171.926-384-384-384zM608 256h-224v128h96c17.672 0 32 14.326 32 32s-14.328 32-32 32h-96v32c0 52.934 43.066 96 96 96 34.17 0 66.042-18.404 83.18-48.030 8.85-15.298 28.426-20.526 43.722-11.676 15.296 8.848 20.526 28.424 11.676 43.722-28.538 49.336-81.638 79.984-138.578 79.984-88.224 0-160-71.776-160-160v-32h-32c-17.672 0-32-14.326-32-32s14.328-32 32-32h32v-192h288c17.674 0 32 14.326 32 32s-14.326 32-32 32z" />
+<glyph unicode="&#xeabf;" glyph-name="coin-yen" d="M480 896c-265.096 0-480-214.904-480-480s214.904-480 480-480c265.098 0 480 214.902 480 480s-214.902 480-480 480zM480 32c-212.078 0-384 171.922-384 384s171.922 384 384 384c212.076 0 384-171.922 384-384s-171.924-384-384-384zM608 384c17.674 0 32 14.326 32 32s-14.326 32-32 32h-68.208l94.832 142.25c9.804 14.704 5.83 34.572-8.876 44.376-14.704 9.802-34.572 5.83-44.376-8.876l-101.372-152.062-101.374 152.062c-9.804 14.706-29.672 18.68-44.376 8.876-14.706-9.804-18.678-29.672-8.876-44.376l94.834-142.25h-68.208c-17.672 0-32-14.326-32-32s14.328-32 32-32h96v-64h-96c-17.672 0-32-14.326-32-32s14.328-32 32-32h96v-96c0-17.674 14.328-32 32-32s32 14.326 32 32v96h96c17.674 0 32 14.326 32 32s-14.326 32-32 32h-96v64h96z" />
+<glyph unicode="&#xeac0;" glyph-name="credit-card" d="M928 832h-832c-52.8 0-96-43.2-96-96v-576c0-52.8 43.2-96 96-96h832c52.8 0 96 43.2 96 96v576c0 52.8-43.2 96-96 96zM96 768h832c17.346 0 32-14.654 32-32v-96h-896v96c0 17.346 14.654 32 32 32zM928 128h-832c-17.346 0-32 14.654-32 32v288h896v-288c0-17.346-14.654-32-32-32zM128 320h64v-128h-64zM256 320h64v-128h-64zM384 320h64v-128h-64z" />
+<glyph unicode="&#xeac1;" glyph-name="calculator" d="M384 896h-320c-35.2 0-64-28.8-64-64v-320c0-35.2 28.796-64 64-64h320c35.2 0 64 28.8 64 64v320c0 35.2-28.8 64-64 64zM384 640h-320v64h320v-64zM896 896h-320c-35.204 0-64-28.8-64-64v-832c0-35.2 28.796-64 64-64h320c35.2 0 64 28.8 64 64v832c0 35.2-28.8 64-64 64zM896 320h-320v64h320v-64zM896 512h-320v64h320v-64zM384 384h-320c-35.2 0-64-28.8-64-64v-320c0-35.2 28.796-64 64-64h320c35.2 0 64 28.8 64 64v320c0 35.2-28.8 64-64 64zM384 128h-128v-128h-64v128h-128v64h128v128h64v-128h128v-64z" />
+<glyph unicode="&#xeac2;" glyph-name="lifebuoy" d="M512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512 512 229.23 512 512-229.23 512-512 512zM320 448c0 106.040 85.96 192 192 192s192-85.96 192-192-85.96-192-192-192-192 85.96-192 192zM925.98 276.524v0l-177.42 73.49c12.518 30.184 19.44 63.276 19.44 97.986s-6.922 67.802-19.44 97.986l177.42 73.49c21.908-52.822 34.020-110.73 34.020-171.476s-12.114-118.654-34.020-171.476v0zM683.478 861.98v0 0l-73.49-177.42c-30.184 12.518-63.276 19.44-97.988 19.44s-67.802-6.922-97.986-19.44l-73.49 177.422c52.822 21.904 110.732 34.018 171.476 34.018 60.746 0 118.654-12.114 171.478-34.020zM98.020 619.476l177.422-73.49c-12.518-30.184-19.442-63.276-19.442-97.986s6.922-67.802 19.44-97.986l-177.42-73.49c-21.906 52.822-34.020 110.73-34.020 171.476s12.114 118.654 34.020 171.476zM340.524 34.020l73.49 177.42c30.184-12.518 63.276-19.44 97.986-19.44s67.802 6.922 97.986 19.44l73.49-177.42c-52.822-21.904-110.73-34.020-171.476-34.020-60.744 0-118.654 12.114-171.476 34.020z" />
+<glyph unicode="&#xeac3;" glyph-name="phone" d="M704 320c-64-64-64-128-128-128s-128 64-192 128-128 128-128 192 64 64 128 128-128 256-192 256-192-192-192-192c0-128 131.5-387.5 256-512s384-256 512-256c0 0 192 128 192 192s-192 256-256 192z" />
+<glyph unicode="&#xeac4;" glyph-name="phone-hang-up" d="M1017.378 384.006c8.004-55.482 13.216-131.392-11.664-160.446-41.142-48.044-301.712-48.044-301.712 48.042 0 48.398 42.856 80.134 1.712 128.178-40.472 47.262-113.026 48.030-193.714 48.042-80.686-0.012-153.242-0.78-193.714-48.042-41.142-48.046 1.714-79.78 1.714-128.178 0-96.086-260.57-96.086-301.714-48.044-24.878 29.054-19.668 104.964-11.662 160.446 6.16 37.038 21.724 76.996 71.548 127.994 0 0.002 0.002 0.002 0.002 0.004 74.738 69.742 187.846 126.738 429.826 127.968v0.030c1.344 0 2.664-0.010 4-0.014 1.338 0.004 2.656 0.014 4 0.014v-0.028c241.98-1.23 355.088-58.226 429.826-127.968 0.002-0.002 0.002-0.004 0.002-0.004 49.824-50.996 65.39-90.954 71.55-127.994z" />
+<glyph unicode="&#xeac5;" glyph-name="address-book" d="M192 960v-1024h768v1024h-768zM576 703.67c70.51 0 127.67-57.16 127.67-127.67s-57.16-127.67-127.67-127.67-127.67 57.16-127.67 127.67 57.16 127.67 127.67 127.67v0zM768 192h-384v64c0 70.696 57.306 128 128 128v0h128c70.696 0 128-57.304 128-128v-64zM64 896h96v-192h-96v192zM64 640h96v-192h-96v192zM64 384h96v-192h-96v192zM64 128h96v-192h-96v192z" />
+<glyph unicode="&#xeac6;" glyph-name="envelop" d="M928 832h-832c-52.8 0-96-43.2-96-96v-640c0-52.8 43.2-96 96-96h832c52.8 0 96 43.2 96 96v640c0 52.8-43.2 96-96 96zM398.74 409.628l-270.74-210.892v501.642l270.74-290.75zM176.38 704h671.24l-335.62-252-335.62 252zM409.288 398.302l102.712-110.302 102.71 110.302 210.554-270.302h-626.528l210.552 270.302zM625.26 409.628l270.74 290.75v-501.642l-270.74 210.892z" />
+<glyph unicode="&#xeac7;" glyph-name="pushpin" d="M544 960l-96-96 96-96-224-256h-224l176-176-272-360.616v-39.384h39.384l360.616 272 176-176v224l256 224 96-96 96 96-480 480zM448 416l-64 64 224 224 64-64-224-224z" />
+<glyph unicode="&#xeac8;" glyph-name="location" d="M512 960c-176.732 0-320-143.268-320-320 0-320 320-704 320-704s320 384 320 704c0 176.732-143.27 320-320 320zM512 448c-106.040 0-192 85.96-192 192s85.96 192 192 192 192-85.96 192-192-85.96-192-192-192z" />
+<glyph unicode="&#xeac9;" glyph-name="location2" d="M512 960c-176.732 0-320-143.268-320-320 0-320 320-704 320-704s320 384 320 704c0 176.732-143.27 320-320 320zM512 444c-108.248 0-196 87.752-196 196s87.752 196 196 196 196-87.752 196-196-87.752-196-196-196zM388 640c0 68.483 55.517 124 124 124s124-55.517 124-124c0-68.483-55.517-124-124-124s-124 55.517-124 124z" />
+<glyph unicode="&#xeaca;" glyph-name="compass" d="M544.010-64.004c-2.296 0-4.622 0.25-6.94 0.764-14.648 3.25-25.070 16.238-25.070 31.24v480h-480c-15.002 0-27.992 10.422-31.24 25.070-3.25 14.646 4.114 29.584 17.708 35.928l960 448c12.196 5.688 26.644 3.144 36.16-6.372 9.516-9.514 12.060-23.966 6.372-36.16l-448-960c-5.342-11.44-16.772-18.47-28.99-18.47zM176.242 512h367.758c17.674 0 32-14.328 32-32v-367.758l349.79 749.546-749.548-349.788z" />
+<glyph unicode="&#xeacb;" glyph-name="compass2" d="M512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512 512 229.23 512 512-229.23 512-512 512zM96 448c0 229.75 186.25 416 416 416 109.574 0 209.232-42.386 283.534-111.628l-411.534-176.372-176.372-411.534c-69.242 74.302-111.628 173.96-111.628 283.534zM585.166 374.834l-256.082-109.75 109.75 256.082 146.332-146.332zM512 32c-109.574 0-209.234 42.386-283.532 111.628l411.532 176.372 176.372 411.532c69.242-74.298 111.628-173.958 111.628-283.532 0-229.75-186.25-416-416-416z" />
+<glyph unicode="&#xeacc;" glyph-name="map" d="M0 768l320 128v-768l-320-128zM384 928l320-192v-736l-320 160zM768 736l256 192v-768l-256-192z" />
+<glyph unicode="&#xeacd;" glyph-name="map2" d="M672 768l-320 128-352-128v-768l352 128 320-128 352 128v768l-352-128zM384 814.27l256-102.4v-630.138l-256 102.398v630.14zM64 723.172l256 93.090v-631.8l-256-93.088v631.798zM960 172.828l-256-93.092v631.8l256 93.090v-631.798z" />
+<glyph unicode="&#xeace;" glyph-name="history" horiz-adv-x="1088" d="M640 896c247.424 0 448-200.576 448-448s-200.576-448-448-448v96c94.024 0 182.418 36.614 248.902 103.098s103.098 154.878 103.098 248.902c0 94.022-36.614 182.418-103.098 248.902s-154.878 103.098-248.902 103.098c-94.022 0-182.418-36.614-248.902-103.098-51.14-51.138-84.582-115.246-97.306-184.902h186.208l-224-256-224 256h164.57c31.060 217.102 217.738 384 443.43 384zM832 512v-128h-256v320h128v-192z" />
+<glyph unicode="&#xeacf;" glyph-name="clock" d="M658.744 210.744l-210.744 210.746v282.51h128v-229.49l173.256-173.254zM512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512 512 229.23 512 512-229.23 512-512 512zM512 64c-212.078 0-384 171.922-384 384s171.922 384 384 384c212.078 0 384-171.922 384-384s-171.922-384-384-384z" />
+<glyph unicode="&#xead0;" glyph-name="clock2" d="M512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512 512 229.23 512 512-229.23 512-512 512zM658.744 210.744l-210.744 210.746v282.51h128v-229.49l173.256-173.254-90.512-90.512z" />
+<glyph unicode="&#xead1;" glyph-name="alarm" d="M512 832c-247.424 0-448-200.576-448-448s200.576-448 448-448 448 200.576 448 448-200.576 448-448 448zM512 24c-198.824 0-360 161.178-360 360 0 198.824 161.176 360 360 360 198.822 0 360-161.176 360-360 0-198.822-161.178-360-360-360zM934.784 672.826c16.042 28.052 25.216 60.542 25.216 95.174 0 106.040-85.96 192-192 192-61.818 0-116.802-29.222-151.92-74.596 131.884-27.236 245.206-105.198 318.704-212.578v0zM407.92 885.404c-35.116 45.374-90.102 74.596-151.92 74.596-106.040 0-192-85.96-192-192 0-34.632 9.174-67.122 25.216-95.174 73.5 107.38 186.822 185.342 318.704 212.578zM512 384v256h-64v-320h256v64z" />
+<glyph unicode="&#xead2;" glyph-name="bell" d="M1025.5 160c0 288-256 224-256 448 0 18.56-1.788 34.42-5.048 47.928-16.83 113.018-92.156 203.72-189.772 231.36 0.866 3.948 1.32 8.032 1.32 12.21 0 33.278-28.8 60.502-64 60.502s-64-27.224-64-60.5c0-4.18 0.456-8.264 1.32-12.21-109.47-30.998-190.914-141.298-193.254-273.442-0.040-1.92-0.066-3.864-0.066-5.846 0-224.002-256-160.002-256-448.002 0-76.226 170.59-139.996 398.97-156.080 21.524-40.404 64.056-67.92 113.030-67.92s91.508 27.516 113.030 67.92c228.38 16.084 398.97 79.854 398.97 156.080 0 0.228-0.026 0.456-0.028 0.682l1.528-0.682zM826.246 105.904c-54.23-14.47-118.158-24.876-186.768-30.648-5.704 65.418-60.582 116.744-127.478 116.744s-121.774-51.326-127.478-116.744c-68.608 5.772-132.538 16.178-186.768 30.648-74.63 19.914-110.31 42.19-123.368 54.096 13.058 11.906 48.738 34.182 123.368 54.096 86.772 23.152 198.372 35.904 314.246 35.904s227.474-12.752 314.246-35.904c74.63-19.914 110.31-42.19 123.368-54.096-13.058-11.906-48.738-34.182-123.368-54.096z" />
+<glyph unicode="&#xead3;" glyph-name="stopwatch" d="M512.002 766.788v65.212h128v64c0 35.346-28.654 64-64.002 64h-191.998c-35.346 0-64-28.654-64-64v-64h128v-65.212c-214.798-16.338-384-195.802-384-414.788 0-229.75 186.25-416 416-416s416 186.25 416 416c0 218.984-169.202 398.448-384 414.788zM706.276 125.726c-60.442-60.44-140.798-93.726-226.274-93.726s-165.834 33.286-226.274 93.726c-60.44 60.44-93.726 140.8-93.726 226.274s33.286 165.834 93.726 226.274c58.040 58.038 134.448 91.018 216.114 93.548l-21.678-314.020c-1.86-26.29 12.464-37.802 31.836-37.802s33.698 11.512 31.836 37.802l-21.676 314.022c81.666-2.532 158.076-35.512 216.116-93.55 60.44-60.44 93.726-140.8 93.726-226.274s-33.286-165.834-93.726-226.274z" />
+<glyph unicode="&#xead4;" glyph-name="calendar" d="M320 576h128v-128h-128zM512 576h128v-128h-128zM704 576h128v-128h-128zM128 192h128v-128h-128zM320 192h128v-128h-128zM512 192h128v-128h-128zM320 384h128v-128h-128zM512 384h128v-128h-128zM704 384h128v-128h-128zM128 384h128v-128h-128zM832 960v-64h-128v64h-448v-64h-128v64h-128v-1024h960v1024h-128zM896 0h-832v704h832v-704z" />
+<glyph unicode="&#xead5;" glyph-name="printer" d="M256 896h512v-128h-512v128zM960 704h-896c-35.2 0-64-28.8-64-64v-320c0-35.2 28.794-64 64-64h192v-256h512v256h192c35.2 0 64 28.8 64 64v320c0 35.2-28.8 64-64 64zM128 512c-35.346 0-64 28.654-64 64s28.654 64 64 64 64-28.654 64-64-28.652-64-64-64zM704 64h-384v320h384v-320z" />
+<glyph unicode="&#xead6;" glyph-name="keyboard" horiz-adv-x="1152" d="M1088 832h-1024c-35.2 0-64-28.8-64-64v-640c0-35.2 28.8-64 64-64h1024c35.2 0 64 28.8 64 64v640c0 35.2-28.8 64-64 64zM640 704h128v-128h-128v128zM832 512v-128h-128v128h128zM448 704h128v-128h-128v128zM640 512v-128h-128v128h128zM256 704h128v-128h-128v128zM448 512v-128h-128v128h128zM128 704h64v-128h-64v128zM128 512h128v-128h-128v128zM192 192h-64v128h64v-128zM768 192h-512v128h512v-128zM1024 192h-192v128h192v-128zM1024 384h-128v128h128v-128zM1024 576h-192v128h192v-128z" />
+<glyph unicode="&#xead7;" glyph-name="display" d="M0 896v-640h1024v640h-1024zM960 320h-896v512h896v-512zM672 192h-320l-32-128-64-64h512l-64 64z" />
+<glyph unicode="&#xead8;" glyph-name="laptop" d="M896 256v512c0 35.2-28.8 64-64 64h-640c-35.2 0-64-28.8-64-64v-512h-128v-192h1024v192h-128zM640 128h-256v64h256v-64zM832 256h-640v511.886c0.034 0.040 0.076 0.082 0.114 0.114h639.77c0.040-0.034 0.082-0.076 0.116-0.116v-511.884z" />
+<glyph unicode="&#xead9;" glyph-name="mobile" d="M736 960h-448c-52.8 0-96-43.2-96-96v-832c0-52.8 43.2-96 96-96h448c52.8 0 96 43.2 96 96v832c0 52.8-43.2 96-96 96zM384 912h256v-32h-256v32zM512 0c-35.346 0-64 28.654-64 64s28.654 64 64 64 64-28.654 64-64-28.654-64-64-64zM768 192h-512v640h512v-640z" />
+<glyph unicode="&#xeada;" glyph-name="mobile2" d="M768 960h-576c-35.2 0-64-28.798-64-64v-896c0-35.2 28.798-64 64-64h576c35.2 0 64 28.8 64 64v896c0 35.202-28.8 64-64 64zM480-17.782c-27.492 0-49.782 22.29-49.782 49.782s22.29 49.782 49.782 49.782 49.782-22.29 49.782-49.782-22.29-49.782-49.782-49.782zM768 128h-576v704h576v-704z" />
+<glyph unicode="&#xeadb;" glyph-name="tablet" d="M800 960h-640c-52.8 0-96-43.2-96-96v-832c0-52.8 43.2-96 96-96h640c52.8 0 96 43.2 96 96v832c0 52.8-43.2 96-96 96zM480-32c-17.672 0-32 14.326-32 32s14.328 32 32 32 32-14.326 32-32-14.328-32-32-32zM768 64h-576v768h576v-768z" />
+<glyph unicode="&#xeadc;" glyph-name="tv" d="M981.188 671.892c-88.808 12.768-183.382 22.016-282.076 27.22l164.888 164.888-64 64-224.558-224.556c-21.006 0.368-42.156 0.556-63.442 0.556v0l-256 256-64-64 194.196-194.196c-120.922-4.242-236.338-14.524-343.386-29.912-27.532-107.726-42.81-226.752-42.81-351.892s15.278-244.166 42.804-351.89c143.642-20.652 302.34-32.11 469.196-32.11s325.55 11.458 469.188 32.11c27.534 107.724 42.812 226.75 42.812 351.89s-15.278 244.166-42.812 351.892zM863.892 85.406c-107.73-13.766-226.75-21.406-351.892-21.406s-244.166 7.64-351.892 21.406c-20.648 71.816-32.108 151.166-32.108 234.594 0 83.43 11.458 162.78 32.108 234.596 107.726 13.766 226.75 21.404 351.892 21.404 125.136 0 244.162-7.638 351.886-21.404 20.656-71.816 32.114-151.166 32.114-234.596 0-83.428-11.458-162.778-32.108-234.594z" />
+<glyph unicode="&#xeadd;" glyph-name="drawer" d="M1016.988 307.99l-256 320c-6.074 7.592-15.266 12.010-24.988 12.010h-448c-9.72 0-18.916-4.418-24.988-12.010l-256-320c-4.538-5.674-7.012-12.724-7.012-19.99v-288c0-35.346 28.654-64 64-64h896c35.348 0 64 28.654 64 64v288c0 7.266-2.472 14.316-7.012 19.99zM960 256h-224l-128-128h-192l-128 128h-224v20.776l239.38 299.224h417.24l239.38-299.224v-20.776zM736 448h-448c-17.672 0-32 14.328-32 32s14.328 32 32 32h448c17.674 0 32-14.328 32-32s-14.326-32-32-32zM800 320h-576c-17.672 0-32 14.326-32 32s14.328 32 32 32h576c17.674 0 32-14.326 32-32s-14.326-32-32-32z" />
+<glyph unicode="&#xeade;" glyph-name="drawer2" d="M1016.988 307.99l-256 320c-6.074 7.592-15.266 12.010-24.988 12.010h-448c-9.72 0-18.916-4.418-24.988-12.010l-256-320c-4.538-5.674-7.012-12.724-7.012-19.99v-288c0-35.346 28.654-64 64-64h896c35.348 0 64 28.654 64 64v288c0 7.266-2.472 14.316-7.012 19.99zM960 256h-224l-128-128h-192l-128 128h-224v20.776l239.38 299.224h417.24l239.38-299.224v-20.776z" />
+<glyph unicode="&#xeadf;" glyph-name="box-add" d="M832 896h-640l-192-192v-672c0-17.674 14.326-32 32-32h960c17.672 0 32 14.326 32 32v672l-192 192zM512 128l-320 256h192v192h256v-192h192l-320-256zM154.51 768l64 64h586.978l64-64h-714.978z" />
+<glyph unicode="&#xeae0;" glyph-name="box-remove" d="M832 896h-640l-192-192v-672c0-17.674 14.326-32 32-32h960c17.672 0 32 14.326 32 32v672l-192 192zM640 320v-192h-256v192h-192l320 256 320-256h-192zM154.51 768l64 64h586.976l64-64h-714.976z" />
+<glyph unicode="&#xeae1;" glyph-name="download" d="M512 384l256 256h-192v256h-128v-256h-192zM744.726 488.728l-71.74-71.742 260.080-96.986-421.066-157.018-421.066 157.018 260.080 96.986-71.742 71.742-279.272-104.728v-256l512-192 512 192v256z" />
+<glyph unicode="&#xeae2;" glyph-name="upload" d="M448 384h128v256h192l-256 256-256-256h192zM640 528v-98.712l293.066-109.288-421.066-157.018-421.066 157.018 293.066 109.288v98.712l-384-144v-256l512-192 512 192v256z" />
+<glyph unicode="&#xeae3;" glyph-name="floppy-disk" d="M896 960h-896v-1024h1024v896l-128 128zM512 832h128v-256h-128v256zM896 64h-768v768h64v-320h576v320h74.978l53.022-53.018v-714.982z" />
+<glyph unicode="&#xeae4;" glyph-name="drive" d="M192 64h640c106.038 0 192 85.96 192 192h-1024c0-106.040 85.962-192 192-192zM832 192h64v-64h-64v64zM960 832h-896l-64-512h1024z" />
+<glyph unicode="&#xeae5;" glyph-name="database" d="M512 960c-282.77 0-512-71.634-512-160v-128c0-88.366 229.23-160 512-160s512 71.634 512 160v128c0 88.366-229.23 160-512 160zM512 416c-282.77 0-512 71.634-512 160v-192c0-88.366 229.23-160 512-160s512 71.634 512 160v192c0-88.366-229.23-160-512-160zM512 128c-282.77 0-512 71.634-512 160v-192c0-88.366 229.23-160 512-160s512 71.634 512 160v192c0-88.366-229.23-160-512-160z" />
+<glyph unicode="&#xeae6;" glyph-name="undo" d="M512 896c-141.384 0-269.376-57.32-362.032-149.978l-149.968 149.978v-384h384l-143.532 143.522c69.496 69.492 165.492 112.478 271.532 112.478 212.068 0 384-171.924 384-384 0-114.696-50.292-217.636-130.018-288l84.666-96c106.302 93.816 173.352 231.076 173.352 384 0 282.77-229.23 512-512 512z" />
+<glyph unicode="&#xeae7;" glyph-name="redo" d="M0 384c0-152.924 67.048-290.184 173.35-384l84.666 96c-79.726 70.364-130.016 173.304-130.016 288 0 212.076 171.93 384 384 384 106.042 0 202.038-42.986 271.53-112.478l-143.53-143.522h384v384l-149.97-149.978c-92.654 92.658-220.644 149.978-362.030 149.978-282.77 0-512-229.23-512-512z" />
+<glyph unicode="&#xeae8;" glyph-name="undo2" d="M761.862-64c113.726 206.032 132.888 520.306-313.862 509.824v-253.824l-384 384 384 384v-248.372c534.962 13.942 594.57-472.214 313.862-775.628z" />
+<glyph unicode="&#xeae9;" glyph-name="redo2" d="M576 711.628v248.372l384-384-384-384v253.824c-446.75 10.482-427.588-303.792-313.86-509.824-280.712 303.414-221.1 789.57 313.86 775.628z" />
+<glyph unicode="&#xeaea;" glyph-name="forward" d="M262.14 960c-113.728-206.032-132.89-520.304 313.86-509.824v253.824l384-384-384-384v248.372c-534.96-13.942-594.572 472.214-313.86 775.628z" />
+<glyph unicode="&#xeaeb;" glyph-name="reply" d="M448 184.372v-248.372l-384 384 384 384v-253.824c446.75-10.48 427.588 303.792 313.862 509.824 280.71-303.414 221.1-789.57-313.862-775.628z" />
+<glyph unicode="&#xeaec;" glyph-name="bubble" d="M512 896c282.77 0 512-186.25 512-416 0-229.752-229.23-416-512-416-27.156 0-53.81 1.734-79.824 5.044-109.978-109.978-241.25-129.7-368.176-132.596v26.916c68.536 33.578 128 94.74 128 164.636 0 9.754-0.758 19.33-2.164 28.696-115.796 76.264-189.836 192.754-189.836 323.304 0 229.75 229.23 416 512 416z" />
+<glyph unicode="&#xeaed;" glyph-name="bubbles" horiz-adv-x="1152" d="M1088 58.834c0-45.5 26.028-84.908 64-104.184v-15.938c-10.626-1.454-21.472-2.224-32.5-2.224-68.008 0-129.348 28.528-172.722 74.264-26.222-6.982-54.002-10.752-82.778-10.752-159.058 0-288 114.616-288 256s128.942 256 288 256c159.058 0 288-114.616 288-256 0-55.348-19.764-106.592-53.356-148.466-6.824-14.824-10.644-31.312-10.644-48.7zM512 960c278.458 0 504.992-180.614 511.836-405.52-49.182 21.92-103.586 33.52-159.836 33.52-95.56 0-185.816-33.446-254.138-94.178-70.846-62.972-109.862-147.434-109.862-237.822 0-44.672 9.544-87.888 27.736-127.788-5.228-0.126-10.468-0.212-15.736-0.212-27.156 0-53.81 1.734-79.824 5.044-109.978-109.978-241.25-129.7-368.176-132.596v26.916c68.536 33.578 128 94.74 128 164.636 0 9.754-0.758 19.33-2.164 28.696-115.796 76.264-189.836 192.754-189.836 323.304 0 229.75 229.23 416 512 416z" />
+<glyph unicode="&#xeaee;" glyph-name="bubbles2" horiz-adv-x="1152" d="M480 960v0c265.096 0 480-173.914 480-388.448s-214.904-388.448-480-388.448c-25.458 0-50.446 1.62-74.834 4.71-103.106-102.694-222.172-121.108-341.166-123.814v25.134c64.252 31.354 116 88.466 116 153.734 0 9.106-0.712 18.048-2.030 26.794-108.558 71.214-177.97 179.988-177.97 301.89 0 214.534 214.904 388.448 480 388.448zM996 89.314c0-55.942 36.314-104.898 92-131.772v-21.542c-103.126 2.318-197.786 18.102-287.142 106.126-21.14-2.65-42.794-4.040-64.858-4.040-95.47 0-183.408 25.758-253.614 69.040 144.674 0.506 281.26 46.854 384.834 130.672 52.208 42.252 93.394 91.826 122.414 147.348 30.766 58.866 46.366 121.582 46.366 186.406 0 10.448-0.45 20.836-1.258 31.168 72.57-59.934 117.258-141.622 117.258-231.676 0-104.488-60.158-197.722-154.24-258.764-1.142-7.496-1.76-15.16-1.76-22.966z" />
+<glyph unicode="&#xeaef;" glyph-name="bubble2" d="M512 768c-54.932 0-107.988-8.662-157.694-25.742-46.712-16.054-88.306-38.744-123.628-67.444-66.214-53.798-102.678-122.984-102.678-194.814 0-40.298 11.188-79.378 33.252-116.152 22.752-37.92 56.982-72.586 98.988-100.252 30.356-19.992 50.78-51.948 56.176-87.894 1.8-11.984 2.928-24.088 3.37-36.124 7.47 6.194 14.75 12.846 21.88 19.976 24.154 24.152 56.78 37.49 90.502 37.49 5.368 0 10.762-0.336 16.156-1.024 20.974-2.666 42.398-4.020 63.676-4.020 54.934 0 107.988 8.66 157.694 25.742 46.712 16.054 88.306 38.744 123.628 67.444 66.214 53.796 102.678 122.984 102.678 194.814s-36.464 141.016-102.678 194.814c-35.322 28.698-76.916 51.39-123.628 67.444-49.706 17.080-102.76 25.742-157.694 25.742zM512 896v0c282.77 0 512-186.25 512-416 0-229.752-229.23-416-512-416-27.156 0-53.81 1.734-79.824 5.044-109.978-109.978-241.25-129.7-368.176-132.596v26.916c68.536 33.578 128 94.74 128 164.636 0 9.754-0.758 19.33-2.164 28.696-115.796 76.264-189.836 192.754-189.836 323.304 0 229.75 229.23 416 512 416z" />
+<glyph unicode="&#xeaf0;" glyph-name="bubbles3" horiz-adv-x="1152" d="M1088 58.834c0-45.5 26.028-84.908 64-104.184v-15.938c-10.626-1.454-21.472-2.224-32.5-2.224-68.008 0-129.348 28.528-172.722 74.264-26.222-6.982-54.002-10.752-82.778-10.752-159.058 0-288 114.616-288 256s128.942 256 288 256c159.058 0 288-114.616 288-256 0-55.348-19.764-106.592-53.356-148.466-6.824-14.824-10.644-31.312-10.644-48.7zM230.678 738.814c-66.214-53.798-102.678-122.984-102.678-194.814 0-40.298 11.188-79.378 33.252-116.15 22.752-37.92 56.982-72.586 98.988-100.252 30.356-19.992 50.78-51.948 56.176-87.894 1.8-11.984 2.928-24.088 3.37-36.124 7.47 6.194 14.75 12.846 21.88 19.976 24.154 24.152 56.78 37.49 90.502 37.49 5.368 0 10.762-0.336 16.156-1.024 20.948-2.662 42.344-4.016 63.594-4.020v-128c-27.128 0.002-53.754 1.738-79.742 5.042-109.978-109.978-241.25-129.7-368.176-132.596v26.916c68.536 33.578 128 94.74 128 164.636 0 9.754-0.758 19.33-2.164 28.696-115.796 76.264-189.836 192.754-189.836 323.304 0 229.75 229.23 416 512 416 278.458 0 504.992-180.614 511.836-405.52-41.096 18.316-85.84 29.422-132.262 32.578-11.53 56.068-45.402 108.816-98.252 151.756-35.322 28.698-76.916 51.39-123.628 67.444-49.706 17.080-102.76 25.742-157.694 25.742-54.932 0-107.988-8.662-157.694-25.742-46.712-16.054-88.306-38.744-123.628-67.444z" />
+<glyph unicode="&#xeaf1;" glyph-name="bubbles4" horiz-adv-x="1152" d="M480 832c-50.666 0-99.582-7.95-145.386-23.628-42.924-14.694-81.114-35.436-113.502-61.646-60.044-48.59-93.112-110.802-93.112-175.174 0-35.99 10.066-70.948 29.92-103.898 20.686-34.34 51.898-65.794 90.26-90.958 30.44-19.968 50.936-51.952 56.362-87.95 0.902-5.99 1.63-12.006 2.18-18.032 2.722 2.52 5.424 5.114 8.114 7.794 24.138 24.040 56.688 37.312 90.322 37.312 5.348 0 10.718-0.336 16.094-1.018 19.36-2.452 39.124-3.696 58.748-3.696 50.666 0 99.58 7.948 145.384 23.628 42.926 14.692 81.116 35.434 113.504 61.644 60.046 48.59 93.112 110.802 93.112 175.174s-33.066 126.582-93.112 175.174c-32.388 26.212-70.578 46.952-113.504 61.646-45.804 15.678-94.718 23.628-145.384 23.628zM480 960v0c265.096 0 480-173.914 480-388.448s-214.904-388.448-480-388.448c-25.458 0-50.446 1.62-74.834 4.71-103.106-102.694-222.172-121.108-341.166-123.814v25.134c64.252 31.354 116 88.466 116 153.734 0 9.106-0.712 18.048-2.030 26.794-108.558 71.214-177.97 179.988-177.97 301.89 0 214.534 214.904 388.448 480 388.448zM996 89.314c0-55.942 36.314-104.898 92-131.772v-21.542c-103.126 2.318-197.786 18.102-287.142 106.126-21.14-2.65-42.794-4.040-64.858-4.040-95.47 0-183.408 25.758-253.614 69.040 144.674 0.506 281.26 46.854 384.834 130.672 52.208 42.252 93.394 91.826 122.414 147.348 30.766 58.866 46.366 121.582 46.366 186.406 0 10.448-0.45 20.836-1.258 31.168 72.57-59.934 117.258-141.622 117.258-231.676 0-104.488-60.158-197.722-154.24-258.764-1.142-7.496-1.76-15.16-1.76-22.966z" />
+<glyph unicode="&#xeaf2;" glyph-name="user" d="M576 253.388v52.78c70.498 39.728 128 138.772 128 237.832 0 159.058 0 288-192 288s-192-128.942-192-288c0-99.060 57.502-198.104 128-237.832v-52.78c-217.102-17.748-384-124.42-384-253.388h896c0 128.968-166.898 235.64-384 253.388z" />
+<glyph unicode="&#xeaf3;" glyph-name="users" horiz-adv-x="1152" d="M768 189.388v52.78c70.498 39.728 128 138.772 128 237.832 0 159.058 0 288-192 288s-192-128.942-192-288c0-99.060 57.502-198.104 128-237.832v-52.78c-217.102-17.748-384-124.42-384-253.388h896c0 128.968-166.898 235.64-384 253.388zM327.196 164.672c55.31 36.15 124.080 63.636 199.788 80.414-15.054 17.784-28.708 37.622-40.492 59.020-30.414 55.234-46.492 116.058-46.492 175.894 0 86.042 0 167.31 30.6 233.762 29.706 64.504 83.128 104.496 159.222 119.488-16.914 76.48-61.94 126.75-181.822 126.75-192 0-192-128.942-192-288 0-99.060 57.502-198.104 128-237.832v-52.78c-217.102-17.748-384-124.42-384-253.388h279.006c14.518 12.91 30.596 25.172 48.19 36.672z" />
+<glyph unicode="&#xeaf4;" glyph-name="user-plus" d="M384 224c0 151.234 95.874 280.486 230.032 330.2 16.28 36.538 25.968 77.164 25.968 117.8 0 159.058 0 288-192 288s-192-128.942-192-288c0-99.060 57.502-198.104 128-237.832v-52.78c-217.102-17.748-384-124.42-384-253.388h397.306c-8.664 30.53-13.306 62.732-13.306 96zM736 512c-159.058 0-288-128.942-288-288s128.942-288 288-288c159.056 0 288 128.942 288 288s-128.942 288-288 288zM896 192h-128v-128h-64v128h-128v64h128v128h64v-128h128v-64z" />
+<glyph unicode="&#xeaf5;" glyph-name="user-minus" d="M384 224c0 151.234 95.874 280.486 230.032 330.2 16.28 36.538 25.968 77.164 25.968 117.8 0 159.058 0 288-192 288s-192-128.942-192-288c0-99.060 57.502-198.104 128-237.832v-52.78c-217.102-17.748-384-124.42-384-253.388h397.306c-8.664 30.53-13.306 62.732-13.306 96zM736 512c-159.058 0-288-128.942-288-288s128.942-288 288-288c159.056 0 288 128.942 288 288s-128.942 288-288 288zM896 192h-320v64h320v-64z" />
+<glyph unicode="&#xeaf6;" glyph-name="user-check" d="M960 352l-288-288-96 96-64-64 160-160 352 352zM448 192h320v115.128c-67.22 39.2-156.308 66.11-256 74.26v52.78c70.498 39.728 128 138.772 128 237.832 0 159.058 0 288-192 288s-192-128.942-192-288c0-99.060 57.502-198.104 128-237.832v-52.78c-217.102-17.748-384-124.42-384-253.388h448v64z" />
+<glyph unicode="&#xeaf7;" glyph-name="user-tie" d="M320 768c0 106.039 85.961 192 192 192s192-85.961 192-192c0-106.039-85.961-192-192-192s-192 85.961-192 192zM768.078 512h-35.424l-199.104-404.244 74.45 372.244-96 96-96-96 74.45-372.244-199.102 404.244h-35.424c-127.924 0-127.924-85.986-127.924-192v-320h768v320c0 106.014 0 192-127.922 192z" />
+<glyph unicode="&#xeaf8;" glyph-name="quotes-left" d="M225 512c123.712 0 224-100.29 224-224 0-123.712-100.288-224-224-224s-224 100.288-224 224l-1 32c0 247.424 200.576 448 448 448v-128c-85.474 0-165.834-33.286-226.274-93.726-11.634-11.636-22.252-24.016-31.83-37.020 11.438 1.8 23.16 2.746 35.104 2.746zM801 512c123.71 0 224-100.29 224-224 0-123.712-100.29-224-224-224s-224 100.288-224 224l-1 32c0 247.424 200.576 448 448 448v-128c-85.474 0-165.834-33.286-226.274-93.726-11.636-11.636-22.254-24.016-31.832-37.020 11.44 1.8 23.16 2.746 35.106 2.746z" />
+<glyph unicode="&#xeaf9;" glyph-name="quotes-right" d="M800 320c-123.712 0-224 100.29-224 224 0 123.712 100.288 224 224 224s224-100.288 224-224l1-32c0-247.424-200.576-448-448-448v128c85.474 0 165.834 33.286 226.274 93.726 11.634 11.636 22.252 24.016 31.83 37.020-11.438-1.8-23.16-2.746-35.104-2.746zM224 320c-123.71 0-224 100.29-224 224 0 123.712 100.29 224 224 224s224-100.288 224-224l1-32c0-247.424-200.576-448-448-448v128c85.474 0 165.834 33.286 226.274 93.726 11.636 11.636 22.254 24.016 31.832 37.020-11.44-1.8-23.16-2.746-35.106-2.746z" />
+<glyph unicode="&#xeafa;" glyph-name="hour-glass" d="M728.992 448c137.754 87.334 231.008 255.208 231.008 448 0 21.676-1.192 43.034-3.478 64h-889.042c-2.29-20.968-3.48-42.326-3.48-64 0-192.792 93.254-360.666 231.006-448-137.752-87.334-231.006-255.208-231.006-448 0-21.676 1.19-43.034 3.478-64h889.042c2.288 20.966 3.478 42.324 3.478 64 0.002 192.792-93.252 360.666-231.006 448zM160 0c0 186.912 80.162 345.414 224 397.708v100.586c-143.838 52.29-224 210.792-224 397.706v0h704c0-186.914-80.162-345.416-224-397.706v-100.586c143.838-52.294 224-210.796 224-397.708h-704zM619.626 290.406c-71.654 40.644-75.608 93.368-75.626 125.366v64.228c0 31.994 3.804 84.914 75.744 125.664 38.504 22.364 71.808 56.348 97.048 98.336h-409.582c25.266-42.032 58.612-76.042 97.166-98.406 71.654-40.644 75.606-93.366 75.626-125.366v-64.228c0-31.992-3.804-84.914-75.744-125.664-72.622-42.18-126.738-125.684-143.090-226.336h501.67c-16.364 100.708-70.53 184.248-143.212 226.406z" />
+<glyph unicode="&#xeafb;" glyph-name="spinner" d="M384 832c0 70.692 57.308 128 128 128s128-57.308 128-128c0-70.692-57.308-128-128-128s-128 57.308-128 128zM655.53 719.53c0 70.692 57.308 128 128 128s128-57.308 128-128c0-70.692-57.308-128-128-128s-128 57.308-128 128zM832 448c0 35.346 28.654 64 64 64s64-28.654 64-64c0-35.346-28.654-64-64-64s-64 28.654-64 64zM719.53 176.47c0 35.346 28.654 64 64 64s64-28.654 64-64c0-35.346-28.654-64-64-64s-64 28.654-64 64zM448.002 64c0 0 0 0 0 0 0 35.346 28.654 64 64 64s64-28.654 64-64c0 0 0 0 0 0 0-35.346-28.654-64-64-64s-64 28.654-64 64zM176.472 176.47c0 0 0 0 0 0 0 35.346 28.654 64 64 64s64-28.654 64-64c0 0 0 0 0 0 0-35.346-28.654-64-64-64s-64 28.654-64 64zM144.472 719.53c0 0 0 0 0 0 0 53.019 42.981 96 96 96s96-42.981 96-96c0 0 0 0 0 0 0-53.019-42.981-96-96-96s-96 42.981-96 96zM56 448c0 39.765 32.235 72 72 72s72-32.235 72-72c0-39.765-32.235-72-72-72s-72 32.235-72 72z" />
+<glyph unicode="&#xeafc;" glyph-name="spinner2" d="M1024 448c-1.278 66.862-15.784 133.516-42.576 194.462-26.704 61-65.462 116.258-113.042 161.92-47.552 45.696-103.944 81.82-164.984 105.652-61.004 23.924-126.596 35.352-191.398 33.966-64.81-1.282-129.332-15.374-188.334-41.356-59.048-25.896-112.542-63.47-156.734-109.576-44.224-46.082-79.16-100.708-102.186-159.798-23.114-59.062-34.128-122.52-32.746-185.27 1.286-62.76 14.964-125.148 40.134-182.206 25.088-57.1 61.476-108.828 106.11-151.548 44.61-42.754 97.472-76.504 154.614-98.72 57.118-22.304 118.446-32.902 179.142-31.526 60.708 1.29 120.962 14.554 176.076 38.914 55.15 24.282 105.116 59.48 146.366 102.644 41.282 43.14 73.844 94.236 95.254 149.43 13.034 33.458 21.88 68.4 26.542 103.798 1.246-0.072 2.498-0.12 3.762-0.12 35.346 0 64 28.652 64 64 0 1.796-0.094 3.572-0.238 5.332h0.238zM922.306 278.052c-23.472-53.202-57.484-101.4-99.178-141.18-41.67-39.81-91-71.186-144.244-91.79-53.228-20.678-110.29-30.452-166.884-29.082-56.604 1.298-112.596 13.736-163.82 36.474-51.25 22.666-97.684 55.49-135.994 95.712-38.338 40.198-68.528 87.764-88.322 139.058-19.87 51.284-29.228 106.214-27.864 160.756 1.302 54.552 13.328 108.412 35.254 157.69 21.858 49.3 53.498 93.97 92.246 130.81 38.73 36.868 84.53 65.87 133.874 84.856 49.338 19.060 102.136 28.006 154.626 26.644 52.5-1.306 104.228-12.918 151.562-34.034 47.352-21.050 90.256-51.502 125.624-88.782 35.396-37.258 63.21-81.294 81.39-128.688 18.248-47.392 26.782-98.058 25.424-148.496h0.238c-0.144-1.76-0.238-3.536-0.238-5.332 0-33.012 24.992-60.174 57.086-63.624-6.224-34.822-16.53-68.818-30.78-100.992z" />
+<glyph unicode="&#xeafd;" glyph-name="spinner3" d="M512 656.904c-32.964 0-59.686 26.724-59.686 59.686v179.060c0 32.964 26.722 59.686 59.686 59.686 32.962 0 59.688-26.722 59.688-59.686v-179.060c0-32.964-26.726-59.686-59.688-59.686zM512-36.956c-20.602 0-37.304 16.702-37.304 37.304v179.060c0 20.602 16.702 37.304 37.304 37.304 20.604 0 37.304-16.704 37.304-37.304v-179.060c0-20.602-16.7-37.304-37.304-37.304zM377.756 624.64c-19.34 0-38.146 10.034-48.512 27.988l-89.53 155.070c-15.452 26.764-6.282 60.986 20.482 76.438 26.762 15.45 60.986 6.284 76.438-20.482l89.53-155.072c15.452-26.764 6.282-60.986-20.482-76.438-8.81-5.084-18.432-7.504-27.926-7.504zM735.856 26.744c-11.602 0-22.886 6.022-29.108 16.792l-89.53 155.070c-9.27 16.056-3.77 36.592 12.29 45.864 16.056 9.264 36.59 3.77 45.864-12.292l89.532-155.068c9.27-16.058 3.768-36.592-12.292-45.864-5.286-3.048-11.060-4.502-16.756-4.502zM279.344 530.060c-8.86 0-17.838 2.256-26.064 7.006l-155.072 89.53c-24.978 14.422-33.538 46.362-19.116 71.342 14.42 24.978 46.364 33.538 71.342 19.116l155.070-89.53c24.98-14.422 33.538-46.362 19.116-71.34-9.668-16.756-27.226-26.124-45.276-26.124zM899.648 194.326c-5.064 0-10.196 1.29-14.894 4.004l-155.068 89.53c-14.274 8.24-19.164 26.494-10.924 40.768 8.242 14.276 26.496 19.166 40.766 10.924l155.070-89.532c14.274-8.24 19.164-26.492 10.924-40.766-5.53-9.574-15.562-14.928-25.874-14.928zM243.41 399.504h-179.060c-26.784 0-48.496 21.712-48.496 48.496s21.712 48.496 48.496 48.496h179.060c26.784 0 48.496-21.712 48.496-48.496s-21.712-48.496-48.496-48.496zM959.65 418.156c-0.002 0 0 0 0 0h-179.060c-16.482 0.002-29.844 13.364-29.844 29.844s13.364 29.844 29.844 29.844c0.002 0 0 0 0 0h179.060c16.482 0 29.844-13.362 29.844-29.844 0-16.48-13.364-29.844-29.844-29.844zM124.366 179.402c-15.472 0-30.518 8.028-38.81 22.39-12.362 21.41-5.026 48.79 16.384 61.148l155.072 89.532c21.41 12.368 48.79 5.028 61.15-16.384 12.362-21.412 5.026-48.79-16.384-61.15l-155.072-89.53c-7.050-4.070-14.748-6.006-22.34-6.006zM744.632 552.448c-10.314 0-20.346 5.352-25.874 14.926-8.24 14.274-3.35 32.526 10.924 40.768l155.070 89.528c14.272 8.236 32.526 3.352 40.768-10.922 8.24-14.274 3.35-32.526-10.924-40.768l-155.070-89.528c-4.7-2.714-9.83-4.004-14.894-4.004zM288.136 19.284c-6.962 0-14.016 1.774-20.48 5.504-19.626 11.332-26.35 36.428-15.020 56.054l89.53 155.070c11.33 19.628 36.426 26.352 56.054 15.022 19.626-11.332 26.35-36.43 15.020-56.054l-89.53-155.072c-7.598-13.166-21.392-20.524-35.574-20.524zM646.266 650.758c-5.062 0-10.196 1.29-14.894 4.002-14.274 8.242-19.164 26.494-10.924 40.766l89.534 155.070c8.24 14.274 26.492 19.166 40.766 10.922 14.274-8.242 19.164-26.494 10.924-40.766l-89.532-155.070c-5.53-9.57-15.56-14.924-25.874-14.924z" />
+<glyph unicode="&#xeafe;" glyph-name="spinner4" d="M192 448c0 12.18 0.704 24.196 2.030 36.022l-184.98 60.104c-5.916-31.14-9.050-63.264-9.050-96.126 0-147.23 62.166-279.922 161.654-373.324l114.284 157.296c-52.124 56.926-83.938 132.758-83.938 216.028zM832 448c0-83.268-31.812-159.102-83.938-216.028l114.284-157.296c99.488 93.402 161.654 226.094 161.654 373.324 0 32.862-3.132 64.986-9.048 96.126l-184.98-60.104c1.324-11.828 2.028-23.842 2.028-36.022zM576 761.592c91.934-18.662 169.544-76.742 214.45-155.826l184.978 60.102c-73.196 155.42-222.24 268.060-399.428 290.156v-194.432zM233.55 605.768c44.906 79.084 122.516 137.164 214.45 155.826v194.43c-177.188-22.096-326.23-134.736-399.426-290.154l184.976-60.102zM644.556 156.672c-40.39-18.408-85.272-28.672-132.556-28.672s-92.166 10.264-132.554 28.67l-114.292-157.31c73.206-40.366 157.336-63.36 246.846-63.36s173.64 22.994 246.848 63.36l-114.292 157.312z" />
+<glyph unicode="&#xeaff;" glyph-name="spinner5" d="M512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512 512 229.23 512 512-229.23 512-512 512zM512 704c141.384 0 256-114.616 256-256s-114.616-256-256-256-256 114.616-256 256 114.616 256 256 256zM817.47 142.53c-81.594-81.594-190.080-126.53-305.47-126.53-115.392 0-223.876 44.936-305.47 126.53s-126.53 190.078-126.53 305.47c0 115.39 44.936 223.876 126.53 305.47l67.882-67.882c0 0 0 0 0 0-131.006-131.006-131.006-344.17 0-475.176 63.462-63.462 147.838-98.412 237.588-98.412 89.748 0 174.124 34.95 237.588 98.412 131.006 131.006 131.006 344.168 0 475.176l67.882 67.882c81.594-81.594 126.53-190.080 126.53-305.47 0-115.392-44.936-223.876-126.53-305.47z" />
+<glyph unicode="&#xeb00;" glyph-name="spinner6" d="M384 832c0 70.692 57.308 128 128 128s128-57.308 128-128c0-70.692-57.308-128-128-128s-128 57.308-128 128zM790.994 448c0 0 0 0 0 0 0 57.993 47.013 105.006 105.006 105.006s105.006-47.013 105.006-105.006c0 0 0 0 0 0 0-57.993-47.013-105.006-105.006-105.006s-105.006 47.013-105.006 105.006zM688.424 176.47c0 52.526 42.58 95.106 95.106 95.106s95.106-42.58 95.106-95.106c0-52.526-42.58-95.106-95.106-95.106s-95.106 42.58-95.106 95.106zM425.862 64c0 47.573 38.565 86.138 86.138 86.138s86.138-38.565 86.138-86.138c0-47.573-38.565-86.138-86.138-86.138s-86.138 38.565-86.138 86.138zM162.454 176.47c0 43.088 34.93 78.018 78.018 78.018s78.018-34.93 78.018-78.018c0-43.088-34.93-78.018-78.018-78.018s-78.018 34.93-78.018 78.018zM57.338 448c0 39.026 31.636 70.662 70.662 70.662s70.662-31.636 70.662-70.662c0-39.026-31.636-70.662-70.662-70.662s-70.662 31.636-70.662 70.662zM176.472 719.528c0 0 0 0 0 0 0 35.346 28.654 64 64 64s64-28.654 64-64c0 0 0 0 0 0 0-35.346-28.654-64-64-64s-64 28.654-64 64zM899.464 719.528c0-64.024-51.906-115.934-115.936-115.934-64.024 0-115.936 51.91-115.936 115.934 0 64.032 51.912 115.934 115.936 115.934 64.030 0 115.936-51.902 115.936-115.934z" />
+<glyph unicode="&#xeb01;" glyph-name="spinner7" d="M416 32c0 53.019 42.981 96 96 96s96-42.981 96-96c0-53.019-42.981-96-96-96s-96 42.981-96 96zM0 448c0 53.019 42.981 96 96 96s96-42.981 96-96c0-53.019-42.981-96-96-96s-96 42.981-96 96zM832 448c0 53.019 42.981 96 96 96s96-42.981 96-96c0-53.019-42.981-96-96-96s-96 42.981-96 96zM121.844 742.156c0 53.019 42.981 96 96 96s96-42.981 96-96c0-53.019-42.981-96-96-96s-96 42.981-96 96zM710.156 153.844c0 53.019 42.981 96 96 96s96-42.981 96-96c0-53.019-42.981-96-96-96s-96 42.981-96 96zM121.844 153.844c0 53.019 42.981 96 96 96s96-42.981 96-96c0-53.019-42.981-96-96-96s-96 42.981-96 96zM710.156 742.156c0 53.019 42.981 96 96 96s96-42.981 96-96c0-53.019-42.981-96-96-96s-96 42.981-96 96z" />
+<glyph unicode="&#xeb02;" glyph-name="spinner8" d="M512-64c-136.76 0-265.334 53.258-362.040 149.96-96.702 96.706-149.96 225.28-149.96 362.040 0 96.838 27.182 191.134 78.606 272.692 50 79.296 120.664 143.372 204.356 185.3l43-85.832c-68.038-34.084-125.492-86.186-166.15-150.67-41.746-66.208-63.812-142.798-63.812-221.49 0-229.382 186.618-416 416-416s416 186.618 416 416c0 78.692-22.066 155.282-63.81 221.49-40.66 64.484-98.114 116.584-166.15 150.67l43 85.832c83.692-41.928 154.358-106.004 204.356-185.3 51.422-81.558 78.604-175.854 78.604-272.692 0-136.76-53.258-265.334-149.96-362.040-96.706-96.702-225.28-149.96-362.040-149.96z" />
+<glyph unicode="&#xeb03;" glyph-name="spinner9" d="M512 960c-278.748 0-505.458-222.762-511.848-499.974 5.92 241.864 189.832 435.974 415.848 435.974 229.75 0 416-200.576 416-448 0-53.020 42.98-96 96-96s96 42.98 96 96c0 282.77-229.23 512-512 512zM512-64c278.748 0 505.458 222.762 511.848 499.974-5.92-241.864-189.832-435.974-415.848-435.974-229.75 0-416 200.576-416 448 0 53.020-42.98 96-96 96s-96-42.98-96-96c0-282.77 229.23-512 512-512z" />
+<glyph unicode="&#xeb04;" glyph-name="spinner10" d="M0.042 446.382l-0.022-0.004c0 0 0.012-0.090 0.028-0.222 0.11-3.878 0.55-7.676 1.322-11.352 0.204-1.746 0.428-3.66 0.674-5.774 0.222-1.886 0.46-3.914 0.718-6.078 0.374-2.566 0.77-5.292 1.19-8.176 0.856-5.746 1.8-12.124 2.908-18.958 1.348-6.446 2.804-13.414 4.364-20.864 0.71-3.718 1.776-7.504 2.786-11.406 1.024-3.89 2.078-7.894 3.16-12.004 0.566-2.042 1.040-4.132 1.708-6.208 0.656-2.074 1.32-4.176 1.988-6.3 1.348-4.234 2.726-8.566 4.136-12.988 0.352-1.106 0.708-2.21 1.064-3.324 0.408-1.102 0.814-2.208 1.226-3.316 0.826-2.218 1.658-4.458 2.502-6.714 1.696-4.496 3.422-9.078 5.18-13.742 1.968-4.566 3.97-9.214 6.004-13.934 1.018-2.348 2.044-4.714 3.078-7.098 1.048-2.376 2.27-4.704 3.408-7.074 2.322-4.714 4.678-9.496 7.062-14.332 2.47-4.786 5.208-9.512 7.846-14.328 1.336-2.398 2.68-4.808 4.028-7.23 1.368-2.41 2.902-4.75 4.356-7.14 2.95-4.738 5.93-9.524 8.934-14.348 12.64-18.894 26.676-37.566 42.21-55.278 15.712-17.578 32.726-34.25 50.692-49.602 18.18-15.136 37.264-28.902 56.726-41.114 19.604-12.036 39.644-22.312 59.376-31.144 5.004-2.040 9.964-4.062 14.878-6.066 2.462-0.972 4.868-2.032 7.336-2.918 2.47-0.868 4.93-1.734 7.376-2.594 4.898-1.684 9.678-3.468 14.484-4.992 4.832-1.43 9.604-2.844 14.312-4.242 2.356-0.672 4.66-1.426 7.004-2.012 2.346-0.574 4.676-1.14 6.986-1.704 4.606-1.118 9.142-2.214 13.604-3.296 4.5-0.868 8.926-1.722 13.27-2.558 2.166-0.41 4.31-0.82 6.434-1.222 1.062-0.2 2.118-0.398 3.166-0.598 1.060-0.148 2.118-0.292 3.166-0.442 4.192-0.582 8.292-1.152 12.3-1.71 1.998-0.274 3.972-0.546 5.922-0.816 1.946-0.286 3.904-0.378 5.814-0.57 3.822-0.336 7.544-0.664 11.164-0.98 3.616-0.304 7.104-0.688 10.526-0.738 0.23-0.008 0.452-0.016 0.682-0.026 0.614-34.812 29.008-62.846 63.968-62.846 0.542 0 1.080 0.028 1.62 0.042v-0.022c0 0 0.090 0.012 0.224 0.028 3.878 0.11 7.674 0.55 11.35 1.322 1.748 0.204 3.662 0.426 5.776 0.672 1.884 0.222 3.912 0.462 6.076 0.718 2.566 0.376 5.292 0.772 8.176 1.192 5.746 0.856 12.124 1.8 18.958 2.908 6.446 1.348 13.414 2.804 20.864 4.362 3.718 0.712 7.504 1.778 11.406 2.786 3.892 1.026 7.894 2.080 12.004 3.162 2.044 0.566 4.132 1.040 6.208 1.708 2.074 0.656 4.174 1.318 6.3 1.988 4.232 1.348 8.564 2.726 12.988 4.134 1.104 0.354 2.21 0.708 3.324 1.066 1.1 0.406 2.206 0.814 3.316 1.226 2.216 0.824 4.456 1.658 6.714 2.5 4.496 1.698 9.078 3.424 13.74 5.182 4.568 1.968 9.216 3.97 13.936 6.004 2.348 1.018 4.714 2.044 7.098 3.078 2.376 1.048 4.702 2.27 7.074 3.408 4.714 2.322 9.494 4.678 14.33 7.062 4.786 2.47 9.512 5.208 14.328 7.846 2.398 1.336 4.808 2.678 7.23 4.028 2.41 1.366 4.75 2.9 7.14 4.354 4.738 2.952 9.524 5.93 14.35 8.936 18.89 12.64 37.564 26.674 55.278 42.21 17.574 15.712 34.248 32.726 49.602 50.69 15.136 18.182 28.902 37.264 41.112 56.728 12.036 19.602 22.314 39.644 31.142 59.376 2.042 5.002 4.062 9.964 6.068 14.878 0.974 2.462 2.032 4.868 2.918 7.334 0.87 2.472 1.732 4.932 2.592 7.376 1.686 4.898 3.468 9.678 4.994 14.484 1.432 4.832 2.846 9.604 4.24 14.31 0.674 2.358 1.43 4.66 2.016 7.004 0.57 2.348 1.138 4.676 1.702 6.988 1.118 4.606 2.216 9.14 3.296 13.602 0.868 4.502 1.72 8.928 2.558 13.272 0.41 2.164 0.818 4.308 1.222 6.434 0.2 1.060 0.398 2.116 0.596 3.164 0.148 1.062 0.296 2.118 0.444 3.168 0.582 4.19 1.152 8.292 1.708 12.3 0.278 1.996 0.55 3.97 0.82 5.922 0.284 1.946 0.376 3.902 0.568 5.812 0.336 3.822 0.664 7.546 0.98 11.164 0.304 3.616 0.686 7.106 0.738 10.528 0.020 0.534 0.040 1.044 0.058 1.574 35.224 0.146 63.732 28.738 63.732 63.992 0 0.542-0.028 1.080-0.042 1.62h0.022c0 0-0.012 0.090-0.028 0.224-0.11 3.878-0.55 7.674-1.322 11.35-0.204 1.748-0.428 3.662-0.674 5.776-0.222 1.886-0.46 3.914-0.718 6.076-0.374 2.566-0.77 5.294-1.19 8.176-0.856 5.746-1.8 12.124-2.908 18.958-1.348 6.444-2.804 13.414-4.364 20.862-0.71 3.72-1.776 7.506-2.786 11.408-1.024 3.892-2.078 7.894-3.16 12.002-0.566 2.044-1.040 4.134-1.708 6.208-0.656 2.076-1.32 4.174-1.988 6.3-1.348 4.234-2.726 8.566-4.136 12.99-0.352 1.102-0.708 2.21-1.064 3.324-0.408 1.1-0.814 2.206-1.226 3.316-0.826 2.216-1.658 4.454-2.502 6.714-1.696 4.498-3.422 9.080-5.18 13.74-1.968 4.57-3.97 9.216-6.004 13.936-1.020 2.348-2.044 4.714-3.078 7.098-1.048 2.376-2.27 4.702-3.408 7.076-2.322 4.714-4.678 9.494-7.062 14.33-2.47 4.786-5.208 9.512-7.846 14.328-1.336 2.398-2.68 4.808-4.028 7.23-1.368 2.41-2.902 4.75-4.356 7.14-2.95 4.74-5.93 9.524-8.934 14.35-12.64 18.892-26.676 37.564-42.21 55.278-15.712 17.576-32.726 34.25-50.692 49.602-18.18 15.136-37.264 28.902-56.726 41.112-19.604 12.036-39.644 22.314-59.376 31.142-5.004 2.040-9.964 4.062-14.878 6.068-2.462 0.974-4.868 2.032-7.336 2.918-2.47 0.87-4.93 1.734-7.376 2.592-4.898 1.684-9.678 3.468-14.484 4.994-4.832 1.432-9.604 2.846-14.312 4.242-2.356 0.672-4.66 1.428-7.004 2.014-2.346 0.572-4.676 1.138-6.986 1.702-4.606 1.118-9.142 2.216-13.604 3.298-4.5 0.868-8.926 1.72-13.27 2.558-2.166 0.412-4.31 0.82-6.434 1.222-1.062 0.2-2.118 0.398-3.166 0.596-1.060 0.148-2.118 0.296-3.166 0.442-4.192 0.584-8.292 1.154-12.3 1.71-1.998 0.276-3.972 0.55-5.922 0.82-1.946 0.284-3.904 0.376-5.814 0.57-3.822 0.336-7.544 0.664-11.164 0.98-3.616 0.304-7.104 0.686-10.526 0.738-0.852 0.032-1.674 0.062-2.512 0.092-0.65 34.78-29.028 62.778-63.966 62.778-0.542 0-1.080-0.028-1.62-0.042l-0.002 0.022c0 0-0.090-0.012-0.222-0.028-3.878-0.11-7.676-0.55-11.352-1.322-1.748-0.204-3.662-0.426-5.776-0.672-1.884-0.222-3.912-0.462-6.076-0.718-2.566-0.376-5.292-0.772-8.176-1.192-5.746-0.856-12.124-1.8-18.958-2.908-6.446-1.348-13.414-2.804-20.864-4.362-3.718-0.712-7.504-1.778-11.406-2.786-3.892-1.026-7.894-2.080-12.004-3.162-2.044-0.566-4.132-1.040-6.208-1.708-2.074-0.656-4.174-1.318-6.3-1.988-4.232-1.348-8.564-2.726-12.988-4.134-1.104-0.354-2.21-0.708-3.324-1.066-1.1-0.406-2.206-0.814-3.316-1.226-2.216-0.824-4.456-1.658-6.714-2.5-4.496-1.698-9.078-3.424-13.74-5.182-4.568-1.968-9.216-3.97-13.936-6.004-2.348-1.018-4.714-2.044-7.098-3.078-2.376-1.048-4.702-2.27-7.074-3.408-4.714-2.322-9.494-4.678-14.33-7.062-4.786-2.47-9.512-5.208-14.328-7.846-2.398-1.336-4.808-2.678-7.23-4.028-2.41-1.366-4.75-2.9-7.14-4.354-4.738-2.952-9.524-5.93-14.35-8.936-18.89-12.64-37.564-26.674-55.278-42.21-17.574-15.712-34.248-32.726-49.602-50.69-15.136-18.182-28.902-37.264-41.112-56.728-12.036-19.602-22.314-39.644-31.142-59.376-2.042-5.002-4.062-9.964-6.068-14.878-0.974-2.462-2.032-4.868-2.918-7.334-0.87-2.472-1.732-4.932-2.592-7.376-1.686-4.898-3.468-9.678-4.994-14.484-1.432-4.832-2.846-9.604-4.24-14.31-0.674-2.358-1.43-4.66-2.016-7.004-0.57-2.348-1.138-4.676-1.702-6.988-1.118-4.606-2.216-9.14-3.296-13.602-0.868-4.502-1.72-8.928-2.558-13.272-0.41-2.164-0.818-4.308-1.222-6.434-0.2-1.060-0.398-2.116-0.596-3.164-0.148-1.062-0.296-2.118-0.444-3.168-0.582-4.19-1.152-8.292-1.708-12.3-0.278-1.996-0.55-3.97-0.82-5.922-0.284-1.946-0.376-3.902-0.568-5.812-0.336-3.822-0.664-7.546-0.98-11.164-0.304-3.616-0.686-7.106-0.738-10.528-0.020-0.548-0.040-1.076-0.058-1.62-34.376-1.112-61.902-29.304-61.902-63.946 0-0.542 0.028-1.078 0.042-1.618zM73.518 511.294c0.042 0.196 0.086 0.384 0.128 0.58 0.644 3.248 1.632 6.542 2.556 9.942 0.934 3.388 1.894 6.876 2.88 10.454 0.516 1.78 0.934 3.602 1.546 5.406 0.596 1.802 1.202 3.628 1.81 5.476 1.218 3.682 2.464 7.45 3.736 11.294 0.316 0.958 0.634 1.924 0.956 2.892 0.37 0.954 0.74 1.914 1.114 2.876 0.746 1.924 1.5 3.868 2.26 5.83 1.52 3.904 3.070 7.882 4.646 11.93 1.768 3.96 3.566 7.99 5.392 12.080 0.908 2.038 1.824 4.090 2.746 6.156 0.932 2.060 2.036 4.072 3.052 6.126 2.070 4.084 4.17 8.222 6.294 12.412 2.202 4.142 4.654 8.224 6.998 12.392 1.184 2.074 2.374 4.16 3.57 6.256 1.21 2.086 2.586 4.102 3.876 6.166 2.616 4.098 5.256 8.232 7.918 12.402 11.234 16.298 23.632 32.398 37.33 47.638 13.874 15.104 28.842 29.404 44.598 42.548 15.974 12.928 32.686 24.65 49.676 35.022 17.13 10.194 34.6 18.838 51.734 26.258 4.35 1.7 8.662 3.382 12.934 5.050 2.136 0.812 4.216 1.71 6.36 2.444 2.146 0.714 4.28 1.428 6.404 2.136 4.25 1.386 8.382 2.888 12.548 4.142 4.184 1.174 8.314 2.332 12.392 3.474 2.038 0.55 4.026 1.19 6.054 1.662 2.030 0.458 4.044 0.914 6.044 1.368 3.978 0.91 7.896 1.806 11.748 2.688 3.888 0.686 7.71 1.36 11.462 2.022 1.868 0.33 3.716 0.658 5.546 0.98 0.914 0.162 1.824 0.324 2.728 0.484 0.916 0.112 1.828 0.222 2.734 0.332 3.612 0.448 7.148 0.882 10.604 1.31 1.72 0.216 3.422 0.432 5.102 0.644 1.674 0.226 3.364 0.266 5.010 0.408 3.292 0.238 6.498 0.472 9.616 0.7 3.11 0.218 6.11 0.524 9.058 0.508 5.848 0.132 11.32 0.256 16.38 0.372 4.664-0.168 8.948-0.324 12.818-0.462 1.914-0.054 3.726-0.108 5.432-0.156 2.122-0.134 4.108-0.26 5.958-0.378 2.13-0.138 4.060-0.266 5.82-0.38 3.256-0.51 6.592-0.782 9.99-0.782 0.466 0 0.93 0.026 1.396 0.036 0.132-0.008 0.224-0.014 0.224-0.014v0.020c31.14 0.778 56.75 23.784 61.556 53.754 0.542-0.12 1.064-0.236 1.612-0.356 3.246-0.644 6.542-1.632 9.942-2.556 3.386-0.934 6.876-1.894 10.454-2.88 1.778-0.516 3.602-0.934 5.404-1.546 1.802-0.596 3.63-1.202 5.478-1.812 3.68-1.218 7.448-2.464 11.292-3.736 0.96-0.316 1.924-0.634 2.892-0.956 0.956-0.37 1.914-0.74 2.876-1.112 1.926-0.746 3.868-1.5 5.83-2.26 3.904-1.52 7.884-3.070 11.932-4.646 3.96-1.768 7.988-3.566 12.080-5.392 2.038-0.908 4.088-1.824 6.156-2.746 2.060-0.932 4.072-2.036 6.126-3.054 4.082-2.070 8.222-4.17 12.41-6.294 4.144-2.202 8.226-4.654 12.394-6.998 2.074-1.184 4.16-2.374 6.256-3.572 2.086-1.21 4.102-2.586 6.166-3.876 4.098-2.616 8.23-5.256 12.402-7.918 16.296-11.234 32.398-23.632 47.636-37.33 15.104-13.874 29.406-28.842 42.55-44.598 12.928-15.974 24.648-32.686 35.020-49.676 10.196-17.13 18.84-34.6 26.26-51.736 1.698-4.348 3.382-8.662 5.050-12.932 0.812-2.136 1.71-4.216 2.444-6.36 0.714-2.146 1.428-4.28 2.136-6.404 1.386-4.25 2.888-8.384 4.142-12.548 1.174-4.184 2.33-8.316 3.474-12.392 0.55-2.038 1.19-4.026 1.66-6.054 0.46-2.030 0.916-4.046 1.368-6.046 0.91-3.978 1.808-7.896 2.688-11.748 0.688-3.888 1.362-7.71 2.024-11.462 0.33-1.868 0.656-3.716 0.98-5.548 0.162-0.914 0.324-1.824 0.484-2.728 0.11-0.916 0.222-1.828 0.332-2.734 0.446-3.612 0.882-7.148 1.31-10.604 0.216-1.72 0.432-3.42 0.642-5.1 0.226-1.674 0.268-3.364 0.41-5.010 0.238-3.292 0.472-6.498 0.7-9.616 0.218-3.11 0.524-6.11 0.508-9.058 0.132-5.848 0.256-11.32 0.372-16.38-0.168-4.664-0.324-8.948-0.462-12.818-0.054-1.914-0.108-3.726-0.156-5.432-0.134-2.122-0.26-4.108-0.378-5.958-0.138-2.13-0.266-4.060-0.38-5.82-0.498-3.256-0.768-6.592-0.768-9.99 0-0.468 0.026-0.93 0.036-1.396-0.008-0.132-0.016-0.224-0.016-0.224h0.022c0.768-30.766 23.236-56.128 52.682-61.37-0.066-0.296-0.13-0.584-0.198-0.884-0.644-3.248-1.632-6.542-2.556-9.942-0.934-3.388-1.894-6.876-2.88-10.454-0.516-1.78-0.934-3.602-1.546-5.406-0.596-1.802-1.202-3.628-1.81-5.476-1.218-3.682-2.464-7.45-3.736-11.294-0.316-0.958-0.634-1.924-0.956-2.892-0.37-0.954-0.74-1.914-1.114-2.876-0.746-1.924-1.5-3.868-2.26-5.83-1.52-3.904-3.070-7.882-4.646-11.93-1.768-3.96-3.566-7.99-5.392-12.080-0.908-2.038-1.824-4.090-2.746-6.156-0.932-2.060-2.036-4.072-3.052-6.126-2.070-4.084-4.17-8.222-6.294-12.412-2.202-4.142-4.654-8.224-6.998-12.392-1.184-2.074-2.374-4.16-3.57-6.256-1.21-2.086-2.586-4.102-3.876-6.166-2.616-4.098-5.256-8.232-7.918-12.402-11.234-16.298-23.632-32.398-37.33-47.638-13.874-15.104-28.842-29.404-44.598-42.548-15.974-12.928-32.686-24.65-49.676-35.022-17.13-10.194-34.6-18.838-51.734-26.258-4.35-1.7-8.662-3.382-12.934-5.050-2.136-0.812-4.216-1.71-6.36-2.444-2.146-0.714-4.28-1.428-6.404-2.136-4.25-1.386-8.382-2.888-12.548-4.142-4.184-1.174-8.314-2.332-12.392-3.474-2.038-0.55-4.026-1.19-6.054-1.662-2.030-0.458-4.044-0.914-6.044-1.368-3.978-0.91-7.896-1.806-11.748-2.688-3.888-0.686-7.71-1.36-11.462-2.022-1.868-0.33-3.716-0.658-5.546-0.98-0.914-0.162-1.824-0.324-2.728-0.484-0.916-0.112-1.828-0.222-2.734-0.332-3.612-0.448-7.148-0.882-10.604-1.31-1.72-0.216-3.422-0.432-5.102-0.644-1.674-0.226-3.364-0.266-5.010-0.408-3.292-0.238-6.498-0.472-9.616-0.7-3.11-0.218-6.11-0.524-9.058-0.508-5.848-0.132-11.32-0.256-16.38-0.372-4.664 0.168-8.948 0.324-12.818 0.462-1.914 0.054-3.726 0.108-5.432 0.156-2.122 0.134-4.108 0.26-5.958 0.378-2.13 0.138-4.060 0.266-5.82 0.38-3.256 0.51-6.592 0.782-9.99 0.782-0.466 0-0.93-0.026-1.396-0.036-0.132 0.008-0.224 0.014-0.224 0.014v-0.020c-31.004-0.774-56.524-23.586-61.488-53.364-3.2 0.64-6.446 1.61-9.792 2.522-3.386 0.934-6.876 1.894-10.454 2.878-1.778 0.516-3.602 0.938-5.404 1.546-1.802 0.598-3.63 1.204-5.478 1.812-3.68 1.218-7.448 2.464-11.292 3.738-0.96 0.316-1.924 0.632-2.892 0.954-0.956 0.372-1.914 0.742-2.876 1.114-1.926 0.746-3.868 1.5-5.83 2.258-3.904 1.524-7.884 3.070-11.932 4.648-3.96 1.77-7.988 3.566-12.080 5.39-2.038 0.91-4.088 1.824-6.156 2.746-2.060 0.934-4.072 2.036-6.126 3.054-4.082 2.070-8.222 4.172-12.41 6.296-4.144 2.2-8.226 4.652-12.394 6.996-2.074 1.184-4.16 2.376-6.256 3.57-2.086 1.21-4.102 2.586-6.166 3.878-4.098 2.614-8.23 5.254-12.402 7.918-16.296 11.23-32.398 23.632-47.636 37.328-15.104 13.876-29.406 28.84-42.55 44.598-12.928 15.972-24.648 32.684-35.020 49.676-10.196 17.128-18.84 34.602-26.26 51.734-1.698 4.352-3.382 8.664-5.050 12.934-0.812 2.136-1.71 4.218-2.444 6.36-0.714 2.148-1.428 4.282-2.136 6.406-1.386 4.25-2.888 8.382-4.142 12.546-1.174 4.184-2.33 8.316-3.474 12.394-0.55 2.036-1.19 4.024-1.66 6.054-0.46 2.028-0.916 4.042-1.368 6.042-0.91 3.98-1.808 7.898-2.688 11.75-0.688 3.886-1.362 7.71-2.024 11.46-0.33 1.868-0.656 3.718-0.98 5.546-0.162 0.914-0.324 1.824-0.484 2.73-0.11 0.914-0.222 1.828-0.332 2.734-0.446 3.61-0.882 7.148-1.31 10.602-0.216 1.722-0.432 3.422-0.642 5.102-0.226 1.676-0.268 3.364-0.41 5.012-0.238 3.29-0.472 6.496-0.7 9.614-0.218 3.11-0.524 6.11-0.508 9.058-0.132 5.848-0.256 11.32-0.372 16.382 0.168 4.664 0.324 8.946 0.462 12.816 0.054 1.914 0.108 3.726 0.156 5.434 0.134 2.122 0.26 4.106 0.378 5.958 0.138 2.128 0.266 4.058 0.38 5.82 0.496 3.26 0.766 6.596 0.766 9.994 0 0.466-0.026 0.93-0.036 1.396 0.008 0.132 0.016 0.224 0.016 0.224h-0.022c-0.78 31.38-24.134 57.154-54.44 61.674z" />
+<glyph unicode="&#xeb05;" glyph-name="spinner11" d="M1024 576h-384l143.53 143.53c-72.53 72.526-168.96 112.47-271.53 112.47s-199-39.944-271.53-112.47c-72.526-72.53-112.47-168.96-112.47-271.53s39.944-199 112.47-271.53c72.53-72.526 168.96-112.47 271.53-112.47s199 39.944 271.528 112.472c6.056 6.054 11.86 12.292 17.456 18.668l96.32-84.282c-93.846-107.166-231.664-174.858-385.304-174.858-282.77 0-512 229.23-512 512s229.23 512 512 512c141.386 0 269.368-57.326 362.016-149.984l149.984 149.984v-384z" />
+<glyph unicode="&#xeb06;" glyph-name="binoculars" d="M64 960h384v-64h-384zM576 960h384v-64h-384zM952 640h-56v256h-256v-256h-256v256h-256v-256h-56c-39.6 0-72-32.4-72-72v-560c0-39.6 32.4-72 72-72h304c39.6 0 72 32.4 72 72v376h128v-376c0-39.6 32.4-72 72-72h304c39.6 0 72 32.4 72 72v560c0 39.6-32.4 72-72 72zM348 0h-248c-19.8 0-36 14.4-36 32s16.2 32 36 32h248c19.8 0 36-14.4 36-32s-16.2-32-36-32zM544 448h-64c-17.6 0-32 14.4-32 32s14.4 32 32 32h64c17.6 0 32-14.4 32-32s-14.4-32-32-32zM924 0h-248c-19.8 0-36 14.4-36 32s16.2 32 36 32h248c19.8 0 36-14.4 36-32s-16.2-32-36-32z" />
+<glyph unicode="&#xeb07;" glyph-name="search" d="M992.262 88.604l-242.552 206.294c-25.074 22.566-51.89 32.926-73.552 31.926 57.256 67.068 91.842 154.078 91.842 249.176 0 212.078-171.922 384-384 384-212.076 0-384-171.922-384-384s171.922-384 384-384c95.098 0 182.108 34.586 249.176 91.844-1-21.662 9.36-48.478 31.926-73.552l206.294-242.552c35.322-39.246 93.022-42.554 128.22-7.356s31.892 92.898-7.354 128.22zM384 320c-141.384 0-256 114.616-256 256s114.616 256 256 256 256-114.616 256-256-114.614-256-256-256z" />
+<glyph unicode="&#xeb08;" glyph-name="zoom-in" d="M992.262 88.604l-242.552 206.294c-25.074 22.566-51.89 32.926-73.552 31.926 57.256 67.068 91.842 154.078 91.842 249.176 0 212.078-171.922 384-384 384-212.076 0-384-171.922-384-384s171.922-384 384-384c95.098 0 182.108 34.586 249.176 91.844-1-21.662 9.36-48.478 31.926-73.552l206.294-242.552c35.322-39.246 93.022-42.554 128.22-7.356s31.892 92.898-7.354 128.22zM384 320c-141.384 0-256 114.616-256 256s114.616 256 256 256 256-114.616 256-256-114.614-256-256-256zM448 768h-128v-128h-128v-128h128v-128h128v128h128v128h-128z" />
+<glyph unicode="&#xeb09;" glyph-name="zoom-out" d="M992.262 88.604l-242.552 206.294c-25.074 22.566-51.89 32.926-73.552 31.926 57.256 67.068 91.842 154.078 91.842 249.176 0 212.078-171.922 384-384 384-212.076 0-384-171.922-384-384s171.922-384 384-384c95.098 0 182.108 34.586 249.176 91.844-1-21.662 9.36-48.478 31.926-73.552l206.294-242.552c35.322-39.246 93.022-42.554 128.22-7.356s31.892 92.898-7.354 128.22zM384 320c-141.384 0-256 114.616-256 256s114.616 256 256 256 256-114.616 256-256-114.614-256-256-256zM192 640h384v-128h-384z" />
+<glyph unicode="&#xeb0a;" glyph-name="enlarge" d="M1024 960h-416l160-160-192-192 96-96 192 192 160-160zM1024-64v416l-160-160-192 192-96-96 192-192-160-160zM0-64h416l-160 160 192 192-96 96-192-192-160 160zM0 960v-416l160 160 192-192 96 96-192 192 160 160z" />
+<glyph unicode="&#xeb0b;" glyph-name="shrink" d="M576 512h416l-160 160 192 192-96 96-192-192-160 160zM576 384v-416l160 160 192-192 96 96-192 192 160 160zM448 384.004h-416l160-160-192-192 96-96 192 192 160-160zM448 512v416l-160-160-192 192-96-96 192-192-160-160z" />
+<glyph unicode="&#xeb0c;" glyph-name="enlarge2" d="M1024 960v-416l-160 160-192-192-96 96 192 192-160 160zM448 288l-192-192 160-160h-416v416l160-160 192 192z" />
+<glyph unicode="&#xeb0d;" glyph-name="shrink2" d="M448 384v-416l-160 160-192-192-96 96 192 192-160 160zM1024 864l-192-192 160-160h-416v416l160-160 192 192z" />
+<glyph unicode="&#xeb0e;" glyph-name="key" d="M704 960c-176.73 0-320-143.268-320-320 0-20.026 1.858-39.616 5.376-58.624l-389.376-389.376v-192c0-35.346 28.654-64 64-64h64v64h128v128h128v128h128l83.042 83.042c34.010-12.316 70.696-19.042 108.958-19.042 176.73 0 320 143.268 320 320s-143.27 320-320 320zM799.874 639.874c-53.020 0-96 42.98-96 96s42.98 96 96 96 96-42.98 96-96-42.98-96-96-96z" />
+<glyph unicode="&#xeb0f;" glyph-name="key2" d="M1002.132 645.758l-101.106 101.104c-24.792 24.794-65.37 65.368-90.162 90.164l-101.106 101.104c-24.792 24.794-68.954 29.166-98.13 9.716l-276.438-184.292c-29.176-19.452-40.218-61.028-24.536-92.39l70.486-140.974c2.154-4.306 4.646-8.896 7.39-13.66l-356.53-356.53-32-224h192v64h128v128h128v128h128v71.186c6.396-3.812 12.534-7.216 18.192-10.044l140.97-70.488c31.366-15.682 72.94-4.638 92.39 24.538l184.294 276.44c19.454 29.172 15.078 73.33-9.714 98.126zM150.628 105.374l-45.254 45.254 311.572 311.57 45.254-45.254-311.572-311.57zM917.020 536.236l-45.256-45.256c-12.446-12.444-32.808-12.444-45.254 0l-271.53 271.53c-12.446 12.444-12.446 32.81 0 45.254l45.256 45.256c12.446 12.444 32.808 12.444 45.254 0l271.53-271.53c12.446-12.444 12.446-32.81 0-45.254z" />
+<glyph unicode="&#xeb10;" glyph-name="lock" d="M592 512h-16v192c0 105.87-86.13 192-192 192h-128c-105.87 0-192-86.13-192-192v-192h-16c-26.4 0-48-21.6-48-48v-480c0-26.4 21.6-48 48-48h544c26.4 0 48 21.6 48 48v480c0 26.4-21.6 48-48 48zM192 704c0 35.29 28.71 64 64 64h128c35.29 0 64-28.71 64-64v-192h-256v192z" />
+<glyph unicode="&#xeb11;" glyph-name="unlocked" d="M768 896c105.87 0 192-86.13 192-192v-192h-128v192c0 35.29-28.71 64-64 64h-128c-35.29 0-64-28.71-64-64v-192h16c26.4 0 48-21.6 48-48v-480c0-26.4-21.6-48-48-48h-544c-26.4 0-48 21.6-48 48v480c0 26.4 21.6 48 48 48h400v192c0 105.87 86.13 192 192 192h128z" />
+<glyph unicode="&#xeb12;" glyph-name="wrench" d="M1002.934 142.124l-460.552 394.76c21.448 40.298 33.618 86.282 33.618 135.116 0 159.058-128.942 288-288 288-29.094 0-57.172-4.332-83.646-12.354l166.39-166.39c24.89-24.89 24.89-65.62 0-90.51l-101.49-101.49c-24.89-24.89-65.62-24.89-90.51 0l-166.39 166.39c-8.022-26.474-12.354-54.552-12.354-83.646 0-159.058 128.942-288 288-288 48.834 0 94.818 12.17 135.116 33.62l394.76-460.552c22.908-26.724 62.016-28.226 86.904-3.338l101.492 101.492c24.888 24.888 23.386 63.994-3.338 86.902z" />
+<glyph unicode="&#xeb13;" glyph-name="equalizer" d="M448 832v16c0 26.4-21.6 48-48 48h-160c-26.4 0-48-21.6-48-48v-16h-192v-128h192v-16c0-26.4 21.6-48 48-48h160c26.4 0 48 21.6 48 48v16h576v128h-576zM256 704v128h128v-128h-128zM832 528c0 26.4-21.6 48-48 48h-160c-26.4 0-48-21.6-48-48v-16h-576v-128h576v-16c0-26.4 21.6-48 48-48h160c26.4 0 48 21.6 48 48v16h192v128h-192v16zM640 384v128h128v-128h-128zM448 208c0 26.4-21.6 48-48 48h-160c-26.4 0-48-21.6-48-48v-16h-192v-128h192v-16c0-26.4 21.6-48 48-48h160c26.4 0 48 21.6 48 48v16h576v128h-576v16zM256 64v128h128v-128h-128z" />
+<glyph unicode="&#xeb14;" glyph-name="equalizer2" d="M896 512h16c26.4 0 48 21.6 48 48v160c0 26.4-21.6 48-48 48h-16v192h-128v-192h-16c-26.4 0-48-21.6-48-48v-160c0-26.4 21.6-48 48-48h16v-576h128v576zM768 704h128v-128h-128v128zM592 128c26.4 0 48 21.6 48 48v160c0 26.4-21.6 48-48 48h-16v576h-128v-576h-16c-26.4 0-48-21.6-48-48v-160c0-26.4 21.6-48 48-48h16v-192h128v192h16zM448 320h128v-128h-128v128zM272 512c26.4 0 48 21.6 48 48v160c0 26.4-21.6 48-48 48h-16v192h-128v-192h-16c-26.4 0-48-21.6-48-48v-160c0-26.4 21.6-48 48-48h16v-576h128v576h16zM128 704h128v-128h-128v128z" />
+<glyph unicode="&#xeb15;" glyph-name="cog" d="M933.79 349.75c-53.726 93.054-21.416 212.304 72.152 266.488l-100.626 174.292c-28.75-16.854-62.176-26.518-97.846-26.518-107.536 0-194.708 87.746-194.708 195.99h-201.258c0.266-33.41-8.074-67.282-25.958-98.252-53.724-93.056-173.156-124.702-266.862-70.758l-100.624-174.292c28.97-16.472 54.050-40.588 71.886-71.478 53.638-92.908 21.512-211.92-71.708-266.224l100.626-174.292c28.65 16.696 61.916 26.254 97.4 26.254 107.196 0 194.144-87.192 194.7-194.958h201.254c-0.086 33.074 8.272 66.57 25.966 97.218 53.636 92.906 172.776 124.594 266.414 71.012l100.626 174.29c-28.78 16.466-53.692 40.498-71.434 71.228zM512 240.668c-114.508 0-207.336 92.824-207.336 207.334 0 114.508 92.826 207.334 207.336 207.334 114.508 0 207.332-92.826 207.332-207.334-0.002-114.51-92.824-207.334-207.332-207.334z" />
+<glyph unicode="&#xeb16;" glyph-name="cogs" d="M363.722 237.948l41.298 57.816-45.254 45.256-57.818-41.296c-10.722 5.994-22.204 10.774-34.266 14.192l-11.682 70.084h-64l-11.68-70.086c-12.062-3.418-23.544-8.198-34.266-14.192l-57.818 41.298-45.256-45.256 41.298-57.816c-5.994-10.72-10.774-22.206-14.192-34.266l-70.086-11.682v-64l70.086-11.682c3.418-12.060 8.198-23.544 14.192-34.266l-41.298-57.816 45.254-45.256 57.818 41.296c10.722-5.994 22.204-10.774 34.266-14.192l11.682-70.084h64l11.68 70.086c12.062 3.418 23.544 8.198 34.266 14.192l57.818-41.296 45.254 45.256-41.298 57.816c5.994 10.72 10.774 22.206 14.192 34.266l70.088 11.68v64l-70.086 11.682c-3.418 12.060-8.198 23.544-14.192 34.266zM224 96c-35.348 0-64 28.654-64 64s28.652 64 64 64 64-28.654 64-64-28.652-64-64-64zM1024 576v64l-67.382 12.25c-1.242 8.046-2.832 15.978-4.724 23.79l57.558 37.1-24.492 59.128-66.944-14.468c-4.214 6.91-8.726 13.62-13.492 20.13l39.006 56.342-45.256 45.254-56.342-39.006c-6.512 4.766-13.22 9.276-20.13 13.494l14.468 66.944-59.128 24.494-37.1-57.558c-7.812 1.892-15.744 3.482-23.79 4.724l-12.252 67.382h-64l-12.252-67.382c-8.046-1.242-15.976-2.832-23.79-4.724l-37.098 57.558-59.128-24.492 14.468-66.944c-6.91-4.216-13.62-8.728-20.13-13.494l-56.342 39.006-45.254-45.254 39.006-56.342c-4.766-6.51-9.278-13.22-13.494-20.13l-66.944 14.468-24.492-59.128 57.558-37.1c-1.892-7.812-3.482-15.742-4.724-23.79l-67.384-12.252v-64l67.382-12.25c1.242-8.046 2.832-15.978 4.724-23.79l-57.558-37.1 24.492-59.128 66.944 14.468c4.216-6.91 8.728-13.618 13.494-20.13l-39.006-56.342 45.254-45.256 56.342 39.006c6.51-4.766 13.22-9.276 20.13-13.492l-14.468-66.944 59.128-24.492 37.102 57.558c7.81-1.892 15.742-3.482 23.788-4.724l12.252-67.384h64l12.252 67.382c8.044 1.242 15.976 2.832 23.79 4.724l37.1-57.558 59.128 24.492-14.468 66.944c6.91 4.216 13.62 8.726 20.13 13.492l56.342-39.006 45.256 45.256-39.006 56.342c4.766 6.512 9.276 13.22 13.492 20.13l66.944-14.468 24.492 59.13-57.558 37.1c1.892 7.812 3.482 15.742 4.724 23.79l67.382 12.25zM672 468.8c-76.878 0-139.2 62.322-139.2 139.2s62.32 139.2 139.2 139.2 139.2-62.322 139.2-139.2c0-76.878-62.32-139.2-139.2-139.2z" />
+<glyph unicode="&#xeb17;" glyph-name="hammer" d="M1009.996 131.024l-301.544 301.544c-18.668 18.668-49.214 18.668-67.882 0l-22.626-22.626-184 184 302.056 302.058h-320l-142.058-142.058-14.060 14.058h-67.882v-67.882l14.058-14.058-206.058-206.060 160-160 206.058 206.058 184-184-22.626-22.626c-18.668-18.668-18.668-49.214 0-67.882l301.544-301.544c18.668-18.668 49.214-18.668 67.882 0l113.136 113.136c18.67 18.666 18.67 49.214 0.002 67.882z" />
+<glyph unicode="&#xeb18;" glyph-name="magic-wand" d="M256 768l-128 128h-64v-64l128-128zM320 960h64v-128h-64zM576 640h128v-64h-128zM640 832v64h-64l-128-128 64-64zM0 640h128v-64h-128zM320 384h64v-128h-64zM64 384v-64h64l128 128-64 64zM1010 78l-636.118 636.118c-18.668 18.668-49.214 18.668-67.882 0l-60.118-60.118c-18.668-18.668-18.668-49.214 0-67.882l636.118-636.118c18.668-18.668 49.214-18.668 67.882 0l60.118 60.118c18.668 18.668 18.668 49.214 0 67.882zM480 416l-192 192 64 64 192-192-64-64z" />
+<glyph unicode="&#xeb19;" glyph-name="aid-kit" d="M896 704h-192v128c0 35.2-28.8 64-64 64h-256c-35.2 0-64-28.8-64-64v-128h-192c-70.4 0-128-57.6-128-128v-512c0-70.4 57.6-128 128-128h768c70.4 0 128 57.6 128 128v512c0 70.4-57.6 128-128 128zM384 832h256v-128h-256v128zM768 256h-192v-192h-128v192h-192v128h192v192h128v-192h192v-128z" />
+<glyph unicode="&#xeb1a;" glyph-name="bug" d="M1024 384v64h-193.29c-5.862 72.686-31.786 139.026-71.67 192.25h161.944l70.060 280.24-62.090 15.522-57.94-231.76h-174.68c-0.892 0.694-1.796 1.374-2.698 2.056 6.71 19.502 10.362 40.422 10.362 62.194 0.002 105.76-85.958 191.498-191.998 191.498s-192-85.738-192-191.5c0-21.772 3.65-42.692 10.362-62.194-0.9-0.684-1.804-1.362-2.698-2.056h-174.68l-57.94 231.76-62.090-15.522 70.060-280.24h161.944c-39.884-53.222-65.806-119.562-71.668-192.248h-193.29v-64h193.37c3.802-45.664 15.508-88.812 33.638-127.75h-123.992l-70.060-280.238 62.090-15.524 57.94 231.762h112.354c58.692-78.032 147.396-127.75 246.66-127.75s187.966 49.718 246.662 127.75h112.354l57.94-231.762 62.090 15.524-70.060 280.238h-123.992c18.13 38.938 29.836 82.086 33.636 127.75h193.37z" />
+<glyph unicode="&#xeb1b;" glyph-name="pie-chart" d="M448 384v448c-247.424 0-448-200.576-448-448s200.576-448 448-448 448 200.576 448 448c0 72.034-17.028 140.084-47.236 200.382l-400.764-200.382zM912.764 712.382c-73.552 146.816-225.374 247.618-400.764 247.618v-448l400.764 200.382z" />
+<glyph unicode="&#xeb1c;" glyph-name="stats-dots" d="M128 64h896v-128h-1024v1024h128zM288 128c-53.020 0-96 42.98-96 96s42.98 96 96 96c2.828 0 5.622-0.148 8.388-0.386l103.192 171.986c-9.84 15.070-15.58 33.062-15.58 52.402 0 53.020 42.98 96 96 96s96-42.98 96-96c0-19.342-5.74-37.332-15.58-52.402l103.192-171.986c2.766 0.238 5.56 0.386 8.388 0.386 2.136 0 4.248-0.094 6.35-0.23l170.356 298.122c-10.536 15.408-16.706 34.036-16.706 54.11 0 53.020 42.98 96 96 96s96-42.98 96-96c0-53.020-42.98-96-96-96-2.14 0-4.248 0.094-6.35 0.232l-170.356-298.124c10.536-15.406 16.706-34.036 16.706-54.11 0-53.020-42.98-96-96-96s-96 42.98-96 96c0 19.34 5.74 37.332 15.578 52.402l-103.19 171.984c-2.766-0.238-5.56-0.386-8.388-0.386s-5.622 0.146-8.388 0.386l-103.192-171.986c9.84-15.068 15.58-33.060 15.58-52.4 0-53.020-42.98-96-96-96z" />
+<glyph unicode="&#xeb1d;" glyph-name="stats-bars" d="M0 128h1024v-128h-1024zM128 384h128v-192h-128zM320 640h128v-448h-128zM512 448h128v-256h-128zM704 832h128v-640h-128z" />
+<glyph unicode="&#xeb1e;" glyph-name="stats-bars2" d="M288 576h-192c-17.6 0-32-14.4-32-32v-576c0-17.6 14.4-32 32-32h192c17.6 0 32 14.4 32 32v576c0 17.6-14.4 32-32 32zM288 0h-192v256h192v-256zM608 704h-192c-17.6 0-32-14.4-32-32v-704c0-17.6 14.4-32 32-32h192c17.6 0 32 14.4 32 32v704c0 17.6-14.4 32-32 32zM608 0h-192v320h192v-320zM928 832h-192c-17.6 0-32-14.4-32-32v-832c0-17.6 14.4-32 32-32h192c17.6 0 32 14.4 32 32v832c0 17.6-14.4 32-32 32zM928 0h-192v384h192v-384z" />
+<glyph unicode="&#xeb1f;" glyph-name="trophy" d="M832 768v128h-640v-128h-192v-128c0-106.038 85.958-192 192-192 20.076 0 39.43 3.086 57.62 8.802 46.174-66.008 116.608-113.796 198.38-130.396v-198.406h-64c-70.694 0-128-57.306-128-128h512c0 70.694-57.306 128-128 128h-64v198.406c81.772 16.6 152.206 64.386 198.38 130.396 18.19-5.716 37.544-8.802 57.62-8.802 106.042 0 192 85.962 192 192v128h-192zM192 524c-63.962 0-116 52.038-116 116v64h116v-64c0-40.186 7.43-78.632 20.954-114.068-6.802-1.246-13.798-1.932-20.954-1.932zM948 640c0-63.962-52.038-116-116-116-7.156 0-14.152 0.686-20.954 1.932 13.524 35.436 20.954 73.882 20.954 114.068v64h116v-64z" />
+<glyph unicode="&#xeb20;" glyph-name="gift" d="M771.516 640c18.126 12.88 35.512 27.216 51.444 43.148 33.402 33.402 55.746 74.5 62.912 115.722 7.858 45.186-3.672 87.14-31.63 115.1-22.3 22.298-52.51 34.086-87.364 34.086-49.632 0-101.922-23.824-143.46-65.362-66.476-66.476-105.226-158.238-126.076-223.722-15.44 65.802-46.206 154.644-106.018 214.458-32.094 32.092-73.114 48.57-111.846 48.57-31.654 0-61.78-11.004-84.26-33.486-49.986-49.988-43.232-137.786 15.086-196.104 20.792-20.792 45.098-38.062 70.72-52.412h-217.024v-256h64v-448h768v448.002h64v256h-188.484zM674.326 831.782c27.724 27.724 62.322 44.274 92.55 44.274 10.7 0 25.708-2.254 36.45-12.998 26.030-26.028 11.412-86.308-31.28-128.998-43.946-43.946-103.060-74.168-154.432-94.060h-50.672c18.568 57.548 52.058 136.456 107.384 191.782zM233.934 799.11c-0.702 9.12-0.050 26.248 12.196 38.494 10.244 10.244 23.788 12.396 33.348 12.396v0c21.258 0 43.468-10.016 60.932-27.48 33.872-33.872 61.766-87.772 80.668-155.876 0.51-1.84 1.008-3.67 1.496-5.486-1.816 0.486-3.646 0.984-5.486 1.496-68.104 18.904-122.002 46.798-155.874 80.67-15.828 15.826-25.77 36.16-27.28 55.786zM448 0h-256v416h256v-416zM448 448h-320v128h320v-128zM832 0h-256v416h256v-416zM896 448h-320v128h320v-128z" />
+<glyph unicode="&#xeb21;" glyph-name="glass" d="M777.784 943.144c-5.576 10.38-16.406 16.856-28.19 16.856h-475.188c-11.784 0-22.614-6.476-28.19-16.856-35.468-66.020-54.216-143.184-54.216-223.144 0-105.412 32.372-204.828 91.154-279.938 45.428-58.046 102.48-96.54 164.846-112.172v-327.89h-96c-17.672 0-32-14.326-32-32s14.328-32 32-32h320c17.674 0 32 14.326 32 32s-14.326 32-32 32h-96v327.89c62.368 15.632 119.418 54.124 164.846 112.172 58.782 75.11 91.154 174.526 91.154 279.938 0 79.96-18.748 157.122-54.216 223.144zM294.1 896h435.8c24.974-52.902 38.1-113.338 38.1-176 0-5.364-0.108-10.696-0.296-16h-511.406c-0.19 5.304-0.296 10.636-0.296 16-0.002 62.664 13.126 123.098 38.098 176z" />
+<glyph unicode="&#xeb22;" glyph-name="glass2" d="M889.162 780.23c7.568 9.632 8.972 22.742 3.62 33.758-5.356 11.018-16.532 18.012-28.782 18.012h-704c-12.25 0-23.426-6.994-28.78-18.012-5.356-11.018-3.95-24.126 3.618-33.758l313.162-398.57v-381.66h-96c-17.672 0-32-14.326-32-32s14.328-32 32-32h320c17.674 0 32 14.326 32 32s-14.326 32-32 32h-96v381.66l313.162 398.57zM798.162 768l-100.572-128h-371.18l-100.57 128h572.322z" />
+<glyph unicode="&#xeb23;" glyph-name="mug" d="M960 640h-192v96c0 88.366-171.922 160-384 160s-384-71.634-384-160v-640c0-88.366 171.922-160 384-160s384 71.634 384 160v96h192c35.346 0 64 28.654 64 64v320c0 35.346-28.654 64-64 64zM176.056 701.602c-36.994 12.19-59.408 25.246-71.41 34.398 12.004 9.152 34.416 22.208 71.41 34.398 57.942 19.090 131.79 29.602 207.944 29.602s150.004-10.512 207.944-29.602c36.994-12.188 59.408-25.246 71.41-34.398-12.002-9.152-34.416-22.208-71.41-34.398-57.94-19.090-131.79-29.602-207.944-29.602s-150.002 10.512-207.944 29.602zM896 320h-128v192h128v-192z" />
+<glyph unicode="&#xeb24;" glyph-name="spoon-knife" d="M224 960c-106.040 0-192-100.288-192-224 0-105.924 63.022-194.666 147.706-217.998l-31.788-518.124c-2.154-35.132 24.882-63.878 60.082-63.878h32c35.2 0 62.236 28.746 60.082 63.878l-31.788 518.124c84.684 23.332 147.706 112.074 147.706 217.998 0 123.712-85.96 224-192 224zM869.334 960l-53.334-320h-40l-26.666 320h-26.668l-26.666-320h-40l-53.334 320h-26.666v-416c0-17.672 14.326-32 32-32h83.338l-31.42-512.122c-2.154-35.132 24.882-63.878 60.082-63.878h32c35.2 0 62.236 28.746 60.082 63.878l-31.42 512.122h83.338c17.674 0 32 14.328 32 32v416h-26.666z" />
+<glyph unicode="&#xeb25;" glyph-name="leaf" d="M1011.328 825.504c-110.752 83.928-281.184 134.034-455.91 134.034-216.12 0-392.226-75.456-483.16-207.020-42.708-61.79-66.33-134.958-70.208-217.474-3.454-73.474 8.884-154.726 36.684-242.146 94.874 284.384 359.82 507.102 665.266 507.102 0 0-285.826-75.232-465.524-308.192-0.112-0.138-2.494-3.090-6.614-8.698-36.080-48.278-67.538-103.162-91.078-165.328-39.87-94.83-76.784-224.948-76.784-381.782h128c0 0-19.43 122.222 14.36 262.79 55.89-7.556 105.858-11.306 150.852-11.306 117.678 0 201.37 25.46 263.388 80.124 55.568 48.978 86.198 114.786 118.624 184.456 49.524 106.408 105.654 227.010 268.654 320.152 9.33 5.332 15.362 14.992 16.056 25.716s-4.040 21.080-12.606 27.572z" />
+<glyph unicode="&#xeb26;" glyph-name="rocket" d="M704 896l-320-320h-192l-192-256c0 0 203.416 56.652 322.066 30.084l-322.066-414.084 421.902 328.144c58.838-134.654-37.902-328.144-37.902-328.144l256 192v192l320 320 64 320-320-64z" />
+<glyph unicode="&#xeb27;" glyph-name="meter" d="M512 896c282.77 0 512-229.23 512-512 0-192.792-106.576-360.666-264.008-448h-495.984c-157.432 87.334-264.008 255.208-264.008 448 0 282.77 229.23 512 512 512zM801.914 94.086c77.438 77.44 120.086 180.398 120.086 289.914h-90v64h85.038c-7.014 44.998-21.39 88.146-42.564 128h-106.474v64h64.284c-9.438 11.762-19.552 23.096-30.37 33.914-46.222 46.22-101.54 80.038-161.914 99.798v-69.712h-64v85.040c-20.982 3.268-42.36 4.96-64 4.96s-43.018-1.69-64-4.96v-85.040h-64v69.712c-60.372-19.76-115.692-53.576-161.914-99.798-10.818-10.818-20.932-22.152-30.37-33.914h64.284v-64h-106.476c-21.174-39.854-35.552-83.002-42.564-128h85.040v-64h-90c0-109.516 42.648-212.474 120.086-289.914 10.71-10.71 21.924-20.728 33.56-30.086h192.354l36.572 512h54.856l36.572-512h192.354c11.636 9.358 22.852 19.378 33.56 30.086z" />
+<glyph unicode="&#xeb28;" glyph-name="meter2" d="M512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512 512 229.23 512 512-229.23 512-512 512zM302.836 125.848c11.106 30.632 17.164 63.688 17.164 98.152 0 124.35-78.81 230.292-189.208 270.606 10.21 84.924 48.254 163.498 109.678 224.924 72.53 72.526 168.96 112.47 271.53 112.47s199-39.944 271.53-112.47c61.428-61.426 99.468-140 109.682-224.924-110.402-40.314-189.212-146.256-189.212-270.606 0-34.468 6.060-67.52 17.166-98.15-61.706-40.242-133.77-61.85-209.166-61.85-75.394 0-147.458 21.608-209.164 61.848zM551.754 319.004c13.878-3.494 24.246-16.080 24.246-31.004v-64c0-17.6-14.4-32-32-32h-64c-17.6 0-32 14.4-32 32v64c0 14.924 10.368 27.51 24.246 31.004l23.754 448.996h32l23.754-448.996z" />
+<glyph unicode="&#xeb29;" glyph-name="hammer2" d="M1010.174 44.25l-548.634 499.458 25.534 25.598c20.894 20.954 32.188 48.030 33.918 75.61 1.002 0.45 2.002 0.912 2.958 1.442l102.99 64.402c13.934 16.392 12.916 42.268-2.284 57.502l-179.12 179.608c-15.19 15.234-40.998 16.262-57.344 2.284l-64.236-103.268c-0.526-0.966-0.99-1.966-1.44-2.974-27.502-1.736-54.5-13.056-75.398-34.006l-97.428-97.702c-20.898-20.956-32.184-48.026-33.918-75.604-1.004-0.45-2.004-0.916-2.964-1.446l-102.986-64.406c-13.942-16.39-12.916-42.264 2.276-57.496l179.12-179.604c15.194-15.238 40.996-16.262 57.35-2.286l64.228 103.27c0.528 0.958 0.988 1.96 1.442 2.966 27.502 1.738 54.504 13.050 75.398 34.004l28.292 28.372 498.122-550.114c14.436-15.944 36.7-18.518 49.474-5.712l50.356 50.488c12.764 12.808 10.196 35.132-5.706 49.614z" />
+<glyph unicode="&#xeb2a;" glyph-name="fire" d="M321.008-64c-68.246 142.008-31.902 223.378 20.55 300.044 57.44 83.956 72.244 167.066 72.244 167.066s45.154-58.7 27.092-150.508c79.772 88.8 94.824 230.28 82.782 284.464 180.314-126.012 257.376-398.856 153.522-601.066 552.372 312.532 137.398 780.172 65.154 832.85 24.082-52.676 28.648-141.85-20-185.126-82.352 312.276-285.972 376.276-285.972 376.276 24.082-161.044-87.296-337.144-194.696-468.73-3.774 64.216-7.782 108.528-41.55 169.98-7.58-116.656-96.732-211.748-120.874-328.628-32.702-158.286 24.496-274.18 241.748-396.622z" />
+<glyph unicode="&#xeb2b;" glyph-name="lab" d="M956.29 155.518l-316.29 527.024v213.458h32c17.6 0 32 14.4 32 32s-14.4 32-32 32h-320c-17.6 0-32-14.4-32-32s14.4-32 32-32h32v-213.458l-316.288-527.024c-72.442-120.734-16.512-219.518 124.288-219.518h640c140.8 0 196.73 98.784 124.29 219.518zM241.038 320l206.962 344.938v231.062h128v-231.062l206.964-344.938h-541.926z" />
+<glyph unicode="&#xeb2c;" glyph-name="magnet" d="M896 960h-256l64-576c0-106.040-85.96-192-192-192s-192 85.96-192 192l64 576h-256l-64-576c0-247.424 200.576-448 448-448s448 200.576 448 448l-64 576zM777.874 118.126c-71.018-71.014-165.44-110.126-265.874-110.126s-194.856 39.112-265.872 110.126c-70.116 70.118-109.13 163.048-110.11 262.054l36.092 324.82h111.114l-35.224-317.010v-3.99c0-70.518 27.46-136.814 77.324-186.676 49.862-49.864 116.158-77.324 186.676-77.324s136.814 27.46 186.676 77.324c49.864 49.862 77.324 116.158 77.324 186.676v3.988l-0.44 3.962-34.782 313.050h111.114l36.090-324.818c-0.98-99.006-39.994-191.938-110.108-262.056z" />
+<glyph unicode="&#xeb2d;" glyph-name="bin" d="M128 640v-640c0-35.2 28.8-64 64-64h576c35.2 0 64 28.8 64 64v640h-704zM320 64h-64v448h64v-448zM448 64h-64v448h64v-448zM576 64h-64v448h64v-448zM704 64h-64v448h64v-448zM848 832h-208v80c0 26.4-21.6 48-48 48h-224c-26.4 0-48-21.6-48-48v-80h-208c-26.4 0-48-21.6-48-48v-80h832v80c0 26.4-21.6 48-48 48zM576 832h-192v63.198h192v-63.198z" />
+<glyph unicode="&#xeb2e;" glyph-name="bin2" d="M192-64h640l64 704h-768zM640 832v128h-256v-128h-320v-192l64 64h768l64-64v192h-320zM576 832h-128v64h128v-64z" />
+<glyph unicode="&#xeb2f;" glyph-name="briefcase" d="M960 704h-256v64c0 35.2-28.8 64-64 64h-256c-35.204 0-64-28.8-64-64v-64h-256c-35.2 0-64-28.8-64-64v-576c0-35.202 28.796-64 64-64h896c35.2 0 64 28.798 64 64v576c0 35.2-28.8 64-64 64zM384 767.884c0.034 0.040 0.074 0.082 0.114 0.116h255.772c0.042-0.034 0.082-0.076 0.118-0.116v-63.884h-256.004v63.884zM960 448h-128v-96c0-17.602-14.4-32-32-32h-64c-17.604 0-32 14.398-32 32v96h-384v-96c0-17.602-14.4-32-32-32h-64c-17.602 0-32 14.398-32 32v96h-128v64h896v-64z" />
+<glyph unicode="&#xeb30;" glyph-name="airplane" d="M768 320.032l-182.82 182.822 438.82 329.15-128.010 127.996-548.52-219.442-172.7 172.706c-49.78 49.778-119.302 61.706-154.502 26.508-35.198-35.198-23.268-104.726 26.51-154.5l172.686-172.684-219.464-548.582 127.99-128.006 329.19 438.868 182.826-182.828v-255.98h127.994l63.992 191.988 191.988 63.996v127.992l-255.98-0.004z" />
+<glyph unicode="&#xeb31;" glyph-name="truck" d="M1024 384l-128 256h-192v128c0 35.2-28.8 64-64 64h-576c-35.2 0-64-28.8-64-64v-512l64-64h81.166c-10.898-18.832-17.166-40.678-17.166-64 0-70.692 57.308-128 128-128s128 57.308 128 128c0 23.322-6.268 45.168-17.166 64h354.334c-10.898-18.832-17.168-40.678-17.168-64 0-70.692 57.308-128 128-128s128 57.308 128 128c0 23.322-6.27 45.168-17.168 64h81.168v192zM704 384v192h132.668l96-192h-228.668z" />
+<glyph unicode="&#xeb32;" glyph-name="road" d="M704-64h320l-256 1024h-192l32-256h-192l32 256h-192l-256-1024h320l32 256h320l32-256zM368 320l32 256h224l32-256h-288z" />
+<glyph unicode="&#xeb33;" glyph-name="accessibility" d="M416 864c0 53.018 42.98 96 96 96s96-42.982 96-96c0-53.020-42.98-96-96-96s-96 42.98-96 96zM640 640l329.596 142.172-23.77 59.424-401.826-137.596h-64l-401.826 137.596-23.77-59.424 329.596-142.172v-256l-131.27-424.57 59.84-22.7 185.716 415.27h27.428l185.716-415.27 59.84 22.7-131.27 424.57z" />
+<glyph unicode="&#xeb34;" glyph-name="target" d="M1024 512h-100.924c-27.64 178.24-168.836 319.436-347.076 347.076v100.924h-128v-100.924c-178.24-27.64-319.436-168.836-347.076-347.076h-100.924v-128h100.924c27.64-178.24 168.836-319.436 347.076-347.076v-100.924h128v100.924c178.24 27.64 319.436 168.836 347.076 347.076h100.924v128zM792.822 512h-99.762c-19.284 54.55-62.51 97.778-117.060 117.060v99.762c107.514-24.49 192.332-109.31 216.822-216.822zM512 384c-35.346 0-64 28.654-64 64s28.654 64 64 64c35.346 0 64-28.654 64-64s-28.654-64-64-64zM448 728.822v-99.762c-54.55-19.282-97.778-62.51-117.060-117.060h-99.762c24.49 107.512 109.31 192.332 216.822 216.822zM231.178 384h99.762c19.282-54.55 62.51-97.778 117.060-117.060v-99.762c-107.512 24.49-192.332 109.308-216.822 216.822zM576 167.178v99.762c54.55 19.284 97.778 62.51 117.060 117.060h99.762c-24.49-107.514-109.308-192.332-216.822-216.822z" />
+<glyph unicode="&#xeb35;" glyph-name="shield" d="M960 960l-448-128-448 128c0 0-4.5-51.698 0-128l448-140.090 448 140.090c4.498 76.302 0 128 0 128zM72.19 764.894c23.986-250.696 113.49-672.234 439.81-828.894 326.32 156.66 415.824 578.198 439.81 828.894l-439.81-165.358-439.81 165.358z" />
+<glyph unicode="&#xeb36;" glyph-name="power" d="M384 960l-384-512h384l-256-512 896 640h-512l384 384z" />
+<glyph unicode="&#xeb37;" glyph-name="switch" d="M640 813.412v-135.958c36.206-15.804 69.5-38.408 98.274-67.18 60.442-60.44 93.726-140.8 93.726-226.274s-33.286-165.834-93.726-226.274c-60.44-60.44-140.798-93.726-226.274-93.726s-165.834 33.286-226.274 93.726c-60.44 60.44-93.726 140.8-93.726 226.274s33.286 165.834 93.726 226.274c28.774 28.774 62.068 51.378 98.274 67.182v135.956c-185.048-55.080-320-226.472-320-429.412 0-247.424 200.578-448 448-448 247.424 0 448 200.576 448 448 0 202.94-134.95 374.332-320 429.412zM448 960h128v-512h-128z" />
+<glyph unicode="&#xeb38;" glyph-name="power-cord" d="M1024 677.5l-90.506 90.5-178.746-178.752-101.5 101.502 178.75 178.75-90.5 90.5-178.75-178.75-114.748 114.75-86.626-86.624 512.002-512 86.624 86.622-114.752 114.752 178.752 178.75zM794.040 286.21l-443.824 443.824c-95.818-114.904-204.52-292.454-129.396-445.216l-132.248-132.248c-31.112-31.114-31.112-82.024 0-113.136l14.858-14.858c31.114-31.114 82.026-31.114 113.138 0l132.246 132.244c152.764-75.132 330.318 33.566 445.226 129.39z" />
+<glyph unicode="&#xeb39;" glyph-name="clipboard" d="M928 832h-288c0 70.692-57.306 128-128 128-70.692 0-128-57.308-128-128h-288c-17.672 0-32-14.328-32-32v-832c0-17.674 14.328-32 32-32h832c17.674 0 32 14.326 32 32v832c0 17.672-14.326 32-32 32zM512 896c35.346 0 64-28.654 64-64s-28.654-64-64-64c-35.346 0-64 28.654-64 64s28.654 64 64 64zM896 0h-768v768h128v-96c0-17.672 14.328-32 32-32h448c17.674 0 32 14.328 32 32v96h128v-768zM448 101.49l-205.254 237.254 58.508 58.51 146.746-114.744 274.742 242.744 58.514-58.508z" />
+<glyph unicode="&#xeb3a;" glyph-name="list-numbered" d="M384 128h640v-128h-640zM384 512h640v-128h-640zM384 896h640v-128h-640zM192 960v-256h-64v192h-64v64zM128 434v-50h128v-64h-192v146l128 60v50h-128v64h192v-146zM256 256v-320h-192v64h128v64h-128v64h128v64h-128v64z" />
+<glyph unicode="&#xeb3b;" glyph-name="list" d="M0 960h256v-256h-256zM384 896h640v-128h-640zM0 576h256v-256h-256zM384 512h640v-128h-640zM0 192h256v-256h-256zM384 128h640v-128h-640z" />
+<glyph unicode="&#xeb3c;" glyph-name="list2" d="M384 896h640v-128h-640v128zM384 512h640v-128h-640v128zM384 128h640v-128h-640v128zM0 832c0 70.692 57.308 128 128 128s128-57.308 128-128c0-70.692-57.308-128-128-128s-128 57.308-128 128zM0 448c0 70.692 57.308 128 128 128s128-57.308 128-128c0-70.692-57.308-128-128-128s-128 57.308-128 128zM0 64c0 70.692 57.308 128 128 128s128-57.308 128-128c0-70.692-57.308-128-128-128s-128 57.308-128 128z" />
+<glyph unicode="&#xeb3d;" glyph-name="tree" d="M976 192h-16v208c0 61.756-50.242 112-112 112h-272v128h16c26.4 0 48 21.6 48 48v160c0 26.4-21.6 48-48 48h-160c-26.4 0-48-21.6-48-48v-160c0-26.4 21.6-48 48-48h16v-128h-272c-61.756 0-112-50.244-112-112v-208h-16c-26.4 0-48-21.6-48-48v-160c0-26.4 21.6-48 48-48h160c26.4 0 48 21.6 48 48v160c0 26.4-21.6 48-48 48h-16v192h256v-192h-16c-26.4 0-48-21.6-48-48v-160c0-26.4 21.6-48 48-48h160c26.4 0 48 21.6 48 48v160c0 26.4-21.6 48-48 48h-16v192h256v-192h-16c-26.4 0-48-21.6-48-48v-160c0-26.4 21.6-48 48-48h160c26.4 0 48 21.6 48 48v160c0 26.4-21.6 48-48 48zM192 0h-128v128h128v-128zM576 0h-128v128h128v-128zM448 704v128h128v-128h-128zM960 0h-128v128h128v-128z" />
+<glyph unicode="&#xeb3e;" glyph-name="menu" d="M64 768h896v-192h-896zM64 512h896v-192h-896zM64 256h896v-192h-896z" />
+<glyph unicode="&#xeb3f;" glyph-name="menu2" horiz-adv-x="1408" d="M0 768h896v-192h-896v192zM0 512h896v-192h-896v192zM0 256h896v-192h-896v192zM992 384l192-192 192 192zM1376 448l-192 192-192-192z" />
+<glyph unicode="&#xeb40;" glyph-name="menu3" horiz-adv-x="1408" d="M0 768h896v-192h-896v192zM0 512h896v-192h-896v192zM0 256h896v-192h-896v192zM992 512l192-192 192 192z" />
+<glyph unicode="&#xeb41;" glyph-name="menu4" horiz-adv-x="1408" d="M0 768h896v-192h-896v192zM0 512h896v-192h-896v192zM0 256h896v-192h-896v192zM992 320l192 192 192-192z" />
+<glyph unicode="&#xeb42;" glyph-name="cloud" d="M1024 302.458c0 82.090-56.678 150.9-132.996 169.48-3.242 128.7-108.458 232.062-237.862 232.062-75.792 0-143.266-35.494-186.854-90.732-24.442 31.598-62.69 51.96-105.708 51.96-73.81 0-133.642-59.874-133.642-133.722 0-6.436 0.48-12.76 1.364-18.954-11.222 2.024-22.766 3.138-34.57 3.138-106.998 0.002-193.732-86.786-193.732-193.842 0-107.062 86.734-193.848 193.73-193.848l656.262 0.012c96.138 0.184 174.008 78.212 174.008 174.446z" />
+<glyph unicode="&#xeb43;" glyph-name="cloud-download" d="M891.004 599.94c-3.242 128.698-108.458 232.060-237.862 232.060-75.792 0-143.266-35.494-186.854-90.732-24.442 31.598-62.69 51.96-105.708 51.96-73.81 0-133.642-59.876-133.642-133.722 0-6.436 0.48-12.76 1.364-18.954-11.222 2.024-22.766 3.138-34.57 3.138-106.998 0.002-193.732-86.786-193.732-193.842 0-107.062 86.734-193.848 193.73-193.848h91.76l226.51-234.51 226.51 234.51 111.482 0.012c96.138 0.184 174.008 78.21 174.008 174.446 0 82.090-56.678 150.9-132.996 169.482zM512 128l-192 192h128v192h128v-192h128l-192-192z" />
+<glyph unicode="&#xeb44;" glyph-name="cloud-upload" d="M892.268 573.51c2.444 11.11 3.732 22.648 3.732 34.49 0 88.366-71.634 160-160 160-14.222 0-28.014-1.868-41.132-5.352-24.798 77.352-97.29 133.352-182.868 133.352-87.348 0-161.054-58.336-184.326-138.17-22.742 6.622-46.792 10.17-71.674 10.17-141.384 0-256-114.616-256-256 0-141.388 114.616-256 256-256h128v-192h256v192h224c88.366 0 160 71.632 160 160 0 78.72-56.854 144.162-131.732 157.51zM576 320v-192h-128v192h-160l224 224 224-224h-160z" />
+<glyph unicode="&#xeb45;" glyph-name="cloud-check" d="M892.268 445.51c2.442 11.108 3.732 22.646 3.732 34.49 0 88.366-71.634 160-160 160-14.224 0-28.014-1.868-41.134-5.352-24.796 77.352-97.288 133.352-182.866 133.352-87.348 0-161.054-58.336-184.326-138.17-22.742 6.62-46.792 10.17-71.674 10.17-141.384 0-256-114.616-256-256 0-141.382 114.616-256 256-256h608c88.366 0 160 71.632 160 160 0 78.718-56.854 144.16-131.732 157.51zM416 192l-160 160 64 64 96-96 224 224 64-64-288-288z" />
+<glyph unicode="&#xeb46;" glyph-name="download2" d="M896 448h-160l-224-224-224 224h-160l-128-256v-64h1024v64l-128 256zM0 64h1024v-64h-1024v64zM576 640v256h-128v-256h-224l288-288 288 288h-224z" />
+<glyph unicode="&#xeb47;" glyph-name="upload2" d="M0 64h1024v-64h-1024zM1024 192v-64h-1024v64l128 256h256v-128h256v128h256zM224 640l288 288 288-288h-224v-256h-128v256z" />
+<glyph unicode="&#xeb48;" glyph-name="download3" d="M736 512l-256-256-256 256h160v384h192v-384zM480 256h-480v-256h960v256h-480zM896 128h-128v64h128v-64z" />
+<glyph unicode="&#xeb49;" glyph-name="upload3" d="M480 256h-480v-256h960v256h-480zM896 128h-128v64h128v-64zM224 640l256 256 256-256h-160v-320h-192v320z" />
+<glyph unicode="&#xeb4a;" glyph-name="sphere" d="M480 896c-265.096 0-480-214.904-480-480 0-265.098 214.904-480 480-480 265.098 0 480 214.902 480 480 0 265.096-214.902 480-480 480zM751.59 256c8.58 40.454 13.996 83.392 15.758 128h127.446c-3.336-44.196-13.624-87.114-30.68-128h-112.524zM208.41 576c-8.58-40.454-13.996-83.392-15.758-128h-127.444c3.336 44.194 13.622 87.114 30.678 128h112.524zM686.036 576c9.614-40.962 15.398-83.854 17.28-128h-191.316v128h174.036zM512 640v187.338c14.59-4.246 29.044-11.37 43.228-21.37 26.582-18.74 52.012-47.608 73.54-83.486 14.882-24.802 27.752-52.416 38.496-82.484h-155.264zM331.232 722.484c21.528 35.878 46.956 64.748 73.54 83.486 14.182 10 28.638 17.124 43.228 21.37v-187.34h-155.264c10.746 30.066 23.616 57.68 38.496 82.484zM448 576v-128h-191.314c1.88 44.146 7.666 87.038 17.278 128h174.036zM95.888 256c-17.056 40.886-27.342 83.804-30.678 128h127.444c1.762-44.608 7.178-87.546 15.758-128h-112.524zM256.686 384h191.314v-128h-174.036c-9.612 40.96-15.398 83.854-17.278 128zM448 192v-187.34c-14.588 4.246-29.044 11.372-43.228 21.37-26.584 18.74-52.014 47.61-73.54 83.486-14.882 24.804-27.75 52.418-38.498 82.484h155.266zM628.768 109.516c-21.528-35.876-46.958-64.746-73.54-83.486-14.184-9.998-28.638-17.124-43.228-21.37v187.34h155.266c-10.746-30.066-23.616-57.68-38.498-82.484zM512 256v128h191.314c-1.88-44.146-7.666-87.040-17.28-128h-174.034zM767.348 448c-1.762 44.608-7.178 87.546-15.758 128h112.524c17.056-40.886 27.344-83.806 30.68-128h-127.446zM830.658 640h-95.9c-18.638 58.762-44.376 110.294-75.316 151.428 42.536-20.34 81.058-47.616 114.714-81.272 21.48-21.478 40.362-44.938 56.502-70.156zM185.844 710.156c33.658 33.658 72.18 60.932 114.714 81.272-30.942-41.134-56.676-92.666-75.316-151.428h-95.898c16.138 25.218 35.022 48.678 56.5 70.156zM129.344 192h95.898c18.64-58.762 44.376-110.294 75.318-151.43-42.536 20.34-81.058 47.616-114.714 81.274-21.48 21.478-40.364 44.938-56.502 70.156zM774.156 121.844c-33.656-33.658-72.18-60.934-114.714-81.274 30.942 41.134 56.678 92.668 75.316 151.43h95.9c-16.14-25.218-35.022-48.678-56.502-70.156z" />
+<glyph unicode="&#xeb4b;" glyph-name="earth" d="M512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512 512 229.23 512 512-229.23 512-512 512zM512-0.002c-62.958 0-122.872 13.012-177.23 36.452l233.148 262.29c5.206 5.858 8.082 13.422 8.082 21.26v96c0 17.674-14.326 32-32 32-112.99 0-232.204 117.462-233.374 118.626-6 6.002-14.14 9.374-22.626 9.374h-128c-17.672 0-32-14.328-32-32v-192c0-12.122 6.848-23.202 17.69-28.622l110.31-55.156v-187.886c-116.052 80.956-192 215.432-192 367.664 0 68.714 15.49 133.806 43.138 192h116.862c8.488 0 16.626 3.372 22.628 9.372l128 128c6 6.002 9.372 14.14 9.372 22.628v77.412c40.562 12.074 83.518 18.588 128 18.588 70.406 0 137.004-16.26 196.282-45.2-4.144-3.502-8.176-7.164-12.046-11.036-36.266-36.264-56.236-84.478-56.236-135.764s19.97-99.5 56.236-135.764c36.434-36.432 85.218-56.264 135.634-56.26 3.166 0 6.342 0.080 9.518 0.236 13.814-51.802 38.752-186.656-8.404-372.334-0.444-1.744-0.696-3.488-0.842-5.224-81.324-83.080-194.7-134.656-320.142-134.656z" />
+<glyph unicode="&#xeb4c;" glyph-name="link" d="M440.236 324.234c-13.31 0-26.616 5.076-36.77 15.23-95.134 95.136-95.134 249.934 0 345.070l192 192c46.088 46.086 107.36 71.466 172.534 71.466s126.448-25.38 172.536-71.464c95.132-95.136 95.132-249.934 0-345.070l-87.766-87.766c-20.308-20.308-53.23-20.308-73.54 0-20.306 20.306-20.306 53.232 0 73.54l87.766 87.766c54.584 54.586 54.584 143.404 0 197.99-26.442 26.442-61.6 41.004-98.996 41.004s-72.552-14.562-98.996-41.006l-192-191.998c-54.586-54.586-54.586-143.406 0-197.992 20.308-20.306 20.306-53.232 0-73.54-10.15-10.152-23.462-15.23-36.768-15.23zM256-52c-65.176 0-126.45 25.38-172.534 71.464-95.134 95.136-95.134 249.934 0 345.070l87.764 87.764c20.308 20.306 53.234 20.306 73.54 0 20.308-20.306 20.308-53.232 0-73.54l-87.764-87.764c-54.586-54.586-54.586-143.406 0-197.992 26.44-26.44 61.598-41.002 98.994-41.002s72.552 14.562 98.998 41.006l192 191.998c54.584 54.586 54.584 143.406 0 197.992-20.308 20.308-20.306 53.232 0 73.54 20.306 20.306 53.232 20.306 73.54-0.002 95.132-95.134 95.132-249.932 0.002-345.068l-192.002-192c-46.090-46.088-107.364-71.466-172.538-71.466z" />
+<glyph unicode="&#xeb4d;" glyph-name="flag" d="M0 960h128v-1024h-128v1024zM832 316.998c82.624 0 154.57 19.984 192 49.5v512c-37.43-29.518-109.376-49.502-192-49.502s-154.57 19.984-192 49.502v-512c37.43-29.516 109.376-49.5 192-49.5zM608 927.472c-46.906 19.94-115.52 32.528-192 32.528-96.396 0-180.334-19.984-224-49.502v-512c43.666 29.518 127.604 49.502 224 49.502 76.48 0 145.094-12.588 192-32.528v512z" />
+<glyph unicode="&#xeb4e;" glyph-name="attachment" d="M665.832 632.952l-64.952 64.922-324.81-324.742c-53.814-53.792-53.814-141.048 0-194.844 53.804-53.792 141.060-53.792 194.874 0l389.772 389.708c89.714 89.662 89.714 235.062 0 324.726-89.666 89.704-235.112 89.704-324.782 0l-409.23-409.178c-0.29-0.304-0.612-0.576-0.876-0.846-125.102-125.096-125.102-327.856 0-452.906 125.054-125.056 327.868-125.056 452.988 0 0.274 0.274 0.516 0.568 0.82 0.876l0.032-0.034 279.332 279.292-64.986 64.92-279.33-279.262c-0.296-0.268-0.564-0.57-0.846-0.844-89.074-89.058-233.98-89.058-323.076 0-89.062 89.042-89.062 233.922 0 322.978 0.304 0.304 0.604 0.582 0.888 0.846l-0.046 0.060 409.28 409.166c53.712 53.738 141.144 53.738 194.886 0 53.712-53.734 53.712-141.148 0-194.84l-389.772-389.7c-17.936-17.922-47.054-17.922-64.972 0-17.894 17.886-17.894 47.032 0 64.92l324.806 324.782z" />
+<glyph unicode="&#xeb4f;" glyph-name="eye" d="M512 768c-223.318 0-416.882-130.042-512-320 95.118-189.958 288.682-320 512-320 223.312 0 416.876 130.042 512 320-95.116 189.958-288.688 320-512 320zM764.45 598.296c60.162-38.374 111.142-89.774 149.434-150.296-38.292-60.522-89.274-111.922-149.436-150.296-75.594-48.218-162.89-73.704-252.448-73.704-89.56 0-176.858 25.486-252.452 73.704-60.158 38.372-111.138 89.772-149.432 150.296 38.292 60.524 89.274 111.924 149.434 150.296 3.918 2.5 7.876 4.922 11.86 7.3-9.96-27.328-15.41-56.822-15.41-87.596 0-141.382 114.616-256 256-256 141.382 0 256 114.618 256 256 0 30.774-5.452 60.268-15.408 87.598 3.978-2.378 7.938-4.802 11.858-7.302v0zM512 544c0-53.020-42.98-96-96-96s-96 42.98-96 96 42.98 96 96 96 96-42.982 96-96z" />
+<glyph unicode="&#xeb50;" glyph-name="eye-plus" d="M1024 832h-128v128h-128v-128h-128v-128h128v-128h128v128h128zM863.862 513.972c18.436-20.478 35.192-42.53 50.022-65.972-38.292-60.522-89.274-111.922-149.436-150.296-75.594-48.218-162.89-73.704-252.448-73.704-89.56 0-176.86 25.486-252.454 73.704-60.156 38.372-111.136 89.772-149.43 150.296 38.292 60.524 89.274 111.924 149.434 150.296 3.918 2.5 7.876 4.922 11.862 7.3-9.962-27.328-15.412-56.822-15.412-87.596 0-141.382 114.616-256 256-256 141.38 0 256 114.618 256 256 0 0.692-0.018 1.38-0.024 2.072-109.284 28.138-190.298 126.63-191.932 244.31-21.026 2.38-42.394 3.618-64.044 3.618-223.318 0-416.882-130.042-512-320 95.118-189.958 288.682-320 512-320 223.31 0 416.876 130.042 512 320-17.64 35.23-38.676 68.394-62.65 99.054-29.28-17.178-62.272-28.71-97.488-33.082zM416 640c53.020 0 96-42.982 96-96 0-53.020-42.98-96-96-96s-96 42.98-96 96 42.98 96 96 96z" />
+<glyph unicode="&#xeb51;" glyph-name="eye-minus" d="M640 832h384v-128h-384v128zM870.32 640h-294.32v124.388c-21.014 2.376-42.364 3.612-64 3.612-223.318 0-416.882-130.042-512-320 95.118-189.958 288.682-320 512-320 223.31 0 416.876 130.042 512 320-37.396 74.686-90.020 140.1-153.68 192zM416 640c53.020 0 96-42.982 96-96 0-53.020-42.98-96-96-96s-96 42.98-96 96 42.98 96 96 96zM764.448 297.704c-75.594-48.218-162.89-73.704-252.448-73.704-89.56 0-176.86 25.486-252.454 73.704-60.156 38.372-111.136 89.772-149.43 150.296 38.292 60.524 89.274 111.924 149.434 150.296 3.918 2.5 7.876 4.922 11.862 7.3-9.962-27.328-15.412-56.822-15.412-87.596 0-141.382 114.616-256 256-256 141.38 0 256 114.618 256 256 0 30.774-5.454 60.268-15.408 87.598 3.976-2.378 7.938-4.802 11.858-7.302 60.162-38.374 111.142-89.774 149.434-150.296-38.292-60.522-89.274-111.922-149.436-150.296z" />
+<glyph unicode="&#xeb52;" glyph-name="eye-blocked" d="M945.942 945.942c-18.746 18.744-49.136 18.744-67.882 0l-202.164-202.164c-51.938 15.754-106.948 24.222-163.896 24.222-223.318 0-416.882-130.042-512-320 41.122-82.124 100.648-153.040 173.022-207.096l-158.962-158.962c-18.746-18.746-18.746-49.136 0-67.882 9.372-9.374 21.656-14.060 33.94-14.060s24.568 4.686 33.942 14.058l864 864c18.744 18.746 18.744 49.138 0 67.884zM416 640c42.24 0 78.082-27.294 90.92-65.196l-121.724-121.724c-37.902 12.838-65.196 48.68-65.196 90.92 0 53.020 42.98 96 96 96zM110.116 448c38.292 60.524 89.274 111.924 149.434 150.296 3.918 2.5 7.876 4.922 11.862 7.3-9.962-27.328-15.412-56.822-15.412-87.596 0-54.89 17.286-105.738 46.7-147.418l-60.924-60.924c-52.446 36.842-97.202 83.882-131.66 138.342zM768 518c0 27.166-4.256 53.334-12.102 77.898l-321.808-321.808c24.568-7.842 50.742-12.090 77.91-12.090 141.382 0 256 114.618 256 256zM830.026 670.026l-69.362-69.362c1.264-0.786 2.53-1.568 3.786-2.368 60.162-38.374 111.142-89.774 149.434-150.296-38.292-60.522-89.274-111.922-149.436-150.296-75.594-48.218-162.89-73.704-252.448-73.704-38.664 0-76.902 4.76-113.962 14.040l-76.894-76.894c59.718-21.462 123.95-33.146 190.856-33.146 223.31 0 416.876 130.042 512 320-45.022 89.916-112.118 166.396-193.974 222.026z" />
+<glyph unicode="&#xeb53;" glyph-name="bookmark" d="M192 960v-1024l320 320 320-320v1024z" />
+<glyph unicode="&#xeb54;" glyph-name="bookmarks" d="M256 832v-896l320 320 320-320v896zM768 960h-640v-896l64 64v768h576z" />
+<glyph unicode="&#xeb55;" glyph-name="sun" d="M512 128c35.346 0 64-28.654 64-64v-64c0-35.346-28.654-64-64-64s-64 28.654-64 64v64c0 35.346 28.654 64 64 64zM512 768c-35.346 0-64 28.654-64 64v64c0 35.346 28.654 64 64 64s64-28.654 64-64v-64c0-35.346-28.654-64-64-64zM960 512c35.346 0 64-28.654 64-64s-28.654-64-64-64h-64c-35.348 0-64 28.654-64 64s28.652 64 64 64h64zM192 448c0-35.346-28.654-64-64-64h-64c-35.346 0-64 28.654-64 64s28.654 64 64 64h64c35.346 0 64-28.654 64-64zM828.784 221.726l45.256-45.258c24.992-24.99 24.992-65.516 0-90.508-24.994-24.992-65.518-24.992-90.51 0l-45.256 45.256c-24.992 24.99-24.992 65.516 0 90.51 24.994 24.992 65.518 24.992 90.51 0zM195.216 674.274l-45.256 45.256c-24.994 24.994-24.994 65.516 0 90.51s65.516 24.994 90.51 0l45.256-45.256c24.994-24.994 24.994-65.516 0-90.51s-65.516-24.994-90.51 0zM828.784 674.274c-24.992-24.992-65.516-24.992-90.51 0-24.992 24.994-24.992 65.516 0 90.51l45.256 45.254c24.992 24.994 65.516 24.994 90.51 0 24.992-24.994 24.992-65.516 0-90.51l-45.256-45.254zM195.216 221.726c24.992 24.992 65.518 24.992 90.508 0 24.994-24.994 24.994-65.52 0-90.51l-45.254-45.256c-24.994-24.992-65.516-24.992-90.51 0s-24.994 65.518 0 90.508l45.256 45.258zM512 704c-141.384 0-256-114.616-256-256 0-141.382 114.616-256 256-256 141.382 0 256 114.618 256 256 0 141.384-114.616 256-256 256zM512 288c-88.366 0-160 71.634-160 160s71.634 160 160 160 160-71.634 160-160-71.634-160-160-160z" />
+<glyph unicode="&#xeb56;" glyph-name="contrast" d="M512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512 512 229.23 512 512-229.23 512-512 512zM128 448c0 212.078 171.922 384 384 384v-768c-212.078 0-384 171.922-384 384z" />
+<glyph unicode="&#xeb57;" glyph-name="brightness-contrast" d="M512 704c-141.384 0-256-114.616-256-256s114.616-256 256-256 256 114.616 256 256-114.616 256-256 256zM512 288v320c88.224 0 160-71.776 160-160s-71.776-160-160-160zM512 128c35.346 0 64-28.654 64-64v-64c0-35.346-28.654-64-64-64s-64 28.654-64 64v64c0 35.346 28.654 64 64 64zM512 768c-35.346 0-64 28.654-64 64v64c0 35.346 28.654 64 64 64s64-28.654 64-64v-64c0-35.346-28.654-64-64-64zM960 512c35.346 0 64-28.654 64-64s-28.654-64-64-64h-64c-35.346 0-64 28.654-64 64s28.654 64 64 64h64zM192 448c0-35.346-28.654-64-64-64h-64c-35.346 0-64 28.654-64 64s28.654 64 64 64h64c35.346 0 64-28.654 64-64zM828.784 221.726l45.256-45.256c24.992-24.992 24.992-65.516 0-90.51-24.994-24.992-65.518-24.992-90.51 0l-45.256 45.256c-24.992 24.992-24.992 65.516 0 90.51 24.994 24.992 65.518 24.992 90.51 0zM195.216 674.274l-45.256 45.256c-24.994 24.994-24.994 65.516 0 90.51s65.516 24.994 90.51 0l45.256-45.256c24.994-24.994 24.994-65.516 0-90.51s-65.516-24.994-90.51 0zM828.784 674.274c-24.992-24.992-65.516-24.992-90.51 0-24.992 24.994-24.992 65.516 0 90.51l45.256 45.254c24.992 24.994 65.516 24.994 90.51 0 24.992-24.994 24.992-65.516 0-90.51l-45.256-45.254zM195.216 221.726c24.992 24.992 65.516 24.992 90.508 0 24.994-24.994 24.994-65.518 0-90.51l-45.254-45.256c-24.994-24.992-65.516-24.992-90.51 0-24.994 24.994-24.994 65.518 0 90.51l45.256 45.256z" />
+<glyph unicode="&#xeb58;" glyph-name="star-empty" d="M1024 562.95l-353.78 51.408-158.22 320.582-158.216-320.582-353.784-51.408 256-249.538-60.432-352.352 316.432 166.358 316.432-166.358-60.434 352.352 256.002 249.538zM512 206.502l-223.462-117.48 42.676 248.83-180.786 176.222 249.84 36.304 111.732 226.396 111.736-226.396 249.836-36.304-180.788-176.222 42.678-248.83-223.462 117.48z" />
+<glyph unicode="&#xeb59;" glyph-name="star-half" d="M1024 562.95l-353.78 51.408-158.22 320.582-158.216-320.582-353.784-51.408 256-249.538-60.432-352.352 316.432 166.358 316.432-166.358-60.434 352.352 256.002 249.538zM512 206.502l-0.942-0.496 0.942 570.768 111.736-226.396 249.836-36.304-180.788-176.222 42.678-248.83-223.462 117.48z" />
+<glyph unicode="&#xeb5a;" glyph-name="star-full" d="M1024 562.95l-353.78 51.408-158.22 320.582-158.216-320.582-353.784-51.408 256-249.538-60.432-352.352 316.432 166.358 316.432-166.358-60.434 352.352 256.002 249.538z" />
+<glyph unicode="&#xeb5b;" glyph-name="heart" d="M755.188 896c-107.63 0-200.258-87.554-243.164-179-42.938 91.444-135.578 179-243.216 179-148.382 0-268.808-120.44-268.808-268.832 0-301.846 304.5-380.994 512.022-679.418 196.154 296.576 511.978 387.206 511.978 679.418 0 148.392-120.43 268.832-268.812 268.832z" />
+<glyph unicode="&#xeb5c;" glyph-name="heart-broken" d="M755.188 896c148.382 0 268.812-120.44 268.812-268.832 0-292.21-315.824-382.842-511.978-679.418-207.522 298.424-512.022 377.572-512.022 679.418 0 148.392 120.426 268.832 268.808 268.832 60.354 0 115.99-27.53 160.796-67.834l-77.604-124.166 224-128-128-320 352 384-224 128 61.896 92.846c35.42 21.768 75.21 35.154 117.292 35.154z" />
+<glyph unicode="&#xeb5d;" glyph-name="man" d="M576 864c0-53.019-42.981-96-96-96s-96 42.981-96 96c0 53.019 42.981 96 96 96s96-42.981 96-96zM576 704h-192c-35.346 0-64-28.654-64-64v-320h64v-384h80v384h32v-384h80v384h64v320c0 35.346-28.652 64-64 64z" />
+<glyph unicode="&#xeb5e;" glyph-name="woman" d="M576 864c0-53.019-42.981-96-96-96s-96 42.981-96 96c0 53.019 42.981 96 96 96s96-42.981 96-96zM719 448l49 35.5-133.286 206.116c-5.92 8.98-15.958 14.384-26.714 14.384h-256c-10.756 0-20.792-5.404-26.714-14.384l-133.286-206.116 49-35.5 110.644 143.596 38.458-89.74-134.102-245.856h122.666l21.334-320h64v320h32v-320h64l21.334 320h122.666l-134.104 245.858 38.458 89.74 110.646-143.598z" />
+<glyph unicode="&#xeb5f;" glyph-name="man-woman" d="M256 864c0-53.019-42.981-96-96-96s-96 42.981-96 96c0 53.019 42.981 96 96 96s96-42.981 96-96zM832 864c0-53.019-42.981-96-96-96s-96 42.981-96 96c0 53.019 42.981 96 96 96s96-42.981 96-96zM256 704h-192c-35.346 0-64-28.654-64-64v-320h64v-384h80v384h32v-384h80v384h64v320c0 35.346-28.652 64-64 64zM975 448l49 35.5-133.286 206.116c-5.92 8.98-15.958 14.384-26.714 14.384h-256c-10.756 0-20.792-5.404-26.714-14.384l-133.286-206.116 49-35.5 110.644 143.596 38.458-89.74-134.102-245.856h122.666l21.334-320h64v320h32v-320h64l21.334 320h122.666l-134.104 245.858 38.458 89.74 110.646-143.598z" />
+<glyph unicode="&#xeb60;" glyph-name="happy" d="M512-64c282.77 0 512 229.23 512 512s-229.23 512-512 512-512-229.23-512-512 229.23-512 512-512zM512 864c229.75 0 416-186.25 416-416s-186.25-416-416-416-416 186.25-416 416 186.25 416 416 416zM512 361.24c115.95 0 226.23 30.806 320 84.92-14.574-178.438-153.128-318.16-320-318.16-166.868 0-305.422 139.872-320 318.304 93.77-54.112 204.050-85.064 320-85.064zM256 608c0 53.019 28.654 96 64 96s64-42.981 64-96c0-53.019-28.654-96-64-96s-64 42.981-64 96zM640 608c0 53.019 28.654 96 64 96s64-42.981 64-96c0-53.019-28.654-96-64-96s-64 42.981-64 96z" />
+<glyph unicode="&#xeb61;" glyph-name="happy2" d="M512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512 512 229.23 512 512-229.23 512-512 512zM704 704c35.348 0 64-42.98 64-96s-28.652-96-64-96-64 42.98-64 96 28.652 96 64 96zM320 704c35.346 0 64-42.98 64-96s-28.654-96-64-96-64 42.98-64 96 28.654 96 64 96zM512 64c-166.868 0-305.422 139.872-320 318.304 93.77-54.114 204.050-85.064 320-85.064s226.23 30.806 320 84.92c-14.574-178.438-153.128-318.16-320-318.16z" />
+<glyph unicode="&#xeb62;" glyph-name="smile" d="M512-64c282.77 0 512 229.23 512 512s-229.23 512-512 512-512-229.23-512-512 229.23-512 512-512zM512 864c229.75 0 416-186.25 416-416s-186.25-416-416-416-416 186.25-416 416 186.25 416 416 416zM256 640c0 35.346 28.654 64 64 64s64-28.654 64-64c0-35.346-28.654-64-64-64s-64 28.654-64 64zM640 640c0 35.346 28.654 64 64 64s64-28.654 64-64c0-35.346-28.654-64-64-64s-64 28.654-64 64zM704.098 332.74l82.328-49.396c-55.962-93.070-157.916-155.344-274.426-155.344s-218.464 62.274-274.426 155.344l82.328 49.396c39.174-65.148 110.542-108.74 192.098-108.74s152.924 43.592 192.098 108.74z" />
+<glyph unicode="&#xeb63;" glyph-name="smile2" d="M512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512 512 229.23 512 512-229.23 512-512 512zM704 704c35.346 0 64-28.654 64-64s-28.654-64-64-64-64 28.654-64 64 28.654 64 64 64zM320 704c35.346 0 64-28.654 64-64s-28.654-64-64-64-64 28.654-64 64 28.654 64 64 64zM512 128c-116.51 0-218.464 62.274-274.426 155.344l82.328 49.396c39.174-65.148 110.542-108.74 192.098-108.74s152.924 43.592 192.098 108.74l82.328-49.396c-55.962-93.070-157.916-155.344-274.426-155.344z" />
+<glyph unicode="&#xeb64;" glyph-name="tongue" d="M512-64c282.77 0 512 229.23 512 512s-229.23 512-512 512-512-229.23-512-512 229.23-512 512-512zM512 864c229.75 0 416-186.25 416-416s-186.25-416-416-416-416 186.25-416 416 186.25 416 416 416zM256 640c0 35.346 28.654 64 64 64s64-28.654 64-64c0-35.346-28.654-64-64-64s-64 28.654-64 64zM640 640c0 35.346 28.654 64 64 64s64-28.654 64-64c0-35.346-28.654-64-64-64s-64 28.654-64 64zM768 384v-64h-64v-96c0-53.020-42.98-96-96-96s-96 42.98-96 96v96h-256v64h512z" />
+<glyph unicode="&#xeb65;" glyph-name="tongue2" d="M512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512 512 229.23 512 512-229.23 512-512 512zM320 704c35.346 0 64-28.654 64-64s-28.654-64-64-64-64 28.654-64 64 28.654 64 64 64zM768 320h-64v-96c0-53.020-42.98-96-96-96s-96 42.98-96 96v96h-256v64h512v-64zM704 576c-35.346 0-64 28.654-64 64s28.654 64 64 64 64-28.654 64-64-28.654-64-64-64z" />
+<glyph unicode="&#xeb66;" glyph-name="sad" d="M512-64c282.77 0 512 229.23 512 512s-229.23 512-512 512-512-229.23-512-512 229.23-512 512-512zM512 864c229.75 0 416-186.25 416-416s-186.25-416-416-416-416 186.25-416 416 186.25 416 416 416zM256 640c0 35.346 28.654 64 64 64s64-28.654 64-64c0-35.346-28.654-64-64-64s-64 28.654-64 64zM640 640c0 35.346 28.654 64 64 64s64-28.654 64-64c0-35.346-28.654-64-64-64s-64 28.654-64 64zM319.902 179.26l-82.328 49.396c55.962 93.070 157.916 155.344 274.426 155.344 116.508 0 218.462-62.274 274.426-155.344l-82.328-49.396c-39.174 65.148-110.542 108.74-192.098 108.74-81.558 0-152.924-43.592-192.098-108.74z" />
+<glyph unicode="&#xeb67;" glyph-name="sad2" d="M512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512 512 229.23 512 512-229.23 512-512 512zM704 704c35.346 0 64-28.654 64-64s-28.654-64-64-64-64 28.654-64 64 28.654 64 64 64zM320 704c35.346 0 64-28.654 64-64s-28.654-64-64-64-64 28.654-64 64 28.654 64 64 64zM704.098 179.26c-39.174 65.148-110.544 108.74-192.098 108.74-81.556 0-152.924-43.592-192.098-108.74l-82.328 49.396c55.96 93.070 157.916 155.344 274.426 155.344 116.508 0 218.464-62.274 274.426-155.344l-82.328-49.396z" />
+<glyph unicode="&#xeb68;" glyph-name="wink" d="M512-64c282.77 0 512 229.23 512 512s-229.23 512-512 512-512-229.23-512-512 229.23-512 512-512zM512 864c229.75 0 416-186.25 416-416s-186.25-416-416-416-416 186.25-416 416 186.25 416 416 416zM542.74 248.972c140.248 27.706 249.11 91.542 288.454 176.594-21.654-167.956-161.518-297.566-330.85-297.566-119.242 0-223.858 64.282-282.892 160.948 70.41-55.058 194.534-65.808 325.288-39.976zM640 608c0 53.019 28.654 96 64 96s64-42.981 64-96c0-53.019-28.654-96-64-96s-64 42.981-64 96zM352 588.5c-41.796 0-77.334-15.656-90.516-37.5-3.54 5.866-5.484 32.174-5.484 38.75 0 31.066 42.98 56.25 96 56.25s96-25.184 96-56.25c0-6.576-1.944-32.884-5.484-38.75-13.182 21.844-48.72 37.5-90.516 37.5z" />
+<glyph unicode="&#xeb69;" glyph-name="wink2" d="M512 960c-282.77 0-512-229.228-512-512 0-282.77 229.228-512 512-512 282.77 0 512 229.23 512 512 0 282.772-229.23 512-512 512zM704 704c35.346 0 64-42.98 64-96s-28.654-96-64-96-64 42.98-64 96 28.654 96 64 96zM352 647.938c59.646 0 102-22.332 102-57.282 0-7.398 3.812-42.994-0.17-49.594-14.828 24.576-54.81 42.188-101.83 42.188s-87.002-17.612-101.83-42.188c-3.982 6.6-0.17 42.196-0.17 49.594 0 34.95 42.354 57.282 102 57.282zM500.344 128c-119.242 0-223.858 64.28-282.892 160.952 70.41-55.060 194.534-65.81 325.288-39.978 140.248 27.706 249.11 91.542 288.454 176.594-21.654-167.96-161.518-297.568-330.85-297.568z" />
+<glyph unicode="&#xeb6a;" glyph-name="grin" d="M512-64c282.77 0 512 229.23 512 512s-229.23 512-512 512-512-229.23-512-512 229.23-512 512-512zM512 864c229.75 0 416-186.25 416-416s-186.25-416-416-416-416 186.25-416 416 186.25 416 416 416zM192 448v-64c0-140.8 115.2-256 256-256h128c140.8 0 256 115.2 256 256v64h-640zM384 203.012c-26.538 9.458-50.924 24.822-71.544 45.446-36.406 36.402-56.456 84.54-56.456 135.542h128v-180.988zM576 192h-128v192h128v-192zM711.544 248.458c-20.624-20.624-45.010-35.988-71.544-45.446v180.988h128c0-51.002-20.048-99.14-56.456-135.542zM225.352 576c0.002 0 0 0 0 0 9.768 0 18.108 7.056 19.724 16.69 6.158 36.684 37.668 63.31 74.924 63.31s68.766-26.626 74.924-63.31c1.616-9.632 9.956-16.69 19.722-16.69 9.768 0 18.108 7.056 19.724 16.688 1.082 6.436 1.628 12.934 1.628 19.312 0 63.962-52.038 116-116 116s-116-52.038-116-116c0-6.378 0.548-12.876 1.628-19.312 1.62-9.632 9.96-16.688 19.726-16.688zM609.352 576c0.002 0 0 0 0 0 9.77 0 18.112 7.056 19.724 16.69 6.158 36.684 37.668 63.31 74.924 63.31s68.766-26.626 74.924-63.31c1.616-9.632 9.958-16.69 19.722-16.69s18.108 7.056 19.722 16.688c1.082 6.436 1.628 12.934 1.628 19.312 0 63.962-52.038 116-116 116s-116-52.038-116-116c0-6.378 0.544-12.876 1.626-19.312 1.624-9.632 9.964-16.688 19.73-16.688z" />
+<glyph unicode="&#xeb6b;" glyph-name="grin2" d="M512 960c-282.77 0-512-229.23-512-512s229.226-512 512-512c282.77 0 512 229.23 512 512s-229.23 512-512 512zM704 724c63.962 0 116-52.038 116-116 0-6.378-0.546-12.876-1.628-19.312-1.618-9.632-9.958-16.688-19.724-16.688s-18.108 7.056-19.722 16.69c-6.16 36.684-37.67 53.31-74.926 53.31s-68.766-16.626-74.924-53.31c-1.616-9.632-9.956-16.69-19.722-16.69-0.002 0 0 0-0.002 0-9.766 0-18.106 7.056-19.722 16.688-1.084 6.436-1.63 12.934-1.63 19.312 0 63.962 52.038 116 116 116zM320 724c63.962 0 116-52.038 116-116 0-6.378-0.548-12.876-1.628-19.312-1.618-9.632-9.956-16.688-19.724-16.688s-18.106 7.056-19.722 16.69c-6.16 36.684-37.67 53.31-74.926 53.31s-68.766-16.626-74.924-53.31c-1.616-9.632-9.956-16.69-19.722-16.69 0 0 0 0 0 0-9.766 0-18.106 7.056-19.724 16.688-1.082 6.436-1.63 12.934-1.63 19.312 0 63.962 52.038 116 116 116zM192 384h192v-247.846c-110.094 28.606-192 129.124-192 247.846zM448 128v256h128v-256h-128zM640 136.154v247.846h192c0-118.722-81.904-219.24-192-247.846z" />
+<glyph unicode="&#xeb6c;" glyph-name="cool" d="M512-64c282.77 0 512 229.23 512 512s-229.23 512-512 512-512-229.23-512-512 229.23-512 512-512zM512 864c229.75 0 416-186.25 416-416s-186.25-416-416-416-416 186.25-416 416 186.25 416 416 416zM800 704c17.6 0 32-14.4 32-32v-96c0-35.2-28.8-64-64-64h-128c-35.2 0-64 28.8-64 64h-128c0-35.2-28.8-64-64-64h-128c-35.2 0-64 28.8-64 64v96c0 17.6 14.4 32 32 32h192c17.6 0 32-14.4 32-32v-32h128v32c0 17.6 14.4 32 32 32h192zM512 192c93.208 0 174.772 49.818 219.546 124.278l54.88-32.934c-55.966-93.070-157.916-155.344-274.426-155.344-48.458 0-94.384 10.796-135.54 30.082l33.162 55.278c31.354-13.714 65.964-21.36 102.378-21.36z" />
+<glyph unicode="&#xeb6d;" glyph-name="cool2" d="M512 960c-282.77 0-512-229.23-512-512s229.226-512 512-512c282.77 0 512 229.23 512 512s-229.23 512-512 512zM512 128c-48.458 0-94.384 10.796-135.542 30.082l33.162 55.276c31.356-13.712 65.966-21.358 102.38-21.358 93.208 0 174.772 49.818 219.542 124.278l54.882-32.934c-55.964-93.070-157.914-155.344-274.424-155.344zM832 576c0-35.2-28.8-64-64-64h-128c-35.2 0-64 28.8-64 64h-128c0-35.2-28.8-64-64-64h-128c-35.2 0-64 28.8-64 64v96c0 17.6 14.4 32 32 32h192c17.6 0 32-14.4 32-32v-32h128v32c0 17.6 14.4 32 32 32h192c17.6 0 32-14.4 32-32v-96z" />
+<glyph unicode="&#xeb6e;" glyph-name="angry" d="M512-64c282.77 0 512 229.23 512 512s-229.23 512-512 512-512-229.23-512-512 229.23-512 512-512zM512 864c229.75 0 416-186.25 416-416s-186.25-416-416-416-416 186.25-416 416 186.25 416 416 416zM704.098 179.26c-39.174 65.148-110.544 108.74-192.098 108.74-81.556 0-152.924-43.592-192.098-108.74l-82.328 49.396c55.96 93.070 157.916 155.344 274.426 155.344 116.508 0 218.464-62.274 274.426-155.344l-82.328-49.396zM767.042 679.76c4.284-17.144-6.14-34.518-23.282-38.804-17.626-4.45-38.522-12.12-56.936-21.35 10.648-11.43 17.174-26.752 17.174-43.606 0-35.346-28.654-64-64-64s-64 28.654-64 64c0 1.17 0.036 2.33 0.098 3.484 2.032 47.454 45.212 78.946 81.592 97.138 34.742 17.37 69.102 26.060 70.548 26.422 17.146 4.288 34.518-6.138 38.806-23.284zM256.958 679.76c4.288 17.146 21.66 27.572 38.806 23.284 1.446-0.362 35.806-9.052 70.548-26.422 36.38-18.192 79.56-49.684 81.592-97.138 0.062-1.154 0.098-2.314 0.098-3.484 0-35.346-28.654-64-64-64s-64 28.654-64 64c0 16.854 6.526 32.176 17.174 43.606-18.414 9.23-39.31 16.9-56.936 21.35-17.142 4.286-27.566 21.66-23.282 38.804z" />
+<glyph unicode="&#xeb6f;" glyph-name="angry2" d="M512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512 512 229.23 512 512-229.23 512-512 512zM576.094 579.484c2.032 47.454 45.21 78.948 81.592 97.138 34.742 17.372 69.104 26.060 70.548 26.422 17.146 4.288 34.52-6.138 38.806-23.284s-6.138-34.518-23.284-38.806c-17.624-4.45-38.522-12.12-56.936-21.35 10.648-11.43 17.174-26.752 17.174-43.606 0-35.346-28.654-64-64-64s-64 28.654-64 64c0.002 1.17 0.038 2.332 0.1 3.486zM256.958 679.76c4.288 17.146 21.66 27.572 38.806 23.284 1.446-0.362 35.806-9.052 70.548-26.422 36.38-18.192 79.56-49.684 81.592-97.138 0.062-1.154 0.098-2.314 0.098-3.484 0-35.346-28.654-64-64-64s-64 28.654-64 64c0 16.854 6.526 32.176 17.174 43.606-18.414 9.23-39.31 16.9-56.936 21.35-17.142 4.286-27.566 21.66-23.282 38.804zM704.098 179.26c-39.174 65.148-110.544 108.74-192.098 108.74-81.556 0-152.924-43.592-192.098-108.74l-82.328 49.396c55.96 93.070 157.916 155.344 274.426 155.344 116.508 0 218.464-62.274 274.426-155.344l-82.328-49.396z" />
+<glyph unicode="&#xeb70;" glyph-name="evil" d="M639.996 512c-35.346 0-64 28.654-63.998 64.002 0 1.17 0.036 2.33 0.098 3.484 2.032 47.454 45.212 78.946 81.592 97.138 34.742 17.37 69.102 26.060 70.548 26.422 17.146 4.288 34.518-6.138 38.806-23.284 4.284-17.146-6.14-34.518-23.284-38.806-17.626-4.45-38.522-12.12-56.936-21.35 10.648-11.43 17.174-26.752 17.174-43.606 0-35.346-28.654-64-64-64zM280.242 640.956c-17.144 4.286-27.568 21.66-23.282 38.804 4.286 17.146 21.66 27.572 38.806 23.284 1.444-0.362 35.806-9.050 70.548-26.422 36.382-18.19 79.56-49.684 81.592-97.138 0.062-1.154 0.098-2.316 0.098-3.484 0-35.346-28.654-64-64-64s-64 28.654-64 64c0 16.854 6.526 32.176 17.174 43.606-18.414 9.23-39.312 16.9-56.936 21.35zM512 224c81.554 0 152.924 43.592 192.098 108.74l82.328-49.396c-55.962-93.070-157.916-155.344-274.426-155.344s-218.464 62.274-274.426 155.344l82.328 49.396c39.174-65.148 110.542-108.74 192.098-108.74zM1024 896c0 45.516-9.524 88.8-26.652 128-33.576-76.836-96.448-137.932-174.494-169.178-86.194 65.96-193.936 105.178-310.854 105.178s-224.66-39.218-310.854-105.178c-78.048 31.246-140.918 92.342-174.494 169.178-17.128-39.2-26.652-82.484-26.652-128 0-73.574 24.85-141.328 66.588-195.378-42.37-74.542-66.588-160.75-66.588-252.622 0-282.77 229.23-512 512-512s512 229.23 512 512c0 91.872-24.218 178.080-66.588 252.622 41.738 54.050 66.588 121.804 66.588 195.378zM512 32c-229.75 0-416 186.25-416 416s186.25 416 416 416 416-186.25 416-416-186.25-416-416-416z" />
+<glyph unicode="&#xeb71;" glyph-name="evil2" d="M1024 896c0 45.516-9.524 88.8-26.652 128-33.576-76.836-96.448-137.932-174.494-169.178-86.194 65.96-193.936 105.178-310.854 105.178s-224.66-39.218-310.854-105.178c-78.048 31.246-140.918 92.342-174.494 169.178-17.128-39.2-26.652-82.484-26.652-128 0-73.574 24.85-141.328 66.588-195.378-42.37-74.542-66.588-160.75-66.588-252.622 0-282.77 229.23-512 512-512s512 229.23 512 512c0 91.872-24.218 178.080-66.588 252.622 41.738 54.050 66.588 121.804 66.588 195.378zM576.094 579.484c2.032 47.454 45.21 78.948 81.592 97.138 34.742 17.372 69.104 26.060 70.548 26.422 17.146 4.288 34.52-6.138 38.806-23.284s-6.138-34.518-23.284-38.806c-17.624-4.45-38.522-12.12-56.936-21.35 10.648-11.43 17.174-26.752 17.174-43.606 0-35.346-28.654-64-64-64s-64 28.654-64 64c0.002 1.17 0.038 2.332 0.1 3.486zM256.958 679.76c4.288 17.146 21.66 27.572 38.806 23.284 1.446-0.362 35.806-9.052 70.548-26.422 36.38-18.192 79.56-49.684 81.592-97.138 0.062-1.154 0.098-2.314 0.098-3.484 0-35.346-28.654-64-64-64s-64 28.654-64 64c0 16.854 6.526 32.176 17.174 43.606-18.414 9.23-39.31 16.9-56.936 21.35-17.142 4.286-27.566 21.66-23.282 38.804zM512 128c-116.51 0-218.464 62.274-274.426 155.344l82.328 49.396c39.174-65.148 110.542-108.74 192.098-108.74 81.554 0 152.924 43.592 192.098 108.74l82.328-49.396c-55.962-93.070-157.916-155.344-274.426-155.344z" />
+<glyph unicode="&#xeb72;" glyph-name="shocked" d="M512-64c282.77 0 512 229.23 512 512s-229.23 512-512 512-512-229.23-512-512 229.23-512 512-512zM512 864c229.75 0 416-186.25 416-416s-186.25-416-416-416-416 186.25-416 416 186.25 416 416 416zM384 256c0 70.692 57.308 128 128 128s128-57.308 128-128c0-70.692-57.308-128-128-128s-128 57.308-128 128zM640 608c0 53.019 28.654 96 64 96s64-42.981 64-96c0-53.019-28.654-96-64-96s-64 42.981-64 96zM256 608c0 53.019 28.654 96 64 96s64-42.981 64-96c0-53.019-28.654-96-64-96s-64 42.981-64 96z" />
+<glyph unicode="&#xeb73;" glyph-name="shocked2" d="M512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512 512 229.23 512 512-229.23 512-512 512zM320 512c-35.346 0-64 42.98-64 96s28.654 96 64 96 64-42.98 64-96-28.654-96-64-96zM512 128c-70.692 0-128 57.308-128 128s57.308 128 128 128c70.692 0 128-57.308 128-128s-57.308-128-128-128zM704 512c-35.346 0-64 42.98-64 96s28.654 96 64 96 64-42.98 64-96-28.654-96-64-96z" />
+<glyph unicode="&#xeb74;" glyph-name="baffled" d="M512-64c282.77 0 512 229.23 512 512s-229.23 512-512 512-512-229.23-512-512 229.23-512 512-512zM512 864c229.75 0 416-186.25 416-416s-186.25-416-416-416-416 186.25-416 416 186.25 416 416 416zM384 544c0-17.673-14.327-32-32-32s-32 14.327-32 32c0 17.673 14.327 32 32 32s32-14.327 32-32zM352 640c53.020 0 96-42.98 96-96s-42.98-96-96-96-96 42.98-96 96 42.98 96 96 96zM352 704c-88.224 0-160-71.776-160-160s71.776-160 160-160 160 71.776 160 160-71.776 160-160 160v0zM704 544c0-17.673-14.327-32-32-32s-32 14.327-32 32c0 17.673 14.327 32 32 32s32-14.327 32-32zM672 640c53.020 0 96-42.98 96-96s-42.98-96-96-96-96 42.98-96 96 42.98 96 96 96zM672 704c-88.224 0-160-71.776-160-160s71.776-160 160-160 160 71.776 160 160-71.776 160-160 160v0zM384 256h256v-64h-256v64z" />
+<glyph unicode="&#xeb75;" glyph-name="baffled2" d="M384 544c0-17.674-14.326-32-32-32s-32 14.326-32 32 14.326 32 32 32 32-14.326 32-32zM704 544c0-17.674-14.326-32-32-32s-32 14.326-32 32 14.326 32 32 32 32-14.326 32-32zM512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512 512 229.23 512 512-229.23 512-512 512zM256 544c0 53.020 42.98 96 96 96s96-42.98 96-96-42.98-96-96-96-96 42.98-96 96zM640 192h-256v64h256v-64zM672 448c-53.020 0-96 42.98-96 96s42.98 96 96 96 96-42.98 96-96-42.98-96-96-96z" />
+<glyph unicode="&#xeb76;" glyph-name="confused" d="M512-64c282.77 0 512 229.23 512 512s-229.23 512-512 512-512-229.23-512-512 229.23-512 512-512zM512 864c229.75 0 416-186.25 416-416s-186.25-416-416-416-416 186.25-416 416 186.25 416 416 416zM256 640c0 35.346 28.654 64 64 64s64-28.654 64-64c0-35.346-28.654-64-64-64s-64 28.654-64 64zM640 640c0 35.346 28.654 64 64 64s64-28.654 64-64c0-35.346-28.654-64-64-64s-64 28.654-64 64zM726.106 320h64.864c9.246-72.506-32.452-144.53-103.958-170.56-82.904-30.176-174.9 12.716-205.080 95.616-18.108 49.744-73.306 75.482-123.048 57.372-45.562-16.588-70.956-64.298-60.988-110.424h-64.86c-9.242 72.508 32.45 144.528 103.956 170.56 82.904 30.178 174.902-12.716 205.082-95.614 18.104-49.748 73.306-75.482 123.044-57.372 45.562 16.584 70.956 64.298 60.988 110.422z" />
+<glyph unicode="&#xeb77;" glyph-name="confused2" d="M512 960c-282.77 0-512-229.23-512-512s229.226-512 512-512c282.77 0 512 229.23 512 512s-229.23 512-512 512zM704 704c35.346 0 64-28.654 64-64s-28.654-64-64-64-64 28.654-64 64c0 35.346 28.654 64 64 64zM320 704c35.346 0 64-28.654 64-64s-28.654-64-64-64-64 28.654-64 64c0 35.346 28.654 64 64 64zM687.010 149.44c-82.902-30.18-174.9 12.712-205.080 95.614-18.108 49.742-73.306 75.478-123.048 57.372-45.562-16.588-70.958-64.296-60.988-110.424h-64.86c-9.244 72.508 32.45 144.532 103.956 170.56 82.904 30.18 174.902-12.712 205.082-95.614 18.108-49.742 73.306-75.476 123.046-57.37 45.562 16.584 70.958 64.294 60.988 110.422h64.864c9.24-72.506-32.454-144.532-103.96-170.56z" />
+<glyph unicode="&#xeb78;" glyph-name="neutral" d="M512-64c282.77 0 512 229.23 512 512s-229.23 512-512 512-512-229.23-512-512 229.23-512 512-512zM512 864c229.75 0 416-186.25 416-416s-186.25-416-416-416-416 186.25-416 416 186.25 416 416 416zM256 640c0-35.346 28.654-64 64-64s64 28.654 64 64-28.654 64-64 64-64-28.654-64-64zM640 640c0-35.346 28.654-64 64-64s64 28.654 64 64-28.654 64-64 64-64-28.654-64-64zM384 256h256v-64h-256v64z" />
+<glyph unicode="&#xeb79;" glyph-name="neutral2" d="M512 960c-282.77 0-512-229.23-512-512s229.226-512 512-512c282.77 0 512 229.23 512 512s-229.23 512-512 512zM640 192h-256v64h256v-64zM704 704c35.346 0 64-28.654 64-64s-28.654-64-64-64-64 28.654-64 64c0 35.346 28.654 64 64 64zM320 704c35.346 0 64-28.654 64-64s-28.654-64-64-64-64 28.654-64 64c0 35.346 28.654 64 64 64z" />
+<glyph unicode="&#xeb7a;" glyph-name="hipster" d="M512-64c282.77 0 512 229.23 512 512s-229.23 512-512 512-512-229.23-512-512 229.23-512 512-512zM512 864c229.75 0 416-186.25 416-416s-186.25-416-416-416-416 186.25-416 416 186.25 416 416 416zM256 640c0 35.346 28.654 64 64 64s64-28.654 64-64-28.654-64-64-64-64 28.654-64 64zM640 640c0 35.346 28.654 64 64 64s64-28.654 64-64-28.654-64-64-64-64 28.654-64 64zM675.882 419.882c-37.49 37.49-98.276 37.49-135.766 0s-37.49-98.276 0-135.766c1.204-1.204 2.434-2.368 3.684-3.492 86.528-78.512 288.2 1.842 288.2 103.376-62-40-110.45-9.786-156.118 35.882zM348.118 419.882c37.49 37.49 98.276 37.49 135.766 0s37.49-98.276 0-135.766c-1.204-1.204-2.434-2.368-3.684-3.492-86.528-78.512-288.2 1.842-288.2 103.376 62-40 110.45-9.786 156.118 35.882z" />
+<glyph unicode="&#xeb7b;" glyph-name="hipster2" d="M512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512 512 229.23 512 512-229.23 512-512 512zM704 704c35.346 0 64-28.654 64-64s-28.654-64-64-64-64 28.654-64 64 28.654 64 64 64zM320 704c35.346 0 64-28.654 64-64s-28.654-64-64-64-64 28.654-64 64 28.654 64 64 64zM543.8 280.624c-1.25 1.124-2.48 2.29-3.684 3.492-18.74 18.74-28.112 43.3-28.118 67.864-0.004-24.562-9.376-49.124-28.118-67.864-1.204-1.204-2.434-2.368-3.684-3.492-86.524-78.512-288.196 1.842-288.196 103.376 62-40 110.45-9.786 156.118 35.882 37.49 37.49 98.276 37.49 135.766 0 18.74-18.74 28.112-43.3 28.118-67.864 0.004 24.562 9.376 49.124 28.118 67.864 37.49 37.49 98.276 37.49 135.766 0 45.664-45.668 94.114-75.882 156.114-35.882 0-101.534-201.672-181.888-288.2-103.376z" />
+<glyph unicode="&#xeb7c;" glyph-name="wondering" d="M512-64c282.77 0 512 229.23 512 512s-229.23 512-512 512-512-229.23-512-512 229.23-512 512-512zM512 864c229.75 0 416-186.25 416-416s-186.25-416-416-416-416 186.25-416 416 186.25 416 416 416zM745.74 358.38l22.488-76.776-437.008-128.002-22.488 76.776zM256 640c0 35.346 28.654 64 64 64s64-28.654 64-64c0-35.346-28.654-64-64-64s-64 28.654-64 64zM640 640c0 35.346 28.654 64 64 64s64-28.654 64-64c0-35.346-28.654-64-64-64s-64 28.654-64 64z" />
+<glyph unicode="&#xeb7d;" glyph-name="wondering2" d="M512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512 512 229.23 512 512-229.23 512-512 512zM704 704c35.346 0 64-28.654 64-64s-28.654-64-64-64-64 28.654-64 64 28.654 64 64 64zM256 640c0 35.346 28.654 64 64 64s64-28.654 64-64-28.654-64-64-64-64 28.654-64 64zM331.244 153.614l-22.488 76.774 437 128 22.488-76.774-437-128z" />
+<glyph unicode="&#xeb7e;" glyph-name="sleepy" d="M512-64c282.77 0 512 229.23 512 512s-229.23 512-512 512-512-229.23-512-512 229.23-512 512-512zM512 864c229.75 0 416-186.25 416-416s-186.25-416-416-416-416 186.25-416 416 186.25 416 416 416zM640 288c0-88.366-57.308-160-128.002-160s-128.002 71.634-128.002 160c0 88.366 57.308 160 128.002 160s128.002-71.634 128.002-160zM416 620c-8.19 0-16.378 3.124-22.626 9.374-19.334 19.332-63.412 19.332-82.746 0-12.496-12.498-32.758-12.498-45.254 0-12.498 12.496-12.498 32.758 0 45.254 44.528 44.53 128.726 44.53 173.254 0 12.498-12.496 12.498-32.758 0-45.254-6.248-6.25-14.438-9.374-22.628-9.374zM736 620c-8.19 0-16.378 3.124-22.626 9.374-19.332 19.332-63.414 19.332-82.746 0-12.496-12.498-32.758-12.498-45.254 0-12.498 12.496-12.498 32.758 0 45.254 44.528 44.53 128.726 44.53 173.254 0 12.498-12.496 12.498-32.758 0-45.254-6.248-6.25-14.438-9.374-22.628-9.374z" />
+<glyph unicode="&#xeb7f;" glyph-name="sleepy2" d="M512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512 512 229.23 512 512-229.23 512-512 512zM310.628 629.374c-12.496-12.498-32.758-12.498-45.254 0-12.498 12.496-12.498 32.758 0 45.254 44.528 44.53 128.726 44.53 173.254 0 12.498-12.496 12.498-32.758 0-45.254-6.248-6.25-14.438-9.374-22.628-9.374s-16.378 3.124-22.626 9.374c-19.334 19.332-63.412 19.332-82.746 0zM511.998 128c-70.694 0-128.002 71.634-128.002 160s57.308 160 128.002 160 128.002-71.634 128.002-160-57.308-160-128.002-160zM758.628 629.374c-6.248-6.25-14.438-9.374-22.628-9.374s-16.378 3.124-22.626 9.374c-19.332 19.332-63.414 19.332-82.746 0-12.496-12.498-32.758-12.498-45.254 0-12.498 12.496-12.498 32.758 0 45.254 44.528 44.53 128.726 44.53 173.254 0 12.498-12.498 12.498-32.758 0-45.254z" />
+<glyph unicode="&#xeb80;" glyph-name="frustrated" d="M366.312 676.622c-34.742 17.37-69.102 26.060-70.548 26.422-17.146 4.288-34.518-6.138-38.806-23.284-4.284-17.144 6.14-34.518 23.282-38.804 17.626-4.45 38.522-12.12 56.936-21.35-10.648-11.43-17.174-26.752-17.174-43.606 0-35.346 28.654-64 64-64s64 28.654 64 64c0 1.17-0.036 2.33-0.098 3.484-2.032 47.454-45.212 78.946-81.592 97.138zM512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512 512 229.23 512 512-229.23 512-512 512zM236.498 136.336c10.706-5.324 22.756-8.336 35.502-8.336h480c12.746 0 24.796 3.012 35.502 8.338-73.378-64.914-169.828-104.338-275.502-104.338-105.672 0-202.124 39.424-275.502 104.336zM256 208v96c0 8.674 7.328 16 16 16h112v-128h-112c-8.672 0-16 7.326-16 16zM448 192v128h128v-128h-128zM640 192v128h112c8.674 0 16-7.326 16-16v-96c0-8.674-7.326-16-16-16h-112zM823.662 172.498c5.326 10.706 8.338 22.756 8.338 35.502v96c0 44.112-35.888 80-80 80h-480c-44.112 0-80-35.888-80-80v-96c0-12.746 3.012-24.796 8.336-35.502-64.912 73.378-104.336 169.828-104.336 275.502 0 229.75 186.25 416 416 416s416-186.25 416-416c0-105.674-39.424-202.124-104.338-275.502zM728.236 703.044c-1.448-0.362-35.806-9.052-70.548-26.422-36.378-18.192-79.558-49.684-81.592-97.138-0.060-1.154-0.098-2.314-0.098-3.484 0-35.346 28.654-64 64-64s64 28.654 64 64c0 16.854-6.526 32.176-17.174 43.606 18.414 9.23 39.31 16.9 56.936 21.35 17.142 4.286 27.566 21.66 23.284 38.804-4.29 17.146-21.662 27.572-38.808 23.284z" />
+<glyph unicode="&#xeb81;" glyph-name="frustrated2" d="M256 304v-96c0-8.674 7.328-16 16-16h112v128h-112c-8.672 0-16-7.326-16-16zM448 320h128v-128h-128v128zM752 320h-112v-128h112c8.674 0 16 7.326 16 16v96c0 8.674-7.326 16-16 16zM512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512 512 229.23 512 512-229.23 512-512 512zM576.096 579.484c2.034 47.454 45.212 78.946 81.592 97.138 34.742 17.37 69.102 26.060 70.548 26.422 17.146 4.288 34.518-6.138 38.806-23.284 4.284-17.144-6.14-34.518-23.284-38.804-17.624-4.45-38.522-12.12-56.936-21.35 10.648-11.43 17.174-26.752 17.174-43.606 0-35.346-28.654-64-64-64s-64 28.654-64 64c0.002 1.17 0.040 2.33 0.1 3.484zM256.958 679.76c4.288 17.146 21.66 27.572 38.806 23.284 1.446-0.362 35.806-9.052 70.548-26.422 36.38-18.192 79.56-49.684 81.592-97.138 0.062-1.154 0.098-2.314 0.098-3.484 0-35.346-28.654-64-64-64s-64 28.654-64 64c0 16.854 6.526 32.176 17.174 43.606-18.414 9.23-39.31 16.9-56.936 21.35-17.142 4.286-27.566 21.66-23.282 38.804zM832 208c0-44.112-35.888-80-80-80h-480c-44.112 0-80 35.888-80 80v96c0 44.112 35.888 80 80 80h480c44.112 0 80-35.888 80-80v-96z" />
+<glyph unicode="&#xeb82;" glyph-name="crying" d="M512-64c282.77 0 512 229.23 512 512s-229.23 512-512 512-512-229.23-512-512 229.23-512 512-512zM512 864c229.75 0 416-186.25 416-416s-186.25-416-416-416-416 186.25-416 416 186.25 416 416 416zM800 576h-128c-17.674 0-32 14.328-32 32s14.326 32 32 32h128c17.674 0 32-14.328 32-32s-14.326-32-32-32zM352 576h-128c-17.672 0-32 14.328-32 32s14.328 32 32 32h128c17.672 0 32-14.328 32-32s-14.328-32-32-32zM608 104c-8.19 0-16.378 3.124-22.626 9.374-4.582 4.582-29.42 14.626-73.374 14.626s-68.79-10.044-73.374-14.626c-12.496-12.496-32.758-12.496-45.254 0-12.498 12.496-12.498 32.758 0 45.254 30.122 30.12 92.994 33.372 118.628 33.372 25.632 0 88.506-3.252 118.626-33.374 12.498-12.496 12.498-32.758 0-45.254-6.248-6.248-14.436-9.372-22.626-9.372zM736 384c-17.674 0-32 14.326-32 32v64c0 17.672 14.326 32 32 32s32-14.328 32-32v-64c0-17.674-14.326-32-32-32zM736 192c-17.674 0-32 14.326-32 32v64c0 17.674 14.326 32 32 32s32-14.326 32-32v-64c0-17.674-14.326-32-32-32zM288 384c-17.672 0-32 14.326-32 32v64c0 17.672 14.328 32 32 32s32-14.328 32-32v-64c0-17.674-14.328-32-32-32zM288 192c-17.672 0-32 14.326-32 32v64c0 17.674 14.328 32 32 32s32-14.326 32-32v-64c0-17.674-14.328-32-32-32z" />
+<glyph unicode="&#xeb83;" glyph-name="crying2" d="M512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512 512 229.23 512 512-229.23 512-512 512zM320 224c0-17.674-14.328-32-32-32s-32 14.326-32 32v64c0 17.674 14.328 32 32 32s32-14.326 32-32v-64zM320 416c0-17.674-14.328-32-32-32s-32 14.326-32 32v64c0 17.672 14.328 32 32 32s32-14.328 32-32v-64zM352 576h-128c-17.672 0-32 14.328-32 32s14.328 32 32 32h128c17.672 0 32-14.328 32-32s-14.328-32-32-32zM630.626 113.374c-6.248-6.25-14.436-9.374-22.626-9.374s-16.378 3.124-22.626 9.374c-4.582 4.582-29.42 14.626-73.374 14.626s-68.79-10.044-73.374-14.626c-12.496-12.496-32.758-12.496-45.254 0-12.498 12.496-12.498 32.758 0 45.254 30.122 30.12 92.994 33.372 118.628 33.372 25.632 0 88.506-3.252 118.626-33.374 12.498-12.496 12.498-32.756 0-45.252zM768 224c0-17.674-14.326-32-32-32s-32 14.326-32 32v64c0 17.674 14.326 32 32 32s32-14.326 32-32v-64zM768 416c0-17.674-14.326-32-32-32s-32 14.326-32 32v64c0 17.672 14.326 32 32 32s32-14.328 32-32v-64zM800 576h-128c-17.674 0-32 14.328-32 32s14.326 32 32 32h128c17.674 0 32-14.328 32-32s-14.326-32-32-32z" />
+<glyph unicode="&#xeb84;" glyph-name="point-up" d="M960 352v160c0 52.934-43.066 96-96 96-17.104 0-33.176-4.494-47.098-12.368-17.076 26.664-46.958 44.368-80.902 44.368-24.564 0-47.004-9.274-64-24.504-16.996 15.23-39.436 24.504-64 24.504-11.214 0-21.986-1.934-32-5.484v229.484c0 52.934-43.066 96-96 96s-96-43.066-96-96v-394.676l-176.018 93.836c-14.536 8.4-31.126 12.84-47.982 12.84-52.934 0-96-43.066-96-96 0-26.368 10.472-50.954 29.49-69.226 0.248-0.238 0.496-0.47 0.75-0.7l239.17-218.074h-45.41c-17.672 0-32-14.326-32-32v-192c0-17.674 14.328-32 32-32h640c17.674 0 32 14.326 32 32v192c0 17.674-14.326 32-32 32h-44.222l72.844 145.69c2.222 4.442 3.378 9.342 3.378 14.31zM896 96c0-17.674-14.326-32-32-32s-32 14.326-32 32 14.326 32 32 32 32-14.326 32-32zM896 359.554l-83.776-167.554h-383.826l-290.818 265.166c-6.18 6.070-9.58 14.164-9.58 22.834 0 17.644 14.356 32 32 32 5.46 0 10.612-1.31 15.324-3.894 0.53-0.324 1.070-0.632 1.622-0.926l224-119.416c9.92-5.288 21.884-4.986 31.52 0.8 9.638 5.782 15.534 16.196 15.534 27.436v448c0 17.644 14.356 32 32 32s32-14.356 32-32v-320c0-17.672 14.326-32 32-32s32 14.328 32 32c0 17.644 14.356 32 32 32s32-14.356 32-32c0-17.672 14.326-32 32-32s32 14.328 32 32c0 17.644 14.356 32 32 32s32-14.356 32-32v-32c0-17.672 14.326-32 32-32s32 14.328 32 32c0 17.644 14.356 32 32 32s32-14.356 32-32v-152.446z" />
+<glyph unicode="&#xeb85;" glyph-name="point-right" d="M416 0h160c52.934 0 96 43.066 96 96 0 17.104-4.494 33.176-12.368 47.098 26.664 17.076 44.368 46.958 44.368 80.902 0 24.564-9.276 47.004-24.504 64 15.228 16.996 24.504 39.436 24.504 64 0 11.214-1.934 21.986-5.484 32h229.484c52.934 0 96 43.066 96 96s-43.066 96-96 96h-394.676l93.836 176.018c8.4 14.536 12.84 31.126 12.84 47.982 0 52.934-43.066 96-96 96-26.368 0-50.954-10.472-69.226-29.49-0.238-0.248-0.47-0.496-0.7-0.75l-218.074-239.17v45.41c0 17.672-14.326 32-32 32h-192c-17.674 0-32-14.328-32-32v-640c0-17.674 14.326-32 32-32h192c17.674 0 32 14.326 32 32v44.222l145.69-72.844c4.444-2.222 9.342-3.378 14.31-3.378zM160 64c-17.674 0-32 14.326-32 32s14.326 32 32 32 32-14.326 32-32-14.326-32-32-32zM423.556 64l-167.556 83.778v383.824l265.168 290.818c6.066 6.18 14.162 9.58 22.832 9.58 17.644 0 32-14.356 32-32 0-5.46-1.308-10.612-3.894-15.324-0.324-0.53-0.632-1.070-0.926-1.622l-119.418-224c-5.288-9.92-4.986-21.884 0.8-31.52 5.784-9.638 16.198-15.534 27.438-15.534h448c17.644 0 32-14.356 32-32s-14.356-32-32-32h-320c-17.672 0-32-14.326-32-32s14.328-32 32-32c17.644 0 32-14.356 32-32s-14.356-32-32-32c-17.674 0-32-14.326-32-32s14.326-32 32-32c17.644 0 32-14.356 32-32s-14.356-32-32-32h-32c-17.674 0-32-14.326-32-32s14.326-32 32-32c17.644 0 32-14.356 32-32s-14.356-32-32-32h-152.444z" />
+<glyph unicode="&#xeb86;" glyph-name="point-down" d="M960 544v-160c0-52.934-43.066-96-96-96-17.104 0-33.176 4.494-47.098 12.368-17.076-26.662-46.96-44.368-80.902-44.368-24.564 0-47.004 9.276-64 24.504-16.996-15.228-39.436-24.504-64-24.504-11.214 0-21.986 1.934-32 5.484v-229.484c0-52.934-43.066-96-96-96-52.936 0-96 43.066-96 96v394.676l-176.018-93.836c-14.538-8.398-31.126-12.84-47.982-12.84-52.936 0-96 43.066-96 96 0 26.368 10.472 50.952 29.488 69.226 0.248 0.238 0.496 0.47 0.75 0.7l239.17 218.074h-45.408c-17.674 0-32 14.326-32 32v192c0 17.674 14.326 32 32 32h640c17.674 0 32-14.326 32-32v-192c0-17.674-14.326-32-32-32h-44.222l72.842-145.69c2.224-4.442 3.38-9.342 3.38-14.31zM896 800c0 17.674-14.326 32-32 32s-32-14.326-32-32 14.326-32 32-32 32 14.326 32 32zM896 536.446l-83.778 167.554h-383.824l-290.82-265.168c-6.18-6.066-9.578-14.162-9.578-22.832 0-17.644 14.356-32 32-32 5.458 0 10.612 1.308 15.324 3.894 0.53 0.324 1.070 0.632 1.622 0.926l224 119.416c9.92 5.288 21.884 4.986 31.52-0.8 9.638-5.782 15.534-16.196 15.534-27.436v-448c0-17.644 14.356-32 32-32s32 14.356 32 32v320c0 17.672 14.326 32 32 32s32-14.328 32-32c0-17.644 14.356-32 32-32s32 14.356 32 32c0 17.674 14.326 32 32 32s32-14.326 32-32c0-17.644 14.356-32 32-32s32 14.356 32 32v32c0 17.674 14.326 32 32 32s32-14.326 32-32c0-17.644 14.356-32 32-32s32 14.356 32 32v152.446z" />
+<glyph unicode="&#xeb87;" glyph-name="point-left" d="M608 0h-160c-52.934 0-96 43.066-96 96 0 17.104 4.494 33.176 12.368 47.098-26.662 17.076-44.368 46.958-44.368 80.902 0 24.564 9.276 47.004 24.504 64-15.228 16.996-24.504 39.436-24.504 64 0 11.214 1.934 21.986 5.484 32h-229.484c-52.934 0-96 43.066-96 96 0 52.936 43.066 96 96 96h394.676l-93.836 176.018c-8.398 14.536-12.84 31.126-12.84 47.982 0 52.936 43.066 96 96 96 26.368 0 50.952-10.472 69.224-29.488 0.238-0.248 0.472-0.496 0.7-0.75l218.076-239.17v45.408c0 17.674 14.326 32 32 32h192c17.674 0 32-14.326 32-32v-640c0-17.674-14.326-32-32-32h-192c-17.674 0-32 14.326-32 32v44.222l-145.69-72.844c-4.442-2.222-9.34-3.378-14.31-3.378zM864 64c17.674 0 32 14.326 32 32s-14.326 32-32 32-32-14.326-32-32 14.326-32 32-32zM600.446 64l167.554 83.778v383.824l-265.168 290.82c-6.066 6.18-14.162 9.578-22.832 9.578-17.644 0-32-14.356-32-32 0-5.458 1.308-10.612 3.894-15.324 0.324-0.53 0.632-1.070 0.926-1.622l119.416-224c5.29-9.92 4.988-21.884-0.798-31.52-5.784-9.638-16.198-15.534-27.438-15.534h-448c-17.644 0-32-14.356-32-32s14.356-32 32-32h320c17.672 0 32-14.326 32-32s-14.328-32-32-32c-17.644 0-32-14.356-32-32s14.356-32 32-32c17.674 0 32-14.326 32-32s-14.326-32-32-32c-17.644 0-32-14.356-32-32s14.356-32 32-32h32c17.674 0 32-14.326 32-32s-14.326-32-32-32c-17.644 0-32-14.356-32-32s14.356-32 32-32h152.446z" />
+<glyph unicode="&#xeb88;" glyph-name="warning" d="M512 867.226l429.102-855.226h-858.206l429.104 855.226zM512 960c-22.070 0-44.14-14.882-60.884-44.648l-437.074-871.112c-33.486-59.532-5-108.24 63.304-108.24h869.308c68.3 0 96.792 48.708 63.3 108.24h0.002l-437.074 871.112c-16.742 29.766-38.812 44.648-60.882 44.648v0zM576 128c0-35.346-28.654-64-64-64s-64 28.654-64 64c0 35.346 28.654 64 64 64s64-28.654 64-64zM512 256c-35.346 0-64 28.654-64 64v192c0 35.346 28.654 64 64 64s64-28.654 64-64v-192c0-35.346-28.654-64-64-64z" />
+<glyph unicode="&#xeb89;" glyph-name="notification" d="M512 864c-111.118 0-215.584-43.272-294.156-121.844s-121.844-183.038-121.844-294.156c0-111.118 43.272-215.584 121.844-294.156s183.038-121.844 294.156-121.844c111.118 0 215.584 43.272 294.156 121.844s121.844 183.038 121.844 294.156c0 111.118-43.272 215.584-121.844 294.156s-183.038 121.844-294.156 121.844zM512 960v0c282.77 0 512-229.23 512-512s-229.23-512-512-512c-282.77 0-512 229.23-512 512s229.23 512 512 512zM448 256h128v-128h-128zM448 768h128v-384h-128z" />
+<glyph unicode="&#xeb8a;" glyph-name="question" d="M448 256h128v-128h-128zM704 704c35.346 0 64-28.654 64-64v-192l-192-128h-128v64l192 128v64h-320v128h384zM512 864c-111.118 0-215.584-43.272-294.156-121.844s-121.844-183.038-121.844-294.156c0-111.118 43.272-215.584 121.844-294.156s183.038-121.844 294.156-121.844c111.118 0 215.584 43.272 294.156 121.844s121.844 183.038 121.844 294.156c0 111.118-43.272 215.584-121.844 294.156s-183.038 121.844-294.156 121.844zM512 960v0c282.77 0 512-229.23 512-512s-229.23-512-512-512c-282.77 0-512 229.23-512 512s229.23 512 512 512z" />
+<glyph unicode="&#xeb8b;" glyph-name="plus" d="M992 576h-352v352c0 17.672-14.328 32-32 32h-192c-17.672 0-32-14.328-32-32v-352h-352c-17.672 0-32-14.328-32-32v-192c0-17.672 14.328-32 32-32h352v-352c0-17.672 14.328-32 32-32h192c17.672 0 32 14.328 32 32v352h352c17.672 0 32 14.328 32 32v192c0 17.672-14.328 32-32 32z" />
+<glyph unicode="&#xeb8c;" glyph-name="minus" d="M0 544v-192c0-17.672 14.328-32 32-32h960c17.672 0 32 14.328 32 32v192c0 17.672-14.328 32-32 32h-960c-17.672 0-32-14.328-32-32z" />
+<glyph unicode="&#xeb8d;" glyph-name="info" d="M448 656c0 26.4 21.6 48 48 48h32c26.4 0 48-21.6 48-48v-32c0-26.4-21.6-48-48-48h-32c-26.4 0-48 21.6-48 48v32zM640 192h-256v64h64v192h-64v64h192v-256h64zM512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512 512 229.23 512 512-229.23 512-512 512zM512 32c-229.75 0-416 186.25-416 416s186.25 416 416 416 416-186.25 416-416-186.25-416-416-416z" />
+<glyph unicode="&#xeb8e;" glyph-name="cancel-circle" d="M512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512 512 229.23 512 512-229.23 512-512 512zM512 32c-229.75 0-416 186.25-416 416s186.25 416 416 416 416-186.25 416-416-186.25-416-416-416zM672 704l-160-160-160 160-96-96 160-160-160-160 96-96 160 160 160-160 96 96-160 160 160 160z" />
+<glyph unicode="&#xeb8f;" glyph-name="blocked" d="M874.040 810.040c-96.706 96.702-225.28 149.96-362.040 149.96s-265.334-53.258-362.040-149.96c-96.702-96.706-149.96-225.28-149.96-362.040s53.258-265.334 149.96-362.040c96.706-96.702 225.28-149.96 362.040-149.96s265.334 53.258 362.040 149.96c96.702 96.706 149.96 225.28 149.96 362.040s-53.258 265.334-149.96 362.040zM896 448c0-82.814-26.354-159.588-71.112-222.38l-535.266 535.268c62.792 44.758 139.564 71.112 222.378 71.112 211.738 0 384-172.262 384-384zM128 448c0 82.814 26.354 159.586 71.112 222.378l535.27-535.268c-62.794-44.756-139.568-71.11-222.382-71.11-211.738 0-384 172.262-384 384z" />
+<glyph unicode="&#xeb90;" glyph-name="cross" d="M1014.662 137.34c-0.004 0.004-0.008 0.008-0.012 0.010l-310.644 310.65 310.644 310.65c0.004 0.004 0.008 0.006 0.012 0.010 3.344 3.346 5.762 7.254 7.312 11.416 4.246 11.376 1.824 24.682-7.324 33.83l-146.746 146.746c-9.148 9.146-22.45 11.566-33.828 7.32-4.16-1.55-8.070-3.968-11.418-7.31 0-0.004-0.004-0.006-0.008-0.010l-310.648-310.652-310.648 310.65c-0.004 0.004-0.006 0.006-0.010 0.010-3.346 3.342-7.254 5.76-11.414 7.31-11.38 4.248-24.682 1.826-33.83-7.32l-146.748-146.748c-9.148-9.148-11.568-22.452-7.322-33.828 1.552-4.16 3.97-8.072 7.312-11.416 0.004-0.002 0.006-0.006 0.010-0.010l310.65-310.648-310.65-310.652c-0.002-0.004-0.006-0.006-0.008-0.010-3.342-3.346-5.76-7.254-7.314-11.414-4.248-11.376-1.826-24.682 7.322-33.83l146.748-146.746c9.15-9.148 22.452-11.568 33.83-7.322 4.16 1.552 8.070 3.97 11.416 7.312 0.002 0.004 0.006 0.006 0.010 0.010l310.648 310.65 310.648-310.65c0.004-0.002 0.008-0.006 0.012-0.008 3.348-3.344 7.254-5.762 11.414-7.314 11.378-4.246 24.684-1.826 33.828 7.322l146.746 146.748c9.148 9.148 11.57 22.454 7.324 33.83-1.552 4.16-3.97 8.068-7.314 11.414z" />
+<glyph unicode="&#xeb91;" glyph-name="checkmark" d="M864 832l-480-480-224 224-160-160 384-384 640 640z" />
+<glyph unicode="&#xeb92;" glyph-name="checkmark2" d="M397.434 42.304l-397.868 391.6 197.378 194.27 200.49-197.332 429.62 422.852 197.378-194.27-626.998-617.12zM107.912 433.904l289.524-284.962 518.656 510.482-89.036 87.632-429.62-422.852-200.49 197.334-89.034-87.634z" />
+<glyph unicode="&#xeb93;" glyph-name="spell-check" d="M128 704h128v-192h64v384c0 35.2-28.8 64-64 64h-128c-35.2 0-64-28.8-64-64v-384h64v192zM128 896h128v-128h-128v128zM960 896v64h-192c-35.202 0-64-28.8-64-64v-320c0-35.2 28.798-64 64-64h192v64h-192v320h192zM640 800v96c0 35.2-28.8 64-64 64h-192v-448h192c35.2 0 64 28.8 64 64v96c0 35.2-8.8 64-44 64 35.2 0 44 28.8 44 64zM576 576h-128v128h128v-128zM576 768h-128v128h128v-128zM832 384l-416-448-224 288 82 70 142-148 352 302z" />
+<glyph unicode="&#xeb94;" glyph-name="enter" d="M384 448h-320v128h320v128l192-192-192-192zM1024 960v-832l-384-192v192h-384v256h64v-192h320v576l256 128h-576v-256h-64v320z" />
+<glyph unicode="&#xeb95;" glyph-name="exit" d="M768 320v128h-320v128h320v128l192-192zM704 384v-256h-320v-192l-384 192v832h704v-320h-64v256h-512l256-128v-576h256v192z" />
+<glyph unicode="&#xeb96;" glyph-name="play2" d="M512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512 512 229.23 512 512-229.23 512-512 512zM512 32c-229.75 0-416 186.25-416 416s186.25 416 416 416 416-186.25 416-416-186.25-416-416-416zM384 672l384-224-384-224z" />
+<glyph unicode="&#xeb97;" glyph-name="pause" d="M512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512 512 229.23 512 512-229.23 512-512 512zM512 32c-229.75 0-416 186.25-416 416s186.25 416 416 416 416-186.25 416-416-186.25-416-416-416zM320 640h128v-384h-128zM576 640h128v-384h-128z" />
+<glyph unicode="&#xeb98;" glyph-name="stop" d="M512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512 512 229.23 512 512-229.23 512-512 512zM512 32c-229.75 0-416 186.25-416 416s186.25 416 416 416 416-186.25 416-416-186.25-416-416-416zM320 640h384v-384h-384z" />
+<glyph unicode="&#xeb99;" glyph-name="previous" d="M512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512 512 229.23 512 512-229.23 512-512 512zM512 32c-229.75 0-416 186.25-416 416s186.25 416 416 416 416-186.25 416-416-186.25-416-416-416zM448 448l256 192v-384zM320 640h128v-384h-128v384z" />
+<glyph unicode="&#xeb9a;" glyph-name="next" d="M512 960c282.77 0 512-229.23 512-512s-229.23-512-512-512-512 229.23-512 512 229.23 512 512 512zM512 32c229.75 0 416 186.25 416 416s-186.25 416-416 416-416-186.25-416-416 186.25-416 416-416zM576 448l-256 192v-384zM704 640h-128v-384h128v384z" />
+<glyph unicode="&#xeb9b;" glyph-name="backward" d="M512-64c282.77 0 512 229.23 512 512s-229.23 512-512 512-512-229.23-512-512 229.23-512 512-512zM512 864c229.75 0 416-186.25 416-416s-186.25-416-416-416-416 186.25-416 416 186.25 416 416 416zM704 288l-224 160 224 160zM448 288l-224 160 224 160z" />
+<glyph unicode="&#xeb9c;" glyph-name="forward2" d="M512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512 512 229.23 512 512-229.23 512-512 512zM512 32c-229.75 0-416 186.25-416 416s186.25 416 416 416 416-186.25 416-416-186.25-416-416-416zM320 608l224-160-224-160zM576 608l224-160-224-160z" />
+<glyph unicode="&#xeb9d;" glyph-name="play3" d="M192 832l640-384-640-384z" />
+<glyph unicode="&#xeb9e;" glyph-name="pause2" d="M128 832h320v-768h-320zM576 832h320v-768h-320z" />
+<glyph unicode="&#xeb9f;" glyph-name="stop2" d="M128 832h768v-768h-768z" />
+<glyph unicode="&#xeba0;" glyph-name="backward2" d="M576 800v-320l320 320v-704l-320 320v-320l-352 352z" />
+<glyph unicode="&#xeba1;" glyph-name="forward3" d="M512 96v320l-320-320v704l320-320v320l352-352z" />
+<glyph unicode="&#xeba2;" glyph-name="first" d="M128 64v768h128v-352l320 320v-320l320 320v-704l-320 320v-320l-320 320v-352z" />
+<glyph unicode="&#xeba3;" glyph-name="last" d="M896 832v-768h-128v352l-320-320v320l-320-320v704l320-320v320l320-320v352z" />
+<glyph unicode="&#xeba4;" glyph-name="previous2" d="M256 64v768h128v-352l320 320v-704l-320 320v-352z" />
+<glyph unicode="&#xeba5;" glyph-name="next2" d="M768 832v-768h-128v352l-320-320v704l320-320v352z" />
+<glyph unicode="&#xeba6;" glyph-name="eject" d="M0 192h1024v-128h-1024zM512 832l512-512h-1024z" />
+<glyph unicode="&#xeba7;" glyph-name="volume-high" horiz-adv-x="1088" d="M890.040 37.96c-12.286 0-24.566 4.686-33.942 14.056-18.744 18.746-18.744 49.136 0 67.882 87.638 87.642 135.904 204.16 135.904 328.1 0 123.938-48.266 240.458-135.904 328.098-18.744 18.746-18.744 49.138 0 67.882s49.138 18.744 67.882 0c105.77-105.772 164.022-246.4 164.022-395.98s-58.252-290.208-164.022-395.98c-9.372-9.372-21.656-14.058-33.94-14.058zM719.53 128.47c-12.286 0-24.566 4.686-33.942 14.056-18.744 18.744-18.744 49.136 0 67.882 131.006 131.006 131.006 344.17 0 475.176-18.744 18.746-18.744 49.138 0 67.882 18.744 18.742 49.138 18.744 67.882 0 81.594-81.59 126.53-190.074 126.53-305.466 0-115.39-44.936-223.876-126.53-305.47-9.372-9.374-21.656-14.060-33.94-14.060v0zM549.020 218.98c-12.286 0-24.568 4.686-33.942 14.058-18.746 18.746-18.746 49.134 0 67.88 81.1 81.1 81.1 213.058 0 294.156-18.746 18.746-18.746 49.138 0 67.882s49.136 18.744 67.882 0c118.53-118.53 118.53-311.392 0-429.922-9.372-9.368-21.656-14.054-33.94-14.054zM416.006 0c-8.328 0-16.512 3.25-22.634 9.374l-246.626 246.626h-114.746c-17.672 0-32 14.326-32 32v320c0 17.672 14.328 32 32 32h114.746l246.626 246.628c9.154 9.154 22.916 11.89 34.874 6.936 11.958-4.952 19.754-16.622 19.754-29.564v-832c0-12.944-7.796-24.612-19.754-29.564-3.958-1.64-8.118-2.436-12.24-2.436z" />
+<glyph unicode="&#xeba8;" glyph-name="volume-medium" d="M719.53 128.47c-12.286 0-24.566 4.686-33.942 14.056-18.744 18.744-18.744 49.136 0 67.882 131.006 131.006 131.006 344.17 0 475.176-18.744 18.746-18.744 49.138 0 67.882 18.744 18.742 49.138 18.744 67.882 0 81.594-81.59 126.53-190.074 126.53-305.466 0-115.39-44.936-223.876-126.53-305.47-9.372-9.374-21.656-14.060-33.94-14.060v0zM549.020 218.98c-12.286 0-24.566 4.686-33.942 14.058-18.746 18.746-18.746 49.134 0 67.88 81.1 81.1 81.1 213.058 0 294.156-18.746 18.746-18.746 49.138 0 67.882s49.136 18.744 67.882 0c118.53-118.53 118.53-311.392 0-429.922-9.372-9.368-21.656-14.054-33.94-14.054zM416.006 0c-8.328 0-16.512 3.25-22.634 9.374l-246.626 246.626h-114.746c-17.672 0-32 14.326-32 32v320c0 17.672 14.328 32 32 32h114.746l246.626 246.628c9.154 9.154 22.916 11.89 34.874 6.936 11.958-4.952 19.754-16.622 19.754-29.564v-832c0-12.944-7.796-24.612-19.754-29.564-3.958-1.64-8.118-2.436-12.24-2.436z" />
+<glyph unicode="&#xeba9;" glyph-name="volume-low" d="M549.020 218.98c-12.286 0-24.566 4.686-33.942 14.058-18.746 18.746-18.746 49.134 0 67.88 81.1 81.1 81.1 213.058 0 294.156-18.746 18.746-18.746 49.138 0 67.882s49.136 18.744 67.882 0c118.53-118.53 118.53-311.392 0-429.922-9.372-9.368-21.656-14.054-33.94-14.054zM416.006 0c-8.328 0-16.512 3.25-22.634 9.374l-246.626 246.626h-114.746c-17.672 0-32 14.326-32 32v320c0 17.672 14.328 32 32 32h114.746l246.626 246.628c9.154 9.154 22.916 11.89 34.874 6.936 11.958-4.952 19.754-16.622 19.754-29.564v-832c0-12.944-7.796-24.612-19.754-29.564-3.958-1.64-8.118-2.436-12.24-2.436z" />
+<glyph unicode="&#xebaa;" glyph-name="volume-mute" d="M416.006 0c-8.328 0-16.512 3.25-22.634 9.374l-246.626 246.626h-114.746c-17.672 0-32 14.326-32 32v320c0 17.672 14.328 32 32 32h114.746l246.626 246.628c9.154 9.154 22.916 11.89 34.874 6.936 11.958-4.952 19.754-16.622 19.754-29.564v-832c0-12.944-7.796-24.612-19.754-29.564-3.958-1.64-8.118-2.436-12.24-2.436z" />
+<glyph unicode="&#xebab;" glyph-name="volume-mute2" d="M960 340.852v-84.852h-84.852l-107.148 107.148-107.148-107.148h-84.852v84.852l107.148 107.148-107.148 107.148v84.852h84.852l107.148-107.148 107.148 107.148h84.852v-84.852l-107.148-107.148 107.148-107.148zM416.006 0c-8.328 0-16.512 3.25-22.634 9.374l-246.626 246.626h-114.746c-17.672 0-32 14.326-32 32v320c0 17.672 14.328 32 32 32h114.746l246.626 246.628c9.154 9.154 22.916 11.89 34.874 6.936 11.958-4.952 19.754-16.622 19.754-29.564v-832c0-12.944-7.796-24.612-19.754-29.564-3.958-1.64-8.118-2.436-12.24-2.436z" />
+<glyph unicode="&#xebac;" glyph-name="volume-increase" d="M1024 384h-192v-192h-128v192h-192v128h192v192h128v-192h192v-128zM416.006 0c-8.328 0-16.512 3.25-22.634 9.374l-246.626 246.626h-114.746c-17.672 0-32 14.326-32 32v320c0 17.672 14.328 32 32 32h114.746l246.626 246.628c9.154 9.154 22.916 11.89 34.874 6.936 11.958-4.952 19.754-16.622 19.754-29.564v-832c0-12.944-7.796-24.612-19.754-29.564-3.958-1.64-8.118-2.436-12.24-2.436z" />
+<glyph unicode="&#xebad;" glyph-name="volume-decrease" d="M512 512h512v-128h-512v128zM416.006 0c-8.328 0-16.512 3.25-22.634 9.374l-246.626 246.626h-114.746c-17.672 0-32 14.326-32 32v320c0 17.672 14.328 32 32 32h114.746l246.626 246.628c9.154 9.154 22.916 11.89 34.874 6.936 11.958-4.952 19.754-16.622 19.754-29.564v-832c0-12.944-7.796-24.612-19.754-29.564-3.958-1.64-8.118-2.436-12.24-2.436z" />
+<glyph unicode="&#xebae;" glyph-name="loop" d="M128 640h640v-192l256 256-256 256v-192h-768v-384h128zM896 256h-640v192l-256-256 256-256v192h768v384h-128z" />
+<glyph unicode="&#xebaf;" glyph-name="loop2" d="M889.68 793.68c-93.608 102.216-228.154 166.32-377.68 166.32-282.77 0-512-229.23-512-512h96c0 229.75 186.25 416 416 416 123.020 0 233.542-53.418 309.696-138.306l-149.696-149.694h352v352l-134.32-134.32zM928 448c0-229.75-186.25-416-416-416-123.020 0-233.542 53.418-309.694 138.306l149.694 149.694h-352v-352l134.32 134.32c93.608-102.216 228.154-166.32 377.68-166.32 282.77 0 512 229.23 512 512h-96z" />
+<glyph unicode="&#xebb0;" glyph-name="infinite" d="M783.988 207.988c-64.104 0-124.372 24.96-169.7 70.288l-102.288 102.282-102.276-102.27c-45.332-45.336-105.6-70.3-169.706-70.3-64.118 0-124.39 24.964-169.722 70.3-45.332 45.334-70.296 105.604-70.296 169.712s24.964 124.38 70.296 169.714c45.334 45.332 105.608 70.296 169.714 70.296 64.108 0 124.38-24.964 169.712-70.296l102.278-102.276 102.276 102.276c45.332 45.332 105.604 70.298 169.712 70.298 64.112 0 124.384-24.966 169.71-70.298 45.338-45.334 70.302-105.606 70.302-169.714 0-64.112-24.964-124.382-70.3-169.71-45.326-45.336-105.598-70.302-169.712-70.302zM681.72 345.712c27.322-27.31 63.64-42.354 102.268-42.352 38.634 0 74.958 15.044 102.276 42.362 27.316 27.322 42.364 63.644 42.364 102.278s-15.046 74.956-42.364 102.274c-27.32 27.318-63.64 42.364-102.276 42.364-38.632 0-74.956-15.044-102.278-42.364l-102.268-102.274 102.278-102.288zM240.012 592.638c-38.634 0-74.956-15.044-102.274-42.364-27.32-27.318-42.364-63.64-42.364-102.274 0-38.632 15.044-74.954 42.364-102.276 27.32-27.316 63.642-42.364 102.274-42.364 38.634 0 74.956 15.044 102.272 42.362l102.276 102.278-102.276 102.274c-27.318 27.32-63.64 42.366-102.272 42.364v0z" />
+<glyph unicode="&#xebb1;" glyph-name="shuffle" d="M768 256h-101.49l-160 160 160 160h101.49v-160l224 224-224 224v-160h-128c-16.974 0-33.252-6.744-45.254-18.746l-178.746-178.744-178.746 178.746c-12 12-28.28 18.744-45.254 18.744h-192v-128h165.49l160-160-160-160h-165.49v-128h192c16.974 0 33.252 6.742 45.254 18.746l178.746 178.744 178.746-178.744c12.002-12.004 28.28-18.746 45.254-18.746h128v-160l224 224-224 224v-160z" />
+<glyph unicode="&#xebb2;" glyph-name="arrow-up-left" d="M0 224l256 256 544-544 224 224-544 544 255.998 256h-735.998v-736z" />
+<glyph unicode="&#xebb3;" glyph-name="arrow-up" d="M512 928l-480-480h288v-512h384v512h288z" />
+<glyph unicode="&#xebb4;" glyph-name="arrow-up-right" d="M288 960l256-256-544-544 224-224 544 544 256-255.998v735.998h-736z" />
+<glyph unicode="&#xebb5;" glyph-name="arrow-right" d="M992 448l-480 480v-288h-512v-384h512v-288z" />
+<glyph unicode="&#xebb6;" glyph-name="arrow-down-right" d="M1024 672l-256-256-544 544-224-224 544-544-255.998-256h735.998v736z" />
+<glyph unicode="&#xebb7;" glyph-name="arrow-down" d="M512-32l480 480h-288v512h-384v-512h-288z" />
+<glyph unicode="&#xebb8;" glyph-name="arrow-down-left" d="M736-64l-256 256 544 544-224 224-544-544-256 255.998v-735.998h736z" />
+<glyph unicode="&#xebb9;" glyph-name="arrow-left" d="M32 448l480-480v288h512v384h-512v288z" />
+<glyph unicode="&#xebba;" glyph-name="arrow-up-left2" d="M877.254 173.254l-530.744 530.746h229.49c35.346 0 64 28.654 64 64s-28.654 64-64 64h-384c-25.886 0-49.222-15.592-59.128-39.508-3.282-7.924-4.84-16.242-4.838-24.492h-0.034v-384c0-35.346 28.654-64 64-64s64 28.654 64 64v229.49l530.746-530.744c12.496-12.498 28.876-18.746 45.254-18.746s32.758 6.248 45.254 18.746c24.994 24.992 24.994 65.516 0 90.508z" />
+<glyph unicode="&#xebbb;" glyph-name="arrow-up2" d="M877.254 557.254l-320 320c-24.992 24.994-65.514 24.994-90.508 0l-320-320c-24.994-24.994-24.994-65.516 0-90.51 24.994-24.996 65.516-24.996 90.51 0l210.744 210.746v-613.49c0-35.346 28.654-64 64-64s64 28.654 64 64v613.49l210.746-210.746c12.496-12.496 28.876-18.744 45.254-18.744s32.758 6.248 45.254 18.746c24.994 24.994 24.994 65.514 0 90.508z" />
+<glyph unicode="&#xebbc;" glyph-name="arrow-up-right2" d="M237.254 82.746l530.746 530.744v-229.49c0-35.346 28.654-64 64-64s64 28.654 64 64v384c0 25.884-15.594 49.222-39.508 59.126-7.924 3.284-16.242 4.84-24.492 4.838v0.036h-384c-35.346 0-64-28.654-64-64 0-35.348 28.654-64 64-64h229.49l-530.744-530.746c-12.498-12.496-18.746-28.876-18.746-45.254s6.248-32.758 18.746-45.254c24.992-24.994 65.516-24.994 90.508 0z" />
+<glyph unicode="&#xebbd;" glyph-name="arrow-right2" d="M621.254 82.746l320 320c24.994 24.992 24.994 65.516 0 90.51l-320 320c-24.994 24.992-65.516 24.992-90.51 0-24.994-24.994-24.994-65.516 0-90.51l210.746-210.746h-613.49c-35.346 0-64-28.654-64-64s28.654-64 64-64h613.49l-210.746-210.746c-12.496-12.496-18.744-28.876-18.744-45.254s6.248-32.758 18.744-45.254c24.994-24.994 65.516-24.994 90.51 0z" />
+<glyph unicode="&#xebbe;" glyph-name="arrow-down-right2" d="M146.746 722.746l530.742-530.746h-229.488c-35.346 0-64-28.654-64-64s28.654-64 64-64h384c25.884 0 49.222 15.594 59.126 39.508 3.284 7.924 4.84 16.242 4.838 24.492h0.036v384c0 35.346-28.654 64-64 64-35.348 0-64-28.654-64-64v-229.49l-530.746 530.744c-12.496 12.498-28.874 18.746-45.254 18.746s-32.758-6.248-45.254-18.746c-24.994-24.992-24.994-65.516 0-90.508z" />
+<glyph unicode="&#xebbf;" glyph-name="arrow-down2" d="M877.254 338.746l-320-320c-24.992-24.994-65.514-24.994-90.508 0l-320 320c-24.994 24.994-24.994 65.516 0 90.51 24.994 24.996 65.516 24.996 90.51 0l210.744-210.746v613.49c0 35.346 28.654 64 64 64s64-28.654 64-64v-613.49l210.746 210.746c12.496 12.496 28.876 18.744 45.254 18.744s32.758-6.248 45.254-18.746c24.994-24.994 24.994-65.514 0-90.508z" />
+<glyph unicode="&#xebc0;" glyph-name="arrow-down-left2" d="M786.744 813.256l-530.744-530.744v229.49c0 35.346-28.654 64-64 64s-64-28.654-64-64v-384.002c0-25.886 15.592-49.222 39.508-59.128 7.924-3.282 16.242-4.84 24.492-4.836v-0.036l384 0.002c35.344 0 64 28.654 64 63.998 0 35.348-28.656 64-64 64h-229.49l530.744 530.746c12.496 12.496 18.746 28.876 18.746 45.256 0 16.376-6.25 32.758-18.746 45.254-24.992 24.992-65.518 24.992-90.51 0v0z" />
+<glyph unicode="&#xebc1;" glyph-name="arrow-left2" d="M402.746 82.746l-320 320c-24.994 24.992-24.994 65.516 0 90.51l320 320c24.994 24.992 65.516 24.992 90.51 0 24.994-24.994 24.994-65.516 0-90.51l-210.746-210.746h613.49c35.346 0 64-28.654 64-64s-28.654-64-64-64h-613.49l210.746-210.746c12.496-12.496 18.744-28.876 18.744-45.254s-6.248-32.758-18.744-45.254c-24.994-24.994-65.516-24.994-90.51 0z" />
+<glyph unicode="&#xebc2;" glyph-name="circle-up" d="M0 448c0-282.77 229.23-512 512-512s512 229.23 512 512-229.23 512-512 512-512-229.23-512-512zM928 448c0-229.75-186.25-416-416-416s-416 186.25-416 416 186.25 416 416 416 416-186.25 416-416zM706.744 290.744l90.512 90.512-285.256 285.254-285.254-285.256 90.508-90.508 194.746 194.744z" />
+<glyph unicode="&#xebc3;" glyph-name="circle-right" d="M512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512 512 229.23 512 512-229.23 512-512 512zM512 32c-229.75 0-416 186.25-416 416s186.25 416 416 416 416-186.25 416-416-186.25-416-416-416zM354.744 253.256l90.512-90.512 285.254 285.256-285.256 285.254-90.508-90.508 194.744-194.746z" />
+<glyph unicode="&#xebc4;" glyph-name="circle-down" d="M1024 448c0 282.77-229.23 512-512 512s-512-229.23-512-512 229.23-512 512-512 512 229.23 512 512zM96 448c0 229.75 186.25 416 416 416s416-186.25 416-416-186.25-416-416-416-416 186.25-416 416zM317.256 605.256l-90.512-90.512 285.256-285.254 285.254 285.256-90.508 90.508-194.746-194.744z" />
+<glyph unicode="&#xebc5;" glyph-name="circle-left" d="M512-64c282.77 0 512 229.23 512 512s-229.23 512-512 512-512-229.23-512-512 229.23-512 512-512zM512 864c229.75 0 416-186.25 416-416s-186.25-416-416-416-416 186.25-416 416 186.25 416 416 416zM669.256 642.744l-90.512 90.512-285.254-285.256 285.256-285.254 90.508 90.508-194.744 194.746z" />
+<glyph unicode="&#xebc6;" glyph-name="tab" d="M960 960h64v-512h-64v512zM0 448h64v-512h-64v512zM320 256h704v-128h-704v-160l-224 224 224 224v-160zM704 640h-704v128h704v160l224-224-224-224z" />
+<glyph unicode="&#xebc7;" glyph-name="move-up" d="M704 448v-384h64v384h160l-192 192-192-192zM64 768h96v-64h-96v64zM192 768h96v-64h-96v64zM320 768h64v-96h-64v96zM64 544h64v-96h-64v96zM160 512h96v-64h-96v64zM288 512h96v-64h-96v64zM64 672h64v-96h-64v96zM320 640h64v-96h-64v96zM320 256v-192h-192v192h192zM384 320h-320v-320h320v320z" />
+<glyph unicode="&#xebc8;" glyph-name="move-down" d="M768 256v384h-64v-384h-160l192-192 192 192zM320 704v-192h-192v192h192zM384 768h-320v-320h320v320zM64 320h96v-64h-96v64zM192 320h96v-64h-96v64zM320 320h64v-96h-64v96zM64 96h64v-96h-64v96zM160 64h96v-64h-96v64zM288 64h96v-64h-96v64zM64 224h64v-96h-64v96zM320 192h64v-96h-64v96z" />
+<glyph unicode="&#xebc9;" glyph-name="sort-alpha-asc" d="M320 192v768h-128v-768h-160l224-224 224 224h-160zM928-64h-256c-11.8 0-22.644 6.496-28.214 16.9-5.566 10.404-4.958 23.030 1.59 32.85l222.832 334.25h-196.208c-17.672 0-32 14.328-32 32s14.328 32 32 32h256c11.8 0 22.644-6.496 28.214-16.9 5.566-10.404 4.958-23.030-1.59-32.85l-222.83-334.25h196.206c17.672 0 32-14.328 32-32s-14.328-32-32-32zM1020.622 558.314l-192.002 384c-5.42 10.842-16.502 17.69-28.622 17.69-12.122 0-23.202-6.848-28.624-17.69l-191.996-384c-7.904-15.806-1.496-35.030 14.31-42.932 4.594-2.296 9.476-3.386 14.288-3.386 11.736 0 23.040 6.484 28.644 17.698l55.156 110.31h216.446l55.156-110.31c7.902-15.806 27.124-22.21 42.932-14.31 15.808 7.902 22.216 27.124 14.312 42.93zM723.778 704.004l76.22 152.446 76.224-152.446h-152.444z" />
+<glyph unicode="&#xebca;" glyph-name="sort-alpha-desc" d="M320 192v768h-128v-768h-160l224-224 224 224h-160zM928 512h-256c-11.8 0-22.644 6.496-28.214 16.9-5.566 10.406-4.958 23.030 1.59 32.85l222.832 334.25h-196.208c-17.672 0-32 14.328-32 32s14.328 32 32 32h256c11.8 0 22.644-6.496 28.214-16.9 5.566-10.406 4.958-23.030-1.59-32.85l-222.83-334.25h196.206c17.672 0 32-14.328 32-32s-14.328-32-32-32zM1020.622-17.69l-192.002 384c-5.42 10.842-16.502 17.69-28.622 17.69-12.122 0-23.202-6.848-28.624-17.69l-191.996-384c-7.904-15.806-1.496-35.030 14.31-42.932 4.594-2.296 9.476-3.386 14.288-3.386 11.736 0 23.040 6.484 28.644 17.698l55.158 110.31h216.446l55.156-110.31c7.902-15.806 27.124-22.21 42.932-14.31 15.806 7.902 22.214 27.124 14.31 42.93zM723.778 128l76.22 152.446 76.226-152.446h-152.446z" />
+<glyph unicode="&#xebcb;" glyph-name="sort-numeric-asc" d="M320 192v768h-128v-768h-160l224-224 224 224h-160zM864 512c-17.674 0-32 14.328-32 32v352h-32c-17.674 0-32 14.328-32 32s14.326 32 32 32h64c17.674 0 32-14.328 32-32v-384c0-17.672-14.326-32-32-32zM928 384h-192c-17.674 0-32-14.326-32-32v-192c0-17.674 14.326-32 32-32h160v-128h-160c-17.674 0-32-14.326-32-32s14.326-32 32-32h192c17.674 0 32 14.326 32 32v384c0 17.674-14.326 32-32 32zM768 320h128v-128h-128v128z" />
+<glyph unicode="&#xebcc;" glyph-name="sort-numberic-desc" d="M320 192v768h-128v-768h-160l224-224 224 224h-160zM864-64c-17.674 0-32 14.328-32 32v352h-32c-17.674 0-32 14.328-32 32s14.326 32 32 32h64c17.674 0 32-14.328 32-32v-384c0-17.672-14.326-32-32-32zM928 960h-192c-17.674 0-32-14.326-32-32v-192c0-17.674 14.326-32 32-32h160v-128h-160c-17.674 0-32-14.326-32-32s14.326-32 32-32h192c17.674 0 32 14.326 32 32v384c0 17.674-14.326 32-32 32zM768 896h128v-128h-128v128z" />
+<glyph unicode="&#xebcd;" glyph-name="sort-amount-asc" d="M320 192v768h-128v-768h-160l224-224 224 224h-160zM448 384h576v-128h-576v128zM448 576h448v-128h-448v128zM448 768h320v-128h-320v128zM448 960h192v-128h-192v128z" />
+<glyph unicode="&#xebce;" glyph-name="sort-amount-desc" d="M320 192v768h-128v-768h-160l224-224 224 224h-160zM448 960h576v-128h-576v128zM448 768h448v-128h-448v128zM448 576h320v-128h-320v128zM448 384h192v-128h-192v128z" />
+<glyph unicode="&#xebcf;" glyph-name="command" d="M736 64c-88.224 0-160 71.776-160 160v96h-128v-96c0-88.224-71.776-160-160-160s-160 71.776-160 160 71.776 160 160 160h96v128h-96c-88.224 0-160 71.776-160 160s71.776 160 160 160 160-71.776 160-160v-96h128v96c0 88.224 71.776 160 160 160s160-71.776 160-160-71.776-160-160-160h-96v-128h96c88.224 0 160-71.776 160-160s-71.774-160-160-160zM640 320v-96c0-52.934 43.066-96 96-96s96 43.066 96 96-43.066 96-96 96h-96zM288 320c-52.934 0-96-43.066-96-96s43.066-96 96-96 96 43.066 96 96v96h-96zM448 384h128v128h-128v-128zM640 576h96c52.934 0 96 43.066 96 96s-43.066 96-96 96-96-43.066-96-96v-96zM288 768c-52.934 0-96-43.066-96-96s43.066-96 96-96h96v96c0 52.934-43.064 96-96 96z" />
+<glyph unicode="&#xebd0;" glyph-name="shift" d="M672 64h-320c-17.672 0-32 14.326-32 32v352h-128c-12.942 0-24.612 7.796-29.564 19.754-4.954 11.958-2.214 25.722 6.936 34.874l320 320c12.498 12.496 32.758 12.496 45.254 0l320-320c9.152-9.152 11.89-22.916 6.938-34.874s-16.62-19.754-29.564-19.754h-128v-352c0-17.674-14.326-32-32-32zM384 128h256v352c0 17.672 14.326 32 32 32h82.744l-242.744 242.746-242.744-242.746h82.744c17.672 0 32-14.328 32-32v-352z" />
+<glyph unicode="&#xebd1;" glyph-name="ctrl" d="M736.014 512c-8.908 0-17.77 3.698-24.096 10.928l-199.918 228.478-199.918-228.478c-11.636-13.3-31.856-14.65-45.154-3.010-13.3 11.638-14.648 31.854-3.010 45.154l224 256c6.076 6.944 14.854 10.928 24.082 10.928s18.006-3.984 24.082-10.928l224-256c11.638-13.3 10.292-33.516-3.010-45.154-6.070-5.312-13.582-7.918-21.058-7.918z" />
+<glyph unicode="&#xebd2;" glyph-name="opt" d="M928 128h-256c-12.646 0-24.106 7.448-29.242 19.004l-247.554 556.996h-299.204c-17.672 0-32 14.328-32 32s14.328 32 32 32h320c12.646 0 24.106-7.448 29.242-19.004l247.556-556.996h235.202c17.674 0 32-14.326 32-32s-14.326-32-32-32zM928 704h-320c-17.674 0-32 14.328-32 32s14.326 32 32 32h320c17.674 0 32-14.328 32-32s-14.326-32-32-32z" />
+<glyph unicode="&#xebd3;" glyph-name="checkbox-checked" d="M896 960h-768c-70.4 0-128-57.6-128-128v-768c0-70.4 57.6-128 128-128h768c70.4 0 128 57.6 128 128v768c0 70.4-57.6 128-128 128zM448 165.49l-237.254 237.256 90.51 90.508 146.744-146.744 306.746 306.746 90.508-90.51-397.254-397.256z" />
+<glyph unicode="&#xebd4;" glyph-name="checkbox-unchecked" d="M896 960h-768c-70.4 0-128-57.6-128-128v-768c0-70.4 57.6-128 128-128h768c70.4 0 128 57.6 128 128v768c0 70.4-57.6 128-128 128zM896 64h-768v768h768v-768z" />
+<glyph unicode="&#xebd5;" glyph-name="radio-checked" d="M512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512 512 229.23 512 512-229.23 512-512 512zM512 64c-212.078 0-384 171.922-384 384s171.922 384 384 384c212.078 0 384-171.922 384-384s-171.922-384-384-384zM320 448c0 106.039 85.961 192 192 192s192-85.961 192-192c0-106.039-85.961-192-192-192s-192 85.961-192 192z" />
+<glyph unicode="&#xebd6;" glyph-name="radio-checked2" d="M512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512 512 229.23 512 512-229.23 512-512 512zM512 320c-70.692 0-128 57.306-128 128 0 70.692 57.308 128 128 128 70.694 0 128-57.308 128-128 0-70.694-57.306-128-128-128z" />
+<glyph unicode="&#xebd7;" glyph-name="radio-unchecked" d="M512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512 512 229.23 512 512-229.23 512-512 512zM512 64c-212.078 0-384 171.922-384 384s171.922 384 384 384c212.078 0 384-171.922 384-384s-171.922-384-384-384z" />
+<glyph unicode="&#xebd8;" glyph-name="crop" d="M832 704l192 192-64 64-192-192h-448v192h-128v-192h-192v-128h192v-512h512v-192h128v192h192v128h-192v448zM320 640h320l-320-320v320zM384 256l320 320v-320h-320z" />
+<glyph unicode="&#xebd9;" glyph-name="make-group" d="M320 832h-128c-35.2 0-64-28.8-64-64v-128c0-35.2 28.8-64 64-64h128c35.2 0 64 28.8 64 64v128c0 35.2-28.8 64-64 64zM704 576h128c35.2 0 64 28.8 64 64v128c0 35.2-28.8 64-64 64h-128c-35.2 0-64-28.8-64-64v-128c0-35.2 28.8-64 64-64zM704 768h128v-128h-128v128zM320 320h-128c-35.2 0-64-28.8-64-64v-128c0-35.2 28.8-64 64-64h128c35.2 0 64 28.8 64 64v128c0 35.2-28.8 64-64 64zM320 128h-128v128h128v-128zM832 320h-128c-35.2 0-64-28.8-64-64v-128c0-35.2 28.8-64 64-64h128c35.2 0 64 28.8 64 64v128c0 35.2-28.8 64-64 64zM896 448h-64c-85.476 0-165.834 33.286-226.274 93.724-60.44 60.442-93.726 140.802-93.726 226.276v64c0 70.4-57.6 128-128 128h-256c-70.4 0-128-57.6-128-128v-256c0-70.4 57.6-128 128-128h64c85.476 0 165.834-33.286 226.274-93.724 60.44-60.442 93.726-140.802 93.726-226.276v-64c0-70.4 57.6-128 128-128h256c70.4 0 128 57.6 128 128v256c0 70.4-57.6 128-128 128zM960 64c0-16.954-6.696-32.986-18.856-45.144-12.158-12.16-28.19-18.856-45.144-18.856h-256c-16.954 0-32.986 6.696-45.144 18.856-12.16 12.158-18.856 28.19-18.856 45.144v64c0 212.078-171.922 384-384 384h-64c-16.954 0-32.986 6.696-45.146 18.854-12.158 12.16-18.854 28.192-18.854 45.146v256c0 16.954 6.696 32.986 18.854 45.146 12.16 12.158 28.192 18.854 45.146 18.854h256c16.954 0 32.986-6.696 45.146-18.854 12.158-12.16 18.854-28.192 18.854-45.146v-64c0-212.078 171.922-384 384-384h64c16.954 0 32.986-6.696 45.144-18.856 12.16-12.158 18.856-28.19 18.856-45.144v-256z" />
+<glyph unicode="&#xebda;" glyph-name="ungroup" d="M384 496c0-26.4-21.6-48-48-48h-96c-26.4 0-48 21.6-48 48v96c0 26.4 21.6 48 48 48h96c26.4 0 48-21.6 48-48v-96zM704 496c0-26.4-21.6-48-48-48h-96c-26.4 0-48 21.6-48 48v96c0 26.4 21.6 48 48 48h96c26.4 0 48-21.6 48-48v-96zM384 176c0-26.4-21.6-48-48-48h-96c-26.4 0-48 21.6-48 48v96c0 26.4 21.6 48 48 48h96c26.4 0 48-21.6 48-48v-96zM704 176c0-26.4-21.6-48-48-48h-96c-26.4 0-48 21.6-48 48v96c0 26.4 21.6 48 48 48h96c26.4 0 48-21.6 48-48v-96zM912.082 800l111.918 111.916v48.084h-48.082l-111.918-111.916-111.918 111.916h-48.082v-48.084l111.918-111.916-111.918-111.916v-48.084h48.082l111.918 111.916 111.918-111.916h48.082v48.084zM0 192h64v-128h-64v128zM0 384h64v-128h-64v128zM832 512h64v-128h-64v128zM832 128h64v-128h-64v128zM832 320h64v-128h-64v128zM0 576h64v-128h-64v128zM0 768h64v-128h-64v128zM512 832h128v-64h-128v64zM320 832h128v-64h-128v64zM128 832h128v-64h-128v64zM448 0h128v-64h-128v64zM640 0h128v-64h-128v64zM256 0h128v-64h-128v64zM64 0h128v-64h-128v64z" />
+<glyph unicode="&#xebdb;" glyph-name="scissors" d="M913.826 280.306c-66.684 104.204-181.078 150.064-255.51 102.434-6.428-4.116-12.334-8.804-17.744-13.982l-79.452 124.262 183.462 287.972c15.016 27.73 20.558 60.758 13.266 93.974-6.972 31.75-24.516 58.438-48.102 77.226l-12.278 7.808-217.468-340.114-217.47 340.114-12.276-7.806c-23.586-18.79-41.13-45.476-48.1-77.226-7.292-33.216-1.75-66.244 13.264-93.974l183.464-287.972-79.454-124.262c-5.41 5.178-11.316 9.868-17.744 13.982-74.432 47.63-188.826 1.77-255.51-102.434-66.68-104.2-60.398-227.286 14.032-274.914 74.43-47.632 188.824-1.77 255.508 102.432l164.286 257.87 164.288-257.872c66.684-104.202 181.078-150.064 255.508-102.432 74.428 47.63 80.71 170.716 14.030 274.914zM234.852 159.57c-30.018-46.904-68.534-69.726-94.572-75.446-0.004 0-0.004 0-0.004 0-8.49-1.868-20.294-3.010-28.324 2.128-8.898 5.694-14.804 20.748-15.8 40.276-1.616 31.644 9.642 68.836 30.888 102.034 30.014 46.906 68.53 69.726 94.562 75.444 8.496 1.866 20.308 3.010 28.336-2.126 8.898-5.694 14.802-20.75 15.798-40.272 1.618-31.65-9.64-68.84-30.884-102.038zM480 448c-17.672 0-32 14.328-32 32s14.328 32 32 32 32-14.328 32-32-14.328-32-32-32zM863.85 126.53c-0.996-19.528-6.902-34.582-15.8-40.276-8.030-5.138-19.834-3.996-28.324-2.128 0 0 0 0-0.004 0-26.040 5.718-64.554 28.542-94.572 75.446-21.244 33.198-32.502 70.388-30.884 102.038 0.996 19.522 6.9 34.578 15.798 40.272 8.028 5.136 19.84 3.992 28.336 2.126 26.034-5.716 64.548-28.538 94.562-75.444 21.246-33.198 32.502-70.39 30.888-102.034z" />
+<glyph unicode="&#xebdc;" glyph-name="filter" d="M512 960c-282.77 0-512-71.634-512-160v-96l384-384v-320c0-35.346 57.306-64 128-64 70.692 0 128 28.654 128 64v320l384 384v96c0 88.366-229.23 160-512 160zM94.384 821.176c23.944 13.658 57.582 26.62 97.278 37.488 87.944 24.076 201.708 37.336 320.338 37.336 118.628 0 232.394-13.26 320.338-37.336 39.696-10.868 73.334-23.83 97.28-37.488 15.792-9.006 24.324-16.624 28.296-21.176-3.972-4.552-12.506-12.168-28.296-21.176-23.946-13.658-57.584-26.62-97.28-37.488-87.942-24.076-201.708-37.336-320.338-37.336s-232.394 13.26-320.338 37.336c-39.696 10.868-73.334 23.83-97.278 37.488-15.792 9.008-24.324 16.624-28.298 21.176 3.974 4.552 12.506 12.168 28.298 21.176z" />
+<glyph unicode="&#xebdd;" glyph-name="font" d="M799.596 943.792c-90.526 0-148.62 16.208-241.848 16.208-301.284 0-441.792-171.584-441.792-345.872 0-102.678 48.64-136.458 144.564-136.458-6.758 14.864-18.914 31.080-18.914 104.034 0 204.010 77.006 263.458 175.636 267.51 0 0-80.918-793.374-315.778-888.542v-24.672h316.594l108.026 512h197.844l44.072 128h-214.908l51.944 246.19c59.446-12.156 117.542-24.316 167.532-24.316 62.148 0 118.894 18.914 149.968 162.126-37.826-12.16-78.362-16.208-122.94-16.208z" />
+<glyph unicode="&#xebde;" glyph-name="ligature" d="M768 88.178c0 0.040 0.002 0.076 0.002 0.116l-0.344 436.562-127.492-6.19h-251.93v21.494c0 81.542 5.8 162.976 17.24 194.716 7.896 21.948 22.598 41.744 43.698 58.836 20.618 16.702 41.178 25.17 61.11 25.17 16.772 0 30.702-2.878 41.402-8.554 15.026-8.562 29.716-22.964 43.67-42.818 36.95-52.504 51.99-66.454 60.094-72.376 13.804-10.094 30.512-15.212 49.658-15.212 18.668 0 34.962 6.97 48.436 20.714 13.372 13.636 20.15 30.682 20.15 50.666 0 21.452-8.916 44.204-26.502 67.622-17.184 22.888-43.708 41.742-78.834 56.032-34.322 13.964-72.94 21.044-114.778 21.044-60.716 0-116.012-14.596-164.356-43.384-48.424-28.834-85.558-68.952-110.37-119.24-22.994-46.604-21.334-134.706-22.732-214.712h-125.732v-71.402h125.598v-324.668c0-71.666-21.906-91.008-30.216-101.324-11.436-14.202-32.552-29.104-60.444-29.104h-38.654v-56.166h385.326v56.168h-6.708c-91.144 0-117.020 9.832-117.020 120.842 0 0.018 0 0.034 0 0.048l-0.038 334.206h140.204c74.404 0 91.496-3.444 95.392-4.924 4.706-1.79 10.798-4.832 13.084-9.144 0.868-1.684 5.194-25.008 5.194-82.972v-250.67c0-58.454-7.124-77.896-11.45-84.402-9.248-14.194-20.41-22.066-54.66-22.904v-56.248h293.61v55.846c-91.608 0-101.608 9.82-101.608 96.332z" />
+<glyph unicode="&#xebdf;" glyph-name="ligature2" d="M855.328 42.546c-11.734 0-83.62 13.2-88.020 29.338-10.274 39.612-11.738 82.152-11.738 130.568v540.974c0 80.686 16.138 127.632 16.138 127.632-1.468 7.334-8.804 23.472-17.604 23.472h-4.404c-4.4 0-55.746-32.276-102.692-32.276-38.14 0.002-61.89 33.746-105.902 33.746-185.106 0-271.942-150.31-271.942-363.032v-11.072c0-4.402-2.934-8.804-7.336-8.804h-60.148c-7.336 0-22.006-41.078-22.006-60.148 0-5.87 1.466-8.8 4.4-8.8h77.754c4.402 0 7.336-5.872 7.336-10.27 0-130.566-1.466-259.298-1.466-259.298 0-20.54-1.466-66.016-10.27-102.692-4.4-16.138-71.884-29.338-89.488-29.338-7.334 0-7.334-35.212 0-42.546 60.148 2.934 99.758 7.334 159.908 7.334 55.75 0 98.292-4.4 156.974-7.334 2.934 8.802 2.934 42.546-4.4 42.546-11.736 0-83.624 13.2-88.022 29.338-10.27 39.612-10.27 82.152-11.738 130.568v232.888c0 4.402 4.402 8.804 8.802 8.804h151.104c10.27 20.538 17.606 45.476 17.606 58.68 0 8.802 0 10.27-7.336 10.27h-162.84c-2.934 0-7.336 4.402-7.336 7.334v52.82c0 130.568 53.482 245.538 142.97 245.538 63.372 0 118.666-41.060 118.666-197.922 0-0.006 0-0.012 0-0.018 0.208-4.036 0.314-7.294 0.314-9.452v-436.816c0-20.54-1.47-66.016-10.27-102.692-4.404-16.138-71.884-29.338-89.492-29.338-7.336 0-7.336-35.212 0-42.546 60.15 2.934 99.762 7.334 159.912 7.334 55.746 0 98.288-4.4 156.972-7.334 2.928 8.8 2.928 42.544-4.406 42.544z" />
+<glyph unicode="&#xebe0;" glyph-name="text-height" d="M896 192h128l-160-192-160 192h128v512h-128l160 192 160-192h-128zM640 896v-256l-64 128h-192v-704h128v-64h-384v64h128v704h-192l-64-128v256z" />
+<glyph unicode="&#xebe1;" glyph-name="text-width" d="M256 64v-128l-192 160 192 160v-128h512v128l192-160-192-160v128zM832 896v-256l-64 128h-192v-448h128v-64h-384v64h128v448h-192l-64-128v256z" />
+<glyph unicode="&#xebe2;" glyph-name="font-size" d="M64 448h384v-128h-128v-384h-128v384h-128zM960 704h-251.75v-768h-136.5v768h-251.75v128h640z" />
+<glyph unicode="&#xebe3;" glyph-name="bold" d="M707.88 475.348c37.498 44.542 60.12 102.008 60.12 164.652 0 141.16-114.842 256-256 256h-320v-896h384c141.158 0 256 114.842 256 256 0 92.956-49.798 174.496-124.12 219.348zM384 768h101.5c55.968 0 101.5-57.42 101.5-128s-45.532-128-101.5-128h-101.5v256zM543 128h-159v256h159c58.45 0 106-57.42 106-128s-47.55-128-106-128z" />
+<glyph unicode="&#xebe4;" glyph-name="underline" d="M704 896h128v-416c0-159.058-143.268-288-320-288-176.73 0-320 128.942-320 288v416h128v-416c0-40.166 18.238-78.704 51.354-108.506 36.896-33.204 86.846-51.494 140.646-51.494s103.75 18.29 140.646 51.494c33.116 29.802 51.354 68.34 51.354 108.506v416zM192 128h640v-128h-640z" />
+<glyph unicode="&#xebe5;" glyph-name="italic" d="M896 896v-64h-128l-320-768h128v-64h-448v64h128l320 768h-128v64z" />
+<glyph unicode="&#xebe6;" glyph-name="strikethrough" d="M1024 448v-64h-234.506c27.504-38.51 42.506-82.692 42.506-128 0-70.878-36.66-139.026-100.58-186.964-59.358-44.518-137.284-69.036-219.42-69.036-82.138 0-160.062 24.518-219.42 69.036-63.92 47.938-100.58 116.086-100.58 186.964h128c0-69.382 87.926-128 192-128s192 58.618 192 128c0 69.382-87.926 128-192 128h-512v64h299.518c-2.338 1.654-4.656 3.324-6.938 5.036-63.92 47.94-100.58 116.086-100.58 186.964s36.66 139.024 100.58 186.964c59.358 44.518 137.282 69.036 219.42 69.036 82.136 0 160.062-24.518 219.42-69.036 63.92-47.94 100.58-116.086 100.58-186.964h-128c0 69.382-87.926 128-192 128s-192-58.618-192-128c0-69.382 87.926-128 192-128 78.978 0 154.054-22.678 212.482-64h299.518z" />
+<glyph unicode="&#xebe7;" glyph-name="omega" d="M704 64h256l64 128v-256h-384v214.214c131.112 56.484 224 197.162 224 361.786 0 214.432-157.598 382.266-352 382.266-194.406 0-352-167.832-352-382.266 0-164.624 92.886-305.302 224-361.786v-214.214h-384v256l64-128h256v32.59c-187.63 66.46-320 227.402-320 415.41 0 247.424 229.23 448 512 448s512-200.576 512-448c0-188.008-132.37-348.95-320-415.41v-32.59z" />
+<glyph unicode="&#xebe8;" glyph-name="sigma" d="M941.606 225.292l44.394 94.708h38l-64-384h-960v74.242l331.546 391.212-331.546 331.546v227h980l44-256h-34.376l-18.72 38.88c-35.318 73.364-61.904 89.12-138.904 89.12h-662l353.056-353.056-297.42-350.944h542.364c116.008 0 146.648 41.578 173.606 97.292z" />
+<glyph unicode="&#xebe9;" glyph-name="page-break" d="M0 448h128v-64h-128zM192 448h192v-64h-192zM448 448h128v-64h-128zM640 448h192v-64h-192zM896 448h128v-64h-128zM880 960l16-448h-768l16 448h32l16-384h640l16 384zM144-64l-16 384h768l-16-384h-32l-16 320h-640l-16-320z" />
+<glyph unicode="&#xebea;" glyph-name="superscript" d="M768 754v-50h128v-64h-192v146l128 60v50h-128v64h192v-146zM676 704h-136l-188-188-188 188h-136l256-256-256-256h136l188 188 188-188h136l-256 256z" />
+<glyph unicode="&#xebeb;" glyph-name="subscript" d="M768 50v-50h128v-64h-192v146l128 60v50h-128v64h192v-146zM676 704h-136l-188-188-188 188h-136l256-256-256-256h136l188 188 188-188h136l-256 256z" />
+<glyph unicode="&#xebec;" glyph-name="superscript2" d="M194.018 128l57.6 192h264.764l57.6-192h113.632l-192 640h-223.232l-192-640h113.636zM347.618 640h72.764l57.6-192h-187.964l57.6 192zM704 128l160 256 160-256h-320zM864 832h-64c-17.644 0-32 14.356-32 32s14.356 32 32 32h128c17.674 0 32 14.328 32 32s-14.326 32-32 32h-128c-52.936 0-96-43.066-96-96 0-24.568 9.288-47.002 24.524-64 17.588-19.624 43.11-32 71.476-32h64c17.644 0 32-14.356 32-32s-14.356-32-32-32h-128c-17.674 0-32-14.328-32-32s14.326-32 32-32h128c52.936 0 96 43.066 96 96 0 24.568-9.288 47.002-24.524 64-17.588 19.624-43.108 32-71.476 32z" />
+<glyph unicode="&#xebed;" glyph-name="subscript2" d="M194.018 128l57.6 192h264.764l57.6-192h113.632l-192 640h-223.232l-192-640h113.636zM347.618 640h72.764l57.6-192h-187.964l57.6 192zM1024 768l-160-256-160 256h320zM864 128h-64c-17.644 0-32 14.356-32 32s14.356 32 32 32h128c17.674 0 32 14.328 32 32s-14.326 32-32 32h-128c-52.936 0-96-43.066-96-96 0-24.568 9.29-47.002 24.524-64 17.588-19.624 43.112-32 71.476-32h64c17.644 0 32-14.356 32-32s-14.356-32-32-32h-128c-17.674 0-32-14.328-32-32s14.326-32 32-32h128c52.936 0 96 43.066 96 96 0 24.568-9.29 47.002-24.524 64-17.588 19.624-43.108 32-71.476 32z" />
+<glyph unicode="&#xebee;" glyph-name="text-color" d="M322.018 128l57.6 192h264.764l57.6-192h113.632l-191.996 640h-223.236l-192-640h113.636zM475.618 640h72.764l57.6-192h-187.964l57.6 192z" />
+<glyph unicode="&#xebef;" glyph-name="pagebreak" d="M256 576v384h768v-384h-64v320h-640v-320zM1024 384v-448h-768v448h64v-384h640v384zM512 512h128v-64h-128zM320 512h128v-64h-128zM704 512h128v-64h-128zM896 512h128v-64h-128zM0 672l192-192-192-192z" />
+<glyph unicode="&#xebf0;" glyph-name="clear-formatting" d="M0 64h576v-128h-576zM896 832h-302.56l-183.764-704h-132.288l183.762 704h-269.15v128h704zM929.774-64l-129.774 129.774-129.774-129.774-62.226 62.226 129.774 129.774-129.774 129.774 62.226 62.226 129.774-129.774 129.774 129.774 62.226-62.226-129.774-129.774 129.774-129.774z" />
+<glyph unicode="&#xebf1;" glyph-name="table" d="M0 768v-704h1024v704h-1024zM384 320v128h256v-128h-256zM640 256v-128h-256v128h256zM640 640v-128h-256v128h256zM320 640v-128h-256v128h256zM64 448h256v-128h-256v128zM704 448h256v-128h-256v128zM704 512v128h256v-128h-256zM64 256h256v-128h-256v128zM704 128v128h256v-128h-256z" />
+<glyph unicode="&#xebf2;" glyph-name="table2" d="M0 896v-896h1024v896h-1024zM384 320v192h256v-192h-256zM640 256v-192h-256v192h256zM640 768v-192h-256v192h256zM320 768v-192h-256v192h256zM64 512h256v-192h-256v192zM704 512h256v-192h-256v192zM704 576v192h256v-192h-256zM64 256h256v-192h-256v192zM704 64v192h256v-192h-256z" />
+<glyph unicode="&#xebf3;" glyph-name="insert-template" d="M384 768h128v-64h-128zM576 768h128v-64h-128zM896 768v-256h-192v64h128v128h-64v64zM320 576h128v-64h-128zM512 576h128v-64h-128zM192 704v-128h64v-64h-128v256h192v-64zM384 384h128v-64h-128zM576 384h128v-64h-128zM896 384v-256h-192v64h128v128h-64v64zM320 192h128v-64h-128zM512 192h128v-64h-128zM192 320v-128h64v-64h-128v256h192v-64zM960 896h-896v-896h896v896zM1024 960v0-1024h-1024v1024h1024z" />
+<glyph unicode="&#xebf4;" glyph-name="pilcrow" d="M384 960h512v-128h-128v-896h-128v896h-128v-896h-128v512c-141.384 0-256 114.616-256 256s114.616 256 256 256z" />
+<glyph unicode="&#xebf5;" glyph-name="ltr" d="M512 960c-141.384 0-256-114.616-256-256s114.616-256 256-256v-512h128v896h128v-896h128v896h128v128h-512zM0 256l256 256-256 256z" />
+<glyph unicode="&#xebf6;" glyph-name="rtl" d="M256 960c-141.384 0-256-114.616-256-256s114.616-256 256-256v-512h128v896h128v-896h128v896h128v128h-512zM1024 768l-256-256 256-256z" />
+<glyph unicode="&#xebf7;" glyph-name="section" d="M495.964-64c-49.36 0-91.116 14.406-124.104 42.82-33.224 28.614-50.068 62.038-50.068 99.344 0 18.128 6.6 33.756 19.622 46.458 13.232 12.914 29.782 19.744 47.85 19.744 18.002 0 34.194-6.41 46.826-18.542 12.472-11.972 18.796-27.824 18.796-47.104 0-11.318-1.85-23.818-5.494-37.146-3.616-13.178-4.376-19.938-4.376-23.292 0-3.682 0.924-8.076 7.774-12.756 12.76-8.824 28.066-13.084 46.876-13.084 22.576 0 42.718 7.858 61.574 24.022 18.578 15.942 27.612 32.318 27.612 50.056 0 19.736-5.27 36.826-16.12 52.242-18.336 25.758-52.878 55.954-102.612 89.668-79.858 53.454-133.070 99.766-162.58 141.52-22.89 32.684-34.476 67.89-34.476 104.704 0 37.062 12.142 73.948 36.092 109.63 20.508 30.554 50.8 58.12 90.228 82.138-21.096 22.7-36.896 44.064-47.094 63.688-12.872 24.76-19.398 50.372-19.398 76.122 0 47.814 18.91 89.16 56.206 122.89 37.32 33.76 83.86 50.878 138.322 50.878 50.086 0 92.206-14.082 125.182-41.852 33.328-28.082 50.222-60.898 50.222-97.54 0-18.656-6.986-35.364-20.766-49.66l-0.276-0.282c-7.976-7.924-22.618-17.37-47.046-17.37-19.148 0-35.934 6.272-48.54 18.136-12.558 11.794-18.93 25.918-18.93 41.966 0 6.934 1.702 17.416 5.352 32.98 1.778 7.364 2.668 14.142 2.668 20.25 0 10.338-3.726 18.272-11.724 24.966-8.282 6.93-20.108 10.302-36.142 10.302-24.868 0-45.282-7.562-62.41-23.118-17.19-15.606-25.544-34.088-25.544-56.508 0-20.156 4.568-36.762 13.58-49.362 17.112-23.938 46.796-49.79 88.22-76.836 84.17-54.588 142.902-104.672 174.518-148.826 23.35-33.12 35.152-68.34 35.152-104.792 0-36.598-11.882-73.496-35.318-109.676-20.208-31.18-50.722-59.276-90.884-83.71 22.178-23.466 37.812-44.042 47.554-62.538 12.082-22.97 18.208-48.048 18.208-74.542 0-49.664-18.926-91.862-56.244-125.422-37.34-33.554-83.866-50.566-138.288-50.566zM446.416 603.654c-48.222-28.952-71.712-62.19-71.712-101.314 0-22.756 6.498-43.13 19.86-62.278 19.936-27.926 59.27-62.054 116.804-101.288 24.358-16.586 46.36-32.712 65.592-48.060 49.060 29.504 72.956 62.366 72.956 100.178 0 20.598-8.142 42.774-24.204 65.916-16.808 24.196-52.85 55.796-107.128 93.914-28.328 19.562-52.558 37.334-72.168 52.932z" />
+<glyph unicode="&#xebf8;" glyph-name="paragraph-left" d="M0 896h1024v-128h-1024zM0 704h640v-128h-640zM0 320h640v-128h-640zM0 512h1024v-128h-1024zM0 128h1024v-128h-1024z" />
+<glyph unicode="&#xebf9;" glyph-name="paragraph-center" d="M0 896h1024v-128h-1024zM192 704h640v-128h-640zM192 320h640v-128h-640zM0 512h1024v-128h-1024zM0 128h1024v-128h-1024z" />
+<glyph unicode="&#xebfa;" glyph-name="paragraph-right" d="M0 896h1024v-128h-1024zM384 704h640v-128h-640zM384 320h640v-128h-640zM0 512h1024v-128h-1024zM0 128h1024v-128h-1024z" />
+<glyph unicode="&#xebfb;" glyph-name="paragraph-justify" d="M0 896h1024v-128h-1024zM0 704h1024v-128h-1024zM0 512h1024v-128h-1024zM0 320h1024v-128h-1024zM0 128h1024v-128h-1024z" />
+<glyph unicode="&#xebfc;" glyph-name="indent-increase" d="M0 896h1024v-128h-1024zM384 704h640v-128h-640zM384 512h640v-128h-640zM384 320h640v-128h-640zM0 128h1024v-128h-1024zM0 256v384l256-192z" />
+<glyph unicode="&#xebfd;" glyph-name="indent-decrease" d="M0 896h1024v-128h-1024zM384 704h640v-128h-640zM384 512h640v-128h-640zM384 320h640v-128h-640zM0 128h1024v-128h-1024zM256 640v-384l-256 192z" />
+<glyph unicode="&#xebfe;" glyph-name="share" d="M256 320c0 0 58.824 192 384 192v-192l384 256-384 256v-192c-256 0-384-159.672-384-320zM704 192h-576v384h125.876c10.094 11.918 20.912 23.334 32.488 34.18 43.964 41.19 96.562 72.652 156.114 93.82h-442.478v-640h832v268.624l-128-85.334v-55.29z" />
+<glyph unicode="&#xebff;" glyph-name="new-tab" d="M192 896v-768h768v768h-768zM896 192h-640v640h640v-640zM128 64v672l-64 64v-800h800l-64 64h-672zM352 704l160-160-192-192 96-96 192 192 160-160v416z" />
+<glyph unicode="&#xec00;" glyph-name="embed" d="M576 224l96-96 320 320-320 320-96-96 224-224zM448 672l-96 96-320-320 320-320 96 96-224 224z" />
+<glyph unicode="&#xec01;" glyph-name="embed2" horiz-adv-x="1280" d="M832 224l96-96 320 320-320 320-96-96 224-224zM448 672l-96 96-320-320 320-320 96 96-224 224zM701.298 809.481l69.468-18.944-191.987-704.026-69.468 18.944 191.987 704.026z" />
+<glyph unicode="&#xec02;" glyph-name="terminal" d="M0 896v-896h1024v896h-1024zM960 64h-896v768h896v-768zM896 768h-768v-640h768v640zM448 448h-64v-64h-64v-64h-64v64h64v64h64v64h-64v64h-64v64h64v-64h64v-64h64v-64zM704 320h-192v64h192v-64z" />
+<glyph unicode="&#xec03;" glyph-name="share2" d="M864 256c-45.16 0-85.92-18.738-115.012-48.83l-431.004 215.502c1.314 8.252 2.016 16.706 2.016 25.328s-0.702 17.076-2.016 25.326l431.004 215.502c29.092-30.090 69.852-48.828 115.012-48.828 88.366 0 160 71.634 160 160s-71.634 160-160 160-160-71.634-160-160c0-8.622 0.704-17.076 2.016-25.326l-431.004-215.504c-29.092 30.090-69.852 48.83-115.012 48.83-88.366 0-160-71.636-160-160 0-88.368 71.634-160 160-160 45.16 0 85.92 18.738 115.012 48.828l431.004-215.502c-1.312-8.25-2.016-16.704-2.016-25.326 0-88.368 71.634-160 160-160s160 71.632 160 160c0 88.364-71.634 160-160 160z" />
+<glyph unicode="&#xec04;" glyph-name="mail" d="M853.31 960h-682.62c-93.88 0-170.69-76.784-170.69-170.658v-682.656c0-93.876 76.81-170.686 170.69-170.686h682.622c93.938 0 170.688 76.81 170.688 170.686v682.656c0 93.874-76.75 170.658-170.69 170.658zM256 704h512c9.138 0 18.004-1.962 26.144-5.662l-282.144-329.168-282.144 329.17c8.14 3.696 17.006 5.66 26.144 5.66zM192 256v384c0 1.34 0.056 2.672 0.14 4l187.664-218.94-185.598-185.6c-1.444 5.338-2.206 10.886-2.206 16.54zM768 192h-512c-5.654 0-11.202 0.762-16.54 2.206l182.118 182.118 90.422-105.496 90.424 105.494 182.116-182.118c-5.34-1.442-10.886-2.204-16.54-2.204zM832 256c0-5.654-0.762-11.2-2.206-16.54l-185.598 185.598 187.664 218.942c0.084-1.328 0.14-2.66 0.14-4v-384z" />
+<glyph unicode="&#xec05;" glyph-name="mail2" d="M853.342 960h-682.656c-93.874 0-170.686-76.81-170.686-170.69v-682.622c0-93.938 76.812-170.688 170.686-170.688h682.656c93.876 0 170.658 76.75 170.658 170.69v682.62c0 93.88-76.782 170.69-170.658 170.69zM853.342 832c7.988 0 15.546-2.334 22.020-6.342l-363.362-300.404-363.354 300.4c6.478 4.010 14.044 6.346 22.040 6.346h682.656zM170.686 64c-1.924 0-3.82 0.146-5.684 0.408l225.626 312.966-29.256 29.254-233.372-233.37v611.138l384-464.396 384 464.394v-611.136l-233.372 233.37-29.254-29.254 225.628-312.968c-1.858-0.26-3.746-0.406-5.662-0.406h-682.654z" />
+<glyph unicode="&#xec06;" glyph-name="mail3" d="M853.342 960h-682.656c-93.874 0-170.686-76.81-170.686-170.69v-682.622c0-93.938 76.812-170.688 170.686-170.688h682.656c93.876 0 170.658 76.75 170.658 170.69v682.62c0 93.88-76.782 170.69-170.658 170.69zM182.628 73.374l-77.256 77.254 256 256 29.256-29.254-208-304zM153.372 761.372l29.256 29.256 329.372-265.374 329.374 265.374 29.254-29.256-358.628-422.626-358.628 422.626zM841.374 73.374l-208 304 29.254 29.254 256-256-77.254-77.254z" />
+<glyph unicode="&#xec07;" glyph-name="mail4" d="M512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512 512 229.23 512 512-229.23 512-512 512zM256 704h512c9.138 0 18.004-1.962 26.144-5.662l-282.144-329.168-282.144 329.17c8.14 3.696 17.006 5.66 26.144 5.66zM192 256v384c0 1.34 0.056 2.672 0.14 4l187.664-218.942-185.598-185.598c-1.444 5.336-2.206 10.886-2.206 16.54zM768 192h-512c-5.654 0-11.202 0.762-16.54 2.208l182.118 182.118 90.422-105.498 90.424 105.494 182.116-182.12c-5.34-1.44-10.886-2.202-16.54-2.202zM832 256c0-5.654-0.762-11.2-2.206-16.54l-185.6 185.598 187.666 218.942c0.084-1.328 0.14-2.66 0.14-4v-384z" />
+<glyph unicode="&#xec08;" glyph-name="amazon" d="M925.6 74.8c-112.2-82.8-274.6-126.8-414.6-126.8-196.2 0-372.8 72.4-506.4 193.2-10.4 9.4-1.2 22.4 11.4 15 144.2-84 322.6-134.4 506.8-134.4 124.2 0 260.8 25.8 386.6 79.2 18.8 8 34.8-12.6 16.2-26.2zM972.2 128c-14.4 18.4-94.8 8.8-131 4.4-11-1.2-12.6 8.2-2.8 15.2 64.2 45 169.4 32 181.6 17 12.4-15.2-3.2-120.6-63.4-171-9.2-7.8-18-3.6-14 6.6 13.8 33.8 44 109.4 29.6 127.8zM707.4 202.4l0.2-0.2c24.8 21.8 69.4 60.8 94.6 81.8 10 8 8.2 21.4 0.4 32.6-22.6 31.2-46.6 56.6-46.6 114.2v192c0 81.4 5.6 156-54.2 212-47.2 45.2-125.6 61.2-185.6 61.2-117.2 0-248-43.8-275.4-188.6-3-15.4 8.4-23.6 18.4-25.8l119.4-13c11.2 0.6 19.2 11.6 21.4 22.8 10.2 49.8 52 74 99 74 25.4 0 54.2-9.2 69.2-32 17.2-25.4 15-60 15-89.4v-16c-71.4-8-164.8-13.2-231.6-42.6-77.2-33.4-131.4-101.4-131.4-201.4 0-128 80.6-192 184.4-192 87.6 0 135.4 20.6 203 89.8 22.4-32.4 29.6-48.2 70.6-82.2 9.4-5 21-4.6 29.2 2.8zM583.2 502.8c0-48 1.2-88-23-130.6-19.6-34.8-50.6-56-85.2-56-47.2 0-74.8 36-74.8 89.2 0 105 94.2 124 183.2 124v-26.6z" />
+<glyph unicode="&#xec09;" glyph-name="google" d="M522.2 521.2v-175.6h290.4c-11.8-75.4-87.8-220.8-290.4-220.8-174.8 0-317.4 144.8-317.4 323.2s142.6 323.2 317.4 323.2c99.4 0 166-42.4 204-79l139 133.8c-89.2 83.6-204.8 134-343 134-283 0-512-229-512-512s229-512 512-512c295.4 0 491.6 207.8 491.6 500.2 0 33.6-3.6 59.2-8 84.8l-483.6 0.2z" />
+<glyph unicode="&#xec0a;" glyph-name="google2" d="M928 960h-832c-52.8 0-96-43.2-96-96v-832c0-52.8 43.2-96 96-96h832c52.8 0 96 43.2 96 96v832c0 52.8-43.2 96-96 96zM519.6 64c-212.2 0-384 171.8-384 384s171.8 384 384 384c103.6 0 190.4-37.8 257.2-100.4l-104.2-100.4c-28.6 27.4-78.4 59.2-153 59.2-131.2 0-238-108.6-238-242.4s107-242.4 238-242.4c152 0 209 109.2 217.8 165.6h-217.8v131.6h362.6c3.2-19.2 6-38.4 6-63.6 0.2-219.4-146.8-375.2-368.6-375.2z" />
+<glyph unicode="&#xec0b;" glyph-name="google3" d="M512 960c-282.8 0-512-229.2-512-512s229.2-512 512-512 512 229.2 512 512-229.2 512-512 512zM519.6 64c-212.2 0-384 171.8-384 384s171.8 384 384 384c103.6 0 190.4-37.8 257.2-100.4l-104.2-100.4c-28.6 27.4-78.4 59.2-153 59.2-131.2 0-238-108.6-238-242.4s107-242.4 238-242.4c152 0 209 109.2 217.8 165.6h-217.8v131.6h362.6c3.2-19.2 6-38.4 6-63.6 0.2-219.4-146.8-375.2-368.6-375.2z" />
+<glyph unicode="&#xec0c;" glyph-name="google-plus" d="M325.8 502.6v-111.8h184.8c-7.4-48-55.8-140.6-184.8-140.6-111.2 0-202 92.2-202 205.8s90.8 205.8 202 205.8c63.4 0 105.6-27 129.8-50.2l88.4 85.2c-56.8 53-130.4 85.2-218.2 85.2-180.2-0.2-325.8-145.8-325.8-326s145.6-325.8 325.8-325.8c188 0 312.8 132.2 312.8 318.4 0 21.4-2.4 37.8-5.2 54h-307.6zM1024 512h-96v96h-96v-96h-96v-96h96v-96h96v96h96z" />
+<glyph unicode="&#xec0d;" glyph-name="google-plus2" d="M928 960h-832c-52.8 0-96-43.2-96-96v-832c0-52.8 43.2-96 96-96h832c52.8 0 96 43.2 96 96v832c0 52.8-43.2 96-96 96zM384 192c-141.6 0-256 114.4-256 256s114.4 256 256 256c69.2 0 127-25.2 171.6-67l-69.6-66.8c-19 18.2-52.2 39.4-102 39.4-87.4 0-158.8-72.4-158.8-161.6s71.4-161.6 158.8-161.6c101.4 0 139.4 72.8 145.2 110.4h-145.2v87.8h241.8c2.2-12.8 4-25.6 4-42.4 0-146.4-98-250.2-245.8-250.2zM896 448h-64v-64h-64v64h-64v64h64v64h64v-64h64v-64z" />
+<glyph unicode="&#xec0e;" glyph-name="google-plus3" d="M512 960c-282.8 0-512-229.2-512-512s229.2-512 512-512 512 229.2 512 512-229.2 512-512 512zM384 192c-141.6 0-256 114.4-256 256s114.4 256 256 256c69.2 0 127-25.2 171.6-67l-69.6-66.8c-19 18.2-52.2 39.4-102 39.4-87.4 0-158.8-72.4-158.8-161.6s71.4-161.6 158.8-161.6c101.4 0 139.4 72.8 145.2 110.4h-145.2v87.8h241.8c2.2-12.8 4-25.6 4-42.4 0-146.4-98-250.2-245.8-250.2zM832 448v-64h-64v64h-64v64h64v64h64v-64h64v-64h-64z" />
+<glyph unicode="&#xec0f;" glyph-name="hangouts" d="M511.8 960c-244.2 0-442.2-198-442.2-442.2 0-231.4 210.8-419 442.2-419v-162.8c268.6 136.2 442.6 355.6 442.6 581.8 0 244.2-198.4 442.2-442.6 442.2zM448 448c0-53-28.6-96-64-96v96h-128v192h192v-192zM768 448c0-53-28.6-96-64-96v96h-128v192h192v-192z" />
+<glyph unicode="&#xec10;" glyph-name="google-drive" d="M438 320l-184.6-320h580.6l184.6 320zM992.4 384l-295.6 512h-369.6l295.6-512zM290.2 832l-290.2-502.8 184.8-320 290.2 502.8z" />
+<glyph unicode="&#xec11;" glyph-name="facebook" d="M608 768h160v192h-160c-123.514 0-224-100.486-224-224v-96h-128v-192h128v-512h192v512h160l32 192h-192v96c0 17.346 14.654 32 32 32z" />
+<glyph unicode="&#xec12;" glyph-name="facebook2" d="M928 960h-832c-52.8 0-96-43.2-96-96v-832c0-52.8 43.2-96 96-96h416v448h-128v128h128v64c0 105.8 86.2 192 192 192h128v-128h-128c-35.2 0-64-28.8-64-64v-64h192l-32-128h-160v-448h288c52.8 0 96 43.2 96 96v832c0 52.8-43.2 96-96 96z" />
+<glyph unicode="&#xec13;" glyph-name="instagram" d="M512 867.8c136.8 0 153-0.6 206.8-3 50-2.2 77-10.6 95-17.6 23.8-9.2 41-20.4 58.8-38.2 18-18 29-35 38.4-58.8 7-18 15.4-45.2 17.6-95 2.4-54 3-70.2 3-206.8s-0.6-153-3-206.8c-2.2-50-10.6-77-17.6-95-9.2-23.8-20.4-41-38.2-58.8-18-18-35-29-58.8-38.4-18-7-45.2-15.4-95-17.6-54-2.4-70.2-3-206.8-3s-153 0.6-206.8 3c-50 2.2-77 10.6-95 17.6-23.8 9.2-41 20.4-58.8 38.2-18 18-29 35-38.4 58.8-7 18-15.4 45.2-17.6 95-2.4 54-3 70.2-3 206.8s0.6 153 3 206.8c2.2 50 10.6 77 17.6 95 9.2 23.8 20.4 41 38.2 58.8 18 18 35 29 58.8 38.4 18 7 45.2 15.4 95 17.6 53.8 2.4 70 3 206.8 3zM512 960c-139 0-156.4-0.6-211-3-54.4-2.4-91.8-11.2-124.2-23.8-33.8-13.2-62.4-30.6-90.8-59.2-28.6-28.4-46-57-59.2-90.6-12.6-32.6-21.4-69.8-23.8-124.2-2.4-54.8-3-72.2-3-211.2s0.6-156.4 3-211c2.4-54.4 11.2-91.8 23.8-124.2 13.2-33.8 30.6-62.4 59.2-90.8 28.4-28.4 57-46 90.6-59 32.6-12.6 69.8-21.4 124.2-23.8 54.6-2.4 72-3 211-3s156.4 0.6 211 3c54.4 2.4 91.8 11.2 124.2 23.8 33.6 13 62.2 30.6 90.6 59s46 57 59 90.6c12.6 32.6 21.4 69.8 23.8 124.2 2.4 54.6 3 72 3 211s-0.6 156.4-3 211c-2.4 54.4-11.2 91.8-23.8 124.2-12.6 34-30 62.6-58.6 91-28.4 28.4-57 46-90.6 59-32.6 12.6-69.8 21.4-124.2 23.8-54.8 2.6-72.2 3.2-211.2 3.2v0zM512 711c-145.2 0-263-117.8-263-263s117.8-263 263-263 263 117.8 263 263c0 145.2-117.8 263-263 263zM512 277.4c-94.2 0-170.6 76.4-170.6 170.6s76.4 170.6 170.6 170.6c94.2 0 170.6-76.4 170.6-170.6s-76.4-170.6-170.6-170.6zM846.8 721.4c0-33.91-27.49-61.4-61.4-61.4s-61.4 27.49-61.4 61.4c0 33.91 27.49 61.4 61.4 61.4s61.4-27.49 61.4-61.4z" />
+<glyph unicode="&#xec14;" glyph-name="whatsapp" d="M873 811.2c-95.8 96-223.2 148.8-359 148.8-279.6 0-507.2-227.6-507.2-507.4 0-89.4 23.4-176.8 67.8-253.6l-72-263 269 70.6c74.2-40.4 157.6-61.8 242.4-61.8h0.2c0 0 0 0 0 0 279.6 0 507.4 227.6 507.4 507.4 0 135.6-52.8 263-148.6 359zM514.2 30.4v0c-75.8 0-150 20.4-214.8 58.8l-15.4 9.2-159.6-41.8 42.6 155.6-10 16c-42.4 67-64.6 144.6-64.6 224.4 0 232.6 189.2 421.8 422 421.8 112.6 0 218.6-44 298.2-123.6 79.6-79.8 123.4-185.6 123.4-298.4-0.2-232.8-189.4-422-421.8-422zM745.4 346.4c-12.6 6.4-75 37-86.6 41.2s-20 6.4-28.6-6.4c-8.4-12.6-32.8-41.2-40.2-49.8-7.4-8.4-14.8-9.6-27.4-3.2s-53.6 19.8-102 63c-37.6 33.6-63.2 75.2-70.6 87.8s-0.8 19.6 5.6 25.8c5.8 5.6 12.6 14.8 19 22.2s8.4 12.6 12.6 21.2c4.2 8.4 2.2 15.8-1 22.2s-28.6 68.8-39 94.2c-10.2 24.8-20.8 21.4-28.6 21.8-7.4 0.4-15.8 0.4-24.2 0.4s-22.2-3.2-33.8-15.8c-11.6-12.6-44.4-43.4-44.4-105.8s45.4-122.6 51.8-131.2c6.4-8.4 89.4-136.6 216.6-191.4 30.2-13 53.8-20.8 72.2-26.8 30.4-9.6 58-8.2 79.8-5 24.4 3.6 75 30.6 85.6 60.2s10.6 55 7.4 60.2c-3 5.6-11.4 8.8-24.2 15.2z" />
+<glyph unicode="&#xec15;" glyph-name="spotify" d="M512 960c-281.6 0-512-230.4-512-512s230.4-512 512-512 512 230.4 512 512-227.8 512-512 512zM747.6 220.2c-10.2-15.4-28.2-20.4-43.6-10.2-120.4 74.2-271.4 89.6-450.6 48.6-18-5.2-33.2 7.6-38.4 23-5.2 18 7.6 33.2 23 38.4 194.6 43.6 363.6 25.6 496.6-56.4 18-7.6 20.6-28 13-43.4zM809 361c-12.8-18-35.8-25.6-53.8-12.8-138.2 84.4-348.2 110-509.4 58.8-20.4-5.2-43.6 5.2-48.6 25.6-5.2 20.4 5.2 43.6 25.6 48.6 186.8 56.4 417.2 28.2 576-69.2 15.2-7.6 23-33.2 10.2-51zM814 504.4c-163.8 97.2-437.8 107.6-594 58.8-25.6-7.6-51.2 7.6-58.8 30.8-7.6 25.6 7.6 51.2 30.8 58.8 181.8 53.8 481.2 43.6 670.8-69.2 23-12.8 30.8-43.6 18-66.6-13-17.8-43.6-25.4-66.8-12.6z" />
+<glyph unicode="&#xec16;" glyph-name="telegram" d="M512 960c-282.8 0-512-229.2-512-512s229.2-512 512-512 512 229.2 512 512-229.2 512-512 512zM763.6 609l-84-395.8c-5.8-28.2-22.8-34.8-46.4-21.8l-128 94.6-61.4-59.8c-7.2-7-12.8-12.8-25.6-12.8-16.6 0-13.8 6.2-19.4 22l-43.6 143.2-126.6 39.4c-27.4 8.4-27.6 27.2 6.2 40.6l493.2 190.4c22.4 10.2 44.2-5.4 35.6-40z" />
+<glyph unicode="&#xec17;" glyph-name="twitter" d="M1024 733.6c-37.6-16.8-78.2-28-120.6-33 43.4 26 76.6 67.2 92.4 116.2-40.6-24-85.6-41.6-133.4-51-38.4 40.8-93 66.2-153.4 66.2-116 0-210-94-210-210 0-16.4 1.8-32.4 5.4-47.8-174.6 8.8-329.4 92.4-433 219.6-18-31-28.4-67.2-28.4-105.6 0-72.8 37-137.2 93.4-174.8-34.4 1-66.8 10.6-95.2 26.2 0-0.8 0-1.8 0-2.6 0-101.8 72.4-186.8 168.6-206-17.6-4.8-36.2-7.4-55.4-7.4-13.6 0-26.6 1.4-39.6 3.8 26.8-83.4 104.4-144.2 196.2-146-72-56.4-162.4-90-261-90-17 0-33.6 1-50.2 3 93.2-59.8 203.6-94.4 322.2-94.4 386.4 0 597.8 320.2 597.8 597.8 0 9.2-0.2 18.2-0.6 27.2 41 29.4 76.6 66.4 104.8 108.6z" />
+<glyph unicode="&#xec18;" glyph-name="vine" d="M960.8 451c-26.4-6-51.8-8.8-74.8-8.8-129.2 0-228.6 90.2-228.6 247.2 0 77 29.8 116.8 71.8 116.8 40 0 66.6-35.8 66.6-108.6 0-41.4-11-86.8-19.2-113.6 0 0 39.8-69.4 148.6-48.2 23.2 51.4 35.6 117.8 35.6 176 0 156.8-80 248.2-226.6 248.2-150.8 0-239-115.8-239-268.6 0-151.4 70.8-281.2 187.4-340.4-49-98.2-111.4-184.6-176.6-249.8-118 142.8-224.8 333.2-268.6 705h-174.2c80.6-619.2 320.4-816.4 384-854.2 35.8-21.6 66.8-20.6 99.6-2 51.6 29.2 206.2 184 292 365 36 0 79.2 4.2 122.2 14v122z" />
+<glyph unicode="&#xec19;" glyph-name="vk" d="M928 960h-832c-52.8 0-96-43.2-96-96v-832c0-52.8 43.2-96 96-96h832c52.8 0 96 43.2 96 96v832c0 52.8-43.2 96-96 96zM829.4 243.2l-93.6-1.4c0 0-20.2-4-46.6 14.2-35 24-68 86.6-93.8 78.4-26-8.2-25.2-64.4-25.2-64.4s0.2-12-5.8-18.4c-6.4-7-19.2-8.4-19.2-8.4h-41.8c0 0-92.4-5.6-173.8 79.2-88.8 92.4-167.2 275.8-167.2 275.8s-4.6 12 0.4 17.8c5.6 6.6 20.6 7 20.6 7l100.2 0.6c0 0 9.4-1.6 16.2-6.6 5.6-4 8.6-11.8 8.6-11.8s16.2-41 37.6-78c41.8-72.2 61.4-88 75.6-80.4 20.6 11.2 14.4 102.2 14.4 102.2s0.4 33-10.4 47.6c-8.4 11.4-24.2 14.8-31 15.6-5.6 0.8 3.6 13.8 15.6 19.8 18 8.8 49.8 9.4 87.4 9 29.2-0.2 37.8-2.2 49.2-4.8 34.6-8.4 22.8-40.6 22.8-117.8 0-24.8-4.4-59.6 13.4-71 7.6-5 26.4-0.8 73.4 79 22.2 37.8 39 82.2 39 82.2s3.6 8 9.2 11.4c5.8 3.4 13.6 2.4 13.6 2.4l105.4 0.6c0 0 31.6 3.8 36.8-10.6 5.4-15-11.8-50-54.8-107.4-70.6-94.2-78.6-85.4-19.8-139.8 56-52 67.6-77.4 69.6-80.6 22.8-38.4-26-41.4-26-41.4z" />
+<glyph unicode="&#xec1a;" glyph-name="renren" d="M425.2 949.4c-241.2-40.6-425.2-250.4-425.2-503.2 0-125.6 45.6-240.6 120.8-329.6 178.6 86.4 303.6 282 304.4 509.8v323zM598.8 949.4c241.2-40.6 425.2-250.4 425.2-503.2 0-125.6-45.6-240.6-120.8-329.6-178.6 86.4-303.6 282-304.4 509.8v323zM510.2 317.4c-31.8-131.6-126.8-244-245-318.8 72.8-39.8 156.2-62.6 245-62.6s172.2 22.8 245 62.6c-118.2 74.8-213.2 187.2-245 318.8z" />
+<glyph unicode="&#xec1b;" glyph-name="sina-weibo" d="M430.2 62c-169.6-16.8-316 60-327 171.2-11 111.4 117.6 215 287 231.8 169.6 16.8 316-60 326.8-171.2 11.2-111.4-117.4-215.2-286.8-231.8zM769.2 431.4c-14.4 4.4-24.4 7.2-16.8 26.2 16.4 41.2 18 76.6 0.2 102-33.2 47.4-124.2 45-228.4 1.2 0 0-32.8-14.2-24.4 11.6 16 51.6 13.6 94.6-11.4 119.6-56.6 56.6-207-2.2-336-131.2-96.4-96.2-152.4-198.8-152.4-287.4 0-169.2 217.2-272.2 429.6-272.2 278.4 0 463.8 161.8 463.8 290.2 0 77.8-65.4 121.8-124.2 140zM954.2 741.4c-67.2 74.6-166.4 103-258 83.6v0c-21.2-4.6-34.6-25.4-30-46.4 4.6-21.2 25.2-34.6 46.4-30 65.2 13.8 135.6-6.4 183.4-59.4s60.8-125.2 40.2-188.4v0c-6.6-20.6 4.6-42.6 25.2-49.4 20.6-6.6 42.6 4.6 49.4 25.2v0.2c28.8 88.4 10.6 190-56.6 264.6zM850.8 648c-32.8 36.4-81.2 50.2-125.6 40.6-18.2-3.8-29.8-22-26-40.2 4-18.2 22-29.8 40-25.8v0c21.8 4.6 45.4-2.2 61.4-19.8 16-17.8 20.4-42 13.4-63.2v0c-5.6-17.6 4-36.8 21.8-42.6 17.8-5.6 36.8 4 42.6 21.8 14 43.4 5.2 93-27.6 129.2zM439.6 263.4c-6-10.2-19-15-29.2-10.8-10.2 4-13.2 15.6-7.4 25.4 6 9.8 18.6 14.6 28.6 10.8 10-3.6 13.6-15 8-25.4zM385.4 194.2c-16.4-26.2-51.6-37.6-78-25.6-26 11.8-33.8 42.2-17.4 67.8 16.2 25.4 50.2 36.8 76.4 25.8 26.6-11.4 35.2-41.6 19-68zM447 379.4c-80.6 21-171.8-19.2-206.8-90.2-35.8-72.4-1.2-153 80.2-179.4 84.4-27.2 184 14.6 218.6 92.6 34.2 76.6-8.4 155.2-92 177z" />
+<glyph unicode="&#xec1c;" glyph-name="rss" d="M136.294 209.070c-75.196 0-136.292-61.334-136.292-136.076 0-75.154 61.1-135.802 136.292-135.802 75.466 0 136.494 60.648 136.494 135.802-0.002 74.742-61.024 136.076-136.494 136.076zM0.156 612.070v-196.258c127.784 0 247.958-49.972 338.458-140.512 90.384-90.318 140.282-211.036 140.282-339.3h197.122c-0.002 372.82-303.282 676.070-675.862 676.070zM0.388 960v-196.356c455.782 0 826.756-371.334 826.756-827.644h196.856c0 564.47-459.254 1024-1023.612 1024z" />
+<glyph unicode="&#xec1d;" glyph-name="rss2" d="M928 960h-832c-52.8 0-96-43.2-96-96v-832c0-52.8 43.2-96 96-96h832c52.8 0 96 43.2 96 96v832c0 52.8-43.2 96-96 96zM279 128.8c-48 0-87 38.6-87 86.6 0 47.6 39 86.8 87 86.8 48.2 0 87-39.2 87-86.8 0-48-39-86.6-87-86.6zM497.4 128c0 81.8-31.8 158.8-89.4 216.4-57.8 57.8-134.4 89.6-216 89.6v125.2c237.6 0 431.2-193.4 431.2-431.2h-125.8zM719.6 128c0 291-236.6 528-527.4 528v125.2c360 0 653-293.2 653-653.2h-125.6z" />
+<glyph unicode="&#xec1e;" glyph-name="youtube" d="M1013.8 652.8c0 0-10 70.6-40.8 101.6-39 40.8-82.6 41-102.6 43.4-143.2 10.4-358.2 10.4-358.2 10.4h-0.4c0 0-215 0-358.2-10.4-20-2.4-63.6-2.6-102.6-43.4-30.8-31-40.6-101.6-40.6-101.6s-10.2-82.8-10.2-165.8v-77.6c0-82.8 10.2-165.8 10.2-165.8s10-70.6 40.6-101.6c39-40.8 90.2-39.4 113-43.8 82-7.8 348.2-10.2 348.2-10.2s215.2 0.4 358.4 10.6c20 2.4 63.6 2.6 102.6 43.4 30.8 31 40.8 101.6 40.8 101.6s10.2 82.8 10.2 165.8v77.6c-0.2 82.8-10.4 165.8-10.4 165.8zM406.2 315.2v287.8l276.6-144.4-276.6-143.4z" />
+<glyph unicode="&#xec1f;" glyph-name="youtube2" horiz-adv-x="2569" d="M344.012 790.601c0.209 0.865 0.344 1.479 0.388 1.8l1.042 7.559-47.349 0.267c-42.779 0.242-55.87-0.007-57.047-1.084-0.565-0.516-15.333-56.633-41.655-158.273-12.556-48.484-23.124-87.206-23.487-86.051s-15.391 56.498-33.397 122.98c-18.006 66.482-33.104 121.243-33.55 121.692-0.623 0.623-57.98 0.9-104.417 0.502-6.735-0.056-10.477 13.11 60.021-211.133 9.759-31.041 24.371-74.997 32.469-97.679 9.333-26.141 15.989-46.323 20.534-63.173 8.038-32.067 8.319-52.163 6.565-75.625-2.026-27.101-2.321-218.438-0.342-221.638 1.512-2.449 91.223-3.589 99.712-1.268 1.358 0.372 2.265 1.691 2.87 8.928 2.119 6.219 2.286 30.969 2.286 133.744v131.281l5.742 18.112c3.756 11.849 13.201 42.995 20.989 69.22 7.789 26.222 17.21 57.619 20.938 69.771 33.834 110.319 66.14 218.831 66.994 225.011l0.693 5.056zM846.122 631.349l-0.021-6.838-1.065-0.014-0.595-188.993-0.577-183.227-14.666-14.929c-16.424-16.719-29.585-23.101-41.488-20.113-12.963 3.254-12.64-1.8-13.722 214.768l-0.998 199.347h-94.316v-6.851h-1.086v-216.289c0-231.737-0.007-231.599 11.752-254.875 9.366-18.536 23.010-27.559 46.391-30.671h0.002c30.79-4.1 64.001 9.849 94.77 39.809l13.373 13.022v-22.445c0-19.396 0.554-22.601 4.070-23.58 5.756-1.605 77.173-1.707 84.89-0.126l6.396 1.314v6.628l1.086 0.223v495.098l-94.195-1.258zM606.892 533.67c-8.935 38.341-25.68 64.115-53.233 81.939-43.281 27.999-92.718 30.957-138.586 8.291-33.425-16.515-54.951-43.914-66.071-84.083-1.326-4.786-2.298-8.812-3.033-14.815-2.83-14.184-3.163-35.351-3.889-133.951-1.121-151.928 0.616-170.003 19.643-204.51 18.664-33.848 57.403-58.661 99.572-63.782 12.696-1.54 38.43 0.858 53.23 4.961 33.632 9.326 65.864 35.906 80.118 66.078 6.158 13.033 9.875 22.096 12.115 38.651 4.175 22.617 4.47 59.175 4.47 152.375-0.002 118.875-0.379 131.862-4.337 148.847zM499.34 223.997c-7.907-6.028-21.734-8.649-32.983-6.249-8.656 1.847-20.338 15.419-23.934 27.801-4.479 15.436-4.823 229.985-0.954 272.059 6.379 21.054 24.19 32.050 43.635 26.813 15.157-4.082 22.915-13.575 27.336-33.457 3.282-14.754 3.67-33.129 2.972-141.26-0.46-71.701-0.716-106.742-3.058-125.553-2.382-11.87-6.319-15.047-13.015-20.154zM2300.389 425.863h45.57l-0.726 41.281c-0.705 37.869-1.263 42.2-6.324 52.472-7.982 16.21-19.759 23.401-38.446 23.401-22.448 0-36.678-10.849-43.388-33.141-2.858-9.486-5.863-74.685-3.707-80.308 1.205-3.144 7.724-3.705 47.021-3.705zM1995.795 519.763c-6.077 12.247-17.385 18.278-30.525 17.806-10.221-0.365-21.561-4.677-32.488-13.010l-8.14-6.177v-296.598l8.14-6.177c18.429-14.052 38.674-17.031 52.619-7.703 5.519 3.691 9.117 8.779 11.919 16.861 3.647 10.524 3.965 24.003 3.489 148.772-0.495 130.043-0.781 137.702-5.014 146.226zM2560.878 653.367c-9.080 108.842-16.303 144.165-38.751 189.544-29.729 60.101-72.692 91.788-133.876 98.747-47.309 5.379-225.315 12.97-390.044 16.631-285.188 6.338-754.057-5.858-813.939-21.173-27.673-7.077-48.426-19.11-70.022-40.604-37.844-37.662-60.391-91.679-69.452-166.396-20.692-170.606-21.134-376.727-1.188-553.515 8.577-76.041 26.243-125.443 59.41-166.159 20.694-25.406 56.352-46.998 88.26-53.442 22.385-4.523 134.42-10.798 297.605-16.668 24.306-0.874 88.667-2.379 143.030-3.344 113.301-2.012 321.627-0.821 440.719 2.519 80.127 2.249 226.201 8.172 253.5 10.282 7.677 0.593 25.469 1.728 39.537 2.523 47.277 2.67 77.353 12.568 105.596 34.76 36.553 28.718 64.857 81.795 76.815 144.037 11.314 58.894 18.887 163.773 20.422 282.851 1.284 99.491-0.426 153.175-7.621 239.409zM1425.273 692.808l-52.982-0.654-2.326-565.143-45.932-0.581c-35.525-0.488-46.307 0.044-47.167 2.326-0.616 1.626-1.356 129.020-1.672 283.153l-0.581 280.246-103.493 1.307v88.304l305.829-1.235 1.307-87.069-52.982-0.654zM1750.216 368.883v-243.035h-83.725v25.583c0 19.247-0.735 25.583-2.979 25.583-1.64 0-9.226-6.344-16.861-14.098-16.557-16.817-36.171-30.367-52.91-36.63-34.662-12.968-67.589-5.4-81.618 18.75-12.838 22.11-13.082 27.052-13.082 256.335v210.547h83.653l0.654-198.265c0.623-194.821 0.714-198.393 5.377-206.333 6.182-10.521 15.608-13.347 30.597-9.231 8.817 2.423 14.836 6.707 29.143 20.931l18.024 17.952v374.946h83.725v-243.035zM2076.757 160.59c-7.372-16.424-23.806-32.509-37.283-36.485-35.167-10.382-63.375-1.923-95.935 28.708-10.103 9.505-19.51 17.224-20.931 17.224-1.712 0-2.616-7.449-2.616-22.094v-22.094h-83.725v655.845h83.725v-106.982c0-58.84 0.786-106.982 1.744-106.982s9.789 7.807 19.624 17.298c22.629 21.841 41.548 31.399 65.557 33.213 42.811 3.24 68.327-18.794 80.018-69.117 3.647-15.696 3.998-33.625 3.998-179.078-0.002-177.178-0.021-177.918-14.175-209.457zM2430.99 257.832c-0.744-18.226-2.954-39.137-4.942-46.514-11.642-43.167-42.635-73.731-87.432-86.269-60.315-16.878-126.704 10.777-153.205 63.812-14.875 29.769-15.408 35.706-15.408 181.185 0 118.617 0.419 133.171 4.214 149.354 10.747 45.788 37.392 75.422 82.49 91.865 13.068 4.765 26.708 7.207 40.337 7.486 48.672 0.998 96.984-25.18 117.229-67.808 13.659-28.76 15.35-41.060 16.717-122.099l1.235-72.678-178.497-1.235-0.654-48.84c-0.93-68.901 3.716-90.088 22.313-102.621 15.645-10.54 39.679-9.745 52.765 1.744 12.263 10.768 15.726 22.336 16.933 56.107l1.091 29.653h86.195l-1.381-33.143z" />
+<glyph unicode="&#xec20;" glyph-name="twitch" d="M96 960l-96-160v-736h256v-128h128l128 128h160l288 288v608h-864zM832 416l-160-160h-160l-128-128v128h-192v576h640v-416zM608 704h96v-256h-96v256zM416 704h96v-256h-96v256z" />
+<glyph unicode="&#xec21;" glyph-name="vimeo" d="M1023.6 686c-4.6-99.6-74.2-236.2-208.8-409.4-139.2-180.8-257-271.4-353.4-271.4-59.6 0-110.2 55-151.4 165.2-27.6 101-55 202-82.6 303-30.6 110.2-63.4 165.2-98.6 165.2-7.6 0-34.4-16.2-80.4-48.2l-48.2 62c50.6 44.4 100.4 88.8 149.4 133.2 67.4 58.2 118 88.8 151.8 92 79.6 7.6 128.8-46.8 147.2-163.4 19.8-125.8 33.6-204 41.4-234.6 23-104.4 48.2-156.6 75.8-156.6 21.4 0 53.6 33.8 96.6 101.6 42.8 67.6 65.8 119.2 69 154.6 6.2 58.4-16.8 87.8-69 87.8-24.6 0-49.8-5.6-75.8-16.8 50.4 164.8 146.4 244.8 288.4 240.2 105-2.8 154.6-71 148.6-204.4z" />
+<glyph unicode="&#xec22;" glyph-name="vimeo2" d="M928 960h-832c-52.8 0-96-43.2-96-96v-832c0-52.8 43.2-96 96-96h832c52.8 0 96 43.2 96 96v832c0 52.8-43.2 96-96 96zM861.6 620c-3.2-72-53.6-170.6-151-295.8-100.6-130.8-185.8-196.2-255.4-196.2-43.2 0-79.6 39.8-109.4 119.4-20 73-39.8 146-59.8 219-22 79.6-45.8 119.4-71.2 119.4-5.6 0-25-11.6-58-34.8l-34.8 44.8c36.6 32 72.6 64.2 108 96.2 48.8 42 85.2 64.2 109.6 66.4 57.6 5.6 93-33.8 106.4-118 14.4-91 24.4-147.4 30-169.6 16.6-75.4 34.8-113 54.8-113 15.4 0 38.8 24.4 69.8 73.4s47.6 86.2 49.8 111.8c4.4 42.2-12.2 63.4-49.8 63.4-17.8 0-36-4-54.8-12.2 36.4 119 105.8 177 208.4 173.6 76-2.2 111.8-51.4 107.4-147.8z" />
+<glyph unicode="&#xec23;" glyph-name="lanyrd" d="M928 960h-832c-52.8 0-96-43.2-96-96v-832c0-52.8 43.2-96 96-96h832c52.8 0 96 43.2 96 96v832c0 52.8-43.2 96-96 96zM822.4 191.2l-348.4-114c-79.6-26-87.6-21.8-123.6 89.6l-88 272.6c-21 64.6-85 238.6-95.8 272-20 62-20 65.4 97 103.4 91.6 30 95.4 29 128.6-74.4 26.8-83.2 44-150.4 71.6-235.4l75-232 239.6 78.4c47.2 15.6 63 14.8 76.4-43.4l9.6-44c11.2-51-14.6-64-42-72.8z" />
+<glyph unicode="&#xec24;" glyph-name="flickr" d="M0 416c0 123.712 100.288 224 224 224s224-100.288 224-224c0-123.712-100.288-224-224-224s-224 100.288-224 224zM576 416c0 123.712 100.288 224 224 224s224-100.288 224-224c0-123.712-100.288-224-224-224s-224 100.288-224 224z" />
+<glyph unicode="&#xec25;" glyph-name="flickr2" d="M800 544c-70.58 0-128-57.42-128-128s57.42-128 128-128c70.58 0 128 57.42 128 128s-57.42 128-128 128zM800 640v0c123.71 0 224-100.288 224-224 0-123.71-100.29-224-224-224s-224 100.29-224 224c0 123.712 100.29 224 224 224zM0 416c0 123.712 100.288 224 224 224s224-100.288 224-224c0-123.712-100.288-224-224-224s-224 100.288-224 224z" />
+<glyph unicode="&#xec26;" glyph-name="flickr3" d="M928 960h-832c-52.8 0-96-43.2-96-96v-832c0-52.8 43.2-96 96-96h832c52.8 0 96 43.2 96 96v832c0 52.8-43.2 96-96 96zM288 288c-88.4 0-160 71.6-160 160s71.6 160 160 160 160-71.6 160-160-71.6-160-160-160zM736 288c-88.4 0-160 71.6-160 160s71.6 160 160 160c88.4 0 160-71.6 160-160s-71.6-160-160-160z" />
+<glyph unicode="&#xec27;" glyph-name="flickr4" d="M512 960c-282.77 0-512-230.796-512-515.5s229.23-515.5 512-515.5 512 230.796 512 515.5-229.23 515.5-512 515.5zM288 288c-88.366 0-160 71.634-160 160s71.634 160 160 160 160-71.634 160-160c0-88.366-71.634-160-160-160zM736 288c-88.368 0-160 71.634-160 160s71.632 160 160 160 160-71.634 160-160c0-88.366-71.632-160-160-160z" />
+<glyph unicode="&#xec28;" glyph-name="dribbble" d="M512-64c-282.4 0-512 229.6-512 512s229.6 512 512 512c282.4 0 512-229.6 512-512s-229.6-512-512-512v0zM943.8 378c-15 4.8-135.4 40.6-272.4 18.6 57.2-157.2 80.4-285.2 85-311.8 98 66.4 168 171.4 187.4 293.2v0zM682.8 44.8c-6.6 38.4-31.8 172-93.2 331.6-1-0.4-2-0.6-2.8-1-246.8-86-335.4-257-343.2-273 74.2-57.8 167.4-92.4 268.4-92.4 60.6 0 118.4 12.4 170.8 34.8v0zM187 155c10 17 130 215.6 355.4 288.6 5.6 1.8 11.4 3.6 17.2 5.2-11 24.8-23 49.8-35.4 74.2-218.2-65.4-430.2-62.6-449.4-62.4-0.2-4.4-0.2-8.8-0.2-13.4 0-112.2 42.6-214.8 112.4-292.2v0zM84 537c19.6-0.2 199.8-1 404.4 53.2-72.4 128.8-150.6 237.2-162.2 253-122.4-57.8-214-170.6-242.2-306.2v0zM409.6 872.6c12-16.2 91.6-124.4 163.2-256 155.6 58.2 221.4 146.8 229.2 158-77.2 68.6-178.8 110.2-290 110.2-35.2-0.2-69.6-4.4-102.4-12.2v0zM850.6 723.8c-9.2-12.4-82.6-106.4-244.2-172.4 10.2-20.8 20-42 29-63.4 3.2-7.6 6.4-15 9.4-22.6 145.6 18.2 290.2-11 304.6-14-1 103.2-38 198-98.8 272.4v0z" />
+<glyph unicode="&#xec29;" glyph-name="behance" d="M297 754.8c30.2 0 57.4-2.6 82.2-8 24.8-5.2 45.8-14 63.6-26 17.6-12 31.2-28 41.2-48 9.6-19.8 14.4-44.6 14.4-74 0-31.8-7.2-58.2-21.6-79.4-14.6-21.2-35.8-38.4-64.2-52 38.8-11.2 67.4-30.8 86.6-58.6 19.2-28 28.4-61.6 28.4-101.2 0-32-6.2-59.4-18.4-82.6-12.4-23.4-29.2-42.4-49.8-57-20.8-14.8-44.8-25.6-71.6-32.6-26.6-7-54-10.6-82.4-10.6h-305.4v630h297zM279 500.4c24.6 0 45 5.8 61 17.6 16 11.6 23.6 30.8 23.6 57.2 0 14.6-2.6 26.8-7.8 36.2-5.4 9.4-12.4 16.8-21.4 22-8.8 5.4-18.8 9-30.6 11-11.4 2.2-23.4 3.2-35.6 3.2h-129.6v-147.2h140.4zM286.6 232.2c13.6 0 26.6 1.2 38.8 4 12.4 2.8 23.4 7 32.6 13.4 9.2 6.2 17 14.4 22.6 25.2 5.6 10.6 8.2 24.2 8.2 40.8 0 32.4-9.2 55.6-27.4 69.6-18.2 13.8-42.4 20.6-72.4 20.6h-150.4v-173.4h148zM725.2 234.4c18.8-18.4 45.8-27.6 81-27.6 25.2 0 47.2 6.4 65.4 19.2s29.2 26.4 33.4 40.4h110.4c-17.8-55-44.6-94-81.4-117.6-36.2-23.6-80.6-35.6-132-35.6-36 0-68.2 5.8-97.2 17.2-29 11.6-53.2 27.8-73.6 49-19.8 21.2-35.4 46.4-46.4 76-10.8 29.4-16.4 62-16.4 97.2 0 34.2 5.6 66 16.8 95.4 11.4 29.6 27 55 47.8 76.4s45.2 38.4 74 50.8c28.6 12.4 60.2 18.6 95.2 18.6 38.6 0 72.4-7.4 101.4-22.6 28.8-15 52.6-35.2 71.2-60.4s31.8-54.2 40-86.6c8.2-32.4 11-66.2 8.8-101.6h-329.4c0-35.8 12-70 31-88.2zM869 474c-14.8 16.4-40.2 25.4-70.8 25.4-20 0-36.6-3.4-49.8-10.2-13-6.8-23.6-15.2-31.8-25.2-8-10-13.6-20.8-16.8-32.2-3.2-11-5.2-21.2-5.8-30h204c-3 32-14 55.6-29 72.2zM668.4 704h255.4v-62.2h-255.4v62.2z" />
+<glyph unicode="&#xec2a;" glyph-name="behance2" d="M404.2 511.4c13 9.4 19.2 25 19.2 46.6 0 12-2 21.8-6.2 29.4-4.4 7.6-10 13.6-17.4 17.8-7.2 4.4-15.4 7.4-24.8 9-9.2 1.8-19 2.6-29 2.6h-105.4v-119.6h114c20-0.2 36.6 4.6 49.6 14.2zM422 403.4c-14.8 11.2-34.4 16.8-58.8 16.8h-122.6v-141h120.2c11.2 0 21.6 1 31.6 3.2s19 5.6 26.6 10.8c7.6 5 13.8 11.8 18.4 20.4s6.8 19.8 6.8 33.2c0 26.4-7.4 45.2-22.2 56.6zM928 960h-832c-52.8 0-96-43.2-96-96v-832c0-52.8 43.2-96 96-96h832c52.8 0 96 43.2 96 96v832c0 52.8-43.2 96-96 96zM671.2 690.6h207.4v-50.6h-207.4v50.6zM541.6 273.6c-10-19-23.6-34.4-40.4-46.4-17-12-36.4-20.8-58.2-26.6-21.6-5.8-44-8.6-66.8-8.6h-248.2v511.8h241.2c24.4 0 46.6-2.2 66.8-6.4 20-4.2 37.2-11.4 51.6-21.2 14.2-9.8 25.4-22.8 33.4-39 7.8-16 11.8-36.2 11.8-60 0-25.8-5.8-47.2-17.6-64.4s-29-31.2-52.2-42.2c31.6-9 54.8-25 70.2-47.6 15.6-22.8 23.2-50.2 23.2-82.2 0.2-26.2-4.8-48.6-14.8-67.2zM959.4 352.8h-267.4c0-29.2 10-57 25.2-72 15.2-14.8 37.2-22.4 65.8-22.4 20.6 0 38.2 5.2 53.2 15.6 14.8 10.4 23.8 21.4 27.2 32.8h89.6c-14.4-44.6-36.2-76.4-66-95.6-29.4-19.2-65.4-28.8-107.2-28.8-29.2 0-55.4 4.8-79 14-23.6 9.4-43.2 22.6-59.8 39.8-16.2 17.2-28.6 37.8-37.6 61.8-8.8 23.8-13.4 50.4-13.4 79 0 27.8 4.6 53.6 13.6 77.6 9.2 24 22 44.8 38.8 62 16.8 17.4 36.8 31.2 60 41.4 23.2 10 48.8 15 77.2 15 31.4 0 58.8-6 82.4-18.4 23.4-12.2 42.6-28.6 57.8-49.2s25.8-44 32.6-70.4c6.6-26 8.8-53.4 7-82.2zM776.6 496.2c-16.2 0-29.8-2.8-40.4-8.4s-19.2-12.4-25.8-20.4c-6.6-8.2-11-16.8-13.6-26.2-2.6-9-4.2-17.2-4.6-24.4h165.6c-2.4 26-11.4 45.2-23.4 58.6-12.4 13.6-32.8 20.8-57.8 20.8z" />
+<glyph unicode="&#xec2b;" glyph-name="deviantart" d="M829 773.8v186.2h-186.2l-18.6-18.8-88-167.4-27.6-18.6h-313.6v-255.6h172.4l15.4-18.6-187.8-358.8v-186.2h186.2l18.6 18.8 88 167.4 27.6 18.6h313.6v255.6h-172.4l-15.4 18.8z" />
+<glyph unicode="&#xec2c;" glyph-name="500px" d="M253 287.2c0.2-0.6 5.6-15.2 8.6-22.6 16.8-39.8 41-75.8 71.8-106.6s66.6-55 106.6-71.8c41.4-17.4 85.2-26.4 130.4-26.4s89.2 8.8 130.4 26.4c40 16.8 75.8 41 106.6 71.8s55 66.6 71.8 106.6c17.4 41.4 26.4 85.2 26.4 130.4s-8.8 89.2-26.4 130.4c-16.8 40-41 75.8-71.8 106.6s-66.6 55-106.6 71.8c-41.4 17.4-85.2 26.4-130.4 26.4-45.8 0-91.6-9.2-132.2-26.4-32.6-13.8-87.8-49.2-120-82.6l-0.2-0.2v276h463.4c16.8 0.2 16.8 23.8 16.8 31.4 0 7.8 0 31.2-17 31.4h-501c-13.6 0-22-11.4-22-21.8v-388.2c0-12.6 15.6-21.6 30.2-24.6 28.4-6 34.8 3 41.8 12.6l1 1.2c10.6 15.8 43.6 49 44 49.4 51.6 51.6 120.6 80 194.4 80 73.4 0 142.2-28.4 193.8-80 51.8-51.8 80.4-120.4 80.4-193.2 0-73-28.4-141.8-80-193.2-50.8-50.8-122-80-195-80-49.4 0-97.2 13.2-138.2 38.2l0.2 236c0 31.4 13.6 65.8 36.6 91.6 26.2 29.6 62.2 45.8 101.6 45.8 38 0 73.6-14.4 100.2-40.6 26.2-26 40.8-60.8 40.8-97.8 0-78.8-62-140.6-141.2-140.6-15.2 0-43 6.8-44.2 7-16 4.8-22.8-17.4-25-24.8-8.6-28.2 4.4-33.8 7-34.6 25.4-8 42.2-9.4 64.2-9.4 111.8 0 202.8 91 202.8 202.8 0 111-91 201.2-202.6 201.2-54.8 0-106.2-21-144.8-58.8-36.8-36.2-57.8-84.4-57.8-132.4v-1.2c-0.2-6-0.2-147.6-0.4-194l-0.2 0.2c-21 23.2-41.8 58.8-55.6 95.2-5.4 14.2-17.6 11.8-34.2 6.6-8-2.2-30-9-25-25.2v0zM491.2 342.6c0-6.8 6.2-12.8 10-16.2l1.2-1.2c6.4-6.2 12.4-9.4 18-9.4 4.6 0 7.4 2.2 8.4 3.2 2.8 2.6 34.4 34.8 37.6 37.8l35.4-35.2c3.2-3.6 6.8-5.6 11-5.6 5.6 0 11.8 3.4 18.2 10 15.2 15.6 7.6 24 4 28l-35.8 35.8 37.4 37.6c8.2 8.8 1 18.2-6.2 25.4-10.4 10.4-20.6 13.2-27 7.2l-37.2-37.2-37.6 37.6c-2 2-4.6 3-7.2 3-5 0-11-3.4-17.6-10-11.6-11.6-14-19.6-8-26l37.6-37.4-37.4-37.4c-3.4-3.2-5-6.6-4.8-10zM573 850.2c-60 0-124-12.2-170.8-32.4-5-2-8-6-8.6-11.6-0.6-5.4 0.8-12.4 4.4-21.6 3-7.4 10.6-27.2 25.6-21.4 48 18.4 101.2 28.4 149.4 28.4 54.8 0 108-10.8 158-31.8 39.8-16.8 77.2-41.2 118-76.4 3-2.6 6.2-3.8 9.4-3.8 8 0 15.6 7.8 22.2 15.2 10.8 12.2 18.4 22.4 7.6 32.6-39 36.8-81.6 64.4-134.4 86.8-57.2 23.8-118.2 36-180.8 36zM896.4 108.8v0c-7.2 7.2-13.4 11.4-18.8 13s-10.4 0.4-14.2-3.4l-3.6-3.6c-37.2-37.2-80.6-66.4-128.8-86.8-50-21.2-103-31.8-157.6-31.8-54.8 0-107.8 10.8-157.6 31.8-48.2 20.4-91.6 49.6-128.8 86.8-38.8 38.8-68 82.2-86.8 128.8-18.4 45.6-24.4 79.8-26.4 91-0.2 1-0.4 1.8-0.4 2.4-2.6 13.2-14.8 14.2-32.2 11.4-7.2-1.2-29.4-4.6-27.4-20.4v-0.4c5.8-37 16.2-73.2 30.8-107.6 23.4-55.4 57-105.2 99.8-148s92.6-76.2 148-99.8c57.4-24.2 118.4-36.6 181.2-36.6s123.8 12.4 181.2 36.6c55.4 23.4 105.2 57 148 99.8 0 0 2.4 2.4 3.8 3.8 4.4 5.4 8.6 14.4-10.2 33z" />
+<glyph unicode="&#xec2d;" glyph-name="steam" d="M704 672c0 53.019 42.981 96 96 96s96-42.981 96-96c0-53.019-42.981-96-96-96s-96 42.981-96 96zM958.392 830.392c-87.478 87.476-229.306 87.476-316.786 0-35.578-35.578-56.684-80.146-63.322-126.392v0l-204.694-310.228c-27.506-1.41-54.776-8.416-79.966-21.016l-157.892 123.424c-36.55 28.574-89.342 22.102-117.912-14.448-28.572-36.55-22.102-89.342 14.448-117.912l155.934-121.892c-16.96-66.782 0.672-140.538 52.93-192.794 78.906-78.904 206.832-78.904 285.736 0 48.466 48.466 67.15 115.428 56.076 178.166l249.054 222.986c46.248 6.638 90.816 27.744 126.394 63.322 87.478 87.476 87.478 229.306 0 316.784zM384 57.302c-74.39 0-134.698 60.304-134.698 134.698 0 0.712 0.042 1.414 0.054 2.124l66.912-52.304c15.36-12.006 33.582-17.824 51.674-17.824 24.962 0 49.672 11.080 66.238 32.272 28.572 36.55 22.102 89.342-14.448 117.912l-63.5 49.636c8.962 1.878 18.248 2.88 27.768 2.88 74.392 0 134.698-60.304 134.698-134.698s-60.306-134.696-134.698-134.696zM800 512c-88.366 0-160 71.634-160 160s71.634 160 160 160 160-71.634 160-160-71.634-160-160-160z" />
+<glyph unicode="&#xec2e;" glyph-name="steam2" d="M303.922 123.99c27.144 0 53.786 13.136 69.972 37.416 25.734 38.602 15.302 90.754-23.298 116.488l-66.074 44.048c11.308 3.080 23.194 4.756 35.478 4.756 74.392 0 134.696-60.304 134.696-134.698s-60.306-134.698-134.698-134.698c-72.404 0-131.444 57.132-134.548 128.774l71.954-47.968c14.322-9.548 30.506-14.118 46.518-14.118zM853.34 960c93.876 0 170.66-76.812 170.66-170.688v-682.628c0-93.936-76.784-170.684-170.66-170.684h-682.652c-93.876 0-170.688 76.75-170.688 170.682v203.028l121.334-80.888c-11.652-63.174 6.938-130.83 55.798-179.69 78.904-78.904 206.83-78.904 285.736 0 48.468 48.466 67.15 115.43 56.076 178.166l249.056 222.988c46.248 6.638 90.816 27.744 126.394 63.322 87.476 87.476 87.476 229.306 0 316.784-87.48 87.478-229.308 87.478-316.786 0-35.578-35.578-56.684-80.146-63.322-126.392v0l-204.694-310.23c-31.848-1.632-63.378-10.764-91.726-27.392l-217.866 145.244v277.69c0 93.876 76.81 170.688 170.686 170.688h682.654zM896 672c0 88.366-71.634 160-160 160s-160-71.634-160-160 71.634-160 160-160 160 71.634 160 160zM640 672c0 53.020 42.98 96 96 96s96-42.98 96-96-42.98-96-96-96-96 42.98-96 96z" />
+<glyph unicode="&#xec2f;" glyph-name="dropbox" d="M736 928l-224-192 288-192 224 192zM512 736l-224 192-288-192 224-192zM800 544l224-192-288-160-224 192zM512 384l-288 160-224-192 288-160zM728.156 114.43l-216.156 185.278-216.158-185.278-135.842 75.468v-93.898l352-160 352 160v93.898z" />
+<glyph unicode="&#xec30;" glyph-name="onedrive" d="M350.868 131.612c-60.274 15.060-93.856 62.97-93.962 134.064-0.032 22.726 1.612 33.62 7.286 48.236 13.908 35.834 50.728 62.872 99.176 72.822 24.11 4.95 31.536 10.266 31.536 22.572 0 3.862 2.872 15.36 6.378 25.552 15.932 46.306 45.43 84.91 76.948 100.702 32.99 16.526 49.642 20.254 89.548 20.040 56.674-0.304 84.952-12.598 124.496-54.128l21.75-22.842 19.484 6.742c94.3 32.636 188.306-22.916 195.888-115.756l2.072-25.398 18.57-6.65c53.032-19.004 77.96-58.904 73.442-117.556-2.958-38.358-20.89-68.98-49.3-84.184l-13.356-7.146-296.822-0.57c-228.094-0.44-300.6 0.368-313.134 3.5v0zM103.218 174.034c-36.176 9.086-74.506 42.854-92.48 81.47-10.196 21.906-10.738 25.128-10.738 63.88 0 36.864 0.87 42.778 8.988 61.080 17.11 38.582 49.894 66.46 91.030 77.408 8.684 2.312 16.842 6 18.128 8.196 1.29 2.198 2.722 14.164 3.182 26.592 2.866 77.196 50.79 145.214 117.708 167.056 36.154 11.8 83.572 12.898 122.896-3.726 12.47-5.274 11.068-6.404 37.438 30.14 15.594 21.612 45.108 44.49 70.9 58.18 27.838 14.776 56.792 21.584 91.412 21.494 96.768-0.252 180.166-64.22 211.004-161.848 9.854-31.192 9.362-39.926-2.26-40.184-5.072-0.112-19.604-3.064-32.292-6.558l-23.072-6.358-21.052 22.25c-59.362 62.734-156.238 76.294-238.592 33.396-32.9-17.138-59.34-41.746-79.31-73.81-14.236-22.858-32.39-65.504-32.39-76.094 0-7.51-5.754-11.264-30.332-19.782-76.094-26.376-120.508-87.282-120.476-165.218 0.010-28.368 6.922-63.074 16.52-82.956 3.618-7.494 5.634-14.622 4.484-15.836-2.946-3.106-97.608-2.060-110.696 1.228v0z" />
+<glyph unicode="&#xec31;" glyph-name="github" d="M512.008 947.358c-282.738 0-512.008-229.218-512.008-511.998 0-226.214 146.704-418.132 350.136-485.836 25.586-4.738 34.992 11.11 34.992 24.632 0 12.204-0.48 52.542-0.696 95.324-142.448-30.976-172.504 60.41-172.504 60.41-23.282 59.176-56.848 74.916-56.848 74.916-46.452 31.778 3.51 31.124 3.51 31.124 51.4-3.61 78.476-52.766 78.476-52.766 45.672-78.27 119.776-55.64 149.004-42.558 4.588 33.086 17.852 55.68 32.506 68.464-113.73 12.942-233.276 56.85-233.276 253.032 0 55.898 20.004 101.574 52.76 137.428-5.316 12.9-22.854 64.972 4.952 135.5 0 0 43.006 13.752 140.84-52.49 40.836 11.348 84.636 17.036 128.154 17.234 43.502-0.198 87.336-5.886 128.256-17.234 97.734 66.244 140.656 52.49 140.656 52.49 27.872-70.528 10.35-122.6 5.036-135.5 32.82-35.856 52.694-81.532 52.694-137.428 0-196.654-119.778-239.95-233.79-252.624 18.364-15.89 34.724-47.046 34.724-94.812 0-68.508-0.596-123.644-0.596-140.508 0-13.628 9.222-29.594 35.172-24.566 203.322 67.776 349.842 259.626 349.842 485.768 0 282.78-229.234 511.998-511.992 511.998z" />
+<glyph unicode="&#xec32;" glyph-name="npm" d="M0 960v-1024h1024v1024h-1024zM832 128h-128v512h-192v-512h-320v640h640v-640z" />
+<glyph unicode="&#xec33;" glyph-name="basecamp" d="M512 853.4c-186.8 0-330.8-156.4-412.4-309.6-46-86.2-78.2-180.6-93-277.2-1.6-11-3.2-22-4.4-33.2-0.6-6-1.2-12-1.6-18-0.6-7.6-0.2-10 3.8-16.4 12-19.4 26.2-37.4 42.2-53.6 32.8-33.6 72.6-59.4 114.8-79.4 96.2-45.4 204.8-61.8 310.4-65.4 109-3.6 221 5.4 325.2 39.4 89 29 174.8 79.6 224.2 161.4 5.4 8.8 1.6 21.8 0.6 32-1.2 12.2-2.8 24.2-4.8 36.2-3.6 23.6-8.4 46.8-14.2 70-11.6 47.2-27.4 93.6-46.6 138.2-69.6 161.6-198.4 334-381.6 369.6-20.6 4-41.6 6-62.6 6zM518.4 69.8c-114.2 0-238.6 10.2-341.4 65.2-40 21.4-80.8 52.4-100 95-5.6 12.4-3.6 17.2-1 31.8 1.8 9.4 2.6 18.6 6.8 27.4 5.8 12.2 11.8 24.2 18 36.2 21 40.6 43.6 80.8 69.8 118.6 13 18.6 26.8 37 42.8 53 11.2 11.2 24.8 23.2 40.6 27 48.4 11.6 85.4-44.4 114.8-72.6 14.2-13.6 33.2-29 54.4-26.4 14.6 1.8 27.6 13.2 38 22.6 35.4 31.8 63.8 71.2 93.2 108.2 14.6 18.2 29 36.6 44.8 54 10.6 11.8 22.2 25.2 36.4 32.8 25.4 13.8 57.8-14.6 75.4-29.2 30-25 56.6-54.2 82-83.8 24.2-28.2 47.6-56.8 68.2-87.8 31.8-48 59.4-99.2 84.6-151 5.4-11.2 7.2-18.8 9.2-31.2 1.2-6.8 3.8-14.6 2.8-21.6-1.4-9.8-8.2-20.4-13.2-28.4-12-19-28.2-35.4-46-49.2-74.6-57.8-175.6-77-267.4-85.6-37.6-3.6-75.2-5-112.8-5z" />
+<glyph unicode="&#xec34;" glyph-name="trello" d="M928 960h-832c-52.8 0-96-43.2-96-96v-832c0-52.8 43.2-96 96-96h832c52.8 0 96 43.2 96 96v832c0 52.8-43.2 96-96 96zM448 192c0-35.2-28.8-64-64-64h-128c-35.2 0-64 28.8-64 64v512c0 35.2 28.8 64 64 64h128c35.2 0 64-28.8 64-64v-512zM832 384c0-35.2-28.8-64-64-64h-128c-35.2 0-64 28.8-64 64v320c0 35.2 28.8 64 64 64h128c35.2 0 64-28.8 64-64v-320z" />
+<glyph unicode="&#xec35;" glyph-name="wordpress" d="M128 448.008c0-148.026 88.322-275.968 216.43-336.578l-183.178 488.784c-21.308-46.508-33.252-97.982-33.252-152.206zM771.228 466.872c0 46.234-17.054 78.236-31.654 103.142-19.458 30.82-37.72 56.894-37.72 87.716 0 34.374 26.766 66.376 64.486 66.376 1.704 0 3.32-0.204 4.976-0.302-68.316 60.97-159.34 98.196-259.308 98.196-134.16 0-252.186-67.046-320.844-168.568 9.010-0.282 17.506-0.454 24.712-0.454 40.154 0 102.34 4.752 102.34 4.752 20.69 1.182 23.132-28.434 2.458-30.822 0 0-20.81-2.368-43.952-3.55l139.834-405.106 84.044 245.456-59.822 159.65c-20.688 1.184-40.278 3.55-40.278 3.55-20.702 1.192-18.272 32.002 2.438 30.822 0 0 63.4-4.752 101.134-4.752 40.146 0 102.35 4.752 102.35 4.752 20.702 1.182 23.14-28.434 2.446-30.822 0 0-20.834-2.372-43.948-3.55l138.78-402.018 38.312 124.632c16.58 51.75 29.216 88.9 29.216 120.9zM518.742 415.296l-115.226-326.058c34.416-9.858 70.794-15.238 108.488-15.238 44.716 0 87.604 7.518 127.518 21.2-1.018 1.602-1.974 3.304-2.75 5.154l-118.030 314.942zM848.962 627.428c1.652-11.91 2.588-24.686 2.588-38.458 0-37.93-7.292-80.596-29.202-133.95l-117.286-330.272c114.162 64.828 190.938 185.288 190.938 323.258 0 65.030-17.060 126.16-47.038 179.422zM512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512 512 229.23 512 512-229.23 512-512 512zM512 0c-247.424 0-448 200.576-448 448s200.576 448 448 448 448-200.576 448-448-200.576-448-448-448z" />
+<glyph unicode="&#xec36;" glyph-name="joomla" d="M266.004 683.322c32.832 32.844 86.002 32.844 118.804 0.032l7.826-7.868 101.104 101.156-7.874 7.88c-57.624 57.7-138.514 77.878-212.42 60.522-10.594 65.182-67.088 114.924-135.174 114.956-75.65 0-136.954-61.442-136.97-137.158 0-65.336 45.59-120 106.662-133.83-23.138-77.45-4.242-164.834 56.846-225.984l227.826-227.9 100.996 101.214-227.81 227.886c-32.682 32.722-32.742 86.126 0.184 119.094zM1022.712 822.842c0.016 75.762-61.318 137.158-136.984 137.158-69.234 0-126.478-51.444-135.682-118.238-77.074 22.664-163.784 3.496-224.64-57.408l-227.84-227.9 101.102-101.172 227.766 227.856c32.94 32.966 85.988 32.906 118.684 0.184 32.8-32.83 32.8-86.114-0.032-118.956l-7.794-7.836 101.010-101.248 7.858 7.928c60.458 60.566 79.678 146.756 57.612 223.638 67.15 8.834 118.94 66.364 118.94 135.994zM906.266 208.936c18.102 74.458-1.976 156.324-60.108 214.5l-227.49 227.992-101.102-101.122 227.52-228.012c32.94-32.996 32.864-86.096 0.184-118.848-32.802-32.814-86.004-32.814-118.836 0.030l-7.766 7.79-100.994-101.246 7.732-7.728c61.516-61.594 149.618-80.438 227.368-56.488 12.632-62.682 67.934-109.804 134.258-109.804 75.604 0 136.968 61.35 136.968 137.126 0 69.2-51.18 126.456-117.734 135.81zM612.344 431.316l-227.536-227.992c-32.71-32.768-86.034-32.828-118.944 0.124-32.818 32.904-32.832 86.098-0.044 118.97l7.808 7.774-101.086 101.124-7.734-7.712c-58.76-58.802-78.56-141.834-59.45-216.982-60.398-14.26-105.358-68.634-105.358-133.496-0.016-75.746 61.332-137.126 136.982-137.126 65.1 0.032 119.588 45.418 133.54 106.382 74.702-18.552 156.998 1.304 215.344 59.756l227.49 227.96-101.012 101.218z" />
+<glyph unicode="&#xec37;" glyph-name="ello" d="M512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512 512 229.23 512 512-229.23 512-512 512zM824.636 370.402c-36.798-142.716-165.358-242.402-312.63-242.402-147.282 0-275.85 99.686-312.654 242.42-6.232 24.158 8.352 48.886 32.512 55.124 3.71 0.958 7.528 1.446 11.338 1.446 20.624 0 38.628-13.972 43.788-33.976 26.512-102.748 119.042-174.51 225.014-174.51 105.978 0 198.502 71.76 225 174.51 5.152 20.006 23.15 33.982 43.766 33.982 3.822 0 7.65-0.49 11.376-1.456 11.692-3.016 21.526-10.418 27.668-20.842 6.142-10.416 7.854-22.596 4.822-34.296z" />
+<glyph unicode="&#xec38;" glyph-name="blogger" d="M957.796 576h-57.406c-35.166 0-65.988 29.742-68.39 64v0c0.004 182.668-147.258 320-331.19 320h-167.824c-183.812 0-332.856-148-332.986-330.666v-362.798c0-182.654 149.174-330.536 332.984-330.536h358.42c183.948 0 332.596 147.882 332.596 330.536v234.382c0 36.502-29.44 75.082-66.204 75.082zM320 704h192c35.2 0 64-28.8 64-64s-28.8-64-64-64h-192c-35.2 0-64 28.8-64 64s28.8 64 64 64zM704 192h-384c-35.2 0-64 28.8-64 64s28.8 64 64 64h384c35.2 0 64-28.8 64-64s-28.8-64-64-64z" />
+<glyph unicode="&#xec39;" glyph-name="blogger2" d="M928 960h-832c-52.8 0-96-43.2-96-96v-832c0-52.8 43.2-96 96-96h832c52.8 0 96 43.2 96 96v832c0 52.8-43.2 96-96 96zM896 312c0-137-111.4-248-249.4-248h-268.8c-138 0-249.8 111-249.8 248v272c0 137 111.8 248 249.8 248h125.8c138 0 248.4-103 248.4-240 1.8-25.6 25-48 51.2-48h43c27.6 0 49.6-29 49.6-56.4v-175.6zM704 320c0-35.2-28.8-64-64-64h-256c-35.2 0-64 28.8-64 64v0c0 35.2 28.8 64 64 64h256c35.2 0 64-28.8 64-64v0zM576 576c0-35.2-28.8-64-64-64h-128c-35.2 0-64 28.8-64 64v0c0 35.2 28.8 64 64 64h128c35.2 0 64-28.8 64-64v0z" />
+<glyph unicode="&#xec3a;" glyph-name="tumblr" d="M576.032 512l-0.002-234.184c0-59.418-0.77-93.656 5.53-110.5 6.25-16.754 21.918-34.146 38.99-44.202 22.684-13.588 48.542-20.376 77.708-20.376 51.854 0 82.478 6.848 133.742 40.54v-153.944c-43.7-20.552-81.866-32.594-117.324-40.922-35.5-8.242-73.86-12.406-115.064-12.406-46.828 0-74.456 5.886-110.41 17.656-35.958 11.868-66.66 28.806-92.020 50.54-25.45 21.922-43.022 45.208-52.848 69.832-9.826 24.636-14.716 60.414-14.716 107.244v359.1h-137.426v145.006c40.208 13.042 85.164 31.788 113.78 56.152 28.754 24.45 51.766 53.706 69.106 87.944 17.392 34.146 29.348 77.712 35.872 130.516h165.084l-0.002-255.996h255.968v-192h-255.968z" />
+<glyph unicode="&#xec3b;" glyph-name="tumblr2" d="M928 960h-832c-52.8 0-96-43.2-96-96v-832c0-52.8 43.2-96 96-96h832c52.8 0 96 43.2 96 96v832c0 52.8-43.2 96-96 96zM731.8 135.4c-30.2-14.2-57.6-24.2-82-30-24.4-5.6-51-8.6-79.4-8.6-32.4 0-51.4 4-76.2 12.2s-46 19.8-63.6 34.8c-17.6 15.2-29.6 31.2-36.4 48.2s-10.2 41.6-10.2 74v247.8h-96v100c27.8 9 60 22 79.6 38.8 19.8 16.8 35.8 37 47.6 60.6 12 23.6 20.2 53.6 24.8 90h100.4v-163.2h163.6v-126.2h-163.4v-181.2c0-41-0.6-64.6 3.8-76.2s15.2-23.6 27-30.4c15.6-9.4 33.6-14 53.6-14 35.8 0 71.4 11.6 106.8 34.8v-111.4z" />
+<glyph unicode="&#xec3c;" glyph-name="yahoo" d="M568.2 371v0c112.6 197.6 298.6 520 349.6 589-22.4-15-56.8-22.6-88.4-29.8l-47.8 29.8c-38.4-71.6-180-303-270.2-451.2-91.4 151.4-199.6 326.2-270.2 451.2-56-12-79.2-12.6-135 0v0 0c0 0 0 0 0 0v0c110.8-166.8 288.2-484.6 348.6-589v0l-8.2-435 64.8 29.8v0.8l64.8-30.6-8 435z" />
+<glyph unicode="&#xec3d;" glyph-name="yahoo2" d="M513.2 890.4c-181 0-352 23.8-513.2 69.6 0-361.8 0-933.2 0-1024 161.4 45.8 332.4 69.6 513.2 69.6 178.8 0 349.4-23.2 510.8-69.6 0 348.4 0 649.8 0 1024-161.4-46.4-331.8-69.6-510.8-69.6zM796.8 803l-6.2-9.8c-5.8-9.2-11-17-18.2-28-9.6-14.4-27.6-43-49.2-79.8-6-10.2-13.4-22.4-21-35.6-14.6-24.6-31-52.4-44-74.4-5.4-9.4-10.8-19-16.4-28.6-14.4-25-29.2-50.8-43.4-75.6-14.6-25.8-29-51.2-43.4-76.4v-25.4c0-35.2 0.8-73.6 2-107.8 0.6-15.6 1.2-43.4 2-72.8 0.8-35 1.6-71.2 2.6-89.6l0.2-5.6v-0.6l-6 1.6c-2.4 0.6-4.6 1.2-7 1.8-7.2 1.6-15 2.8-22.6 3.6-4.6 0.4-9.4 0.6-14.2 0.6 0 0 0 0 0 0s0 0 0 0c-4.8 0-9.6-0.2-14.2-0.6-7.6-0.8-15.4-2-22.6-3.6-2.4-0.6-4.8-1.2-7-1.8l-6-1.6v0.6l0.2 5.6c0.8 18.2 1.8 54.6 2.6 89.6 0.6 29.4 1.4 57.2 2 72.8 1.4 34.4 2 72.6 2 107.8v25.4c-14.4 25.4-28.8 50.6-43.4 76.4-14.2 25-29 50.6-43.2 75.6-5.6 9.6-11 19.2-16.4 28.6-12.8 22.2-29.4 50-44 74.4-7.8 13-15.2 25.4-21 35.6-21.6 36.8-39.6 65.2-49.2 79.8-7.2 11-12.4 18.8-18.2 28l-6.2 9.8 11.2-3.2c14.2-4 28.8-6 44.4-6s30.6 2 44.6 6l3.4 1 1.8-3c27.6-49.8 101.8-171.8 146.2-244.8 15.2-25.2 27.4-45 33.4-55.2 0 0 0 0 0 0.2 0 0 0 0 0-0.2 6 10 18.2 30 33.4 55.2 44.4 72.8 118.6 194.8 146.2 244.8l1.8 3 3.4-1c14-4 29-6 44.6-6s30.2 2 44.4 6l10.6 3.2z" />
+<glyph unicode="&#xec3e;" glyph-name="tux" d="M567.656 223.084c-81.944-38.118-158.158-37.716-209.34-34.020-61.052 4.41-110.158 21.124-131.742 35.732-13.3 9.006-31.384 5.522-40.39-7.782-9.004-13.302-5.52-31.386 7.782-40.39 34.698-23.486 96.068-40.954 160.162-45.58 10.866-0.784 22.798-1.278 35.646-1.278 55.782 0 126.626 5.316 202.42 40.57 14.564 6.778 20.878 24.074 14.104 38.64-6.776 14.566-24.076 20.872-38.642 14.108zM890.948 266.184c2.786 252.688 28.762 730.206-454.97 691.612-477.6-38.442-350.964-542.968-358.082-711.95-6.308-89.386-35.978-198.648-77.896-309.846h129.1c13.266 47.122 23.024 93.72 27.232 138.15 7.782-5.428 16.108-10.674 24.994-15.7 14.458-8.518 26.884-19.844 40.040-31.834 30.744-28.018 65.59-59.774 133.712-63.752 4.572-0.262 9.174-0.394 13.676-0.394 68.896 0 116.014 30.154 153.878 54.382 18.14 11.612 33.818 21.64 48.564 26.452 41.91 13.12 78.532 34.296 105.904 61.252 4.276 4.208 8.242 8.538 11.962 12.948 15.246-55.878 36.118-118.758 59.288-181.504h275.65c-66.174 102.224-134.436 202.374-133.052 330.184zM124.11 403.648c0 0.016 0 0.030-0.002 0.046-4.746 82.462 34.71 151.832 88.126 154.936 53.412 3.106 100.56-61.228 105.304-143.692 0-0.014 0.004-0.030 0.004-0.044 0.256-4.446 0.368-8.846 0.37-13.206-16.924-4.256-32.192-10.436-45.872-17.63-0.052 0.612-0.092 1.216-0.152 1.83 0 0.008 0 0.018 0 0.026-4.57 46.81-29.572 82.16-55.852 78.958-26.28-3.204-43.88-43.75-39.312-90.558 0-0.010 0.004-0.018 0.004-0.026 1.992-20.408 7.868-38.636 16.042-52.444-2.034-1.604-7.784-5.812-14.406-10.656-4.97-3.634-11.020-8.058-18.314-13.43-19.882 26.094-33.506 63.58-35.94 105.89zM665.26 199.822c-1.9-43.586-58.908-84.592-111.582-101.044l-0.296-0.096c-21.9-7.102-41.428-19.6-62.104-32.83-34.732-22.224-70.646-45.208-122.522-45.208-3.404 0-6.894 0.104-10.326 0.296-47.516 2.778-69.742 23.032-97.88 48.676-14.842 13.526-30.19 27.514-49.976 39.124l-0.424 0.244c-42.706 24.104-69.212 54.082-70.908 80.194-0.842 12.98 4.938 24.218 17.182 33.4 26.636 19.972 44.478 33.022 56.284 41.658 13.11 9.588 17.068 12.48 20 15.264 2.096 1.986 4.364 4.188 6.804 6.562 24.446 23.774 65.36 63.562 128.15 63.562 38.404 0 80.898-14.8 126.17-43.902 21.324-13.878 39.882-20.286 63.38-28.4 16.156-5.578 34.468-11.902 58.992-22.404l0.396-0.164c22.88-9.404 49.896-26.564 48.66-54.932zM652.646 302.194c-4.4 2.214-8.974 4.32-13.744 6.286-22.106 9.456-39.832 15.874-54.534 20.998 8.116 15.894 13.16 35.72 13.624 57.242 0 0.010 0 0.022 0 0.030 1.126 52.374-25.288 94.896-58.996 94.976-33.71 0.078-61.95-42.314-63.076-94.686 0-0.010 0-0.018 0-0.028-0.038-1.714-0.042-3.416-0.020-5.11-20.762 9.552-41.18 16.49-61.166 20.76-0.092 1.968-0.204 3.932-0.244 5.92 0 0.016 0 0.036 0 0.050-1.938 95.412 56.602 174.39 130.754 176.402 74.15 2.014 135.828-73.7 137.772-169.11 0-0.018 0-0.038 0-0.052 0.874-43.146-10.66-82.866-30.37-113.678z" />
+<glyph unicode="&#xec3f;" glyph-name="appleinc" d="M791.498 415.908c-1.294 129.682 105.758 191.876 110.542 194.966-60.152 88.020-153.85 100.078-187.242 101.472-79.742 8.074-155.596-46.948-196.066-46.948-40.368 0-102.818 45.754-168.952 44.552-86.916-1.292-167.058-50.538-211.812-128.38-90.304-156.698-23.126-388.84 64.89-515.926 43.008-62.204 94.292-132.076 161.626-129.58 64.842 2.588 89.362 41.958 167.756 41.958s100.428-41.958 169.050-40.67c69.774 1.296 113.982 63.398 156.692 125.796 49.39 72.168 69.726 142.038 70.924 145.626-1.548 0.706-136.060 52.236-137.408 207.134zM662.562 796.478c35.738 43.358 59.86 103.512 53.28 163.522-51.478-2.096-113.878-34.29-150.81-77.55-33.142-38.376-62.148-99.626-54.374-158.436 57.466-4.484 116.128 29.204 151.904 72.464z" />
+<glyph unicode="&#xec40;" glyph-name="finder" d="M569.226 181.744c-0.002 0.044-0.002 0.088-0.004 0.132 0.002-0.044 0.002-0.088 0.004-0.132zM570.596 145.462c-0.012 0.234-0.022 0.466-0.032 0.702 0.010-0.234 0.020-0.466 0.032-0.702zM569.814 163.688c-0.006 0.178-0.012 0.356-0.020 0.536 0.010-0.182 0.016-0.358 0.020-0.536zM960 960h-896c-35.2 0-64-28.8-64-64v-896c0-35.2 28.8-64 64-64h493.832c0.044 0 0.088-0.006 0.132-0.006 0.042 0 0.084 0.006 0.126 0.006h401.91c35.2 0 64 28.8 64 64v896c0 35.2-28.8 64-64 64zM192 736c0 17.672 14.328 32 32 32s32-14.328 32-32v-64c0-17.672-14.328-32-32-32s-32 14.328-32 32v64zM960 0h-375.058c-6.7 42.082-10.906 85.476-13.388 127.604 0.006-0.116 0.010-0.228 0.018-0.344-19.696-2.146-39.578-3.26-59.572-3.26-133.65 0-262.382 48.656-362.484 137.006-14.906 13.156-16.326 35.906-3.168 50.812 13.158 14.904 35.906 16.326 50.814 3.168 86.936-76.728 198.748-118.986 314.838-118.986 19.086 0 38.052 1.166 56.816 3.416-2.192 118.194 6.876 211.914 7.026 213.404 0.898 8.996-2.050 17.952-8.118 24.654-6.066 6.702-14.682 10.526-23.724 10.526h-95.174c1.384 34.614 5.082 93.814 14.958 160.188 18.864 126.76 51.994 225.77 96.152 287.812h400.064v-896zM800 640c-17.674 0-32 14.328-32 32v64c0 17.672 14.326 32 32 32s32-14.328 32-32v-64c0-17.672-14.326-32-32-32zM540.496 124.768c-3.646-0.192-7.298-0.336-10.956-0.454 3.658 0.116 7.31 0.264 10.956 0.454zM512 124c4.692 0 9.374 0.074 14.050 0.196-4.676-0.122-9.358-0.196-14.050-0.196zM539.074 196.798c0.784 0.044 1.568 0.084 2.352 0.132-0.782-0.048-1.568-0.088-2.352-0.132zM525.084 196.2c1.074 0.030 2.146 0.072 3.218 0.11-1.072-0.038-2.144-0.082-3.218-0.11zM877.65 311.818c-13.156 14.91-35.908 16.322-50.812 3.168-72.642-64.114-162.658-104.136-258.022-115.57 0.43-23.278 1.294-47.496 2.754-72.156 111.954 12.21 217.786 58.614 302.912 133.746 14.908 13.156 16.326 35.906 3.168 50.812zM571.498 127.252c-4.606-0.5-9.222-0.936-13.848-1.322 4.626 0.384 9.244 0.822 13.848 1.322zM555.488 125.758c-3.906-0.312-7.822-0.576-11.742-0.806 3.92 0.226 7.834 0.496 11.742 0.806z" />
+<glyph unicode="&#xec41;" glyph-name="android" d="M896 576c-35.2 0-64-28.8-64-64v-256c0-35.2 28.8-64 64-64s64 28.8 64 64v256c0 35.2-28.8 64-64 64zM128 576c-35.2 0-64-28.8-64-64v-256c0-35.2 28.8-64 64-64s64 28.8 64 64v256c0 35.2-28.802 64-64 64zM224 224c0-53.020 42.98-96 96-96v0-128c0-35.2 28.8-64 64-64s64 28.8 64 64v128h128v-128c0-35.2 28.8-64 64-64s64 28.8 64 64v128c53.020 0 96 42.98 96 96v352h-576v-352zM798.216 639.998c-9.716 87.884-59.004 163.792-129.62 209.646l32.024 64.046c7.904 15.806 1.496 35.028-14.31 42.932s-35.030 1.496-42.932-14.312l-32.142-64.286-8.35 3.316c-28.568 9.502-59.122 14.66-90.886 14.66-31.762 0-62.316-5.158-90.888-14.656l-8.348-3.316-32.142 64.282c-7.904 15.808-27.128 22.212-42.932 14.312-15.808-7.904-22.214-27.126-14.312-42.932l32.022-64.046c-70.616-45.852-119.904-121.762-129.622-209.644v-32h574.222v31.998h-1.784zM416 704c-17.674 0-32 14.328-32 32 0 17.648 14.288 31.958 31.93 31.996 0.032 0 0.062-0.002 0.094-0.002 0.018 0 0.036 0.002 0.052 0.002 17.638-0.042 31.924-14.35 31.924-31.996 0-17.672-14.326-32-32-32zM608 704c-17.674 0-32 14.328-32 32 0 17.646 14.286 31.954 31.924 31.996 0.016 0 0.034-0.002 0.050-0.002 0.032 0 0.064 0.002 0.096 0.002 17.64-0.038 31.93-14.348 31.93-31.996 0-17.672-14.326-32-32-32z" />
+<glyph unicode="&#xec42;" glyph-name="windows" d="M412.23 448.086c-47.708 24.518-94.086 36.958-137.88 36.958-5.956 0-11.952-0.18-17.948-0.708-55.88-4.624-106.922-19.368-139.75-30.828-8.708-3.198-17.634-6.576-26.83-10.306l-89.822-311.394c61.702 22.832 116.292 33.938 166.27 33.938 80.846 0 139.528-30.208 187.992-61.304 22.962 77.918 78.044 266.090 94.482 322.324-11.95 7.284-24.076 14.57-36.514 21.32zM528.348 368.93l-90.446-314.148c26.832-15.372 117.098-64.050 186.212-64.050 55.792 0 118.252 14.296 190.834 43.792l86.356 301.976c-58.632-18.922-114.876-28.52-167.464-28.52-95.95 0-163.114 31.098-205.492 60.95zM292.822 591.21c77.118-0.798 134.152-30.208 181.416-60.502l92.752 317.344c-19.546 11.196-70.806 39.094-107.858 48.6-24.386 5.684-50.020 8.616-77.204 8.616-51.796-0.976-108.388-13.946-172.888-39.8l-88.44-310.596c64.808 24.436 120.644 36.34 172.086 36.34 0.046-0.002 0.136-0.002 0.136-0.002zM1024 761.876c-58.814-22.832-116.208-34.466-171.028-34.466-91.686 0-159.292 31.802-203.094 62.366l-91.95-318.236c61.746-39.708 128.29-59.878 198.122-59.878 56.948 0 115.94 13.68 175.462 40.688l-0.182 2.222 3.734 0.886 88.936 306.418z" />
+<glyph unicode="&#xec43;" glyph-name="windows8" d="M0.35 448l-0.35 312.074 384 52.144v-364.218zM448 821.518l511.872 74.482v-448h-511.872zM959.998 384l-0.126-448-511.872 72.016v375.984zM384 16.164l-383.688 52.594-0.020 315.242h383.708z" />
+<glyph unicode="&#xec44;" glyph-name="soundcloud" d="M891.96 445.796c-18.086 0-35.348-3.52-51.064-9.856-10.506 114.358-110.29 204.060-232 204.060-29.786 0-58.682-5.63-84.318-15.164-9.96-3.702-12.578-7.52-12.578-14.916v-402.714c0-7.766 6.24-14.234 14.124-14.996 0.336-0.034 363.536-0.21 365.89-0.21 72.904 0 131.986 56.816 131.986 126.894s-59.134 126.902-132.040 126.902zM400 192h32l16 224.22-16 223.78h-32l-16-223.78zM304 192h-32l-16 162.75 16 157.25h32l16-160zM144 192h32l16 128-16 128h-32l-16-128zM16 256h32l16 64-16 64h-32l-16-64z" />
+<glyph unicode="&#xec45;" glyph-name="soundcloud2" d="M928 960h-832c-52.8 0-96-43.2-96-96v-832c0-52.8 43.2-96 96-96h832c52.8 0 96 43.2 96 96v832c0 52.8-43.2 96-96 96zM176 256h-32l-16 96 16 96h32l16-96-16-96zM304 256h-32l-16 128 16 128h32l16-128-16-128zM432 256h-32l-16 192 16 192h32l16-192-16-192zM825.2 256c-2 0-301.2 0.2-301.4 0.2-6.4 0.6-11.6 6.2-11.8 12.8v345.2c0 6.4 2.2 9.6 10.4 12.8 21.2 8.2 45 13 69.6 13 100.2 0 182.4-76.8 191.2-175 13 5.4 27.2 8.4 42 8.4 60 0 108.8-48.8 108.8-108.8s-48.8-108.6-108.8-108.6z" />
+<glyph unicode="&#xec46;" glyph-name="skype" d="M425.6 922.6c-1.6 1-3.4 1.8-5 2.6-1.8-0.4-3.4-0.6-5.2-1l10.2-1.6zM36.8 539c-0.4-1.8-0.6-3.6-0.8-5.2 1-1.6 1.6-3.2 2.6-4.8l-1.8 10zM986.8 357.4c0.4 1.8 0.6 3.6 1 5.4-1 1.6-1.6 3.2-2.6 4.8l1.6-10.2zM592-23c1.6-1 3.4-1.8 5-2.6 1.8 0.4 3.6 0.6 5.4 0.8l-10.4 1.8zM987.8 362.8c-0.4-1.8-0.6-3.6-1-5.4l-1.8 10.4c1-1.8 1.8-3.4 2.8-5 5.2 28.8 8 58.2 8 87.6 0 65.2-12.8 128.6-38 188.2-24.4 57.6-59.2 109.4-103.6 153.8s-96.2 79.2-153.6 103.6c-59.6 25.2-123 38-188.2 38-30.8 0-61.6-2.8-91.6-8.6 0 0-0.2 0-0.2 0 1.6-0.8 3.4-1.6 5-2.6l-10.2 1.6c1.8 0.4 3.4 0.6 5.2 1-41.2 21.8-87.4 33.6-134.2 33.6-76.4 0-148.4-29.8-202.4-83.8s-83.8-126-83.8-202.4c0-48.6 12.6-96.6 36-138.8 0.4 1.8 0.6 3.6 0.8 5.2l1.8-10.2c-1 1.6-1.8 3.2-2.6 4.8-4.8-27.4-7.2-55.4-7.2-83.4 0-65.2 12.8-128.6 38-188.2 24.4-57.6 59.2-109.2 103.6-153.6s96.2-79.2 153.8-103.6c59.6-25.2 123-38 188.2-38 28.4 0 56.8 2.6 84.6 7.6-1.6 1-3.2 1.8-5 2.6l10.4-1.8c-1.8-0.4-3.6-0.6-5.4-0.8 42.8-24.2 91.4-37.2 140.8-37.2 76.4 0 148.4 29.8 202.4 83.8s83.8 126 83.8 202.4c-0.2 48.6-12.8 96.6-36.4 139.2zM514.2 154.2c-171.8 0-248.6 84.4-248.6 147.8 0 32.4 24 55.2 57 55.2 73.6 0 54.4-105.6 191.6-105.6 70.2 0 109 38.2 109 77.2 0 23.4-11.6 49.4-57.8 60.8l-152.8 38.2c-123 30.8-145.4 97.4-145.4 160 0 129.8 122.2 178.6 237 178.6 105.8 0 230.4-58.4 230.4-136.4 0-33.4-29-52.8-62-52.8-62.8 0-51.2 86.8-177.6 86.8-62.8 0-97.4-28.4-97.4-69s49.6-53.6 92.6-63.4l113.2-25.2c123.8-27.6 155.2-100 155.2-168 0-105.4-81-184.2-244.4-184.2z" />
+<glyph unicode="&#xec47;" glyph-name="reddit" d="M256 320c0 35.346 28.654 64 64 64s64-28.654 64-64c0-35.346-28.654-64-64-64s-64 28.654-64 64zM640 320c0 35.346 28.654 64 64 64s64-28.654 64-64c0-35.346-28.654-64-64-64s-64 28.654-64 64zM643.112 183.222c16.482 12.986 40.376 10.154 53.364-6.332s10.152-40.378-6.334-53.366c-45.896-36.158-115.822-59.524-178.142-59.524-62.322 0-132.248 23.366-178.144 59.522-16.486 12.99-19.32 36.882-6.332 53.368 12.99 16.482 36.882 19.318 53.366 6.332 26.422-20.818 78.722-43.222 131.11-43.222s104.688 22.404 131.112 43.222zM1024 448c0 70.692-57.308 128-128 128-48.116 0-89.992-26.57-111.852-65.82-65.792 35.994-145.952 59.246-233.28 64.608l76.382 171.526 146.194-42.2c13.152-37.342 48.718-64.114 90.556-64.114 53.020 0 96 42.98 96 96s-42.98 96-96 96c-36.56 0-68.342-20.442-84.554-50.514l-162.906 47.024c-18.224 5.258-37.538-3.722-45.252-21.052l-103.77-233.026c-85.138-5.996-163.262-29.022-227.636-64.236-21.864 39.25-63.766 65.804-111.882 65.804-70.692 0-128-57.308-128-128 0-52.312 31.402-97.254 76.372-117.102-8.070-24.028-12.372-49.104-12.372-74.898 0-176.73 200.576-320 448-320 247.422 0 448 143.27 448 320 0 25.792-4.3 50.862-12.368 74.886 44.97 19.85 76.368 64.802 76.368 117.114zM864 772c19.882 0 36-16.118 36-36s-16.118-36-36-36-36 16.118-36 36 16.118 36 36 36zM64 448c0 35.29 28.71 64 64 64 25.508 0 47.572-15.004 57.846-36.646-33.448-25.366-61.166-54.626-81.666-86.738-23.524 9.47-40.18 32.512-40.18 59.384zM512 12c-205.45 0-372 109.242-372 244s166.55 244 372 244c205.45 0 372-109.242 372-244s-166.55-244-372-244zM919.82 388.616c-20.5 32.112-48.218 61.372-81.666 86.738 10.276 21.642 32.338 36.646 57.846 36.646 35.29 0 64-28.71 64-64 0-26.872-16.656-49.914-40.18-59.384z" />
+<glyph unicode="&#xec48;" glyph-name="hackernews" d="M0 960v-1024h1024v1024h-1024zM544 376v-216h-64v216l-175 328h72.6l134.4-252 134.4 252h72.6l-175-328z" />
+<glyph unicode="&#xec49;" glyph-name="wikipedia" d="M966.8 726.4c0-3.2-1-6.2-3-9-2-2.6-4.2-4-6.8-4-20-2-36.4-8.4-49-19.2-12.8-10.8-25.8-31.8-39.2-62.4l-206.4-465.4c-1.4-4.4-5.2-6.4-11.4-6.4-4.8 0-8.6 2.2-11.4 6.4l-115.8 242-133.2-242c-2.8-4.4-6.4-6.4-11.4-6.4-6 0-9.8 2.2-11.8 6.4l-202.6 465.2c-12.6 28.8-26 49-40 60.4s-33.6 18.6-58.6 21.2c-2.2 0-4.2 1.2-6 3.4-2 2.2-2.8 4.8-2.8 7.8 0 7.6 2.2 11.4 6.4 11.4 18 0 37-0.8 56.8-2.4 18.4-1.6 35.6-2.4 51.8-2.4 16.4 0 36 0.8 58.4 2.4 23.4 1.6 44.2 2.4 62.4 2.4 4.4 0 6.4-3.8 6.4-11.4s-1.4-11.2-4-11.2c-18-1.4-32.4-6-42.8-13.8s-15.6-18-15.6-30.8c0-6.4 2.2-14.6 6.4-24.2l167.4-378.4 95.2 179.6-88.6 185.8c-16 33.2-29 54.6-39.2 64.2s-25.8 15.4-46.6 17.6c-2 0-3.6 1.2-5.4 3.4s-2.6 4.8-2.6 7.8c0 7.6 1.8 11.4 5.6 11.4 18 0 34.6-0.8 49.8-2.4 14.6-1.6 30-2.4 46.6-2.4 16.2 0 33.2 0.8 51.4 2.4 18.6 1.6 37 2.4 55 2.4 4.4 0 6.4-3.8 6.4-11.4s-1.2-11.2-4-11.2c-36.2-2.4-54.2-12.8-54.2-30.8 0-8 4.2-20.6 12.6-37.6l58.6-119 58.4 108.8c8 15.4 12.2 28.4 12.2 38.8 0 24.8-18 38-54.2 39.6-3.2 0-4.8 3.8-4.8 11.2 0 2.8 0.8 5.2 2.4 7.6s3.2 3.6 4.8 3.6c13 0 28.8-0.8 47.8-2.4 18-1.6 33-2.4 44.6-2.4 8.4 0 20.6 0.8 36.8 2 20.4 1.8 37.6 2.8 51.4 2.8 3.2 0 4.8-3.2 4.8-9.6 0-8.6-3-13-8.8-13-21-2.2-38-8-50.8-17.4s-28.8-30.8-48-64.4l-78.2-143.2 105.2-214.4 155.4 361.4c5.4 13.2 8 25.4 8 36.4 0 26.4-18 40.4-54.2 42.2-3.2 0-4.8 3.8-4.8 11.2 0 7.6 2.4 11.4 7.2 11.4 13.2 0 28.8-0.8 47-2.4 16.8-1.6 30.8-2.4 42-2.4 12 0 25.6 0.8 41.2 2.4 16.2 1.6 30.8 2.4 43.8 2.4 4 0 6-3.2 6-9.6z" />
+<glyph unicode="&#xec4a;" glyph-name="linkedin" d="M928 960h-832c-52.8 0-96-43.2-96-96v-832c0-52.8 43.2-96 96-96h832c52.8 0 96 43.2 96 96v832c0 52.8-43.2 96-96 96zM384 128h-128v448h128v-448zM320 640c-35.4 0-64 28.6-64 64s28.6 64 64 64c35.4 0 64-28.6 64-64s-28.6-64-64-64zM832 128h-128v256c0 35.4-28.6 64-64 64s-64-28.6-64-64v-256h-128v448h128v-79.4c26.4 36.2 66.8 79.4 112 79.4 79.6 0 144-71.6 144-160v-288z" />
+<glyph unicode="&#xec4b;" glyph-name="linkedin2" d="M384 576h177.106v-90.782h2.532c24.64 44.194 84.958 90.782 174.842 90.782 186.946 0 221.52-116.376 221.52-267.734v-308.266h-184.61v273.278c0 65.184-1.334 149.026-96.028 149.026-96.148 0-110.82-70.986-110.82-144.292v-278.012h-184.542v576zM64 576h192v-576h-192v576zM256 736c0-53.019-42.981-96-96-96s-96 42.981-96 96c0 53.019 42.981 96 96 96s96-42.981 96-96z" />
+<glyph unicode="&#xec4c;" glyph-name="lastfm" d="M451.6 193.8l-37.6 102c0 0-61-68-152.4-68-81 0-138.4 70.4-138.4 183 0 144.2 72.8 195.8 144.2 195.8 103.2 0 136-66.8 164.2-152.4l37.6-117.2c37.6-113.8 108-205.2 310.8-205.2 145.4 0 244 44.6 244 161.8 0 95-54 144.2-154.8 167.8l-75 16.4c-51.6 11.8-66.8 32.8-66.8 68 0 39.8 31.6 63.4 83.2 63.4 56.4 0 86.8-21.2 91.4-71.6l117.2 14c-9.4 105.6-82.2 149-201.8 149-105.6 0-208.8-39.8-208.8-167.8 0-79.8 38.8-130.2 136-153.6l79.8-18.8c59.8-14 79.8-38.8 79.8-72.8 0-43.4-42.2-61-122-61-118.4 0-167.8 62.2-195.8 147.8l-38.8 117.2c-49 152.6-127.6 208.8-283.6 208.8-172.4 0-264-109-264-294.4 0-178.2 91.4-274.4 255.8-274.4 132.4 0 195.8 62.2 195.8 62.2v0z" />
+<glyph unicode="&#xec4d;" glyph-name="lastfm2" d="M928 960h-832c-52.8 0-96-43.2-96-96v-832c0-52.8 43.2-96 96-96h832c52.8 0 96 43.2 96 96v832c0 52.8-43.2 96-96 96zM746.6 199.2c-177.6 0-239.2 80-272 179.6l-32.8 102.6c-24.6 75-53.4 133.4-143.6 133.4-62.6 0-126.2-45.2-126.2-171.4 0-98.6 50.2-160.2 121.2-160.2 80 0 133.4 59.6 133.4 59.6l32.8-89.2c0 0-55.4-54.4-171.4-54.4-144 0-224 84-224 240 0 162.2 80 257.6 231 257.6 136.6 0 205.2-49.2 248.4-182.6l33.8-102.6c24.6-75 67.8-129.4 171.4-129.4 69.8 0 106.8 15.4 106.8 53.4 0 29.8-17.4 51.4-69.8 63.6l-69.8 16.4c-85.2 20.6-119 64.6-119 134.4 0 111.8 90.4 146.8 182.6 146.8 104.6 0 168.4-38 176.6-130.4l-102.6-12.4c-4.2 44.2-30.8 62.6-80 62.6-45.2 0-72.8-20.6-72.8-55.4 0-30.8 13.4-49.2 58.4-59.6l65.6-14.4c88.2-20.6 135.4-63.6 135.4-146.8 0-102.2-86.2-141.2-213.4-141.2z" />
+<glyph unicode="&#xec4e;" glyph-name="delicious" d="M0 960v-1024h1024v1024h-1024zM512 0v448h-448v448h448v-448h448v-448h-448z" />
+<glyph unicode="&#xec4f;" glyph-name="stumbleupon" d="M512 640c-35.2 0-64-28.8-64-64v-256c0-105.8-86.2-192-192-192s-192 86.2-192 192v128h128v-128c0-35.2 28.8-64 64-64s64 28.8 64 64v256c0 105.8 86.2 192 192 192s192-86.2 192-178v-62l-82-24-46 24v62c0 21.2-28.8 50-64 50zM960 320c0-105.8-86.2-192-192-192s-192 86.2-192 206v124l46-24 82 24v-124c0-49.2 28.8-78 64-78s64 28.8 64 64v128h128v-128z" />
+<glyph unicode="&#xec50;" glyph-name="stumbleupon2" d="M852 960h-680c-94.6 0-172-77.4-172-172v-680c0-94.6 77.4-172 172-172h680c94.6 0 172 77.4 172 172v680c0 94.6-77.4 172-172 172zM512 640c-35.29 0-64-28.71-64-64v-256c0-105.872-86.13-192-192-192s-192 86.128-192 192v128h128v-128c0-35.29 28.71-64 64-64s64 28.71 64 64v256c0 105.87 86.13 192 192 192s192-86.13 192-178v-62l-82-24-46 24v62c0 21.29-28.71 50-64 50zM960 320c0-105.872-86.13-192-192-192s-192 86.128-192 206v124l46-24 82 24v-124c0-49.29 28.71-78 64-78s64 28.71 64 64v128h128v-128z" />
+<glyph unicode="&#xec51;" glyph-name="stackoverflow" d="M1024 320v-384h-1024v384h128v-256h768v256zM192 256h640v-128h-640zM207.152 394.534l27.698 124.964 624.832-138.496-27.698-124.964zM279.658 651.442l54.092 116.006 580.032-270.464-54.092-116.006zM991.722 598.524l-77.922-101.55-507.746 389.608 56.336 73.418h58.244z" />
+<glyph unicode="&#xec52;" glyph-name="pinterest" d="M512 891.6c-245 0-443.6-198.6-443.6-443.6 0-188 117-348.4 282-413-3.8 35-7.4 89 1.6 127.2 8 34.6 52 220.4 52 220.4s-13.2 26.6-13.2 65.8c0 61.6 35.8 107.8 80.2 107.8 37.8 0 56.2-28.4 56.2-62.4 0-38-24.2-95-36.8-147.6-10.6-44.2 22-80.2 65.6-80.2 78.8 0 139.4 83.2 139.4 203.2 0 106.2-76.4 180.4-185.2 180.4-126.2 0-200.2-94.6-200.2-192.6 0-38.2 14.6-79 33-101.2 3.6-4.4 4.2-8.2 3-12.8-3.4-14-10.8-44.2-12.4-50.4-2-8.2-6.4-9.8-14.8-6-55.4 25.8-90 106.8-90 171.8 0 140 101.6 268.4 293 268.4 153.8 0 273.4-109.6 273.4-256.2 0-152.8-96.4-276-230.2-276-45 0-87.2 23.4-101.6 51 0 0-22.2-84.6-27.6-105.4-10-38.6-37-86.8-55.2-116.2 41.6-12.8 85.6-19.8 131.4-19.8 245 0 443.6 198.6 443.6 443.6 0 245.2-198.6 443.8-443.6 443.8z" />
+<glyph unicode="&#xec53;" glyph-name="pinterest2" d="M512 960c-282.4 0-512-229.6-512-512s229.6-512 512-512 512 229.6 512 512-229.6 512-512 512zM512 4.4c-45.8 0-89.8 7-131.4 19.8 18 29.4 45.2 77.8 55.2 116.2 5.4 20.8 27.6 105.4 27.6 105.4 14.4-27.6 56.8-51 101.6-51 133.8 0 230.2 123 230.2 276 0 146.6-119.6 256.2-273.4 256.2-191.4 0-293-128.6-293-268.4 0-65 34.6-146 90-171.8 8.4-4 12.8-2.2 14.8 6 1.4 6.2 9 36.2 12.4 50.4 1 4.4 0.6 8.4-3 12.8-18.4 22.2-33 63.2-33 101.2 0 97.8 74 192.6 200.2 192.6 109 0 185.2-74.2 185.2-180.4 0-120-60.6-203.2-139.4-203.2-43.6 0-76.2 36-65.6 80.2 12.6 52.8 36.8 109.6 36.8 147.6 0 34-18.2 62.4-56.2 62.4-44.6 0-80.2-46-80.2-107.8 0-39.2 13.2-65.8 13.2-65.8s-44-185.8-52-220.4c-9-38.4-5.4-92.2-1.6-127.2-165 64.4-282 224.8-282 412.8 0 245 198.6 443.6 443.6 443.6s443.6-198.6 443.6-443.6c0-245-198.6-443.6-443.6-443.6z" />
+<glyph unicode="&#xec54;" glyph-name="xing" d="M928 960h-832c-52.8 0-96-43.2-96-96v-832c0-52.8 43.2-96 96-96h832c52.8 0 96 43.2 96 96v832c0 52.8-43.2 96-96 96zM312.6 294h-110.6c-6.6 0-11.6 3-14.4 7.6-3 4.8-3 10.8 0 17l117.6 207.6c0.2 0.2 0.2 0.4 0 0.6l-74.8 129.6c-3 6.2-3.6 12.2-0.6 17 2.8 4.6 8.4 7 15.2 7h110.8c17 0 25.4-11 30.8-20.8 0 0 75.6-132 76.2-132.8-4.4-8-119.6-211.4-119.6-211.4-6-10.4-14-21.4-30.6-21.4zM836.4 807.8l-245.2-433.6c-0.2-0.2-0.2-0.6 0-0.8l156.2-285.2c3-6.2 3.2-12.4 0.2-17.2-2.8-4.6-8-7-14.8-7h-110.6c-17 0-25.4 11.2-31 21 0 0-157 288-157.4 288.8 7.8 13.8 246.4 437 246.4 437 6 10.6 13.2 21 29.6 21h112.2c6.6 0 12-2.6 14.8-7 2.8-4.6 2.8-10.8-0.4-17z" />
+<glyph unicode="&#xec55;" glyph-name="xing2" d="M155.6 757.8c-8.8 0-16.4-3.2-20.2-9.2-3.8-6.4-3.2-14.4 0.8-22.6l99.8-172.8c0.2-0.4 0.2-0.6 0-0.8l-156.8-277.2c-4-8.2-3.8-16.4 0-22.6 3.8-6 10.4-10 19.2-10h147.6c22 0 32.8 15 40.2 28.6 0 0 153.4 271.4 159.4 282-0.6 1-101.6 177-101.6 177-7.4 13-18.4 27.6-41.2 27.6h-147.2zM776 960c-22 0-31.6-13.8-39.6-28.2 0 0-318.2-564.2-328.6-582.8 0.6-1 209.8-385 209.8-385 7.4-13 18.6-28.2 41.2-28.2h147.6c8.8 0 15.8 3.4 19.6 9.4 4 6.4 3.8 14.6-0.4 22.8l-208 380.6c-0.2 0.4-0.2 0.6 0 1l327 578.2c4 8.2 4.2 16.4 0.4 22.8-3.8 6-10.8 9.4-19.6 9.4h-149.4z" />
+<glyph unicode="&#xec56;" glyph-name="flattr" d="M367.562 960c-243.358 0-367.562-140.162-367.562-401.856v0-549.034l238.39 238.628v278.896c0 108.416 28.73 177.406 125.118 192.894v0c33.672 6.584 103.75 4.278 148.306 4.278v0-165.596c0-1.51 0.208-4.206 0.594-5.586v0c1.87-6.704 7.93-11.616 15.116-11.63v0c4.062-0.008 7.868 2.104 11.79 5.97v0l413.122 412.974-584.874 0.062zM785.61 648.254v-278.89c0-108.414-28.736-177.414-125.116-192.894v0c-33.672-6.582-103.756-4.278-148.312-4.278v0 165.594c0 1.5-0.206 4.204-0.594 5.582v0c-1.864 6.712-7.922 11.622-15.112 11.63v0c-4.064 0.008-7.866-2.112-11.79-5.966v0l-413.124-412.966 584.874-0.066c243.354 0 367.564 140.168 367.564 401.852v0 549.028l-238.39-238.626z" />
+<glyph unicode="&#xec57;" glyph-name="foursquare" d="M851.564 869.91c-12.060 16.404-31.204 26.090-51.564 26.090h-608c-35.346 0-64-28.654-64-64v-768c0-25.884 15.592-49.222 39.508-59.128 7.918-3.28 16.234-4.874 24.478-4.874 16.656 0 33.026 6.504 45.268 18.748l237.256 237.254h165.49c27.992 0 52.736 18.192 61.086 44.91l160 512c6.074 19.432 2.538 40.596-9.522 57zM672.948 640h-224.948c-35.346 0-64-28.654-64-64s28.654-64 64-64h184.948l-40-128h-144.948c-16.974 0-33.252-6.742-45.254-18.746l-146.746-146.744v549.49h456.948l-40-128z" />
+<glyph unicode="&#xec58;" glyph-name="yelp" d="M608.876 306.532c-17.282-17.426-2.668-49.128-2.668-49.128l130.090-217.218c0 0 21.36-28.64 39.864-28.64 18.59 0 36.954 15.27 36.954 15.27l102.844 147.008c0 0 10.36 18.546 10.598 34.792 0.372 23.106-34.454 29.434-34.454 29.434l-243.488 78.192c-0.002-0.004-23.858 6.328-39.74-9.71zM596.532 416.016c12.46-21.128 46.828-14.972 46.828-14.972l242.938 71.006c0 0 33.106 13.466 37.832 31.418 4.64 17.954-5.46 39.622-5.46 39.622l-116.098 136.752c0 0-10.062 17.292-30.938 19.032-23.016 1.958-37.18-25.898-37.18-25.898l-137.27-216.010c0-0.004-12.134-21.516-0.652-40.95zM481.754 500.232c28.608 7.044 33.148 48.604 33.148 48.604l-1.944 345.87c0 0-4.314 42.666-23.486 54.232-30.070 18.242-38.982 8.718-47.596 7.444l-201.696-74.944c0 0-19.754-6.536-30.042-23.018-14.69-23.352 14.928-57.544 14.928-57.544l209.644-285.756c0 0 20.69-21.396 47.044-14.888zM431.944 360.262c0.722 26.676-32.030 42.7-32.030 42.7l-216.796 109.524c0 0-32.126 13.246-47.722 4.016-11.95-7.060-22.536-19.84-23.572-31.134l-14.12-173.812c0 0-2.116-30.114 5.69-43.82 11.054-19.442 47.428-5.902 47.428-5.902l253.096 55.942c9.832 6.61 27.074 7.204 28.026 42.486zM494.88 266.458c-21.726 11.156-47.724-11.95-47.724-11.95l-169.468-186.566c0 0-21.144-28.528-15.768-46.050 5.066-16.418 13.454-24.578 25.318-30.328l170.192-53.726c0 0 20.634-4.286 36.258 0.242 22.18 6.43 18.094 41.152 18.094 41.152l3.848 252.602c-0.002-0.002-0.868 24.334-20.75 34.624z" />
+<glyph unicode="&#xec59;" glyph-name="paypal" d="M930 651.4c-47.8-212.2-195.4-324.2-428-324.2h-77.4l-53.8-341.6h-64.8l-3.4-22c-2.2-14.6 9-27.6 23.6-27.6h165.6c19.6 0 36.2 14.2 39.4 33.6l1.6 8.4 31.2 197.8 2 10.8c3 19.4 19.8 33.6 39.4 33.6h24.6c160.4 0 286 65.2 322.8 253.6 13.8 71.6 8.6 132.4-22.8 177.6zM831 882.8c-47.4 54-133.2 77.2-242.8 77.2h-318.2c-22.4 0-41.6-16.2-45-38.4l-132.6-840.4c-2.6-16.6 10.2-31.6 27-31.6h196.6l49.4 313-1.6-9.8c3.4 22.2 22.4 38.4 44.8 38.4h93.4c183.4 0 327 74.4 369 290 1.2 6.4 2.4 12.6 3.2 18.6 12.4 79.6 0 134-43.2 183z" />
+<glyph unicode="&#xec5a;" glyph-name="chrome" d="M258.278 513.458l-146.532 253.802c93.818 117.464 238.234 192.74 400.254 192.74 187.432 0 351.31-100.736 440.532-251h-417.77c-7.504 0.65-15.092 1-22.762 1-121.874 0-224.578-83.644-253.722-196.542zM695.306 635h293.46c22.74-57.93 35.234-121.004 35.234-187 0-280.826-226.1-508.804-506.186-511.926l209.394 362.678c29.48 42.378 46.792 93.826 46.792 149.248 0 73.17-30.164 139.42-78.694 187zM326 448c0 102.56 83.44 186 186 186s186-83.44 186-186c0-102.56-83.44-186-186-186s-186 83.44-186 186zM582.182 195.558l-146.578-253.878c-246.532 36.884-435.604 249.516-435.604 506.32 0 91.218 23.884 176.846 65.696 251.024l209.030-362.054c41.868-89.112 132.476-150.97 237.274-150.97 24.3 0 47.836 3.34 70.182 9.558z" />
+<glyph unicode="&#xec5b;" glyph-name="firefox" d="M1022.526 625.86l-11.86-76.080c0 0-16.954 140.856-37.732 193.514-31.846 80.688-46.014 80.040-46.108 79.922 21.33-54.204 17.462-83.324 17.462-83.324s-37.792 102.998-137.712 135.768c-110.686 36.282-170.57 26.364-177.488 24.486-1.050 0.008-2.064 0.010-3.030 0.010 0.818-0.062 1.612-0.146 2.426-0.212-0.034-0.020-0.090-0.042-0.082-0.052 0.45-0.548 122.306-21.302 143.916-50.996 0 0-51.76 0-103.272-14.842-2.328-0.666 189.524-23.964 228.746-215.674 0 0-21.030 43.876-47.040 51.328 17.106-52.036 12.714-150.776-3.576-199.85-2.096-6.312-4.24 27.282-36.328 41.75 10.28-73.646-0.616-190.456-51.708-222.632-3.982-2.504 32.030 115.31 7.242 69.762-142.708-218.802-311.404-100.972-387.248-49.11 38.866-8.462 112.654 1.318 145.314 25.612 0.042 0.030 0.078 0.056 0.118 0.086 35.468 24.252 56.472 41.964 75.334 37.772 18.874-4.214 31.438 14.726 16.78 31.53-14.676 16.838-50.314 39.978-98.524 27.366-34-8.904-76.134-46.522-140.448-8.432-49.364 29.25-54.012 53.546-54.45 70.376 1.218 5.966 2.754 11.536 4.576 16.624 5.682 15.87 22.912 20.658 32.494 24.438 16.256-2.792 30.262-7.862 44.968-15.406 0.19 4.894 0.252 11.39-0.018 18.76 1.41 2.802 0.538 11.252-1.722 21.58-1.302 10.308-3.42 20.974-6.752 30.692 0.012 0.002 0.020 0.010 0.030 0.014 0.056 0.018 0.108 0.040 0.156 0.070 0.078 0.044 0.146 0.112 0.208 0.19 0.012 0.020 0.030 0.034 0.044 0.052 0.082 0.124 0.154 0.272 0.198 0.466 1.020 4.618 12.022 13.524 25.718 23.1 12.272 8.58 26.702 17.696 38.068 24.752 10.060 6.248 17.72 10.882 19.346 12.098 0.618 0.466 1.358 1.012 2.164 1.636 0.15 0.116 0.3 0.232 0.454 0.354 0.094 0.074 0.19 0.148 0.286 0.226 5.41 4.308 13.484 12.448 15.178 29.578 0.004 0.042 0.010 0.080 0.012 0.122 0.050 0.504 0.092 1.014 0.13 1.534 0.028 0.362 0.050 0.726 0.072 1.096 0.014 0.284 0.032 0.566 0.044 0.856 0.030 0.674 0.050 1.364 0.060 2.064 0 0.040 0.002 0.076 0.004 0.116 0.022 1.658-0.006 3.386-0.104 5.202-0.054 1.014-0.126 1.93-0.298 2.762-0.008 0.044-0.018 0.092-0.028 0.136-0.018 0.082-0.036 0.164-0.058 0.244-0.036 0.146-0.076 0.292-0.122 0.43-0.006 0.018-0.010 0.032-0.016 0.046-0.052 0.16-0.112 0.314-0.174 0.464-0.004 0.006-0.004 0.010-0.006 0.016-1.754 4.108-8.32 5.658-35.442 6.118-0.026 0.002-0.050 0.002-0.076 0.002v0c-11.066 0.188-25.538 0.194-44.502 0.118-33.25-0.134-51.628 32.504-57.494 45.132 8.040 44.46 31.276 76.142 69.45 97.626 0.722 0.406 0.58 0.742-0.274 0.978 7.464 4.514-90.246 0.124-135.186-57.036-39.888 9.914-74.654 9.246-104.616 2.214-5.754 0.162-12.924 0.88-21.434 2.652-19.924 18.056-48.448 51.402-49.976 91.208 0 0-0.092-0.072-0.252-0.204-0.020 0.382-0.056 0.76-0.072 1.142 0 0-60.716-46.664-51.628-173.882-0.022-2.036-0.064-3.986-0.12-5.874-16.432-22.288-24.586-41.020-25.192-45.156-14.56-29.644-29.334-74.254-41.356-141.98 0 0 8.408 26.666 25.284 56.866-12.412-38.022-22.164-97.156-16.436-185.856 0 0 1.514 19.666 6.874 47.994 4.186-55.010 22.518-122.924 68.858-202.788 88.948-153.32 225.67-230.74 376.792-242.616 26.836-2.212 54.050-2.264 81.424-0.186 2.516 0.178 5.032 0.364 7.55 0.574 30.964 2.174 62.134 6.852 93.238 14.366 425.172 102.798 378.942 616.198 378.942 616.198z" />
+<glyph unicode="&#xec5c;" glyph-name="IE" d="M734.202 331.17h236.050c1.82 16.37 2.548 33.098 2.548 50.196 0 80.224-21.534 155.468-59.124 220.266 38.88 103.308 37.492 190.988-14.556 243.39-49.496 49.28-182.29 41.28-332.412-25.198-11.104 0.84-22.318 1.272-33.638 1.272-206.048 0-378.926-141.794-426.708-332.85 64.638 82.754 132.638 142.754 223.478 186.448-8.26-7.74-56.454-55.652-64.56-63.764-239.548-239.478-315.090-552.306-233.806-633.604 61.786-61.774 173.758-51.342 302.376 11.648 59.806-30.458 127.5-47.63 199.218-47.63 193.134 0 356.804 124.316 416.090 297.448h-237.868c-32.734-60.382-96.748-101.48-170.218-101.48-73.468 0-137.484 41.098-170.216 101.48-14.55 27.274-22.914 58.554-22.914 91.656v0.722h386.26zM348.302 447.196c5.456 97.11 86.2 174.584 184.766 174.584s179.312-77.472 184.766-174.584h-369.532zM896.966 796.192c33.526-33.88 32.688-96.214 4.012-174.022-49.136 74.908-120.518 133.936-204.792 167.64 90.106 38.638 163.406 43.756 200.78 6.382zM93.482-7.256c-42.782 42.796-29.884 132.618 25.23 240.832 34.308-96.27 101.156-177.090 187.336-229.154-95.43-43.318-173.536-50.674-212.566-11.678z" />
+<glyph unicode="&#xec5d;" glyph-name="edge" d="M15.4 505.4c30 236.8 191.6 451.6 481.2 454.6 174.8-3.4 318.6-82.6 404.2-233.6 43-78.8 56.4-161.6 59.2-253v-107.4h-642.6c3-265 390-256 556.6-139.2v-215.8c-97.6-58.6-319-111-490.4-43.6-146 54.8-250 207.6-249.4 354.6-4.8 190.6 94.8 316.8 249.4 388.6-32.8-40.6-57.8-85.4-70.8-163h362.8c0 0 21.2 216.8-205.4 216.8-213.6-7.4-367.6-131.6-454.8-259v0z" />
+<glyph unicode="&#xec5e;" glyph-name="safari" d="M512 960c-282.8 0-512-229.2-512-512s229.2-512 512-512 512 229.2 512 512-229.2 512-512 512zM958.4 487.2l-1 10.6c0.2-3.6 0.6-7 1-10.6zM888.4 691.2l-7.2 10.8c2.4-3.6 4.8-7.2 7.2-10.8zM860.6 729.4l-4.4 5.4c1.6-1.8 3-3.6 4.4-5.4zM798.6 792.4l-5.4 4.4c2-1.6 3.6-3 5.4-4.4zM766 817.2l-10.8 7.2c3.6-2.4 7.2-4.8 10.8-7.2zM561.8 893.2l-10.8 1c3.6-0.2 7.2-0.6 10.8-1zM472.8 894.4l-10.8-1c3.6 0.2 7.2 0.6 10.8 1zM268.8 824.4l-10.8-7.2c3.6 2.4 7.2 4.8 10.8 7.2zM230.6 796.6l-5.2-4.2c1.8 1.4 3.4 2.8 5.2 4.2zM167.6 734.6l-4.4-5.4c1.6 1.8 3 3.6 4.4 5.4zM142.8 702l-7.2-10.8c2.4 3.6 4.8 7.2 7.2 10.8zM66.8 497.8l-1-10.8c0.2 3.6 0.6 7.2 1 10.8zM65.6 408.8l1-10.8c-0.2 3.6-0.6 7.2-1 10.8zM135.6 205l7.2-10.8c-2.4 3.4-4.8 7-7.2 10.8zM144 192.4l79.8 53.4-8.8 13.4-79.8-53.4c-36.2 56.2-60 120.8-68 190.4l47.8 4.8-1.6 16-47.8-4.8c-0.8 9.2-1.2 18.6-1.4 28h96v16h-96c0.2 9.4 0.6 18.6 1.4 28l47.8-4.6 1.6 16-47.8 4.6c8 69.6 32 134.2 68.2 190.4l79.8-53.4 8.8 13.4-80 53c5.4 7.6 10.8 15.2 16.6 22.4l37-30.4 10.2 12.4-37 30.4c6 7.2 12.4 14 18.8 20.8l67.8-67.8 11.4 11.4-67.8 67.8c6.8 6.4 13.6 12.8 20.6 18.8l30.4-37.2 12.4 10.2-30.4 37c7.4 5.8 14.8 11.4 22.4 16.8l53.4-79.8 13.4 8.8-53.4 79.8c56.2 36.2 120.8 60 190.4 68l4.8-47.8 16 1.6-4.8 47.8c9.2 0.8 18.6 1.2 28 1.4v-96h16v96c9.4-0.2 18.6-0.6 28-1.4l-4.6-47.8 16-1.6 4.6 47.8c69.6-8 134.2-32 190.4-68.2l-53.4-79.8 13.4-8.8 53.4 79.8c7.6-5.4 15.2-10.8 22.4-16.6l-30.4-37 12.4-10.2 30.4 37c7.2-6 14-12.4 20.8-18.8l-25.6-25-350-233.4-233.4-350-25-25c-6.4 6.8-12.8 13.6-18.8 20.6l37 30.4-10.2 12.4-37-30.4c-5.8 7.2-11.2 14.8-16.6 22.4zM167.6 161.4c-1.4 1.8-2.8 3.4-4.2 5.2l4.2-5.2zM225.4 103.6l5.2-4.2c-1.8 1.4-3.4 2.8-5.2 4.2zM258 79l10.8-7.2c-3.6 2.2-7.2 4.6-10.8 7.2zM462.2 2.8l10.8-1c-3.6 0.2-7.2 0.6-10.8 1zM551.2 1.6l10.6 1c-3.6-0.2-7-0.6-10.6-1zM755.2 71.6l10.8 7.2c-3.6-2.4-7.2-4.8-10.8-7.2zM793.4 99.4l5.4 4.4c-1.8-1.6-3.6-3-5.4-4.4zM828.4 130.8l0.8 0.8c-0.2-0.2-0.6-0.6-0.8-0.8zM856.4 161.4l4.4 5.4c-1.6-1.8-3-3.6-4.4-5.4zM863.4 170l-37 30.4-10.2-12.4 37-30.4c-6-7.2-12.4-14-18.8-20.8l-67.8 67.8-11.4-11.4 67.8-67.8c-6.8-6.4-13.6-12.8-20.6-18.8l-30.4 37.2-12.4-10.2 30.4-37c-7.4-5.8-14.8-11.4-22.4-16.8l-53.4 79.8-13.4-8.8 53.4-79.8c-56.2-36.2-120.8-60-190.4-68l-4.8 47.8-16-1.6 4.8-47.8c-9.2-0.8-18.6-1.2-28-1.4v96h-16v-96c-9.4 0.2-18.6 0.6-28 1.4l4.6 47.8-16 1.6-4.6-47.8c-69.6 8-134.2 32-190.4 68.2l53.4 79.8-13.4 8.8-53-79.8c-7.6 5.4-15.2 10.8-22.4 16.6l30.4 37-12.4 10.2-30.4-37c-7.2 6-14 12.4-20.8 18.8l25.2 25 350 233.4 233.4 350 25 25c6.4-6.8 12.8-13.6 18.8-20.6l-37-30.4 10.2-12.4 37 30.4c5.8-7.4 11.4-14.8 16.8-22.4l-79.8-53.4 8.8-13.4 79.8 53.4c36.2-56.2 60-120.8 68-190.4l-47.8-4.8 1.6-16 47.8 4.8c0.8-9.2 1.2-18.6 1.4-28h-96v-16h96c-0.2-9.4-0.6-18.6-1.4-28l-47.8 4.6-1.6-16 47.8-4.6c-8-69.6-32-134.2-68.2-190.4l-79.8 53.4-8.8-13.4 79.8-53.4c-5.2-7.2-10.8-14.6-16.6-22zM958.4 409c-0.4-3.6-0.6-7.2-1-10.8l1 10.8zM888.4 204.8c-2.4-3.6-4.8-7.2-7.2-10.8l7.2 10.8zM432.535 888.925l18.73-94.157-15.693-3.122-18.73 94.157 15.693 3.122zM591.656 7.050l-18.73 94.157 15.693 3.122 18.73-94.157-15.693-3.122zM389.628 879.11l13.939-45.931-15.31-4.646-13.939 45.931 15.31 4.646zM634.434 17.113l-13.939 45.931 15.31 4.646 13.939-45.931-15.31-4.646zM348.014 864.901l36.739-88.694-14.782-6.123-36.739 88.694 14.782 6.123zM676.123 31.035l-36.739 88.694 14.782 6.123 36.739-88.694-14.782-6.123zM293.62 839.341l14.11 7.544 22.632-42.331-14.11-7.544-22.632 42.331zM730.101 56.711l-14.11-7.544-22.632 42.331 14.11 7.544 22.632-42.331zM120.601 666.174l42.336-22.622-7.541-14.112-42.336 22.622 7.541 14.112zM903.244 229.805l-42.336 22.622 7.541 14.112 42.336-22.622-7.541-14.112zM183.811 575.377l-88.694 36.739 6.123 14.782 88.694-36.739-6.123-14.782zM840.32 320.699l88.694-36.739-6.123-14.782-88.694 36.739 6.123 14.782zM85.543 585.613l45.936-13.93-4.643-15.312-45.936 13.93 4.643 15.312zM938.308 310.333l-45.936 13.93 4.643 15.312 45.936-13.93-4.643-15.312zM74.069 543.218l94.157-18.73-3.122-15.693-94.157 18.73 3.122 15.693zM949.741 352.757l-94.157 18.73 3.122 15.693 94.157-18.73-3.122-15.693zM70.965 368.452l94.157 18.73 3.122-15.693-94.157-18.73-3.122 15.693zM952.842 527.573l-94.157-18.73-3.122 15.693 94.157 18.73 3.122-15.693zM80.974 325.486l45.931 13.939 4.646-15.31-45.931-13.939-4.646 15.31zM942.969 570.293l-45.931-13.939-4.646 15.31 45.931 13.939 4.646-15.31zM101.142 269.088l-6.123 14.782 88.694 36.739 6.123-14.782-88.694-36.739zM922.794 626.769l6.122-14.782-88.694-36.73-6.122 14.782 88.694 36.73zM120.824 229.733l-7.544 14.11 42.331 22.632 7.544-14.11-42.331-22.632zM903.455 666.215l7.544-14.11-42.331-22.632-7.544 14.11 42.331 22.632zM307.878 49.154l-14.11 7.542 22.627 42.331 14.11-7.542-22.627-42.331zM716.073 846.926l14.112-7.541-22.622-42.336-14.112 7.541 22.622 42.336zM333.267 37.201l36.739 88.694 14.782-6.123-36.739-88.694-14.782 6.123zM690.884 858.89l-36.739-88.694-14.782 6.123 36.739 88.694 14.782-6.123zM389.634 16.972l-15.31 4.645 13.934 45.931 15.31-4.645-13.934-45.931zM634.349 879.118l15.312-4.642-13.925-45.936-15.312 4.642 13.925 45.936zM432.472 7.161l-15.693 3.122 18.73 94.157 15.693-3.122-18.73-94.157zM591.536 889.031l15.693-3.122-18.73-94.157-15.693 3.122 18.73 94.157z" />
+<glyph unicode="&#xec5f;" glyph-name="opera" d="M1024 448v0 0c0-151.6-66-288-170.8-381.6-131.4-64-253.8-19.2-294.2 8.8 129 28.2 226.4 184.2 226.4 372.8s-97.4 344.6-226.4 373c40.6 28 163 72.8 294.2 8.8 104.8-93.8 170.8-230.2 170.8-381.8v0 0zM343.4 736.6c-56.6-66.8-93.2-165.6-95.6-276.6 0-0.2 0-23.8 0-24.2 2.4-110.8 39.2-209.6 95.8-276.4 73.4-95.4 182.6-155.8 304.6-155.8 75 0 145.2 22.8 205.2 62.6-90.8-81-210.4-130.2-341.4-130.2-8.2 0-16.4 0.2-24.4 0.6-271.4 12.8-487.6 236.8-487.6 511.4 0 282.8 229.2 512 512 512 0.6 0 1.2 0 2 0 130.4-0.4 249.2-49.6 339.4-130.4-60 39.8-130.2 62.8-205.2 62.8-122 0-231.2-60.4-304.8-155.8z" />
+<glyph unicode="&#xec60;" glyph-name="file-pdf" d="M842.012 370.52c-13.648 13.446-43.914 20.566-89.972 21.172-31.178 0.344-68.702-2.402-108.17-7.928-17.674 10.198-35.892 21.294-50.188 34.658-38.462 35.916-70.568 85.772-90.576 140.594 1.304 5.12 2.414 9.62 3.448 14.212 0 0 21.666 123.060 15.932 164.666-0.792 5.706-1.276 7.362-2.808 11.796l-1.882 4.834c-5.894 13.592-17.448 27.994-35.564 27.208l-10.916 0.344c-20.202 0-36.664-10.332-40.986-25.774-13.138-48.434 0.418-120.892 24.98-214.738l-6.288-15.286c-17.588-42.876-39.63-86.060-59.078-124.158l-2.528-4.954c-20.46-40.040-39.026-74.028-55.856-102.822l-17.376-9.188c-1.264-0.668-31.044-16.418-38.028-20.644-59.256-35.38-98.524-75.542-105.038-107.416-2.072-10.17-0.53-23.186 10.014-29.212l16.806-8.458c7.292-3.652 14.978-5.502 22.854-5.502 42.206 0 91.202 52.572 158.698 170.366 77.93 25.37 166.652 46.458 244.412 58.090 59.258-33.368 132.142-56.544 178.142-56.544 8.168 0 15.212 0.78 20.932 2.294 8.822 2.336 16.258 7.368 20.792 14.194 8.926 13.432 10.734 31.932 8.312 50.876-0.72 5.622-5.21 12.574-10.068 17.32zM211.646 145.952c7.698 21.042 38.16 62.644 83.206 99.556 2.832 2.296 9.808 8.832 16.194 14.902-47.104-75.124-78.648-105.066-99.4-114.458zM478.434 760.314c13.566 0 21.284-34.194 21.924-66.254s-6.858-54.56-16.158-71.208c-7.702 24.648-11.426 63.5-11.426 88.904 0 0-0.566 48.558 5.66 48.558v0zM398.852 322.506c9.45 16.916 19.282 34.756 29.33 53.678 24.492 46.316 39.958 82.556 51.478 112.346 22.91-41.684 51.444-77.12 84.984-105.512 4.186-3.542 8.62-7.102 13.276-10.65-68.21-13.496-127.164-29.91-179.068-49.862v0zM828.902 326.348c-4.152-2.598-16.052-4.1-23.708-4.1-24.708 0-55.272 11.294-98.126 29.666 16.468 1.218 31.562 1.838 45.102 1.838 24.782 0 32.12 0.108 56.35-6.072 24.228-6.18 24.538-18.734 20.382-21.332v0zM917.806 730.924c-22.21 30.292-53.174 65.7-87.178 99.704s-69.412 64.964-99.704 87.178c-51.574 37.82-76.592 42.194-90.924 42.194h-496c-44.112 0-80-35.888-80-80v-864c0-44.112 35.886-80 80-80h736c44.112 0 80 35.888 80 80v624c0 14.332-4.372 39.35-42.194 90.924v0zM785.374 785.374c30.7-30.7 54.8-58.398 72.58-81.374h-153.954v153.946c22.982-17.78 50.678-41.878 81.374-72.572v0zM896 16c0-8.672-7.328-16-16-16h-736c-8.672 0-16 7.328-16 16v864c0 8.672 7.328 16 16 16 0 0 495.956 0.002 496 0v-224c0-17.672 14.324-32 32-32h224v-624z" />
+<glyph unicode="&#xec61;" glyph-name="file-openoffice" d="M690.22 488.318c-60.668 28.652-137.97 34.42-194.834-6.048 69.14 6.604 144.958-4.838 195.106-57.124 48 55.080 124.116 65.406 192.958 59.732-57.488 38.144-133.22 33.024-193.23 3.44v0zM665.646 354.25c-68.376 1.578-134.434-23.172-191.1-60.104-107.176 45.588-242.736 37.124-334.002-38.982 26.33 0.934 52.006 7.446 78.056 10.792 95.182 9.488 196.588-14.142 268.512-79.824 29.772 43.542 71.644 78.242 119.652 99.922 63.074 30.52 134.16 33.684 202.82 34.52-41.688 28.648-94.614 33.954-143.938 33.676zM917.806 730.924c-22.21 30.292-53.174 65.7-87.178 99.704s-69.412 64.964-99.704 87.178c-51.574 37.82-76.592 42.194-90.924 42.194h-496c-44.112 0-80-35.888-80-80v-864c0-44.112 35.886-80 80-80h736c44.112 0 80 35.888 80 80v624c0 14.332-4.372 39.35-42.194 90.924v0zM785.374 785.374c30.7-30.7 54.8-58.398 72.58-81.374h-153.954v153.946c22.982-17.78 50.678-41.878 81.374-72.572v0zM896 16c0-8.672-7.328-16-16-16h-736c-8.672 0-16 7.328-16 16v864c0 8.672 7.328 16 16 16 0 0 495.956 0.002 496 0v-224c0-17.672 14.324-32 32-32h224v-624z" />
+<glyph unicode="&#xec62;" glyph-name="file-word" d="M639.778 484.108h44.21l-51.012-226.178-66.324 318.010h-106.55l-77.114-318.010-57.816 318.010h-111.394l113.092-511.88h108.838l76.294 302.708 68.256-302.708h100.336l129.628 511.88h-170.446v-91.832zM917.806 730.924c-22.21 30.292-53.174 65.7-87.178 99.704s-69.412 64.964-99.704 87.178c-51.574 37.82-76.592 42.194-90.924 42.194h-496c-44.112 0-80-35.888-80-80v-864c0-44.112 35.886-80 80-80h736c44.112 0 80 35.888 80 80v624c0 14.332-4.372 39.35-42.194 90.924v0zM785.374 785.374c30.7-30.7 54.8-58.398 72.58-81.374h-153.954v153.946c22.982-17.78 50.678-41.878 81.374-72.572v0zM896 16c0-8.672-7.328-16-16-16h-736c-8.672 0-16 7.328-16 16v864c0 8.672 7.328 16 16 16 0 0 495.956 0.002 496 0v-224c0-17.672 14.324-32 32-32h224v-624z" />
+<glyph unicode="&#xec63;" glyph-name="file-excel" d="M743.028 576h-135.292l-95.732-141.032-95.742 141.032h-135.29l162.162-242.464-182.972-269.536h251.838v91.576h-50.156l50.156 74.994 111.396-166.57h140.444l-182.976 269.536 162.164 242.464zM917.806 730.924c-22.21 30.292-53.174 65.7-87.178 99.704s-69.412 64.964-99.704 87.178c-51.574 37.82-76.592 42.194-90.924 42.194h-496c-44.112 0-80-35.888-80-80v-864c0-44.112 35.886-80 80-80h736c44.112 0 80 35.888 80 80v624c0 14.332-4.372 39.35-42.194 90.924v0zM785.374 785.374c30.7-30.7 54.8-58.398 72.58-81.374h-153.954v153.946c22.982-17.78 50.678-41.878 81.374-72.572v0zM896 16c0-8.672-7.328-16-16-16h-736c-8.672 0-16 7.328-16 16v864c0 8.672 7.328 16 16 16 0 0 495.956 0.002 496 0v-224c0-17.672 14.324-32 32-32h224v-624z" />
+<glyph unicode="&#xec64;" glyph-name="libreoffice" d="M534.626 937.372c-12.444 12.444-37.026 22.628-54.626 22.628h-384c-17.6 0-32-14.4-32-32v-960c0-17.6 14.4-32 32-32h768c17.6 0 32 14.4 32 32v576c0 17.6-10.182 42.182-22.626 54.626l-338.748 338.746zM832 0h-704v896h351.158c2.916-0.48 8.408-2.754 10.81-4.478l337.556-337.554c1.722-2.402 3.996-7.894 4.476-10.81v-543.158zM864 960h-192c-17.6 0-21.818-10.182-9.374-22.626l210.746-210.746c12.446-12.446 22.628-8.228 22.628 9.372v192c0 17.6-14.4 32-32 32z" />
+<glyph unicode="&#xec65;" glyph-name="html-five" d="M60.538 960l82.144-921.63 368.756-102.37 369.724 102.524 82.3 921.476h-902.924zM784.63 658.572h-432.54l10.302-115.75h411.968l-31.042-347.010-231.844-64.254-231.572 64.254-15.83 177.512h113.494l8.048-90.232 125.862-33.916 0.278 0.078 125.934 33.992 13.070 146.55h-391.74l-30.494 341.8h566.214l-10.108-113.024z" />
+<glyph unicode="&#xec66;" glyph-name="html-five2" d="M60.538 960l82.144-921.63 368.756-102.37 369.724 102.524 82.3 921.476h-902.924zM810.762 97.176l-297.226-82.376v-0.466l-0.776 0.234-0.782-0.234v0.466l-297.222 82.376-70.242 787.486h736.496l-70.248-787.486zM650.754 429.796l-13.070-146.552-126.21-34.070-125.862 33.916-8.050 90.234h-113.49l15.83-177.512 232.076-64.176 231.342 64.176 31.040 347.012h-411.966l-10.302 115.748h432.534l10.112 113.026h-566.218l30.498-341.802z" />
+<glyph unicode="&#xec67;" glyph-name="css3" d="M152.388 911.478l-34.36-171.926h699.748l-21.884-111.054h-700.188l-33.892-171.898h699.684l-39.018-196.064-282.012-93.422-244.4 93.422 16.728 85.042h-171.898l-40.896-206.352 404.226-154.704 466.006 154.704 153.768 772.252z" />
+<glyph unicode="&#xec68;" glyph-name="git" d="M1004.692 493.606l-447.096 447.080c-25.738 25.754-67.496 25.754-93.268 0l-103.882-103.876 78.17-78.17c12.532 5.996 26.564 9.36 41.384 9.36 53.020 0 96-42.98 96-96 0-14.82-3.364-28.854-9.362-41.386l127.976-127.974c12.532 5.996 26.566 9.36 41.386 9.36 53.020 0 96-42.98 96-96s-42.98-96-96-96-96 42.98-96 96c0 14.82 3.364 28.854 9.362 41.386l-127.976 127.974c-3.042-1.456-6.176-2.742-9.384-3.876v-266.968c37.282-13.182 64-48.718 64-90.516 0-53.020-42.98-96-96-96s-96 42.98-96 96c0 41.796 26.718 77.334 64 90.516v266.968c-37.282 13.18-64 48.72-64 90.516 0 14.82 3.364 28.852 9.36 41.384l-78.17 78.17-295.892-295.876c-25.75-25.776-25.75-67.534 0-93.288l447.12-447.080c25.738-25.75 67.484-25.75 93.268 0l445.006 445.006c25.758 25.762 25.758 67.54-0.002 93.29z" />
+<glyph unicode="&#xec69;" glyph-name="codepen" d="M945.75 591.958l-448 298.666c-10.748 7.166-24.752 7.166-35.5 0l-448-298.666c-8.902-5.934-14.25-15.926-14.25-26.624v-298.666c0-10.7 5.348-20.692 14.25-26.624l448-298.666c5.374-3.584 11.562-5.376 17.75-5.376s12.376 1.792 17.75 5.376l448 298.666c8.902 5.934 14.25 15.926 14.25 26.624v298.666c0 10.698-5.348 20.69-14.25 26.624zM480 305.124l-166.312 110.876 166.312 110.874 166.312-110.874-166.312-110.876zM512 582.458v221.75l358.31-238.876-166.31-110.874-192 128zM448 582.458l-192-128-166.312 110.874 358.312 238.876v-221.75zM198.312 416l-134.312-89.542v179.082l134.312-89.54zM256 377.542l192-128v-221.748l-358.312 238.872 166.312 110.876zM512 249.542l192 128 166.312-110.876-358.312-238.874v221.75zM761.688 416l134.312 89.54v-179.084l-134.312 89.544z" />
+<glyph unicode="&#xec6a;" glyph-name="svg" d="M928 544c-28.428 0-53.958-12.366-71.536-32h-189.956l134.318 134.318c26.312-1.456 53.11 7.854 73.21 27.956 37.49 37.49 37.49 98.274 0 135.764s-98.274 37.49-135.766 0c-20.102-20.102-29.41-46.898-27.956-73.21l-134.314-134.318v189.954c19.634 17.578 32 43.108 32 71.536 0 53.020-42.98 96-96 96s-96-42.98-96-96c0-28.428 12.366-53.958 32-71.536v-189.954l-134.318 134.318c1.454 26.312-7.856 53.11-27.958 73.21-37.49 37.49-98.274 37.49-135.764 0-37.49-37.492-37.49-98.274 0-135.764 20.102-20.102 46.898-29.412 73.212-27.956l134.32-134.318h-189.956c-17.578 19.634-43.108 32-71.536 32-53.020 0-96-42.98-96-96s42.98-96 96-96c28.428 0 53.958 12.366 71.536 32h189.956l-134.318-134.318c-26.314 1.456-53.11-7.854-73.212-27.956-37.49-37.492-37.49-98.276 0-135.766 37.492-37.49 98.274-37.49 135.764 0 20.102 20.102 29.412 46.898 27.958 73.21l134.316 134.32v-189.956c-19.634-17.576-32-43.108-32-71.536 0-53.020 42.98-96 96-96s96 42.98 96 96c0 28.428-12.366 53.958-32 71.536v189.956l134.318-134.318c-1.456-26.312 7.854-53.11 27.956-73.21 37.492-37.49 98.276-37.49 135.766 0s37.49 98.274 0 135.766c-20.102 20.102-46.898 29.41-73.21 27.956l-134.32 134.316h189.956c17.576-19.634 43.108-32 71.536-32 53.020 0 96 42.98 96 96s-42.982 96-96.002 96z" />
+<glyph unicode="&#xec6b;" glyph-name="IcoMoon" d="M259.544 448.002c0 65.416 53.030 118.446 118.446 118.446s118.446-53.030 118.446-118.446c0-65.416-53.030-118.446-118.446-118.446s-118.446 53.030-118.446 118.446zM512.004 960c-282.774 0-512.004-229.232-512.004-512s229.226-512 512.004-512c282.764 0 511.996 229.23 511.996 512 0 282.768-229.23 512-511.996 512zM379.396 0.718c-153.956 89.574-257.468 256.324-257.468 447.282s103.512 357.708 257.462 447.282c154.010-89.562 257.59-256.288 257.59-447.282 0-190.988-103.58-357.718-257.584-447.282z" />
+</font></defs></svg>
\ No newline at end of file
diff --git a/UyTube_mobile/web/iconos/fonts/icomoon_freeEntypo.ttf b/UyTube_mobile/web/iconos/fonts/icomoon_freeEntypo.ttf
new file mode 100644
index 0000000000000000000000000000000000000000..446e5fb9f0ce26f6b0c5ecaf42bc21aea20a13d3
Binary files /dev/null and b/UyTube_mobile/web/iconos/fonts/icomoon_freeEntypo.ttf differ
diff --git a/UyTube_mobile/web/iconos/fonts/icomoon_freeEntypo.woff b/UyTube_mobile/web/iconos/fonts/icomoon_freeEntypo.woff
new file mode 100644
index 0000000000000000000000000000000000000000..5b8ce96e7194e008214bdd5f890b3d85d28b7723
Binary files /dev/null and b/UyTube_mobile/web/iconos/fonts/icomoon_freeEntypo.woff differ
diff --git a/UyTube_mobile/web/iconos/icomoon_freeEntypo-v1.0.zip b/UyTube_mobile/web/iconos/icomoon_freeEntypo-v1.0.zip
new file mode 100644
index 0000000000000000000000000000000000000000..1f3d0f37852630369661526c907fdc160dc2e612
Binary files /dev/null and b/UyTube_mobile/web/iconos/icomoon_freeEntypo-v1.0.zip differ
diff --git a/UyTube_mobile/web/iconos/selection.json b/UyTube_mobile/web/iconos/selection.json
new file mode 100644
index 0000000000000000000000000000000000000000..90cff72624c22b011d5ddd8826d5af88c8df26bb
--- /dev/null
+++ b/UyTube_mobile/web/iconos/selection.json
@@ -0,0 +1 @@
+{"IcoMoonType":"selection","icons":[{"icon":{"paths":["M993.28 460.8h-174.080v-174.080c0-30.72-20.48-30.72-51.2-30.72s-51.2 0-51.2 30.72v174.080h-174.080c-30.72 0-30.72 20.48-30.72 51.2s0 51.2 30.72 51.2h174.080v174.080c0 30.72 20.48 30.72 51.2 30.72s51.2 0 51.2-30.72v-174.080h174.080c30.72 0 30.72-20.48 30.72-51.2s0-51.2-30.72-51.2zM378.88 460.8h-348.16c-30.72 0-30.72 20.48-30.72 51.2s0 51.2 30.72 51.2h348.16c30.72 0 30.72-20.48 30.72-51.2s0-51.2-30.72-51.2zM378.88 716.8h-348.16c-30.72 0-30.72 20.48-30.72 51.2s0 51.2 30.72 51.2h348.16c30.72 0 30.72-20.48 30.72-51.2s0-51.2-30.72-51.2zM378.88 204.8h-348.16c-30.72 0-30.72 20.48-30.72 51.2s0 51.2 30.72 51.2h348.16c30.72 0 30.72-20.48 30.72-51.2s0-51.2-30.72-51.2z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["add-to-list"],"grid":20},"attrs":[],"properties":{"id":1,"order":2,"prevSize":20,"code":59648,"name":"add-to-list"},"setIdx":0,"setId":1,"iconIdx":0},{"icon":{"paths":["M819.2 0h-614.4c-56.32 0-102.4 46.029-102.4 102.4v768c0 28.262 22.886 51.2 51.2 51.2v102.4h716.8v-102.4c28.314 0 51.2-22.938 51.2-51.2v-768c0-56.371-46.029-102.4-102.4-102.4zM716.8 768h-204.8v-51.2h204.8v51.2zM768 563.2h-512v-409.6h512v409.6z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["classic-computer"],"grid":20},"attrs":[],"properties":{"id":2,"order":3,"prevSize":20,"code":59649,"name":"classic-computer"},"setIdx":0,"setId":1,"iconIdx":1},{"icon":{"paths":["M919.501 234.035l-368.794 253.389c0 0-14.285 10.291-14.285 24.627s14.285 24.525 14.285 24.525l368.794 253.491c29.286 19.456 53.299 5.069 53.299-32.051v-491.981c0-37.222-24.013-51.61-53.299-32zM454.81 234.035l-368.794 253.389c0 0-14.285 10.291-14.285 24.627s14.285 24.525 14.285 24.525l368.794 253.491c29.286 19.507 53.299 5.12 53.299-32v-492.032c0-37.222-24.013-51.61-53.299-32z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["controller-fast-backward"],"grid":20},"attrs":[],"properties":{"id":3,"order":4,"prevSize":20,"code":59650,"name":"controller-fast-backward"},"setIdx":0,"setId":1,"iconIdx":2},{"icon":{"paths":["M644.26 390.306c0-17.535-14.234-31.739-31.739-31.739h-201.050c-17.527 0-31.739 14.205-31.739 31.739v201.058h56.077v238.076h152.367v-238.076h56.085v-201.058z","M580.766 263.333c0 37.983-30.791 68.774-68.774 68.774s-68.774-30.791-68.774-68.774c0-37.983 30.791-68.774 68.774-68.774s68.774 30.791 68.774 68.774z","M511.376 20.488c-136.16 0-251.41 47.505-345.722 142.528-96.8 98.309-145.174 214.631-145.174 348.985 0 134.338 48.374 249.866 145.174 346.524 96.771 96.659 212.023 144.988 345.722 144.988 135.329 0 252.627-48.72 351.88-146.217 93.493-92.549 140.264-207.658 140.264-345.295s-47.58-253.961-142.723-348.985c-95.158-95.023-211.633-142.528-349.421-142.528zM512.607 108.941c111.553 0 206.277 39.315 284.215 117.974 78.734 77.819 118.094 172.842 118.094 285.085 0 113.039-38.535 206.847-115.648 281.395-81.209 80.279-176.757 120.419-286.661 120.419-109.925 0-204.656-39.72-284.215-119.189s-119.338-173.667-119.338-282.626c0-108.958 40.192-203.982 120.576-285.085 77.106-78.659 171.416-117.974 282.977-117.974z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"tags":["creative-commons-attribution"],"grid":20},"attrs":[{},{},{}],"properties":{"id":4,"order":5,"prevSize":20,"code":59651,"name":"creative-commons-attribution"},"setIdx":0,"setId":1,"iconIdx":3},{"icon":{"paths":["M511.366 20.484c-136.147 0-251.398 47.49-345.711 142.529-96.801 98.309-145.175 214.617-145.175 348.987 0 134.339 48.374 249.868 145.175 346.497 96.772 96.689 212.025 145.019 345.711 145.019 135.336 0 252.635-48.749 351.889-146.218 93.494-92.58 140.265-207.689 140.265-345.298 0-137.638-47.58-253.979-142.724-348.987-95.159-95.039-211.633-142.529-349.43-142.529zM512.603 108.923c111.554 0 206.279 39.331 284.218 117.988 78.735 77.821 118.094 172.829 118.094 285.089 0 113.040-38.535 206.848-115.649 281.398-81.209 80.28-176.758 120.389-286.663 120.389-109.918 0-204.65-39.719-284.21-119.19-79.559-79.469-119.339-173.668-119.339-282.597 0-108.989 40.192-203.999 120.577-285.089 77.107-78.658 171.418-117.988 282.972-117.988z","M697.702 395.511h-357.282v84.63h357.282v-84.63zM697.702 553.459h-357.282v84.63h357.282v-84.63z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"tags":["creative-commons-noderivs"],"grid":20},"attrs":[{},{}],"properties":{"id":5,"order":6,"prevSize":20,"code":59652,"name":"creative-commons-noderivs"},"setIdx":0,"setId":1,"iconIdx":4},{"icon":{"paths":["M860.779 163.010c-95.16-95.040-211.621-142.53-349.411-142.53-136.169 0-251.399 47.49-345.72 142.53-96.809 98.31-145.169 214.621-145.169 348.99 0 134.34 48.359 249.87 145.169 346.5 96.78 96.69 212.011 145.020 345.72 145.020 135.331 0 252.631-48.75 351.87-146.22 93.51-92.579 140.282-207.69 140.282-345.3 0-137.639-47.581-253.979-142.741-348.99zM799.249 793.4c-81.21 80.281-176.76 120.39-286.65 120.39-109.919 0-204.66-39.719-284.22-119.189-79.56-79.471-119.34-173.671-119.34-282.601 0-46.080 7.274-89.639 21.659-130.709l130.245 57.645h-9.39v58.409h46.095c0 8.25-0.825 16.471-0.825 24.69v14.011h-45.271v58.409h53.49c7.41 43.619 23.865 78.99 46.080 106.979 46.080 60.901 120.135 93.811 200.775 93.811 52.68 0 100.381-15.63 128.37-31.291l-19.77-91.32c-17.28 9.061-55.92 21.39-93.779 21.39-41.16 0-79.815-12.329-106.156-41.97-12.345-13.981-21.39-32.91-27.135-57.6h178.89l254.19 112.515c-17.61 31.199-39.959 60.030-67.26 86.429zM479.569 536.046l-1.080-0.826 1.86 0.826h-0.78zM632.599 497.345h7.35v-58.409h-139.32l-56.595-25.051c4.875-10.95 10.635-20.745 17.355-28.41 25.516-31.319 61.71-44.46 101.221-44.46 36.21 0 69.929 10.68 91.32 19.739l23.040-93.81c-29.64-13.139-73.23-24.659-123.421-24.659-77.339 0-143.175 31.259-190.080 83.909-10.41 12.031-19.44 25.531-27.63 39.81l-161.639-71.535c15.66-23.49 34.079-46.049 55.41-67.559 77.13-78.66 171.419-117.991 282.99-117.991 111.54 0 206.28 39.331 284.22 117.991 78.72 77.82 118.080 172.829 118.080 285.089 0 36.99-4.199 71.88-12.48 104.76l-269.82-119.415z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["creative-commons-noncommercial-eu"],"grid":20},"attrs":[],"properties":{"id":6,"order":7,"prevSize":20,"code":59653,"name":"creative-commons-noncommercial-eu"},"setIdx":0,"setId":1,"iconIdx":5},{"icon":{"paths":["M511.369 20.48c137.79 0 254.28 47.505 349.44 142.53 95.131 95.040 142.711 211.364 142.711 348.99s-46.771 252.735-140.251 345.3c-99.27 97.485-216.57 146.22-351.901 146.22-133.68 0-248.939-48.315-345.72-144.989-96.794-96.661-145.169-212.191-145.169-346.531s48.375-250.68 145.169-348.99c94.321-95.025 209.581-142.53 345.72-142.53zM131.060 379.97c-14.67 41.475-22.005 85.485-22.005 132.030 0 108.961 39.779 203.161 119.34 282.615 79.576 79.47 174.285 119.206 284.205 119.206 109.921 0 205.471-40.125 286.68-120.421 27.179-26.279 49.559-54.93 67.14-85.994l-185.28-82.515c-12.571 62.34-68.131 104.46-135.3 109.411v75.765h-56.416v-75.765c-55.17-0.631-108.465-23.175-149.204-58.861l67.71-68.264c32.594 30.689 65.189 44.475 109.709 44.475 28.831 0 60.81-11.28 60.81-48.856 0-13.319-5.159-22.575-13.289-29.534l-105.21-46.845c-28.86-12.855-53.31-23.745-77.851-34.651l-251.039-111.795zM512.599 108.935c-111.54 0-205.859 39.329-282.96 117.989-20.999 21.166-39.239 43.291-54.749 66.375l187.89 83.655c16.98-52.11 66.51-83.715 126.645-87.254v-75.766h56.416v75.766c38.879 1.874 81.509 12.525 123.51 45.089l-64.559 66.375c-23.82-16.905-53.911-28.815-84.030-28.815-24.436 0-58.921 7.529-58.921 38.205 0 4.68 1.561 8.806 4.41 12.48l105.391 46.936c27.21 12.105 53.19 23.67 78.929 35.13l251.85 112.14c8.341-33.001 12.511-68.085 12.511-105.241 0-112.245-39.36-207.269-118.111-285.075-77.94-78.66-172.649-117.989-284.22-117.989z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["creative-commons-noncommercial-us"],"grid":20},"attrs":[],"properties":{"id":7,"order":8,"prevSize":20,"code":59654,"name":"creative-commons-noncommercial-us"},"setIdx":0,"setId":1,"iconIdx":6},{"icon":{"paths":["M511.358 20.484c-136.147 0-251.398 47.505-345.711 142.529-96.801 98.309-145.175 214.633-145.175 348.987 0 134.339 48.374 249.853 145.175 346.513 96.772 96.674 212.025 145.003 345.711 145.003 135.336 0 252.635-48.734 351.889-146.218 93.494-92.565 140.265-207.673 140.265-345.298 0-137.638-47.58-253.963-142.724-348.987-95.159-95.024-211.633-142.529-349.43-142.529zM512.594 108.938c111.554 0 206.279 39.315 284.218 117.975 78.735 77.819 118.094 172.843 118.094 285.087 0 113.040-38.535 206.848-115.649 281.398-81.209 80.28-176.758 120.42-286.663 120.42-109.918 0-204.65-39.736-284.21-119.205-79.559-79.454-119.339-173.668-119.339-282.613 0-108.958 40.192-203.984 120.577-285.087 77.107-78.659 171.418-117.975 282.972-117.975z","M349.164 423.86h55.326c30.909 0 43.875 14.881 43.875 41.969 0 20.986-11.062 41.206-41.969 41.206h-57.232v-83.175zM281.244 645.169h68.685v-87.763h53.032c93.106 0 113.325-55.71 113.325-91.95 0-53.804-27.090-91.964-100.349-91.964h-134.692v271.678z","M534.78 645.169h105.313c82.799 0 138.494-39.3 138.494-135.838 0-96.54-55.695-135.84-138.494-135.84h-105.313v271.678zM602.685 430.731h38.549c51.135 0 69.45 34.724 69.45 78.6 0 43.874-18.315 78.6-69.060 78.6h-38.939v-157.199z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"tags":["creative-commons-public-domain"],"grid":20},"attrs":[{},{},{}],"properties":{"id":8,"order":9,"prevSize":20,"code":59655,"name":"creative-commons-public-domain"},"setIdx":0,"setId":1,"iconIdx":7},{"icon":{"paths":["M511.354 20.495c-136.135 0-251.391 47.489-345.71 142.526-96.777 98.307-145.164 214.614-145.164 348.98 0 134.336 48.387 249.832 145.164 346.49 96.777 96.687 212.034 145.016 345.71 145.016 135.342 0 252.654-48.748 351.92-146.215 93.478-92.578 140.246-207.684 140.246-345.29 0-137.635-47.578-253.973-142.706-348.98-95.157-95.037-211.659-142.526-349.46-142.526zM512.585 108.932c111.582 0 206.305 39.33 284.242 117.987 78.747 77.818 118.106 172.824 118.106 285.081 0 113.037-38.548 206.844-115.647 281.392-81.208 80.278-176.77 120.417-286.701 120.417-109.916 0-204.623-39.749-284.181-119.218-79.558-79.436-119.338-173.664-119.338-282.591 0-108.958 40.17-203.995 120.566-285.081 77.099-78.658 171.416-117.987 282.952-117.987z","M833.454 520.7l-97.857-40.678v-121.887l-300.62-125.156-134.006 58.858v139.406l1.41 0.599-118.196 49.2v126.326l126.326 54.149 127-52.559 8.58 3.421 263.048 108.477 5.76-2.401 128.155-54.718v-139.196l-9.6-3.84zM693.779 681.585l-1.2-0.479v0.75l-225.354-93.388v-88.856l225.354 92.097v2.88l1.2 0.51v86.487zM708.959 568.069l-71.443-30.599 76.933-32.969 73.377 30.509-78.867 33.060zM812.335 643.097l-87.837 37.827v-86.036l87.837-36.96v85.169z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"tags":["creative-commons-remix"],"grid":20},"attrs":[{},{}],"properties":{"id":9,"order":10,"prevSize":20,"code":59656,"name":"creative-commons-remix"},"setIdx":0,"setId":1,"iconIdx":8},{"icon":{"paths":["M511.354 20.487c-136.135 0-251.391 47.489-345.71 142.526-96.777 98.307-145.164 214.614-145.164 348.98 0 134.351 48.387 249.848 145.164 346.505 96.777 96.687 212.034 145.016 345.71 145.016 135.342 0 252.654-48.748 351.92-146.215 93.478-92.578 140.246-207.684 140.246-345.306 0-137.635-47.578-253.972-142.706-348.98-95.157-95.037-211.659-142.526-349.46-142.526zM512.585 108.924c111.582 0 206.305 39.33 284.242 117.987 78.747 77.818 118.106 172.824 118.106 285.081 0 113.052-38.548 206.859-115.647 281.407-81.208 80.278-176.77 120.417-286.701 120.417-109.916 0-204.623-39.749-284.181-119.218-79.558-79.437-119.338-173.664-119.338-282.606 0-108.956 40.17-203.993 120.566-285.081 77.099-78.658 171.416-117.987 282.952-117.987z","M713.309 371.178h-107.532v-107.038c0-14.834-12.030-26.879-26.879-26.879h-268.297c-0.809-0.029-1.619-0.029-2.399 0-13.92 1.259-24.54 12.93-24.48 26.879v361.925c0 14.85 12.030 26.879 26.879 26.879h107.517v107.036c0 14.85 12.030 26.879 26.879 26.879h268.313c14.85 0 26.879-12.030 26.879-26.879v-361.923c-0-14.836-12.030-26.879-26.879-26.879zM337.479 599.17v-308.151h214.554v80.158h-107.038c-0.96-0.046-1.92-0.046-2.88 0-13.71 1.484-24.088 13.094-23.999 26.879v201.113h-80.638zM686.43 424.936v308.165h-214.554v-308.165h214.554z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"tags":["creative-commons-share"],"grid":20},"attrs":[{},{}],"properties":{"id":10,"order":11,"prevSize":20,"code":59657,"name":"creative-commons-share"},"setIdx":0,"setId":1,"iconIdx":9},{"icon":{"paths":["M511.366 20.484c-136.147 0-251.398 47.519-345.711 142.529-96.801 98.309-145.175 214.648-145.175 348.987s48.374 249.868 145.175 346.527c96.772 96.675 212.025 144.99 345.711 144.99 135.336 0 252.635-48.735 351.889-146.218 93.494-92.565 140.265-207.673 140.265-345.298s-47.58-253.948-142.724-348.987c-95.159-95.010-211.633-142.529-349.43-142.529zM512.603 108.938c111.554 0 206.279 39.329 284.218 117.975 78.735 77.819 118.094 172.843 118.094 285.087 0 113.040-38.535 206.848-115.649 281.413-81.209 80.278-176.758 120.405-286.663 120.405-109.918 0-204.643-39.736-284.21-119.19-79.559-79.469-119.339-173.67-119.339-282.628 0-108.96 40.192-203.984 120.577-285.087 77.107-78.646 171.418-117.975 282.972-117.975z","M293.508 442.626c19.611-123.659 106.656-189.779 215.757-189.779 156.923 0 252.546 113.88 252.546 265.694 0 148.154-101.759 263.248-254.997 263.248-105.427 0-199.821-64.891-216.989-192.224h123.825c3.674 66.12 46.582 89.384 107.879 89.384 69.869 0 115.244-64.903 115.244-164.083 0-104.069-39.24-159.164-112.798-159.164-53.933 0-100.515 19.59-110.324 86.925l35.991-0.195-97.462 97.454-97.462-97.454 38.79 0.195z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"tags":["creative-commons-sharealike"],"grid":20},"attrs":[{},{}],"properties":{"id":11,"order":12,"prevSize":20,"code":59658,"name":"creative-commons-sharealike"},"setIdx":0,"setId":1,"iconIdx":10},{"icon":{"paths":["M391.75 595.353c-20.797 0-36.5-7.603-47.1-22.806-10.7-15.097-16-35.297-16-60.497 0-55.5 20.997-83.303 63.1-83.303 8.4 0 17.5 2.803 27.3 8.403s18.097 15.4 24.8 29.4l63.1-32.8c-25.2-45.4-67-68.1-125.303-68.1-39.85 0-72.797 13.2-98.794 39.5-26.103 26.4-39.206 61.997-39.206 106.9 0 46 12.956 81.9 38.703 107.7 25.8 25.8 59.803 38.6 101.8 38.6 26.4 0 50.5-6.6 72.353-19.697 21.847-13.206 38.947-31.303 51.347-54.303l-58.1-29.4c-11.2 26.9-30.553 40.403-58 40.403zM663.447 595.353c-20.797 0-36.494-7.603-47.1-22.806-10.7-15.097-16-35.297-16-60.497 0-55.5 21.003-83.303 63.1-83.303 8.903 0 18.303 2.803 28.103 8.403 9.853 5.6 18.1 15.4 24.9 29.4l62.197-32.8c-24.7-45.4-66.197-68.1-124.497-68.1-39.8 0-72.75 13.2-98.8 39.5-26.097 26.4-39.103 61.997-39.103 106.9 0 46 12.703 81.9 38.253 107.7 25.5 25.8 59.55 38.6 102.2 38.6 25.747 0 49.647-6.6 71.45-19.697 21.903-13.206 39.3-31.303 52.203-54.303l-58.903-29.4c-11.2 26.9-30.6 40.403-58.003 40.403zM860.816 163.013c-95.159-95.038-211.659-142.525-349.463-142.525-136.134 0-251.391 47.487-345.709 142.525-96.778 98.306-145.163 214.613-145.163 348.978 0 134.353 48.384 249.85 145.163 346.506 96.778 96.687 212.034 145.016 345.709 145.016 135.344 0 252.656-48.747 351.922-146.216 93.478-92.578 140.244-207.684 140.244-345.306 0-137.634-47.575-253.972-142.703-348.978zM799.284 793.397c-81.206 80.281-176.769 120.419-286.7 120.419-109.916 0-204.622-39.75-284.181-119.219-79.556-79.434-119.337-173.662-119.337-282.606 0-108.956 40.169-203.994 120.566-285.081 77.1-78.656 171.416-117.988 282.953-117.988 111.581 0 206.306 39.331 284.244 117.988 78.747 77.819 118.103 172.825 118.103 285.081 0 113.053-38.547 206.859-115.647 281.406z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["creative-commons"],"grid":20},"attrs":[],"properties":{"id":12,"order":13,"prevSize":20,"code":59659,"name":"creative-commons"},"setIdx":0,"setId":1,"iconIdx":11},{"icon":{"paths":["M972.8 153.6h-921.6c-28.262 0-51.2 22.886-51.2 51.2v614.4c0 28.314 22.938 51.2 51.2 51.2h921.6c28.262 0 51.2-22.886 51.2-51.2v-614.4c0-28.314-22.886-51.2-51.2-51.2zM921.6 768h-819.2v-512h819.2v512z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["document-landscape"],"grid":20},"attrs":[],"properties":{"id":13,"order":14,"prevSize":20,"code":59660,"name":"document-landscape"},"setIdx":0,"setId":1,"iconIdx":12},{"icon":{"paths":["M818.637 979.405c0-114.995-111.974-173.517-221.030-220.518-108.698-46.797-143.411-86.221-143.411-170.701 0-50.637 33.178-34.15 47.718-127.027 6.144-38.502 35.43-0.614 41.062-88.525 0-35.021-16.026-43.725-16.026-43.725s8.141-51.866 11.315-91.802c3.277-41.83-20.378-131.072-117.811-158.464-16.998-17.459-28.518-45.158 23.91-72.909-114.688-5.325-141.363 54.682-202.445 98.816-51.968 38.707-65.997 99.994-63.488 132.608 3.328 39.936 11.418 91.802 11.418 91.802s-16.077 8.704-16.077 43.725c5.632 87.962 35.021 50.022 41.114 88.525 14.541 92.877 47.77 76.39 47.77 127.027 0 84.48-10.854 113.152-119.603 159.949-109.107 46.95-143.053 122.214-142.49 231.219 0.154 32.614-0.563 44.595-0.563 44.595h819.2c0 0-0.563-11.981-0.563-44.595zM819.2 513.997l-117.709-122.778-54.323 54.323 122.829 117.658-122.778 117.658 54.323 54.323 117.658-122.778 117.658 122.778 54.323-54.323-122.778-117.658 122.726-117.658-54.323-54.323-117.606 122.778z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["remove-user"],"grid":20},"attrs":[],"properties":{"id":14,"order":15,"prevSize":20,"code":59661,"name":"remove-user"},"setIdx":0,"setId":1,"iconIdx":13},{"icon":{"paths":["M998.963 920.576l-456.038-851.558c-6.349-11.008-18.125-17.818-30.925-17.818-12.851 0-24.627 6.81-30.925 17.818l-455.987 851.558c-6.195 10.803-6.093 24.115 0.256 34.816 6.4 10.803 18.022 17.408 30.618 17.408h912.077c12.544 0 24.269-6.605 30.618-17.408 6.349-10.701 6.451-24.013 0.307-34.816zM563.2 870.4h-102.4v-102.4h102.4v102.4zM563.2 691.2h-102.4v-332.8h102.4v332.8z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["warning"],"grid":20},"attrs":[],"properties":{"id":15,"order":16,"prevSize":20,"code":59662,"name":"warning1"},"setIdx":0,"setId":1,"iconIdx":14},{"icon":{"paths":["M128 512h179.2v-358.4h409.6v358.4h179.2l-384 384-384-384z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["arrow-bold-down"],"grid":20},"attrs":[],"properties":{"id":16,"order":17,"prevSize":20,"code":59663,"name":"arrow-bold-down"},"setIdx":0,"setId":1,"iconIdx":15},{"icon":{"paths":["M512 128v179.2h358.4v409.6h-358.4v179.2l-384-384 384-384z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["arrow-bold-left"],"grid":20},"attrs":[],"properties":{"id":17,"order":18,"prevSize":20,"code":59664,"name":"arrow-bold-left"},"setIdx":0,"setId":1,"iconIdx":16},{"icon":{"paths":["M896 512l-384 384v-179.2h-358.4v-409.6h358.4v-179.2l384 384z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["arrow-bold-right"],"grid":20},"attrs":[],"properties":{"id":18,"order":19,"prevSize":20,"code":59665,"name":"arrow-bold-right"},"setIdx":0,"setId":1,"iconIdx":17},{"icon":{"paths":["M512 128l384 384h-179.2v358.4h-409.6v-358.4h-179.2l384-384z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["arrow-bold-up"],"grid":20},"attrs":[],"properties":{"id":19,"order":20,"prevSize":20,"code":59666,"name":"arrow-bold-up"},"setIdx":0,"setId":1,"iconIdx":18},{"icon":{"paths":["M512 896l-332.8-332.8h179.2v-409.6h307.2v409.6h179.2l-332.8 332.8z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["arrow-down"],"grid":20},"attrs":[],"properties":{"id":20,"order":21,"prevSize":20,"code":59667,"name":"arrow-down1"},"setIdx":0,"setId":1,"iconIdx":19},{"icon":{"paths":["M128 512l332.8-332.8v179.2h409.6v307.2h-409.6v179.2l-332.8-332.8z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["arrow-left"],"grid":20},"attrs":[],"properties":{"id":21,"order":22,"prevSize":20,"code":59668,"name":"arrow-left1"},"setIdx":0,"setId":1,"iconIdx":20},{"icon":{"paths":["M512 985.6l-281.6-268.8h179.2v-665.6h204.8v665.6h179.2l-281.6 268.8z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["arrow-long-down"],"grid":20},"attrs":[],"properties":{"id":22,"order":23,"prevSize":20,"code":59669,"name":"arrow-long-down"},"setIdx":0,"setId":1,"iconIdx":21},{"icon":{"paths":["M38.4 512l268.8-281.6v179.2h665.6v204.8h-665.6v179.2l-268.8-281.6z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["arrow-long-left"],"grid":20},"attrs":[],"properties":{"id":23,"order":24,"prevSize":20,"code":59670,"name":"arrow-long-left"},"setIdx":0,"setId":1,"iconIdx":22},{"icon":{"paths":["M716.8 793.6v-179.2h-665.6v-204.8h665.6v-179.2l268.8 281.6-268.8 281.6z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["arrow-long-right"],"grid":20},"attrs":[],"properties":{"id":24,"order":25,"prevSize":20,"code":59671,"name":"arrow-long-right"},"setIdx":0,"setId":1,"iconIdx":23},{"icon":{"paths":["M512 38.4l281.6 268.8h-179.2v665.6h-204.8v-665.6h-179.2l281.6-268.8z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["arrow-long-up"],"grid":20},"attrs":[],"properties":{"id":25,"order":26,"prevSize":20,"code":59672,"name":"arrow-long-up"},"setIdx":0,"setId":1,"iconIdx":24},{"icon":{"paths":["M563.2 844.8v-179.2h-409.6v-307.2h409.6v-179.2l332.8 332.8-332.8 332.8z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["arrow-right"],"grid":20},"attrs":[],"properties":{"id":26,"order":27,"prevSize":20,"code":59673,"name":"arrow-right1"},"setIdx":0,"setId":1,"iconIdx":25},{"icon":{"paths":["M512 128l332.8 332.8h-179.2v409.6h-307.2v-409.6h-179.2l332.8-332.8z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["arrow-up"],"grid":20},"attrs":[],"properties":{"id":27,"order":28,"prevSize":20,"code":59674,"name":"arrow-up1"},"setIdx":0,"setId":1,"iconIdx":26},{"icon":{"paths":["M512 20.48c-271.514 0-491.571 220.058-491.571 491.52 0 271.514 220.058 491.571 491.571 491.571 271.411 0 491.52-220.058 491.52-491.571 0-271.462-220.109-491.52-491.52-491.52zM511.949 901.12c-214.886 0-389.12-174.182-389.12-389.12s174.182-389.12 389.12-389.12 389.171 174.234 389.171 389.12-174.285 389.12-389.171 389.12zM614.4 307.2h-204.8v204.8h-128l230.4 230.4 230.4-230.4h-128v-204.8z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["arrow-with-circle-down"],"grid":20},"attrs":[],"properties":{"id":28,"order":29,"prevSize":20,"code":59675,"name":"arrow-with-circle-down"},"setIdx":0,"setId":1,"iconIdx":27},{"icon":{"paths":["M512 20.48c-271.514 0-491.571 220.058-491.571 491.52 0 271.514 220.058 491.571 491.571 491.571 271.411 0 491.52-220.058 491.52-491.571 0-271.462-220.109-491.52-491.52-491.52zM511.949 901.12c-214.886 0-389.12-174.182-389.12-389.12s174.182-389.12 389.12-389.12 389.171 174.234 389.171 389.12-174.285 389.12-389.171 389.12zM512 281.6l-230.4 230.4 230.4 230.4v-128h204.8v-204.8h-204.8v-128z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["arrow-with-circle-left"],"grid":20},"attrs":[],"properties":{"id":29,"order":30,"prevSize":20,"code":59676,"name":"arrow-with-circle-left"},"setIdx":0,"setId":1,"iconIdx":28},{"icon":{"paths":["M512 20.48c-271.514 0-491.571 220.058-491.571 491.52 0 271.514 220.058 491.571 491.571 491.571 271.411 0 491.52-220.058 491.52-491.571 0-271.462-220.109-491.52-491.52-491.52zM511.949 901.12c-214.886 0-389.12-174.182-389.12-389.12s174.182-389.12 389.12-389.12 389.171 174.234 389.171 389.12-174.285 389.12-389.171 389.12zM512 409.6h-204.8v204.8h204.8v128l230.4-230.4-230.4-230.4v128z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["arrow-with-circle-right"],"grid":20},"attrs":[],"properties":{"id":30,"order":31,"prevSize":20,"code":59677,"name":"arrow-with-circle-right"},"setIdx":0,"setId":1,"iconIdx":29},{"icon":{"paths":["M512 20.48c-271.514 0-491.571 220.058-491.571 491.52 0 271.514 220.058 491.571 491.571 491.571 271.411 0 491.52-220.058 491.52-491.571 0-271.462-220.109-491.52-491.52-491.52zM511.949 901.12c-214.886 0-389.12-174.182-389.12-389.12s174.182-389.12 389.12-389.12 389.171 174.234 389.171 389.12-174.285 389.12-389.171 389.12zM512 281.6l230.4 230.4h-128v204.8h-204.8v-204.8h-128l230.4-230.4z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["arrow-with-circle-up"],"grid":20},"attrs":[],"properties":{"id":31,"order":32,"prevSize":20,"code":59678,"name":"arrow-with-circle-up"},"setIdx":0,"setId":1,"iconIdx":30},{"icon":{"paths":["M716.8 102.4v870.4l-204.8-204.8-204.8 204.8v-870.4c0-28.314 29.952-52.224 51.2-51.2h307.2c35.277-1.024 51.2 22.886 51.2 51.2z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["bookmark"],"grid":20},"attrs":[],"properties":{"id":32,"order":33,"prevSize":20,"code":59679,"name":"bookmark1"},"setIdx":0,"setId":1,"iconIdx":31},{"icon":{"paths":["M768 0h-204.8c-28.314 0-51.2 22.886-51.2 51.2l1.178 11.366c56.422 0 102.4 45.926 102.4 102.4v581.581l50.022-60.467 153.6 184.32v-819.2c0-28.314-22.886-51.2-51.2-51.2zM461.978 153.6h-205.978c-28.314 0-51.2 22.886-51.2 51.2v819.2l153.6-184.32 153.6 184.32v-819.2c0-28.314-21.709-51.2-50.022-51.2z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["bookmarks"],"grid":20},"attrs":[],"properties":{"id":33,"order":34,"prevSize":20,"code":59680,"name":"bookmarks1"},"setIdx":0,"setId":1,"iconIdx":32},{"icon":{"paths":["M231.219 386.458c22.323-22.835 53.402-24.627 80.691 0l200.090 191.846 200.090-191.846c27.29-24.627 58.419-22.835 80.589 0 22.323 22.784 20.89 61.286 0 82.688-20.787 21.402-240.384 230.502-240.384 230.502-11.11 11.418-25.702 17.152-40.294 17.152s-29.184-5.734-40.397-17.152c0 0-219.494-209.101-240.384-230.502-20.941-21.402-22.323-59.904 0-82.688z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["chevron-down"],"grid":20},"attrs":[],"properties":{"id":34,"order":35,"prevSize":20,"code":59681,"name":"chevron-down"},"setIdx":0,"setId":1,"iconIdx":33},{"icon":{"paths":["M637.542 231.219c22.835 22.323 24.627 53.402 0 80.691l-191.846 200.090 191.846 200.090c24.627 27.29 22.835 58.419 0 80.589-22.784 22.323-61.286 20.89-82.688 0-21.402-20.787-230.502-240.384-230.502-240.384-11.418-11.11-17.152-25.702-17.152-40.294s5.734-29.184 17.152-40.397c0 0 209.101-219.494 230.502-240.384 21.402-20.941 59.904-22.323 82.688 0z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["chevron-left"],"grid":20},"attrs":[],"properties":{"id":35,"order":36,"prevSize":20,"code":59682,"name":"chevron-left"},"setIdx":0,"setId":1,"iconIdx":34},{"icon":{"paths":["M469.146 231.219c21.402 20.89 230.502 240.384 230.502 240.384 11.418 11.213 17.152 25.805 17.152 40.397s-5.734 29.184-17.152 40.294c0 0-209.101 219.597-230.502 240.384-21.402 20.89-59.904 22.323-82.688 0-22.835-22.221-24.627-53.299 0-80.589l191.846-200.090-191.846-200.090c-24.627-27.29-22.835-58.419 0-80.691 22.784-22.323 61.286-20.941 82.688 0z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["chevron-right"],"grid":20},"attrs":[],"properties":{"id":36,"order":37,"prevSize":20,"code":59683,"name":"chevron-right"},"setIdx":0,"setId":1,"iconIdx":35},{"icon":{"paths":["M687.002 402.381c13.875-13.722 36.301-13.722 50.074 0 13.824 13.722 13.926 35.891 0 49.613l-200.090 196.096c-13.824 13.722-36.198 13.722-50.125 0l-200.090-196.096c-13.824-13.67-13.824-35.891 0-49.613 13.875-13.722 36.301-13.722 50.074 0l175.155 160.819 175.002-160.819z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["chevron-small-down"],"grid":20},"attrs":[],"properties":{"id":37,"order":38,"prevSize":20,"code":59684,"name":"chevron-small-down"},"setIdx":0,"setId":1,"iconIdx":36},{"icon":{"paths":["M621.619 687.002c13.722 13.875 13.722 36.301 0 50.074-13.722 13.824-35.891 13.926-49.613 0l-196.096-200.090c-13.722-13.824-13.722-36.198 0-50.125l196.096-200.090c13.67-13.824 35.891-13.824 49.613 0 13.722 13.875 13.722 36.301 0 50.074l-160.819 175.155 160.819 175.002z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["chevron-small-left"],"grid":20},"attrs":[],"properties":{"id":38,"order":39,"prevSize":20,"code":59685,"name":"chevron-small-left"},"setIdx":0,"setId":1,"iconIdx":37},{"icon":{"paths":["M563.2 512l-160.819-175.104c-13.722-13.824-13.722-36.198 0-50.074 13.722-13.824 35.891-13.824 49.613 0l196.096 200.090c13.722 13.875 13.722 36.301 0 50.125l-196.096 200.090c-13.67 13.926-35.891 13.824-49.613 0-13.722-13.773-13.722-36.198 0-50.074l160.819-175.053z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["chevron-small-right"],"grid":20},"attrs":[],"properties":{"id":39,"order":40,"prevSize":20,"code":59686,"name":"chevron-small-right"},"setIdx":0,"setId":1,"iconIdx":38},{"icon":{"paths":["M336.998 621.619c-13.875 13.722-36.301 13.722-50.074 0s-13.926-35.891 0-49.613l200.090-196.096c13.824-13.722 36.198-13.722 50.125 0l200.090 196.096c13.824 13.67 13.824 35.891 0 49.613-13.875 13.722-36.301 13.722-50.125 0l-175.104-160.819-175.002 160.819z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["chevron-small-up"],"grid":20},"attrs":[],"properties":{"id":40,"order":41,"prevSize":20,"code":59687,"name":"chevron-small-up"},"setIdx":0,"setId":1,"iconIdx":39},{"icon":{"paths":["M891.802 312.781c13.926-13.722 36.301-13.722 50.125 0s13.875 35.891 0 49.613l-404.89 400.896c-13.824 13.722-36.198 13.722-50.125 0l-404.89-400.896c-13.824-13.722-13.824-35.891 0-49.613 13.875-13.722 36.301-13.722 50.125 0l379.853 365.619 379.802-365.619z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["chevron-thin-down"],"grid":20},"attrs":[],"properties":{"id":41,"order":42,"prevSize":20,"code":59688,"name":"chevron-thin-down"},"setIdx":0,"setId":1,"iconIdx":40},{"icon":{"paths":["M711.219 891.802c13.722 13.926 13.722 36.301 0 50.125s-35.891 13.875-49.613 0l-400.896-404.89c-13.722-13.824-13.722-36.198 0-50.125l400.896-404.89c13.722-13.824 35.891-13.824 49.613 0 13.722 13.875 13.722 36.301 0 50.125l-365.619 379.853 365.619 379.802z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["chevron-thin-left"],"grid":20},"attrs":[],"properties":{"id":42,"order":43,"prevSize":20,"code":59689,"name":"chevron-thin-left"},"setIdx":0,"setId":1,"iconIdx":41},{"icon":{"paths":["M678.4 512l-365.619-379.904c-13.722-13.824-13.722-36.198 0-50.125 13.722-13.824 35.891-13.824 49.613 0l400.896 404.89c13.722 13.875 13.722 36.301 0 50.125l-400.896 404.89c-13.722 13.875-35.891 13.824-49.613 0-13.722-13.773-13.722-36.198 0-50.125l365.619-379.75z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["chevron-thin-right"],"grid":20},"attrs":[],"properties":{"id":43,"order":44,"prevSize":20,"code":59690,"name":"chevron-thin-right"},"setIdx":0,"setId":1,"iconIdx":42},{"icon":{"paths":["M132.198 711.219c-13.926 13.722-36.301 13.722-50.125 0s-13.875-35.891 0-49.613l404.89-400.896c13.824-13.722 36.198-13.722 50.125 0l404.89 400.896c13.824 13.722 13.824 35.891 0 49.613-13.875 13.722-36.301 13.722-50.074 0l-379.904-365.619-379.802 365.619z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["chevron-thin-up"],"grid":20},"attrs":[],"properties":{"id":44,"order":45,"prevSize":20,"code":59691,"name":"chevron-thin-up"},"setIdx":0,"setId":1,"iconIdx":43},{"icon":{"paths":["M792.781 637.542c-22.323 22.835-53.402 24.627-80.691 0l-200.090-191.846-200.090 191.846c-27.29 24.627-58.419 22.835-80.589 0-22.323-22.784-20.89-61.286 0-82.688 20.787-21.402 240.384-230.502 240.384-230.502 11.11-11.418 25.702-17.152 40.294-17.152s29.184 5.734 40.397 17.152c0 0 219.494 209.101 240.384 230.502 20.941 21.402 22.323 59.904 0 82.688z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["chevron-up"],"grid":20},"attrs":[],"properties":{"id":45,"order":46,"prevSize":20,"code":59692,"name":"chevron-up"},"setIdx":0,"setId":1,"iconIdx":44},{"icon":{"paths":["M640.256 445.338l-128.256 117.862-128.307-117.862c-10.138-10.035-26.522-10.035-36.762 0-10.086 10.035-10.086 26.368 0 36.352l146.637 143.718c10.189 10.035 26.624 10.035 36.71 0l146.637-143.718c10.189-9.984 10.138-26.317 0-36.352-10.086-10.035-26.47-10.035-36.659 0zM512 20.48c-271.462 0-491.52 220.058-491.52 491.52 0 271.514 220.058 491.52 491.52 491.52s491.52-220.006 491.52-491.52c0-271.462-220.058-491.52-491.52-491.52zM512 939.725c-236.288 0-427.725-191.488-427.725-427.725s191.437-427.725 427.725-427.725c236.186 0 427.725 191.488 427.725 427.725s-191.539 427.725-427.725 427.725z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["chevron-with-circle-down"],"grid":20},"attrs":[],"properties":{"id":46,"order":47,"prevSize":20,"code":59693,"name":"chevron-with-circle-down"},"setIdx":0,"setId":1,"iconIdx":45},{"icon":{"paths":["M578.662 346.931c-10.035-10.086-26.368-10.086-36.352 0l-143.718 146.688c-10.035 10.189-10.035 26.624 0 36.71l143.718 146.637c9.984 10.189 26.317 10.138 36.352 0 10.035-10.086 10.035-26.522 0-36.71l-117.862-128.256 117.862-128.307c10.035-10.138 10.035-26.522 0-36.762zM512 20.48c-271.462 0-491.52 220.058-491.52 491.52 0 271.514 220.058 491.52 491.52 491.52s491.52-220.006 491.52-491.52c0-271.462-220.058-491.52-491.52-491.52zM512 939.725c-236.288 0-427.725-191.488-427.725-427.725s191.437-427.725 427.725-427.725c236.186 0 427.725 191.488 427.725 427.725s-191.539 427.725-427.725 427.725z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["chevron-with-circle-left"],"grid":20},"attrs":[],"properties":{"id":47,"order":48,"prevSize":20,"code":59694,"name":"chevron-with-circle-left"},"setIdx":0,"setId":1,"iconIdx":46},{"icon":{"paths":["M563.2 512l-117.862-128.307c-10.035-10.138-10.035-26.573 0-36.762 10.035-10.086 26.368-10.086 36.352 0l143.718 146.637c10.035 10.189 10.035 26.624 0 36.71l-143.718 146.637c-9.984 10.189-26.317 10.138-36.352 0-10.035-10.086-10.035-26.522 0-36.71l117.862-128.205zM512 20.48c271.462 0 491.52 220.058 491.52 491.52 0 271.514-220.058 491.52-491.52 491.52s-491.52-220.006-491.52-491.52c0-271.462 220.058-491.52 491.52-491.52zM512 939.725c236.186 0 427.725-191.488 427.725-427.725s-191.539-427.725-427.725-427.725c-236.288 0-427.725 191.488-427.725 427.725-0.051 236.237 191.437 427.725 427.725 427.725z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["chevron-with-circle-right"],"grid":20},"attrs":[],"properties":{"id":48,"order":49,"prevSize":20,"code":59695,"name":"chevron-with-circle-right"},"setIdx":0,"setId":1,"iconIdx":47},{"icon":{"paths":["M530.381 398.592c-10.189-10.035-26.624-10.035-36.71 0l-146.637 143.718c-10.189 9.984-10.138 26.317 0 36.352 10.086 10.035 26.522 10.035 36.71 0l128.256-117.862 128.307 117.862c10.138 10.035 26.522 10.035 36.762 0 10.086-10.035 10.086-26.368 0-36.352l-146.688-143.718zM512 20.48c-271.462 0-491.52 220.058-491.52 491.52 0 271.514 220.058 491.52 491.52 491.52s491.52-220.006 491.52-491.52c0-271.462-220.058-491.52-491.52-491.52zM512 939.725c-236.288 0-427.725-191.488-427.725-427.725s191.437-427.725 427.725-427.725c236.186 0 427.725 191.488 427.725 427.725s-191.539 427.725-427.725 427.725z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["chevron-with-circle-up"],"grid":20},"attrs":[],"properties":{"id":49,"order":50,"prevSize":20,"code":59696,"name":"chevron-with-circle-up"},"setIdx":0,"setId":1,"iconIdx":48},{"icon":{"paths":["M1024 579.584c0 132.301-109.773 239.616-245.094 239.616h-593.715c-102.298 0-185.19-81.101-185.19-181.094 0-99.891 82.893-180.992 185.19-180.992 7.475 0 14.746 0.614 21.965 1.382-1.894-12.595-2.918-25.498-2.918-38.707 0-146.995 121.907-266.189 272.384-266.189 123.238 0 227.277 79.974 260.915 189.798 13.466-2.202 27.238-3.379 41.421-3.379 135.27 0 245.043 107.162 245.043 239.565z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["cloud"],"grid":20},"attrs":[],"properties":{"id":50,"order":51,"prevSize":20,"code":59697,"name":"cloud1"},"setIdx":0,"setId":1,"iconIdx":49},{"icon":{"paths":["M473.293 487.424l-368.794-253.389c-29.286-19.61-53.299-5.222-53.299 32v491.981c0 37.12 24.013 51.507 53.299 32l368.794-253.491c0 0 14.285-10.189 14.285-24.474 0-14.336-14.285-24.627-14.285-24.627zM952.32 512.051c0 14.285-14.285 24.474-14.285 24.474l-368.794 253.491c-29.286 19.507-53.299 5.12-53.299-32v-491.981c0-37.222 24.013-51.61 53.299-32l368.742 253.389c0 0 14.336 10.291 14.336 24.627z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["controller-fast-forward"],"grid":20},"attrs":[],"properties":{"id":51,"order":52,"prevSize":20,"code":59698,"name":"controller-fast-forward"},"setIdx":0,"setId":1,"iconIdx":50},{"icon":{"paths":["M765.901 234.035l-368.794 253.389c0 0-14.285 10.291-14.285 24.627s14.285 24.525 14.285 24.525l368.794 253.491c29.286 19.456 53.299 5.069 53.299-32.051v-491.981c0-37.222-24.013-51.61-53.299-32zM307.2 204.8h-51.2c-28.314 0-51.2 2.458-51.2 30.72v552.96c0 28.262 22.886 30.72 51.2 30.72h51.2c28.314 0 51.2-2.458 51.2-30.72v-552.96c0-28.262-22.886-30.72-51.2-30.72z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["controller-jump-to-start"],"grid":20},"attrs":[],"properties":{"id":52,"order":53,"prevSize":20,"code":59699,"name":"controller-jump-to-start"},"setIdx":0,"setId":1,"iconIdx":51},{"icon":{"paths":["M626.893 487.424l-368.794-253.389c-29.286-19.61-53.299-5.222-53.299 32v491.981c0 37.12 24.013 51.507 53.299 32l368.794-253.491c0 0 14.285-10.189 14.285-24.474 0-14.336-14.285-24.627-14.285-24.627zM716.8 204.8h51.2c28.314 0 51.2 2.458 51.2 30.72v552.96c0 28.262-22.886 30.72-51.2 30.72h-51.2c-28.314 0-51.2-2.458-51.2-30.72v-552.96c0-28.262 22.886-30.72 51.2-30.72z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["controller-next"],"grid":20},"attrs":[],"properties":{"id":53,"order":54,"prevSize":20,"code":59700,"name":"controller-next"},"setIdx":0,"setId":1,"iconIdx":52},{"icon":{"paths":["M768 153.6h-102.4c-28.314 0-51.2 2.458-51.2 30.72v655.36c0 28.262 22.886 30.72 51.2 30.72h102.4c28.314 0 51.2-2.458 51.2-30.72v-655.36c0-28.262-22.886-30.72-51.2-30.72zM358.4 153.6h-102.4c-28.314 0-51.2 2.458-51.2 30.72v655.36c0 28.262 22.886 30.72 51.2 30.72h102.4c28.314 0 51.2-2.458 51.2-30.72v-655.36c0-28.262-22.886-30.72-51.2-30.72z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["controller-paus"],"grid":20},"attrs":[],"properties":{"id":54,"order":55,"prevSize":20,"code":59701,"name":"controller-paus"},"setIdx":0,"setId":1,"iconIdx":53},{"icon":{"paths":["M768 512.051c0 15.309-15.616 26.317-15.616 26.317l-438.323 271.514c-31.949 20.941-58.061 5.427-58.061-34.253v-527.206c0-39.782 26.112-55.194 58.112-34.304l438.323 271.616c-0.051 0 15.565 11.008 15.565 26.317z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["controller-play"],"grid":20},"attrs":[],"properties":{"id":55,"order":56,"prevSize":20,"code":59702,"name":"controller-play"},"setIdx":0,"setId":1,"iconIdx":54},{"icon":{"paths":["M512 153.6c-197.939 0-358.4 160.41-358.4 358.4 0 197.888 160.461 358.4 358.4 358.4s358.4-160.512 358.4-358.4c0-197.99-160.461-358.4-358.4-358.4z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["controller-record"],"grid":20},"attrs":[],"properties":{"id":56,"order":57,"prevSize":20,"code":59703,"name":"controller-record"},"setIdx":0,"setId":1,"iconIdx":55},{"icon":{"paths":["M819.2 255.744v502.17c0 33.843-27.443 61.286-61.235 61.286h-502.118c-28.211 0-51.046-22.835-51.046-51.046v-502.118c0-33.792 27.443-61.235 61.235-61.235h502.17c28.16 0 50.995 22.835 50.995 50.944z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["controller-stop"],"grid":20},"attrs":[],"properties":{"id":57,"order":58,"prevSize":20,"code":59704,"name":"controller-stop"},"setIdx":0,"setId":1,"iconIdx":56},{"icon":{"paths":["M972.8 706.816c0 33.638-27.546 61.184-61.184 61.184h-833.126c-45.056 0-50.278-18.995-11.725-42.086l835.738-463.616c38.656-23.194 70.298-5.325 70.298 39.782v404.736z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["controller-volume"],"grid":20},"attrs":[],"properties":{"id":58,"order":59,"prevSize":20,"code":59705,"name":"controller-volume"},"setIdx":0,"setId":1,"iconIdx":57},{"icon":{"paths":["M399.36 512c0 62.208 50.483 112.64 112.691 112.64s112.589-50.483 112.589-112.64c0-62.208-50.381-112.589-112.589-112.589s-112.691 50.381-112.691 112.589z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["dot-single"],"grid":20},"attrs":[],"properties":{"id":59,"order":60,"prevSize":20,"code":59706,"name":"dot-single"},"setIdx":0,"setId":1,"iconIdx":58},{"icon":{"paths":["M512.051 399.36c-62.208 0-112.691 50.432-112.691 112.64s50.483 112.64 112.691 112.64c62.208 0 112.589-50.432 112.589-112.64s-50.381-112.64-112.589-112.64zM153.651 399.36c-62.208 0-112.691 50.432-112.691 112.64s50.483 112.64 112.691 112.64c62.208 0 112.589-50.483 112.589-112.64s-50.381-112.64-112.589-112.64zM870.451 399.36c-62.208 0-112.691 50.432-112.691 112.64s50.483 112.64 112.691 112.64c62.208 0 112.589-50.432 112.589-112.64s-50.381-112.64-112.589-112.64z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["dots-three-horizontal"],"grid":20},"attrs":[],"properties":{"id":60,"order":61,"prevSize":20,"code":59707,"name":"dots-three-horizontal"},"setIdx":0,"setId":1,"iconIdx":59},{"icon":{"paths":["M512.051 399.36c-62.208 0-112.691 50.432-112.691 112.64s50.483 112.64 112.691 112.64c62.208 0 112.589-50.432 112.589-112.64s-50.381-112.64-112.589-112.64zM512.051 266.24c62.208 0 112.589-50.483 112.589-112.64s-50.381-112.64-112.589-112.64c-62.208 0-112.691 50.432-112.691 112.64s50.483 112.64 112.691 112.64zM512.051 757.76c-62.208 0-112.691 50.432-112.691 112.64s50.483 112.64 112.691 112.64c62.208 0 112.589-50.432 112.589-112.64s-50.381-112.64-112.589-112.64z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["dots-three-vertical"],"grid":20},"attrs":[],"properties":{"id":61,"order":62,"prevSize":20,"code":59708,"name":"dots-three-vertical"},"setIdx":0,"setId":1,"iconIdx":60},{"icon":{"paths":["M716.851 399.36c-62.208 0-112.691 50.432-112.691 112.64s50.483 112.64 112.691 112.64c62.208 0 112.589-50.432 112.589-112.64s-50.381-112.64-112.589-112.64zM307.251 399.36c-62.208 0-112.691 50.432-112.691 112.64s50.483 112.64 112.691 112.64c62.208 0 112.589-50.483 112.589-112.64s-50.381-112.64-112.589-112.64z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["dots-two-horizontal"],"grid":20},"attrs":[],"properties":{"id":62,"order":63,"prevSize":20,"code":59709,"name":"dots-two-horizontal"},"setIdx":0,"setId":1,"iconIdx":61},{"icon":{"paths":["M512.051 419.84c62.208 0 112.589-50.483 112.589-112.64s-50.381-112.64-112.589-112.64c-62.208 0-112.691 50.432-112.691 112.64s50.483 112.64 112.691 112.64zM512.051 604.16c-62.208 0-112.691 50.432-112.691 112.64s50.483 112.64 112.691 112.64c62.208 0 112.589-50.432 112.589-112.64s-50.381-112.64-112.589-112.64z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["dots-two-vertical"],"grid":20},"attrs":[],"properties":{"id":63,"order":64,"prevSize":20,"code":59710,"name":"dots-two-vertical"},"setIdx":0,"setId":1,"iconIdx":62},{"icon":{"paths":["M768 358.4h-153.6v-307.2h-204.8v307.2h-153.6l256 256 256-256zM990.106 692.838c-10.752-11.469-82.483-88.218-102.963-108.237-13.568-13.261-32.973-21.402-53.35-21.402h-89.958l156.877 153.293h-181.453c-5.222 0-9.933 2.662-12.288 6.81l-41.779 95.898h-306.381l-41.779-95.898c-2.355-4.147-7.117-6.81-12.288-6.81h-181.453l156.826-153.293h-89.907c-20.326 0-39.731 8.141-53.35 21.402-20.48 20.070-92.211 96.819-102.963 108.237-25.037 26.675-38.81 47.923-32.256 74.189l28.723 157.389c6.554 26.317 35.379 47.923 64.102 47.923h835.174c28.723 0 57.549-21.606 64.102-47.923l28.723-157.389c6.451-26.266-7.27-47.514-32.358-74.189z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["download"],"grid":20},"attrs":[],"properties":{"id":64,"order":65,"prevSize":20,"code":59711,"name":"download1"},"setIdx":0,"setId":1,"iconIdx":63},{"icon":{"paths":["M384 499.2c42.445 0 76.8-40.090 76.8-89.6s-34.355-89.6-76.8-89.6-76.8 40.141-76.8 89.6 34.406 89.6 76.8 89.6zM512 20.48c-271.462 0-491.52 220.058-491.52 491.52s220.058 491.52 491.52 491.52c271.411 0 491.52-220.058 491.52-491.571 0-271.411-220.109-491.469-491.52-491.469zM512 901.069c-214.886 0-389.12-174.182-389.12-389.12 0-214.886 174.182-389.12 389.12-389.12s389.12 174.234 389.12 389.171c0 214.886-174.234 389.069-389.12 389.069zM734.259 580.403c-18.586-9.574-41.728-2.202-51.61 16.384-1.741 3.328-44.493 81.562-170.598 81.562-125.491 0-168.499-77.466-170.65-81.51-9.626-18.688-32.358-26.317-51.405-16.845-18.944 9.472-26.675 32.563-17.152 51.558 2.56 5.069 63.898 123.597 239.206 123.597 175.36 0 236.595-118.579 239.104-123.648 9.421-18.79 1.843-41.472-16.896-51.098zM576 448h128c21.197 0 38.4-17.203 38.4-38.4s-17.203-38.4-38.4-38.4h-128c-21.197 0-38.4 17.203-38.4 38.4 0 21.248 17.203 38.4 38.4 38.4z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["emoji-flirt"],"grid":20},"attrs":[],"properties":{"id":65,"order":66,"prevSize":20,"code":59712,"name":"emoji-flirt"},"setIdx":0,"setId":1,"iconIdx":64},{"icon":{"paths":["M839.68 204.8c0-67.891-54.989-122.88-122.88-122.88s-122.88 54.989-122.88 122.88c0 49.203 29.082 91.341 70.861 110.95-4.198 81.101-65.024 108.646-170.752 148.275-44.544 16.742-93.645 35.277-135.629 63.181v-210.995c42.24-19.456 71.68-61.901 71.68-111.411 0-67.891-54.989-122.88-122.88-122.88s-122.88 54.989-122.88 122.88c0 49.51 29.491 91.955 71.68 111.411v391.629c-42.24 19.405-71.68 61.85-71.68 111.36 0 67.891 54.989 122.88 122.88 122.88s122.88-55.040 122.88-122.88c0-49.203-29.082-91.341-70.861-110.95 4.198-81.050 65.075-108.646 170.752-148.275 103.936-39.014 232.499-87.603 237.568-243.507 42.445-19.354 72.141-61.952 72.141-111.667zM307.2 133.888c39.117 0 70.861 31.693 70.861 70.912 0 39.117-31.744 70.912-70.861 70.912-39.168 0-70.861-31.795-70.861-70.912 0-39.219 31.693-70.912 70.861-70.912zM307.2 890.112c-39.219 0-70.912-31.795-70.912-70.912 0-39.219 31.693-70.912 70.912-70.912 39.117 0 70.861 31.693 70.861 70.912 0 39.117-31.744 70.912-70.861 70.912zM716.8 275.712c-39.219 0-70.912-31.795-70.912-70.912 0-39.219 31.693-70.912 70.912-70.912 39.117 0 70.861 31.693 70.861 70.912 0 39.117-31.744 70.912-70.861 70.912z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["flow-branch"],"grid":20},"attrs":[],"properties":{"id":66,"order":67,"prevSize":20,"code":59713,"name":"flow-branch"},"setIdx":0,"setId":1,"iconIdx":65},{"icon":{"paths":["M716.8 747.52c-49.51 0-91.955 29.491-111.411 71.68h-170.189c-42.394 0-76.8-34.406-76.8-76.8v-197.12c23.347 11.162 49.203 17.92 76.8 17.92h170.189c19.456 42.189 61.85 71.68 111.411 71.68 67.891 0 122.88-55.040 122.88-122.88s-54.989-122.88-122.88-122.88c-49.51 0-91.955 29.491-111.411 71.68h-170.189c-42.394 0-76.8-34.406-76.8-76.8v-118.989c42.24-19.456 71.68-61.901 71.68-111.411 0-67.891-54.989-122.88-122.88-122.88s-122.88 54.989-122.88 122.88c0 49.51 29.491 91.955 71.68 111.411v477.389c0 98.97 80.23 179.2 179.2 179.2h170.189c19.456 42.189 61.85 71.68 111.411 71.68 67.891 0 122.88-55.040 122.88-122.88s-54.989-122.88-122.88-122.88zM716.8 441.088c39.117 0 70.861 31.693 70.861 70.912 0 39.117-31.744 70.912-70.861 70.912-39.219 0-70.912-31.795-70.912-70.912 0.051-39.219 31.744-70.912 70.912-70.912zM307.2 82.688c39.117 0 70.861 31.693 70.861 70.912 0 39.117-31.744 70.912-70.861 70.912-39.168 0-70.861-31.795-70.861-70.912 0-39.219 31.693-70.912 70.861-70.912zM716.8 941.312c-39.219 0-70.912-31.795-70.912-70.912 0-39.219 31.693-70.912 70.912-70.912 39.117 0 70.861 31.693 70.861 70.912 0 39.117-31.744 70.912-70.861 70.912z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["flow-cascade"],"grid":20},"attrs":[],"properties":{"id":67,"order":68,"prevSize":20,"code":59714,"name":"flow-cascade"},"setIdx":0,"setId":1,"iconIdx":66},{"icon":{"paths":["M563.2 707.789v-391.578c42.24-19.456 71.68-61.85 71.68-111.411 0-67.891-54.989-122.88-122.88-122.88s-122.88 54.989-122.88 122.88c0 49.51 29.491 91.955 71.68 111.411v391.629c-42.24 19.405-71.68 61.85-71.68 111.36 0 67.891 54.989 122.88 122.88 122.88s122.88-55.040 122.88-122.88c0-49.51-29.44-91.955-71.68-111.411zM512 133.888c39.117 0 70.861 31.693 70.861 70.912 0 39.117-31.744 70.912-70.861 70.912-39.168 0-70.861-31.795-70.861-70.912 0-39.219 31.693-70.912 70.861-70.912zM512 890.112c-39.219 0-70.912-31.795-70.912-70.912 0-39.219 31.693-70.912 70.912-70.912 39.117 0 70.861 31.693 70.861 70.912 0 39.117-31.744 70.912-70.861 70.912z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["flow-line"],"grid":20},"attrs":[],"properties":{"id":68,"order":69,"prevSize":20,"code":59715,"name":"flow-line"},"setIdx":0,"setId":1,"iconIdx":67},{"icon":{"paths":["M430.080 204.8c0-67.891-54.989-122.88-122.88-122.88s-122.88 54.989-122.88 122.88c0 49.51 29.491 91.955 71.68 111.411v391.629c-42.24 19.405-71.68 61.85-71.68 111.36 0 67.891 54.989 122.88 122.88 122.88s122.88-55.040 122.88-122.88c0-49.51-29.491-91.955-71.68-111.411v-391.578c42.24-19.456 71.68-61.901 71.68-111.411zM378.061 819.2c0 39.117-31.744 70.912-70.861 70.912-39.219 0-70.912-31.795-70.912-70.912 0-39.219 31.693-70.912 70.912-70.912 39.117 0 70.861 31.693 70.861 70.912zM307.2 275.712c-39.168 0-70.861-31.795-70.861-70.912 0-39.219 31.693-70.912 70.912-70.912 39.117 0 70.861 31.693 70.861 70.912-0.051 39.117-31.795 70.912-70.912 70.912zM768 707.789v-391.578c42.24-19.456 71.68-61.85 71.68-111.411 0-67.891-54.989-122.88-122.88-122.88s-122.88 54.989-122.88 122.88c0 49.51 29.491 91.955 71.68 111.411v391.629c-42.24 19.456-71.68 61.85-71.68 111.411 0 67.891 54.989 122.88 122.88 122.88s122.88-55.040 122.88-122.88c0-49.562-29.44-92.006-71.68-111.462zM645.939 204.8c0-39.219 31.693-70.912 70.912-70.912 39.117 0 70.861 31.693 70.861 70.912 0 39.117-31.744 70.912-70.861 70.912-39.219 0-70.912-31.795-70.912-70.912zM716.8 890.112c-39.219 0-70.912-31.795-70.912-70.912 0-39.219 31.693-70.912 70.912-70.912 39.117 0 70.861 31.693 70.861 70.912 0 39.117-31.744 70.912-70.861 70.912z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["flow-parallel"],"grid":20},"attrs":[],"properties":{"id":69,"order":70,"prevSize":20,"code":59716,"name":"flow-parallel"},"setIdx":0,"setId":1,"iconIdx":68},{"icon":{"paths":["M921.6 758.989v-118.989c0-98.97-80.23-179.2-179.2-179.2h-102.4c-42.394 0-76.8-34.406-76.8-76.8v-118.989c42.24-19.456 71.68-61.85 71.68-111.411 0-67.891-54.989-122.88-122.88-122.88s-122.88 54.989-122.88 122.88c0 49.51 29.491 91.955 71.68 111.411v118.989c0 42.394-34.406 76.8-76.8 76.8h-102.4c-98.97 0-179.2 80.23-179.2 179.2v118.989c-42.24 19.456-71.68 61.901-71.68 111.411 0 67.891 54.989 122.88 122.88 122.88s122.88-55.040 122.88-122.88c0-49.51-29.491-91.955-71.68-111.411v-118.989c0-42.394 34.406-76.8 76.8-76.8h102.4c27.597 0 53.453-6.758 76.8-17.92v213.709c-42.24 19.456-71.68 61.901-71.68 111.411 0 67.891 54.989 122.88 122.88 122.88s122.88-55.040 122.88-122.88c0-49.51-29.491-91.955-71.68-111.411v-213.709c23.347 11.162 49.203 17.92 76.8 17.92h102.4c42.394 0 76.8 34.406 76.8 76.8v118.989c-42.24 19.456-71.68 61.85-71.68 111.411 0 67.891 54.989 122.88 122.88 122.88s122.88-55.040 122.88-122.88c0-49.51-29.44-91.955-71.68-111.411zM512 82.688c39.117 0 70.861 31.693 70.861 70.912 0 39.117-31.744 70.912-70.861 70.912-39.168 0-70.861-31.795-70.861-70.912 0-39.219 31.693-70.912 70.861-70.912zM153.6 941.312c-39.219 0-70.912-31.795-70.912-70.912 0-39.219 31.693-70.912 70.912-70.912 39.117 0 70.861 31.693 70.861 70.912 0 39.117-31.744 70.912-70.861 70.912zM512 941.312c-39.219 0-70.912-31.795-70.912-70.912 0-39.219 31.693-70.912 70.912-70.912 39.117 0 70.861 31.693 70.861 70.912 0 39.117-31.744 70.912-70.861 70.912zM870.4 941.312c-39.219 0-70.912-31.795-70.912-70.912 0-39.219 31.693-70.912 70.912-70.912 39.117 0 70.861 31.693 70.861 70.912 0 39.117-31.744 70.912-70.861 70.912z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["flow-tree"],"grid":20},"attrs":[],"properties":{"id":70,"order":71,"prevSize":20,"code":59717,"name":"flow-tree"},"setIdx":0,"setId":1,"iconIdx":69},{"icon":{"paths":["M975.821 557.978l-162.355-405.862c-11.981-30.054-41.062-49.715-73.421-49.715h-124.621l19.456 208.128h138.24l-261.12 216.474-261.12-216.474h138.24l19.456-208.128h-124.621c-32.358 0-61.44 19.661-73.421 49.715l-162.355 405.862c-14.746 36.915-19.098 77.158-12.595 116.326l30.208 181.197c6.349 38.144 39.322 66.099 77.978 66.099h736.41c38.656 0 71.629-27.955 77.978-66.099l30.208-181.197c6.605-39.168 2.253-79.411-12.544-116.326zM868.301 780.544c-3.686 22.323-22.989 38.656-45.619 38.656h-621.363c-22.63 0-41.933-16.333-45.619-38.656l-18.688-112.282c-4.762-28.211 16.998-53.862 45.619-53.862h658.79c28.57 0 50.33 25.651 45.619 53.862l-18.739 112.282z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["install"],"grid":20},"attrs":[],"properties":{"id":71,"order":72,"prevSize":20,"code":59718,"name":"install"},"setIdx":0,"setId":1,"iconIdx":70},{"icon":{"paths":["M473.498 593.971c23.040 16.026 53.76 16.026 76.8 0l465.306-270.387c12.083-8.397 10.752-26.522-2.458-33.075l-471.296-181.094c-18.842-9.37-41.062-9.37-59.904 0l-471.296 181.094c-13.21 6.502-14.541 24.678-2.458 33.075l465.306 270.387zM1013.146 553.523l-127.283-63.13-293.12 170.342c-24.013 15.821-51.917 24.115-80.845 24.115s-56.832-8.346-80.845-24.115l-292.915-170.445-127.488 63.181c-13.21 6.554-14.541 24.678-2.458 33.075l465.306 323.021c23.040 16.026 53.76 16.026 76.8 0l465.306-323.021c12.083-8.346 10.752-26.47-2.458-33.024z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["layers"],"grid":20},"attrs":[],"properties":{"id":72,"order":73,"prevSize":20,"code":59719,"name":"layers"},"setIdx":0,"setId":1,"iconIdx":71},{"icon":{"paths":["M542.464 266.035l22.835 70.195c18.893-16.179 42.752-30.669 73.779-40.704 30.208-9.83 56.883-15.36 80.998-18.534l-22.016-67.738c-24.371 3.533-51.251 9.216-80.896 18.842-29.594 9.626-54.016 23.040-74.701 37.939zM589.926 412.211l22.835 70.195c18.893-16.179 42.752-30.669 73.779-40.704 30.208-9.83 56.883-15.36 80.998-18.534l-22.016-67.738c-24.371 3.533-51.251 9.216-80.896 18.842-29.594 9.574-53.965 22.989-74.701 37.939zM637.44 558.336l22.835 70.195c18.893-16.179 42.752-30.669 73.779-40.704 30.208-9.83 56.883-15.36 80.998-18.534l-22.016-67.738c-24.371 3.533-51.251 9.216-80.896 18.842-29.645 9.574-54.016 23.040-74.701 37.939zM275.866 669.542l22.016 67.738c21.35-11.571 46.182-22.784 76.39-32.563 31.027-10.086 58.829-12.39 83.61-10.394l-22.835-70.195c-25.549 0.102-53.146 3.584-82.688 13.158-29.645 9.626-54.733 20.787-76.493 32.256zM180.89 377.242l22.016 67.738c21.35-11.571 46.182-22.733 76.39-32.563 31.027-10.086 58.829-12.39 83.61-10.394l-22.784-70.246c-25.549 0.154-53.146 3.584-82.739 13.21-29.645 9.626-54.733 20.787-76.493 32.256zM228.352 523.418l22.016 67.738c21.35-11.571 46.182-22.784 76.39-32.563 31.027-10.086 58.829-12.39 83.61-10.394l-22.784-70.246c-25.549 0.102-53.146 3.584-82.688 13.158-29.645 9.626-54.784 20.838-76.544 32.307zM566.477 72.192c-88.218 28.672-134.298 89.702-156.314 131.021-42.086-20.48-115.2-42.752-203.418-14.080-129.178 41.984-203.213 134.502-203.213 134.502l209.664 644.454c6.451 19.814 33.075 24.422 44.954 7.322 25.549-36.813 74.752-84.89 166.758-114.79 87.962-28.57 152.013 2.765 187.136 29.594 13.926 10.65 33.894 3.072 39.014-13.722 12.902-42.342 46.438-104.448 133.632-132.762 92.109-29.952 160.205-19.917 202.547-5.12 19.712 6.861 38.4-12.39 32-32.205l-209.306-644.813c0 0-114.278-31.334-243.456 10.598zM560.691 781.107c-41.933-12.493-97.331-18.33-160.819 2.253-64.051 20.787-108.902 48.589-138.189 71.885l-166.144-511.078c18.33-18.33 60.774-53.35 136.294-77.875 71.117-23.091 129.434-3.328 167.885 19.354l160.973 495.462zM913.664 643.43c-37.427-1.638-90.061 2.253-154.112 23.091-63.488 20.634-104.858 57.958-131.43 92.672l-160.973-495.462c17.715-40.96 53.248-91.238 124.416-114.33 75.469-24.525 130.406-21.146 156.006-17.101l166.093 511.13z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["open-book"],"grid":20},"attrs":[],"properties":{"id":73,"order":74,"prevSize":20,"code":59720,"name":"open-book"},"setIdx":0,"setId":1,"iconIdx":72},{"icon":{"paths":["M209.92 721.92l-158.72 148.48 102.4 102.4 148.48-158.72 107.52 107.52v-307.2h-307.2l107.52 107.52zM972.8 153.6l-102.4-102.4-148.48 158.72-107.52-107.52v307.2h307.2l-107.52-107.52 158.72-148.48z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["resize-100%"],"grid":20},"attrs":[],"properties":{"id":74,"order":75,"prevSize":20,"code":59721,"name":"resize-100"},"setIdx":0,"setId":1,"iconIdx":73},{"icon":{"paths":["M357.734 562.534l-150.067 155.187-105.267-124.365v328.243h327.014l-124.416-106.547 155.136-150.118-102.4-102.4zM594.586 102.4l124.416 106.547-155.136 150.118 102.4 102.4 150.067-155.187 105.267 124.365v-328.243h-327.014z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["resize-full-screen"],"grid":20},"attrs":[],"properties":{"id":75,"order":76,"prevSize":20,"code":59722,"name":"resize-full-screen"},"setIdx":0,"setId":1,"iconIdx":74},{"icon":{"paths":["M776.858 102.4h-572.058c-56.371 0-102.4 46.080-102.4 102.4v614.4c0 56.32 46.029 102.4 102.4 102.4h614.4c56.371 0 102.4-46.080 102.4-102.4v-556.698l-144.742-160.102zM716.8 409.6c0 28.109-23.040 51.2-51.2 51.2h-307.2c-28.16 0-51.2-23.091-51.2-51.2v-256h409.6v256zM665.6 204.8h-102.4v204.8h102.4v-204.8z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["save"],"grid":20},"attrs":[],"properties":{"id":76,"order":77,"prevSize":20,"code":59723,"name":"save"},"setIdx":0,"setId":1,"iconIdx":75},{"icon":{"paths":["M512 51.2l-256 358.4h512l-256-358.4zM512 972.8l256-358.4h-512l256 358.4z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["select-arrows"],"grid":20},"attrs":[],"properties":{"id":77,"order":78,"prevSize":20,"code":59724,"name":"select-arrows"},"setIdx":0,"setId":1,"iconIdx":76},{"icon":{"paths":["M727.091 470.733c71.117 96.41 93.082 180.070 79.821 193.382-13.312 13.21-96.922-8.704-193.434-79.821l-282.931 282.982c214.323 94.106 492.902-103.322 542.976-153.395 47.36-47.206 4.966-169.421-95.027-294.605l-51.405 51.456zM443.75 406.579c-56.269-84.89-73.267-154.778-61.133-166.912 11.93-11.981 81.92 4.915 166.758 61.286l52.378-52.48c-115.917-85.709-225.024-119.501-269.158-75.213-47.514 47.411-227.738 300.902-165.427 509.798l276.582-276.48zM948.275 75.674c-19.968-20.019-52.378-20.019-72.397 0l-800.205 800.256c-20.019 20.019-20.019 52.429 0 72.397 20.019 20.019 52.378 20.019 72.397 0l800.205-800.256c20.019-20.019 20.019-52.429 0-72.397z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["sound-mute"],"grid":20},"attrs":[],"properties":{"id":78,"order":79,"prevSize":20,"code":59725,"name":"sound-mute"},"setIdx":0,"setId":1,"iconIdx":77},{"icon":{"paths":["M271.974 233.779c-57.446 57.293-308.582 415.488-91.597 632.422 216.883 216.986 574.976-34.202 632.525-91.597 57.395-57.293-17.152-225.024-166.502-374.374-149.453-149.453-316.979-224.051-374.426-166.451zM746.291 724.787c-16.998 16.794-148.224-23.398-274.637-149.914-126.31-126.413-166.707-257.69-149.709-274.586 16.794-16.998 148.173 23.398 274.432 149.811 126.515 126.31 166.81 257.69 149.914 274.688zM790.221 306.278l97.485-97.587c20.019-20.019 20.019-52.378 0-72.397-19.968-20.019-52.378-20.019-72.397 0l-97.485 97.587c-20.019 20.019-20.019 52.429 0 72.397 19.968 19.968 52.378 19.968 72.397 0zM569.549 194.56c24.73 13.722 55.859 4.864 69.632-19.866l55.654-98.611c13.722-24.73 4.864-55.859-19.866-69.632-24.678-13.773-55.859-4.864-69.632 19.866l-55.654 98.611c-13.722 24.781-4.813 55.962 19.866 69.632zM1017.446 348.979c-13.67-24.73-44.902-33.638-69.632-19.866l-99.328 54.323c-24.73 13.722-33.638 44.954-19.866 69.632 13.722 24.73 44.902 33.638 69.632 19.866l99.328-54.323c24.73-13.773 33.638-44.902 19.866-69.632z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["sound"],"grid":20},"attrs":[],"properties":{"id":79,"order":80,"prevSize":20,"code":59726,"name":"sound"},"setIdx":0,"setId":1,"iconIdx":78},{"icon":{"paths":["M173.517 364.186l56.371 558.49c3.123 23.603 117.094 101.222 282.112 101.325 165.12-0.102 279.091-77.722 282.163-101.325l56.422-558.49c-86.221 48.23-215.091 71.014-338.586 71.014-123.392 0-252.314-22.784-338.483-71.014zM674.202 77.312l-43.981-48.691c-16.998-24.218-35.43-28.621-71.322-28.621h-93.747c-35.84 0-54.323 4.403-71.27 28.621l-43.981 48.691c-131.584 22.989-227.021 83.968-227.021 128.973v8.704c0 79.206 174.234 143.411 389.12 143.411 214.938 0 389.171-64.205 389.171-143.411v-8.704c0-45.005-95.386-105.984-226.97-128.973zM617.984 222.208l-54.784-68.608h-102.4l-54.682 68.608h-87.040c0 0 95.334-113.715 108.083-129.126 9.728-11.776 19.661-16.282 32.563-16.282h104.602c12.954 0 22.886 4.506 32.614 16.282 12.698 15.411 108.083 129.126 108.083 129.126h-87.040z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["trash"],"grid":20},"attrs":[],"properties":{"id":80,"order":81,"prevSize":20,"code":59727,"name":"trash"},"setIdx":0,"setId":1,"iconIdx":79},{"icon":{"paths":["M256 307.2h512l-256 460.8-256-460.8z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["triangle-down"],"grid":20},"attrs":[],"properties":{"id":81,"order":82,"prevSize":20,"code":59728,"name":"triangle-down"},"setIdx":0,"setId":1,"iconIdx":80},{"icon":{"paths":["M716.8 256v512l-460.8-256 460.8-256z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["triangle-left"],"grid":20},"attrs":[],"properties":{"id":82,"order":83,"prevSize":20,"code":59729,"name":"triangle-left"},"setIdx":0,"setId":1,"iconIdx":81},{"icon":{"paths":["M768 512l-460.8 256v-512l460.8 256z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["triangle-right"],"grid":20},"attrs":[],"properties":{"id":83,"order":84,"prevSize":20,"code":59730,"name":"triangle-right"},"setIdx":0,"setId":1,"iconIdx":82},{"icon":{"paths":["M768 716.8h-512l256-460.8 256 460.8z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["triangle-up"],"grid":20},"attrs":[],"properties":{"id":84,"order":85,"prevSize":20,"code":59731,"name":"triangle-up"},"setIdx":0,"setId":1,"iconIdx":83},{"icon":{"paths":["M975.821 557.978l-162.355-405.862c-11.981-30.054-41.062-49.715-73.421-49.715h-456.090c-32.358 0-61.44 19.661-73.421 49.715l-162.355 405.862c-14.746 36.915-19.098 77.158-12.595 116.326l30.208 181.197c6.349 38.144 39.322 66.099 77.978 66.099h736.41c38.656 0 71.629-27.955 77.978-66.099l30.208-181.197c6.605-39.168 2.253-79.411-12.544-116.326zM282.624 245.043l83.917-57.958 146.842 102.963 146.842-102.963 83.917 57.958-146.893 104.090 149.914 105.472-83.917 59.955-149.862-106.291-149.862 106.291-83.917-59.955 149.914-105.472-146.893-104.090zM868.301 780.544c-3.686 22.323-22.989 38.656-45.619 38.656h-621.363c-22.63 0-41.933-16.333-45.619-38.656l-18.688-112.282c-4.762-28.211 16.998-53.862 45.619-53.862h658.79c28.57 0 50.33 25.651 45.619 53.862l-18.739 112.282z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["uninstall"],"grid":20},"attrs":[],"properties":{"id":85,"order":86,"prevSize":20,"code":59732,"name":"uninstall"},"setIdx":0,"setId":1,"iconIdx":84},{"icon":{"paths":["M778.906 339.917c-14.131 0-27.955 1.28-41.421 3.482-33.587-109.824-137.626-189.798-260.864-189.798-150.477 0-272.384 119.194-272.384 266.189 0 13.107 1.024 26.010 2.918 38.707-7.219-0.87-14.49-1.382-21.965-1.382-102.298 0-185.19 80.998-185.19 180.992s82.893 181.094 185.19 181.094h224.41v-204.8h-128l230.4-256 230.4 256h-128v204.8h164.506c135.322 0 245.094-107.315 245.094-239.616 0-132.403-109.773-239.667-245.094-239.667z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["upload-to-cloud"],"grid":20},"attrs":[],"properties":{"id":86,"order":87,"prevSize":20,"code":59733,"name":"upload-to-cloud"},"setIdx":0,"setId":1,"iconIdx":85},{"icon":{"paths":["M409.6 614.4h204.8v-307.2h153.6l-256-256-256 256h153.6v307.2zM990.106 692.838c-10.752-11.469-82.483-88.218-102.963-108.237-13.568-13.261-32.973-21.402-53.35-21.402h-89.958l156.877 153.293h-181.453c-5.222 0-9.933 2.662-12.288 6.81l-41.779 95.898h-306.381l-41.779-95.898c-2.355-4.147-7.117-6.81-12.288-6.81h-181.453l156.826-153.293h-89.907c-20.326 0-39.731 8.141-53.35 21.402-20.48 20.070-92.211 96.819-102.963 108.237-25.037 26.675-38.81 47.923-32.256 74.189l28.723 157.389c6.554 26.317 35.379 47.923 64.102 47.923h835.174c28.723 0 57.549-21.606 64.102-47.923l28.723-157.389c6.451-26.266-7.27-47.514-32.358-74.189z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["upload"],"grid":20},"attrs":[],"properties":{"id":87,"order":88,"prevSize":20,"code":59734,"name":"upload1"},"setIdx":0,"setId":1,"iconIdx":86},{"icon":{"paths":["M818.637 979.405c0.563-109.005-111.923-173.517-221.030-220.518-108.698-46.797-143.411-86.221-143.411-170.701 0-50.637 33.178-34.15 47.718-127.027 6.144-38.502 35.43-0.614 41.062-88.525 0-35.021-16.026-43.725-16.026-43.725s8.141-51.866 11.315-91.802c3.277-41.83-20.378-131.072-117.811-158.464-16.998-17.459-28.518-45.158 23.91-72.909-114.688-5.325-141.363 54.682-202.445 98.816-51.968 38.707-65.997 99.994-63.488 132.608 3.328 39.936 11.418 91.802 11.418 91.802s-16.077 8.704-16.077 43.725c5.632 87.962 35.021 50.022 41.114 88.525 14.541 92.877 47.77 76.39 47.77 127.027 0 84.48-10.854 113.152-119.603 159.949-109.107 46.95-143.053 122.214-142.49 231.219 0.154 32.614-0.563 44.595-0.563 44.595h819.2c0 0-0.717-11.981-0.563-44.595zM870.4 512v-153.6h-102.4v153.6h-153.6v102.4h153.6v153.6h102.4v-153.6h153.6v-102.4h-153.6z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["add-user"],"grid":20},"attrs":[],"properties":{"id":88,"order":89,"prevSize":20,"code":59735,"name":"add-user"},"setIdx":0,"setId":1,"iconIdx":87},{"icon":{"paths":["M1013.709 264.448l-121.6-93.696c-6.912-4.762-16.589-9.011-26.675-12.134-10.138-3.123-20.634-5.018-29.030-5.018h-350.003l41.011 256h308.992c8.397 0 18.893-1.894 28.979-5.018s19.814-7.424 26.675-12.083l121.6-93.798c6.912-4.659 10.342-10.854 10.342-17.101s-3.43-12.442-10.291-17.152zM435.2 51.2h-51.2c-14.131 0-25.6 11.469-25.6 25.6v179.2h-170.803c-8.499 0-18.944 1.894-29.030 5.069-10.138 3.072-19.814 7.322-26.675 12.083l-121.6 93.696c-6.912 4.659-10.291 10.906-10.291 17.152 0 6.195 3.379 12.39 10.291 17.152l121.6 93.798c6.861 4.659 16.538 8.96 26.675 12.032 10.086 3.123 20.531 5.018 29.030 5.018h170.803v435.2c0 14.131 11.469 25.6 25.6 25.6h51.2c14.131 0 25.6-11.469 25.6-25.6v-870.4c0-14.131-11.469-25.6-25.6-25.6z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["address"],"grid":20},"attrs":[],"properties":{"id":89,"order":90,"prevSize":20,"code":59736,"name":"address"},"setIdx":0,"setId":1,"iconIdx":88},{"icon":{"paths":["M972.8 470.989c-9.318 0-40.909 0-50.176 0-28.314 0-51.2 18.381-51.2 41.011 0 22.579 22.886 40.909 51.2 40.909 9.318 0 40.909 0 50.176 0 28.262 0 51.2-18.278 51.2-40.909 0-22.579-22.989-41.011-51.2-41.011zM512 230.4c-156.211 0-281.6 125.389-281.6 281.6s125.389 281.6 281.6 281.6c156.16 0 281.6-125.389 281.6-281.6s-125.491-281.6-281.6-281.6zM512 716.8c-113.203 0-204.8-91.699-204.8-204.8 0-113.203 91.597-204.8 204.8-204.8v409.6zM153.6 512c0-22.579-22.989-41.011-51.2-41.011-9.472 0-41.779 0-51.2 0-28.314 0-51.2 18.381-51.2 41.011 0 22.579 22.886 40.909 51.2 40.909 9.421 0 41.728 0 51.2 0 28.211 0 51.2-18.33 51.2-40.909zM512 153.6c22.579 0 40.909-22.886 40.909-51.2 0-9.421 0-41.779 0-51.2 0-28.314-18.33-51.2-40.909-51.2-22.63 0-41.011 22.886-41.011 51.2 0 9.421 0 41.779 0 51.2 0 28.314 18.381 51.2 41.011 51.2zM512 870.4c-22.63 0-41.011 22.886-41.011 51.2 0 9.421 0 41.779 0 51.2 0 28.314 18.381 51.2 41.011 51.2 22.579 0 40.909-22.886 40.909-51.2 0-9.421 0-41.779 0-51.2 0-28.314-18.33-51.2-40.909-51.2zM889.088 192.819c20.019-20.019 23.245-49.203 7.27-65.178s-45.21-12.698-65.126 7.322c-5.53 5.478-30.362 30.31-35.84 35.789-20.019 20.019-23.245 49.203-7.27 65.178s45.21 12.698 65.178-7.322c5.478-5.53 30.259-30.31 35.789-35.789zM170.701 795.29c-5.53 5.581-30.362 30.413-35.84 35.891-20.019 20.019-23.245 49.101-7.27 65.075s45.21 12.8 65.126-7.219c5.53-5.478 30.362-30.31 35.84-35.789 20.019-20.019 23.245-49.203 7.27-65.229s-45.21-12.646-65.126 7.27zM192.768 134.912c-19.968-20.019-49.203-23.296-65.178-7.322s-12.698 45.21 7.219 65.229c5.53 5.478 30.362 30.31 35.84 35.789 20.019 20.019 49.152 23.296 65.126 7.322s12.749-45.21-7.219-65.178c-5.478-5.53-30.259-30.362-35.789-35.84zM795.341 853.299c5.53 5.478 30.362 30.31 35.84 35.789 20.019 20.019 49.152 23.194 65.126 7.322 15.974-15.974 12.749-45.21-7.27-65.178-5.478-5.478-30.31-30.31-35.789-35.789-20.019-20.019-49.203-23.296-65.229-7.322s-12.698 45.158 7.322 65.178z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["adjust"],"grid":20},"attrs":[],"properties":{"id":90,"order":91,"prevSize":20,"code":59737,"name":"adjust"},"setIdx":0,"setId":1,"iconIdx":89},{"icon":{"paths":["M135.322 325.478c89.446-76.8 160.102-137.523 351.846-29.184 92.109 52.019 166.4 71.68 228.198 71.578 108.288 0 178.483-60.211 239.155-112.282 21.658-18.586 24.422-51.61 6.246-73.677-18.278-22.118-50.534-24.986-72.192-6.4-89.395 76.902-160.102 137.626-351.846 29.184-253.338-143.002-372.019-41.114-467.354 40.806-21.606 18.586-24.371 51.507-6.195 73.677 18.227 22.016 50.483 24.934 72.141 6.298zM888.576 436.992c-89.395 76.8-160.102 137.626-351.846 29.184-253.338-143.104-372.019-41.165-467.354 40.704-21.606 18.586-24.422 51.61-6.195 73.677 18.176 22.118 50.483 24.986 72.141 6.4 89.446-76.851 160.102-137.574 351.846-29.286 92.109 52.122 166.4 71.68 228.198 71.68 108.288 0 178.483-60.211 239.155-112.384 21.658-18.586 24.422-51.61 6.246-73.626-18.227-22.17-50.534-24.934-72.192-6.349zM888.576 698.419c-89.395 76.902-160.102 137.626-351.846 29.286-253.338-143.104-372.019-41.216-467.354 40.704-21.606 18.586-24.422 51.61-6.195 73.677 18.176 22.118 50.483 24.883 72.141 6.298 89.446-76.8 160.102-137.472 351.846-29.184 92.109 52.019 166.4 71.68 228.198 71.68 108.288 0 178.483-60.314 239.155-112.384 21.658-18.586 24.422-51.61 6.246-73.677-18.227-22.118-50.534-24.934-72.192-6.4z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["air"],"grid":20},"attrs":[],"properties":{"id":91,"order":92,"prevSize":20,"code":59738,"name":"air"},"setIdx":0,"setId":1,"iconIdx":90},{"icon":{"paths":["M960.102 821.146c-4.966 13.619-42.086 51.302-308.685-44.954l-261.376-94.362c-90.982-32.819-219.034-84.429-269.21-113.51-35.123-20.326-42.803-65.638-42.803-65.638s-8.346-151.347-13.466-188.621c-5.12-37.274 4.864-43.674 40.755-25.19 22.323 11.52 95.488 131.174 126.157 182.63 77.414 19.507 146.534 38.963 178.842 48.589-13.158-87.91-37.888-252.314-46.746-303.77-8.499-49.306 28.16-27.392 28.16-27.392 16.947 9.728 50.33 33.843 61.747 51.302 77.926 119.091 188.006 337.92 196.403 354.714 45.875 14.336 116.582 37.53 158.822 52.736 110.387 39.885 158.054 155.341 151.398 173.466z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["aircraft-landing"],"grid":20},"attrs":[],"properties":{"id":92,"order":93,"prevSize":20,"code":59739,"name":"aircraft-landing"},"setIdx":0,"setId":1,"iconIdx":91},{"icon":{"paths":["M1017.344 330.394c6.093 13.158 6.502 66.048-250.061 186.47l-251.546 118.067c-87.552 41.114-214.579 95.181-270.592 110.131-39.219 10.445-76.646-16.179-76.646-16.179s-112.947-101.12-142.95-123.853c-29.952-22.733-27.392-34.304 11.008-46.592 23.91-7.629 160.256 25.242 218.368 39.936 68.557-40.96 131.174-76.083 160.819-92.058-71.475-52.89-205.21-151.654-247.859-181.76-40.909-28.928 0.512-39.322 0.512-39.322 18.842-5.069 59.494-11.674 79.974-7.373 139.315 29.133 371.866 106.035 389.683 111.923 42.598-22.323 108.954-55.91 149.606-75.008 106.24-49.869 221.542-1.894 229.683 15.616z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["aircraft-take-off"],"grid":20},"attrs":[],"properties":{"id":93,"order":94,"prevSize":20,"code":59740,"name":"aircraft-take-off"},"setIdx":0,"setId":1,"iconIdx":92},{"icon":{"paths":["M639.795 891.597c-20.173-56.115-92.416-244.48-122.368-322.406-56.474 37.734-119.501 73.472-179.814 98.714-18.739 65.536-56.013 189.901-74.035 206.49-30.925 28.518-42.598 24.832-47.36-14.285s-24.832-165.683-24.832-165.683-110.694-62.413-145.408-80.282-34.15-30.259 2.918-49.869c21.606-11.418 149.862-4.352 217.19 0.256 44.083-48.691 98.867-96.358 153.242-137.165-62.208-55.091-212.48-188.16-257.741-226.509-39.731-33.69 4.045-40.806 4.045-40.806 19.968-3.584 62.566-6.758 83.354-0.461 129.229 39.066 329.83 105.882 376.986 121.651 18.074-12.749 37.734-26.624 59.494-42.035 240.742-170.496 301.414-132.762 312.883-116.224s25.754 87.091-214.989 257.638c-21.76 15.411-41.37 29.338-59.392 42.138-1.485 50.176-8.038 263.731-15.923 399.923-1.28 21.914-18.79 61.338-28.928 79.053-0.051-0-21.658 39.168-39.322-10.138z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["aircraft"],"grid":20},"attrs":[],"properties":{"id":94,"order":95,"prevSize":20,"code":59741,"name":"aircraft"},"setIdx":0,"setId":1,"iconIdx":93},{"icon":{"paths":["M665.6 563.2h-102.4v-409.6h-102.4v409.6h-102.4l153.6 153.6 153.6-153.6zM890.88 768h-757.76c-28.262 0-30.72 22.886-30.72 51.2s2.458 51.2 30.72 51.2h757.76c28.262 0 30.72-22.886 30.72-51.2s-2.458-51.2-30.72-51.2z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["align-bottom"],"grid":20},"attrs":[],"properties":{"id":95,"order":96,"prevSize":20,"code":59742,"name":"align-bottom"},"setIdx":0,"setId":1,"iconIdx":94},{"icon":{"paths":["M409.6 512l-153.6-153.6v102.4h-204.8v102.4h204.8v102.4l153.6-153.6zM768 665.6v-102.4h204.8v-102.4h-204.8v-102.4l-153.6 153.6 153.6 153.6zM512 921.6c28.314 0 51.2-2.509 51.2-30.72v-757.76c0-28.314-22.886-30.72-51.2-30.72-28.262 0-51.2 2.406-51.2 30.72v757.76c0 28.211 22.938 30.72 51.2 30.72z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["align-horizontal-middle"],"grid":20},"attrs":[],"properties":{"id":96,"order":97,"prevSize":20,"code":59743,"name":"align-horizontal-middle"},"setIdx":0,"setId":1,"iconIdx":95},{"icon":{"paths":["M307.2 512l153.6 153.6v-102.4h409.6v-102.4h-409.6v-102.4l-153.6 153.6zM204.8 102.4c-28.314 0-51.2 2.406-51.2 30.72v757.76c0 28.211 22.886 30.72 51.2 30.72 28.262 0 51.2-2.509 51.2-30.72v-757.76c0-28.314-22.938-30.72-51.2-30.72z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["align-left"],"grid":20},"attrs":[],"properties":{"id":97,"order":98,"prevSize":20,"code":59744,"name":"align-left"},"setIdx":0,"setId":1,"iconIdx":96},{"icon":{"paths":["M563.2 358.4v102.4h-409.6v102.4h409.6v102.4l153.6-153.6-153.6-153.6zM768 133.12v757.76c0 28.211 22.938 30.72 51.2 30.72 28.314 0 51.2-2.509 51.2-30.72v-757.76c0-28.314-22.886-30.72-51.2-30.72-28.262 0-51.2 2.406-51.2 30.72z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["align-right"],"grid":20},"attrs":[],"properties":{"id":98,"order":99,"prevSize":20,"code":59745,"name":"align-right"},"setIdx":0,"setId":1,"iconIdx":97},{"icon":{"paths":["M512 307.2l-153.6 153.6h102.4v409.6h102.4v-409.6h102.4l-153.6-153.6zM921.6 204.8c0-28.314-2.458-51.2-30.72-51.2h-757.76c-28.262 0-30.72 22.886-30.72 51.2s2.458 51.2 30.72 51.2h757.76c28.262 0 30.72-22.886 30.72-51.2z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["align-top"],"grid":20},"attrs":[],"properties":{"id":99,"order":100,"prevSize":20,"code":59746,"name":"align-top"},"setIdx":0,"setId":1,"iconIdx":98},{"icon":{"paths":["M512 614.4l-153.6 153.6h102.4v204.8h102.4v-204.8h102.4l-153.6-153.6zM665.6 256h-102.4v-204.8h-102.4v204.8h-102.4l153.6 153.6 153.6-153.6zM921.6 512c0-28.314-2.458-51.2-30.72-51.2h-757.76c-28.262 0-30.72 22.886-30.72 51.2 0 28.211 2.458 51.2 30.72 51.2h757.76c28.262 0 30.72-22.989 30.72-51.2z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["align-vertical-middle"],"grid":20},"attrs":[],"properties":{"id":100,"order":101,"prevSize":20,"code":59747,"name":"align-vertical-middle"},"setIdx":0,"setId":1,"iconIdx":99},{"icon":{"paths":["M715.827 102.4h-407.706c0 0-50.995 0-50.995 51.2h509.696c0-51.2-50.995-51.2-50.995-51.2zM868.762 256c0-51.2-50.944-51.2-50.944-51.2h-611.635c0 0-50.944 0-50.944 51.2v51.2h713.523v-51.2zM970.65 307.2c-30.106-30.31-30.106-30.31-30.106-30.31v81.51h-857.088v-81.51c0 0 0 0-30.157 30.31s-51.763 38.4-39.629 102.4c12.083 63.795 70.605 413.491 79.309 460.8 9.523 51.917 62.31 51.2 62.31 51.2h713.523c0 0 52.736 0.717 62.31-51.2 8.704-47.309 67.174-397.005 79.309-460.8 12.032-64-9.574-72.090-39.782-102.4zM716.8 614.246c0 28.365-22.989 51.354-51.354 51.354h-306.893c-28.365 0-51.354-22.989-51.354-51.354v-102.246h51.2v102.4h307.2v-102.4h51.2v102.246z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["archive"],"grid":20},"attrs":[],"properties":{"id":101,"order":102,"prevSize":20,"code":59748,"name":"archive"},"setIdx":0,"setId":1,"iconIdx":100},{"icon":{"paths":["M1024 102.4v819.2h-1007.616c-16.282 0-21.299-10.701-11.059-23.808l228.813-294.298c10.189-13.107 28.314-14.49 40.397-3.174l72.653 68.301c12.032 11.315 29.286 9.114 38.246-4.915l156.006-242.688c8.96-13.978 26.061-15.974 37.939-4.608l111.155 107.315c11.878 11.52 28.621 9.216 37.069-5.12l262.81-398.592c8.499-14.438 20.787-17.613 33.587-17.613z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["area-graph"],"grid":20},"attrs":[],"properties":{"id":102,"order":103,"prevSize":20,"code":59749,"name":"area-graph"},"setIdx":0,"setId":1,"iconIdx":101},{"icon":{"paths":["M286.822 1013.76c-66.202 0-128.205-28.416-172.954-73.728-86.784-87.859-110.95-241.203 10.701-364.339 71.219-72.090 356.659-361.114 499.098-505.344 50.586-51.2 114.944-71.014 176.538-54.272 60.57 16.384 110.131 66.611 126.362 127.898 16.486 62.464-3.021 127.642-53.555 178.842l-477.338 483.328c-27.238 27.597-58.061 43.93-88.986 47.206-30.669 3.277-59.904-6.656-80.384-27.392-37.069-37.683-42.394-108.39 19.354-170.854l335.258-339.456c13.773-13.926 36.096-13.926 49.869 0s13.773 36.557 0 50.483l-335.309 339.507c-28.979 29.286-31.642 57.293-19.302 69.837 5.427 5.427 13.619 7.936 23.091 6.861 14.49-1.485 31.027-11.059 46.541-26.675l477.338-483.277c32.768-33.178 45.312-72.192 35.328-109.824-9.83-37.12-39.834-67.482-76.442-77.466-37.171-10.086-75.776 2.662-108.544 35.84-142.438 144.282-427.827 433.254-499.098 505.344-92.979 94.157-70.707 202.547-10.701 263.322 60.058 60.774 167.014 83.405 260.045-10.854l499.098-505.344c13.773-13.926 36.096-13.926 49.869 0s13.773 36.557 0 50.534l-499.098 505.344c-58.829 59.494-124.723 84.48-186.778 84.48z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["attachment"],"grid":20},"attrs":[],"properties":{"id":103,"order":104,"prevSize":20,"code":59750,"name":"attachment1"},"setIdx":0,"setId":1,"iconIdx":102},{"icon":{"paths":["M848.589 836.506c-38.758-53.811-145.971-195.789-233.984-312.627 35.635-51.149 64.051-92.928 77.056-114.79 79.104-132.813 44.749-218.112 1.126-290.304-43.725-72.243-50.637-113.971-180.787-113.971-130.202 0-137.114 41.728-180.787 114.022-43.725 72.192-78.029 157.491 1.075 290.304 13.005 21.811 41.421 63.642 77.107 114.79-88.064 116.787-195.277 258.816-234.035 312.627-9.011 12.493-8.192 33.997 0.461 55.398 6.656 16.486 32.256 90.214 38.502 105.677 7.987 19.917 33.997 34.304 55.398 4.71 12.339-17.101 132.198-180.48 242.278-333.926 110.029 153.395 229.939 316.826 242.278 333.926 21.35 29.594 47.411 15.206 55.398-4.71 6.246-15.514 31.846-89.19 38.502-105.677 8.55-21.453 9.421-42.957 0.41-55.45zM493.261 361.626c-54.682-75.981-93.798-164.403-93.798-164.403s21.504-38.81 112.538-38.81c91.034 0 112.538 38.81 112.538 38.81s-39.219 88.422-93.85 164.403c-4.506 6.195-11.162 15.206-18.688 25.446-7.629-10.24-14.285-19.251-18.739-25.446z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["awareness-ribbon"],"grid":20},"attrs":[],"properties":{"id":104,"order":105,"prevSize":20,"code":59751,"name":"awareness-ribbon"},"setIdx":0,"setId":1,"iconIdx":103},{"icon":{"paths":["M563.2 92.109c-227.584 0-412.723 182.374-418.253 409.395v10.496h-121.446l184.013 199.373 178.893-199.373h-136.806v-10.496c5.478-169.114 143.77-304.384 313.6-304.384 173.363 0 313.907 141.005 313.907 314.88s-140.544 314.88-313.907 314.88c-69.478 0-133.683-22.784-185.702-61.082l-71.987 77.005c71.066 55.706 160.512 88.986 257.69 88.986 231.168 0 418.509-187.904 418.509-419.789s-187.341-419.891-418.509-419.891zM512 256v256c0 6.656 1.382 13.312 3.942 19.558 2.611 6.246 6.349 11.93 11.059 16.64l163.84 163.84c14.49-9.37 28.16-19.917 40.294-32.154l-116.736-116.685v-307.2h-102.4z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["back-in-time"],"grid":20},"attrs":[],"properties":{"id":105,"order":106,"prevSize":20,"code":59752,"name":"back-in-time"},"setIdx":0,"setId":1,"iconIdx":104},{"icon":{"paths":["M972.8 358.4v307.2c0 56.474-45.875 102.4-102.4 102.4h-716.8v-153.6h665.6v-204.8h-563.2v102.4l-204.8-179.2 204.8-179.2v102.4h614.4c56.525 0 102.4 45.875 102.4 102.4z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["back"],"grid":20},"attrs":[],"properties":{"id":106,"order":107,"prevSize":20,"code":59753,"name":"back"},"setIdx":0,"setId":1,"iconIdx":105},{"icon":{"paths":["M870.4 51.2h-102.4c-28.262 0-51.2 22.886-51.2 51.2v869.99h204.8v-869.99c0-28.314-22.886-51.2-51.2-51.2zM563.2 358.4h-102.4c-28.262 0-51.2 22.886-51.2 51.2v562.79h204.8v-562.79c0-28.314-22.886-51.2-51.2-51.2zM256 665.6h-102.4c-28.262 0-51.2 22.886-51.2 51.2v255.59h204.8v-255.59c0-28.314-22.886-51.2-51.2-51.2z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["bar-graph"],"grid":20},"attrs":[],"properties":{"id":107,"order":108,"prevSize":20,"code":59754,"name":"bar-graph"},"setIdx":0,"setId":1,"iconIdx":106},{"icon":{"paths":["M788.89 512c0-141.619 65.382-221.184 116.582-221.184 18.586 0 67.328 0 67.328 0-34.202-54.221-62.515-86.016-187.29-86.016h-512.41c-191.181 0-273.101 176.179-273.101 307.2s81.92 307.2 273.101 307.2h512.41c124.826 0 153.088-31.795 187.29-86.016 0 0-16.128 0-67.328 0s-116.582-79.565-116.582-221.184zM649.626 603.904c-8.397 12.8-34.611 0.819-34.611 0.819l-151.398-68.506c0 0-13.517 34.304-23.91 58.419-10.496 24.115-18.483 51.405-61.901 20.89-43.469-30.618-183.347-166.4-183.347-166.4s-17.664-14.541-8.858-28.211c8.346-12.902 34.611-0.819 34.611-0.819l151.347 68.403c0 0 13.568-34.202 23.962-58.317 10.496-24.064 18.483-51.507 61.901-20.89 43.469 30.515 183.296 166.4 183.296 166.4s17.664 14.49 8.909 28.211zM966.349 405.914h-38.349c-28.621 0-56.576 38.605-56.576 101.325 0 62.822 28.006 101.376 56.576 101.376h38.349c28.672 0 57.651-38.605 57.651-101.376 0-62.72-28.979-101.325-57.651-101.325z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["battery"],"grid":20},"attrs":[],"properties":{"id":108,"order":109,"prevSize":20,"code":59755,"name":"battery"},"setIdx":0,"setId":1,"iconIdx":107},{"icon":{"paths":["M870.4 51.2l-0.102 665.6c0 63.642-66.611 153.6-191.898 153.6-63.642 0-115.2-33.434-115.2-96 0-81.357 73.984-130.56 153.6-130.56 22.118 0 38.605 3.021 51.2 6.298v-375.501l-358.4 65.178v479.386h-0.102c0 63.642-66.611 153.6-191.898 153.6-63.642 0-115.2-33.434-115.2-96 0-81.357 73.984-130.56 153.6-130.56 22.118 0 38.605 3.021 51.2 6.298v-598.938l563.2-102.4z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["beamed-note"],"grid":20},"attrs":[],"properties":{"id":109,"order":110,"prevSize":20,"code":59756,"name":"beamed-note"},"setIdx":0,"setId":1,"iconIdx":108},{"icon":{"paths":["M750.080 435.814c-116.736-251.238-177.459-346.675-368.179-342.682-67.942 1.382-51.661-49.254-103.475-30.054-51.712 19.2-7.322 47.309-60.262 90.778-148.582 122.010-134.912 234.854-65.997 503.808 29.030 113.306-69.99 118.835-30.822 228.608 28.621 80.077 239.565 113.613 462.080 31.078 222.566-82.586 362.803-246.477 334.182-326.554-39.168-109.824-118.323-49.203-167.526-154.982zM559.309 849.664c-198.758 73.728-362.086 30.413-368.998 11.11-11.878-33.28 64.154-144.179 291.379-228.506s354.048-53.043 367.309-15.923c7.834 21.965-90.88 159.539-289.69 233.318zM495.411 670.771c-103.885 38.554-176.077 82.637-222.874 122.317 32.922 29.901 94.566 37.171 155.955 14.387 78.182-28.928 126.259-95.539 107.264-148.685-0.256-0.666-0.563-1.178-0.819-1.843-12.851 4.198-26.010 8.755-39.526 13.824z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["bell"],"grid":20},"attrs":[],"properties":{"id":110,"order":111,"prevSize":20,"code":59757,"name":"bell1"},"setIdx":0,"setId":1,"iconIdx":109},{"icon":{"paths":["M129.997 1024h177.203l71.987-189.338-151.859-51.405-97.331 240.742zM644.813 834.662l71.987 189.338h177.203l-97.331-240.742-151.859 51.405zM921.6 102.4h-332.8l-25.6-102.4h-102.4l-25.6 102.4h-332.8c-28.314 0-51.2 22.886-51.2 51.2v563.2c0 28.262 22.886 51.2 51.2 51.2h819.2c28.314 0 51.2-22.938 51.2-51.2v-563.2c0-28.262-22.886-51.2-51.2-51.2z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["blackboard"],"grid":20},"attrs":[],"properties":{"id":111,"order":112,"prevSize":20,"code":59758,"name":"blackboard"},"setIdx":0,"setId":1,"iconIdx":110},{"icon":{"paths":["M512 20.48c-271.514 0-491.571 220.058-491.571 491.52 0 271.514 220.058 491.571 491.571 491.571 271.411 0 491.52-220.058 491.52-491.571 0-271.462-220.109-491.52-491.52-491.52zM122.829 512c0-214.886 174.182-389.12 389.12-389.12 93.645 0 179.507 33.126 246.63 88.218l-547.533 547.533c-55.091-67.174-88.218-152.986-88.218-246.63zM511.949 901.069c-93.594 0-179.456-33.075-246.528-88.166l547.533-547.482c55.040 67.174 88.166 152.934 88.166 246.579 0 214.886-174.285 389.069-389.171 389.069z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["block"],"grid":20},"attrs":[],"properties":{"id":112,"order":113,"prevSize":20,"code":59759,"name":"block"},"setIdx":0,"setId":1,"iconIdx":111},{"icon":{"paths":["M870.4 304.64v529.971c0 26.726-23.142 39.475-51.2 59.392-22.528 16.026-51.2-3.84-51.2-30.054 0 0 0-507.136 0-517.837 0-10.803-3.789-21.094-16.077-27.392s-396.186-208.128-396.186-208.128c-6.195-2.304-33.229-19.354-69.274-0.819-34.253 17.613-52.89 36.762-57.651 45.773l418.816 229.478c11.11 5.837 17.971 14.848 17.971 26.419v553.062c0 11.776-7.27 24.371-18.893 29.952-5.325 2.662-11.213 3.942-17.050 3.942-6.912 0-13.875-1.69-19.763-5.325-11.008-6.707-398.029-244.019-423.578-259.43-12.288-7.373-26.675-22.477-26.982-33.69l-5.734-526.643c0-10.138-1.178-28.006 14.797-52.838 35.686-55.501 160.205-118.63 223.232-85.914l460.749 233.216c11.11 5.734 18.022 17.203 18.022 36.864z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["book"],"grid":20},"attrs":[],"properties":{"id":113,"order":114,"prevSize":20,"code":59760,"name":"book1"},"setIdx":0,"setId":1,"iconIdx":112},{"icon":{"paths":["M867.789 382.566c-111.411 148.582-209.664 153.702-360.755 161.382h-5.171c-183.859-0.102-314.266-68.403-314.266-93.798-0.102-24.115 117.658-86.886 286.976-93.133l30.208-75.418c-0.973 0-1.894-0.102-2.918-0.102-251.29 0-398.899 79.974-398.899 156.211v102.4c0 47.002 29.798 458.189 388.198 458.189s409.6-411.187 409.6-458.189v-102.4c0-20.019-10.291-40.294-29.901-59.29l-3.072 4.147zM900.557 138.342c-22.579-16.896-54.733-12.39-71.629 10.291l-184.73 246.221 119.603-298.906c10.547-26.214-2.253-56.013-28.518-66.611-26.010-10.496-56.115 2.202-66.56 28.621l-166.861 416.87c147.558-7.526 218.982-11.622 310.63-133.683 91.597-122.214 98.253-131.123 98.253-131.123 16.998-22.579 12.442-54.682-10.189-71.68z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["bowl"],"grid":20},"attrs":[],"properties":{"id":114,"order":115,"prevSize":20,"code":59761,"name":"bowl"},"setIdx":0,"setId":1,"iconIdx":113},{"icon":{"paths":["M942.029 102.4h-860.109c-16.998 0-30.72 13.67-30.72 30.72v122.88h921.6v-122.88c0-17.050-13.824-30.72-30.771-30.72zM102.4 849.92c0 39.424 32.205 71.68 71.629 71.68h675.84c39.424 0 71.68-32.307 71.68-71.68v-542.72h-819.149v542.72zM358.4 409.6h307.2v102.4h-307.2v-102.4z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["box"],"grid":20},"attrs":[],"properties":{"id":115,"order":116,"prevSize":20,"code":59762,"name":"box"},"setIdx":0,"setId":1,"iconIdx":114},{"icon":{"paths":["M460.8 512h102.4v102.4h460.8c0 0-7.629-228.301-10.24-299.725-2.56-67.891-26.88-109.875-102.4-109.875h-164.25c-25.446-48.026-52.838-99.584-61.286-115.507-16.947-31.898-22.733-38.093-60.365-38.093h-226.97c-37.632 0-43.366 6.195-60.365 38.093-8.448 15.923-35.84 67.482-61.235 115.507h-164.301c-75.571 0-99.584 41.984-102.4 109.875-2.765 67.942-10.189 299.725-10.189 299.725h460.8v-102.4zM391.629 149.299c11.776-22.118 15.77-26.419 41.83-26.419h157.030c26.061 0 30.106 4.301 41.779 26.419 4.403 8.192 16.282 30.72 29.44 55.501h-299.52c13.158-24.781 25.037-47.309 29.44-55.501zM563.2 768h-102.4v-102.4h-435.2c0 0 6.349 92.006 10.189 170.086 1.587 32.41 11.162 85.914 92.16 85.914h768.051c80.998 0 90.368-53.606 92.16-85.914 4.454-80.282 10.24-170.086 10.24-170.086h-435.2v102.4z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["briefcase"],"grid":20},"attrs":[],"properties":{"id":116,"order":117,"prevSize":20,"code":59763,"name":"briefcase1"},"setIdx":0,"setId":1,"iconIdx":115},{"icon":{"paths":["M921.6 102.4h-819.2c-56.32 0-102.4 46.080-102.4 102.4v614.4c0 56.32 46.080 102.4 102.4 102.4h819.2c56.32 0 102.4-46.080 102.4-102.4v-614.4c0-56.32-46.080-102.4-102.4-102.4zM230.4 192c21.197 0 38.4 17.203 38.4 38.4s-17.203 38.4-38.4 38.4c-21.197 0-38.4-17.203-38.4-38.4s17.203-38.4 38.4-38.4zM89.6 230.4c0-21.197 17.203-38.4 38.4-38.4s38.4 17.203 38.4 38.4c0 21.197-17.203 38.4-38.4 38.4s-38.4-17.203-38.4-38.4zM921.6 819.2h-819.2v-460.8h819.2v460.8zM921.6 256h-614.4v-51.2h615.373l-0.973 51.2z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["browser"],"grid":20},"attrs":[],"properties":{"id":117,"order":118,"prevSize":20,"code":59764,"name":"browser"},"setIdx":0,"setId":1,"iconIdx":116},{"icon":{"paths":["M141.466 694.426c-77.568 76.186-12.032 154.419-115.046 270.285-46.49 52.378 191.386 36.403 309.197-79.411 50.022-49.203 35.891-120.781-17.715-173.517-53.606-52.634-126.464-66.56-176.435-17.357zM1000.397 33.741c-39.731-39.117-480.205 313.805-611.277 442.675-65.075 64-86.784 98.304-106.701 123.904-8.704 11.213 2.816 14.592 7.885 17.203 25.805 13.21 43.827 25.395 67.123 48.282 23.347 22.886 35.789 40.602 49.101 65.997 2.714 5.018 6.195 16.282 17.51 7.782 26.112-19.61 60.979-41.011 126.054-104.909 131.123-128.819 490.138-561.869 450.304-600.934z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["brush"],"grid":20},"attrs":[],"properties":{"id":118,"order":119,"prevSize":20,"code":59765,"name":"brush"},"setIdx":0,"setId":1,"iconIdx":117},{"icon":{"paths":["M563.2 51.2c-251.29 0-409.498 81.51-398.848 151.040 3.072 19.917 11.52 99.584 22.221 167.578-123.136 47.821-163.942 125.389-158.464 188.621 6.502 74.803 73.779 154.88 221.594 168.704 84.378 7.885 185.907-38.4 251.699-117.504-6.246-10.598-9.882-23.040-9.882-36.198 0-39.629 32.102-71.68 71.68-71.68 39.629 0 71.68 32.102 71.68 71.68 0 39.014-31.232 70.707-70.093 71.578-78.285 101.018-197.53 161.997-310.477 154.88 2.611 16.589 3.584 48.486 4.915 56.986 4.608 29.645 120.166 115.712 303.974 115.917 183.808-0.205 299.366-86.272 304.026-115.866 4.506-29.542 84.019-584.141 94.822-654.694 10.65-69.53-147.61-151.040-398.848-151.040zM99.482 552.192c-2.816-32.922 23.296-76.698 98.509-109.517 10.803 68.608 22.579 143.206 32.922 208.589-82.125-16.026-127.898-58.829-131.43-99.072zM563.2 308.429c-183.808-0.102-314.214-68.301-314.214-93.798-0.102-25.293 130.406-91.648 314.214-91.546 183.808-0.102 314.317 66.253 314.214 91.546 0 25.498-130.406 93.696-314.214 93.798z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["bucket"],"grid":20},"attrs":[],"properties":{"id":119,"order":120,"prevSize":20,"code":59766,"name":"bucket"},"setIdx":0,"setId":1,"iconIdx":118},{"icon":{"paths":["M490.701 309.043c99.942 0 132.659-70.707 94.157-145.562-44.595-86.682 97.024-161.536 26.675-161.536-66.611 0-191.283 72.602-214.528 162.97-17.357 67.789 15.155 144.128 93.696 144.128zM757.555 767.334l-22.733-19.61c-24.934-21.504-64-21.402-88.832 0l-22.63 19.558c-31.744 27.341-71.526 41.011-111.309 41.011s-79.565-13.67-111.258-40.96l-22.733-19.661c-24.934-21.402-63.949-21.453-88.781 0.051l-22.733 19.61c-61.082 52.634-151.91 54.067-215.245 5.12v200.346c0 28.262 22.938 51.2 51.2 51.2h819.2c28.262 0 51.2-22.938 51.2-51.2v-200.294c-63.334 48.845-154.163 47.565-215.347-5.171zM512 358.4c-387.789 0-460.8 172.083-460.8 256v24.013l59.597 51.354c24.883 21.555 63.949 21.35 88.832 0l22.733-19.61c63.334-54.528 158.976-54.579 222.464 0l22.733 19.661c24.781 21.35 63.744 21.504 88.832-0.051l22.63-19.558c63.488-54.63 159.078-54.63 222.515-0.051l22.733 19.61c24.934 21.555 64 21.35 88.832 0l59.699-51.354v-24.013c0-83.917-73.011-256-460.8-256z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["cake"],"grid":20},"attrs":[],"properties":{"id":120,"order":121,"prevSize":20,"code":59767,"name":"cake"},"setIdx":0,"setId":1,"iconIdx":119},{"icon":{"paths":["M747.52 51.2h-471.142c-39.373 0-71.578 32.205-71.578 71.68v778.24c0 39.424 32.205 71.68 71.578 71.68h471.142c39.373 0 71.68-32.307 71.68-71.68v-778.24c0-39.475-32.307-71.68-71.68-71.68zM358.4 614.4c35.277 0 64 22.886 64 51.2s-28.723 51.2-64 51.2c-35.328 0-64-22.886-64-51.2s28.672-51.2 64-51.2zM294.4 512c0-28.314 28.672-51.2 64-51.2 35.277 0 64 22.886 64 51.2s-28.723 51.2-64 51.2c-35.328 0-64-22.886-64-51.2zM358.4 768c35.277 0 64 22.886 64 51.2s-28.723 51.2-64 51.2c-35.328 0-64-22.886-64-51.2s28.672-51.2 64-51.2zM512 614.4c35.277 0 64 22.886 64 51.2s-28.723 51.2-64 51.2c-35.328 0-64-22.886-64-51.2s28.672-51.2 64-51.2zM448 512c0-28.314 28.672-51.2 64-51.2 35.277 0 64 22.886 64 51.2s-28.723 51.2-64 51.2c-35.328 0-64-22.886-64-51.2zM512 768c35.277 0 64 22.886 64 51.2s-28.723 51.2-64 51.2c-35.328 0-64-22.886-64-51.2s28.672-51.2 64-51.2zM665.6 614.4c35.277 0 64 22.886 64 51.2s-28.723 51.2-64 51.2c-35.328 0-64-22.886-64-51.2s28.672-51.2 64-51.2zM601.6 512c0-28.314 28.672-51.2 64-51.2 35.277 0 64 22.886 64 51.2s-28.723 51.2-64 51.2c-35.328 0-64-22.886-64-51.2zM665.6 768c35.277 0 64 22.886 64 51.2s-28.723 51.2-64 51.2c-35.328 0-64-22.886-64-51.2s28.672-51.2 64-51.2zM256 358.4v-153.6h512v153.6h-512z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["calculator"],"grid":20},"attrs":[],"properties":{"id":121,"order":122,"prevSize":20,"code":59768,"name":"calculator1"},"setIdx":0,"setId":1,"iconIdx":120},{"icon":{"paths":["M870.4 153.6h-51.2v102.4h-153.6v-102.4h-307.2v102.4h-153.6v-102.4h-51.2c-56.371 0-102.4 46.080-102.4 102.4v614.4c0 56.32 46.029 102.4 102.4 102.4h716.8c56.32 0 102.4-46.080 102.4-102.4v-614.4c0-56.32-46.080-102.4-102.4-102.4zM870.4 870.4h-716.8v-409.6h716.8v409.6zM332.8 51.2h-102.4v179.2h102.4v-179.2zM793.6 51.2h-102.4v179.2h102.4v-179.2z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["calendar"],"grid":20},"attrs":[],"properties":{"id":122,"order":123,"prevSize":20,"code":59769,"name":"calendar1"},"setIdx":0,"setId":1,"iconIdx":121},{"icon":{"paths":["M512 409.6c-84.838 0-153.6 68.813-153.6 153.6s68.762 153.6 153.6 153.6c84.787 0 153.6-68.813 153.6-153.6s-68.813-153.6-153.6-153.6zM921.6 256h-122.88c-16.896 0-35.123-13.107-40.397-29.184l-31.795-95.283c-5.376-16.026-23.501-29.133-40.448-29.133h-348.16c-16.896 0-35.123 13.107-40.397 29.082l-31.846 95.334c-5.325 16.077-23.501 29.184-40.397 29.184h-122.88c-56.32 0-102.4 46.080-102.4 102.4v460.8c0 56.32 46.080 102.4 102.4 102.4h819.2c56.32 0 102.4-46.080 102.4-102.4v-460.8c0-56.32-46.080-102.4-102.4-102.4zM512 819.2c-141.414 0-256-114.586-256-256s114.586-256 256-256c141.363 0 256 114.586 256 256s-114.637 256-256 256zM896 419.84c-19.814 0-35.84-16.077-35.84-35.891 0-19.712 16.026-35.84 35.84-35.84s35.84 16.077 35.84 35.84c0 19.814-16.026 35.891-35.84 35.891z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["camera"],"grid":20},"attrs":[],"properties":{"id":123,"order":124,"prevSize":20,"code":59770,"name":"camera1"},"setIdx":0,"setId":1,"iconIdx":122},{"icon":{"paths":["M35.072 512h121.446v-10.496c5.53-227.021 190.669-409.395 418.253-409.395 231.168 0 418.509 188.006 418.509 419.891s-187.341 419.789-418.509 419.789c-97.178 0-186.624-33.28-257.69-88.986l71.987-77.005c52.019 38.298 116.224 61.082 185.702 61.082 173.363 0 313.907-141.005 313.907-314.88s-140.544-314.88-313.907-314.88c-169.83 0-308.122 135.322-313.6 304.384v10.496h136.806l-178.893 199.373-184.013-199.373z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["ccw"],"grid":20},"attrs":[],"properties":{"id":124,"order":125,"prevSize":20,"code":59771,"name":"ccw"},"setIdx":0,"setId":1,"iconIdx":123},{"icon":{"paths":["M296.96 624.64v-317.44h-194.56c-56.32 0-102.4 46.080-102.4 102.4v307.2c0 56.32 46.080 102.4 102.4 102.4h51.2v153.6l153.6-153.6h256c56.32 0 102.4-46.080 102.4-102.4v-93.184c-3.277 0.717-6.758 1.075-10.24 1.075l-358.4-0.051zM921.6 51.2h-460.8c-56.32 0-102.4 46.080-102.4 102.4v409.6h358.4l153.6 153.6v-153.6h51.2c56.32 0 102.4-46.029 102.4-102.4v-307.2c0-56.32-46.080-102.4-102.4-102.4z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["chat"],"grid":20},"attrs":[],"properties":{"id":125,"order":126,"prevSize":20,"code":59772,"name":"chat"},"setIdx":0,"setId":1,"iconIdx":124},{"icon":{"paths":["M424.653 870.298c-22.272 0-43.366-10.394-56.883-28.314l-182.938-241.715c-23.808-31.386-17.613-76.083 13.824-99.891 31.488-23.91 76.186-17.613 99.994 13.824l120.371 158.925 302.643-485.99c20.838-33.382 64.87-43.622 98.355-22.784 33.434 20.787 43.725 64.819 22.835 98.304l-357.581 573.952c-12.39 20.019-33.843 32.512-57.344 33.587-1.126 0.102-2.15 0.102-3.277 0.102z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["check"],"grid":20},"attrs":[],"properties":{"id":126,"order":127,"prevSize":20,"code":59773,"name":"check"},"setIdx":0,"setId":1,"iconIdx":125},{"icon":{"paths":["M512 81.92c-237.517 0-430.080 192.563-430.080 430.080s192.563 430.080 430.080 430.080 430.080-192.563 430.080-430.080c0-237.517-192.563-430.080-430.080-430.080zM757.197 668.723l-88.525 88.525-156.672-156.723-156.723 156.672-88.525-88.525 156.774-156.672-156.723-156.723 88.525-88.474 156.672 156.672 156.723-156.723 88.525 88.525-156.774 156.723 156.723 156.723z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["circle-with-cross"],"grid":20},"attrs":[],"properties":{"id":127,"order":128,"prevSize":20,"code":59774,"name":"circle-with-cross"},"setIdx":0,"setId":1,"iconIdx":126},{"icon":{"paths":["M512 81.92c-237.517 0-430.080 192.563-430.080 430.080s192.563 430.080 430.080 430.080 430.080-192.563 430.080-430.080c0-237.517-192.563-430.080-430.080-430.080zM768 563.2h-512v-102.4h512v102.4z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["circle-with-minus"],"grid":20},"attrs":[],"properties":{"id":128,"order":129,"prevSize":20,"code":59775,"name":"circle-with-minus"},"setIdx":0,"setId":1,"iconIdx":127},{"icon":{"paths":["M512 81.92c-237.517 0-430.080 192.563-430.080 430.080s192.563 430.080 430.080 430.080 430.080-192.563 430.080-430.080c0-237.517-192.563-430.080-430.080-430.080zM768 563.2h-204.8v204.8h-102.4v-204.8h-204.8v-102.4h204.8v-204.8h102.4v204.8h204.8v102.4z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["circle-with-plus"],"grid":20},"attrs":[],"properties":{"id":129,"order":130,"prevSize":20,"code":59776,"name":"circle-with-plus"},"setIdx":0,"setId":1,"iconIdx":128},{"icon":{"paths":["M512 20.48c-271.462 0-491.52 220.058-491.52 491.52s220.058 491.52 491.52 491.52c271.411 0 491.52-220.058 491.52-491.571 0-271.411-220.109-491.469-491.52-491.469zM512 901.069c-214.886 0-389.12-174.182-389.12-389.12s174.182-389.069 389.12-389.069c214.886 0 389.171 174.182 389.171 389.12s-174.285 389.069-389.171 389.069z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["circle"],"grid":20},"attrs":[],"properties":{"id":130,"order":131,"prevSize":20,"code":59777,"name":"circle"},"setIdx":0,"setId":1,"iconIdx":129},{"icon":{"paths":["M900.301 479.846h102.4c-3.328-53.709-15.002-105.114-34.202-152.781l-89.907 51.917c11.469 31.898 18.995 65.69 21.709 100.864zM721.971 66.304c-48.896-23.091-101.888-38.758-158.003-44.544v103.475c37.53 4.966 73.37 15.104 106.701 29.952l51.302-88.883zM831.59 287.846l89.139-51.456c-30.259-44.954-68.096-84.224-111.206-116.992l-51.507 89.19c28.109 22.835 52.787 49.562 73.574 79.258zM512.717 899.635c-214.886 0-389.12-174.182-389.12-389.12 0-197.53 147.302-360.243 337.971-385.331v-103.475c-247.45 25.6-440.371 234.65-440.371 488.806 0 271.514 220.058 491.571 491.571 491.571 246.989 0 450.918-182.426 485.683-419.84h-103.475c-33.69 180.582-191.898 317.389-382.259 317.389z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["circular-graph"],"grid":20},"attrs":[],"properties":{"id":131,"order":132,"prevSize":20,"code":59778,"name":"circular-graph"},"setIdx":0,"setId":1,"iconIdx":130},{"icon":{"paths":["M1024 153.6v716.8c0 28.262-22.886 51.2-51.2 51.2h-921.6c-28.314 0-51.2-22.938-51.2-51.2v-716.8c0-28.314 22.886-51.2 51.2-51.2h51.2l153.6 153.6h128l-153.6-153.6h153.6l153.6 153.6h128l-153.6-153.6h153.6l153.6 153.6h128l-153.6-153.6h179.2c28.314 0 51.2 22.938 51.2 51.2z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["clapperboard"],"grid":20},"attrs":[],"properties":{"id":132,"order":133,"prevSize":20,"code":59779,"name":"clapperboard"},"setIdx":0,"setId":1,"iconIdx":131},{"icon":{"paths":["M798.72 102.4l-61.44 153.6h-450.56l-61.44-153.6c-39.475 0-71.68 32.205-71.68 71.68v778.24c0 39.424 32.205 71.68 71.629 71.68h573.44c39.424 0 71.68-32.307 71.68-71.68v-778.24c0.051-39.475-32.256-71.68-71.629-71.68zM696.32 204.8l46.080-102.4h-111.667l-36.813-102.4h-163.84l-36.864 102.4h-111.616l46.029 102.4h368.691z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["clipboard"],"grid":20},"attrs":[],"properties":{"id":133,"order":134,"prevSize":20,"code":59780,"name":"clipboard1"},"setIdx":0,"setId":1,"iconIdx":132},{"icon":{"paths":["M512 20.48c-271.514 0-491.571 220.058-491.571 491.52 0 271.514 220.058 491.571 491.571 491.571 271.411 0 491.52-220.058 491.52-491.571 0-271.462-220.109-491.52-491.52-491.52zM511.949 901.12c-214.886 0-389.12-174.182-389.12-389.12 0-214.886 174.182-389.12 389.12-389.12 214.886 0 389.171 174.182 389.171 389.12 0 214.886-174.285 389.12-389.171 389.12zM563.2 477.696v-272.896h-102.4v319.744l-181.555 104.858 51.2 88.678 210.688-121.702c12.186-7.014 22.067-24.218 22.067-38.298v-8.602l217.088-213.299c-10.138-13.875-21.043-27.085-33.126-39.219l-183.962 180.736z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["clock"],"grid":20},"attrs":[],"properties":{"id":134,"order":135,"prevSize":20,"code":59781,"name":"clock1"},"setIdx":0,"setId":1,"iconIdx":133},{"icon":{"paths":["M292.813 755.2c-12.083 0-24.269-4.25-33.997-12.902l-259.072-230.298 273.459-243.098c21.094-18.688 53.453-16.896 72.243 4.25s16.896 53.504-4.25 72.294l-187.341 166.554 172.954 153.702c21.146 18.79 23.040 51.149 4.25 72.294-10.086 11.418-24.166 17.203-38.246 17.203zM750.797 755.098l273.459-243.098-259.072-230.298c-21.146-18.79-53.504-16.896-72.243 4.25-18.79 21.146-16.896 53.504 4.25 72.294l172.954 153.754-187.341 166.502c-21.146 18.79-23.040 51.149-4.25 72.294 10.086 11.418 24.166 17.203 38.246 17.203 12.083 0 24.269-4.25 33.997-12.902zM511.283 827.648l102.4-614.4c4.659-27.904-14.182-54.272-42.086-58.931-28.006-4.71-54.323 14.182-58.88 42.086l-102.4 614.4c-4.659 27.904 14.182 54.272 42.086 58.931 2.867 0.461 5.632 0.666 8.448 0.666 24.576 0 46.285-17.766 50.432-42.752z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["code"],"grid":20},"attrs":[],"properties":{"id":135,"order":136,"prevSize":20,"code":59782,"name":"code"},"setIdx":0,"setId":1,"iconIdx":134},{"icon":{"paths":["M859.29 512c0-53.709 33.075-96 82.79-125.082-9.011-29.901-20.838-58.624-35.43-85.606-55.757 14.592-100.864-7.219-138.803-45.21-37.939-37.888-49.562-82.995-34.97-138.803-26.982-14.592-55.706-26.522-85.606-35.379-29.082 49.664-81.664 82.688-135.27 82.688-53.658 0-106.189-33.024-135.322-82.688-29.952 8.858-58.573 20.787-85.555 35.379 14.592 55.808 3.021 100.915-35.021 138.803-37.888 37.99-82.995 59.802-138.803 45.21-14.592 26.982-26.47 55.706-35.379 85.606 49.664 29.082 82.688 71.373 82.688 125.082 0 53.606-33.024 106.189-82.688 135.322 8.96 29.901 20.787 58.573 35.379 85.606 55.808-14.592 100.915-3.021 138.803 34.918 37.939 37.99 49.613 83.098 35.021 138.803 26.982 14.592 55.654 26.522 85.606 35.482 29.082-49.818 81.664-82.79 135.322-82.79 53.606 0 106.189 33.024 135.322 82.79 29.901-9.011 58.573-20.89 85.606-35.482-14.592-55.706-3.021-100.813 34.97-138.803 37.939-37.888 83.046-59.699 138.803-45.21 14.592-26.982 26.47-55.603 35.43-85.606-49.818-29.133-82.893-71.424-82.893-125.030zM512 698.982c-103.322 0-187.034-83.712-187.034-186.982 0-103.322 83.763-187.085 187.034-187.085 103.322 0 186.982 83.814 186.982 187.085-0 103.322-83.661 186.982-186.982 186.982z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["cog"],"grid":20},"attrs":[],"properties":{"id":136,"order":137,"prevSize":20,"code":59783,"name":"cog1"},"setIdx":0,"setId":1,"iconIdx":135},{"icon":{"paths":["M162.765 307.098c-21.658-17.92-54.118-14.848-72.090 6.758l-65.382 78.797c-17.92 21.658-14.899 54.17 6.707 72.038l403.866 334.95-194.918-427.725-78.182-64.819zM359.066 137.37l-93.184 42.445c-25.549 11.674-36.966 42.24-25.344 67.789l217.6 477.44 10.906-469.965-42.086-92.365c-11.776-25.6-42.291-37.018-67.891-25.344zM727.603 147.814c0.666-28.16-21.862-51.712-49.971-52.378l-102.4-2.355c-28.109-0.666-51.661 21.862-52.326 49.971l-12.237 524.442 214.528-418.15 2.406-101.53zM982.579 196.454l-91.085-46.746c-25.037-12.8-56.115-2.816-68.966 22.221l-327.219 637.747c-12.851 25.037-2.867 56.115 22.221 68.966l91.085 46.746c25.037 12.851 56.064 2.867 68.915-22.17l327.219-637.747c12.851-25.139 2.867-56.166-22.17-69.018zM655.309 834.202c-12.902 25.19-43.776 35.123-68.915 22.221-25.19-12.902-35.072-43.725-22.17-68.915s43.725-35.072 68.915-22.17c25.19 12.851 35.072 43.725 22.17 68.864z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["colours"],"grid":20},"attrs":[],"properties":{"id":137,"order":138,"prevSize":20,"code":59784,"name":"colours"},"setIdx":0,"setId":1,"iconIdx":136},{"icon":{"paths":["M279.245 744.858c0 0 233.882-32.102 333.722-131.891s131.891-333.722 131.891-333.722-233.933 32.102-333.722 131.891-131.891 333.722-131.891 333.722zM461.67 461.568c41.882-41.882 122.112-71.68 190.925-90.214-18.483 68.71-48.384 149.504-90.112 191.078-27.802 27.904-73.011 27.904-100.813 0-27.904-27.802-27.904-72.96 0-100.864zM512.051 20.48c-271.514 0-491.571 220.058-491.571 491.52 0 271.514 220.058 491.571 491.571 491.571 271.411 0 491.52-220.058 491.52-491.571 0-271.462-220.109-491.52-491.52-491.52zM512 901.12c-214.886 0-389.12-174.182-389.12-389.12 0-214.886 174.182-389.12 389.12-389.12 214.886 0 389.171 174.182 389.171 389.12 0 214.886-174.285 389.12-389.171 389.12z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["compass"],"grid":20},"attrs":[],"properties":{"id":138,"order":139,"prevSize":20,"code":59785,"name":"compass1"},"setIdx":0,"setId":1,"iconIdx":137},{"icon":{"paths":["M563.2 0h-409.6c-28.314 0-51.2 22.886-51.2 51.2v614.4c0 28.262 22.886 51.2 51.2 51.2h256v102.4h102.4v-102.4h-102.349v-102.4h102.349v-102.4h-102.4v102.4h-204.8v-512h307.2v204.8h102.4v-256c0-28.262-22.886-51.2-51.2-51.2zM409.6 358.4v51.2h102.4v-102.4h-51.2c-28.314 0-51.2 22.886-51.2 51.2zM614.4 1024h102.4v-102.4h-102.4v102.4zM614.4 409.6h102.4v-102.4h-102.4v102.4zM409.6 972.8c0 28.262 22.886 51.2 51.2 51.2h51.2v-102.4h-102.4v51.2zM870.4 307.2h-51.2v102.4h102.4v-51.2c0-28.262-22.886-51.2-51.2-51.2zM819.2 1024h51.2c28.314 0 51.2-22.938 51.2-51.2v-51.2h-102.4v102.4zM819.2 614.4h102.4v-102.4h-102.4v102.4zM819.2 819.2h102.4v-102.4h-102.4v102.4z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["copy"],"grid":20},"attrs":[],"properties":{"id":139,"order":140,"prevSize":20,"code":59786,"name":"copy1"},"setIdx":0,"setId":1,"iconIdx":138},{"icon":{"paths":["M921.6 153.6h-819.2c-56.371 0-102.4 46.080-102.4 102.4v512c0 56.32 46.029 102.4 102.4 102.4h819.2c56.32 0 102.4-46.080 102.4-102.4v-512c0-56.32-46.080-102.4-102.4-102.4zM921.6 768h-819.2v-307.2h819.2v307.2zM921.6 307.2h-819.2v-51.2h819.2v51.2zM204.8 568.32v30.72h30.72v-30.72h-30.72zM389.12 629.709v30.771h61.44v-30.771h30.72v-30.72h30.72v-30.72h-61.44v30.72h-30.771v30.72h-30.669zM512 660.48v-30.771h-30.771v30.771h30.771zM358.4 660.48v-30.771h-61.44v30.771h61.44zM389.12 598.989h30.72v-30.72h-61.44v61.389h30.72v-30.669zM266.189 629.709h30.771v-30.72h30.72v-30.72h-61.44v30.72h-30.72v30.72h-30.72v30.771h61.389v-30.771z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["credit-card"],"grid":20},"attrs":[],"properties":{"id":140,"order":141,"prevSize":20,"code":59787,"name":"credit-card1"},"setIdx":0,"setId":1,"iconIdx":139},{"icon":{"paths":["M563.2 857.856v114.944h-102.4v-109.722c-87.654-5.12-156.979-30.157-217.139-92.006l87.962-89.088c43.981 44.544 103.578 59.392 168.038 59.392 80.128 0 123.136-30.669 123.136-87.142 0-24.73-6.81-45.517-21.504-59.392-13.67-12.851-29.286-19.814-61.542-24.73l-84.070-11.878c-59.597-8.909-103.526-27.699-134.861-58.419-33.178-33.638-49.818-79.155-49.818-138.598 0-110.336 70.758-191.642 189.798-209.92v-100.096h102.4v98.918c70.758 7.424 126.208 31.744 174.848 79.411l-85.965 86.118c-43.981-42.598-96.717-48.486-142.694-48.486-72.294 0-107.469 40.55-107.469 89.088 0 17.818 5.888 36.659 20.531 50.483 13.67 12.902 36.147 23.757 64.512 27.699l82.022 11.878c63.539 8.909 103.578 26.726 132.915 54.426 37.171 35.635 53.76 87.142 53.76 149.504 0 115.2-80.23 187.494-192.461 207.616z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["credit"],"grid":20},"attrs":[],"properties":{"id":141,"order":142,"prevSize":20,"code":59788,"name":"credit"},"setIdx":0,"setId":1,"iconIdx":140},{"icon":{"paths":["M734.618 760.269c-24.013 24.013-62.925 24.013-86.886 0l-135.731-155.136-135.731 155.085c-24.013 24.013-62.925 24.013-86.886 0-24.013-24.013-24.013-62.925 0-86.886l141.21-161.28-141.261-161.382c-24.013-24.013-24.013-62.874 0-86.886s62.874-24.013 86.886 0l135.782 155.187 135.731-155.187c24.013-24.013 62.874-24.013 86.886 0s24.013 62.925 0 86.886l-141.21 161.382 141.21 161.28c24.013 24.013 24.013 62.925 0 86.938z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["cross"],"grid":20},"attrs":[],"properties":{"id":142,"order":143,"prevSize":20,"code":59789,"name":"cross1"},"setIdx":0,"setId":1,"iconIdx":141},{"icon":{"paths":["M512 51.2c-219.085 0-355.328 72.192-347.904 130.816l73.83 689.51c2.97 23.552 113.715 101.171 274.074 101.274 160.307-0.102 271.104-77.722 273.971-101.325l73.83-689.51c7.424-58.573-128.717-130.765-347.802-130.765zM512 270.899c-160.358-0.102-274.074-57.19-274.074-78.592-0.051-21.197 113.766-78.387 274.074-78.285 160.307-0.102 274.125 57.088 273.971 78.285 0 21.402-113.664 78.49-273.971 78.592z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["cup"],"grid":20},"attrs":[],"properties":{"id":143,"order":144,"prevSize":20,"code":59790,"name":"cup"},"setIdx":0,"setId":1,"iconIdx":142},{"icon":{"paths":["M988.928 512h-121.446v-10.496c-5.53-227.021-190.669-409.395-418.253-409.395-231.168 0-418.509 188.006-418.509 419.891s187.341 419.789 418.509 419.789c97.178 0 186.624-33.28 257.69-88.986l-71.987-77.005c-52.019 38.298-116.224 61.082-185.702 61.082-173.363 0-313.907-141.005-313.907-314.88s140.544-314.88 313.907-314.88c169.83 0 308.122 135.322 313.6 304.384v10.496h-136.806l178.893 199.373 184.013-199.373z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["cw"],"grid":20},"attrs":[],"properties":{"id":144,"order":145,"prevSize":20,"code":59791,"name":"cw"},"setIdx":0,"setId":1,"iconIdx":143},{"icon":{"paths":["M282.419 728.269c-115.814-124.518-113.766-319.693 6.554-440.883 49.254-49.613 110.797-79.206 174.797-88.883l-3.533-106.342c-89.856 10.906-176.742 50.995-245.606 120.371-161.229 162.304-163.174 424.397-6.298 590.387l-89.139 89.702 282.112 15.411-0.768-298.701-118.118 118.938zM622.746 115.968l0.768 298.701 118.118-118.886c115.814 124.621 113.766 319.795-6.554 440.883-49.203 49.613-110.797 79.206-174.797 88.883l3.533 106.291c89.856-10.906 176.742-50.995 245.658-120.32 161.178-162.406 163.123-424.499 6.246-590.387l89.139-89.805-282.112-15.36z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["cycle"],"grid":20},"attrs":[],"properties":{"id":145,"order":146,"prevSize":20,"code":59792,"name":"cycle"},"setIdx":0,"setId":1,"iconIdx":144},{"icon":{"paths":["M856.371 647.219c-43.162 69.786-180.992 120.883-344.371 120.883s-301.21-51.098-344.422-120.883c-9.114-14.848-13.978-6.912-13.978 0.358 0 7.373 0 102.502 0 102.502 0 99.328 160.461 202.24 358.4 202.24s358.4-102.912 358.4-202.189c0 0 0-95.13 0-102.502 0-7.322-4.915-15.258-14.029-0.41zM856.934 385.28c-42.496 61.696-180.838 107.008-344.934 107.008s-302.49-45.312-344.986-107.008c-8.755-12.698-13.414-5.786-13.414-0.102 0 5.786 0 120.678 0 120.678 0 90.214 160.461 163.277 358.4 163.277s358.4-73.114 358.4-163.277c0 0 0-114.893 0-120.678 0-5.683-4.71-12.595-13.466 0.102zM512 51.2c-197.939 0-358.4 60.416-358.4 134.81v64.512c0 78.899 160.461 142.899 358.4 142.899s358.4-64 358.4-142.899v-64.512c0-74.394-160.461-134.81-358.4-134.81z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["database"],"grid":20},"attrs":[],"properties":{"id":146,"order":147,"prevSize":20,"code":59793,"name":"database1"},"setIdx":0,"setId":1,"iconIdx":145},{"icon":{"paths":["M307.2 0h-102.4c-28.262 0-51.2 22.938-51.2 51.2v102.4c0 28.262 22.938 51.2 51.2 51.2h102.4c28.262 0 51.2-22.938 51.2-51.2v-102.4c0-28.262-22.938-51.2-51.2-51.2zM563.2 0h-102.4c-28.262 0-51.2 22.938-51.2 51.2v102.4c0 28.262 22.938 51.2 51.2 51.2h102.4c28.262 0 51.2-22.938 51.2-51.2v-102.4c0-28.262-22.938-51.2-51.2-51.2zM819.2 0h-102.4c-28.262 0-51.2 22.938-51.2 51.2v102.4c0 28.262 22.938 51.2 51.2 51.2h102.4c28.262 0 51.2-22.938 51.2-51.2v-102.4c0-28.262-22.938-51.2-51.2-51.2zM307.2 256h-102.4c-28.262 0-51.2 22.938-51.2 51.2v102.4c0 28.262 22.938 51.2 51.2 51.2h102.4c28.262 0 51.2-22.938 51.2-51.2v-102.4c0-28.262-22.938-51.2-51.2-51.2zM563.2 256h-102.4c-28.262 0-51.2 22.938-51.2 51.2v102.4c0 28.262 22.938 51.2 51.2 51.2h102.4c28.262 0 51.2-22.938 51.2-51.2v-102.4c0-28.262-22.938-51.2-51.2-51.2zM819.2 256h-102.4c-28.262 0-51.2 22.938-51.2 51.2v102.4c0 28.262 22.938 51.2 51.2 51.2h102.4c28.262 0 51.2-22.938 51.2-51.2v-102.4c0-28.262-22.938-51.2-51.2-51.2zM307.2 512h-102.4c-28.262 0-51.2 22.938-51.2 51.2v102.4c0 28.262 22.938 51.2 51.2 51.2h102.4c28.262 0 51.2-22.938 51.2-51.2v-102.4c0-28.262-22.938-51.2-51.2-51.2zM563.2 512h-102.4c-28.262 0-51.2 22.938-51.2 51.2v102.4c0 28.262 22.938 51.2 51.2 51.2h102.4c28.262 0 51.2-22.938 51.2-51.2v-102.4c0-28.262-22.938-51.2-51.2-51.2zM563.2 819.2h-102.4c-28.262 0-51.2 22.938-51.2 51.2v102.4c0 28.262 22.938 51.2 51.2 51.2h102.4c28.262 0 51.2-22.938 51.2-51.2v-102.4c0-28.262-22.938-51.2-51.2-51.2zM819.2 512h-102.4c-28.262 0-51.2 22.938-51.2 51.2v102.4c0 28.262 22.938 51.2 51.2 51.2h102.4c28.262 0 51.2-22.938 51.2-51.2v-102.4c0-28.262-22.938-51.2-51.2-51.2z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["dial-pad"],"grid":20},"attrs":[],"properties":{"id":147,"order":148,"prevSize":20,"code":59794,"name":"dial-pad"},"setIdx":0,"setId":1,"iconIdx":146},{"icon":{"paths":["M924.672 99.379c-30.003-30.003-58.573-1.69-155.699 45.005-259.84 124.877-712.653 378.675-712.653 378.675l389.069 55.501 55.552 389.069c0 0 253.85-452.762 378.675-712.499 46.694-97.178 75.008-125.747 45.056-155.75zM831.283 199.475l-282.573 524.646-28.723-238.336 311.296-286.31z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["direction"],"grid":20},"attrs":[],"properties":{"id":148,"order":149,"prevSize":20,"code":59795,"name":"direction"},"setIdx":0,"setId":1,"iconIdx":147},{"icon":{"paths":["M819.2 51.2h-614.4c-28.314 0-51.2 22.886-51.2 51.2v819.2c0 28.262 22.886 51.2 51.2 51.2h614.4c28.314 0 51.2-22.938 51.2-51.2v-819.2c0-28.262-22.886-51.2-51.2-51.2zM768 870.4h-512v-716.8h512v716.8z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["document"],"grid":20},"attrs":[],"properties":{"id":149,"order":150,"prevSize":20,"code":59796,"name":"document"},"setIdx":0,"setId":1,"iconIdx":148},{"icon":{"paths":["M993.178 379.648l-381.133-102.195-66.714-248.883c-5.581-20.787-27.904-32.87-49.818-27.085l-464.691 124.518c-21.914 5.837-35.123 27.546-29.542 48.333l165.376 617.011c5.581 20.787 27.853 32.922 49.715 26.982l184.986-49.51-25.19 94.106c-5.581 20.787 7.629 42.496 29.542 48.282l415.232 111.309c21.914 5.888 44.134-6.195 49.766-27.085l152.064-567.501c5.53-20.787-7.68-42.496-29.594-48.282zM83.61 185.907l400.896-107.315 148.378 553.882-400.896 107.315-148.378-553.882zM802.714 945.306l-348.877-95.386 27.443-102.502 199.731-53.606c21.914-5.786 35.226-27.494 29.594-48.282l-77.21-288.102 304.486 83.507-135.168 504.371z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["documents"],"grid":20},"attrs":[],"properties":{"id":150,"order":151,"prevSize":20,"code":59797,"name":"documents"},"setIdx":0,"setId":1,"iconIdx":149},{"icon":{"paths":["M897.946 135.117c20.173-27.904 23.654-83.917 23.654-83.917h-819.2c0 0 3.482 56.013 23.654 83.917l334.746 428.083v307.2h-102.4c-102.4 0-102.4 102.4-102.4 102.4h512c0 0 0-102.4-102.4-102.4h-102.4v-307.2l334.746-428.083zM481.28 307.2c0-45.312 36.659-81.92 81.92-81.92s81.92 36.608 81.92 81.92c0 45.21-36.659 81.92-81.92 81.92s-81.92-36.71-81.92-81.92z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["drink"],"grid":20},"attrs":[],"properties":{"id":151,"order":152,"prevSize":20,"code":59798,"name":"drink"},"setIdx":0,"setId":1,"iconIdx":150},{"icon":{"paths":["M975.821 557.978l-162.355-405.862c-11.981-30.054-41.062-49.715-73.421-49.715h-456.090c-32.358 0-61.44 19.661-73.421 49.715l-162.355 405.862c-14.746 36.915-19.098 77.158-12.595 116.326l30.208 181.197c6.349 38.144 39.322 66.099 77.978 66.099h736.41c38.656 0 71.629-27.955 77.978-66.099l30.208-181.197c6.605-39.168 2.253-79.411-12.544-116.326zM868.301 780.544c-3.686 22.323-22.989 38.656-45.619 38.656h-621.363c-22.63 0-41.933-16.333-45.619-38.656l-18.688-112.282c-4.762-28.211 16.998-53.862 45.619-53.862h658.79c28.57 0 50.33 25.651 45.619 53.862l-18.739 112.282z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["drive"],"grid":20},"attrs":[],"properties":{"id":152,"order":153,"prevSize":20,"code":59799,"name":"drive1"},"setIdx":0,"setId":1,"iconIdx":151},{"icon":{"paths":["M522.394 28.723c-1.382-11.008-19.456-11.008-20.787 0-45.21 363.878-276.378 438.886-276.378 691.814 0 156.314 131.277 282.982 286.771 282.982 155.443 0 286.72-126.72 286.72-282.982 0-252.928-231.117-327.936-276.326-691.814zM478.72 431.002c-3.021 11.213-6.298 22.733-9.677 34.714-20.531 72.909-43.827 155.597-43.827 251.187 0 51.814-30.618 70.195-59.187 70.195-32.717 0-59.187-26.778-59.187-59.699 0-112.998 54.374-186.829 102.4-251.904 15.104-20.378 29.286-39.68 40.806-58.88 5.274-8.806 19.456-8.397 25.907 0.307 3.021 4.096 4.045 9.318 2.765 14.080z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["drop"],"grid":20},"attrs":[],"properties":{"id":153,"order":154,"prevSize":20,"code":59800,"name":"drop"},"setIdx":0,"setId":1,"iconIdx":152},{"icon":{"paths":["M899.123 124.877c-73.83-73.882-129.28-62.822-129.28-62.822l-656.691 656.64-51.712 243.814 243.866-51.712 656.691-656.538c-0.051 0 11.059-55.45-62.874-129.382zM290.816 881.51l-83.149 17.92c-7.987-15.002-17.664-30.003-35.328-47.718-17.715-17.715-32.717-27.29-47.718-35.379l17.92-83.098 24.064-24.013c0 0 45.21 0.922 96.307 52.019 51.046 50.995 52.019 96.307 52.019 96.307l-24.115 23.962z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["edit"],"grid":20},"attrs":[],"properties":{"id":154,"order":155,"prevSize":20,"code":59801,"name":"edit"},"setIdx":0,"setId":1,"iconIdx":153},{"icon":{"paths":["M747.93 623.206c0 43.008 12.237 60.16 44.237 60.16 71.322 0 116.736-90.88 116.736-242.022 0-231.014-168.346-341.606-378.522-341.606-216.218 0-412.877 144.998-412.877 419.021 0 261.734 172.032 404.275 436.224 404.275 89.702 0 149.914-9.83 242.022-40.55l19.763 82.278c-90.931 29.542-188.109 38.093-263.014 38.093-346.522 0-532.122-190.464-532.122-484.147 0-296.141 215.091-497.664 511.232-497.664 308.429 0 471.808 184.32 471.808 410.419 0 191.693-60.16 337.92-249.395 337.92-86.067 0-142.541-34.406-149.914-110.643-22.118 84.787-81.101 110.643-161.024 110.643-106.906 0-196.608-82.381-196.608-248.218 0-167.117 78.694-270.336 220.006-270.336 74.957 0 121.651 29.491 142.438 76.186l35.686-65.126h103.219v361.318h0.102zM596.838 461.005c0-67.533-50.432-95.846-92.211-95.846-45.466 0-95.795 36.813-95.795 144.998 0 86.016 38.093 133.939 95.795 133.939 40.55 0 92.211-25.805 92.211-97.075v-86.016z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["email"],"grid":20},"attrs":[],"properties":{"id":155,"order":156,"prevSize":20,"code":59802,"name":"email"},"setIdx":0,"setId":1,"iconIdx":154},{"icon":{"paths":["M512 20.48c-271.462 0-491.52 220.058-491.52 491.52s220.058 491.52 491.52 491.52c271.411 0 491.52-220.058 491.52-491.571 0-271.411-220.109-491.469-491.52-491.469zM512 901.069c-214.886 0-389.12-174.182-389.12-389.12s174.182-389.069 389.12-389.069c214.886 0 389.171 174.182 389.171 389.12s-174.285 389.069-389.171 389.069zM384.051 499.2c42.394 0 76.749-40.090 76.749-89.6s-34.406-89.6-76.8-89.6-76.8 40.090-76.8 89.6 34.406 89.6 76.851 89.6zM640 499.2c42.445 0 76.8-40.090 76.8-89.6s-34.406-89.6-76.8-89.6-76.8 40.141-76.8 89.6 34.406 89.6 76.8 89.6zM734.259 580.403c-18.586-9.523-41.728-2.202-51.61 16.384-1.741 3.379-44.493 81.562-170.598 81.562-125.491 0-168.499-77.466-170.65-81.51-9.626-18.688-32.358-26.317-51.405-16.845-18.944 9.523-26.624 32.563-17.152 51.558 2.56 5.069 63.898 123.597 239.206 123.597 175.36 0 236.595-118.579 239.104-123.648 9.421-18.79 1.843-41.472-16.896-51.098z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["emoji-happy"],"grid":20},"attrs":[],"properties":{"id":156,"order":157,"prevSize":20,"code":59803,"name":"emoji-happy"},"setIdx":0,"setId":1,"iconIdx":155},{"icon":{"paths":["M512 20.48c-271.462 0-491.52 220.058-491.52 491.52s220.058 491.52 491.52 491.52c271.411 0 491.52-220.058 491.52-491.571 0-271.411-220.109-491.469-491.52-491.469zM512 901.069c-214.886 0-389.12-174.182-389.12-389.12 0-214.886 174.182-389.12 389.12-389.12 214.886 0 389.12 174.182 389.12 389.12s-174.234 389.12-389.12 389.12zM640 320.051c-42.394 0-76.8 40.090-76.8 89.549s34.406 89.6 76.8 89.6c42.445 0 76.8-40.090 76.8-89.6s-34.355-89.549-76.8-89.549zM384.051 499.2c42.394 0 76.749-40.090 76.749-89.6s-34.406-89.6-76.8-89.6c-42.394 0-76.8 40.090-76.8 89.6s34.406 89.6 76.851 89.6zM665.6 627.2h-307.2c-21.197 0-38.4 17.203-38.4 38.4s17.203 38.4 38.4 38.4h307.2c21.197 0 38.4-17.203 38.4-38.4 0-21.248-17.152-38.4-38.4-38.4z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["emoji-neutral"],"grid":20},"attrs":[],"properties":{"id":157,"order":158,"prevSize":20,"code":59804,"name":"emoji-neutral"},"setIdx":0,"setId":1,"iconIdx":156},{"icon":{"paths":["M512.051 20.48c-271.514 0-491.571 220.058-491.571 491.52 0 271.514 220.058 491.571 491.571 491.571 271.411 0 491.52-220.058 491.52-491.571-0.051-271.462-220.16-491.52-491.52-491.52zM512 901.069c-214.886 0-389.12-174.182-389.12-389.12 0-214.886 174.182-389.12 389.12-389.12 214.886 0 389.12 174.182 389.12 389.12s-174.234 389.12-389.12 389.12zM640.051 499.2c42.394 0 76.8-40.090 76.8-89.6s-34.406-89.6-76.8-89.6c-42.394 0-76.8 40.090-76.8 89.6s34.355 89.6 76.8 89.6zM384.051 499.2c42.394 0 76.8-40.090 76.8-89.6s-34.406-89.6-76.8-89.6c-42.394 0-76.8 40.090-76.8 89.6s34.355 89.6 76.8 89.6zM512.102 576c-175.309 0-236.646 118.528-239.206 123.597-9.523 18.995-1.792 42.035 17.152 51.558 5.53 2.714 11.366 4.045 17.152 4.045 14.080 0 27.648-7.731 34.406-21.197 0.41-0.87 42.086-81.203 170.496-81.203 126.106 0 168.858 78.182 170.394 81.152 9.421 18.944 32.512 26.778 51.507 17.203 18.995-9.421 26.675-32.563 17.203-51.507-2.509-5.069-63.795-123.648-239.104-123.648z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["emoji-sad"],"grid":20},"attrs":[],"properties":{"id":158,"order":159,"prevSize":20,"code":59805,"name":"emoji-sad"},"setIdx":0,"setId":1,"iconIdx":157},{"icon":{"paths":["M921.6 153.6h-489.165c-22.528 0-54.835 12.083-71.782 26.88l-347.955 304.538c-16.947 14.797-16.947 39.117 0 53.914l347.955 304.486c16.947 14.797 49.254 26.982 71.782 26.982h489.165c56.32 0 102.4-46.080 102.4-102.4v-512c0-56.32-46.080-102.4-102.4-102.4zM777.779 716.8l-130.918-130.918-130.867 130.918-73.882-73.882 130.867-130.918-130.867-130.918 73.882-73.882 130.918 130.816 130.816-130.816 73.933 73.882-130.867 130.918 130.918 130.816-73.933 73.984z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["erase"],"grid":20},"attrs":[],"properties":{"id":159,"order":160,"prevSize":20,"code":59806,"name":"erase"},"setIdx":0,"setId":1,"iconIdx":158},{"icon":{"paths":["M870.298 214.016l-161.485-124.16c-44.646-34.355-109.312-25.907-143.718 18.688l-430.080 557.926c-34.355 44.595-25.958 109.158 18.688 143.514l161.434 124.16c44.646 34.355 109.312 25.907 143.718-18.688l430.131-557.926c34.355-44.595 25.958-109.158-18.688-143.514zM437.658 843.11l-27.494 34.867c-7.782 10.086-19.712 15.872-32.717 15.872-6.349 0-15.821-1.485-24.832-8.397l-161.434-124.16c-8.602-6.605-14.080-16.23-15.514-27.136s1.434-21.606 8.038-30.157l27.494-34.867c7.782-10.086 19.712-15.923 32.768-15.923 6.349 0 15.821 1.485 24.832 8.397l161.485 124.16c8.602 6.605 14.080 16.23 15.514 27.136 1.331 10.906-1.536 21.606-8.141 30.208z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["eraser"],"grid":20},"attrs":[],"properties":{"id":160,"order":161,"prevSize":20,"code":59807,"name":"eraser"},"setIdx":0,"setId":1,"iconIdx":159},{"icon":{"paths":["M768 768h-665.6v-460.8h132.864c0 0 35.277-45.875 111.104-102.4h-295.168c-28.314 0-51.2 22.989-51.2 51.2v563.2c0 28.314 22.886 51.2 51.2 51.2h768c28.314 0 51.2-22.886 51.2-51.2v-191.795l-102.4 84.224v56.371zM684.083 412.16v181.811l339.917-266.291-339.917-255.949v160.307c-412.723 0-412.723 407.962-412.723 407.962 116.838-191.898 188.723-227.84 412.723-227.84z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["export"],"grid":20},"attrs":[],"properties":{"id":161,"order":162,"prevSize":20,"code":59808,"name":"export"},"setIdx":0,"setId":1,"iconIdx":160},{"icon":{"paths":["M512 225.28c-335.923 0-512 247.398-512 286.72 0 39.219 176.077 286.72 512 286.72 335.872 0 512-247.501 512-286.72 0-39.322-176.128-286.72-512-286.72zM512 732.518c-125.696 0-227.584-98.714-227.584-220.518s101.888-220.621 227.584-220.621c125.696 0 227.533 98.816 227.533 220.621s-101.837 220.518-227.533 220.518zM512 512c-20.838-22.886 33.946-110.285 0-110.285-62.874 0-113.818 49.408-113.818 110.285s50.944 110.285 113.818 110.285c62.822 0 113.818-49.408 113.818-110.285 0-28.006-96.102 19.405-113.818 0z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["eye"],"grid":20},"attrs":[],"properties":{"id":162,"order":163,"prevSize":20,"code":59809,"name":"eye1"},"setIdx":0,"setId":1,"iconIdx":161},{"icon":{"paths":["M217.805 1001.83c15.718-50.278 39.424-121.037 71.219-223.334 138.598-21.965 195.942 17.459 283.955-139.725-71.424 21.862-157.542-40.55-152.934-67.635 4.659-27.034 200.346 19.507 328.499-162.458-161.536 35.635-213.197-42.803-192.358-54.63 48.077-27.341 190.771-11.366 266.854-85.453 39.219-38.144 57.6-130.867 41.626-163.942-19.149-39.987-135.987-99.635-200.397-94.003-64.41 5.581-165.427 245.248-195.43 243.405-29.901-1.894-35.994-107.418 16.333-205.466-55.142 24.422-156.211 100.301-187.904 165.171-59.034 120.678 5.53 397.619-15.155 407.45-20.736 9.882-90.419-127.027-111.206-189.133-28.416 95.181-29.082 190.515 53.914 317.133-31.283 83.098-48.384 178.739-50.995 227.379-1.229 38.861 37.069 47.206 43.981 25.242z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["feather"],"grid":20},"attrs":[],"properties":{"id":163,"order":164,"prevSize":20,"code":59810,"name":"feather"},"setIdx":0,"setId":1,"iconIdx":162},{"icon":{"paths":["M969.011 285.901c-478.157 694.682-314.47-13.312-718.694 325.478l91.904 361.421h-103.373l-187.648-737.792 94.72-33.997c453.069-331.315 216.474 297.984 800.614 64.205 18.637-7.526 33.536 4.608 22.477 20.685z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["flag"],"grid":20},"attrs":[],"properties":{"id":164,"order":165,"prevSize":20,"code":59811,"name":"flag1"},"setIdx":0,"setId":1,"iconIdx":163},{"icon":{"paths":["M348.314 972.698c-9.933-6.502 161.434-366.592 155.546-382.413-5.939-15.821-187.648-73.523-196.506-101.325-8.909-27.802 358.758-445.798 368.435-437.709 9.626 8.090-160.205 370.586-155.597 382.413 4.659 11.776 190.874 71.885 196.506 101.325 5.683 29.44-358.502 444.211-368.384 437.709z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["flash"],"grid":20},"attrs":[],"properties":{"id":165,"order":166,"prevSize":20,"code":59812,"name":"flash"},"setIdx":0,"setId":1,"iconIdx":164},{"icon":{"paths":["M876.288 147.661c-85.811-85.811-193.485-117.146-227.789-82.842l-138.035 138.035c-20.941 20.992-39.219 91.085-30.822 161.997l-417.843 417.843c-24.781 24.781-4.71 84.992 44.851 134.605s109.875 69.581 134.605 44.902l417.843-417.894c70.963 8.397 141.056-9.882 161.997-30.771l138.035-138.086c34.304-34.304 2.97-142.029-82.842-227.789zM416.819 565.197c-19.098-19.046-12.851-56.115 13.773-82.79 26.675-26.675 63.795-32.922 82.842-13.824 19.046 18.995 12.851 56.166-13.824 82.79-26.675 26.726-63.744 32.922-82.79 13.824zM762.419 261.53c-66.458-66.406-83.098-154.112-77.21-160 5.888-5.939 90.112 14.182 156.621 80.64 66.458 66.458 86.426 150.835 80.64 156.621-5.734 5.734-93.645-10.752-160.051-77.261z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["flashlight"],"grid":20},"attrs":[],"properties":{"id":166,"order":167,"prevSize":20,"code":59813,"name":"flashlight"},"setIdx":0,"setId":1,"iconIdx":165},{"icon":{"paths":["M94.413 762.317c25.498 19.251 81.613-60.314 99.43-46.848s-41.984 90.214-27.034 101.478c14.95 11.264 77.466-63.437 94.822-50.381 17.306 13.056-41.114 90.829-22.374 105.011 18.79 14.182 79.974-61.542 94.822-50.33s-39.578 92.006-22.374 104.96c17.203 13.005 75.827-64.666 90.112-53.862 14.336 10.803-43.213 89.242-17.715 108.493 25.498 19.2 274.944-458.957 274.944-458.957l-198.451-150.477c0 0-391.68 371.712-366.182 390.912zM666.778 42.547l-172.134 263.987 210.995 159.181 225.075-217.395c-26.982-76.954-176.128-196.762-263.936-205.773z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["flat-brush"],"grid":20},"attrs":[],"properties":{"id":167,"order":168,"prevSize":20,"code":59814,"name":"flat-brush"},"setIdx":0,"setId":1,"iconIdx":166},{"icon":{"paths":["M942.336 143.309c-5.734-22.528-33.587-40.909-61.952-40.909h-736.768c-28.416 0-56.269 18.381-61.952 40.909l-10.291 61.491h881.203l-10.24-61.491zM993.894 256h-963.84c-17.51 0-31.181 15.053-29.542 32.512l47.258 597.453c1.946 20.173 18.944 35.635 39.219 35.635h849.971c20.326 0 37.274-15.462 39.219-35.635l47.258-597.453c1.69-17.459-12.032-32.512-29.542-32.512zM636.826 428.8c26.522 0 48.026 21.504 48.026 48.026s-21.504 48.026-48.026 48.026-48.026-21.555-48.026-48.077c0-26.47 21.504-47.974 48.026-47.974zM281.6 716.8l127.283-292.557 144.742 234.291 124.109-61.645 64.666 119.91h-460.8z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["folder-images"],"grid":20},"attrs":[],"properties":{"id":168,"order":169,"prevSize":20,"code":59815,"name":"folder-images"},"setIdx":0,"setId":1,"iconIdx":167},{"icon":{"paths":["M942.336 143.309c-5.734-22.528-33.587-40.909-61.952-40.909h-736.768c-28.416 0-56.269 18.381-61.952 40.909l-10.291 61.491h881.203l-10.24-61.491zM993.894 256h-963.84c-17.51 0-31.181 15.053-29.542 32.512l47.258 597.453c1.946 20.173 18.944 35.635 39.219 35.635h849.971c20.326 0 37.274-15.462 39.219-35.635l47.258-597.453c1.69-17.459-12.032-32.512-29.542-32.512zM611.43 641.075c-6.554 13.568-13.21 14.285-10.342 0 7.475-36.915 2.406-116.173-53.402-124.979v168.653c0 34.509-15.923 64.614-58.163 78.234-41.062 13.107-86.989-0.563-97.69-30.003-10.752-29.491 13.363-65.331 53.862-80.077 22.63-8.243 48.845-10.394 66.509-3.584v-239.718h35.533c-0.051 83.61 144.282 65.28 63.693 231.475z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["folder-music"],"grid":20},"attrs":[],"properties":{"id":169,"order":170,"prevSize":20,"code":59816,"name":"folder-music"},"setIdx":0,"setId":1,"iconIdx":168},{"icon":{"paths":["M942.336 143.309c-5.734-22.528-33.587-40.909-61.952-40.909h-736.768c-28.416 0-56.269 18.381-61.952 40.909l-10.291 61.491h881.203l-10.24-61.491zM993.894 256h-963.84c-17.51 0-31.181 15.053-29.542 32.512l47.258 597.453c1.946 20.173 18.944 35.635 39.219 35.635h849.971c20.326 0 37.274-15.462 39.219-35.635l47.258-597.453c1.69-17.459-12.032-32.512-29.542-32.512zM409.6 716.8v-256l224.41 128-224.41 128z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["folder-video"],"grid":20},"attrs":[],"properties":{"id":170,"order":171,"prevSize":20,"code":59817,"name":"folder-video"},"setIdx":0,"setId":1,"iconIdx":169},{"icon":{"paths":["M942.336 245.709c-5.683-22.528-33.536-40.909-61.952-40.909h-348.877c-28.365 0-68.096-16.282-88.166-36.198l-30.515-30.106c-20.070-19.917-59.75-36.096-88.115-36.096h-166.656c-28.416 0-54.221 22.886-57.344 50.893l-14.95 153.907h866.867l-10.291-61.491zM993.894 358.4h-963.789c-17.51 0-31.232 15.053-29.542 32.512l47.258 495.053c1.894 20.173 18.893 35.635 39.219 35.635h849.92c20.326 0 37.274-15.462 39.219-35.635l47.258-495.053c1.69-17.459-12.032-32.512-29.542-32.512z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["folder"],"grid":20},"attrs":[],"properties":{"id":171,"order":172,"prevSize":20,"code":59818,"name":"folder1"},"setIdx":0,"setId":1,"iconIdx":170},{"icon":{"paths":["M614.4 607.949v223.078l358.4-342.528-358.4-336.486v203.93c-449.28 0-563.2 498.278-563.2 498.278 127.181-224.666 319.334-246.272 563.2-246.272z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["forward"],"grid":20},"attrs":[],"properties":{"id":172,"order":173,"prevSize":20,"code":59819,"name":"forward1"},"setIdx":0,"setId":1,"iconIdx":171},{"icon":{"paths":["M512 51.2c-251.29 0-409.6 77.414-409.6 153.651v102.4c0 47.002 307.2 307.2 307.2 307.2v307.2c-0.051 35.021 51.2 51.2 102.4 51.2s102.451-16.179 102.4-51.2v-307.2c0 0 307.2-260.198 307.2-307.2v-102.4c0-76.237-158.31-153.651-409.6-153.651zM512 313.498c-183.859-0.051-314.266-68.25-314.266-93.747-0.102-25.344 130.458-93.747 314.266-93.645 183.808-0.102 314.368 68.301 314.266 93.594 0 25.549-130.406 93.747-314.266 93.798z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["funnel"],"grid":20},"attrs":[],"properties":{"id":173,"order":174,"prevSize":20,"code":59820,"name":"funnel"},"setIdx":0,"setId":1,"iconIdx":172},{"icon":{"paths":["M995.533 479.283c-45.158-252.211-146.125-326.605-199.834-326.605-83.814 0-105.318 62.31-283.699 64.41-178.381-2.099-199.885-64.41-283.699-64.41-53.709 0-154.726 74.394-199.885 326.605-25.754 143.974-53.709 358.912 12.902 384.717 82.893 32.102 111.002-48.179 202.035-116.019 92.416-68.762 136.755-84.941 268.646-84.941s176.23 16.179 268.646 84.941c91.034 67.789 119.142 148.122 202.035 116.019 66.611-25.805 38.656-240.691 12.851-384.717zM307.2 512c-56.576 0-102.4-45.875-102.4-102.4 0-56.576 45.824-102.4 102.4-102.4s102.4 45.824 102.4 102.4c0 56.525-45.875 102.4-102.4 102.4zM665.6 512c-28.314 0-51.2-22.886-51.2-51.2s22.886-51.2 51.2-51.2c28.314 0 51.2 22.886 51.2 51.2s-22.886 51.2-51.2 51.2zM768 409.6c-28.314 0-51.2-22.886-51.2-51.2s22.886-51.2 51.2-51.2c28.314 0 51.2 22.886 51.2 51.2s-22.886 51.2-51.2 51.2z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["game-controller"],"grid":20},"attrs":[],"properties":{"id":174,"order":175,"prevSize":20,"code":59821,"name":"game-controller"},"setIdx":0,"setId":1,"iconIdx":173},{"icon":{"paths":["M416.102 696.32c-35.277 61.286-11.52 111.616 37.478 139.878 48.947 28.314 104.499 23.808 139.878-37.478 35.277-61.184 258.406-607.488 239.002-618.701s-381.030 455.066-416.358 516.301zM512 307.2c22.426 0 44.237 1.894 65.587 5.581 22.426-28.109 47.514-59.085 71.936-88.474-43.622-12.595-89.702-19.507-137.523-19.507-287.078 0-512 242.125-512 551.219 0 18.995 0.819 37.99 2.509 56.474 2.509 28.211 27.648 48.896 55.501 46.49 28.211-2.611 48.998-27.392 46.49-55.603-1.382-15.462-2.099-31.488-2.099-47.36 0-251.699 179.917-448.819 409.6-448.819zM881.613 371.2c-14.285 38.4-29.389 77.517-42.701 111.309 51.968 75.264 82.688 169.677 82.688 273.51 0 16.179-0.768 32.512-2.202 48.282-2.56 28.211 18.176 53.094 46.336 55.706 1.536 0.102 3.123 0.205 4.71 0.205 26.163 0 48.538-20.019 50.944-46.592 1.69-18.944 2.611-38.298 2.611-57.6 0-151.245-53.914-286.208-142.387-384.819z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["gauge"],"grid":20},"attrs":[],"properties":{"id":175,"order":176,"prevSize":20,"code":59822,"name":"gauge"},"setIdx":0,"setId":1,"iconIdx":174},{"icon":{"paths":["M512 20.48c-271.104 0-491.571 220.518-491.571 491.52s220.467 491.52 491.571 491.52c271.002 0 491.52-220.518 491.52-491.52s-220.518-491.52-491.52-491.52zM931.226 512c0 95.898-32.563 184.32-86.835 254.976-15.36-11.981-31.693-44.39-16.333-77.978 15.514-33.792 19.558-112.026 15.974-142.49-3.379-30.413-19.2-103.68-62.157-104.397-42.906-0.614-72.346-14.797-97.843-65.69-52.89-105.882 99.277-126.208 46.387-184.781-14.797-16.486-91.29 67.686-102.502-44.493-0.717-8.038 6.912-20.070 17.203-32.563 166.093 55.808 286.106 212.838 286.106 397.414zM454.4 96.922c-10.035 19.558-36.506 27.494-52.582 42.189-35.021 31.693-50.074 27.29-68.915 57.702-18.995 30.413-80.23 74.189-80.23 96.205s30.925 47.923 46.387 42.906c15.462-5.12 56.269-4.813 80.23 3.584 24.013 8.499 200.397 16.998 144.179 166.093-17.818 47.411-95.898 39.424-116.685 117.914-3.123 11.52-13.926 60.723-14.592 76.8-1.28 24.883 17.613 118.682-6.4 118.682-24.115 0-88.986-83.917-88.986-99.123s-16.794-68.506-16.794-114.176c0-45.619-77.722-44.902-77.722-105.574 0-54.682 42.138-81.92 32.666-108.186-9.267-26.112-83.302-26.982-114.176-30.208 53.914-139.827 180.736-243.61 333.619-264.806zM380.109 909.824c25.19-13.312 27.75-30.515 50.586-31.386 26.112-1.178 47.36-10.189 76.8-16.691 26.112-5.683 72.858-32.205 113.971-35.584 34.714-2.816 103.168 1.792 121.6 35.277-66.304 44.083-145.818 69.786-231.117 69.786-46.029 0-90.368-7.629-131.84-21.402z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["globe"],"grid":20},"attrs":[],"properties":{"id":176,"order":177,"prevSize":20,"code":59823,"name":"globe"},"setIdx":0,"setId":1,"iconIdx":175},{"icon":{"paths":["M169.062 626.586c23.757 96.205 53.965 138.291 154.726 182.374 100.813 44.032 148.685 92.16 188.211 92.16 39.475 0 84.378-42.086 185.139-86.221 100.813-44.083 73.882-57.498 97.638-153.702l-282.778 137.523-342.938-172.134zM998.963 375.603l-426.24-238.694c-33.382-18.688-88.064-18.688-121.446 0l-426.291 238.694c-33.382 18.688-33.382 49.306 0 67.994l426.24 238.694c33.382 18.688 88.064 18.688 121.446 0l275.558-154.317-298.803-69.99c-11.52 2.816-24.166 4.403-37.427 4.403-53.862 0-97.485-25.907-97.485-57.907 0-32.102 43.674-58.010 97.485-58.010 41.779 0 77.312 15.718 91.136 37.581l316.518 103.885 79.309-44.39c33.331-18.637 33.331-49.254 0-67.942zM868.71 827.904c-3.328 19.712 65.69 52.122 72.243-5.478 29.645-259.686-21.299-334.387-21.299-334.387l-71.424 39.987c0-0.051 60.57 57.6 20.48 299.878z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["graduation-cap"],"grid":20},"attrs":[],"properties":{"id":177,"order":178,"prevSize":20,"code":59824,"name":"graduation-cap"},"setIdx":0,"setId":1,"iconIdx":176},{"icon":{"paths":["M409.6 204.8h-153.6c-28.314 0-51.2 22.886-51.2 51.2v153.6c0 28.262 22.886 51.2 51.2 51.2h153.6c28.314 0 51.2-22.938 51.2-51.2v-153.6c0-28.262-22.886-51.2-51.2-51.2zM768 204.8h-153.6c-28.314 0-51.2 22.886-51.2 51.2v153.6c0 28.262 22.886 51.2 51.2 51.2h153.6c28.314 0 51.2-22.938 51.2-51.2v-153.6c0-28.262-22.886-51.2-51.2-51.2zM409.6 563.2h-153.6c-28.314 0-51.2 22.886-51.2 51.2v153.6c0 28.262 22.886 51.2 51.2 51.2h153.6c28.314 0 51.2-22.938 51.2-51.2v-153.6c0-28.262-22.886-51.2-51.2-51.2zM768 563.2h-153.6c-28.314 0-51.2 22.886-51.2 51.2v153.6c0 28.262 22.886 51.2 51.2 51.2h153.6c28.314 0 51.2-22.938 51.2-51.2v-153.6c0-28.262-22.886-51.2-51.2-51.2z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["grid"],"grid":20},"attrs":[],"properties":{"id":178,"order":179,"prevSize":20,"code":59825,"name":"grid"},"setIdx":0,"setId":1,"iconIdx":177},{"icon":{"paths":["M512 20.48c-271.514 0-491.571 220.058-491.571 491.52 0 271.514 220.058 491.571 491.571 491.571 271.411 0 491.52-220.058 491.52-491.571 0-271.462-220.109-491.52-491.52-491.52zM563.2 897.28v-231.68h-102.4v231.68c-173.875-22.835-311.296-160.205-334.182-334.080h231.782v-102.4h-231.782c22.886-173.875 160.307-311.245 334.182-334.080v231.68h102.4v-231.68c173.773 22.886 311.194 160.256 334.080 334.080h-231.68v102.4h231.68c-22.886 173.773-160.307 311.194-334.080 334.080z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["hair-cross"],"grid":20},"attrs":[],"properties":{"id":179,"order":180,"prevSize":20,"code":59826,"name":"hair-cross"},"setIdx":0,"setId":1,"iconIdx":178},{"icon":{"paths":["M917.709 886.528c-2.918 8.909-9.882 18.79-21.299 22.118-8.243 2.406-280.986 81.408-289.382 83.61-24.013 6.4-40.704 1.69-51.661-7.987-16.691-14.694-209.562-145.92-452.864-158.31-26.010-1.28-13.261-99.891 61.082-99.891 50.944 0 199.885 37.018 217.856 18.995 13.875-13.926 20.173-96.205-37.734-239.77v0l-116.48-288.614c-11.059-27.392 2.253-58.522 29.594-69.581 27.392-11.059 58.624 2.202 69.581 29.594 0 0 91.699 227.226 101.683 251.853 9.882 24.576 22.067 33.894 35.328 28.774 11.827-4.506 14.285-12.39 7.117-36.301l-104.755-308.634c-9.523-27.955 5.427-58.266 33.382-67.789 28.006-9.574 58.419 5.427 67.84 33.382l99.635 293.478c8.806 25.805 18.125 39.322 32.87 33.075 8.858-3.738 8.243-17.306 5.888-29.133l-69.939-280.115c-7.168-28.723 10.291-57.702 38.963-64.87 28.672-7.117 57.6 10.24 64.819 38.963l64.512 258.15c9.421 37.939 18.074 51.61 33.075 47.872 15.309-3.738 14.592-16.333 12.493-26.726-4.864-24.32-44.646-221.594-44.646-221.594-5.274-26.368 11.776-51.968 38.093-57.242 26.266-5.274 51.917 11.776 57.139 38.042l48.538 241.203 0.051 0.051c0 0 0 0 0 0.051l29.082 144.64c6.349 27.29 13.619 52.992 23.040 78.182 55.552 147.917 26.573 284.877 17.101 314.522z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["hand"],"grid":20},"attrs":[],"properties":{"id":180,"order":181,"prevSize":20,"code":59827,"name":"hand"},"setIdx":0,"setId":1,"iconIdx":179},{"icon":{"paths":["M880.128 212.787c-85.606-78.592-224.41-78.592-310.016 0l-58.112 53.299-58.163-53.299c-85.606-78.592-224.358-78.592-309.965 0-96.307 88.371-96.307 231.373 0 319.744l368.128 337.869 368.128-337.869c96.256-88.371 96.256-231.424 0-319.744zM825.549 480l-313.549 292.608-313.6-292.608c-31.59-29.030-43.827-66.918-43.827-107.213s7.066-73.37 38.707-102.349c27.904-25.651 65.434-39.782 105.626-39.782 40.141 0 77.67 24.371 105.574 50.074l107.52 93.44 107.469-93.491c27.955-25.702 65.434-50.074 105.626-50.074s77.722 14.131 105.626 39.782c31.642 28.979 38.656 62.054 38.656 102.349s-12.186 78.234-43.827 107.264z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["heart-outlined"],"grid":20},"attrs":[],"properties":{"id":181,"order":182,"prevSize":20,"code":59828,"name":"heart-outlined"},"setIdx":0,"setId":1,"iconIdx":180},{"icon":{"paths":["M880.128 212.736c-85.606-78.541-224.41-78.541-310.016 0l-58.112 53.35-58.163-53.35c-85.606-78.541-224.358-78.541-309.965 0-96.307 88.422-96.307 231.424 0 319.795l368.128 337.869 368.128-337.869c96.256-88.371 96.256-231.424 0-319.795z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["heart"],"grid":20},"attrs":[],"properties":{"id":182,"order":183,"prevSize":20,"code":59829,"name":"heart1"},"setIdx":0,"setId":1,"iconIdx":181},{"icon":{"paths":["M512 20.48c-271.462 0-491.52 220.058-491.52 491.52s220.058 491.52 491.52 491.52c271.411 0 491.52-220.058 491.52-491.571 0-271.411-220.109-491.469-491.52-491.469zM504.269 798.669h-2.611c-40.038-1.178-68.301-30.72-67.123-70.195 1.126-38.81 30.054-67.021 68.762-67.021l2.355 0.102c41.165 1.178 69.12 30.413 67.942 71.014-1.178 38.912-29.594 66.099-69.325 66.099zM672.768 464.282c-9.421 13.312-30.106 30.003-56.218 50.33l-28.774 19.814c-15.77 12.288-25.293 23.91-28.826 35.226-2.867 8.909-4.198 11.315-4.454 29.491v4.608h-109.824l0.307-9.318c1.382-38.093 2.304-60.621 18.125-79.206 24.832-29.082 79.616-64.41 81.92-65.894 7.885-5.888 14.49-12.595 19.405-19.814 11.52-15.923 16.589-28.416 16.589-40.602 0-17.101-5.018-32.922-15.002-46.899-9.626-13.619-27.904-20.378-54.323-20.378-26.214 0-44.186 8.294-54.886 25.395-11.059 17.459-16.64 35.84-16.64 54.63v4.71h-113.203l0.205-4.915c2.918-69.274 27.699-119.194 73.472-148.326 28.826-18.483 64.717-27.853 106.547-27.853 54.682 0 100.966 13.312 137.318 39.526 36.915 26.573 55.603 66.406 55.603 118.323-0.051 29.030-9.216 56.32-27.341 81.152z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["help-with-circle"],"grid":20},"attrs":[],"properties":{"id":183,"order":184,"prevSize":20,"code":59830,"name":"help-with-circle"},"setIdx":0,"setId":1,"iconIdx":182},{"icon":{"paths":["M721.408 114.33c-58.368-42.086-131.686-63.13-219.955-63.13-67.123 0-123.802 14.797-169.83 44.442-73.062 46.387-111.872 125.184-116.582 236.288h169.318c0-32.41 9.472-63.488 28.314-93.594 18.893-30.003 50.944-45.005 96.154-45.005 45.978 0 77.67 12.186 94.925 36.506 17.357 24.422 26.010 51.405 26.010 80.998 0 25.805-12.902 49.408-28.518 70.81-8.55 12.493-19.814 24.013-33.843 34.509 0 0-91.802 58.88-132.096 106.189-23.347 27.392-25.446 68.506-27.546 127.386-0.102 4.198 1.485 12.902 16.128 12.902 14.694 0 118.579 0 131.635 0 13.107 0 15.821-9.677 15.974-14.029 0.922-21.402 3.277-32.41 7.219-44.8 7.373-23.398 27.546-43.776 50.125-61.389l46.592-32.102c42.086-32.819 75.622-59.699 90.47-80.794 25.293-34.611 43.11-77.312 43.11-128-0.051-82.688-29.235-144.998-87.603-187.187zM498.739 764.109c-58.317-1.792-106.445 38.605-108.288 101.888-1.792 63.181 43.93 105.011 102.298 106.701 60.877 1.792 107.725-37.222 109.619-100.506 1.741-63.283-42.701-106.291-103.629-108.083z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["help"],"grid":20},"attrs":[],"properties":{"id":184,"order":185,"prevSize":20,"code":59831,"name":"help"},"setIdx":0,"setId":1,"iconIdx":183},{"icon":{"paths":["M956.006 563.2h-85.606v307.2c0 22.784-9.933 51.2-51.2 51.2h-204.8v-307.2h-204.8v307.2h-204.8c-41.267 0-51.2-28.416-51.2-51.2v-307.2h-85.606c-30.618 0-24.064-16.589-3.072-38.298l410.829-411.238c9.984-10.342 23.091-15.462 36.25-15.974 13.158 0.512 26.266 5.581 36.25 15.974l410.778 411.187c21.043 21.76 27.597 38.349-3.021 38.349z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["home"],"grid":20},"attrs":[],"properties":{"id":185,"order":186,"prevSize":20,"code":59832,"name":"home1"},"setIdx":0,"setId":1,"iconIdx":184},{"icon":{"paths":["M798.72 234.291c0-109.517 0-120.218 0-120.218 0-40.397-128.41-114.074-286.72-114.074-158.362 0-286.72 73.677-286.72 114.074 0 0 0 10.701 0 120.218 0 109.619 198.502 200.090 198.502 277.709 0 77.517-198.502 167.987-198.502 277.606s0 120.32 0 120.32c0 40.346 128.358 114.074 286.72 114.074 158.31 0 286.72-73.728 286.72-114.125 0 0 0-10.701 0-120.32s-198.502-200.090-198.502-277.606c0-77.568 198.502-168.038 198.502-277.658zM304.179 119.194c35.635-22.477 102.4-55.398 210.637-55.398 108.186 0 205.107 55.398 205.107 55.398 7.27 4.403 35.738 19.61 16.23 31.181-42.906 25.446-126.874 52.224-224.154 52.224s-178.381-29.491-221.389-54.989c-19.507-11.52 13.568-28.416 13.568-28.416zM537.651 512c0 61.082 50.995 100.403 105.011 152.883 39.475 38.298 93.491 90.778 93.491 124.672v67.994c-49.664-24.73-198.246-48.896-198.246-128.205 0-40.090-51.866-40.090-51.866 0 0 79.309-148.582 103.475-198.246 128.205v-67.994c0-33.894 54.067-86.426 93.491-124.672 54.016-52.48 105.011-91.802 105.011-152.883s-50.995-100.403-105.011-152.883c-39.475-38.4-93.491-90.88-93.491-124.826l-2.355-51.098c52.531 28.314 135.782 55.194 226.56 55.194 90.726 0 174.387-26.88 226.97-55.194l-2.816 51.098c0 33.894-54.067 86.426-93.491 124.826-53.965 52.48-105.011 91.802-105.011 152.883z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["hour-glass"],"grid":20},"attrs":[],"properties":{"id":186,"order":187,"prevSize":20,"code":59833,"name":"hour-glass1"},"setIdx":0,"setId":1,"iconIdx":185},{"icon":{"paths":["M921.6 153.6h-819.2c-28.314 0-51.2 22.886-51.2 51.2v614.4c0 28.262 22.886 51.2 51.2 51.2h819.2c28.314 0 51.2-22.938 51.2-51.2v-614.4c0-28.262-22.886-51.2-51.2-51.2zM678.4 332.8c35.328 0 64 28.672 64 64s-28.672 64-64 64-64-28.672-64-64 28.672-64 64-64zM204.8 716.8l169.677-390.093 192.973 312.422 165.427-82.176 86.323 159.846h-614.4z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["image-inverted"],"grid":20},"attrs":[],"properties":{"id":187,"order":188,"prevSize":20,"code":59834,"name":"image-inverted"},"setIdx":0,"setId":1,"iconIdx":186},{"icon":{"paths":["M972.8 102.4h-921.6c-28.314 0-51.2 22.886-51.2 51.2v716.8c0 28.262 22.886 51.2 51.2 51.2h921.6c28.314 0 51.2-22.938 51.2-51.2v-716.8c0-28.262-22.886-51.2-51.2-51.2zM921.6 819.2h-819.2v-614.4h819.2v614.4zM732.928 556.902l-165.427 82.176-193.024-312.371-169.677 390.093h614.4l-86.272-159.898zM678.4 460.8c35.328 0 64-28.672 64-64s-28.672-64-64-64-64 28.672-64 64 28.672 64 64 64z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["image"],"grid":20},"attrs":[],"properties":{"id":188,"order":189,"prevSize":20,"code":59835,"name":"image1"},"setIdx":0,"setId":1,"iconIdx":187},{"icon":{"paths":["M876.8 315.904l-104.755-288.512c-7.731-21.299-30.464-32.614-50.637-25.19l-696.218 254.106c-20.173 7.373-30.362 30.566-22.579 51.866l110.387 304.179v-162.97c0-73.626 58.778-133.478 131.072-133.478h183.962l219.392-154.010 126.925 154.010h102.451zM984.986 409.6h-740.915c-21.504 0-39.014 17.101-39.014 39.782v482.304c0.051 22.733 17.562 41.114 39.014 41.114h740.915c21.504 0 39.014-18.381 39.014-41.114v-482.304c0-22.682-17.51-39.782-39.014-39.782zM921.6 870.4h-614.4v-102.4l101.581-205.722 141.722 175.923 133.018-136.294 170.906-61.696 67.174 176.589v153.6z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["images"],"grid":20},"attrs":[],"properties":{"id":189,"order":190,"prevSize":20,"code":59836,"name":"images1"},"setIdx":0,"setId":1,"iconIdx":188},{"icon":{"paths":["M985.754 488.55c-19.866-21.299-115.968-116.275-159.846-159.642-13.466-13.261-32.717-21.709-52.89-21.709h-522.035c-20.173 0-39.424 8.448-52.89 21.709-43.93 43.366-139.981 138.291-159.846 159.642-24.832 26.675-37.018 46.182-31.949 74.189s23.859 135.885 28.467 157.389c4.506 21.453 35.021 47.872 63.488 47.872h827.494c28.467 0 58.982-26.419 63.539-47.872 4.557-21.504 23.398-129.382 28.467-157.389s-7.117-47.565-32-74.189zM717.517 512.154c-5.171 0-9.882 2.662-12.186 6.81l-41.472 95.437h-303.718l-41.421-95.437c-2.304-4.147-7.014-6.81-12.186-6.81h-179.917l103.526-102.554h563.712l103.578 102.554h-179.917z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["inbox"],"grid":20},"attrs":[],"properties":{"id":190,"order":191,"prevSize":20,"code":59837,"name":"inbox"},"setIdx":0,"setId":1,"iconIdx":189},{"icon":{"paths":["M814.182 286.72c-106.445 0-223.13 59.29-302.182 149.299-79.104-90.010-195.84-149.299-302.285-149.299-101.376 0-209.715 59.187-209.715 225.28s108.339 225.178 209.715 225.28v0c106.445 0 223.13-59.29 302.234-149.299 79.053 90.010 195.738 149.299 302.182 149.299 101.427 0 209.869-59.187 209.869-225.28s-108.442-225.28-209.818-225.28zM209.715 647.219c-77.414 0-117.555-45.517-117.555-135.219s40.141-135.219 117.555-135.219c85.658 0 185.037 55.603 246.118 135.219-61.082 79.616-160.461 135.219-246.118 135.219zM814.182 647.219c-85.658 0-185.037-55.603-246.118-135.219 61.030-79.616 160.512-135.219 246.118-135.219 77.414 0 117.658 45.517 117.658 135.219s-40.243 135.219-117.658 135.219z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["infinity"],"grid":20},"attrs":[],"properties":{"id":191,"order":192,"prevSize":20,"code":59838,"name":"infinity"},"setIdx":0,"setId":1,"iconIdx":190},{"icon":{"paths":["M512 20.48c-271.514 0-491.571 220.058-491.571 491.52 0 271.514 220.058 491.571 491.571 491.571 271.411 0 491.52-220.058 491.52-491.571 0-271.462-220.109-491.52-491.52-491.52zM557.875 197.939c47.923 0 62.003 27.802 62.003 59.597 0 39.68-31.744 76.39-85.965 76.39-45.363 0-66.97-22.784-65.638-60.518 0-31.795 26.573-75.469 89.6-75.469zM435.098 806.4c-32.768 0-56.678-19.917-33.792-107.213l37.53-154.88c6.502-24.781 7.578-34.714 0-34.714-9.779 0-52.326 17.101-77.414 33.997l-16.333-26.778c79.616-66.509 171.162-105.523 210.33-105.523 32.768 0 38.195 38.707 21.862 98.304l-43.008 162.816c-7.629 28.774-4.352 38.707 3.277 38.707 9.83 0 41.984-11.878 73.626-36.813l18.534 24.883c-77.466 77.414-161.894 107.213-194.611 107.213z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["info-with-circle"],"grid":20},"attrs":[],"properties":{"id":192,"order":193,"prevSize":20,"code":59839,"name":"info-with-circle"},"setIdx":0,"setId":1,"iconIdx":191},{"icon":{"paths":["M636.518 0c68.608 0 102.912 46.694 102.912 100.198 0 66.816-59.597 128.614-137.165 128.614-64.973 0-102.861-38.4-101.069-101.888 0-53.402 45.107-126.925 135.322-126.925zM425.421 1024c-54.17 0-93.85-33.382-55.962-180.429l62.157-260.71c10.803-41.677 12.595-58.419 0-58.419-16.23 0-86.477 28.774-128.102 57.19l-27.034-45.056c131.686-111.923 283.187-177.51 348.211-177.51 54.118 0 63.13 65.178 36.096 165.376l-71.219 274.022c-12.595 48.384-7.219 65.075 5.427 65.075 16.23 0 69.478-20.070 121.805-61.798l30.72 41.677c-128.102 130.406-268.032 180.582-322.099 180.582z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["info"],"grid":20},"attrs":[],"properties":{"id":193,"order":194,"prevSize":20,"code":59840,"name":"info1"},"setIdx":0,"setId":1,"iconIdx":192},{"icon":{"paths":["M905.779 241.92c-25.754-152.422-164.864-254.31-310.733-227.379-145.92 26.88-269.107 144.179-243.354 296.704 5.478 32.819 20.89 84.173 39.066 121.088l-264.96 395.418c-9.779 14.592-15.309 40.909-12.39 58.419l17.050 100.915c2.97 17.51 19.046 29.286 35.84 26.317l77.619-14.387c16.794-3.021 38.093-17.818 47.309-32.717l104.806-169.523 0.922-1.126 70.963-13.107 122.368-198.605c40.192 7.117 97.894 4.71 131.994-1.587 145.818-26.931 209.254-187.904 183.501-340.429zM776.499 320.102c-40.141 59.904-81.101 17.715-138.394-24.32-57.293-41.882-109.312-67.686-69.222-127.59 40.141-59.904 119.091-74.496 176.486-32.512 57.344 41.933 71.219 124.518 31.13 184.422z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["key"],"grid":20},"attrs":[],"properties":{"id":194,"order":195,"prevSize":20,"code":59841,"name":"key1"},"setIdx":0,"setId":1,"iconIdx":193},{"icon":{"paths":["M952.32 204.8h-880.64c-39.475 0-71.68 32.205-71.68 71.68v471.040c0 39.373 32.205 71.68 71.629 71.68h880.64c39.424 0 71.68-32.307 71.68-71.68v-471.040c0.051-39.475-32.256-71.68-71.629-71.68zM563.2 307.2h102.4v102.4h-102.4v-102.4zM716.8 460.8v102.4h-102.4v-102.4h102.4zM409.6 307.2h102.4v102.4h-102.4v-102.4zM563.2 460.8v102.4h-102.4v-102.4h102.4zM256 307.2h102.4v102.4h-102.4v-102.4zM409.6 460.8v102.4h-102.4v-102.4h102.4zM102.4 307.2h102.4v102.4h-102.4v-102.4zM256 460.8v102.4h-102.4v-102.4h102.4zM204.8 716.8h-102.4v-102.4h102.4v102.4zM768 716.8h-512v-102.4h512v102.4zM921.6 716.8h-102.4v-102.4h102.4v102.4zM768 563.2v-102.4h102.4v102.4h-102.4zM921.6 409.6h-204.8v-102.4h204.8v102.4z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["keyboard"],"grid":20},"attrs":[],"properties":{"id":195,"order":196,"prevSize":20,"code":59842,"name":"keyboard1"},"setIdx":0,"setId":1,"iconIdx":194},{"icon":{"paths":["M841.318 768c-104.704-261.478-226.918-330.394-226.918-460.8v-153.6h25.6c14.131 0 25.6-11.469 25.6-25.6v-51.2c0-14.131-11.469-25.6-25.6-25.6h-256c-14.131 0-25.6 11.469-25.6 25.6v51.2c0 14.131 11.469 25.6 25.6 25.6h25.6v153.6c0 130.406-122.214 199.322-226.918 460.8-33.331 83.2-118.938 204.8 329.318 204.8s362.65-121.6 329.318-204.8zM758.528 857.651c-35.942 10.752-107.469 22.989-246.528 22.989s-210.586-12.237-246.528-22.989c-12.749-3.789-17.715-18.586-13.21-32.154 11.264-34.304 32.512-93.594 72.243-159.795 97.075-161.741 197.786 25.446 281.6 25.446s60.826-79.923 93.389-25.446c39.629 66.253 60.979 125.491 72.243 159.795 4.506 13.568-0.461 28.314-13.21 32.154z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["lab-flask"],"grid":20},"attrs":[],"properties":{"id":196,"order":197,"prevSize":20,"code":59843,"name":"lab-flask"},"setIdx":0,"setId":1,"iconIdx":195},{"icon":{"paths":["M250.982 12.8c-71.885-14.182-142.694 32-157.133 103.578-56.576 279.296-56.576 511.846 0 791.245 12.646 62.72 68.454 106.138 130.816 106.138 8.704 0 17.51-0.819 26.368-2.56 72.294-14.285 119.245-83.866 104.755-155.443-50.074-247.398-50.074-440.218 0-687.616 14.438-71.475-32.512-141.056-104.806-155.341zM870.4 102.4h-438.477c3.738 23.91 4.147 48.691-0.87 73.728-47.923 241.664-47.923 429.978 0 671.744 5.018 25.088 4.608 49.818 0.87 73.728h438.477c56.32 0 102.4-46.080 102.4-102.4v-614.4c0-56.32-46.029-102.4-102.4-102.4zM614.4 742.4c-42.394 0-76.8-34.406-76.8-76.8s34.406-76.8 76.8-76.8 76.8 34.406 76.8 76.8-34.406 76.8-76.8 76.8zM870.4 460.8h-358.4v-204.8h358.4v204.8z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["landline"],"grid":20},"attrs":[],"properties":{"id":197,"order":198,"prevSize":20,"code":59844,"name":"landline"},"setIdx":0,"setId":1,"iconIdx":196},{"icon":{"paths":["M1011.354 558.541c-31.949-87.398-121.139-139.571-238.643-139.571-4.608 0-9.011 0.102-13.414 0.307l-0.819-105.626c0 0 174.592-30.106 180.48-31.078s6.81-6.093 5.581-11.827c-1.178-5.683-8.55-45.21-9.626-49.971-1.382-6.707-5.222-6.502-10.598-5.581-5.325 0.922-166.4 23.603-166.4 23.603s-0.614-99.994-0.666-106.394c-0.051-6.4-3.533-8.090-9.933-7.987s-47.104 0.717-52.48 0.819c-5.376 0.102-8.397 2.509-8.294 7.578 0.102 5.12 1.69 118.118 1.69 118.118s-156.723 26.982-160.973 27.802c-4.301 0.717-8.704 2.714-7.731 7.322s9.728 56.013 10.65 60.006c0.922 4.096 3.686 6.605 9.626 5.478 5.888-0.973 149.709-25.805 149.709-25.805l1.792 103.322c-55.142 14.387-92.211 42.189-115.507 66.714-39.322 41.318-61.798 96.614-61.798 151.706 0 81.203 49.715 129.485 119.194 137.984 161.894 19.814 262.093-156.672 295.373-241.408 56.166 77.107 13.107 222.925-107.213 306.176-2.202 1.485-5.018 6.605-1.69 10.598s27.699 33.894 31.693 38.707c4.096 4.915 10.547 3.021 13.107 1.178 128.512-88.576 187.443-231.168 146.893-342.17zM633.19 721.766c-49.459-6.195-48.333-46.797-48.333-74.394 0-39.578 16.742-80.896 44.851-110.387 17.152-18.125 38.4-31.795 62.925-40.909l4.198 218.982c-19.712 6.707-40.909 9.472-63.642 6.707zM757.453 693.453l2.355-210.381c4.301-0.205 8.499-0.512 12.902-0.512 39.578 0 76.493 7.424 96.512 18.483 20.019 11.11-52.378 138.906-111.77 192.41zM299.213 300.851c-1.536-4.813-5.274-7.424-10.035-7.424h-99.84c-4.762 0-8.448 2.611-9.933 7.373-21.094 66.509-178.176 562.688-178.995 565.299-0.87 2.611-0.563 3.891 3.174 3.891h88.73c3.84 0 5.069-1.178 5.837-3.686 0.768-2.611 51.61-169.882 51.61-169.882h178.995c0 0 50.79 167.322 51.61 169.882 0.819 2.509 1.997 3.686 5.786 3.686h88.781c3.686 0 3.994-1.28 3.174-3.891-0.717-2.56-157.85-498.739-178.893-565.248zM165.171 624.333l74.086-268.8 74.086 268.8h-148.173z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["language"],"grid":20},"attrs":[],"properties":{"id":198,"order":199,"prevSize":20,"code":59845,"name":"language"},"setIdx":0,"setId":1,"iconIdx":197},{"icon":{"paths":["M1011.405 800.307c-12.646-18.995-89.805-134.707-89.805-134.707v-460.8c0-56.422-46.080-102.4-102.4-102.4h-614.4c-56.371 0-102.4 45.978-102.4 102.4v460.8c0 0-77.158 115.712-89.805 134.707-12.595 18.893-12.595 29.798-12.595 44.493v25.6c0 25.6 25.6 51.2 51.149 51.2h921.702c25.549 0 51.149-25.6 51.149-51.2v-25.6c0-14.694 0-25.6-12.595-44.493zM358.4 819.2l30.72-51.2h245.76l30.72 51.2h-307.2zM819.2 614.4h-614.4v-409.6h614.4v409.6z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["laptop"],"grid":20},"attrs":[],"properties":{"id":199,"order":200,"prevSize":20,"code":59846,"name":"laptop1"},"setIdx":0,"setId":1,"iconIdx":198},{"icon":{"paths":["M974.080 183.654c-223.027 130.867-207.053 399.667-363.315 520.96-117.606 91.29-283.546 45.056-379.494 5.786 0 0-65.024 82.074-111.667 191.488-15.616 36.71-84.173-3.738-72.141-34.816 152.474-393.472 671.232-589.773 671.232-589.773s-366.029-15.514-610.662 304.128c-6.554-73.011-17.408-270.541 172.032-391.68 256.819-164.403 746.086-36.608 694.016-6.093z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["leaf"],"grid":20},"attrs":[],"properties":{"id":200,"order":201,"prevSize":20,"code":59847,"name":"leaf1"},"setIdx":0,"setId":1,"iconIdx":199},{"icon":{"paths":["M51.2 614.4v-358.4h153.6v307.2h512v-153.6l256 230.4-256 230.4v-153.6h-563.2c-56.576 0-102.4-45.875-102.4-102.4z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["level-down"],"grid":20},"attrs":[],"properties":{"id":201,"order":202,"prevSize":20,"code":59848,"name":"level-down"},"setIdx":0,"setId":1,"iconIdx":200},{"icon":{"paths":["M972.8 460.8v358.4h-153.6v-307.2h-512v153.6l-256-230.4 256-230.4v153.6h563.2c56.525 0 102.4 45.926 102.4 102.4z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["level-up"],"grid":20},"attrs":[],"properties":{"id":202,"order":203,"prevSize":20,"code":59849,"name":"level-up"},"setIdx":0,"setId":1,"iconIdx":201},{"icon":{"paths":["M859.546 164.454c-191.949-191.949-503.142-191.949-695.040 0-192 192-192 503.194-0.102 695.091 192 192 503.194 192 695.194 0 191.898-191.949 191.898-503.142-0.051-695.091zM345.498 678.502c-92.006-92.006-92.006-241.101 0-333.056 91.904-91.955 241.101-91.955 333.107 0 92.006 92.006 91.904 241.101 0 333.056-92.006 92.006-241.101 92.006-333.107 0zM785.766 659.405c49.562-92.109 49.613-202.701 0-294.861l91.29-49.152c65.997 122.419 65.997 270.848 0.102 393.114l-91.392-49.101zM708.557 146.893l-49.203 91.341c-92.109-49.51-202.701-49.51-294.707 0l-49.203-91.29c122.368-65.946 270.694-65.946 393.114-0.051zM146.944 315.392l91.341 49.203c-49.562 92.058-49.562 202.598-0.051 294.707l-91.341 49.203c-65.946-122.317-65.894-270.694 0.051-393.114zM315.341 877.005l49.203-91.29c92.109 49.613 202.752 49.613 294.861 0l49.203 91.392c-122.47 65.894-270.848 65.894-393.267-0.102z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["lifebuoy"],"grid":20},"attrs":[],"properties":{"id":203,"order":204,"prevSize":20,"code":59850,"name":"lifebuoy1"},"setIdx":0,"setId":1,"iconIdx":202},{"icon":{"paths":["M367.923 981.606c40.397 26.112 87.091 43.776 144.077 42.394 56.883 1.382 103.68-16.282 144.077-42.394l-0.87-111.206h-286.413l-0.87 111.206zM650.086 819.2c0-223.078 237.056-299.418 219.29-521.626-11.162-140.186-106.138-297.472-357.376-297.472s-346.214 157.286-357.427 297.523c-17.766 222.157 219.341 298.496 219.341 521.574h276.173zM256 307.2c10.598-133.018 108.186-204.8 256-204.8 147.763 0 238.285 70.195 248.883 203.213 5.786 72.909-36.096 121.498-92.621 201.011-41.677 58.675-82.074 119.962-105.062 210.176h-102.4c-22.989-90.214-63.386-151.501-105.114-210.227-56.474-79.462-105.523-126.464-99.686-199.373z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["light-bulb"],"grid":20},"attrs":[],"properties":{"id":204,"order":205,"prevSize":20,"code":59851,"name":"light-bulb"},"setIdx":0,"setId":1,"iconIdx":203},{"icon":{"paths":["M512 348.006c-90.88 0-163.84 73.011-163.84 163.891 0 90.778 72.96 163.789 163.84 163.789 90.829 0 163.789-73.011 163.789-163.789 0-90.88-72.96-163.891-163.789-163.891zM512 616.806c-58.010 0-105.011-46.899-105.011-104.909s47.002-105.011 105.011-105.011c57.958 0 104.96 47.002 104.96 105.011-0.051 58.010-47.053 104.909-104.96 104.909zM768 256c-15.974-15.974-45.21-12.698-65.178 7.27-19.968 20.019-23.194 49.101-7.219 65.126s45.158 12.8 65.178-7.219c19.968-19.968 23.194-49.203 7.219-65.178zM263.27 702.925c-20.019 19.968-23.245 49.101-7.27 65.075s45.158 12.8 65.178-7.219c20.019-20.019 23.245-49.203 7.27-65.178s-45.21-12.698-65.178 7.322zM256 256c-15.974 15.974-12.749 45.21 7.219 65.178 20.019 20.019 49.203 23.194 65.178 7.219s12.749-45.21-7.27-65.178c-19.917-19.917-49.152-23.194-65.126-7.219zM702.822 760.678c19.968 20.019 49.152 23.296 65.178 7.322s12.749-45.21-7.27-65.229c-20.019-20.019-49.152-23.194-65.178-7.219s-12.698 45.158 7.27 65.126zM512 255.898c22.579 0 40.96-22.886 40.96-51.2-0.051-28.314-18.381-51.098-40.96-51.098-22.63 0-41.011 22.784-41.011 51.098s18.33 51.2 41.011 51.2zM512 870.4c22.579 0 40.96-22.886 40.96-51.2s-18.33-51.098-40.909-51.098c-22.63 0-41.011 22.784-41.011 51.098-0.051 28.314 18.278 51.2 40.96 51.2zM256 512c0-22.579-23.040-40.96-51.354-40.96s-51.046 18.381-51.046 40.96c0 22.63 22.733 40.96 51.046 40.96s51.354-18.33 51.354-40.96zM870.4 512c0-22.579-22.938-40.96-51.251-40.96s-51.149 18.381-51.149 40.96c0 22.63 22.835 40.96 51.149 40.96s51.251-18.33 51.251-40.96z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["light-down"],"grid":20},"attrs":[],"properties":{"id":205,"order":206,"prevSize":20,"code":59852,"name":"light-down"},"setIdx":0,"setId":1,"iconIdx":204},{"icon":{"paths":["M972.8 470.989c-9.318 0-40.909 0-50.176 0-28.314 0-51.2 18.381-51.2 41.011 0 22.579 22.886 40.909 51.2 40.909 9.318 0 40.909 0 50.176 0 28.262 0 51.2-18.278 51.2-40.909 0-22.579-22.989-41.011-51.2-41.011zM512 230.4c-156.211 0-281.6 125.389-281.6 281.6s125.389 281.6 281.6 281.6c156.16 0 281.6-125.389 281.6-281.6s-125.491-281.6-281.6-281.6zM512 716.8c-113.203 0-204.8-91.699-204.8-204.8 0-113.203 91.597-204.8 204.8-204.8 113.101 0 204.8 91.597 204.8 204.8 0 113.101-91.699 204.8-204.8 204.8zM153.6 512c0-22.579-22.989-41.011-51.2-41.011-9.472 0-41.779 0-51.2 0-28.314 0-51.2 18.381-51.2 41.011 0 22.579 22.886 40.909 51.2 40.909 9.421 0 41.728 0 51.2 0 28.211 0 51.2-18.33 51.2-40.909zM512 153.6c22.579 0 40.909-22.886 40.909-51.2 0-9.421 0-41.779 0-51.2 0-28.314-18.33-51.2-40.909-51.2-22.63 0-41.011 22.886-41.011 51.2 0 9.421 0 41.779 0 51.2 0 28.314 18.381 51.2 41.011 51.2zM512 870.4c-22.63 0-41.011 22.886-41.011 51.2 0 9.421 0 41.779 0 51.2 0 28.314 18.381 51.2 41.011 51.2 22.579 0 40.909-22.886 40.909-51.2 0-9.421 0-41.779 0-51.2 0-28.314-18.33-51.2-40.909-51.2zM889.088 192.819c20.019-20.019 23.245-49.203 7.27-65.178s-45.21-12.698-65.126 7.322c-5.53 5.478-30.362 30.31-35.84 35.789-20.019 20.019-23.245 49.203-7.27 65.178s45.21 12.698 65.178-7.322c5.478-5.53 30.259-30.31 35.789-35.789zM170.701 795.29c-5.53 5.581-30.362 30.413-35.84 35.891-20.019 20.019-23.245 49.101-7.27 65.075s45.21 12.8 65.126-7.219c5.53-5.478 30.362-30.31 35.84-35.789 20.019-20.019 23.245-49.203 7.27-65.229s-45.21-12.646-65.126 7.27zM192.768 134.912c-19.968-20.019-49.203-23.296-65.178-7.322s-12.698 45.21 7.219 65.229c5.53 5.478 30.362 30.31 35.84 35.789 20.019 20.019 49.152 23.296 65.126 7.322s12.749-45.21-7.219-65.178c-5.478-5.53-30.259-30.362-35.789-35.84zM795.341 853.299c5.53 5.478 30.362 30.31 35.84 35.789 20.019 20.019 49.152 23.194 65.126 7.322 15.974-15.974 12.749-45.21-7.27-65.178-5.478-5.478-30.31-30.31-35.789-35.789-20.019-20.019-49.203-23.296-65.229-7.322s-12.698 45.158 7.322 65.178z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["light-up"],"grid":20},"attrs":[],"properties":{"id":206,"order":207,"prevSize":20,"code":59853,"name":"light-up"},"setIdx":0,"setId":1,"iconIdx":205},{"icon":{"paths":["M35.328 580.147l69.786 17.306 52.531-82.483-99.84-24.678c-24.986-6.195-50.227 8.909-56.422 33.792-6.195 24.73 8.96 49.818 33.946 56.064zM946.227 593.51l-228.506 205.619-268.646-207.923c-5.12-3.891-11.008-6.81-17.306-8.294l-35.738-8.909-52.582 82.483 56.32 13.978 291.686 225.69c8.499 6.502 18.534 9.677 28.621 9.677 11.213 0 22.426-3.994 31.181-11.878l257.434-231.782c19.046-17.101 20.531-46.387 3.277-65.382-17.254-18.944-46.643-20.48-65.741-3.277zM444.621 367.616l250.214 160.205c21.146 13.517 49.203 7.885 63.488-12.595l257.382-370.79c14.643-21.094 9.37-50.022-11.827-64.512-21.197-14.592-50.125-9.318-64.768 11.776l-231.834 333.875-251.699-161.126c-10.445-6.707-23.091-8.909-35.226-6.298-12.083 2.714-22.63 10.086-29.235 20.48l-383.846 602.47c-13.824 21.606-7.373 50.33 14.336 64 7.68 4.915 16.333 7.219 24.883 7.219 15.411 0 30.515-7.629 39.322-21.504l358.81-563.2z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["line-graph"],"grid":20},"attrs":[],"properties":{"id":207,"order":208,"prevSize":20,"code":59854,"name":"line-graph"},"setIdx":0,"setId":1,"iconIdx":206},{"icon":{"paths":["M402.381 752.179l-41.472 41.216c-35.891 35.584-94.362 35.584-130.304 0-17.203-17.101-26.675-39.885-26.675-64.102s9.523-46.899 26.675-64.102l152.576-151.296c31.59-31.386 91.085-77.568 134.451-34.56 19.917 19.763 52.019 19.661 71.834-0.256 19.712-19.917 19.61-52.070-0.307-71.782-73.626-73.114-182.579-59.597-277.453 34.56l-152.576 151.347c-36.608 36.301-56.73 84.685-56.73 136.090 0 51.507 20.173 99.789 56.73 136.090 37.683 37.376 87.142 56.115 136.653 56.115s99.021-18.688 136.653-56.115l41.523-41.216c19.917-19.712 20.019-51.814 0.256-71.68-19.814-19.866-51.917-19.968-71.834-0.307zM864.819 164.198c-79.206-78.541-189.901-82.79-263.117-10.086l-51.661 51.302c-19.917 19.763-20.070 51.866-0.307 71.731 19.763 19.917 51.866 20.019 71.782 0.256l51.712-51.251c37.888-37.683 87.603-22.067 120.115 10.086 17.203 17.152 26.726 39.885 26.726 64.102s-9.523 46.95-26.726 64.051l-162.816 161.485c-74.445 73.779-109.363 39.219-124.262 24.422-19.917-19.763-52.019-19.61-71.731 0.256-19.763 19.917-19.661 52.070 0.256 71.731 34.202 33.894 73.216 50.688 114.074 50.688 50.022 0 102.912-25.19 153.242-75.11l162.816-161.434c36.454-36.352 56.678-84.685 56.678-136.090 0-51.456-20.224-99.789-56.781-136.141z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["link"],"grid":20},"attrs":[],"properties":{"id":208,"order":209,"prevSize":20,"code":59855,"name":"link1"},"setIdx":0,"setId":1,"iconIdx":207},{"icon":{"paths":["M737.28 460.8h-296.96c-28.262 0-30.72 22.886-30.72 51.2s2.458 51.2 30.72 51.2h296.96c28.262 0 30.72-22.886 30.72-51.2s-2.458-51.2-30.72-51.2zM839.68 716.8h-399.36c-28.262 0-30.72 22.886-30.72 51.2s2.458 51.2 30.72 51.2h399.36c28.262 0 30.72-22.886 30.72-51.2s-2.458-51.2-30.72-51.2zM440.32 307.2h399.36c28.262 0 30.72-22.886 30.72-51.2s-2.458-51.2-30.72-51.2h-399.36c-28.262 0-30.72 22.886-30.72 51.2s2.458 51.2 30.72 51.2zM276.48 460.8h-92.16c-28.262 0-30.72 22.886-30.72 51.2s2.458 51.2 30.72 51.2h92.16c28.262 0 30.72-22.886 30.72-51.2s-2.458-51.2-30.72-51.2zM276.48 716.8h-92.16c-28.262 0-30.72 22.886-30.72 51.2s2.458 51.2 30.72 51.2h92.16c28.262 0 30.72-22.886 30.72-51.2s-2.458-51.2-30.72-51.2zM276.48 204.8h-92.16c-28.262 0-30.72 22.886-30.72 51.2s2.458 51.2 30.72 51.2h92.16c28.262 0 30.72-22.886 30.72-51.2s-2.458-51.2-30.72-51.2z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["list"],"grid":20},"attrs":[],"properties":{"id":209,"order":210,"prevSize":20,"code":59856,"name":"list1"},"setIdx":0,"setId":1,"iconIdx":208},{"icon":{"paths":["M512 102.861c-141.414 0-256 114.125-256 255.488 0 244.429 256 563.2 256 563.2s256-318.822 256-563.2c0-141.312-114.586-255.488-256-255.488zM512 499.712c-76.39 0-138.24-61.901-138.24-138.24s61.85-138.24 138.24-138.24c76.288 0 138.189 61.901 138.189 138.24s-61.901 138.24-138.189 138.24z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["location-pin"],"grid":20},"attrs":[],"properties":{"id":210,"order":211,"prevSize":20,"code":59857,"name":"location-pin"},"setIdx":0,"setId":1,"iconIdx":209},{"icon":{"paths":["M991.59 926.822l-69.99-210.022h-76.8l42.65 204.8h-750.899l42.65-204.8h-76.8l-70.042 210.022c-17.766 53.453 13.722 97.178 70.042 97.178h819.2c56.32 0 87.808-43.725 69.99-97.178zM768 256c0-141.363-114.586-256-256-256s-256 114.637-256 256c0 244.48 256 512 256 512s256-267.52 256-512zM373.76 259.072c0-76.339 61.85-138.189 138.24-138.189s138.24 61.85 138.24 138.189c0 76.39-61.901 138.24-138.24 138.24s-138.24-61.901-138.24-138.24z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["location"],"grid":20},"attrs":[],"properties":{"id":211,"order":212,"prevSize":20,"code":59858,"name":"location1"},"setIdx":0,"setId":1,"iconIdx":210},{"icon":{"paths":["M808.96 409.6h-92.16v-122.88c0-148.326-68.352-235.52-204.8-235.52-136.499 0-204.8 87.194-204.8 235.52v20.48h102.4v-41.011c0-73.984 40.806-112.589 102.4-112.589s102.4 38.605 102.4 112.589v143.411h-409.6c-28.314 0-51.2 33.075-51.2 61.389v399.411c0 28.109 21.914 58.317 48.691 66.918l61.286 19.814c26.829 8.55 71.782 15.667 99.942 15.667h296.96c28.109 0 73.114-7.117 99.891-15.718l61.235-19.814c26.829-8.55 48.794-38.758 48.794-66.867v-399.411c0-28.314-33.178-61.389-61.44-61.389z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["lock-open"],"grid":20},"attrs":[],"properties":{"id":212,"order":213,"prevSize":20,"code":59859,"name":"lock-open"},"setIdx":0,"setId":1,"iconIdx":211},{"icon":{"paths":["M808.96 409.6h-92.16v-122.88c0-148.326-68.352-235.52-204.8-235.52-136.499 0-204.8 87.194-204.8 235.52v122.88h-102.4c-28.314 0-51.2 33.075-51.2 61.389v399.411c0 28.109 21.914 58.317 48.691 66.918l61.286 19.814c26.829 8.55 71.782 15.667 99.942 15.667h296.96c28.109 0 73.114-7.117 99.891-15.718l61.235-19.814c26.829-8.55 48.794-38.758 48.794-66.867v-399.411c0-28.314-33.178-61.389-61.44-61.389zM614.4 409.6h-204.8v-143.411c0-73.984 40.806-112.589 102.4-112.589s102.4 38.605 102.4 112.589v143.411z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["lock"],"grid":20},"attrs":[],"properties":{"id":213,"order":214,"prevSize":20,"code":59860,"name":"lock1"},"setIdx":0,"setId":1,"iconIdx":212},{"icon":{"paths":["M972.8 512l-307.2-256v153.6h-358.4v204.8h358.4v153.6l307.2-256zM153.6 153.6h409.6v-102.4h-409.6c-56.32 0-102.4 46.080-102.4 102.4v716.8c0 56.32 46.080 102.4 102.4 102.4h409.6v-102.4h-409.6v-716.8z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["log-out"],"grid":20},"attrs":[],"properties":{"id":214,"order":215,"prevSize":20,"code":59861,"name":"log-out"},"setIdx":0,"setId":1,"iconIdx":213},{"icon":{"paths":["M716.8 512l-307.2-256v153.6h-358.4v204.8h358.4v153.6l307.2-256zM870.4 870.4h-409.6v102.4h409.6c56.32 0 102.4-46.080 102.4-102.4v-716.8c0-56.32-46.080-102.4-102.4-102.4h-409.6v102.4h409.6v716.8z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["login"],"grid":20},"attrs":[],"properties":{"id":215,"order":216,"prevSize":20,"code":59862,"name":"login"},"setIdx":0,"setId":1,"iconIdx":214},{"icon":{"paths":["M1024 358.4v358.4c0 56.474-45.875 102.4-102.4 102.4h-819.2c-56.525 0-102.4-45.926-102.4-102.4v-358.4c0-56.525 45.875-102.4 102.4-102.4h358.4v-102.4l204.8 179.2-204.8 179.2v-102.4h-307.2v256h716.8v-256h-153.6v-153.6h204.8c56.525 0 102.4 45.875 102.4 102.4z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["loop"],"grid":20},"attrs":[],"properties":{"id":216,"order":217,"prevSize":20,"code":59863,"name":"loop1"},"setIdx":0,"setId":1,"iconIdx":215},{"icon":{"paths":["M622.848 914.432c-1.434 15.821 11.11 29.901 27.904 31.283l204.032 16.691c16.845 1.382 31.795-10.394 33.28-26.214l15.923-168.294-265.216-21.811-15.923 168.346zM120.013 767.949l15.974 168.294c1.434 15.821 16.435 27.597 33.28 26.214l204.032-16.691c16.794-1.382 29.338-15.514 27.955-31.283l-15.974-168.294-265.267 21.76zM93.747 490.65l16.435 173.619 265.267-21.811-16.486-173.414c-0.358-4.198-0.563-8.499-0.563-12.8 0-79.616 68.915-144.384 153.6-144.384s153.6 64.819 153.6 144.384c0 4.301-0.205 8.602-0.614 12.8l-16.435 173.414 265.267 21.811 16.435-173.619c1.075-11.52 1.536-22.989 1.536-34.406 0.051-217.702-188.262-394.803-419.789-394.803s-419.84 177.101-419.84 394.803c0 11.418 0.563 22.886 1.587 34.406z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["magnet"],"grid":20},"attrs":[],"properties":{"id":217,"order":218,"prevSize":20,"code":59864,"name":"magnet1"},"setIdx":0,"setId":1,"iconIdx":216},{"icon":{"paths":["M898.304 791.91l-193.485-193.485c29.184-47.872 45.978-104.192 45.978-164.352 0-174.95-151.603-326.502-326.554-326.502-174.95-0.051-316.723 141.773-316.723 316.723 0 174.899 151.603 326.502 326.502 326.502 58.214 0 112.64-15.821 159.488-43.213l194.509 194.611c19.046 18.995 49.92 18.995 68.915 0l48.282-48.282c18.995-18.995 12.083-43.008-6.912-62.003zM205.005 424.294c0-121.139 98.15-219.29 219.238-219.29 121.139 0 229.069 107.878 229.069 229.069 0 121.088-98.202 219.29-219.29 219.29-121.139-0.051-229.018-107.981-229.018-229.069z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["magnifying-glass"],"grid":20},"attrs":[],"properties":{"id":218,"order":219,"prevSize":20,"code":59865,"name":"magnifying-glass"},"setIdx":0,"setId":1,"iconIdx":217},{"icon":{"paths":["M80.589 270.643c24.986 13.414 371.098 199.373 384 206.285s29.594 10.189 46.387 10.189c16.794 0 33.485-3.277 46.387-10.189s359.014-192.87 384-206.285c25.037-13.466 48.691-65.843 2.765-65.843h-866.253c-45.926 0-22.272 52.378 2.714 65.843zM952.986 383.437c-28.416 14.797-378.214 197.069-395.622 206.182s-29.594 10.189-46.387 10.189-28.979-1.075-46.387-10.189-365.21-191.437-393.626-206.234c-19.968-10.445-19.763 1.792-19.763 11.213s0 373.402 0 373.402c0 21.504 28.979 51.2 51.2 51.2h819.2c22.221 0 51.2-29.696 51.2-51.2 0 0 0-363.93 0-373.35s0.205-21.658-19.814-11.213z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["mail"],"grid":20},"attrs":[],"properties":{"id":219,"order":220,"prevSize":20,"code":59866,"name":"mail1"},"setIdx":0,"setId":1,"iconIdx":218},{"icon":{"paths":["M512 204.8c56.525 0 102.4-45.875 102.4-102.4 0-56.576-45.875-102.4-102.4-102.4s-102.4 45.824-102.4 102.4c0 56.525 45.875 102.4 102.4 102.4zM818.074 593.050c-19.712-90.88-54.17-240.026-104.55-301.773-48.998-60.058-147.712-62.566-201.523-62.566v0c-53.811 0-152.525 2.509-201.523 62.566-50.381 61.747-84.838 210.893-104.55 301.773-10.906 50.33 59.085 68.813 77.363 18.176 27.187-75.418 48.179-138.752 94.157-191.283 24.166 148.838-65.024 407.859-70.246 552.858 0 28.262 22.938 51.2 51.2 51.2 21.811 0 40.448-13.619 47.821-32.87 23.398-81.254 105.779-307.354 105.779-307.354v0 0c0 0 82.381 226.099 105.779 307.354 7.373 19.251 26.010 32.87 47.821 32.87 28.262 0 51.2-22.938 51.2-51.2-5.222-144.998-94.413-404.019-70.246-552.806 45.978 52.531 66.97 115.866 94.157 191.283 18.227 50.586 88.269 32.102 77.363-18.227z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["man"],"grid":20},"attrs":[],"properties":{"id":220,"order":221,"prevSize":20,"code":59867,"name":"man1"},"setIdx":0,"setId":1,"iconIdx":219},{"icon":{"paths":["M995.686 190.362l-307.2-153.6c-14.387-7.219-31.386-7.219-45.824 0l-288.256 144.128-287.027-95.693c-15.667-5.222-32.768-2.611-46.131 7.066-13.363 9.626-21.248 25.088-21.248 41.523v665.651c0 19.405 10.957 37.12 28.314 45.773l307.2 153.6c7.219 3.584 15.053 5.427 22.886 5.427s15.718-1.792 22.886-5.427l288.256-144.077 287.027 95.693c15.616 5.12 32.768 2.509 46.131-7.117s21.248-25.088 21.248-41.472v-665.702c0.051-19.405-10.906-37.12-28.262-45.773zM409.6 267.827l204.8-102.4v602.266l-204.8 102.4v-602.266zM102.4 204.8l204.8 68.25v597.043l-204.8-102.4v-562.893zM921.6 830.822l-204.8-68.301v-597.094l204.8 102.4v562.995z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["map"],"grid":20},"attrs":[],"properties":{"id":221,"order":222,"prevSize":20,"code":59868,"name":"map1"},"setIdx":0,"setId":1,"iconIdx":220},{"icon":{"paths":["M1002.547 299.008c-2.202-24.013-23.654-41.114-47.104-37.376-89.19 14.234-298.291 96.768-443.443 96.768s-354.253-82.534-443.443-96.768c-23.45-3.738-44.851 13.312-47.104 37.325-7.27 78.438-21.453 287.283-21.453 318.925 0 42.496 177.766 139.878 307.2 139.878 125.542 0 151.040-139.878 204.8-139.878s79.258 139.878 204.8 139.878c129.434 0 307.2-97.382 307.2-139.878 0-31.642-14.182-240.486-21.453-318.874zM392.192 548.864c-18.074 16.282-68.352 54.784-129.587 42.752s-98.253-67.738-110.899-90.010c-3.072-5.427-2.099-12.288 2.253-16.23 18.074-16.282 68.352-54.784 129.638-42.752 61.235 12.032 98.253 67.738 110.899 90.010 3.021 5.427 2.048 12.288-2.304 16.23zM872.294 501.606c-12.595 22.323-49.613 77.978-110.899 90.010-61.235 12.032-111.565-26.47-129.587-42.752-4.403-3.942-5.325-10.803-2.304-16.23 12.595-22.323 49.613-77.978 110.899-90.010 61.235-12.032 111.565 26.47 129.587 42.752 4.403 3.942 5.376 10.803 2.304 16.23z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["mask"],"grid":20},"attrs":[],"properties":{"id":222,"order":223,"prevSize":20,"code":59869,"name":"mask"},"setIdx":0,"setId":1,"iconIdx":221},{"icon":{"paths":["M512 512c27.034 0 52.531 5.325 77.005 13.107l-311.142-466.688c-3.021-4.506-8.038-7.219-13.466-7.219h-182.067c-5.99 0-9.626 6.707-6.246 11.725l319.027 478.566c35.174-18.227 74.547-29.491 116.89-29.491zM941.67 51.2h-182.067c-5.427 0-10.445 2.714-13.466 7.219l-195.738 293.581 102.4 153.6 295.117-442.675c3.328-5.018-0.256-11.725-6.246-11.725zM512 563.2c-113.101 0-204.8 91.699-204.8 204.8s91.699 204.8 204.8 204.8 204.8-91.699 204.8-204.8c0-113.101-91.699-204.8-204.8-204.8zM620.134 773.99c3.174 3.277 2.662 8.090-1.126 10.65s-4.864 7.834-2.509 11.725c2.406 3.891 0.922 8.448-3.328 10.189s-6.4 6.656-4.864 10.957-0.87 8.448-5.325 9.267-7.629 5.171-7.014 9.677-2.611 8.090-7.168 7.936c-4.557-0.154-8.55 3.482-8.909 7.987s-4.25 7.373-8.653 6.298-9.114 1.587-10.394 5.99-5.683 6.349-9.779 4.352c-4.096-1.997-9.216-0.307-11.366 3.686s-6.861 5.018-10.496 2.202-8.96-2.253-11.878 1.229-7.731 3.482-10.701 0-8.294-4.045-11.878-1.229-8.294 1.792-10.496-2.202-7.27-5.683-11.366-3.686c-4.096 1.997-8.499 0-9.779-4.352s-5.939-7.066-10.394-5.99-8.346-1.741-8.653-6.298-4.301-8.141-8.858-8.038c-4.557 0.154-7.782-3.43-7.168-7.936s-2.56-8.858-7.014-9.677-6.912-4.966-5.325-9.267-0.666-9.216-4.864-10.957-5.683-6.298-3.328-10.189c2.406-3.891 1.28-9.165-2.509-11.725s-4.25-7.373-1.126-10.65c3.174-3.277 3.174-8.653 0-11.981s-2.662-8.090 1.126-10.65 4.864-7.834 2.509-11.725c-2.406-3.891-0.922-8.448 3.328-10.189s6.4-6.656 4.864-10.957 0.87-8.448 5.325-9.267 7.629-5.171 7.014-9.677 2.611-8.090 7.168-7.936c4.557 0.154 8.55-3.482 8.909-7.987s4.25-7.373 8.653-6.298 9.114-1.587 10.394-5.99 5.683-6.349 9.779-4.352c4.096 1.997 9.216 0.307 11.366-3.686s6.861-5.018 10.496-2.202 8.96 2.253 11.878-1.229 7.731-3.482 10.701 0 8.294 4.045 11.878 1.229 8.294-1.792 10.496 2.202 7.27 5.683 11.366 3.686c4.096-1.997 8.499 0 9.779 4.352s5.939 7.066 10.394 5.99 8.346 1.741 8.653 6.298 4.352 8.141 8.909 7.987c4.557-0.154 7.782 3.43 7.168 7.936s2.56 8.858 7.014 9.677 6.912 4.966 5.325 9.267 0.666 9.216 4.864 10.957 5.683 6.298 3.328 10.189c-2.406 3.891-1.28 9.165 2.509 11.725s4.25 7.373 1.126 10.65-3.226 8.755-0.051 12.032z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["medal"],"grid":20},"attrs":[],"properties":{"id":223,"order":224,"prevSize":20,"code":59870,"name":"medal"},"setIdx":0,"setId":1,"iconIdx":222},{"icon":{"paths":["M881.818 359.936c-81.101-188.723-211.558-332.288-277.555-305.51-112.077 45.619 66.765 264.397-483.686 488.090-47.565 19.405-59.597 96.666-39.68 142.95 19.866 46.182 84.89 92.211 132.454 72.909 8.243-3.379 38.451-13.107 38.451-13.107 33.946 45.619 69.478 18.586 82.125 47.514 15.155 34.816 48.077 110.49 59.29 136.192s36.608 49.51 55.040 42.496c18.381-7.014 80.998-30.822 104.96-39.885 23.962-9.114 29.645-30.515 22.323-47.309-7.885-18.176-40.243-23.501-49.51-44.698-9.216-21.094-39.373-88.986-48.026-110.387-11.776-29.082 13.261-52.787 49.664-56.525 250.573-26.214 297.421 128.614 382.72 93.901 65.894-26.88 52.48-218.061-28.57-406.63zM853.606 665.907c-14.694 5.888-113.306-71.782-176.282-218.47-63.027-146.586-55.091-280.576-40.448-286.566 14.643-5.888 110.848 87.91 173.824 234.496 63.027 146.586 57.549 264.55 42.906 270.541z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["megaphone"],"grid":20},"attrs":[],"properties":{"id":224,"order":225,"prevSize":20,"code":59871,"name":"megaphone"},"setIdx":0,"setId":1,"iconIdx":223},{"icon":{"paths":["M839.68 460.8h-655.36c-28.262 0-30.72 22.886-30.72 51.2s2.458 51.2 30.72 51.2h655.36c28.262 0 30.72-22.886 30.72-51.2s-2.458-51.2-30.72-51.2zM839.68 665.6h-655.36c-28.262 0-30.72 22.886-30.72 51.2s2.458 51.2 30.72 51.2h655.36c28.262 0 30.72-22.886 30.72-51.2s-2.458-51.2-30.72-51.2zM184.32 358.4h655.36c28.262 0 30.72-22.886 30.72-51.2s-2.458-51.2-30.72-51.2h-655.36c-28.262 0-30.72 22.886-30.72 51.2s2.458 51.2 30.72 51.2z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["menu"],"grid":20},"attrs":[],"properties":{"id":225,"order":226,"prevSize":20,"code":59872,"name":"menu1"},"setIdx":0,"setId":1,"iconIdx":224},{"icon":{"paths":["M921.6 307.2v358.4c0 56.32-46.080 102.4-102.4 102.4h-204.8v153.6l-204.8-153.6h-204.8c-56.371 0-102.4-46.080-102.4-102.4v-358.4c0-56.32 46.029-102.4 102.4-102.4h614.4c56.32 0 102.4 46.080 102.4 102.4z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["message"],"grid":20},"attrs":[],"properties":{"id":226,"order":227,"prevSize":20,"code":59873,"name":"message"},"setIdx":0,"setId":1,"iconIdx":225},{"icon":{"paths":["M839.629 391.322v141.158c0 114.483-84.122 237.005-276.429 253.901v135.219h133.12c11.264 0 20.48 9.216 20.48 20.48v61.44c0 11.315-9.267 20.48-20.48 20.48h-368.64c-11.264 0-20.48-9.216-20.48-20.48v-61.44c0-11.264 9.216-20.48 20.429-20.48h133.171v-135.219c-192.41-16.896-276.48-139.418-276.48-253.901v-141.158c0-11.315 9.216-20.48 20.48-20.48h30.72c11.264 0 20.48 9.216 20.48 20.48v141.158c0 68.403 53.914 184.32 256 184.32 202.035 0 256-115.917 256-184.32v-141.158c0-11.315 9.216-20.48 20.429-20.48h30.771c11.264-0.051 20.429 9.165 20.429 20.48zM512 614.4c120.115 0 153.6-49.408 153.6-81.92v-161.69h-307.2v161.69c0 32.512 33.382 81.92 153.6 81.92zM665.6 81.92c0-32.614-33.485-81.92-153.6-81.92-120.218 0-153.6 49.306-153.6 81.92v217.19h307.2v-217.19z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["mic"],"grid":20},"attrs":[],"properties":{"id":227,"order":228,"prevSize":20,"code":59874,"name":"mic1"},"setIdx":0,"setId":1,"iconIdx":226},{"icon":{"paths":["M819.2 512c0 28.314-2.458 51.2-30.771 51.2h-552.858c-28.262 0-30.771-22.886-30.771-51.2s2.509-51.2 30.771-51.2h552.909c28.262 0 30.72 22.886 30.72 51.2z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["minus"],"grid":20},"attrs":[],"properties":{"id":228,"order":229,"prevSize":20,"code":59875,"name":"minus1"},"setIdx":0,"setId":1,"iconIdx":227},{"icon":{"paths":["M717.005 0h-410.010c-56.422 0-102.195 45.773-102.195 102.195v819.558c0 56.474 45.773 102.246 102.195 102.246h409.958c56.474 0 102.246-45.773 102.246-102.195v-819.61c0-56.422-45.773-102.195-102.195-102.195zM512 972.8c-35.328 0-64-22.886-64-51.2s28.672-51.2 64-51.2 64 22.886 64 51.2-28.672 51.2-64 51.2zM716.8 819.2h-409.6v-716.8h409.6v716.8z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["mobile"],"grid":20},"attrs":[],"properties":{"id":229,"order":230,"prevSize":20,"code":59876,"name":"mobile1"},"setIdx":0,"setId":1,"iconIdx":228},{"icon":{"paths":["M62.874 557.619c-11.315 7.578-14.95 23.552-8.141 35.328l66.355 114.893c6.81 11.776 22.426 16.64 34.662 10.65l202.65-98.15v352.461h102.4v-402.125l208.435-101.018-134.144-232.448-472.218 320.41zM944.998 155.494c-57.395-99.328-184.525-133.376-283.955-75.981-46.592 26.88-77.21 69.581-92.211 117.197l152.371 263.987c48.691 10.854 101.018 5.632 147.712-21.248 99.43-57.395 133.478-184.474 76.083-283.955z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["modern-mic"],"grid":20},"attrs":[],"properties":{"id":230,"order":231,"prevSize":20,"code":59877,"name":"modern-mic"},"setIdx":0,"setId":1,"iconIdx":229},{"icon":{"paths":["M702.413 92.16c35.123 19.712 68.198 44.39 98.099 74.189 175.104 175.206 175.104 459.059 0 634.163s-459.008 175.104-634.163 0c-29.85-29.901-54.528-63.027-74.189-98.099 170.752 95.59 390.81 71.014 536.013-74.189 145.254-145.254 169.882-365.261 74.24-536.064z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["moon"],"grid":20},"attrs":[],"properties":{"id":231,"order":232,"prevSize":20,"code":59878,"name":"moon"},"setIdx":0,"setId":1,"iconIdx":230},{"icon":{"paths":["M788.582 737.382l-134.502-385.792c-36.966-106.138-151.859-164.864-260.71-135.834l-101.171-196.352c-9.165-17.715-30.618-24.525-48.026-15.155-17.357 9.37-24.013 31.437-14.797 49.203l98.765 191.59c-78.694 52.224-119.603 151.245-93.645 244.429l109.517 394.035c30.822 110.694 157.696 167.117 285.235 128.102 125.901-44.186 197.12-165.734 159.334-274.227zM455.629 456.858c-37.376 12.288-77.363-8.806-89.344-47.155-12.032-38.298 8.602-79.258 45.926-91.546 37.376-12.288 77.414 8.806 89.395 47.104s-8.602 79.309-45.978 91.597z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["mouse"],"grid":20},"attrs":[],"properties":{"id":232,"order":233,"prevSize":20,"code":59879,"name":"mouse"},"setIdx":0,"setId":1,"iconIdx":231},{"icon":{"paths":["M819.2 51.2h-614.4c-28.314 0-51.2 22.886-51.2 51.2v819.2c0 28.262 22.886 51.2 51.2 51.2h614.4c28.314 0 51.2-22.938 51.2-51.2v-819.2c0-28.262-22.886-51.2-51.2-51.2zM655.104 589.773c-9.472 19.558-19.098 20.582-14.899 0 10.803-53.197 3.482-167.475-77.005-180.173v243.2c0 49.818-22.938 93.184-83.917 112.794-59.187 18.893-125.389-0.819-140.902-43.315s19.302-94.208 77.722-115.507c32.614-11.878 70.4-14.95 95.898-5.171v-345.6h51.2c0 120.576 208.128 94.157 91.904 333.773z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["music"],"grid":20},"attrs":[],"properties":{"id":233,"order":234,"prevSize":20,"code":59880,"name":"music1"},"setIdx":0,"setId":1,"iconIdx":232},{"icon":{"paths":["M270.029 354.048c10.24 0 20.173 1.485 29.491 4.403 35.328-39.578 74.496-75.622 116.89-107.52-1.792-7.475-2.765-15.309-2.765-23.296 0-11.11 1.843-21.811 5.222-31.795-47.565-33.997-99.174-62.618-154.163-84.685-51.456 31.795-96.358 73.267-132.198 121.907 26.573 47.104 58.163 90.982 94.106 130.918 13.107-6.349 27.802-9.933 43.418-9.933zM169.779 454.246c0-14.080 2.97-27.494 8.141-39.578-32.154-35.43-61.286-73.523-86.784-114.125-32 63.59-50.176 135.424-50.176 211.507 0 88.013 24.269 170.394 66.304 240.896 15.053-84.685 43.571-164.813 82.944-238.182-12.8-16.794-20.429-37.837-20.429-60.518zM513.843 127.437c26.47 0 50.432 10.291 68.403 27.085 52.275-22.477 107.315-39.782 164.608-50.79-69.171-39.885-149.35-62.771-234.854-62.771-58.317 0-114.125 10.701-165.683 30.106 40.909 20.224 79.923 43.776 116.582 70.4 14.95-8.909 32.307-14.029 50.944-14.029zM663.654 599.45c6.246-13.005 15.104-24.525 26.061-33.587-29.594-90.982-76.442-174.285-136.806-245.914-11.981 5.12-25.19 7.885-39.117 7.885-21.76 0-41.779-7.014-58.214-18.688-36.352 27.597-69.99 58.522-100.557 92.314 9.626 15.309 15.206 33.382 15.206 52.787 0 10.394-1.587 20.48-4.608 30.003 87.91 58.675 189.133 99.021 298.035 115.2zM793.651 734.771c1.331 18.995 2.099 38.093 2.099 57.395 0 33.997-2.15 67.482-6.246 100.403 79.872-58.317 140.698-141.21 171.366-237.517-36.352 8.806-73.626 15.104-111.667 18.688-8.858 27.494-29.286 49.613-55.552 61.030zM640.205 666.829c-116.326-19.302-224.102-63.693-317.952-127.181-15.258 9.318-33.126 14.797-52.275 14.797-7.117 0-13.926-0.717-20.582-2.099-44.902 85.094-73.626 180.070-81.869 280.781 44.851 48.128 99.533 86.886 161.024 112.896 76.39-117.402 183.091-214.477 311.654-279.194zM828.211 162.867c-75.52 7.322-147.61 26.317-214.682 54.682 0.307 3.379 0.512 6.707 0.512 10.086 0 15.821-3.789 30.72-10.291 43.981 67.123 78.797 119.142 170.496 152.013 270.899 40.806 0.819 75.622 25.702 90.624 61.184 45.363-4.608 89.498-13.312 131.994-25.805 3.072-21.504 4.71-43.52 4.71-65.894-0.051-138.445-59.75-262.963-154.88-349.133zM690.637 720.333c-120.013 56.218-220.365 142.797-293.018 248.627 36.608 9.165 74.906 14.080 114.381 14.080 71.014 0 138.342-15.821 198.758-43.981 9.728-47.514 14.848-96.614 14.848-146.893 0-18.176-0.819-36.198-2.202-54.016-12.083-3.891-23.194-9.882-32.768-17.818z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["network"],"grid":20},"attrs":[],"properties":{"id":234,"order":235,"prevSize":20,"code":59881,"name":"network"},"setIdx":0,"setId":1,"iconIdx":233},{"icon":{"paths":["M930.509 93.491c-56.422-56.422-106.598-39.782-106.598-39.782l-442.317 441.958-74.394 221.133 221.030-74.445 442.061-442.266c0 0 16.589-50.176-39.782-106.598zM542.976 594.176l-24.115 24.064-75.418 25.6c-5.325-12.288-11.981-24.422-25.498-37.888-13.517-13.517-25.6-20.173-37.888-25.498l25.6-75.418 24.115-24.064c0 0 39.731-4.557 78.694 34.458 39.014 38.963 34.509 78.746 34.509 78.746zM819.2 870.4h-665.6v-665.6h256l102.4-102.4h-358.4c-56.32 0-102.4 46.080-102.4 102.4v665.6c0 56.32 46.080 102.4 102.4 102.4h665.6c56.32 0 102.4-46.080 102.4-102.4v-358.4l-102.4 102.4v256z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["new-message"],"grid":20},"attrs":[],"properties":{"id":235,"order":236,"prevSize":20,"code":59882,"name":"new-message"},"setIdx":0,"setId":1,"iconIdx":234},{"icon":{"paths":["M956.928 632.013l-88.422-78.746c-25.6-22.784-25.6-60.109 0-82.893l88.422-78.797c25.6-22.784 18.79-43.981-15.155-47.309l-117.248-11.11c-33.894-3.174-52.224-32.41-40.499-64.819l62.208-173.21c11.674-32.512-2.611-44.288-31.693-26.317l-138.291 85.504c-29.082 18.125-66.714 8.192-83.507-21.811l-50.074-89.395c-16.845-30.106-44.646-30.208-61.798-0.41l-46.541 80.896c-17.254 29.952-56.73 42.65-87.706 28.467l-81.92-37.581c-31.13-14.336-54.938 2.15-53.094 36.659l4.403 82.688c1.894 34.509-23.603 69.99-56.525 78.899l-79.104 21.197c-32.87 8.909-38.912 34.816-13.312 57.6l88.422 78.797c25.6 22.784 25.6 60.109 0 82.893l-88.422 78.797c-25.6 22.784-18.842 44.902 15.002 48.998l107.264 13.005c33.843 4.096 52.685 34.304 41.882 67.123l-54.989 166.81c-10.803 32.819 4.608 45.517 34.202 28.416l126.106-73.011c29.594-17.101 69.427-7.68 88.525 20.89l52.326 78.797c19.046 28.621 47.667 27.085 63.488-3.482l46.029-88.73c15.872-30.618 53.862-43.11 84.378-27.802l88.781 44.39c30.618 15.206 54.118-0.512 52.275-34.918l-4.454-82.79c-1.792-34.509 23.603-69.888 56.627-78.797l79.002-21.299c32.973-8.909 39.014-34.816 13.414-57.6zM563.2 716.8h-102.4v-102.4h102.4v102.4zM563.2 563.2h-102.4v-256h102.4v256z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["new"],"grid":20},"attrs":[],"properties":{"id":236,"order":237,"prevSize":20,"code":59883,"name":"new"},"setIdx":0,"setId":1,"iconIdx":235},{"icon":{"paths":["M716.8 256h-204.8v102.4h204.8v-102.4zM716.8 409.6h-204.8v51.2h204.8v-51.2zM460.8 256h-153.6v204.8h153.6v-204.8zM460.8 563.2h256v-51.2h-256v51.2zM614.4 665.6h102.4v-51.2h-102.4v51.2zM716.8 716.8h-409.6v51.2h409.6v-51.2zM563.2 614.4h-256v51.2h256v-51.2zM409.6 512h-102.4v51.2h102.4v-51.2zM870.4 51.2h-716.8c-28.314 0-51.2 22.886-51.2 51.2v819.2c0 28.262 22.886 51.2 51.2 51.2h716.8c28.314 0 51.2-22.938 51.2-51.2v-819.2c0-28.262-22.886-51.2-51.2-51.2zM819.2 870.4h-614.4v-716.8h614.4v716.8z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["news"],"grid":20},"attrs":[],"properties":{"id":237,"order":238,"prevSize":20,"code":59884,"name":"news"},"setIdx":0,"setId":1,"iconIdx":236},{"icon":{"paths":["M766.515 483.226c-21.606 33.587-33.075 19.2-26.624 0 17.203-50.842 17.818-231.834-125.491-254.413l-0.102 590.387c0 84.838-88.832 204.8-255.898 204.8-84.838 0-153.6-44.595-153.6-128 0-108.493 98.662-174.080 204.8-174.080 67.994 0 102.4 20.48 102.4 20.48v-742.4h102.4c0 137.011 306.483 242.893 152.115 483.226z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["note"],"grid":20},"attrs":[],"properties":{"id":238,"order":239,"prevSize":20,"code":59885,"name":"note"},"setIdx":0,"setId":1,"iconIdx":237},{"icon":{"paths":["M768 429.056v441.344h-614.4v-614.4h441.344c-3.738-16.486-6.144-33.536-6.144-51.2s2.406-34.714 6.144-51.2h-441.344c-56.422 0-102.4 46.080-102.4 102.4v614.4c0 56.32 46.080 102.4 102.4 102.4h614.4c56.32 0 102.4-46.080 102.4-102.4v-441.344c-16.486 3.738-33.536 6.144-51.2 6.144s-34.714-2.406-51.2-6.144zM819.2 51.2c-84.838 0-153.6 68.762-153.6 153.6s68.762 153.6 153.6 153.6 153.6-68.762 153.6-153.6-68.762-153.6-153.6-153.6z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["notification"],"grid":20},"attrs":[],"properties":{"id":239,"order":240,"prevSize":20,"code":59886,"name":"notification1"},"setIdx":0,"setId":1,"iconIdx":238},{"icon":{"paths":["M696.32 153.6h-337.92v-153.6h-102.4v952.32c0 39.424 32.205 71.68 71.578 71.68h368.742c39.373 0 71.68-32.307 71.68-71.68v-726.989c0-39.526-32.307-71.731-71.68-71.731zM409.6 768c-35.379 0-64-22.886-64-51.2s28.621-51.2 64-51.2 64 22.886 64 51.2-28.621 51.2-64 51.2zM473.6 870.4c0 28.314-28.621 51.2-64 51.2s-64-22.886-64-51.2 28.621-51.2 64-51.2 64 22.886 64 51.2zM358.4 563.2v-307.2h307.2v307.2h-307.2zM614.4 768c-35.379 0-64-22.886-64-51.2s28.621-51.2 64-51.2 64 22.886 64 51.2-28.621 51.2-64 51.2zM678.4 870.4c0 28.314-28.621 51.2-64 51.2s-64-22.886-64-51.2 28.621-51.2 64-51.2 64 22.886 64 51.2z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["old-mobile"],"grid":20},"attrs":[],"properties":{"id":240,"order":241,"prevSize":20,"code":59887,"name":"old-mobile"},"setIdx":0,"setId":1,"iconIdx":239},{"icon":{"paths":["M883.507 627.354c-4.915-34.15-31.283-60.774-65.229-68.71-131.942-30.925-165.018-106.906-170.598-191.181-23.398-4.352-65.024-9.062-135.68-9.062s-112.282 4.71-135.68 9.062c-5.581 84.275-38.656 160.256-170.598 191.181-33.946 7.987-60.314 34.56-65.229 68.71l-25.446 176.23c-8.96 62.054 36.608 118.016 99.994 118.016h593.92c63.334 0 108.954-55.962 99.994-118.016l-25.446-176.23zM512 793.19c-71.424 0-129.331-57.344-129.331-128s57.907-128 129.331-128 129.331 57.344 129.331 128-57.958 128-129.331 128zM1021.44 307.2c-1.229-76.8-196.71-204.749-509.44-204.8-312.781 0.051-508.262 128-509.44 204.8s1.075 176.742 129.792 160.102c150.579-19.507 141.312-72.090 141.312-147.251 0-52.429 122.47-65.075 238.336-65.075s238.285 12.646 238.336 65.075c0 75.162-9.267 127.744 141.312 147.251 128.666 16.64 130.97-83.302 129.792-160.102z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["old-phone"],"grid":20},"attrs":[],"properties":{"id":241,"order":242,"prevSize":20,"code":59888,"name":"old-phone"},"setIdx":0,"setId":1,"iconIdx":240},{"icon":{"paths":["M805.888 133.53c-180.634-60.723-361.779-49.203-548.864 65.229-146.074 89.242-241.562 311.091-210.074 470.118 37.274 187.955 222.771 306.944 473.242 238.131 270.080-74.189 335.309-232.755 326.605-273.101s-136.448-84.582-87.962-179.098c60.826-118.426 160.205-58.829 203.878-83.046 43.776-24.166 27.597-176.23-156.826-238.234zM619.213 681.677c-40.858 11.162-83.098-13.107-94.362-54.221-11.315-41.216 12.698-83.507 53.555-94.669s83.046 13.005 94.362 54.221c11.264 41.114-12.698 83.507-53.555 94.669z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["palette"],"grid":20},"attrs":[],"properties":{"id":242,"order":243,"prevSize":20,"code":59889,"name":"palette"},"setIdx":0,"setId":1,"iconIdx":241},{"icon":{"paths":["M954.368 134.861c-17.613 6.195-886.835 312.525-903.987 318.566-14.541 5.12-17.766 17.664-0.512 24.525 20.531 8.243 194.355 77.875 194.355 77.875v0l115.2 46.131c0 0 554.906-407.45 562.381-412.979 7.578-5.53 16.282 4.864 10.803 10.803-5.478 5.99-402.995 435.866-402.995 435.866v0.102l-23.142 25.754 30.669 16.486c0 0 238.080 128.205 255.078 137.318 14.899 7.987 34.202 1.382 38.502-17.101 5.069-21.811 145.664-627.763 148.787-641.28 4.045-17.562-7.578-28.262-25.139-22.067zM358.4 878.694c0 12.595 7.117 16.128 16.947 7.219 12.851-11.725 145.92-131.123 145.92-131.123l-162.867-84.173v208.077z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["paper-plane"],"grid":20},"attrs":[],"properties":{"id":243,"order":244,"prevSize":20,"code":59890,"name":"paper-plane"},"setIdx":0,"setId":1,"iconIdx":242},{"icon":{"paths":["M752.128 136.243c-96.973-70.605-165.99-69.069-192.205-64.819-7.373 1.178-13.568 5.427-17.92 11.418l-352.41 486.246c-14.182 19.558-22.374 42.803-23.654 66.918l-15.155 287.949c-1.075 20.736 19.558 35.738 38.912 28.314l269.107-102.912c22.682-8.704 42.394-23.808 56.627-43.469l352.256-486.093c4.557-6.298 6.4-13.978 5.12-21.658-4.301-26.931-24.934-92.262-120.678-161.894zM459.622 791.808l-104.602 40.397c-4.096 1.587-8.653 0.307-11.315-3.174-13.466-17.152-29.491-34.15-55.040-52.736-25.549-18.534-46.643-28.57-67.072-36.147-4.096-1.536-6.707-5.427-6.451-9.83l6.246-111.923 28.109-38.656c0 0 62.925-8.653 145.050 51.098 82.022 59.699 93.235 122.266 93.235 122.266l-28.16 38.707z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["pencil"],"grid":20},"attrs":[],"properties":{"id":244,"order":245,"prevSize":20,"code":59891,"name":"pencil1"},"setIdx":0,"setId":1,"iconIdx":243},{"icon":{"paths":["M574.925 574.925c-81.050 80.998-174.95 158.515-212.070 121.395-53.094-53.094-85.862-99.379-203.008-5.222-117.094 94.106-27.136 156.877 24.32 208.282 59.392 59.392 280.781 3.174 499.61-215.603 218.778-218.829 274.842-440.218 215.398-499.61-51.456-51.507-113.92-141.414-208.026-24.32-94.157 117.094-47.923 149.862 5.274 203.008 36.966 37.12-40.499 131.021-121.498 212.070z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["phone"],"grid":20},"attrs":[],"properties":{"id":245,"order":246,"prevSize":20,"code":59892,"name":"phone1"},"setIdx":0,"setId":1,"iconIdx":244},{"icon":{"paths":["M563.2 49.050v462.797c0 28.365-22.989 51.354-51.354 51.354h-462.797c25.498 233.216 222.976 414.72 462.95 414.72 257.331 0 465.92-208.589 465.92-465.92 0-240.026-181.504-437.453-414.72-462.95zM460.8 49.050c-216.371 23.654-388.096 195.379-411.75 411.75h411.75v-411.75z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["pie-chart"],"grid":20},"attrs":[],"properties":{"id":246,"order":247,"prevSize":20,"code":59893,"name":"pie-chart1"},"setIdx":0,"setId":1,"iconIdx":245},{"icon":{"paths":["M244.429 782.694l-107.776 166.4 11.469 54.426 54.272-11.622 107.725-166.298c-11.469-6.144-22.835-12.698-33.843-19.968-11.162-7.219-21.811-14.95-31.846-22.938zM700.723 724.582c0.717-1.485 1.178-3.123 1.843-4.71 2.714-5.99 5.12-11.981 7.066-18.278 0.307-1.126 0.461-2.253 0.819-3.277 1.997-6.963 3.686-13.824 5.018-20.89 0-0.358 0-0.614 0-1.075 9.984-59.853-7.424-126.618-47.258-186.931l56.832-87.757c65.485 8.346 122.112-8.141 149.35-50.278 47.258-72.858-10.24-194.15-128.256-271.002-118.118-76.902-252.058-80.128-299.213-7.373-27.341 42.189-19.354 100.71 15.002 157.338l-56.934 87.757c-71.117-11.93-139.059-0.819-189.594 32.768-0.307 0.102-0.666 0.205-0.87 0.41-5.888 3.994-11.622 8.397-16.998 13.005-0.87 0.717-1.894 1.382-2.611 2.099-5.018 4.301-9.523 9.114-13.875 13.926-1.024 1.229-2.458 2.304-3.43 3.584-5.427 6.195-10.445 12.749-14.848 19.712-70.861 109.21-10.394 274.483 134.81 369.101 145.306 94.618 320.512 82.637 391.219-26.573 4.454-6.912 8.55-14.131 11.93-21.555zM658.995 214.733c-45.414-29.542-67.584-76.134-49.408-104.243 18.125-28.006 69.683-26.726 114.995 2.816 45.517 29.542 67.482 76.237 49.408 104.243s-69.53 26.726-114.995-2.816z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["pin"],"grid":20},"attrs":[],"properties":{"id":247,"order":248,"prevSize":20,"code":59894,"name":"pin"},"setIdx":0,"setId":1,"iconIdx":246},{"icon":{"paths":["M819.2 512c0 28.314-2.458 51.2-30.771 51.2h-225.229v225.229c0 28.262-22.886 30.771-51.2 30.771s-51.2-2.509-51.2-30.771v-225.229h-225.229c-28.262 0-30.771-22.886-30.771-51.2s2.509-51.2 30.771-51.2h225.229v-225.229c0-28.314 22.886-30.771 51.2-30.771s51.2 2.458 51.2 30.771v225.229h225.229c28.314 0 30.771 22.886 30.771 51.2z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["plus"],"grid":20},"attrs":[],"properties":{"id":248,"order":249,"prevSize":20,"code":59895,"name":"plus1"},"setIdx":0,"setId":1,"iconIdx":247},{"icon":{"paths":["M819.2 102.4h-410.675c-56.269 0-101.325 45.056-101.325 101.376v410.624c0 56.32 46.080 102.4 102.4 102.4h409.6c56.32 0 102.4-46.080 102.4-102.4v-409.6c0-56.32-46.080-102.4-102.4-102.4zM819.2 614.4h-409.6v-409.6h409.6v409.6zM204.8 512h-102.4v307.2c0 56.32 46.080 102.4 102.4 102.4h307.2v-102.4h-307.2v-307.2z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["popup"],"grid":20},"attrs":[],"properties":{"id":249,"order":250,"prevSize":20,"code":59896,"name":"popup"},"setIdx":0,"setId":1,"iconIdx":248},{"icon":{"paths":["M0 716.8v76.698c0 14.182 11.52 25.702 25.702 25.702h51.046c14.131 0 25.651-11.52 25.651-25.702v-76.698c0-49.101 41.011-116.378 102.4-142.285v-107.776c-118.579 27.443-204.8 146.125-204.8 250.061zM617.728 240.691l-129.536 97.178c-17.766 13.312-39.373 20.531-61.594 20.531h-119.142c-28.416 0-51.456 23.040-51.456 51.456v204.339c0 28.365 23.040 51.405 51.456 51.405h119.142c22.221 0 43.827 7.219 61.594 20.531l129.587 97.178c31.027 23.296 68.813 35.891 107.622 35.891h93.798v-614.4h-93.798c-38.81 0-76.595 12.595-107.674 35.891zM870.4 307.2v102.4h153.6v-102.4h-153.6zM870.4 716.8h153.6v-102.4h-153.6v102.4z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["power-plug"],"grid":20},"attrs":[],"properties":{"id":250,"order":251,"prevSize":20,"code":59897,"name":"power-plug"},"setIdx":0,"setId":1,"iconIdx":249},{"icon":{"paths":["M656.64 545.434c6.042-13.21 22.784-25.446 37.222-27.085s27.597-14.848 29.235-29.286c1.741-14.336 13.926-31.13 27.085-37.222 13.21-6.093 21.658-22.682 18.893-36.864-2.97-14.234 3.482-33.946 14.131-43.725 10.701-9.933 13.619-28.314 6.502-41.011-7.117-12.595-7.117-33.331 0-45.926 7.117-12.749 4.198-31.13-6.502-41.011-10.65-9.882-17.050-29.542-14.131-43.725 2.765-14.234-5.683-30.874-18.893-36.966-13.107-6.093-25.344-22.784-27.085-37.222-1.69-14.336-14.848-27.546-29.235-29.286-14.438-1.69-31.181-13.926-37.222-27.034-6.144-13.21-22.733-21.658-36.966-18.739-14.234 2.816-33.894-3.584-43.725-14.234-9.882-10.752-28.314-13.619-40.96-6.502s-33.382 7.117-45.978 0c-12.646-7.219-31.027-4.352-41.011 6.4-9.779 10.65-29.44 17.050-43.725 14.234-14.182-2.867-30.822 5.581-36.864 18.79-6.093 13.107-22.835 25.344-37.274 26.982-14.438 1.792-27.597 14.95-29.286 29.338-1.741 14.387-13.875 31.13-27.085 37.171-13.107 6.093-21.606 22.733-18.739 36.966 2.816 14.182-3.584 33.894-14.234 43.725s-13.619 28.262-6.502 41.011c7.117 12.595 7.117 33.331 0 45.926-7.117 12.698-4.198 31.078 6.502 41.062 10.701 9.728 17.050 29.44 14.234 43.725-2.867 14.182 5.632 30.822 18.739 36.864 13.21 6.093 25.344 22.886 27.034 37.222 1.741 14.438 14.848 27.648 29.286 29.286s31.181 13.926 37.274 27.085c6.042 13.107 22.682 21.555 36.864 18.739 14.234-2.816 33.946 3.533 43.725 14.234 9.933 10.65 28.314 13.619 41.011 6.502 12.595-7.117 33.331-7.117 45.978 0s31.078 4.147 40.96-6.502c9.882-10.752 29.491-17.050 43.725-14.234 14.285 2.867 30.925-5.581 37.018-18.688zM512 481.229c-96.154 0-174.080-77.978-174.080-174.029 0-96.154 77.926-174.131 174.080-174.131s174.080 77.978 174.080 174.131c0 96.051-77.978 174.029-174.080 174.029zM305.92 584.141l-63.642 360.909 160.154-23.757 142.387 77.107 63.386-359.475c-30.566 8.858-62.822 13.875-96.256 13.875-77.261-0-148.429-25.702-206.029-68.659zM714.803 586.598c-15.923 11.571-32.87 21.811-50.688 30.566l-38.298 216.883 172.493-93.594-83.507-153.856z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["price-ribbon"],"grid":20},"attrs":[],"properties":{"id":251,"order":252,"prevSize":20,"code":59898,"name":"price-ribbon"},"setIdx":0,"setId":1,"iconIdx":250},{"icon":{"paths":["M992.666 20.736c-5.683-16.077-23.245-24.576-39.373-18.995s-24.627 23.296-19.046 39.424c47.565 136.704-46.848 238.797-118.835 293.478l-29.082-41.677c-9.779-13.978-31.642-25.6-48.64-25.805l-163.226 0.717c-16.998-0.307-42.24 7.475-56.166 17.306l-480.973 337.254c-23.296 16.384-28.928 48.486-12.646 71.885l218.573 312.73c16.384 23.296 42.547 20.48 65.894 4.198l480.973-337.306c13.824-9.779 29.798-30.874 35.43-47.002l51.098-161.024c5.632-16.077 2.202-40.602-7.578-54.579l-17.715-25.395c96.666-74.086 197.018-205.005 141.312-365.21zM768.87 499.866c-37.222 26.112-88.627 16.998-114.688-20.275-26.163-37.376-17.050-88.781 20.224-114.995 29.594-20.736 67.994-19.251 95.642 0.87-13.926 8.397-23.501 13.312-25.293 14.080-15.411 7.322-22.016 25.805-14.746 41.216 5.325 11.213 16.435 17.818 28.006 17.818 4.403 0 8.909-1.024 13.158-3.021 9.933-4.71 20.582-10.291 31.693-16.896 4.966 30.413-7.117 62.31-33.997 81.203z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["price-tag"],"grid":20},"attrs":[],"properties":{"id":252,"order":253,"prevSize":20,"code":59899,"name":"price-tag1"},"setIdx":0,"setId":1,"iconIdx":251},{"icon":{"paths":["M76.851 307.2h870.4c29.184 0 24.422-31.13 9.882-36.198-14.592-5.069-176.282-66.202-204.493-66.202h-35.84v-153.6h-409.6v153.6h-35.789c-28.16 0-189.901 61.133-204.442 66.202s-19.302 36.198 9.882 36.198zM972.8 358.4h-921.6c-28.16 0-51.2 23.040-51.2 51.2v256c0 28.211 23.040 51.2 51.2 51.2h116.89l-45.158 256h778.189l-45.21-256h116.89c28.211 0 51.2-22.989 51.2-51.2v-256c0-28.16-22.989-51.2-51.2-51.2zM235.674 870.4l61.338-358.554h430.029l61.389 358.554h-552.755z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["print"],"grid":20},"attrs":[],"properties":{"id":253,"order":254,"prevSize":20,"code":59900,"name":"print"},"setIdx":0,"setId":1,"iconIdx":252},{"icon":{"paths":["M921.6 256h-819.2c-56.32 0-102.4 46.080-102.4 102.4v307.2c0 56.32 46.080 102.4 102.4 102.4h819.2c56.32 0 102.4-46.080 102.4-102.4v-307.2c0-56.32-46.080-102.4-102.4-102.4zM921.6 665.6h-819.2v-307.2h819.2v307.2z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["progress-empty"],"grid":20},"attrs":[],"properties":{"id":254,"order":255,"prevSize":20,"code":59901,"name":"progress-empty"},"setIdx":0,"setId":1,"iconIdx":253},{"icon":{"paths":["M921.6 256h-819.2c-56.32 0-102.4 46.080-102.4 102.4v307.2c0 56.32 46.080 102.4 102.4 102.4h819.2c56.32 0 102.4-46.080 102.4-102.4v-307.2c0-56.32-46.080-102.4-102.4-102.4zM921.6 665.6h-819.2v-307.2h819.2v307.2zM358.4 409.6h-204.8v204.8h204.8v-204.8zM614.4 409.6h-204.8v204.8h204.8v-204.8zM870.4 409.6h-204.8v204.8h204.8v-204.8z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["progress-full"],"grid":20},"attrs":[],"properties":{"id":255,"order":256,"prevSize":20,"code":59902,"name":"progress-full"},"setIdx":0,"setId":1,"iconIdx":254},{"icon":{"paths":["M921.6 256h-819.2c-56.32 0-102.4 46.080-102.4 102.4v307.2c0 56.32 46.080 102.4 102.4 102.4h819.2c56.32 0 102.4-46.080 102.4-102.4v-307.2c0-56.32-46.080-102.4-102.4-102.4zM921.6 665.6h-819.2v-307.2h819.2v307.2zM358.4 409.6h-204.8v204.8h204.8v-204.8z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["progress-one"],"grid":20},"attrs":[],"properties":{"id":256,"order":257,"prevSize":20,"code":59903,"name":"progress-one"},"setIdx":0,"setId":1,"iconIdx":255},{"icon":{"paths":["M921.6 256h-819.2c-56.32 0-102.4 46.080-102.4 102.4v307.2c0 56.32 46.080 102.4 102.4 102.4h819.2c56.32 0 102.4-46.080 102.4-102.4v-307.2c0-56.32-46.080-102.4-102.4-102.4zM921.6 665.6h-819.2v-307.2h819.2v307.2zM358.4 409.6h-204.8v204.8h204.8v-204.8zM614.4 409.6h-204.8v204.8h204.8v-204.8z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["progress-two"],"grid":20},"attrs":[],"properties":{"id":257,"order":258,"prevSize":20,"code":59904,"name":"progress-two"},"setIdx":0,"setId":1,"iconIdx":256},{"icon":{"paths":["M510.31 419.482l-254.31 246.118h153.6v307.2h204.8v-307.2h153.6l-257.69-246.118zM921.6 51.2h-819.2c-56.32 0-102.4 46.080-102.4 102.4v614.4c0 56.32 46.080 102.4 102.4 102.4h204.8v-102.4h-204.8v-460.8h819.2v460.8h-204.8v102.4h204.8c56.32 0 102.4-46.080 102.4-102.4v-614.4c0-56.32-46.080-102.4-102.4-102.4zM128 217.6c-21.197 0-38.4-17.203-38.4-38.4s17.203-38.4 38.4-38.4c21.197 0 38.4 17.203 38.4 38.4s-17.203 38.4-38.4 38.4zM230.4 217.6c-21.197 0-38.4-17.203-38.4-38.4s17.203-38.4 38.4-38.4c21.197 0 38.4 17.203 38.4 38.4s-17.203 38.4-38.4 38.4zM921.6 204.8h-614.4v-51.2h615.373l-0.973 51.2z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["publish"],"grid":20},"attrs":[],"properties":{"id":258,"order":259,"prevSize":20,"code":59905,"name":"publish"},"setIdx":0,"setId":1,"iconIdx":257},{"icon":{"paths":["M272.128 174.131c-82.432 0-149.299 68.762-149.299 153.6 0 84.787 66.867 153.6 149.299 153.6 149.248 0 49.766 296.909-149.299 296.909v71.68c355.277 0.051 494.49-675.789 149.299-675.789zM702.208 174.131c-82.381 0-149.248 68.762-149.248 153.6 0 84.787 66.867 153.6 149.248 153.6 149.299 0 49.818 296.909-149.248 296.909v71.68c355.226 0.051 494.438-675.789 149.248-675.789z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["quote"],"grid":20},"attrs":[],"properties":{"id":259,"order":260,"prevSize":20,"code":59906,"name":"quote"},"setIdx":0,"setId":1,"iconIdx":258},{"icon":{"paths":["M870.4 409.6h-613.325l459.469-269.568-50.944-88.832-576.717 336.435c-23.347 13.619-37.683 38.554-37.683 65.587v417.178c0 56.576 45.824 102.4 102.4 102.4h716.8c56.576 0 102.4-45.824 102.4-102.4v-358.4c0-56.576-45.824-102.4-102.4-102.4zM793.6 870.4c-42.394 0-76.8-34.406-76.8-76.8s34.406-76.8 76.8-76.8 76.8 34.406 76.8 76.8c0 42.394-34.406 76.8-76.8 76.8zM870.4 614.4h-716.8v-102.4h716.8v102.4z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["radio"],"grid":20},"attrs":[],"properties":{"id":260,"order":261,"prevSize":20,"code":59907,"name":"radio"},"setIdx":0,"setId":1,"iconIdx":259},{"icon":{"paths":["M369.92 295.27v-137.267l-369.92 330.547 369.92 342.579v-142.182l-216.32-200.397 216.32-193.28zM625.92 355.994v-197.99l-369.92 330.547 369.92 342.579v-223.078c168.55 0 270.899 21.606 398.080 246.272 0-0.051-18.842-498.33-398.080-498.33z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["reply-all"],"grid":20},"attrs":[],"properties":{"id":261,"order":262,"prevSize":20,"code":59908,"name":"reply-all"},"setIdx":0,"setId":1,"iconIdx":260},{"icon":{"paths":["M972.8 854.272c0 0-113.92-498.278-563.2-498.278v-203.981l-358.4 336.538 358.4 342.528v-223.078c243.866-0.051 436.019 21.555 563.2 246.272z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["reply"],"grid":20},"attrs":[],"properties":{"id":262,"order":263,"prevSize":20,"code":59909,"name":"reply1"},"setIdx":0,"setId":1,"iconIdx":261},{"icon":{"paths":["M256 665.6v-256h102.4l-179.2-204.8-179.2 204.8h102.4v307.2c0 56.525 45.824 102.4 102.4 102.4h485.478l-135.066-153.6h-299.213zM468.787 358.4l-135.066-153.6h485.478c56.525 0 102.4 45.926 102.4 102.4v307.2h102.4l-179.2 204.8-179.2-204.8h102.4v-256h-299.213z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["retweet"],"grid":20},"attrs":[],"properties":{"id":263,"order":264,"prevSize":20,"code":59910,"name":"retweet"},"setIdx":0,"setId":1,"iconIdx":262},{"icon":{"paths":["M610.97 669.133c0 0 361.421-260.813 321.331-559.309-0.87-6.502-3.021-10.906-5.734-13.722-2.765-2.816-7.014-5.018-13.466-5.888-291.686-41.011-546.509 328.806-546.509 328.806-221.082-26.47-205.005 17.613-305.869 259.891-19.302 46.182 11.981 62.106 46.285 49.101 34.304-12.902 109.978-41.523 109.978-41.523l132.608 135.578c0 0-27.955 77.517-40.602 112.589-12.698 35.123 2.816 67.123 48.026 47.411 236.749-103.219 279.859-86.733 253.952-312.934zM662.63 366.234c-30.618-31.386-30.618-82.125 0-113.51 30.618-31.283 80.23-31.283 110.899 0 30.618 31.283 30.618 82.074 0 113.51-30.669 31.283-80.333 31.283-110.899 0z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["rocket"],"grid":20},"attrs":[],"properties":{"id":264,"order":265,"prevSize":20,"code":59911,"name":"rocket1"},"setIdx":0,"setId":1,"iconIdx":263},{"icon":{"paths":["M621.312 476.365c-130.97-96.205-343.040 59.904-390.758 270.541-36.762 162.304-207.002 155.648-204.595 177.357 2.355 21.709 382.618 56.474 519.987-57.498 128.307-106.496 218.982-284.877 75.366-390.4zM734.106 77.21l-172.186 263.987c56.422 9.165 186.112 96.512 210.995 159.181l225.075-217.395c-26.931-76.954-176.026-196.813-263.885-205.773z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["round-brush"],"grid":20},"attrs":[],"properties":{"id":265,"order":266,"prevSize":20,"code":59912,"name":"round-brush"},"setIdx":0,"setId":1,"iconIdx":264},{"icon":{"paths":["M122.88 122.88v121.19c362.803 0 656.896 294.195 656.896 656.998h121.293c0-429.773-348.416-778.189-778.189-778.189zM122.88 365.414v121.293c228.813 0 414.362 185.498 414.362 414.413h121.242c0-295.834-239.821-535.706-535.603-535.706zM239.053 668.621c-64.205 0-116.224 52.122-116.224 116.275s52.019 116.224 116.224 116.224 116.173-52.019 116.173-116.224-51.968-116.275-116.173-116.275z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["rss"],"grid":20},"attrs":[],"properties":{"id":266,"order":267,"prevSize":20,"code":59913,"name":"rss1"},"setIdx":0,"setId":1,"iconIdx":265},{"icon":{"paths":["M729.549 22.426l-707.123 707.226c-29.901 29.901-29.901 78.746 0.102 108.749l163.072 163.174c29.901 29.901 78.899 30.003 108.749 0.102l707.226-707.226c29.901-29.952 29.901-78.899 0-108.8l-163.123-163.226c-30.054-30.003-78.95-29.85-108.902-0zM201.165 783.974l-38.861 38.861-97.075-97.126 38.861-38.861 97.075 97.126zM356.608 783.974l-38.861 38.861-174.848-174.848 38.861-38.912 174.848 174.899zM356.608 628.531l-38.861 38.861-97.178-97.075 38.912-38.912 97.126 97.126zM434.33 550.81l-38.861 38.861-97.075-97.075 38.861-38.912 97.075 97.126zM589.722 550.81l-38.861 38.861-174.797-174.797 38.861-38.861 174.797 174.797zM589.722 395.418l-38.861 38.861-97.075-97.075 38.861-38.861 97.075 97.075zM667.443 317.747l-38.861 38.861-97.126-97.126 38.861-38.861 97.126 97.126zM822.886 317.747l-38.912 38.861-174.797-174.848 38.861-38.912 174.848 174.899zM822.835 162.355l-38.861 38.861-97.075-97.178 38.861-38.81 97.075 97.126z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["ruler"],"grid":20},"attrs":[],"properties":{"id":267,"order":268,"prevSize":20,"code":59914,"name":"ruler"},"setIdx":0,"setId":1,"iconIdx":266},{"icon":{"paths":["M429.056 286.208c0-104.346-84.582-188.928-188.928-188.928s-188.928 84.582-188.928 188.928c0 104.346 84.582 188.928 188.928 188.928 49.152 0 93.491-19.251 127.13-49.971l93.542 86.374 0.614 0.461-0.205 0.154-94.003 86.682c-33.587-30.72-77.926-49.971-127.078-49.971-104.346 0-188.928 84.582-188.928 188.928s84.582 188.928 188.928 188.928 188.928-84.582 188.928-188.928c0-15.206-2.253-29.798-5.683-43.93l145.613-101.939 211.302 156.928c113.254 79.309 192.512-33.946 192.512-33.946l-549.427-384.768c3.379-14.131 5.683-28.723 5.683-43.93zM240.128 378.368c-50.893 0-92.16-41.267-92.16-92.16s41.267-92.16 92.16-92.16 92.16 41.267 92.16 92.16-41.267 92.16-92.16 92.16zM240.128 829.952c-50.893 0-92.16-41.267-92.16-92.16s41.267-92.16 92.16-92.16 92.16 41.267 92.16 92.16-41.267 92.16-92.16 92.16zM972.8 309.146c0 0-79.258-113.254-192.512-33.946l-164.096 114.432 120.525 84.378 236.083-164.864z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["scissors"],"grid":20},"attrs":[],"properties":{"id":268,"order":269,"prevSize":20,"code":59915,"name":"scissors1"},"setIdx":0,"setId":1,"iconIdx":267},{"icon":{"paths":["M460.8 665.6h102.4v-460.8h102.4l-153.6-204.8-153.6 204.8h102.4v460.8zM870.4 358.4h-153.6v102.4h102.4v460.8h-614.4v-460.8h102.4v-102.4h-153.6c-28.314 0-51.2 22.886-51.2 51.2v563.2c0 28.262 22.886 51.2 51.2 51.2h716.8c28.314 0 51.2-22.938 51.2-51.2v-563.2c0-28.262-22.886-51.2-51.2-51.2z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["share-alternitive"],"grid":20},"attrs":[],"properties":{"id":269,"order":270,"prevSize":20,"code":59916,"name":"share-alternitive"},"setIdx":0,"setId":1,"iconIdx":268},{"icon":{"paths":["M768 688.23c-32.41 0-61.645 12.595-83.814 32.87l-304.026-177.306c2.355-9.626 3.84-19.661 3.84-29.901s-1.485-20.224-3.84-29.85l300.8-175.565c22.835 21.35 53.35 34.56 87.040 34.56 70.605 0 128-57.395 128-128s-57.395-128-128-128-128 57.395-128 128c0 10.24 1.485 20.275 3.84 29.85l-300.8 175.565c-22.835-21.299-53.35-34.56-87.040-34.56-70.605 0-128 57.395-128 128s57.395 128 128 128c33.69 0 64.205-13.21 87.040-34.56l304.026 177.306c-2.15 8.96-3.43 18.33-3.43 27.955 0 68.71 55.654 124.365 124.365 124.365s124.365-55.706 124.365-124.365-55.654-124.365-124.365-124.365z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["share"],"grid":20},"attrs":[],"properties":{"id":270,"order":271,"prevSize":20,"code":59917,"name":"share1"},"setIdx":0,"setId":1,"iconIdx":269},{"icon":{"paths":["M348.16 512c0 90.522 73.37 163.891 163.84 163.891 90.522 0 163.789-73.37 163.789-163.891 0-90.47-73.267-163.84-163.789-163.84s-163.84 73.37-163.84 163.84zM231.885 450.56c28.109-128.819 142.797-225.28 280.115-225.28 79.155 0 150.784 32.102 202.701 83.968 24.013 24.013 62.925 24.013 86.886 0 24.013-24.013 24.013-62.925 0-86.886-74.086-74.086-176.486-119.962-289.587-119.962-183.398 0-338.637 120.525-390.81 286.771h-121.19v122.829h163.789c51.149 0 63.744-41.626 68.096-61.44zM860.16 512c-51.149 0-63.744 41.677-68.045 61.389-28.109 128.819-142.797 225.28-280.115 225.28-79.206 0-150.835-32.102-202.701-84.019-24.013-24.013-62.925-24.013-86.938 0-23.962 24.013-23.962 62.925 0 86.886 74.138 74.189 176.538 120.064 289.638 120.064 183.398 0 338.586-120.627 390.81-286.72h121.19v-122.88h-163.84z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["shareable"],"grid":20},"attrs":[],"properties":{"id":271,"order":272,"prevSize":20,"code":59918,"name":"shareable"},"setIdx":0,"setId":1,"iconIdx":270},{"icon":{"paths":["M901.325 170.598c-236.237 34.202-283.085-25.549-389.325-119.398-106.24 93.85-153.088 153.6-389.325 119.398-125.901 627.098 389.325 802.202 389.325 802.202s515.226-175.104 389.325-802.202zM638.618 681.421l-126.618-66.56-126.566 66.56 24.166-140.954-102.4-99.84 141.517-20.531 63.283-128.256 63.283 128.256 141.517 20.531-102.4 99.789 24.218 141.005z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["shield"],"grid":20},"attrs":[],"properties":{"id":272,"order":273,"prevSize":20,"code":59919,"name":"shield1"},"setIdx":0,"setId":1,"iconIdx":271},{"icon":{"paths":["M313.498 371.2l40.499-268.8h-210.637l-88.013 230.4c-2.714 8.192-4.147 16.691-4.147 25.6 0 56.525 58.88 102.4 131.635 102.4 67.072 0 122.522-39.117 130.662-89.6zM512 460.8c72.704 0 131.635-45.875 131.635-102.4 0-2.099-0.154-4.198-0.256-6.195l-26.061-249.805h-210.637l-26.112 249.6c-0.102 2.099-0.205 4.198-0.205 6.4 0 56.525 58.931 102.4 131.635 102.4zM768 514.355v202.445h-512v-202.138c-22.426 8.090-47.104 12.698-73.165 12.698-9.984 0-19.661-1.178-29.235-2.509v325.069c0 39.424 32.205 71.68 71.578 71.68h573.542c39.424 0 71.68-32.307 71.68-71.68v-325.018c-9.626 1.28-19.251 2.509-29.235 2.509-25.907-0.051-50.688-4.762-73.165-13.056zM968.704 332.8l-88.115-230.4h-210.586l40.448 268.39c7.885 50.688 63.334 90.010 130.714 90.010 72.704 0 131.635-45.875 131.635-102.4 0-8.909-1.434-17.408-4.096-25.6z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["shop"],"grid":20},"attrs":[],"properties":{"id":273,"order":274,"prevSize":20,"code":59920,"name":"shop"},"setIdx":0,"setId":1,"iconIdx":272},{"icon":{"paths":["M927.795 167.475c-15.104-13.107-97.587-88.627-112.998-101.939-15.309-13.261-38.707-14.336-56.422-14.336h-492.749c-17.664 0-41.062 1.075-56.422 14.336-15.411 13.312-97.894 88.883-112.998 101.939-15.206 13.107-27.802 32.922-23.757 61.030 4.045 28.211 96.768 699.443 99.174 715.418 2.355 15.923 16.282 28.518 33.178 28.877h614.4c16.896-0.358 30.822-12.954 33.178-28.928 2.406-15.923 95.13-687.206 99.226-715.418 3.994-28.058-8.602-47.872-23.808-60.979zM512 613.018c-166.298 0-201.882-235.315-209.254-283.802h94.054c14.131 70.707 46.285 191.693 115.2 191.693s101.12-120.986 115.2-191.693h94.106c-7.424 48.486-43.008 283.802-209.306 283.802zM162.304 205.107l93.696-102.707h512l93.696 102.707h-699.392z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["shopping-bag"],"grid":20},"attrs":[],"properties":{"id":274,"order":275,"prevSize":20,"code":59921,"name":"shopping-bag"},"setIdx":0,"setId":1,"iconIdx":273},{"icon":{"paths":["M942.029 358.4h-256.358l-92.774 92.774c-23.194 23.194-54.067 35.942-86.835 35.942-32.87 0-63.693-12.8-86.938-35.994-23.142-23.142-35.942-53.965-35.994-86.784 0-1.997 0.512-3.942 0.563-5.939h-301.773c-16.998 0-30.72 13.722-30.72 30.72v122.88h921.6v-122.88c0-16.998-13.824-30.72-30.771-30.72zM551.322 409.549l258.816-258.816c12.032-11.981 12.134-31.386 0.102-43.469l-47.104-47.104c-11.981-11.981-31.437-11.93-43.52 0l-258.816 258.867c-24.986 24.986-24.986 65.536 0 90.522 24.986 24.934 65.485 24.986 90.522 0zM195.738 884.275c4.966 20.531 26.368 37.325 47.462 37.325h537.6c21.094 0 42.496-16.794 47.462-37.325l77.978-321.075h-788.48l77.978 321.075z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["shopping-basket"],"grid":20},"attrs":[],"properties":{"id":275,"order":276,"prevSize":20,"code":59922,"name":"shopping-basket"},"setIdx":0,"setId":1,"iconIdx":274},{"icon":{"paths":["M665.6 870.4c0 56.525 45.773 102.4 102.4 102.4 56.525 0 102.4-45.875 102.4-102.4 0-56.627-45.875-102.4-102.4-102.4-56.627 0-102.4 45.773-102.4 102.4zM153.6 870.4c0 56.525 45.824 102.4 102.4 102.4 56.474 0 102.4-45.875 102.4-102.4 0-56.627-45.926-102.4-102.4-102.4-56.576 0-102.4 45.773-102.4 102.4zM335.206 623.206l566.682-161.894c10.803-3.123 19.712-14.797 19.712-26.112v-281.6h-716.8v-81.92c0-11.264-9.267-20.48-20.429-20.48h-163.942c-11.213 0-20.429 9.216-20.429 20.48v81.92h102.4l97.792 458.598 4.608 48.282v84.429c0 11.213 9.216 20.48 20.48 20.48h675.84c11.264 0 20.48-9.318 20.48-20.48v-79.309h-575.898c-58.88 0-60.109-28.211-10.496-42.394z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["shopping-cart"],"grid":20},"attrs":[],"properties":{"id":276,"order":277,"prevSize":20,"code":59923,"name":"shopping-cart"},"setIdx":0,"setId":1,"iconIdx":275},{"icon":{"paths":["M772.762 342.733h47.104v146.534l204.134-206.029-204.186-206.080v122.214h-47.104c-189.133 0-295.731 140.186-389.837 263.782-84.582 111.206-157.696 207.309-275.763 207.309h-107.11v143.309h107.162c189.133 0 295.731-140.083 389.837-263.782 84.582-111.258 157.696-207.258 275.763-207.258zM276.992 433.050c8.090-10.394 16.179-21.094 24.422-31.898 19.968-26.317 41.165-54.016 64.102-81.715-67.686-63.181-149.248-109.773-258.355-109.773h-107.162v143.309h107.162c67.942 0 120.934 31.898 169.83 80.077zM819.814 680.653h-47.104c-72.038 0-127.334-35.891-178.739-88.986-5.12 6.707-10.291 13.517-15.514 20.326-22.579 29.696-46.848 61.491-73.677 93.082 69.427 67.789 153.6 118.989 267.878 118.989h47.104v122.778l204.237-206.080-204.186-206.080v145.971z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["shuffle"],"grid":20},"attrs":[],"properties":{"id":277,"order":278,"prevSize":20,"code":59924,"name":"shuffle1"},"setIdx":0,"setId":1,"iconIdx":276},{"icon":{"paths":["M512 716.8c-56.013 0-101.427 45.773-101.427 102.4 0 56.525 45.414 102.4 101.427 102.4s101.376-45.875 101.376-102.4c0-56.576-45.363-102.4-101.376-102.4zM296.96 602.010l71.68 72.397c79.155-79.974 207.565-79.974 286.771 0l71.629-72.397c-118.733-119.962-311.347-119.962-430.080 0zM153.6 457.114l71.68 72.397c158.31-159.898 415.027-159.898 573.389 0l71.731-72.397c-197.888-199.885-518.912-199.885-716.8 0zM10.189 312.32l71.68 72.397c237.517-239.923 622.643-239.923 860.211 0l71.68-72.397c-277.094-279.91-726.426-279.91-1003.571 0z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["signal"],"grid":20},"attrs":[],"properties":{"id":278,"order":279,"prevSize":20,"code":59925,"name":"signal"},"setIdx":0,"setId":1,"iconIdx":277},{"icon":{"paths":["M256 81.92c0-28.314-22.938-30.72-51.2-30.72-28.314 0-51.2 2.406-51.2 30.72v430.080h102.4v-430.080zM153.6 942.080c0 28.211 22.886 30.72 51.2 30.72 28.262 0 51.2-2.509 51.2-30.72v-174.080h-102.4v174.080zM327.629 563.2h-245.76c-28.314 0-30.669 22.938-30.669 51.2v51.2c0 28.314 2.355 51.2 30.669 51.2h245.811c28.16 0 30.72-22.886 30.72-51.2v-51.2c0-28.262-2.56-51.2-30.771-51.2zM942.029 614.4h-245.811c-28.262 0-30.618 22.938-30.618 51.2v51.2c0 28.314 2.355 51.2 30.669 51.2h245.811c28.16 0 30.72-22.886 30.72-51.2v-51.2c0-28.262-2.56-51.2-30.771-51.2zM665.6 358.4c0-28.262-2.56-51.2-30.771-51.2h-245.76c-28.314 0-30.669 22.938-30.669 51.2v51.2c0 28.314 2.355 51.2 30.669 51.2h245.811c28.16 0 30.72-22.886 30.72-51.2v-51.2zM563.2 81.92c0-28.314-22.938-30.72-51.2-30.72-28.314 0-51.2 2.406-51.2 30.72v174.080h102.4v-174.080zM460.8 942.080c0 28.211 22.886 30.72 51.2 30.72 28.262 0 51.2-2.509 51.2-30.72v-430.080h-102.4v430.080zM870.4 81.92c0-28.314-22.938-30.72-51.2-30.72-28.314 0-51.2 2.406-51.2 30.72v481.28h102.4v-481.28zM768 942.080c0 28.211 22.886 30.72 51.2 30.72 28.262 0 51.2-2.509 51.2-30.72v-122.88h-102.4v122.88z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["sound-mix"],"grid":20},"attrs":[],"properties":{"id":279,"order":280,"prevSize":20,"code":59926,"name":"sound-mix"},"setIdx":0,"setId":1,"iconIdx":278},{"icon":{"paths":["M307.2 691.2l204.8 128 204.8-128v-435.2h-409.6v435.2zM230.4 512c0-56.576-45.875-102.4-102.4-102.4s-102.4 45.824-102.4 102.4c0 56.576 45.875 102.4 102.4 102.4s102.4-45.824 102.4-102.4zM896 409.6c-56.525 0-102.4 45.824-102.4 102.4s45.875 102.4 102.4 102.4 102.4-45.824 102.4-102.4c0-56.576-45.875-102.4-102.4-102.4zM229.632 317.389c64.256-92.928 169.83-148.429 282.368-148.429 110.49 0 214.938 54.067 279.347 144.538 22.989 32.205 67.738 39.731 99.942 16.845 32.256-22.938 39.782-67.738 16.845-99.994-91.238-128.205-239.36-204.749-396.134-204.749-159.59 0-309.248 78.592-400.23 210.278-22.477 32.563-14.336 77.21 18.176 99.738 32.614 22.426 77.21 14.285 99.686-18.227zM791.347 710.502c-64.41 90.522-168.858 144.538-279.347 144.538-112.538 0-218.112-55.501-282.368-148.429-22.477-32.563-67.123-40.653-99.686-18.227-32.563 22.528-40.704 67.174-18.176 99.738 90.982 131.686 240.64 210.278 400.23 210.278 156.774 0 304.896-76.544 396.134-204.749 22.938-32.256 15.411-77.005-16.845-99.994-32.205-22.886-76.954-15.36-99.942 16.845z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["sports-club"],"grid":20},"attrs":[],"properties":{"id":280,"order":281,"prevSize":20,"code":59927,"name":"sports-club"},"setIdx":0,"setId":1,"iconIdx":279},{"icon":{"paths":["M819.2 51.2h-614.4c-28.314 0-51.2 22.886-51.2 51.2v819.2c0 28.262 22.886 51.2 51.2 51.2h614.4c28.314 0 51.2-22.938 51.2-51.2v-819.2c0-28.262-22.886-51.2-51.2-51.2zM768 409.6h-307.2v460.8h-51.2v-460.8h-153.6v-51.2h153.6v-204.8h51.2v204.8h307.2v51.2z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["spreadsheet"],"grid":20},"attrs":[],"properties":{"id":281,"order":282,"prevSize":20,"code":59928,"name":"spreadsheet"},"setIdx":0,"setId":1,"iconIdx":280},{"icon":{"paths":["M819.2 102.4h-614.4c-56.32 0-102.4 46.080-102.4 102.4v614.4c0 56.32 46.080 102.4 102.4 102.4h614.4c56.32 0 102.4-46.080 102.4-102.4v-614.4c0-56.32-46.080-102.4-102.4-102.4zM668.723 757.197l-156.723-156.672-156.723 156.672-88.525-88.474 156.723-156.723-156.672-156.723 88.525-88.525 156.672 156.723 156.621-156.723 88.525 88.525-156.621 156.723 156.672 156.723-88.474 88.474z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["squared-cross"],"grid":20},"attrs":[],"properties":{"id":282,"order":283,"prevSize":20,"code":59929,"name":"squared-cross"},"setIdx":0,"setId":1,"iconIdx":281},{"icon":{"paths":["M819.2 102.4h-614.4c-56.32 0-102.4 46.080-102.4 102.4v614.4c0 56.32 46.080 102.4 102.4 102.4h614.4c56.32 0 102.4-46.080 102.4-102.4v-614.4c0-56.32-46.080-102.4-102.4-102.4zM768 563.2h-512v-102.4h512v102.4z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["squared-minus"],"grid":20},"attrs":[],"properties":{"id":283,"order":284,"prevSize":20,"code":59930,"name":"squared-minus"},"setIdx":0,"setId":1,"iconIdx":282},{"icon":{"paths":["M819.2 102.4h-614.4c-56.32 0-102.4 46.080-102.4 102.4v614.4c0 56.32 46.080 102.4 102.4 102.4h614.4c56.32 0 102.4-46.080 102.4-102.4v-614.4c0-56.32-46.080-102.4-102.4-102.4zM768 563.2h-204.8v204.8h-102.4v-204.8h-204.8v-102.4h204.8v-204.8h102.4v204.8h204.8v102.4z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["squared-plus"],"grid":20},"attrs":[],"properties":{"id":284,"order":285,"prevSize":20,"code":59931,"name":"squared-plus"},"setIdx":0,"setId":1,"iconIdx":283},{"icon":{"paths":["M962.56 410.726h-328.346l-122.214-344.166-122.317 344.166h-328.294l267.878 202.086-95.795 354.765 278.528-212.685 278.426 212.685-95.693-354.765 267.827-202.086zM512 654.49l-154.317 128 63.642-182.374-145.971-117.76 180.326 5.171 56.32-206.848 56.269 206.848 180.275-5.171-145.971 117.76 63.642 182.374-154.214-128z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["star-outlined"],"grid":20},"attrs":[],"properties":{"id":285,"order":286,"prevSize":20,"code":59932,"name":"star-outlined"},"setIdx":0,"setId":1,"iconIdx":284},{"icon":{"paths":["M512 66.56l122.266 344.166h328.294l-267.878 202.138 95.795 354.714-278.477-212.685-278.426 212.685 95.744-354.714-267.93-202.138h328.294l122.317-344.166z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["star"],"grid":20},"attrs":[],"properties":{"id":286,"order":287,"prevSize":20,"code":59933,"name":"star"},"setIdx":0,"setId":1,"iconIdx":285},{"icon":{"paths":["M377.651 345.344c-22.886 14.080 61.286 217.19 81.818 250.266 17.92 29.133 55.962 37.99 84.89 20.173 29.082-18.022 38.144-56.013 20.224-84.992-20.326-33.178-164.096-199.578-186.931-185.446zM360.499 122.982c47.514-16.538 98.406-25.702 151.501-25.702s103.987 9.165 151.501 25.702c16.845 5.837 39.168-5.888 29.286-31.283-7.219-18.432-14.182-36.454-16.998-43.776-6.707-17.357-30.72-31.693-41.165-34.048-39.526-8.909-80.486-13.875-122.624-13.875s-83.098 4.966-122.675 13.875c-10.445 2.355-34.406 16.691-41.114 34.048-2.816 7.322-9.83 25.344-16.998 43.776-9.882 25.395 12.442 37.171 29.286 31.283zM977.818 163.123c-9.83-11.776-20.275-23.296-31.386-34.406-11.059-11.11-22.579-21.504-34.304-31.386-7.834-6.605-30.874-11.981-45.466 2.611-14.541 14.592-84.378 84.326-84.378 84.326 20.582 14.746 40.602 30.976 59.136 49.459s34.662 38.502 49.459 59.136c0 0 69.786-69.734 84.326-84.326 14.643-14.643 9.267-37.632 2.611-45.414zM512 148.48c-229.12 0-414.771 185.651-414.771 414.72 0 229.12 185.651 414.771 414.771 414.771 229.018 0 414.72-185.651 414.72-414.771 0-229.018-185.702-414.72-414.72-414.72zM512 875.571c-172.442 0-312.32-139.827-312.32-312.32s139.827-312.32 312.32-312.32c172.493 0 312.371 139.827 312.371 312.32 0 172.442-139.878 312.32-312.371 312.32z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["stopwatch"],"grid":20},"attrs":[],"properties":{"id":287,"order":288,"prevSize":20,"code":59934,"name":"stopwatch1"},"setIdx":0,"setId":1,"iconIdx":286},{"icon":{"paths":["M921.6 204.8h-51.2v768h51.2c56.32 0 102.4-46.080 102.4-102.4v-563.2c0-56.32-46.080-102.4-102.4-102.4zM0 307.2v563.2c0 56.32 46.029 102.4 102.4 102.4h51.2v-768h-51.2c-56.371 0-102.4 46.080-102.4 102.4zM691.2 97.587c-34.867-16.179-96.717-46.387-180.173-46.387-83.61 0-143.36 30.208-178.227 46.387v107.213h-128v768h614.4v-768h-128v-107.213zM614.4 204.8h-204.8v-68.403c27.341-11.776 55.194-23.808 101.427-23.808 46.182 0 76.083 11.981 103.373 23.808v68.403z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["suitcase"],"grid":20},"attrs":[],"properties":{"id":288,"order":289,"prevSize":20,"code":59935,"name":"suitcase"},"setIdx":0,"setId":1,"iconIdx":287},{"icon":{"paths":["M716.8 256h-512v-102.4l-204.8 179.2 204.8 179.2v-102.4h512v-153.6zM1024 691.2l-204.8-179.2v102.4h-512v153.6h512v102.4l204.8-179.2z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["swap"],"grid":20},"attrs":[],"properties":{"id":289,"order":290,"prevSize":20,"code":59936,"name":"swap"},"setIdx":0,"setId":1,"iconIdx":288},{"icon":{"paths":["M921.6 204.8h-460.8v256h512v-204.8c0-28.314-22.886-51.2-51.2-51.2zM51.2 768c0 28.314 12.698 51.2 40.96 51.2h266.24v-256h-307.2v204.8zM460.8 819.2h460.8c28.314 0 51.2-22.886 51.2-51.2v-204.8h-512v256zM51.2 256v204.8h307.2v-256h-266.24c-28.262 0-40.96 22.886-40.96 51.2z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["sweden"],"grid":20},"attrs":[],"properties":{"id":290,"order":291,"prevSize":20,"code":59937,"name":"sweden"},"setIdx":0,"setId":1,"iconIdx":289},{"icon":{"paths":["M665.6 153.6h-307.2c-197.939 0-358.4 160.461-358.4 358.4s160.461 358.4 358.4 358.4h307.2c197.939 0 358.4-160.461 358.4-358.4s-160.461-358.4-358.4-358.4zM665.6 768c-141.363 0-256-114.637-256-256s114.637-256 256-256 256 114.637 256 256-114.637 256-256 256z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["switch"],"grid":20},"attrs":[],"properties":{"id":291,"order":292,"prevSize":20,"code":59938,"name":"switch1"},"setIdx":0,"setId":1,"iconIdx":290},{"icon":{"paths":["M819.2 0h-614.4c-56.32 0-102.4 46.029-102.4 102.4v819.2c0 56.32 46.080 102.4 102.4 102.4h614.4c56.371 0 102.4-46.080 102.4-102.4v-819.2c0-56.371-46.029-102.4-102.4-102.4zM512 972.8c-35.328 0-64-22.886-64-51.2s28.672-51.2 64-51.2c35.277 0 64 22.886 64 51.2s-28.723 51.2-64 51.2zM819.2 819.2h-614.4v-716.8h614.4v716.8z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["tablet"],"grid":20},"attrs":[],"properties":{"id":292,"order":293,"prevSize":20,"code":59939,"name":"tablet1"},"setIdx":0,"setId":1,"iconIdx":291},{"icon":{"paths":["M955.494 282.675l-687.36 690.125 36.198-254.31-253.184 36.301 687.36-690.125c20.019-20.070 58.010-15.77 72.294 0l144.691 145.357c25.6 24.218 20.019 52.531 0 72.653z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["tag"],"grid":20},"attrs":[],"properties":{"id":293,"order":294,"prevSize":20,"code":59940,"name":"tag"},"setIdx":0,"setId":1,"iconIdx":292},{"icon":{"paths":["M819.2 51.2h-614.4c-28.314 0-51.2 22.886-51.2 51.2v819.2c0 28.262 22.886 51.2 51.2 51.2h614.4c28.314 0 51.2-22.938 51.2-51.2v-819.2c0-28.262-22.886-51.2-51.2-51.2zM665.6 768h-307.2v-102.4h307.2v102.4zM665.6 563.2h-307.2v-102.4h307.2v102.4zM665.6 358.4h-307.2v-102.4h307.2v102.4z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["text-document-inverted"],"grid":20},"attrs":[],"properties":{"id":294,"order":295,"prevSize":20,"code":59941,"name":"text-document-inverted"},"setIdx":0,"setId":1,"iconIdx":293},{"icon":{"paths":["M819.2 51.2h-614.4c-28.314 0-51.2 22.886-51.2 51.2v819.2c0 28.262 22.886 51.2 51.2 51.2h614.4c28.314 0 51.2-22.938 51.2-51.2v-819.2c0-28.262-22.886-51.2-51.2-51.2zM768 870.4h-512v-716.8h512v716.8zM665.6 256h-307.2v102.4h307.2v-102.4zM665.6 665.6h-307.2v102.4h307.2v-102.4zM665.6 460.8h-307.2v102.4h307.2v-102.4z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["text-document"],"grid":20},"attrs":[],"properties":{"id":295,"order":296,"prevSize":20,"code":59942,"name":"text-document"},"setIdx":0,"setId":1,"iconIdx":294},{"icon":{"paths":["M793.6 563.2h-563.2c-14.080 0-25.6 11.52-25.6 25.6v51.2c0 14.131 11.52 25.6 25.6 25.6h563.2c14.131 0 25.6-11.469 25.6-25.6v-51.2c0-14.080-11.469-25.6-25.6-25.6zM793.6 358.4h-563.2c-14.080 0-25.6 11.52-25.6 25.6v51.2c0 14.131 11.52 25.6 25.6 25.6h563.2c14.131 0 25.6-11.469 25.6-25.6v-51.2c0-14.080-11.469-25.6-25.6-25.6zM537.6 768h-307.2c-14.080 0-25.6 11.52-25.6 25.6v51.2c0 14.131 11.52 25.6 25.6 25.6h307.2c14.131 0 25.6-11.469 25.6-25.6v-51.2c0-14.080-11.469-25.6-25.6-25.6zM793.6 153.6h-563.2c-14.080 0-25.6 11.52-25.6 25.6v51.2c0 14.131 11.52 25.6 25.6 25.6h563.2c14.131 0 25.6-11.469 25.6-25.6v-51.2c0-14.080-11.469-25.6-25.6-25.6z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["text"],"grid":20},"attrs":[],"properties":{"id":296,"order":297,"prevSize":20,"code":59943,"name":"text"},"setIdx":0,"setId":1,"iconIdx":295},{"icon":{"paths":["M665.6 518.298v-467.098c0-28.314-22.886-51.2-51.2-51.2h-215.091c-28.262 0-40.909 22.886-40.909 51.2v467.098c-73.933 49.613-122.88 133.53-122.88 229.222 0 152.678 123.802 276.48 276.48 276.48s276.48-123.802 276.48-276.48c0-95.693-48.947-179.61-122.88-229.222zM512 916.48c-93.338 0-168.96-75.622-168.96-168.96 0-75.366 49.664-138.394 117.76-160.205v-382.515h102.4v382.515c68.096 21.811 117.76 84.838 117.76 160.205 0 93.286-75.622 168.96-168.96 168.96z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["thermometer"],"grid":20},"attrs":[],"properties":{"id":297,"order":298,"prevSize":20,"code":59944,"name":"thermometer"},"setIdx":0,"setId":1,"iconIdx":296},{"icon":{"paths":["M325.222 647.066c6.81 18.227-181.197 186.061-71.526 322.099 25.651 31.795 112.691-152.32 236.288-235.622 68.147-46.029 226.816-143.923 226.816-198.042v-350.31c0-65.075-251.597-133.99-442.778-133.99-70.093 0-171.622 439.091-171.622 508.877 0 69.99 216.115 68.762 222.822 86.989zM768 642.202c33.69 0 153.6-20.48 153.6-159.898v-248.218c0-139.315-119.91-154.675-153.6-154.675-33.638 0 51.2 29.286 51.2 115.712v326.298c0 90.522-84.838 120.781-51.2 120.781z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["thumbs-down"],"grid":20},"attrs":[],"properties":{"id":298,"order":299,"prevSize":20,"code":59945,"name":"thumbs-down"},"setIdx":0,"setId":1,"iconIdx":297},{"icon":{"paths":["M698.778 376.934c-6.81-18.176 181.197-186.061 71.578-322.099-25.651-31.795-112.691 152.32-236.288 235.674-68.198 45.978-226.867 143.872-226.867 197.99v350.31c0 65.075 251.597 133.99 442.778 133.99 70.093 0 171.622-439.091 171.622-508.826 0-70.042-216.115-68.813-222.822-87.040zM256 381.798c-33.69 0-153.6 20.48-153.6 159.898v248.218c0 139.315 119.91 154.675 153.6 154.675 33.638 0-51.2-29.286-51.2-115.712v-326.298c0-90.522 84.838-120.781 51.2-120.781z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["thumbs-up"],"grid":20},"attrs":[],"properties":{"id":299,"order":300,"prevSize":20,"code":59946,"name":"thumbs-up"},"setIdx":0,"setId":1,"iconIdx":298},{"icon":{"paths":["M778.906 340.019c-14.131 0-27.955 1.178-41.421 3.379-33.587-109.824-137.677-189.798-260.864-189.798-150.477 0-272.384 119.194-272.384 266.189 0 13.21 1.024 26.112 2.918 38.707-7.27-0.819-14.541-1.382-21.965-1.382-102.298 0-185.19 81.101-185.19 180.992 0 99.994 82.893 181.094 185.19 181.094h593.715c135.322 0 245.094-107.315 245.094-239.616 0-132.403-109.773-239.565-245.094-239.565zM582.195 560.691c-25.293 35.994-133.837 147.917-138.445 152.576-5.325 6.605-20.019 17.613-33.946 8.499-4.045-2.611-8.806-7.782-8.806-18.125 0-9.882 4.506-20.019 5.018-21.094l52.89-117.094c-9.882-3.994-26.982-10.803-40.192-16.589l-3.482-1.485c-13.414-5.683-30.106-12.8-30.106-31.078 0-8.806 4.147-19.098 12.749-31.181 25.344-36.096 133.837-147.917 138.496-152.678 5.274-6.502 19.968-17.51 33.946-8.499 3.994 2.611 8.755 7.885 8.755 18.125 0 9.882-4.506 20.019-5.018 21.197l-52.941 116.992c9.984 3.994 27.034 10.906 40.294 16.589l3.482 1.485c13.414 5.683 30.106 12.8 30.106 31.181 0 8.806-4.198 18.995-12.8 31.181z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["thunder-cloud"],"grid":20},"attrs":[],"properties":{"id":300,"order":301,"prevSize":20,"code":59947,"name":"thunder-cloud"},"setIdx":0,"setId":1,"iconIdx":299},{"icon":{"paths":["M251.187 590.899l181.811 181.914 333.722-333.722-181.914-181.811-333.619 333.619zM978.125 341.197l-77.363-77.414c-14.797 7.987-31.642 12.595-49.613 12.595-57.242 0-103.629-46.387-103.629-103.578 0-18.022 4.557-34.918 12.595-49.613l-77.363-77.414c-20.173-20.122-53.146-20.122-73.318 0l-563.712 563.712c-20.122 20.070-20.122 53.094 0 73.318l77.414 77.312c14.797-7.987 31.642-12.595 49.664-12.595 57.19 0 103.578 46.387 103.578 103.68 0 17.92-4.557 34.816-12.595 49.613l77.414 77.312c20.173 20.173 53.094 20.173 73.318 0l563.61-563.61c20.173-20.224 20.173-53.197 0-73.318zM432.998 856.013l-265.011-265.114 416.87-416.819 265.011 265.011-416.87 416.922z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["ticket"],"grid":20},"attrs":[],"properties":{"id":301,"order":302,"prevSize":20,"code":59948,"name":"ticket1"},"setIdx":0,"setId":1,"iconIdx":300},{"icon":{"paths":["M512 20.48c-271.462 0-491.52 220.058-491.52 491.52s220.058 491.52 491.52 491.52c271.411 0 491.52-220.058 491.52-491.571 0-271.411-220.109-491.469-491.52-491.469zM512 901.069c-214.886 0-389.12-174.182-389.12-389.12 0-214.886 174.182-389.12 389.12-389.12v0 389.171l347.75-173.875c26.266 52.378 41.37 111.258 41.37 173.875 0 214.886-174.234 389.069-389.12 389.069z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["time-slot"],"grid":20},"attrs":[],"properties":{"id":302,"order":303,"prevSize":20,"code":59949,"name":"time-slot"},"setIdx":0,"setId":1,"iconIdx":301},{"icon":{"paths":["M160.512 352.768c47.77-37.12 87.398-11.52 140.288 49.715 5.939 6.912 13.926-1.178 18.483-5.12 4.506-3.994 74.291-66.816 77.722-69.683 3.379-3.021 7.475-8.653 2.099-14.95-5.478-6.298-25.293-32-38.042-48.691-92.57-121.088 253.235-203.213 200.141-204.493-27.034-0.717-135.475-1.997-151.706-0.205-65.69 6.912-148.173 68.301-189.696 96.922-54.323 37.171-74.598 58.982-77.926 62.003-15.36 13.414-2.458 44.39-30.31 68.813-29.44 25.754-47.821 6.246-64.87 21.197-8.448 7.475-32.102 25.19-38.861 31.078-6.81 5.99-8.038 16.077-1.075 24.115 0 0 64.717 71.475 70.144 77.824 5.376 6.246 20.019 11.674 29.030 3.635 9.062-7.987 32.358-28.314 36.25-31.898 3.994-3.379-2.56-44.083 18.33-60.262zM452.762 379.238c-6.144-7.117-13.773-7.322-20.326-1.485l-73.421 64.102c-5.786 5.12-6.605 14.49-1.382 20.48l424.653 483.277c9.933 11.418 27.136 12.595 38.451 2.714l49.664-41.626c11.366-9.984 12.544-27.29 2.662-38.81l-420.301-488.653zM1018.982 173.568c-3.789-25.293-16.896-20.019-23.706-9.318-6.81 10.803-36.915 56.422-49.306 77.107-12.288 20.48-42.598 60.979-99.021 20.992-58.778-41.523-38.349-70.502-28.109-90.010 10.291-19.61 41.882-74.598 46.438-81.408 4.557-6.912-0.768-26.982-18.995-18.586-18.278 8.397-129.178 52.48-144.538 115.712-15.718 64.307 13.158 121.805-43.52 178.893l-68.762 71.68 69.069 80.179 84.685-80.384c20.173-20.275 63.283-39.987 102.298-31.078 83.61 18.893 129.229-12.493 156.723-64.41 24.678-46.387 20.582-144.077 16.742-169.37zM140.237 873.114c-10.65 10.701-10.65 28.109 0 38.81l48.691 47.616c10.65 10.701 27.546 6.195 38.195-4.506l251.238-246.989-76.954-87.757-261.171 252.826z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["tools"],"grid":20},"attrs":[],"properties":{"id":303,"order":304,"prevSize":20,"code":59950,"name":"tools"},"setIdx":0,"setId":1,"iconIdx":302},{"icon":{"paths":["M512 618.394c122.368 0 224.87-41.574 231.066-95.898-18.227-50.995-38.093-106.701-57.6-161.382-13.517 38.963-88.32 66.611-173.466 66.611s-159.949-27.648-173.466-66.611c-19.507 54.682-39.373 110.387-57.549 161.382 6.195 54.323 108.646 95.898 231.014 95.898zM512 275.098c57.549 0 110.95-17.818 126.618-45.517-21.555-60.518-40.038-112.486-51.763-145.203-7.782-21.862-43.059-33.178-74.854-33.178s-67.072 11.315-74.854 33.178c-11.674 32.717-30.208 84.685-51.763 145.203 15.667 27.699 69.12 45.517 126.618 45.517zM961.536 668.979l-192.256-77.517 22.17 61.798c-1.126 65.485-128.205 117.709-279.45 117.709-151.194 0-278.374-52.173-279.45-117.709l22.17-61.798-192.256 77.517c-53.914 21.709-56.218 61.901-5.018 89.293l361.574 193.894c51.098 27.392 134.81 27.392 185.958 0l361.626-193.894c51.149-27.392 48.845-67.584-5.069-89.293z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["traffic-cone"],"grid":20},"attrs":[],"properties":{"id":304,"order":305,"prevSize":20,"code":59951,"name":"traffic-cone"},"setIdx":0,"setId":1,"iconIdx":303},{"icon":{"paths":["M1024 512c0-69.683-38.81-133.939-103.987-185.446-0.102-0.051-0.205-0.051-0.256-0.154-18.534-182.886-193.894-326.4-407.757-326.4s-389.222 143.514-407.757 326.4c-0.051 0.102-0.154 0.102-0.256 0.154-65.178 51.507-103.987 115.763-103.987 185.446 0 159.334 202.086 290.253 460.8 305.664 0 17.306 0 34.97 0 52.736 0 51.2-93.235 97.843-93.235 97.843-5.069 2.509-7.578 8.858-5.581 14.182 0 0 15.616 41.574 47.616 41.574s57.549-25.6 121.549-25.6 124.877 22.118 124.877 22.118c5.222 1.946 12.851 0.256 16.845-3.738l36.71-36.71c3.994-3.994 2.97-8.858-2.355-10.854 0 0-92.774-34.816-92.774-98.816 0-15.974 0-36.147 0-57.395 233.677-28.416 409.549-152.371 409.549-301.005zM102.4 512c0-52.173 39.322-99.584 103.526-135.731-0.512-5.939-1.126-11.878-1.126-17.869 0-141.414 137.574-256 307.2-256s307.2 114.586 307.2 256c0 5.99-0.614 11.93-1.075 17.869 64.154 36.147 103.475 83.558 103.475 135.731 0 95.437-130.611 175.309-307.149 198.093 0-20.531 0-34.202 0-34.202 0-5.632 3.328-13.414 7.424-17.254l93.85-88.371c4.096-3.891 7.475-11.622 7.475-17.254v-43.571c0-5.632-3.994-7.936-8.806-5.069l-91.085 53.606c-4.915 2.867-8.858 0.614-8.858-5.069v-184.269c0-5.632-4.352-8.806-9.728-7.014l-134.195 44.749c-5.325 1.792-9.677 7.834-9.677 13.466v133.12c0 5.632-4.045 8.090-9.062 5.478l-103.526-54.477c-4.966-2.611-12.288-1.536-16.282 2.458l-17.51 17.51c-3.994 3.994-3.738 10.291 0.461 13.978l138.24 120.883c4.25 3.738 7.68 11.366 7.68 16.998 0 0 0 15.258 0 39.168-201.984-12.544-358.451-98.509-358.451-202.957z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["tree"],"grid":20},"attrs":[],"properties":{"id":305,"order":306,"prevSize":20,"code":59952,"name":"tree1"},"setIdx":0,"setId":1,"iconIdx":304},{"icon":{"paths":["M572.416 735.027c0-74.291 56.32-115.405 148.173-176.23 112.333-74.547 252.211-167.168 252.211-387.072 0-19.814-16.23-35.789-36.301-35.789h-175.616c-24.781-45.875-98.765-94.976-248.883-94.976-150.221 0-224.102 49.101-248.934 94.976h-175.667c-20.019 0-36.198 16.026-36.198 35.789 0 219.904 139.776 312.525 252.211 387.021 91.853 60.826 148.173 101.939 148.173 176.23v67.123c-96.461 10.701-167.373 46.387-167.373 88.883 0 50.893 101.99 92.109 227.789 92.109s227.789-41.216 227.789-92.109c0-42.496-70.912-78.182-167.373-88.883v-67.072zM714.598 476.16c28.979-61.389 52.019-144.691 55.706-268.595h128.512c-12.288 138.291-95.334 208.077-184.218 268.595zM512 103.731c139.878-0.102 194.509 57.088 194.458 78.285 0 21.402-54.579 78.49-194.458 78.592-139.878-0.051-194.509-57.139-194.509-78.541-0.051-21.197 54.63-78.438 194.509-78.336zM125.184 207.565h128.461c3.738 123.904 26.675 207.206 55.757 268.595-88.883-60.518-171.981-130.304-184.218-268.595z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["trophy"],"grid":20},"attrs":[],"properties":{"id":306,"order":307,"prevSize":20,"code":59953,"name":"trophy1"},"setIdx":0,"setId":1,"iconIdx":305},{"icon":{"paths":["M921.6 51.2h-819.2c-56.371 0-102.4 46.080-102.4 102.4v563.2c0 56.32 45.158 111.514 100.403 122.522l223.846 44.8c0 0-192.666 88.678-68.25 88.678h512c124.416 0-68.301-88.678-68.301-88.678l223.898-44.8c55.194-11.008 100.403-66.202 100.403-122.522v-563.2c0-56.32-46.080-102.4-102.4-102.4zM921.6 716.8h-819.2v-563.2h819.2v563.2z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["tv"],"grid":20},"attrs":[],"properties":{"id":307,"order":308,"prevSize":20,"code":59954,"name":"tv1"},"setIdx":0,"setId":1,"iconIdx":306},{"icon":{"paths":["M819.2 204.8h-614.4c-56.371 0-102.4 46.080-102.4 102.4v358.4c0 56.32 46.029 102.4 102.4 102.4h204.8l204.8 153.6v-153.6h204.8c56.32 0 102.4-46.080 102.4-102.4v-358.4c0-56.32-46.080-102.4-102.4-102.4zM307.2 542.72c-31.078 0-56.32-25.19-56.32-56.32s25.19-56.32 56.32-56.32 56.32 25.19 56.32 56.32c0 31.078-25.242 56.32-56.32 56.32zM512 542.72c-31.078 0-56.32-25.19-56.32-56.32s25.19-56.32 56.32-56.32 56.32 25.19 56.32 56.32c0 31.078-25.242 56.32-56.32 56.32zM716.8 542.72c-31.078 0-56.32-25.19-56.32-56.32s25.19-56.32 56.32-56.32 56.32 25.19 56.32 56.32c0 31.078-25.242 56.32-56.32 56.32z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["typing"],"grid":20},"attrs":[],"properties":{"id":308,"order":309,"prevSize":20,"code":59955,"name":"typing"},"setIdx":0,"setId":1,"iconIdx":307},{"icon":{"paths":["M870.4 153.6c-56.525 0-102.4 45.824-102.4 102.4s45.875 102.4 102.4 102.4 102.4-45.824 102.4-102.4c0-56.576-45.875-102.4-102.4-102.4zM640 204.8h-563.2c-14.131 0-25.6 11.469-25.6 25.6v51.2c0 14.131 11.469 25.6 25.6 25.6h563.2c14.131 0 25.6-11.469 25.6-25.6v-51.2c0-14.131-11.469-25.6-25.6-25.6zM640 460.8h-563.2c-14.131 0-25.6 11.469-25.6 25.6v51.2c0 14.131 11.469 25.6 25.6 25.6h563.2c14.131 0 25.6-11.469 25.6-25.6v-51.2c0-14.131-11.469-25.6-25.6-25.6zM640 716.8h-563.2c-14.131 0-25.6 11.469-25.6 25.6v51.2c0 14.131 11.469 25.6 25.6 25.6h563.2c14.131 0 25.6-11.469 25.6-25.6v-51.2c0-14.131-11.469-25.6-25.6-25.6z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["unread"],"grid":20},"attrs":[],"properties":{"id":309,"order":310,"prevSize":20,"code":59956,"name":"unread"},"setIdx":0,"setId":1,"iconIdx":308},{"icon":{"paths":["M51.2 754.79l253.184-36.301-36.147 254.31 305.254-306.432-208.333-226.765-313.958 315.187zM955.597 282.675c20.019-20.122 25.6-48.384 0-72.653l-144.691-145.357c-14.285-15.77-52.275-20.070-72.294 0l-192.819 193.536 208.282 226.765 201.523-202.291zM957.747 783.002l-716.851-716.8c-20.019-20.019-52.378-20.019-72.397 0s-20.019 52.378 0 72.397l716.851 716.8c10.035 10.035 23.142 15.002 36.198 15.002 13.107 0 26.214-5.018 36.198-15.002 20.019-19.968 20.019-52.378 0-72.397z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["untag"],"grid":20},"attrs":[],"properties":{"id":310,"order":311,"prevSize":20,"code":59957,"name":"untag"},"setIdx":0,"setId":1,"iconIdx":309},{"icon":{"paths":["M395.52 109.875c-52.019 38.707-65.997 99.994-63.437 132.608 3.277 39.885 11.366 91.802 11.366 91.802s-16.026 8.704-16.026 43.725c5.581 87.91 34.97 49.971 41.011 88.525 14.541 92.877 47.77 76.339 47.77 127.027 0 84.429-34.816 123.904-143.514 170.701-109.056 47.002-221.491 106.138-221.491 208.538v51.2h921.6v-51.2c0-102.4-112.486-161.536-221.594-208.486-108.698-46.797-143.411-86.221-143.411-170.701 0-50.688 33.126-34.15 47.718-127.027 6.093-38.554 35.43-0.614 41.114-88.525 0-35.021-16.077-43.725-16.077-43.725s8.090-51.917 11.315-91.802c3.328-41.83-20.378-131.123-117.76-158.515-17.050-17.408-28.57-45.107 23.859-72.909-114.688-5.376-141.363 54.63-202.445 98.765z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["user"],"grid":20},"attrs":[],"properties":{"id":311,"order":312,"prevSize":20,"code":59958,"name":"user1"},"setIdx":0,"setId":1,"iconIdx":310},{"icon":{"paths":["M818.637 979.405c0-114.995-111.974-173.517-221.030-220.518-108.698-46.797-143.411-86.221-143.411-170.701 0-50.637 33.178-34.15 47.718-127.027 6.144-38.502 35.43-0.614 41.062-88.525 0-35.021-16.026-43.725-16.026-43.725s8.141-51.866 11.315-91.802c3.277-41.83-20.378-131.072-117.811-158.464-16.998-17.459-28.518-45.158 23.91-72.909-114.688-5.325-141.363 54.682-202.445 98.816-51.968 38.707-65.997 99.994-63.488 132.608 3.328 39.936 11.418 91.802 11.418 91.802s-16.077 8.704-16.077 43.725c5.632 87.962 35.021 50.022 41.114 88.525 14.541 92.877 47.77 76.39 47.77 127.027 0 84.48-10.854 113.152-119.603 159.949-109.107 46.95-143.053 122.214-142.49 231.219 0.154 32.614-0.563 44.595-0.563 44.595h819.2c0 0-0.563-11.981-0.563-44.595zM948.634 684.288c-58.112-23.398-82.176-51.302-82.176-105.779 0-32.819 21.402-22.118 30.822-82.074 3.942-24.781 22.886-0.41 26.522-57.088 0-22.579-10.342-28.211-10.342-28.211s5.274-33.587 7.322-59.341c2.56-32.102-18.637-115.046-116.122-115.046-97.434 0-118.682 82.944-116.173 115.046 2.15 25.702 7.373 59.341 7.373 59.341s-10.342 5.581-10.342 28.211c3.635 56.678 22.579 32.307 26.522 57.088 9.421 60.006 30.822 49.306 30.822 82.074 0 54.477-22.426 79.974-92.621 110.182-3.533 1.485-6.144 3.482-9.37 5.222 83.968 36.454 216.371 99.379 247.706 227.686h135.424c0 0 0-97.587 0-118.682 0-51.2-13.978-93.901-75.366-118.63z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["users"],"grid":20},"attrs":[],"properties":{"id":312,"order":313,"prevSize":20,"code":59959,"name":"users1"},"setIdx":0,"setId":1,"iconIdx":311},{"icon":{"paths":["M972.8 153.6h-921.6c-28.314 0-51.2 22.886-51.2 51.2v614.4c0 28.262 22.886 51.2 51.2 51.2h921.6c28.314 0 51.2-22.938 51.2-51.2v-614.4c0-28.262-22.886-51.2-51.2-51.2zM665.6 358.4h204.8v51.2h-204.8v-51.2zM563.2 757.914c-6.605-5.222-15.002-10.291-27.085-15.514-60.416-26.010-151.603-64.512-151.603-111.411 0-28.211 18.381-18.995 26.522-70.605 3.379-21.402 19.712-0.358 22.784-49.203 0-19.456-8.909-24.32-8.909-24.32s4.506-28.774 6.298-50.995c1.843-23.194-11.315-92.16-65.382-107.366-9.523-9.626-15.923-5.683 13.21-21.094-63.693-3.021-78.541 30.31-112.435 54.835-28.877 21.504-36.71 55.552-35.277 73.677 1.894 22.17 6.4 50.995 6.4 50.995s-8.96 4.813-8.96 24.269c3.123 48.845 19.456 27.802 22.784 49.203 8.090 51.61 26.573 42.394 26.573 70.605 0 46.899-91.187 85.402-151.603 111.411-10.394 4.506-17.869 8.858-24.115 13.312v-499.712h460.8v501.914zM921.6 563.2h-256v-51.2h256v51.2z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["v-card"],"grid":20},"attrs":[],"properties":{"id":313,"order":314,"prevSize":20,"code":59960,"name":"v-card"},"setIdx":0,"setId":1,"iconIdx":312},{"icon":{"paths":["M1024 256v-61.491c0-22.63-18.278-40.909-40.909-40.909h-942.080c-22.682 0-41.011 18.278-41.011 40.909v61.491h102.4v102.4h-102.4v102.4h102.4v102.4h-102.4v102.4h102.4v102.4h-102.4v61.389c0 22.63 18.33 41.011 41.011 41.011h942.080c22.63 0 40.909-18.381 40.909-41.011v-61.389h-102.4v-102.4h102.4v-102.4h-102.4v-102.4h102.4v-102.4h-102.4v-102.4h102.4zM409.6 665.6v-307.2l256 153.6-256 153.6z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["video"],"grid":20},"attrs":[],"properties":{"id":314,"order":315,"prevSize":20,"code":59961,"name":"video"},"setIdx":0,"setId":1,"iconIdx":313},{"icon":{"paths":["M511.949 40.96c-260.147 0-470.989 210.893-470.989 471.091 0 260.096 210.842 470.989 470.989 470.989s471.040-210.893 471.040-470.989c0-260.198-210.893-471.091-471.040-471.091zM512 665.651c-84.838 0-153.6-68.813-153.6-153.6s68.762-153.6 153.6-153.6c84.787 0 153.6 68.813 153.6 153.6s-68.813 153.6-153.6 153.6z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["vinyl"],"grid":20},"attrs":[],"properties":{"id":315,"order":316,"prevSize":20,"code":59962,"name":"vinyl"},"setIdx":0,"setId":1,"iconIdx":314},{"icon":{"paths":["M788.48 297.011c-130.099 0-235.571 105.421-235.571 235.52 0 49.408 15.258 95.181 41.267 133.12h-164.403c26.010-37.888 41.216-83.712 41.216-133.12 0-130.099-105.421-235.52-235.52-235.52-130.048 0-235.52 105.421-235.52 235.52 0.051 130.048 105.472 235.469 235.571 235.469h552.96c130.048 0 235.52-105.421 235.52-235.52s-105.472-235.469-235.52-235.469zM102.4 532.48c0-73.523 59.597-133.12 133.12-133.12s133.12 59.597 133.12 133.12c0 73.523-59.597 133.12-133.12 133.12s-133.12-59.597-133.12-133.12zM788.48 665.6c-73.574 0-133.171-59.597-133.171-133.12s59.597-133.12 133.171-133.12c73.472 0 133.12 59.597 133.12 133.12s-59.597 133.12-133.12 133.12z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["voicemail"],"grid":20},"attrs":[],"properties":{"id":316,"order":317,"prevSize":20,"code":59963,"name":"voicemail"},"setIdx":0,"setId":1,"iconIdx":315},{"icon":{"paths":["M819.2 307.2h-640v-25.6l563.2-45.056v45.056h76.8v-76.8c0-56.32-45.619-95.846-101.325-87.91l-514.099 73.421c-55.757 7.987-101.376 60.57-101.376 116.89v512c0 56.525 45.824 102.4 102.4 102.4h614.4c56.525 0 102.4-45.875 102.4-102.4v-409.6c0-56.525-45.875-102.4-102.4-102.4zM742.4 665.907c-42.394 0-76.8-34.406-76.8-76.8s34.406-76.8 76.8-76.8 76.8 34.406 76.8 76.8-34.406 76.8-76.8 76.8z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["wallet"],"grid":20},"attrs":[],"properties":{"id":317,"order":318,"prevSize":20,"code":59964,"name":"wallet"},"setIdx":0,"setId":1,"iconIdx":316},{"icon":{"paths":["M505.958 465.562c-26.163 210.688-159.795 248.166-159.795 394.65 0 90.419 75.93 163.789 165.837 163.789s165.786-73.421 165.786-163.789c0-146.483-133.632-183.962-159.795-394.65-0.819-6.298-11.213-6.298-12.032-0zM198.81 4.762c-26.163 210.688-159.795 248.115-159.795 394.65 0 90.368 75.878 163.789 165.786 163.789s165.786-73.421 165.786-163.789c0-146.483-133.632-183.962-159.795-394.65-0.768-6.298-11.213-6.298-11.981 0zM813.21 4.762c-26.163 210.688-159.795 248.166-159.795 394.65 0 90.368 75.878 163.789 165.786 163.789s165.786-73.421 165.786-163.789c0-146.483-133.632-183.962-159.795-394.65-0.819-6.298-11.213-6.298-11.981 0z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["water"],"grid":20},"attrs":[],"properties":{"id":318,"order":319,"prevSize":20,"code":59965,"name":"water"},"setIdx":0,"setId":1,"iconIdx":317},{"icon":{"paths":["M427.469 473.958c-8.141-6.093-16.64-11.11-25.446-15.002-8.909-3.994-17.715-5.99-26.573-5.99-16.333 0-29.235 6.195-38.758 18.483-9.626 12.39-14.387 26.266-14.387 41.574 0 16.742 4.915 30.515 14.694 41.216s23.296 16.077 40.499 16.077c8.858 0 17.664-1.792 26.573-5.325 8.858-3.482 17.254-7.885 25.139-13.261 7.936-5.325 15.411-11.366 22.374-18.125 7.014-6.707 13.261-13.414 18.842-19.917-5.581-5.939-12.134-12.595-19.558-19.814s-15.258-13.875-23.398-19.917zM646.502 452.966c-9.318 0-18.33 1.997-26.88 5.99-8.602 3.891-16.742 8.909-24.474 15.002-7.68 6.042-15.002 12.698-22.016 19.917s-13.363 13.875-18.842 19.917c6.042 7.014 12.544 13.926 19.558 20.582 7.014 6.81 14.387 12.8 22.426 18.176 7.834 5.325 16.077 9.626 24.73 12.902 8.602 3.277 17.869 4.915 27.597 4.915 17.254 0 30.464-5.581 39.782-16.794 9.37-11.213 13.926-24.883 13.926-41.216 0-16.282-5.069-30.31-15.002-41.882-9.984-11.674-23.603-17.51-40.806-17.51zM512 20.48c-271.462 0-491.52 220.058-491.52 491.52s220.058 491.52 491.52 491.52 491.52-220.058 491.52-491.52-220.058-491.52-491.52-491.52zM759.552 561.254c-5.53 15.821-13.466 29.696-23.706 41.523-10.24 11.93-22.938 21.197-38.042 27.955-15.155 6.758-32 10.086-50.637 10.086-14.438 0-27.955-2.202-40.499-6.605-12.595-4.454-24.371-10.24-35.277-17.51-10.957-7.219-21.299-15.565-31.13-25.088-9.728-9.626-19.046-19.456-27.955-29.696-9.728 10.24-19.302 20.122-28.621 29.696-9.37 9.523-19.2 17.92-29.747 25.088-10.445 7.27-21.862 13.056-34.202 17.51-12.288 4.403-26.163 6.605-41.574 6.605-19.098 0-36.045-3.328-50.995-10.086-14.899-6.758-27.75-15.821-38.4-27.238-10.701-11.469-18.842-25.037-24.474-40.858-5.478-15.821-8.294-32.819-8.294-50.944 0-18.176 2.662-35.021 8.038-50.637s13.21-29.082 23.398-40.55c10.24-11.469 22.784-20.429 37.734-27.238 14.848-6.707 31.59-10.086 50.278-10.086 15.36 0 29.44 2.304 42.24 7.014 12.8 4.608 24.627 10.803 35.584 18.483 11.008 7.629 21.248 16.486 30.822 26.522s18.944 20.582 28.262 31.795c8.909-10.701 18.125-21.197 27.597-31.386 9.626-10.291 19.814-19.251 30.822-26.88 10.906-7.68 22.784-13.875 35.584-18.483 12.8-4.71 26.675-7.014 41.472-7.014 18.688 0 35.43 3.174 50.381 9.779 14.899 6.502 27.443 15.411 37.683 26.829 10.24 11.469 18.125 24.73 23.706 40.141 5.632 15.411 8.397 32.102 8.397 50.278 0 18.227-2.765 35.226-8.448 50.995z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["500px-with-circle"],"grid":20},"attrs":[],"properties":{"id":319,"order":320,"prevSize":20,"code":59966,"name":"500px-with-circle"},"setIdx":0,"setId":1,"iconIdx":318},{"icon":{"paths":["M327.578 756.48c24.627-8.909 47.514-20.48 68.454-34.97 20.992-14.438 40.806-31.13 59.392-50.278 18.586-19.098 37.683-38.861 57.242-59.341 17.715 20.48 36.352 40.243 55.91 59.341 19.558 19.149 40.294 35.84 62.157 50.278 21.914 14.438 45.414 26.061 70.605 34.97 25.088 8.858 52.070 13.261 80.998 13.261 37.222 0 71.014-6.758 101.222-20.275 30.259-13.517 55.654-32.102 76.134-55.91 20.429-23.757 36.352-51.456 47.514-83.098 11.213-31.59 16.794-65.587 16.794-101.939s-5.581-69.837-16.794-100.557c-11.162-30.822-27.034-57.498-47.514-80.333s-45.67-40.704-75.418-53.76c-29.85-13.107-63.386-19.61-100.659-19.61-29.747 0-57.498 4.71-83.098 13.978-25.6 9.318-49.357 21.658-71.219 37.018-21.914 15.36-42.394 33.28-61.491 53.811-19.046 20.429-37.478 41.472-55.194 62.874-18.637-22.374-37.478-43.52-56.525-63.59-19.098-20.019-39.578-37.734-61.491-53.094s-45.619-27.699-71.219-37.018c-25.6-9.318-53.811-13.978-84.48-13.978-37.274 0-70.912 6.81-100.608 20.275-29.901 13.517-54.938 31.59-75.469 54.477-20.48 22.835-36.147 49.869-46.797 81.050-10.701 31.181-16.026 64.922-16.026 101.171 0 36.352 5.53 70.349 16.691 101.99 11.213 31.693 27.494 58.88 48.896 81.766 21.453 22.835 47.053 41.011 76.8 54.477 29.901 13.517 63.795 20.275 102.042 20.275 30.72 0 58.47-4.403 83.149-13.261zM161.997 596.48c-19.61-21.402-29.338-48.896-29.338-82.381 0-30.72 9.523-58.47 28.723-83.149 19.046-24.576 44.851-37.018 77.568-37.018 17.664 0 35.277 3.994 52.992 11.878s34.714 17.92 51.046 30.054c16.23 12.134 31.846 25.395 46.694 39.782 14.899 14.49 27.955 27.75 39.168 39.834-11.213 13.056-23.757 26.368-37.734 39.731-13.978 13.619-28.774 25.702-44.646 36.352-15.923 10.752-32.614 19.558-50.33 26.573-17.664 7.014-35.379 10.496-53.043 10.496-34.56 0-61.542-10.701-81.101-32.154zM729.907 618.906c-17.203-6.502-33.792-15.155-49.562-25.856-15.923-10.701-30.874-22.784-44.749-36.301-13.978-13.517-27.034-27.238-39.117-41.267 11.162-12.083 23.706-25.344 37.683-39.834 13.978-14.387 28.672-27.648 43.981-39.731 15.36-12.134 31.693-22.17 48.896-30.054 17.254-7.885 35.226-11.878 53.811-11.878 34.458 0 61.645 11.622 81.715 34.97 20.070 23.245 30.054 51.2 30.054 83.866 0 32.614-9.37 60.006-27.955 82.33-18.637 22.426-45.158 33.536-79.616 33.536-19.507-0.051-37.939-3.277-55.142-9.779z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["500px"],"grid":20},"attrs":[],"properties":{"id":320,"order":321,"prevSize":20,"code":59967,"name":"500px1"},"setIdx":0,"setId":1,"iconIdx":319},{"icon":{"paths":["M512 102.4c-239.258 0-476.16 331.827-476.16 636.006 0 70.502 232.141 183.194 476.16 183.194s476.16-112.691 476.16-183.194c0-304.179-236.902-636.006-476.16-636.006zM512.307 799.488c-266.138 0-341.658-105.882-341.658-139.366 0-65.894 109.056-229.632 148.787-229.632 36.813 0 78.95 92.723 118.477 92.723 63.539 0 131.43-202.445 183.245-202.445s235.571 265.114 235.571 345.549c0 13.875-55.501 133.171-344.422 133.171z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["basecamp"],"grid":20},"attrs":[],"properties":{"id":321,"order":322,"prevSize":20,"code":59968,"name":"basecamp1"},"setIdx":0,"setId":1,"iconIdx":320},{"icon":{"paths":["M413.286 476.211c0 0 96.87-7.526 96.87-125.901 0-118.528-79.258-176.179-179.712-176.179h-330.445v661.811h330.445c0 0 201.779 6.605 201.779-195.379-0.051-0.051 8.755-164.352-118.938-164.352zM145.613 291.686h184.832c0 0 44.954 0 44.954 68.813 0 68.915-26.419 78.899-56.422 78.899h-173.363v-147.712zM321.075 718.285h-175.462v-176.896h184.832c0 0 66.97-0.922 66.97 90.88 0 77.414-50.022 85.453-76.339 86.016zM801.229 342.426c-244.275 0-244.070 254.31-244.070 254.31s-16.691 252.979 244.070 252.979c0 0 217.242 13.005 217.242-175.974h-111.718c0 0 3.686 71.219-101.786 71.219 0 0-111.821 7.782-111.821-115.2h328.858c0.051-0.051 36.301-287.334-220.774-287.334zM900.608 541.389h-208.589c0 0 13.619-101.99 111.718-101.99s96.87 101.99 96.87 101.99zM926.566 212.992h-261.99v81.613h261.99v-81.613z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["behance"],"grid":20},"attrs":[],"properties":{"id":322,"order":323,"prevSize":20,"code":59969,"name":"behance1"},"setIdx":0,"setId":1,"iconIdx":321},{"icon":{"paths":["M645.12 153.6c-100.659 0-191.488 41.626-256.614 108.493-19.661-3.994-39.987-6.093-60.826-6.093-169.677 0-307.2 137.523-307.2 307.2s137.523 307.2 307.2 307.2h317.44c197.939 0 358.4-160.461 358.4-358.4s-160.461-358.4-358.4-358.4zM327.68 805.274c-64.666 0-125.44-25.19-171.213-70.912-45.67-45.722-70.861-106.547-70.861-171.162s25.19-125.44 70.912-171.162c45.722-45.722 106.496-70.912 171.162-70.912s125.44 25.19 171.213 70.912l95.949 96c13.978 13.978 13.978 36.659 0 50.688-14.029 14.029-36.762 13.978-50.688 0l-95.949-96.051c-64.41-64.307-176.589-64.307-240.998 0-32.205 32.256-49.92 75.008-49.92 120.525s17.715 88.269 49.92 120.525c40.192 40.141 98.97 55.194 153.139 45.261 16.589 21.709 35.277 41.728 56.32 59.136-28.006 11.059-58.010 17.152-88.986 17.152zM854.477 721.357c-55.962 55.91-130.304 86.733-209.357 86.733-79.104 0-153.446-30.822-209.408-86.733l-138.701-138.701c-13.978-13.978-13.978-36.71 0-50.688s36.71-13.978 50.688 0l138.701 138.701c42.394 42.394 98.765 65.741 158.72 65.741s116.275-23.347 158.669-65.741 65.741-98.765 65.741-158.669-23.347-116.275-65.741-158.669-98.714-65.741-158.669-65.741c-44.698 0-87.398 13.056-123.802 37.222-19.507-15.821-41.062-29.133-64.051-39.885 52.992-43.93 118.221-69.069 187.904-69.069 79.053 0 153.395 30.822 209.357 86.733 55.962 55.962 86.733 130.304 86.733 209.357s-30.822 153.498-86.784 209.408z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["creative-cloud"],"grid":20},"attrs":[],"properties":{"id":323,"order":324,"prevSize":20,"code":59970,"name":"creative-cloud"},"setIdx":0,"setId":1,"iconIdx":322},{"icon":{"paths":["M312.781 46.182l-292.301 182.016 200.243 167.885 291.277-189.082-199.219-160.819zM688.742 818.79c-5.222 0-10.394-1.69-14.592-5.222l-162.15-134.554-162.15 134.605c-4.198 3.482-9.421 5.222-14.592 5.222-4.352 0-8.704-1.178-12.493-3.686l-120.115-78.49v46.285l309.35 194.867 309.35-194.918v-46.285l-120.115 78.49c-3.789 2.509-8.141 3.686-12.493 3.686zM1003.52 228.198l-292.352-182.016-199.168 160.819 291.226 189.082 200.294-167.885zM512 578.099l180.634 149.914 288.819-188.826-178.227-143.104-291.226 182.016zM331.366 728.013l180.634-149.914-291.277-182.016-178.176 143.104 288.819 188.826z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["dropbox"],"grid":20},"attrs":[],"properties":{"id":324,"order":325,"prevSize":20,"code":59971,"name":"dropbox1"},"setIdx":0,"setId":1,"iconIdx":323},{"icon":{"paths":["M887.757 220.518c0-58.88-88.678-65.382-88.678-65.382l-208.333-13.107c0 0-4.454-56.678-46.541-76.39-42.086-19.61-88.371-13.619-121.651-13.312-33.28 0.358-41.114 42.752-41.114 82.79 0 39.987 0.717 86.221 0.717 115.2 0 52.122-22.886 74.189-80.179 74.189h-118.118c-33.024-2.099-58.726 3.277-58.726 30.003 0 26.778 38.861 254.618 92.211 307.2 30.976 30.515 220.416 51.917 260.301 51.917s26.573-117.811 37.683-117.811c11.11 0 23.245 66.509 86.118 82.074 62.771 15.718 146.637 12.8 151.091 57.498 5.786 58.982 11.11 135.27-27.699 140.698l-87.859 3.482c-60.211-4.301-44.032-70.093-17.459-70.093s39.885-0.973 39.885-0.973l3.328-71.987c0 0-137.882-16.282-143.718 76.698-5.376 84.992 9.216 125.082 19.917 133.786 10.701 8.806 29.235 25.805 198.093 25.805 237.926 0 150.733-693.402 150.733-752.282zM790.528 528.384c-9.318 10.035-43.11-16.384-75.366-16.384-32.307 0-67.123 17.101-75.315 5.786-8.192-11.213 7.475-101.888 68.301-101.888s91.802 102.605 82.381 112.486z","M297.165 213.299c0-11.725 2.97-152.781 2.97-152.781l-179.456 176.128c0 0 124.006 0 148.378 0 24.371-0.051 28.109-11.725 28.109-23.347z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"tags":["evernote"],"grid":20},"attrs":[{},{}],"properties":{"id":325,"order":326,"prevSize":20,"code":59972,"name":"evernote"},"setIdx":0,"setId":1,"iconIdx":324},{"icon":{"paths":["M286.618 437.299c0-83.814 22.221-137.114 96.717-149.094 26.010-5.12 80.179-3.277 114.637-3.277v128c0 1.229 0.154 3.277 0.461 4.301 1.382 5.171 6.093 8.96 11.674 8.96 3.123 0 6.042-1.587 9.114-4.608l319.283-319.181h-452.045c-188.109 0-284.058 108.288-284.058 310.579v424.294l184.218-184.422v-215.552zM737.28 371.098v215.501c0 83.814-22.221 137.216-96.717 149.094-26.010 5.12-80.179 3.328-114.586 3.328v-128c0-1.126-0.205-3.174-0.461-4.301-1.434-5.12-6.144-8.909-11.674-9.011-3.174 0-6.042 1.69-9.165 4.71l-319.232 319.078 452.096 0.102c188.058 0 284.058-108.288 284.058-310.579v-424.294l-184.32 184.371z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["flattr"],"grid":20},"attrs":[],"properties":{"id":326,"order":327,"prevSize":20,"code":59973,"name":"flattr1"},"setIdx":0,"setId":1,"iconIdx":325},{"icon":{"paths":["M251.904 51.2c-26.010 0-47.104 21.094-47.104 47.104v845.619c0 32 39.168 47.411 61.030 24.064l228.915-245.248c3.482-3.789 8.346-5.939 13.517-5.939h165.734c24.883 0 46.336-17.562 51.251-41.984l108.083-538.317c8.858-44.134-24.883-85.299-69.888-85.299h-511.539zM452.506 624.128l-145.306 170.854v-623.821c0-9.677 7.885-17.562 17.562-17.562h365.568c17.51 0 30.618 16.026 27.136 33.178l-21.146 105.216c-1.741 8.858-9.523 15.206-18.534 15.206h-189.952c-14.95 0-27.034 12.083-27.034 27.034v62.464c0 7.117 5.786 12.902 12.954 12.902h168.653c15.667 0 27.443 14.336 24.371 29.747l-31.437 156.57c-2.202 10.752-11.674 18.483-22.63 18.483h-139.11c-8.141 0-15.821 3.533-21.094 9.728z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["foursquare"],"grid":20},"attrs":[],"properties":{"id":327,"order":328,"prevSize":20,"code":59974,"name":"foursquare1"},"setIdx":0,"setId":1,"iconIdx":326},{"icon":{"paths":["M418.56 665.6l-170.189 307.2h605.389l170.24-307.2h-605.44zM300.288 117.709l-300.288 543.488 172.646 311.501 300.339-543.488-172.698-311.501zM995.584 614.4l-312.115-563.2h-345.344l311.706 563.2h345.754z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["google-drive"],"grid":20},"attrs":[],"properties":{"id":328,"order":329,"prevSize":20,"code":59975,"name":"google-drive1"},"setIdx":0,"setId":1,"iconIdx":327},{"icon":{"paths":["M512 0c-243.2 0-440.32 194.867-440.32 435.2s197.12 435.2 440.32 435.2v153.6c172.442-85.606 440.32-271.616 440.32-588.8 0-240.333-197.12-435.2-440.32-435.2zM460.8 498.739c0 67.994-52.275 124.006-118.784 129.946-6.298 0.563-11.674-4.506-11.674-10.803v-43.622c0-5.427 4.045-9.933 9.421-10.752 27.187-3.891 47.974-24.934 53.606-51.507h-99.891c-20.685 0-37.478-16.794-37.478-37.478v-129.843c0-20.685 16.794-37.478 37.478-37.478h129.843c20.685 0 37.478 16.794 37.478 37.478v154.061zM768 498.739c0 67.994-52.275 124.006-118.784 129.946-6.298 0.563-11.674-4.506-11.674-10.803v-43.622c0-5.427 4.045-9.933 9.421-10.752 27.187-3.942 47.974-24.934 53.606-51.507h-99.891c-20.685 0-37.478-16.794-37.478-37.478v-129.843c0-20.685 16.794-37.478 37.478-37.478h129.843c20.685 0 37.478 16.794 37.478 37.478v154.061z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["google-hangouts"],"grid":20},"attrs":[],"properties":{"id":329,"order":330,"prevSize":20,"code":59976,"name":"google-hangouts"},"setIdx":0,"setId":1,"iconIdx":328},{"icon":{"paths":["M512 61.389c-248.883 0-450.56 201.728-450.56 450.611 0 248.781 201.677 450.611 450.611 450.611 248.832 0 450.56-201.779 450.56-450.611-0.051-248.883-201.728-450.611-450.611-450.611zM693.146 529.306c-24.371-34.099-49.306-67.584-76.646-99.277-25.651-29.901-52.941-58.419-82.637-84.224-29.594-25.805-61.85-50.278-97.28-67.379-23.808-11.52-48.333-20.122-73.677-27.443-2.867-0.768-10.65-4.301-12.902-0.768-1.434 2.202-0.307 6.298-0.102 8.704 0.717 5.274 1.331 10.496 1.997 15.77 7.578 62.874 10.445 129.28-9.114 190.413-10.445 32.922-29.594 62.976-55.040 86.323-21.146 19.405-51.302 38.912-81.254 37.478-5.53-0.205-11.162-1.178-16.589-3.021-32.051-10.803-33.946-45.363-34.15-73.882-0.205-30.618 3.482-61.184 11.059-90.88 2.304-9.114 5.171-18.074 8.192-26.982 35.072-101.683 116.224-184.422 218.061-220.518 38.093-13.517 78.438-20.326 118.938-20.326 119.091 0 232.397 61.184 297.83 160.614 16.384 24.986 29.542 52.019 39.219 80.179h-0.154c3.123 8.909 5.99 17.92 8.346 26.982 7.475 29.696 11.264 60.314 11.059 90.88-0.41 57.6-18.944 121.19-91.29 90.675-34.15-14.438-62.669-43.622-83.866-73.318z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["grooveshark"],"grid":20},"attrs":[],"properties":{"id":330,"order":331,"prevSize":20,"code":59977,"name":"grooveshark"},"setIdx":0,"setId":1,"iconIdx":329},{"icon":{"paths":["M558.541 256c96.461 0 174.95 81.818 174.95 182.323 0 6.963-0.614 14.848-1.894 24.781 0 0-8.346 64.614-10.547 81.613s9.523 33.28 27.034 33.434c17.51 0.102 84.48 0.512 84.48 0.512 49.050 0.307 89.037 42.752 89.037 94.618 0 52.224-40.192 94.72-89.6 94.72h-618.65c-61.184 0-110.95-52.326-110.95-116.634 0-46.746 26.573-88.832 67.738-107.264 0 0 21.555-9.626 33.331-14.899s26.010-22.067 26.419-39.68c0.41-17.613 0.819-36.557 0.819-36.557 0.614-27.392 21.555-49.664 46.592-49.664 1.638 0 4.813 0.307 10.598 1.792 0 0 39.629 10.086 53.197 13.517s31.027-3.379 37.376-15.821c6.349-12.442 25.754-50.227 25.754-50.227 30.618-59.546 89.754-96.563 154.317-96.563zM558.541 153.6c-106.547 0-198.963 61.798-245.402 152.269-11.52-2.918-23.398-4.915-35.789-4.915-81.254 0-147.098 66.765-148.992 149.709-75.469 33.741-128.358 110.797-128.358 200.704 0 120.986 95.488 219.034 213.35 219.034h618.65c106.035 0 192-88.269 192-197.12 0-108.442-85.35-196.352-190.874-197.018 1.587-12.442 2.714-25.037 2.714-37.939 0.051-157.235-124.109-284.723-277.299-284.723v0z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["icloud"],"grid":20},"attrs":[],"properties":{"id":331,"order":332,"prevSize":20,"code":59978,"name":"icloud"},"setIdx":0,"setId":1,"iconIdx":330},{"icon":{"paths":["M488.755 883.61h48.896v109.722c333.312-35.021 511.078-365.722 482.355-598.579-28.877-232.96-279.091-393.83-560.333-359.424-281.19 34.509-484.762 251.29-455.987 484.301 26.266 211.866 235.622 364.186 485.069 363.981zM803.533 658.432h-93.747v-253.594c0-10.189-0.922-19.814-2.714-28.518-1.485-7.578-4.301-13.978-8.397-19.507-3.891-5.12-9.574-9.318-16.896-12.493-7.782-3.379-18.586-5.12-31.898-5.12-27.494 0-48.998 7.219-64.051 21.299-14.899 13.978-22.17 32.41-22.17 56.32v241.613h-93.696v-253.594c0-10.496-0.973-20.224-3.021-28.877-1.741-7.68-4.659-14.182-8.858-19.814-3.942-5.222-9.165-9.114-16.077-12.134-7.373-3.174-17.408-4.813-29.696-4.813-15.974 0-29.696 3.021-40.704 8.909-11.418 5.99-20.736 13.312-27.699 21.606-7.066 8.397-12.237 17.101-15.309 25.907-3.174 8.806-4.71 15.872-4.71 21.197v241.613h-93.798v-394.035h90.010v30.72c29.389-26.010 66.867-39.219 111.667-39.219 26.112 0 50.227 5.274 71.629 15.616 15.667 7.526 28.365 18.688 37.786 33.382 11.827-12.698 25.805-23.091 41.677-31.181 23.245-11.827 49.050-17.818 76.749-17.818 20.582 0 39.578 2.202 56.422 6.502 17.562 4.403 32.973 11.52 45.824 21.094 13.21 9.882 23.552 22.784 30.822 38.4 7.219 15.411 10.854 33.792 10.854 54.784v281.754z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["mixi"],"grid":20},"attrs":[],"properties":{"id":332,"order":333,"prevSize":20,"code":59979,"name":"mixi"},"setIdx":0,"setId":1,"iconIdx":331},{"icon":{"paths":["M329.165 504.166c24.934-100.403 115.149-173.773 222.259-173.773 63.283 0 122.573 25.856 165.478 70.758 18.125-5.837 39.322-10.342 58.163-10.752v-6.656c0-127.078-94.464-230.144-210.944-230.144-83.251 0-154.624 53.146-188.928 129.587-25.293-17.101-54.835-27.392-86.733-27.392-91.392 0-165.427 80.742-165.427 180.378 0 10.752 1.229 21.197 2.918 31.386-70.502 6.963-125.696 79.053-125.696 157.696 0 0.819 0.205 1.485 0.205 2.304-0.051 0.717-0.461 1.434-0.461 2.15 0 31.488 10.957 60.262 28.723 83.507 25.19 33.894 64.614 54.784 109.568 54.784h64.563c-12.595-24.986-20.378-52.838-20.378-82.688-0.051-88.934 62.976-163.43 146.688-181.146zM915.917 602.982c-1.28 0-2.56 0.358-3.84 0.41 0.358-3.789 1.126-7.475 1.126-11.366 0-75.366-61.082-136.397-136.448-136.397-30.003 0-57.498 9.933-80.077 26.419-27.955-51.968-82.125-87.654-145.306-87.654-91.546 0-165.734 74.189-165.734 165.734 0 1.178 0.307 2.202 0.358 3.379-6.042-0.922-12.083-1.843-18.381-1.843-68.352 0-123.648 55.347-123.648 123.648 0 8.55 0.87 16.896 2.509 24.934 11.674 62.003 65.946 108.954 131.379 108.954h548.147v-0.973c54.886-5.222 97.997-50.893 97.997-107.11 0-59.699-48.384-108.134-108.083-108.134z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["onedrive"],"grid":20},"attrs":[],"properties":{"id":333,"order":334,"prevSize":20,"code":59980,"name":"onedrive1"},"setIdx":0,"setId":1,"iconIdx":332},{"icon":{"paths":["M405.197 546.662h84.941c184.525 0 289.229-83.098 322.56-253.952 1.075-5.632 2.048-11.059 2.867-16.486 1.843-11.571 2.765-21.965 3.174-31.949 0.307-6.861 0.512-10.906 0.461-14.694-0.41-20.019-3.942-36.966-11.059-53.197-6.605-15.155-16.589-30.054-31.386-47.002-43.674-49.664-119.757-78.182-210.637-78.182h-289.434c-20.378 0-37.734 14.848-40.909 34.97l-52.224 336.435-64.973 419.072c-2.355 15.104 9.318 28.723 24.576 28.723h141.926l43.469-258.202c5.99-37.888 38.246-65.536 76.646-65.536zM871.27 311.808c-40.55 193.075-171.878 295.526-381.184 295.526h-84.89c-8.397 0-15.462 6.042-16.794 14.438l-56.576 351.027h148.838c17.818 0 33.024-12.954 35.789-30.566l1.485-7.68 28.416-179.917 1.843-9.933c2.765-17.613 17.971-30.566 35.789-30.566h22.528c145.92 0 260.147-59.29 293.53-230.707 13.722-70.656 6.758-129.741-28.774-171.622z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["paypal"],"grid":20},"attrs":[],"properties":{"id":334,"order":335,"prevSize":20,"code":59981,"name":"paypal1"},"setIdx":0,"setId":1,"iconIdx":333},{"icon":{"paths":["M297.37 93.338c-158.157 81.306-256.41 241.715-256.41 419.738 0 32.41 4.096 65.28 11.315 98.202l406.989-370.637c-43.418-39.475-157.491-143.309-161.894-147.302zM706.202 83.251c-61.44-27.904-126.771-42.291-194.253-42.291-47.821 0-94.976 7.987-140.749 22.579l335.002 304.691v-284.979zM777.83 124.826v543.59h178.432c17.562-50.278 26.726-102.605 26.726-155.392 0.051-155.29-77.926-300.646-205.158-388.198zM74.906 687.565c34.509 86.682 95.078 161.28 172.442 214.221v-371.2l-104.704 95.283c-35.738 32.461-65.536 59.699-67.738 61.696zM318.976 943.36c47.872 21.606 97.946 34.918 149.504 39.68h86.477c154.573-14.387 293.222-105.882 368.589-242.893h-604.57v203.213z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["picasa"],"grid":20},"attrs":[],"properties":{"id":335,"order":336,"prevSize":20,"code":59982,"name":"picasa"},"setIdx":0,"setId":1,"iconIdx":334},{"icon":{"paths":["M870.656 666.522c-39.885-28.006-89.651-26.112-117.965 14.182-28.314 40.192-226.202 288.41-550.451 185.293 12.237 10.701 25.088 20.787 38.656 30.31 212.634 149.811 506.47 98.714 656.179-113.92 28.416-40.294 13.466-87.757-26.419-115.866zM244.992 634.931c-20.685-44.595-136.653-340.122 114.688-569.395-15.36 5.325-30.566 11.315-45.568 18.278-235.981 109.312-338.739 389.274-229.427 625.306 20.634 44.595 69.274 55.501 113.562 35.021 44.237-20.531 67.379-64.614 46.746-109.21zM554.291 42.138c-48.947-4.403-82.637 32.205-87.040 80.794-4.352 48.589 22.272 90.675 71.219 95.078s362.854 51.712 435.712 384.102c3.174-15.923 5.427-32.102 6.963-48.589 23.296-259.123-167.782-488.090-426.854-511.386zM352.819 539.136c-13.517 31.693-15.667 62.106-4.813 67.686 7.475 3.891 19.149-5.018 30.106-21.299 4.352 17.766 15.104 33.894 30.464 46.797-16.077 5.888-26.624 15.616-26.624 26.573 0 18.125 28.467 32.717 63.539 32.717 31.642 0 57.856-11.878 62.72-27.494 1.28 0 6.298 0 7.526 0 4.864 15.616 31.078 27.494 62.771 27.494 35.123 0 63.539-14.592 63.539-32.717 0-11.008-10.496-20.685-26.624-26.573 15.309-12.902 26.112-28.979 30.413-46.797 10.957 16.282 22.63 25.19 30.157 21.299 10.803-5.581 8.704-35.994-4.864-67.686-10.598-24.986-24.986-43.418-35.942-47.411 0.205-1.587 0.205-3.226 0.205-4.813 0-9.728-2.662-18.586-7.27-25.805 0.102-0.614 0.102-1.178 0.102-1.69 0-4.506-1.075-8.602-2.867-12.186-2.765-64.922-45.005-116.429-113.357-116.429-68.403 0-110.643 51.507-113.408 116.378-1.792 3.584-2.918 7.68-2.918 12.186 0 0.512 0.051 1.075 0.102 1.69-4.506 7.27-7.219 16.179-7.219 25.856 0 1.587 0.051 3.174 0.205 4.813-10.906 3.994-25.344 22.374-35.942 47.411z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["qq"],"grid":20},"attrs":[],"properties":{"id":336,"order":337,"prevSize":20,"code":59983,"name":"qq"},"setIdx":0,"setId":1,"iconIdx":335},{"icon":{"paths":["M512 20.48c-271.462 0-491.52 220.058-491.52 491.52s220.058 491.52 491.52 491.52 491.52-220.058 491.52-491.52-220.058-491.52-491.52-491.52zM686.234 485.478c1.126 8.704 1.741 17.51 1.741 26.522 0 111.411-89.19 201.779-199.27 201.779-109.978 0-199.219-90.419-199.219-201.779 0-111.514 89.19-201.83 199.219-201.83 15.821 0 31.13 1.997 45.875 5.478v114.944c-23.245-8.499-51.968-7.27-78.899 5.683-48.742 23.603-73.472 76.493-55.245 118.323 18.278 41.779 72.602 56.627 121.395 33.024 33.587-16.179 63.181-55.194 63.181-104.192v-148.122c4.198 2.304 8.294 4.915 12.288 7.475 37.837 23.808 94.106 55.603 159.795 58.982 25.651 1.331-10.086 65.741-70.861 83.712z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["rdio-with-circle"],"grid":20},"attrs":[],"properties":{"id":337,"order":338,"prevSize":20,"code":59984,"name":"rdio-with-circle"},"setIdx":0,"setId":1,"iconIdx":336},{"icon":{"paths":["M433.562 44.288c-222.771 37.325-392.602 231.014-392.602 464.435 0 116.019 41.984 222.106 111.565 304.179 164.915-79.821 280.166-260.403 281.037-470.579v-298.035zM512.102 627.61c-29.338 121.498-116.992 225.28-226.202 294.298 67.072 36.813 144.179 57.805 226.099 57.805 82.022 0 159.13-20.992 226.202-57.805-109.21-69.018-196.813-172.8-226.099-294.298zM590.592 340.122c0 211.098 115.507 392.602 280.934 472.781 69.53-82.074 111.514-188.211 111.514-304.179 0-233.421-169.728-427.008-392.448-464.384v295.782z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["renren"],"grid":20},"attrs":[],"properties":{"id":338,"order":339,"prevSize":20,"code":59985,"name":"renren1"},"setIdx":0,"setId":1,"iconIdx":337},{"icon":{"paths":["M237.722 936.141c0 11.469-3.686 25.19-7.578 36.659h293.734c16.794-19.302 26.266-42.547 26.266-68.71 0-70.912-84.173-110.285-268.339-196.71l-25.907-12.083c-90.778-43.162-158.003-81.152-204.698-126.413v225.178c9.011-1.229 18.381-2.15 28.57-2.15 153.651 0.051 157.952 142.797 157.952 144.23zM870.4 51.2h-191.386c89.498 60.314 126.31 145.51 126.31 212.070 0 112.333-94.003 148.736-139.622 148.736l-13.875 0.102c-104.755 0-158.208-63.846-158.925-189.798-6.195-4.915-35.226-23.194-120.166-23.194-100.352 0-141.978 79.002-141.978 121.293 0 49.818 27.802 105.216 229.581 173.158 344.883 115.405 344.883 269.056 344.883 404.634v1.331c0 22.374-1.587 47.309-5.99 73.267h71.168c56.32 0 102.4-46.029 102.4-102.4v-716.8c0-56.32-46.080-102.4-102.4-102.4z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["scribd"],"grid":20},"attrs":[],"properties":{"id":339,"order":340,"prevSize":20,"code":59986,"name":"scribd"},"setIdx":0,"setId":1,"iconIdx":338},{"icon":{"paths":["M752.026 515.482c-14.029-4.301-23.706-7.27-16.333-26.010 15.923-40.806 17.613-75.981 0.358-101.12-32.41-47.104-121.037-44.595-222.618-1.28 0-0.102-31.898 14.182-23.757-11.622 15.667-51.046 13.261-93.85-11.059-118.528-55.091-56.218-201.574 2.099-327.27 129.997-94.157 95.795-148.787 197.274-148.787 285.082 0 167.987 211.558 280.32 418.56 280.32 271.309 0 451.84-170.701 451.84-298.086 0-77.056-63.693-120.73-120.934-138.752zM421.683 877.005c-165.12 16.384-307.763-58.726-318.464-167.68-10.701-109.005 114.483-210.688 279.654-227.226 165.171-16.384 307.763 58.675 318.464 167.68 10.701 109.107-114.483 210.842-279.654 227.226zM1021.44 378.726c-0.051-169.574-137.523-306.995-307.2-306.995-19.814 0-35.789 15.974-35.789 35.789s15.974 35.789 35.789 35.789c130.099 0 235.571 105.523 235.571 235.622 0 19.814 16.026 35.789 35.84 35.789s35.789-16.026 35.789-35.84v-0.154zM879.053 373.504c-16.333-79.974-79.411-143.002-159.386-159.386-19.354-3.994-38.298 8.499-42.291 27.904-3.942 19.302 8.499 38.298 27.904 42.291 52.019 10.598 92.979 51.61 103.629 103.578 3.994 19.405 22.938 31.795 42.291 27.904 19.302-3.994 31.846-22.989 27.853-42.291zM336.998 588.902c-66.56 13.414-111.462 69.222-100.301 124.621 11.162 55.501 74.086 89.6 140.646 76.186 66.509-13.414 111.411-69.222 100.301-124.621-11.162-55.398-74.189-89.6-140.646-76.186z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["sina-weibo"],"grid":20},"attrs":[],"properties":{"id":340,"order":341,"prevSize":20,"code":59987,"name":"sina-weibo1"},"setIdx":0,"setId":1,"iconIdx":339},{"icon":{"paths":["M622.797 504.422c-11.776-7.885-26.317-14.694-43.059-20.224-16.538-5.478-35.226-10.496-55.654-15.002-16.077-3.789-27.802-6.81-34.765-8.806-6.81-1.894-13.619-4.608-20.275-8.090-6.349-3.277-11.418-7.219-15.002-11.725-3.328-4.198-5.018-9.216-5.018-15.104 0-9.626 5.12-17.715 15.616-24.781 10.854-7.322 25.549-11.008 43.571-11.008 19.456 0 33.587 3.277 42.035 9.882 8.704 6.81 16.282 16.486 22.528 28.774 5.427 9.626 10.291 16.282 15.053 20.48 5.069 4.608 12.339 7.014 21.658 7.014 10.291 0 18.944-3.686 25.856-11.11 6.861-7.322 10.342-15.718 10.342-24.986 0-9.626-2.714-19.61-7.885-29.491s-13.414-19.405-24.422-28.314c-11.008-8.909-24.934-15.974-41.523-21.299-16.486-5.325-36.301-7.987-58.726-7.987-28.16 0-52.992 3.994-73.882 11.981-21.146 8.090-37.581 19.866-48.845 34.97-11.366 15.206-17.101 32.819-17.101 52.378 0 20.48 5.478 37.888 16.282 51.814 10.598 13.722 25.19 24.678 43.213 32.614 17.715 7.68 39.834 14.49 65.997 20.275 19.149 4.096 34.714 8.090 46.131 11.776 10.957 3.482 20.019 8.602 26.88 15.206 6.502 6.298 9.677 14.285 9.677 24.627 0 12.902-6.093 23.398-18.586 32.307-12.851 9.011-29.901 13.517-50.688 13.517-15.155 0-27.392-2.202-36.557-6.707-9.062-4.403-16.128-9.984-21.094-16.691-5.171-7.014-9.984-15.923-14.438-26.419-3.994-9.677-9.011-17.101-14.797-22.221-5.99-5.325-13.517-7.885-22.118-7.885-10.598 0-19.405 3.379-26.317 9.984-6.963 6.81-10.496 15.002-10.496 24.525 0 15.104 5.427 30.925 16.128 46.694 10.598 15.821 24.525 28.518 41.472 37.888 23.654 12.902 53.965 19.405 90.112 19.405 30.106 0 56.525-4.813 78.643-14.182 22.272-9.523 39.475-22.989 51.098-39.885 11.674-16.998 17.613-36.506 17.613-57.805 0-17.818-3.43-33.178-10.24-45.619-6.81-12.39-16.384-22.682-28.416-30.771zM512 20.48c-271.462 0-491.52 220.058-491.52 491.52s220.058 491.52 491.52 491.52 491.52-220.058 491.52-491.52-220.058-491.52-491.52-491.52zM629.811 787.2c-24.934 0-48.435-6.4-69.018-17.818-14.899 2.918-30.31 4.403-46.080 4.403-138.906 0-251.597-116.019-251.597-258.918 0-17.92 1.792-35.328 5.12-52.122-12.749-22.221-20.070-48.128-20.070-75.827 0-82.893 65.331-150.221 145.971-150.221 28.518 0 55.091 8.499 77.619 23.091 13.926-2.509 28.365-3.789 42.957-3.789 139.008 0 251.648 115.917 251.648 258.918 0 18.995-1.997 37.581-5.786 55.501 9.677 20.122 15.155 42.701 15.155 66.714-0.051 82.842-65.331 150.067-145.92 150.067z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["skype-with-circle"],"grid":20},"attrs":[],"properties":{"id":341,"order":342,"prevSize":20,"code":59988,"name":"skype-with-circle"},"setIdx":0,"setId":1,"iconIdx":340},{"icon":{"paths":["M955.955 616.294c6.758-31.898 10.394-65.126 10.394-99.226 0-255.283-201.216-462.285-449.382-462.285-26.163 0-51.814 2.406-76.8 6.81-40.192-26.010-87.654-41.114-138.598-41.114-143.923 0-260.608 120.013-260.608 268.134 0 49.408 13.107 95.795 35.789 135.578-5.939 30.003-9.114 61.133-9.114 92.928 0 255.283 201.216 462.285 449.28 462.285 28.211 0 55.654-2.611 82.278-7.68 36.71 20.275 78.592 31.795 123.187 31.795 143.923 0 260.608-120.013 260.608-268.083 0.051-42.854-9.728-83.251-27.034-119.142zM747.469 738.099c-20.787 30.208-51.507 54.221-91.29 71.219-39.373 16.896-86.63 25.395-140.39 25.395-64.512 0-118.63-11.622-160.922-34.714-30.208-16.794-55.091-39.475-73.984-67.482-19.046-28.416-28.723-56.525-28.723-83.61 0-16.896 6.298-31.59 18.688-43.622 12.288-11.878 28.109-18.022 46.899-18.022 15.411 0 28.774 4.813 39.578 14.182 10.342 9.011 19.2 22.426 26.317 39.578 7.987 18.79 16.691 34.611 25.856 47.104 8.806 11.981 21.504 22.118 37.632 30.003 16.282 7.885 38.298 11.878 65.28 11.878 37.12 0 67.584-8.090 90.522-24.218 22.426-15.821 33.28-34.611 33.28-57.702 0-18.278-5.683-32.614-17.408-43.878-12.186-11.674-28.416-20.89-47.923-27.187-20.429-6.502-48.179-13.619-82.483-20.992-46.592-10.291-86.17-22.477-117.709-36.198-32.256-14.080-58.214-33.69-77.21-58.214-19.2-24.73-29.030-55.91-29.030-92.518 0-34.918 10.24-66.406 30.515-93.594 20.122-26.88 49.408-47.872 87.194-62.31 37.274-14.182 81.715-21.402 131.891-21.402 40.090 0 75.418 4.813 104.806 14.182 29.594 9.523 54.579 22.323 74.189 38.093 19.814 15.923 34.509 32.922 43.725 50.483 9.318 17.92 14.080 35.584 14.080 52.787 0 16.486-6.195 31.488-18.483 44.595-12.288 13.21-27.802 19.814-46.080 19.814-16.589 0-29.696-4.198-38.707-12.39-8.397-7.578-17.203-19.61-26.829-36.71-11.213-21.914-24.781-39.219-40.346-51.302-15.104-11.878-40.346-17.92-75.059-17.92-32.205 0-58.419 6.707-77.773 19.814-18.842 12.749-27.904 27.238-27.904 44.339 0 10.598 2.97 19.405 9.011 26.88 6.4 8.090 15.411 15.104 26.778 20.992 11.776 6.144 23.91 10.957 36.096 14.438 12.493 3.584 33.485 8.806 62.208 15.718 36.403 7.987 69.786 16.998 99.277 26.675 29.952 9.882 55.808 22.016 76.902 36.096 21.504 14.49 38.605 33.024 50.637 55.091 12.134 22.221 18.278 49.613 18.278 81.408 0.051 38.144-10.547 72.806-31.386 103.219z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["skype"],"grid":20},"attrs":[],"properties":{"id":342,"order":343,"prevSize":20,"code":59989,"name":"skype1"},"setIdx":0,"setId":1,"iconIdx":341},{"icon":{"paths":["M665.6 362.496c70.707 0 128-57.293 128-128s-57.293-128-128-128-128 57.293-128 128 57.344 128 128 128zM964.864 304.282c-183.296 130.816-267.725 107.93-350.464 105.318-57.242-2.918-76.8 15.258-76.8 55.296l0.051 307.2c0 256 431.155 175.616 264.448-253.389 85.555-49.101 157.491-124.621 198.451-174.694 21.043-31.13-1.434-63.744-35.686-39.731zM358.4 106.496c-70.707 0-128 57.293-128 128s57.293 128 128 128 128-57.293 128-128-57.344-128-128-128zM409.6 409.6c-82.739 2.611-167.168 25.498-350.464-105.318-34.253-24.013-56.73 8.602-35.686 39.68 40.96 50.125 112.896 125.594 198.451 174.694-166.707 429.005 264.448 509.389 264.448 253.389l0.051-307.2c0-39.987-19.558-58.163-76.8-55.245z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["slideshare"],"grid":20},"attrs":[],"properties":{"id":343,"order":344,"prevSize":20,"code":59990,"name":"slideshare"},"setIdx":0,"setId":1,"iconIdx":342},{"icon":{"paths":["M513.178 820.838c-128.41 0-217.754-79.616-217.754-79.616l-75.93 172.186c52.378 28.006 107.11 47.923 138.701 58.419l-81.51 19.507c-38.195 9.114-76.595-14.49-85.76-52.685l-158.208-661.914c-9.165-38.195 14.387-76.595 52.634-85.811l190.259-45.517c-46.592 52.685-64.666 115.302-60.109 186.88 7.117 112.282 114.534 198.605 242.381 246.886 240.691 90.931 183.603 241.664 55.296 241.664zM991.283 747.213l-158.259-661.914c-9.114-38.195-47.514-61.798-85.76-52.582l-136.346 32.614c34.765 5.376 103.629 20.48 179.456 60.314l-59.341 164.506c0 0-49.408-55.194-181.914-61.901-125.952-6.4-195.994 129.894 49.613 210.176 188.109 61.491 248.218 180.019 245.094 289.69-1.587 56.986-21.555 103.322-44.646 138.291l139.52-33.382c38.195-9.114 61.747-47.514 52.582-85.811z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["smashing"],"grid":20},"attrs":[],"properties":{"id":344,"order":345,"prevSize":20,"code":59991,"name":"smashing"},"setIdx":0,"setId":1,"iconIdx":343},{"icon":{"paths":["M34.406 668.416l16.794-71.731-16.794-74.086c-0.461-2.202-4.71-3.891-9.779-3.891-5.222 0-9.421 1.69-9.779 3.891l-14.848 74.086 14.797 71.68c0.41 2.304 4.608 3.891 9.779 3.891 5.12 0.051 9.37-1.536 9.83-3.84zM139.418 708.198l14.182-110.797-14.182-171.418c-0.461-4.301-5.837-7.782-12.237-7.782-6.502 0-11.93 3.482-12.186 7.782l-12.595 171.418 12.595 110.797c0.307 4.403 5.683 7.782 12.186 7.782 6.4 0 11.776-3.379 12.237-7.782zM244.122 706.406l11.878-108.902-11.878-228.198c-0.307-5.427-6.605-9.626-14.438-9.626-7.782 0-14.080 4.198-14.387 9.626l-10.496 228.198 10.496 109.005c0.307 5.274 6.605 9.523 14.387 9.523 7.834-0.051 14.131-4.25 14.438-9.626zM348.672 704.819l9.728-107.315-9.728-229.888c-0.256-6.298-7.475-11.315-16.384-11.315-9.011 0-16.179 5.018-16.435 11.315l-8.653 229.888 8.704 107.315c0.205 6.298 7.424 11.315 16.384 11.315 8.909-0.051 16.128-4.915 16.384-11.315zM453.12 703.386l7.68-105.779-7.68-263.629c-0.205-7.27-8.397-13.056-18.33-13.056s-18.125 5.888-18.278 13.107l-6.912 263.475 6.912 105.882c0.154 7.219 8.346 13.107 18.278 13.107s18.125-5.786 18.33-13.107zM526.182 716.595c0.41 0 363.52 0.205 365.824 0.205 72.909 0 131.994-57.19 131.994-127.693s-59.085-127.59-131.994-127.59c-18.074 0-35.277 3.584-50.995 9.882-10.496-114.995-110.234-205.21-231.885-205.21-29.747 0-58.778 5.683-84.378 15.206-10.035 3.789-12.646 7.578-12.749 15.104v404.992c0.102 7.834 6.349 14.285 14.182 15.104z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["soundcloud"],"grid":20},"attrs":[],"properties":{"id":345,"order":346,"prevSize":20,"code":59992,"name":"soundcloud1"},"setIdx":0,"setId":1,"iconIdx":344},{"icon":{"paths":["M512 20.48c-271.462 0-491.52 220.058-491.52 491.52s220.058 491.52 491.52 491.52 491.52-220.058 491.52-491.52-220.058-491.52-491.52-491.52zM663.757 708.454c-7.578 0-12.8-2.867-18.381-6.246-51.866-31.386-116.122-47.872-185.754-47.872-35.533 0-73.882 4.198-113.971 12.39l-4.864 1.229c-5.12 1.229-10.291 2.56-14.285 2.56-16.128 0-28.774-12.544-28.774-28.621 0-16.282 9.216-27.802 24.525-30.72 47.821-10.906 92.877-16.179 137.574-16.179 80.896 0 153.293 18.688 215.091 55.808 10.65 6.195 17.306 13.312 17.306 29.133-0.051 15.77-12.749 28.518-28.467 28.518zM703.59 596.685c-9.062 0-14.95-3.43-20.224-6.502-93.44-55.501-232.806-73.882-347.392-43.366-1.894 0.563-3.584 1.075-5.222 1.587-4.301 1.382-8.397 2.714-14.029 2.714-18.842 0-34.15-15.411-34.15-34.406 0-18.278 9.523-31.078 26.829-35.942 44.134-12.083 85.709-20.122 145.408-20.122 96.563 0 190.157 24.218 263.475 68.096 13.363 7.578 19.405 18.074 19.405 33.69 0 18.944-15.309 34.253-34.099 34.253zM748.8 469.299c-8.499 0-13.773-1.997-21.555-6.298-63.437-38.093-162.355-60.723-264.909-60.723-53.402 0-101.888 5.888-144.23 17.306-1.434 0.358-2.816 0.768-4.25 1.229-4.506 1.331-10.138 2.97-15.974 2.97-22.477 0-40.090-17.818-40.090-40.55 0-19.763 11.11-34.867 29.645-40.346 51.098-15.104 109.978-22.682 174.848-22.682 116.787 0 227.994 25.907 304.998 71.219 14.541 8.192 21.658 20.685 21.658 37.99 0 22.323-17.664 39.885-40.141 39.885z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["spotify-with-circle"],"grid":20},"attrs":[],"properties":{"id":346,"order":347,"prevSize":20,"code":59993,"name":"spotify-with-circle"},"setIdx":0,"setId":1,"iconIdx":345},{"icon":{"paths":["M512 61.44c-248.883 0-450.56 201.626-450.56 450.56 0 248.781 201.677 450.56 450.56 450.56 248.934 0 450.509-201.728 450.509-450.56 0-248.883-201.523-450.56-450.509-450.56zM690.074 742.502c-8.858 0-15.053-3.379-21.555-7.322-60.877-36.915-136.294-56.269-218.010-56.269-41.677 0-86.682 4.966-133.632 14.592l-5.734 1.434c-5.939 1.434-12.032 3.021-16.691 3.021-18.995 0-33.843-14.746-33.843-33.587 0-19.098 10.752-32.614 28.774-35.994 56.115-12.8 108.954-19.046 161.382-19.046 94.976 0 179.866 22.016 252.467 65.485 12.442 7.27 20.275 15.667 20.275 34.202-0.051 18.483-15.002 33.485-33.434 33.485zM736.819 611.379c-10.598 0-17.562-4.045-23.706-7.629-109.722-65.075-273.050-86.682-407.603-50.842-2.253 0.666-4.301 1.28-6.144 1.894-5.069 1.587-9.779 3.174-16.435 3.174-22.118 0-40.090-18.074-40.090-40.346 0-21.453 11.213-36.454 31.437-42.189 51.866-14.234 100.557-23.654 170.65-23.654 113.254 0 223.078 28.416 309.146 79.923 15.667 8.96 22.784 21.197 22.784 39.475 0 22.221-17.971 40.192-40.038 40.192zM789.862 461.875c-9.984 0-16.128-2.406-25.344-7.373-74.394-44.646-190.464-71.219-310.733-71.219-62.669 0-119.603 6.912-169.267 20.326-1.69 0.41-3.277 0.87-5.018 1.382-5.274 1.587-11.878 3.482-18.688 3.482-26.419 0-47.053-20.89-47.053-47.565 0-23.194 13.005-40.909 34.816-47.36 59.955-17.715 128.973-26.675 205.107-26.675 137.114 0 267.571 30.464 357.939 83.507 16.998 9.677 25.344 24.32 25.344 44.646 0 26.266-20.685 46.848-47.104 46.848z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["spotify"],"grid":20},"attrs":[],"properties":{"id":347,"order":348,"prevSize":20,"code":59994,"name":"spotify1"},"setIdx":0,"setId":1,"iconIdx":346},{"icon":{"paths":["M526.643 963.635c-73.165-11.878-139.93-31.078-188.262-47.258-2.355-0.768-39.987-14.438-51.558-18.944-14.234-5.478-21.658-22.067-16.23-36.352 4.403-11.52 19.405-48.589 20.429-50.893 20.48-47.104 51.2-110.234 91.904-173.005 1.485 61.594 15.206 122.829 40.499 179.507 24.576 55.142 59.853 105.267 103.219 146.944zM520.858 359.782c-142.899-291.277-460.288-280.883-510.362-150.682-38.451 99.942 129.792 338.022 516.966 166.093 0.102-0.051 0.102-0.051 0.205-0.102-1.331-2.406-5.837-12.646-6.81-15.309zM591.872 348.416c0.051 0 0.102-0.051 0.102-0.051 218.675-97.126 188.109-265.779 131.533-287.437-76.134-29.133-214.528 83.149-135.526 278.886 0.768 1.382 3.379 7.168 3.891 8.602zM993.946 561.664c-33.075-74.24-93.85-127.437-164.506-152.781-7.117-2.56-14.387-3.738-21.658-3.738-36.71 0-72.038 30.464-75.366 68.506-5.581 63.437 7.014 128.051 34.816 190.362 27.392 61.389 66.253 113.306 116.224 151.398 13.005 9.933 28.928 14.592 44.8 14.592 28.621 0 57.19-15.155 68.557-42.291 29.235-69.734 30.566-151.194-2.867-226.048zM828.006 887.757c-61.184-46.694-109.67-109.517-144.128-186.675-34.918-78.285-49.203-157.44-42.342-235.315 1.894-21.658 8.243-42.547 18.432-61.645-1.792 0.461-5.683 1.382-5.837 1.434-32.154 8.038-63.334 21.965-91.034 40.141-40.141 26.317-75.52 65.382-90.726 111.462-4.096 12.442-7.219 26.112-8.243 39.168-4.864 62.362 5.274 126.771 32.563 187.904 26.419 59.136 65.792 108.442 113.306 146.074 28.979 22.886 81.203 37.376 123.904 37.376 40.090 0 79.667-11.93 115.2-29.952 11.11-5.632 35.584-20.89 37.171-21.965-21.248-5.427-41.165-14.95-58.266-28.006z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["swarm"],"grid":20},"attrs":[],"properties":{"id":348,"order":349,"prevSize":20,"code":59995,"name":"swarm"},"setIdx":0,"setId":1,"iconIdx":347},{"icon":{"paths":["M512 20.48c-271.462 0-491.52 220.058-491.52 491.52s220.058 491.52 491.52 491.52 491.52-220.058 491.52-491.52-220.058-491.52-491.52-491.52zM609.69 350.771c-18.944 0-32.358 18.022-32.358 52.634 0 70.554 44.8 111.155 102.963 111.155 10.291 0 21.862-1.229 33.69-3.942v54.886c-19.354 4.403-38.81 6.195-54.989 6.298-38.656 81.459-108.186 151.091-131.328 164.25-14.848 8.346-28.723 8.806-44.954-0.922-28.621-17.050-136.602-105.728-172.698-384.41h78.336c19.814 167.322 67.84 252.979 120.986 317.235 29.235-29.235 57.395-68.198 79.462-112.282-52.48-26.726-84.378-85.146-84.378-153.19 0-68.864 39.68-120.934 107.622-120.934 65.894 0 101.939 41.062 101.939 111.667 0 26.317-5.581 56.218-16.077 79.258-48.998 9.626-66.816-21.658-66.816-21.658 3.584-12.083 8.602-32.512 8.602-51.098 0.051-32.768-11.981-48.947-30.003-48.947z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["vine-with-circle"],"grid":20},"attrs":[],"properties":{"id":349,"order":350,"prevSize":20,"code":59996,"name":"vine-with-circle"},"setIdx":0,"setId":1,"iconIdx":348},{"icon":{"paths":["M893.542 509.491c-22.426 5.171-44.186 7.424-63.693 7.424-109.824 0-194.406-76.595-194.406-210.022 0-65.382 25.242-99.379 61.030-99.379 33.997 0 56.678 30.515 56.678 92.416 0 35.226-9.421 73.728-16.384 96.614 0 0 33.792 58.982 126.413 40.909 19.712-43.622 30.362-100.147 30.362-149.709 0-133.376-68.096-210.893-192.666-210.893-128.205 0-203.162 98.406-203.162 228.403 0 128.614 60.16 239.002 159.386 289.331-41.728 83.405-94.822 156.928-150.17 212.275-100.403-121.395-191.181-283.341-228.506-599.347h-147.968c68.352 526.285 272.333 693.914 326.298 726.067 30.515 18.33 56.73 17.459 84.685 1.741 43.776-24.832 175.206-156.365 248.166-310.323 30.566-0.102 67.277-3.533 103.936-11.827v-103.68z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["vine"],"grid":20},"attrs":[],"properties":{"id":350,"order":351,"prevSize":20,"code":59997,"name":"vine1"},"setIdx":0,"setId":1,"iconIdx":349},{"icon":{"paths":["M972.8 870.4v-716.8c0-56.32-46.234-102.4-102.656-102.4h-716.288c-58.88 0-102.656 43.674-102.656 102.4v716.8c0 58.778 43.776 102.4 102.656 102.4h716.288c56.422 0 102.656-46.029 102.656-102.4zM777.421 594.278c0 0 57.958 57.19 72.243 83.712 0.41 0.563 0.563 1.075 0.717 1.28 5.786 9.728 7.27 17.408 4.352 23.040-4.813 9.37-21.197 14.080-26.778 14.49 0 0-99.482 0-102.349 0-7.168 0-22.016-1.843-40.038-14.285-13.824-9.626-27.494-25.549-40.806-41.062-19.866-23.040-37.069-43.008-54.374-43.008-2.202 0-4.403 0.358-6.451 1.075-13.158 4.198-29.85 22.886-29.85 72.806 0 15.616-12.288 24.525-20.992 24.525 0 0-44.646 0-46.899 0-15.974 0-99.174-5.581-172.851-83.354-90.419-95.232-171.622-286.259-172.339-287.949-5.12-12.339 5.478-19.046 16.998-19.046h103.424c13.875 0 18.33 8.397 21.504 15.923 3.584 8.55 17.101 43.059 39.219 81.869 35.994 63.13 58.163 88.832 75.827 88.832 3.277 0 6.451-0.87 9.421-2.509 23.091-12.749 18.79-95.078 17.766-112.077 0-3.226-0.051-36.813-11.827-52.941-8.499-11.674-22.886-16.128-31.59-17.818 2.304-3.328 7.27-8.499 13.619-11.571 15.821-7.885 44.339-9.011 72.704-9.011h15.77c30.771 0.41 38.758 2.406 49.869 5.222 22.477 5.376 22.938 19.968 20.941 69.632-0.563 14.131-1.178 30.157-1.178 48.947 0 4.045-0.154 8.499-0.154 13.107-0.717 25.395-1.536 54.118 16.384 65.894 2.355 1.434 4.966 2.253 7.731 2.253 6.246 0 24.934 0 75.571-86.886 22.272-38.349 39.424-83.61 40.602-86.989 1.024-1.843 4.045-7.27 7.578-9.37 2.867-1.69 6.554-1.997 8.499-1.997h121.6c13.312 0 22.323 1.997 24.013 7.066 2.918 8.141-0.563 32.973-56.115 108.032-9.421 12.442-17.562 23.296-24.73 32.768-50.381 65.946-50.381 69.325 2.97 119.398z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["vk-alternitive"],"grid":20},"attrs":[],"properties":{"id":351,"order":352,"prevSize":20,"code":59998,"name":"vk-alternitive"},"setIdx":0,"setId":1,"iconIdx":350},{"icon":{"paths":["M512 20.48c-271.462 0-491.52 220.058-491.52 491.52s220.058 491.52 491.52 491.52 491.52-220.058 491.52-491.52-220.058-491.52-491.52-491.52zM701.030 575.027c0 0 43.469 42.906 54.17 62.822 0.307 0.41 0.461 0.819 0.563 1.024 4.352 7.322 5.376 13.005 3.226 17.254-3.584 7.066-15.872 10.547-20.070 10.854 0 0-74.65 0-76.8 0-5.325 0-16.486-1.382-30.003-10.701-10.394-7.27-20.634-19.2-30.618-30.822-14.899-17.306-27.802-32.256-40.806-32.256-1.638 0-3.328 0.256-4.864 0.768-9.83 3.174-22.426 17.203-22.426 54.579 0 11.674-9.216 18.381-15.718 18.381 0 0-33.536 0-35.174 0-11.981 0-74.394-4.198-129.69-62.515-67.686-71.424-128.614-214.682-129.126-216.013-3.84-9.267 4.096-14.234 12.749-14.234h77.568c10.342 0 13.722 6.298 16.077 11.878 2.765 6.502 12.902 32.358 29.542 61.44 26.982 47.411 43.52 66.662 56.781 66.662 2.509 0 4.813-0.666 7.117-1.843 17.306-9.626 14.080-71.322 13.312-84.122 0-2.406-0.051-27.597-8.909-39.68-6.349-8.755-17.152-12.083-23.706-13.312 1.69-2.509 5.478-6.349 10.189-8.653 11.878-5.939 33.28-6.81 54.528-6.81h11.827c23.040 0.307 28.979 1.792 37.325 3.891 16.896 4.045 17.254 14.95 15.77 52.275-0.461 10.598-0.922 22.579-0.922 36.71 0 3.072-0.154 6.349-0.154 9.83-0.512 18.995-1.126 40.55 12.288 49.408 1.741 1.075 3.738 1.69 5.837 1.69 4.659 0 18.688 0 56.678-65.178 16.64-28.774 29.542-62.72 30.464-65.229 0.768-1.331 3.021-5.427 5.683-7.014 2.099-1.229 4.915-1.485 6.349-1.485h91.187c9.933 0 16.742 1.485 18.022 5.325 2.253 6.093-0.41 24.678-42.035 81.050-7.014 9.318-13.21 17.459-18.586 24.525-37.734 49.459-37.734 51.968 2.355 89.498z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["vk-with-circle"],"grid":20},"attrs":[],"properties":{"id":352,"order":353,"prevSize":20,"code":59999,"name":"vk-with-circle"},"setIdx":0,"setId":1,"iconIdx":351},{"icon":{"paths":["M911.462 629.658c0 0 82.79 81.766 103.27 119.603 0.563 0.819 0.819 1.434 0.922 1.792 8.346 13.978 10.394 24.934 6.298 33.024-6.912 13.363-30.31 20.070-38.246 20.634 0 0-142.234 0-146.33 0-10.189 0-31.386-2.662-57.19-20.48-19.712-13.773-39.322-36.454-58.317-58.624-28.365-32.922-52.89-61.491-77.722-61.491-3.174 0-6.246 0.512-9.216 1.536-18.79 5.939-42.65 32.717-42.65 104.038 0 22.323-17.613 35.021-29.952 35.021 0 0-63.898 0-67.021 0-22.835 0-141.722-7.987-247.142-119.142-129.178-136.090-245.197-409.088-246.323-411.494-7.219-17.664 7.936-27.29 24.32-27.29h147.763c19.814 0 26.266 11.981 30.771 22.733 5.222 12.339 24.576 61.696 56.32 117.146 51.405 90.214 82.995 126.925 108.237 126.925 4.762 0 9.267-1.178 13.517-3.584 32.973-18.125 26.829-135.885 25.293-160.154 0-4.71-0.051-52.582-16.947-75.725-12.083-16.589-32.666-23.040-45.107-25.395 3.328-4.813 10.394-12.186 19.456-16.538 22.579-11.264 63.386-12.902 103.885-12.902h22.477c43.93 0.614 55.296 3.43 71.27 7.475 32.154 7.68 32.768 28.518 29.952 99.482-0.819 20.275-1.69 43.11-1.69 69.99 0 5.734-0.256 12.134-0.256 18.637-0.973 36.403-2.253 77.414 23.45 94.259 3.277 2.048 7.117 3.174 11.11 3.174 8.909 0 35.584 0 107.93-124.16 31.744-54.835 56.32-119.501 58.010-124.365 1.434-2.714 5.734-10.342 10.957-13.414 3.994-2.458 9.318-2.867 12.083-2.867h173.824c18.944 0 31.795 2.867 34.304 10.035 4.198 11.622-0.819 47.104-80.179 154.419-13.363 17.869-25.088 33.331-35.379 46.848-71.936 94.413-71.936 99.174 4.25 170.854z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["vk"],"grid":20},"attrs":[],"properties":{"id":353,"order":354,"prevSize":20,"code":60000,"name":"vk1"},"setIdx":0,"setId":1,"iconIdx":352},{"icon":{"paths":["M512 20.48c-271.462 0-491.52 220.058-491.52 491.52s220.058 491.52 491.52 491.52 491.52-220.058 491.52-491.52-220.058-491.52-491.52-491.52zM412.826 588.8c0 0-4.403 8.806-7.834 15.821-3.635 7.066-12.083 9.779-17.766 9.779h-72.397c-12.8 0-12.237-9.779-9.114-16.179 3.226-6.4 4.71-9.421 4.71-9.421l57.6-115.2-32-64c0 0-1.485-3.072-4.71-9.472-3.123-6.4-3.686-16.128 9.114-16.128h72.397c5.683 0 14.131 2.714 17.766 9.728 3.43 7.066 7.834 15.872 7.834 15.872l32 64-57.6 115.2zM718.336 297.728c-3.226 6.4-4.71 9.472-4.71 9.472l-128 256 76.8 153.6c0 0 1.485 3.021 4.71 9.421 3.174 6.4 3.686 16.179-9.114 16.179h-72.397c-5.734 0-14.080-2.714-17.664-9.779-3.533-7.066-7.936-15.821-7.936-15.821l-76.8-153.6 128-256c0 0 4.403-8.806 7.936-15.872s11.878-9.728 17.664-9.728h72.397c12.8 0 12.237 9.728 9.114 16.128z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["xing-with-circle"],"grid":20},"attrs":[],"properties":{"id":354,"order":355,"prevSize":20,"code":60001,"name":"xing-with-circle"},"setIdx":0,"setId":1,"iconIdx":353},{"icon":{"paths":["M906.394 51.2h-144.794c-11.418 0-28.314 5.376-35.328 19.507s-15.872 31.693-15.872 31.693l-256 512 153.6 307.2c0 0 8.806 17.613 15.872 31.693s23.91 19.507 35.328 19.507h144.794c25.6 0 24.576-19.507 18.176-32.307s-9.37-18.893-9.37-18.893l-153.6-307.2 256-512c0 0 3.021-6.093 9.421-18.893s7.373-32.307-18.227-32.307zM348.928 275.507c-7.014-14.131-23.91-19.507-35.328-19.507h-144.794c-25.6 0-24.576 19.507-18.176 32.307s9.37 18.893 9.37 18.893l64 128-115.2 230.4c0 0-3.021 6.093-9.421 18.893s-7.373 32.307 18.227 32.307h144.794c11.418 0 28.314-5.427 35.379-19.507 7.014-14.080 15.821-31.693 15.821-31.693l115.2-230.4-64-128c0 0-8.806-17.613-15.872-31.693z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["xing"],"grid":20},"attrs":[],"properties":{"id":355,"order":356,"prevSize":20,"code":60002,"name":"xing1"},"setIdx":0,"setId":1,"iconIdx":354},{"icon":{"paths":["M641.946 638.515l231.578 75.059c0 0 33.126 6.093 32.768 28.262-0.205 15.616-10.086 33.382-10.086 33.382l-97.792 141.107c0 0-17.459 14.643-35.123 14.643-17.613 0-37.939-27.494-37.939-27.494l-123.75-208.538c0 0-13.926-30.413 2.56-47.155 15.104-15.36 37.786-9.267 37.786-9.267zM592.384 542.72c11.827 20.275 44.544 14.387 44.544 14.387l231.066-68.147c0 0 31.488-12.954 35.994-30.157 4.403-17.254-5.222-38.042-5.222-38.042l-110.438-131.277c0 0-9.574-16.589-29.44-18.278-21.914-1.894-35.379 24.883-35.379 24.883l-130.56 207.36c0.051-0.051-11.469 20.582-0.563 39.27zM483.226 461.875c27.187-6.758 31.539-46.643 31.539-46.643l-1.843-332.032c0 0-4.096-40.96-22.323-52.070-28.621-17.51-37.069-8.397-45.261-7.168l-191.846 71.936c0 0-18.79 6.298-28.57 22.118-13.978 22.374 14.182 55.245 14.182 55.245l199.373 274.33c0 0 19.712 20.531 44.749 14.285zM435.866 596.224c0.666-25.6-30.464-41.011-30.464-41.011l-206.234-105.114c0 0-30.566-12.698-45.414-3.84-11.315 6.758-21.402 19.046-22.374 29.85l-13.414 166.861c0 0-1.997 28.928 5.427 42.086 10.496 18.637 45.107 5.683 45.107 5.683l240.742-53.709c9.318-6.349 25.702-6.963 26.624-40.806zM495.718 686.285c-20.685-10.701-45.414 11.469-45.414 11.469l-161.178 179.098c0 0-20.122 27.392-15.002 44.186 4.813 15.77 12.8 23.603 24.064 29.133l161.894 51.558c0 0 19.61 4.096 34.509-0.256 21.094-6.195 17.203-39.526 17.203-39.526l3.635-242.483c0 0.051-0.819-23.296-19.712-33.178z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["yelp"],"grid":20},"attrs":[],"properties":{"id":356,"order":357,"prevSize":20,"code":60003,"name":"yelp1"},"setIdx":0,"setId":1,"iconIdx":355},{"icon":{"paths":["M525.312 511.078c1.69-0.614 3.482-1.075 5.274-1.587-4.25-9.472-8.96-19.302-14.285-29.901-96.256 28.518-188.416 28.774-204.851 28.518-0.154 1.28-0.154 2.611-0.154 3.891 0 48.384 17.408 94.874 49.050 131.379 10.547-16.998 66.458-100.403 164.966-132.301zM390.298 671.386c35.277 27.034 77.414 41.318 121.702 41.318 26.47 0 52.173-5.12 76.493-15.104-3.379-19.507-15.104-78.899-42.086-149.606-108.595 38.4-149.606 110.694-156.109 123.392zM642.816 359.782c-36.403-31.283-82.79-48.486-130.816-48.486-14.541 0-29.133 1.587-43.52 4.813 10.496 14.080 42.598 58.675 72.755 113.818 65.69-25.242 95.386-61.645 101.581-70.144zM496.896 443.597c-31.13-54.886-63.539-100.096-72.448-112.179-54.63 26.47-94.822 77.107-108.186 136.090h0.87c20.787 0 94.669-1.69 179.763-23.91zM589.517 537.395c23.808 66.202 34.765 121.19 37.888 138.803 43.622-30.72 73.421-77.875 82.381-130.202-8.909-2.714-41.062-11.315-81.51-11.315-13.21-0-26.266 0.922-38.758 2.714zM512 20.48c-271.462 0-491.52 220.058-491.52 491.52s220.058 491.52 491.52 491.52 491.52-220.058 491.52-491.52-220.058-491.52-491.52-491.52zM512 752.486c-132.71 0-240.589-107.878-240.589-240.486 0-132.71 107.878-240.589 240.589-240.589 132.659 0 240.538 107.93 240.538 240.589 0 132.608-107.878 240.486-240.538 240.486zM559.206 464.589c4.454 9.216 8.602 18.278 12.39 27.187 1.178 2.918 2.458 5.786 3.635 8.704 14.182-1.69 29.338-2.509 45.158-2.509 43.725 0 80.026 6.4 92.211 8.806-1.126-43.52-16.538-85.811-43.622-119.808-8.192 10.547-41.882 49.306-109.773 77.619z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["dribbble-with-circle"],"grid":20},"attrs":[],"properties":{"id":357,"order":358,"prevSize":20,"code":60004,"name":"dribbble-with-circle"},"setIdx":0,"setId":1,"iconIdx":356},{"icon":{"paths":["M489.728 379.955c-69.53-123.597-143.923-224.41-149.35-231.834-112.179 53.043-195.891 156.416-222.054 280.934 10.547 0.205 178.278 2.202 371.405-49.101zM539.802 515.123c5.222-1.69 10.547-3.277 15.821-4.813-10.086-22.886-21.094-45.824-32.614-68.403-207.155 62.054-405.914 57.549-412.928 57.344-0.154 4.301-0.358 8.499-0.358 12.8 0 103.373 39.066 197.683 103.219 268.902l-0.256-0.307c0 0 110.080-195.277 327.117-265.523zM264.755 829.133v-0.205c-2.97-2.304-6.144-4.403-9.114-6.912 5.427 4.352 9.114 7.117 9.114 7.117zM415.642 121.446c-0.358 0.102-0.768 0.205-0.768 0.205 0.307-0.102 0.717-0.102 0.717-0.102l0.051-0.102zM777.677 210.125c-70.861-62.362-163.789-100.403-265.677-100.403-32.717 0-64.41 3.994-94.822 11.315 6.144 8.192 81.664 108.493 150.426 234.701 151.654-56.781 208.947-143.974 210.074-145.613zM512 983.040c-260.096 0-470.989-210.893-470.989-470.989-0.051-260.198 210.842-471.091 470.989-471.091 260.198 0 471.040 210.893 471.040 471.091 0 260.096-210.842 470.989-471.040 470.989zM580.403 577.843c-236.083 82.278-314.061 247.706-315.648 251.085 68.301 53.299 153.907 85.299 247.194 85.299 55.706 0 108.8-11.315 157.030-31.795-5.939-35.277-29.338-158.515-85.965-305.51-0.819 0.307-1.69 0.614-2.611 0.922zM598.528 415.744c9.421 19.098 18.33 38.605 26.778 58.317 3.021 6.912 5.837 13.926 8.704 20.787 138.906-17.51 275.712 12.186 280.218 13.107-0.973-95.386-35.123-182.886-91.494-251.494-0.922 1.178-65.485 94.362-224.205 159.283zM658.483 558.336c52.787 145.203 74.189 263.27 78.285 287.283 90.317-60.979 154.522-157.696 172.39-269.824-7.987-2.56-120.627-38.246-250.675-17.459z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["dribbble"],"grid":20},"attrs":[],"properties":{"id":358,"order":359,"prevSize":20,"code":60005,"name":"dribbble1"},"setIdx":0,"setId":1,"iconIdx":357},{"icon":{"paths":["M512 20.48c-271.462 0-491.52 220.058-491.52 491.52s220.058 491.52 491.52 491.52 491.52-220.058 491.52-491.52-220.058-491.52-491.52-491.52zM628.429 360.141h-73.882c-8.755 0-18.483 11.52-18.483 26.829v53.35h92.416l-13.978 76.083h-78.438v228.403h-87.194v-228.403h-79.104v-76.083h79.104v-44.749c0-64.205 44.544-116.378 105.677-116.378h73.882v80.947z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["facebook-with-circle"],"grid":20},"attrs":[],"properties":{"id":359,"order":360,"prevSize":20,"code":60006,"name":"facebook-with-circle"},"setIdx":0,"setId":1,"iconIdx":358},{"icon":{"paths":["M870.4 51.2h-716.8c-56.32 0-102.4 46.080-102.4 102.4v716.8c0 56.371 46.080 102.4 102.4 102.4h358.4v-358.4h-102.4v-126.72h102.4v-104.96c0-110.797 62.054-188.621 192.819-188.621l92.314 0.102v133.376h-61.286c-50.893 0-70.246 38.195-70.246 73.626v86.528h131.482l-29.082 126.669h-102.4v358.4h204.8c56.32 0 102.4-46.029 102.4-102.4v-716.8c0-56.32-46.080-102.4-102.4-102.4z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["facebook"],"grid":20},"attrs":[],"properties":{"id":360,"order":361,"prevSize":20,"code":60007,"name":"facebook1"},"setIdx":0,"setId":1,"iconIdx":359},{"icon":{"paths":["M512 20.48c-271.462 0-491.52 220.058-491.52 491.52s220.058 491.52 491.52 491.52 491.52-220.058 491.52-491.52-220.058-491.52-491.52-491.52zM380.723 614.4c-56.115 0-101.478-45.824-101.478-102.4s45.414-102.4 101.478-102.4c56.013 0 101.478 45.824 101.478 102.4s-45.517 102.4-101.478 102.4zM643.328 614.4c-56.064 0-101.53-45.824-101.53-102.4s45.466-102.4 101.53-102.4c56.115 0 101.478 45.824 101.478 102.4s-45.414 102.4-101.478 102.4z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["flickr-with-circle"],"grid":20},"attrs":[],"properties":{"id":361,"order":362,"prevSize":20,"code":60008,"name":"flickr-with-circle"},"setIdx":0,"setId":1,"iconIdx":360},{"icon":{"paths":["M256 716.8c-112.026 0-202.752-91.597-202.752-204.8s90.726-204.8 202.752-204.8c111.974 0 202.752 91.597 202.752 204.8s-90.778 204.8-202.752 204.8z","M768 716.8c-112.026 0-202.752-91.597-202.752-204.8s90.726-204.8 202.752-204.8c111.974 0 202.752 91.597 202.752 204.8s-90.778 204.8-202.752 204.8z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"tags":["flickr"],"grid":20},"attrs":[{},{}],"properties":{"id":362,"order":363,"prevSize":20,"code":60009,"name":"flickr1"},"setIdx":0,"setId":1,"iconIdx":361},{"icon":{"paths":["M512.768 509.389c0 0-0.512 0-0.768 0h-0.768c-60.979 0-114.688-15.514-146.483 13.722-18.995 17.51-26.982 38.605-26.982 61.286 0 94.822 75.93 106.496 173.517 106.496h1.485c97.536 0 173.517-11.725 173.517-106.496 0-22.682-7.987-43.827-26.982-61.286-31.846-29.235-85.555-13.722-146.534-13.722zM429.722 638.976c-18.586 0-33.587-20.89-33.587-46.592s15.002-46.49 33.587-46.49c18.586 0 33.638 20.787 33.638 46.49 0.051 25.702-15.002 46.592-33.638 46.592zM594.227 638.976c-18.586 0-33.638-20.89-33.638-46.592s15.053-46.49 33.638-46.49c18.534 0 33.587 20.787 33.587 46.49 0.051 25.702-15.002 46.592-33.587 46.592zM512 20.48c-271.462 0-491.52 220.058-491.52 491.52s220.058 491.52 491.52 491.52 491.52-220.058 491.52-491.52-220.058-491.52-491.52-491.52zM556.851 713.677c-8.806 0-26.317 0-44.851 0.102-18.534-0.102-36.045-0.102-44.851-0.102-38.912 0-193.126-3.021-193.126-188.877 0-42.701 14.643-73.984 38.656-100.096-3.789-9.421-3.994-63.078 16.384-114.483 0 0 46.899 5.12 117.811 53.811 14.797-4.147 39.987-6.246 65.126-6.246s50.278 2.099 65.178 6.195c70.912-48.691 117.811-53.811 117.811-53.811 20.378 51.405 20.224 105.114 16.384 114.483 24.013 26.112 38.656 57.395 38.656 100.096-0.051 185.958-154.266 188.928-193.178 188.928z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["github-with-circle"],"grid":20},"attrs":[],"properties":{"id":363,"order":364,"prevSize":20,"code":60010,"name":"github-with-circle"},"setIdx":0,"setId":1,"iconIdx":362},{"icon":{"paths":["M674.816 579.021c-36.762 0-66.56 41.318-66.56 92.109 0 50.893 29.798 92.211 66.56 92.211s66.56-41.318 66.56-92.211c-0.051-50.79-29.798-92.109-66.56-92.109zM906.547 339.251c7.629-18.688 7.936-124.877-32.512-226.611 0 0-92.723 10.189-233.011 106.496-29.44-8.192-79.258-12.186-128.973-12.186-49.818 0-99.584 3.994-129.024 12.186-140.339-96.307-233.062-106.496-233.062-106.496-40.397 101.734-39.987 207.923-32.461 226.611-47.514 51.61-76.544 113.613-76.544 198.195 0 367.923 305.306 373.811 382.31 373.811 17.51 0 52.122 0.102 88.781 0.102 36.608 0 71.27-0.102 88.678-0.102 77.107 0 382.31-5.888 382.31-373.811 0-84.582-28.979-146.586-76.493-198.195zM513.434 866.048h-2.867c-193.075 0-343.501-22.989-343.501-210.688 0-45.005 15.872-86.682 53.606-121.293 62.822-57.702 169.216-27.187 289.894-27.187 0.512 0 1.024 0 1.485 0 0.512 0 0.922 0 1.382 0 120.678 0 227.123-30.515 289.997 27.187 37.632 34.611 53.504 76.288 53.504 121.293 0 187.699-150.374 210.688-343.501 210.688zM349.235 579.021c-36.762 0-66.56 41.318-66.56 92.109 0 50.893 29.798 92.211 66.56 92.211 36.813 0 66.611-41.318 66.611-92.211 0-50.79-29.798-92.109-66.611-92.109z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["github"],"grid":20},"attrs":[],"properties":{"id":364,"order":365,"prevSize":20,"code":60011,"name":"github1"},"setIdx":0,"setId":1,"iconIdx":363},{"icon":{"paths":["M512 20.48c-271.462 0-491.52 220.058-491.52 491.52s220.058 491.52 491.52 491.52 491.52-220.058 491.52-491.52-220.058-491.52-491.52-491.52zM483.686 722.995c-30.874 15.002-64.102 16.589-76.954 16.589-2.458 0-3.84 0-3.84 0s-1.178 0-2.765 0c-20.070 0-119.962-4.608-119.962-95.59 0-89.395 108.8-96.41 142.131-96.41h0.87c-19.251-25.702-15.258-51.61-15.258-51.61-1.69 0.102-4.147 0.205-7.168 0.205-12.544 0-36.762-1.997-57.549-15.411-25.498-16.384-38.4-44.288-38.4-82.893 0-109.107 119.142-113.51 120.32-113.613h118.989v2.611c0 13.312-23.91 15.923-40.192 18.125-5.53 0.819-16.64 1.894-19.763 3.482 30.157 16.128 35.021 41.421 35.021 79.104 0 42.906-16.794 65.587-34.611 81.51-11.059 9.882-19.712 17.613-19.712 28.006 0 10.189 11.878 20.582 25.702 32.717 22.579 19.917 53.555 47.002 53.555 92.723 0 47.258-20.326 81.050-60.416 100.454zM742.4 512h-76.8v76.8h-51.2v-76.8h-76.8v-51.2h76.8v-76.8h51.2v76.8h76.8v51.2zM421.018 570.88c-2.662 0-5.325 0.102-8.038 0.307-22.733 1.69-43.725 10.189-58.88 24.013-15.053 13.619-22.733 30.822-21.658 48.179 2.304 36.403 41.37 57.702 88.832 54.323 46.694-3.379 77.824-30.31 75.571-66.714-2.15-34.202-31.898-60.109-75.827-60.109zM465.766 372.992c-12.39-43.52-32.358-56.422-63.386-56.422-3.328 0-6.707 0.512-9.933 1.382-13.466 3.84-24.166 15.053-30.106 31.744-6.093 16.896-6.451 34.509-1.229 54.579 9.472 35.891 34.97 61.901 60.672 61.901 3.379 0 6.758-0.41 9.933-1.382 28.109-7.885 45.722-50.79 34.048-91.802z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["google+-with-circle"],"grid":20},"attrs":[],"properties":{"id":365,"order":366,"prevSize":20,"code":60012,"name":"google-with-circle"},"setIdx":0,"setId":1,"iconIdx":364},{"icon":{"paths":["M101.837 286.157c0 76.493 25.549 131.686 75.878 164.096 41.267 26.624 89.088 30.618 113.971 30.618 6.042 0 10.906-0.307 14.285-0.512 0 0-7.885 51.405 30.208 102.195h-1.741c-65.997 0-281.242 13.773-281.242 190.822 0 180.019 197.683 189.184 237.363 189.184 3.123 0 4.966-0.102 4.966-0.102 0.41 0 3.226 0.102 8.090 0.102 25.446 0 91.238-3.174 152.32-32.922 79.258-38.4 119.45-105.421 119.45-198.912 0-90.317-61.235-144.077-105.933-183.398-27.29-24.013-50.893-44.698-50.893-64.819 0-20.48 17.254-35.891 39.014-55.398 35.277-31.488 68.557-76.39 68.557-161.28 0-74.598-9.677-124.723-69.325-156.518 6.195-3.174 28.211-5.478 39.066-7.014 32.307-4.403 79.565-9.421 79.565-35.789v-5.069h-235.469c-2.355 0.102-238.131 8.806-238.131 224.717zM481.946 747.622c4.506 71.987-57.088 125.082-149.606 131.789-93.952 6.912-171.264-35.379-175.77-107.315-2.202-34.611 13.005-68.403 42.752-95.386 30.157-27.29 71.578-44.186 116.634-47.514 5.325-0.307 10.598-0.614 15.872-0.614 86.989 0.051 145.869 51.149 150.118 119.040zM420.454 236.851c23.091 81.306-11.776 166.195-67.379 181.914-6.4 1.792-12.954 2.662-19.661 2.662-50.893 0-101.325-51.507-120.064-122.522-10.445-39.731-9.574-74.65 2.406-108.134 11.725-33.024 32.922-55.194 59.546-62.72 6.4-1.792 13.005-2.714 19.712-2.714 61.44 0 100.966 25.498 125.44 111.514zM819.2 409.6v-153.6h-102.4v153.6h-153.6v102.4h153.6v153.6h102.4v-153.6h153.6v-102.4h-153.6z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["google+"],"grid":20},"attrs":[],"properties":{"id":366,"order":367,"prevSize":20,"code":60013,"name":"google1"},"setIdx":0,"setId":1,"iconIdx":365},{"icon":{"paths":["M665.6 512c0 84.838-68.762 153.6-153.6 153.6s-153.6-68.762-153.6-153.6c0-8.755 0.922-17.306 2.509-25.6h-53.709v204.646c0 14.234 11.52 25.754 25.754 25.754h358.144c14.182 0 25.702-11.52 25.702-25.754v-204.646h-53.709c1.587 8.294 2.509 16.845 2.509 25.6zM512 614.4c56.525 0 102.4-45.875 102.4-102.4s-45.875-102.4-102.4-102.4-102.4 45.875-102.4 102.4 45.875 102.4 102.4 102.4zM634.88 404.48h61.389c8.499 0 15.411-6.912 15.411-15.36v-61.389c0-8.499-6.912-15.411-15.411-15.411h-61.389c-8.499 0-15.411 6.912-15.411 15.411v61.389c0.051 8.448 6.963 15.36 15.411 15.36zM512 20.48c-271.462 0-491.52 220.058-491.52 491.52s220.058 491.52 491.52 491.52c271.462 0 491.52-220.058 491.52-491.52s-220.058-491.52-491.52-491.52zM768 711.117c0 31.283-25.6 56.883-56.883 56.883h-398.234c-31.283 0-56.883-25.6-56.883-56.883v-398.234c0-31.283 25.6-56.883 56.883-56.883h398.234c31.283 0 56.883 25.6 56.883 56.883v398.234z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["instagram-with-circle"],"grid":20},"attrs":[],"properties":{"id":367,"order":368,"prevSize":20,"code":60014,"name":"instagram-with-circle"},"setIdx":0,"setId":1,"iconIdx":366},{"icon":{"paths":["M870.4 51.2h-716.8c-56.32 0-102.4 46.080-102.4 102.4v716.8c0 56.371 46.080 102.4 102.4 102.4h716.8c56.32 0 102.4-46.029 102.4-102.4v-716.8c0-56.32-46.080-102.4-102.4-102.4zM511.181 794.778c156.621 0 283.546-127.027 283.546-283.597 0-17.306-2.202-33.997-5.274-50.381h80.947v369.459c0 19.558-15.872 35.328-35.482 35.328h-645.837c-19.61-0-35.482-15.77-35.482-35.328v-369.459h79.309c-3.123 16.384-5.325 33.075-5.325 50.381 0 156.621 127.027 283.597 283.597 283.597zM333.978 511.181c0-97.894 79.36-177.203 177.254-177.203 97.843 0 177.254 79.309 177.254 177.203s-79.411 177.254-177.254 177.254c-97.946 0-177.254-79.36-177.254-177.254zM834.918 307.2h-82.688c-19.558 0-35.43-15.974-35.43-35.43v-82.79c0-19.558 15.872-35.379 35.379-35.379h82.688c19.661 0 35.533 15.821 35.533 35.379v82.739c0 19.507-15.872 35.482-35.482 35.482z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["instagram"],"grid":20},"attrs":[],"properties":{"id":368,"order":369,"prevSize":20,"code":60015,"name":"instagram1"},"setIdx":0,"setId":1,"iconIdx":367},{"icon":{"paths":["M512 20.48c-271.462 0-491.52 220.058-491.52 491.52s220.058 491.52 491.52 491.52 491.52-220.058 491.52-491.52-220.058-491.52-491.52-491.52zM647.373 656.896c-102.502 0-138.086-46.592-156.979-104.602l-18.995-59.699c-14.182-43.571-25.651-75.11-77.773-75.11-36.147 0-83.251 23.706-83.251 97.178 0 57.293 39.424 93.184 80.282 93.184 34.662 0 55.501-19.507 66.355-29.286l18.125 51.814c-12.339 8.909-37.581 26.47-87.398 26.47-68.915 0-134.4-48.998-134.4-139.776 0-94.413 68.25-150.016 138.496-150.016 78.848 0 108.186 28.672 133.12 106.394l19.558 59.699c14.234 43.622 44.288 75.315 104.141 75.315 40.294 0 61.645-9.011 61.645-31.078 0-17.306-10.086-29.901-40.294-37.018l-40.294-9.626c-49.203-11.878-68.762-37.581-68.762-78.285 0-65.075 52.122-85.402 105.523-85.402 60.467 0 97.178 22.118 101.888 75.878l-59.238 7.117c-2.355-25.6-17.766-36.403-46.234-36.403-26.061 0-42.035 11.981-42.035 32.307 0 17.92 7.68 28.621 33.792 34.611l37.888 8.397c50.944 11.93 78.234 37.018 78.234 85.402-0.051 59.853-49.869 82.534-123.392 82.534z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["lastfm-with-circle"],"grid":20},"attrs":[],"properties":{"id":369,"order":370,"prevSize":20,"code":60016,"name":"lastfm-with-circle"},"setIdx":0,"setId":1,"iconIdx":368},{"icon":{"paths":["M438.989 746.291c-24.422 17.818-74.496 52.429-173.107 52.429-136.243 0-265.882-96.922-265.882-276.736 0-186.778 135.014-296.704 274.125-296.704 156.006 0 214.17 56.73 263.373 210.381l38.707 118.221c28.211 86.426 87.706 148.992 206.131 148.992 79.77 0 121.958-17.715 121.958-61.389 0-34.304-19.917-59.187-79.718-73.421l-79.821-18.893c-97.28-23.603-135.987-74.496-135.987-154.88 0-128.819 103.219-169.011 208.742-169.011 119.654 0 192.358 43.725 201.728 150.118l-117.299 14.182c-4.71-50.79-35.226-72.090-91.494-72.090-51.61 0-83.302 23.603-83.302 63.795 0 35.482 15.309 56.781 66.918 68.608l75.059 16.589c100.864 23.603 154.88 73.318 154.88 169.114 0 118.221-98.509 163.123-244.019 163.123-202.906 0-273.306-92.211-310.784-206.899l-37.581-118.221c-28.109-86.374-50.688-148.582-153.907-148.582-71.578 0-164.813 46.899-164.813 192.307 0 113.51 77.978 184.525 158.925 184.525 68.608 0 109.875-38.605 131.277-57.907l35.891 102.349z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["lastfm"],"grid":20},"attrs":[],"properties":{"id":370,"order":371,"prevSize":20,"code":60017,"name":"lastfm1"},"setIdx":0,"setId":1,"iconIdx":369},{"icon":{"paths":["M512 20.48c-271.462 0-491.52 220.058-491.52 491.52s220.058 491.52 491.52 491.52 491.52-220.058 491.52-491.52-220.058-491.52-491.52-491.52zM391.68 715.725h-99.533v-320.307h99.533v320.307zM341.299 356.096c-31.437 0-51.763-22.272-51.763-49.818 0-28.109 20.941-49.715 53.043-49.715s51.763 21.606 52.378 49.715c0 27.546-20.275 49.818-53.658 49.818zM755.2 715.725h-99.533v-177.51c0-41.318-14.438-69.376-50.432-69.376-27.494 0-43.827 18.995-51.046 37.274-2.662 6.502-3.328 15.718-3.328 24.883v184.678h-99.584v-218.112c0-39.987-1.28-73.421-2.611-102.195h86.477l4.557 44.493h1.997c13.107-20.89 45.21-51.712 98.918-51.712 65.485 0 114.586 43.878 114.586 138.189v189.389z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["linkedin-with-circle"],"grid":20},"attrs":[],"properties":{"id":371,"order":372,"prevSize":20,"code":60018,"name":"linkedin-with-circle"},"setIdx":0,"setId":1,"iconIdx":370},{"icon":{"paths":["M256 153.6c0 54.374-36.352 101.171-102.451 101.171-62.208 0-102.349-44.134-102.349-98.509 0-55.808 38.912-105.062 102.4-105.062s101.171 46.592 102.4 102.4zM51.2 972.8v-665.6h204.8v665.6h-204.8z","M358.4 534.733c0-79.104-2.611-145.203-5.222-202.291h184.013l9.114 88.218h3.891c25.907-41.523 89.395-102.4 195.686-102.4 129.638 0 226.918 86.784 226.918 273.51v381.030h-204.8v-351.283c0-81.613-31.078-143.872-102.4-143.872-54.374 0-81.613 44.032-95.898 80.333-5.222 13.005-6.502 31.13-6.502 49.306v365.517h-204.8v-438.067z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"tags":["linkedin"],"grid":20},"attrs":[{},{}],"properties":{"id":372,"order":373,"prevSize":20,"code":60019,"name":"linkedin1"},"setIdx":0,"setId":1,"iconIdx":371},{"icon":{"paths":["M512 20.48c-271.462 0-491.52 220.058-491.52 491.52s220.058 491.52 491.52 491.52 491.52-220.058 491.52-491.52-220.058-491.52-491.52-491.52zM545.638 628.48c-31.539-2.406-44.749-18.022-69.427-32.973-13.568 71.219-30.157 139.52-79.309 175.206-15.206-107.725 22.221-188.518 39.629-274.381-29.645-49.92 3.533-150.323 66.099-125.645 76.954 30.515-66.662 185.6 29.747 205.005 100.659 20.173 141.773-174.694 79.36-237.978-90.214-91.494-262.502-2.099-241.306 128.87 5.12 32 38.246 41.728 13.21 85.914-57.702-12.8-74.957-58.317-72.704-118.989 3.533-99.328 89.242-168.909 175.155-178.483 108.698-12.083 210.688 39.885 224.819 142.182 15.821 115.405-49.101 240.282-165.274 231.27z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["pinterest-with-circle"],"grid":20},"attrs":[],"properties":{"id":373,"order":374,"prevSize":20,"code":60020,"name":"pinterest-with-circle"},"setIdx":0,"setId":1,"iconIdx":372},{"icon":{"paths":["M441.19 677.222c-26.931 141.005-59.75 276.173-157.082 346.778-30.003-213.094 44.083-373.094 78.541-542.976-58.726-98.816 7.066-297.574 130.816-248.576 152.32 60.211-131.891 367.206 58.88 405.606 199.219 39.987 280.525-345.6 156.979-470.989-178.432-181.146-519.475-4.25-477.491 255.078 10.189 63.386 75.674 82.586 26.163 170.086-114.227-25.293-148.326-115.405-143.923-235.52 7.066-196.608 176.589-334.182 346.675-353.28 215.091-24.115 416.973 79.002 444.877 281.293 31.386 228.403-97.075 475.802-327.117 457.984-62.362-4.864-88.474-35.789-137.318-65.485z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["pinterest"],"grid":20},"attrs":[],"properties":{"id":374,"order":375,"prevSize":20,"code":60021,"name":"pinterest1"},"setIdx":0,"setId":1,"iconIdx":373},{"icon":{"paths":["M829.594 512.051c0 220.518-176.538 399.309-394.291 399.309s-394.342-178.79-394.342-399.309c0-220.621 176.538-399.411 394.291-399.411 31.283 0 61.645 3.891 90.829 10.906v227.379c-46.182-16.896-102.912-14.387-156.314 11.418-96.512 46.592-145.459 151.398-109.312 233.984 36.096 82.688 143.718 112.026 240.179 65.382 66.509-32.102 125.082-109.414 125.082-206.285v-293.069c8.294 4.608 16.384 9.626 24.32 14.797 74.957 47.104 186.266 110.182 316.314 116.787 50.688 2.509-19.917 130.099-140.186 165.683 2.253 17.101 3.43 34.611 3.43 52.429z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["rdio"],"grid":20},"attrs":[],"properties":{"id":375,"order":376,"prevSize":20,"code":60022,"name":"rdio"},"setIdx":0,"setId":1,"iconIdx":374},{"icon":{"paths":["M512 20.48c-271.462 0-491.52 220.058-491.52 491.52s220.058 491.52 491.52 491.52 491.52-220.058 491.52-491.52-220.058-491.52-491.52-491.52zM512 398.592c-15.002 0-27.187 12.186-27.187 27.085v162.202c0 63.693-51.968 115.507-115.763 115.507s-115.763-51.814-115.763-115.507v-67.891h88.525v67.891c0 15.002 12.186 27.085 27.187 27.085s27.187-12.083 27.187-27.085v-162.202c0.102-63.693 51.968-115.456 115.814-115.456 63.795 0 115.763 51.814 115.763 115.507v30.874l-53.248 17.101-35.328-17.101v-30.925c0-14.899-12.134-27.085-27.187-27.085zM770.714 587.878c0 63.693-51.968 115.507-115.763 115.507-63.846 0-115.814-51.814-115.814-115.507v-69.325l35.328 17.101 53.248-17.101v69.325c0 15.002 12.186 27.085 27.187 27.085s27.136-12.083 27.136-27.085v-67.891h88.627v67.891z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["stumbleupon-with-circle"],"grid":20},"attrs":[],"properties":{"id":376,"order":377,"prevSize":20,"code":60023,"name":"stumbleupon-with-circle"},"setIdx":0,"setId":1,"iconIdx":375},{"icon":{"paths":["M565.811 412.621l69.888 33.792 105.421-33.792v-61.133c-0-126.106-102.81-228.608-229.12-228.608s-229.12 102.502-229.12 228.608v321.024c0 29.594-24.166 53.709-53.811 53.709-29.696 0-53.811-24.115-53.811-53.709v-134.4h-175.258v134.4c0 126.003 102.758 228.608 229.12 228.608 126.31 0 229.069-102.605 229.069-228.608v-321.024c0-29.594 24.166-53.709 53.862-53.709 29.645 0 53.811 24.115 53.811 53.709v61.133zM848.691 538.112v134.4c0 29.594-24.115 53.709-53.811 53.709s-53.811-24.115-53.811-53.709v-137.114l-105.421 33.69-69.888-33.69v137.114c0 126.003 102.81 228.608 229.12 228.608s229.12-102.605 229.12-228.608v-134.4h-175.309z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["stumbleupon"],"grid":20},"attrs":[],"properties":{"id":377,"order":378,"prevSize":20,"code":60024,"name":"stumbleupon1"},"setIdx":0,"setId":1,"iconIdx":376},{"icon":{"paths":["M512 20.48c-271.462 0-491.52 220.058-491.52 491.52s220.058 491.52 491.52 491.52 491.52-220.058 491.52-491.52-220.058-491.52-491.52-491.52zM643.942 724.019c-20.122 9.626-38.298 16.282-54.579 20.224-16.282 3.789-33.894 5.786-52.787 5.786-21.504 0-40.499-2.816-57.037-8.294s-30.618-13.312-42.291-23.501c-11.674-10.086-19.763-20.992-24.269-32.41-4.506-11.52-6.758-28.109-6.758-49.818v-167.014h-52.019v-67.277c18.381-6.093 34.304-14.797 47.462-26.214 13.158-11.315 23.757-24.883 31.693-40.806 7.987-15.872 13.466-36.198 16.486-60.672h66.918v120.32h111.616v74.65h-111.616v122.112c0 27.597 1.434 45.312 4.352 53.094 2.867 7.885 8.243 14.080 16.128 18.79 10.445 6.298 22.374 9.472 35.686 9.472 23.859 0 47.514-7.885 71.066-23.603v75.162z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["tumblr-with-circle"],"grid":20},"attrs":[],"properties":{"id":378,"order":379,"prevSize":20,"code":60025,"name":"tumblr-with-circle"},"setIdx":0,"setId":1,"iconIdx":377},{"icon":{"paths":["M798.72 931.635c-39.782 18.995-75.776 32.307-107.981 39.987-32.256 7.578-67.123 11.418-104.602 11.418-42.547 0-80.179-5.478-112.896-16.282-32.717-10.906-60.57-26.419-83.712-46.49-23.091-20.224-39.117-41.574-48.026-64.205-8.909-22.682-13.363-55.603-13.363-98.611v-330.496h-102.861v-133.325c36.557-11.981 67.891-29.184 93.952-51.712 26.112-22.426 47.002-49.408 62.822-80.896 15.77-31.386 26.573-71.475 32.563-120.064h132.352v238.182h220.877v147.814h-220.877v241.613c0 54.579 2.867 89.702 8.602 105.216 5.683 15.514 16.333 27.904 31.846 37.12 20.634 12.493 44.186 18.79 70.707 18.79 47.104 0 94.003-15.514 140.595-46.49v148.429z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["tumblr"],"grid":20},"attrs":[],"properties":{"id":379,"order":380,"prevSize":20,"code":60026,"name":"tumblr1"},"setIdx":0,"setId":1,"iconIdx":378},{"icon":{"paths":["M512 20.48c-271.462 0-491.52 220.058-491.52 491.52s220.058 491.52 491.52 491.52 491.52-220.058 491.52-491.52-220.058-491.52-491.52-491.52zM711.936 423.117c0.205 4.198 0.256 8.397 0.256 12.493 0 128-97.331 275.507-275.405 275.507-54.682 0-105.574-15.974-148.378-43.52 7.526 0.922 15.258 1.28 23.091 1.28 45.363 0 87.091-15.411 120.218-41.421-42.342-0.819-78.080-28.774-90.419-67.174 5.888 1.075 11.93 1.69 18.176 1.69 8.806 0 17.408-1.178 25.498-3.379-44.288-8.909-77.67-48.026-77.67-94.925v-1.178c13.056 7.219 28.006 11.622 43.878 12.134-26.010-17.408-43.059-47.002-43.059-80.64 0-17.715 4.762-34.406 13.107-48.691 47.77 58.573 119.040 97.075 199.526 101.222-1.69-7.117-2.509-14.49-2.509-22.118 0-53.402 43.315-96.819 96.819-96.819 27.802 0 52.992 11.776 70.656 30.618 22.067-4.403 42.752-12.39 61.44-23.501-7.219 22.579-22.528 41.574-42.547 53.606 19.61-2.406 38.246-7.578 55.603-15.309-12.954 19.405-29.389 36.506-48.282 50.125z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["twitter-with-circle"],"grid":20},"attrs":[],"properties":{"id":380,"order":381,"prevSize":20,"code":60027,"name":"twitter-with-circle"},"setIdx":0,"setId":1,"iconIdx":379},{"icon":{"paths":["M886.579 319.795c0.41 8.294 0.563 16.691 0.563 24.986 0 255.488-194.406 549.99-549.888 549.99-109.21 0-210.739-32-296.294-86.886 15.155 1.792 30.515 2.714 46.080 2.714 90.624 0 173.926-30.925 240.026-82.688-84.531-1.587-155.955-57.395-180.531-134.195 11.776 2.202 23.91 3.379 36.352 3.379 17.664 0 34.765-2.304 50.944-6.707-88.422-17.818-155.034-95.898-155.034-189.594 0-0.819 0-1.587 0-2.406 26.061 14.49 55.91 23.194 87.552 24.218-51.866-34.714-86.016-93.798-86.016-160.922 0-35.379 9.523-68.608 26.214-97.178 95.283 116.992 237.773 193.894 398.387 201.984-3.277-14.182-4.966-28.877-4.966-44.083 0-106.701 86.477-193.178 193.229-193.178 55.603 0 105.83 23.398 141.107 60.979 43.981-8.704 85.35-24.781 122.726-46.899-14.438 45.107-45.107 82.995-84.992 106.906 39.117-4.71 76.288-15.002 111.002-30.413-25.907 38.81-58.675 72.806-96.461 99.994z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["twitter"],"grid":20},"attrs":[],"properties":{"id":381,"order":382,"prevSize":20,"code":60028,"name":"twitter1"},"setIdx":0,"setId":1,"iconIdx":380},{"icon":{"paths":["M512 20.48c-271.462 0-491.52 220.058-491.52 491.52s220.058 491.52 491.52 491.52 491.52-220.058 491.52-491.52-220.058-491.52-491.52-491.52zM737.331 417.28c-26.010 149.299-171.418 275.814-215.091 304.691-43.725 28.774-83.661-11.622-98.099-42.189-16.589-34.918-66.202-223.898-79.206-239.616-13.005-15.667-52.019 15.718-52.019 15.718l-18.893-25.293c0 0 79.206-96.41 139.469-108.39 63.898-12.8 63.795 99.891 79.155 162.509 14.899 60.57 24.883 95.181 37.837 95.181 13.005 0 37.837-33.69 64.973-85.504 27.238-51.814-1.126-97.587-54.323-65.024 21.248-130.048 222.208-161.382 196.198-12.083z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["vimeo-with-circle"],"grid":20},"attrs":[],"properties":{"id":382,"order":383,"prevSize":20,"code":60029,"name":"vimeo-with-circle"},"setIdx":0,"setId":1,"iconIdx":381},{"icon":{"paths":["M968.192 299.008c-51.507 295.578-339.2 545.792-425.728 602.982-86.528 57.088-165.53-22.886-194.15-83.507-32.819-68.966-131.021-443.187-156.774-474.163-25.754-31.027-102.912 30.976-102.912 30.976l-37.427-49.971c0 0 156.723-190.72 276.019-214.579 126.464-25.242 126.259 197.837 156.672 321.638 29.389 119.91 49.203 188.416 74.906 188.416s74.854-66.816 128.614-169.216c53.914-102.605-2.304-193.126-107.571-128.717 42.138-257.382 439.859-319.283 388.352-23.859z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["vimeo"],"grid":20},"attrs":[],"properties":{"id":383,"order":384,"prevSize":20,"code":60030,"name":"vimeo1"},"setIdx":0,"setId":1,"iconIdx":382},{"icon":{"paths":["M594.074 503.45l-114.995-53.658c-10.035-4.659-18.278 0.563-18.278 11.674v101.069c0 11.11 8.243 16.333 18.278 11.674l114.944-53.658c10.086-4.71 10.086-12.39 0.051-17.101zM512 20.48c-271.462 0-491.52 220.058-491.52 491.52s220.058 491.52 491.52 491.52 491.52-220.058 491.52-491.52-220.058-491.52-491.52-491.52zM512 711.68c-251.597 0-256-22.682-256-199.68s4.403-199.68 256-199.68 256 22.682 256 199.68-4.403 199.68-256 199.68z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["youtube-with-circle"],"grid":20},"attrs":[],"properties":{"id":384,"order":385,"prevSize":20,"code":60031,"name":"youtube-with-circle"},"setIdx":0,"setId":1,"iconIdx":383},{"icon":{"paths":["M512 117.76c-503.194 0-512 44.749-512 394.24s8.806 394.24 512 394.24 512-44.749 512-394.24-8.806-394.24-512-394.24zM676.096 529.101l-229.888 107.315c-20.122 9.318-36.608-1.126-36.608-23.347v-202.138c0-22.17 16.486-32.666 36.608-23.347l229.888 107.315c20.122 9.421 20.122 24.781 0 34.202z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["youtube"],"grid":20},"attrs":[],"properties":{"id":385,"order":386,"prevSize":20,"code":60032,"name":"youtube1"},"setIdx":0,"setId":1,"iconIdx":384},{"icon":{"paths":["M1024 590.444l-512-397.426-512 397.428v-162.038l512-397.426 512 397.428zM896 576v384h-256v-256h-256v256h-256v-384l384-288z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["home","house"],"defaultCode":59648,"grid":16},"attrs":[],"properties":{"ligatures":"home, house","name":"home","id":0,"order":387,"prevSize":32,"code":60033},"setIdx":1,"setId":0,"iconIdx":0},{"icon":{"paths":["M512 32l-512 512 96 96 96-96v416h256v-192h128v192h256v-416l96 96 96-96-512-512zM512 448c-35.346 0-64-28.654-64-64s28.654-64 64-64c35.346 0 64 28.654 64 64s-28.654 64-64 64z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["home","house"],"defaultCode":59649,"grid":16},"attrs":[],"properties":{"ligatures":"home2, house2","name":"home2","id":1,"order":388,"prevSize":32,"code":60034},"setIdx":1,"setId":0,"iconIdx":1},{"icon":{"paths":["M1024 608l-192-192v-288h-128v160l-192-192-512 512v32h128v320h320v-192h128v192h320v-320h128z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["home","house"],"defaultCode":59650,"grid":16},"attrs":[],"properties":{"ligatures":"home3, house3","name":"home3","id":2,"order":389,"prevSize":32,"code":60035},"setIdx":1,"setId":0,"iconIdx":2},{"icon":{"paths":["M0 1024h512v-1024h-512v1024zM320 128h128v128h-128v-128zM320 384h128v128h-128v-128zM320 640h128v128h-128v-128zM64 128h128v128h-128v-128zM64 384h128v128h-128v-128zM64 640h128v128h-128v-128zM576 320h448v64h-448zM576 1024h128v-256h192v256h128v-576h-448z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["office","buildings","work"],"defaultCode":59651,"grid":16},"attrs":[],"properties":{"ligatures":"office, buildings","name":"office","id":3,"order":390,"prevSize":32,"code":60036},"setIdx":1,"setId":0,"iconIdx":3},{"icon":{"paths":["M896 256v-128h-896v704c0 35.346 28.654 64 64 64h864c53.022 0 96-42.978 96-96v-544h-128zM832 832h-768v-640h768v640zM128 320h640v64h-640zM512 448h256v64h-256zM512 576h256v64h-256zM512 704h192v64h-192zM128 448h320v320h-320z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["newspaper","news","paper"],"defaultCode":59652,"grid":16},"attrs":[],"properties":{"ligatures":"newspaper, news","name":"newspaper","id":4,"order":391,"prevSize":32,"code":60037},"setIdx":1,"setId":0,"iconIdx":4},{"icon":{"paths":["M864 0c88.364 0 160 71.634 160 160 0 36.020-11.91 69.258-32 96l-64 64-224-224 64-64c26.742-20.090 59.978-32 96-32zM64 736l-64 288 288-64 592-592-224-224-592 592zM715.578 363.578l-448 448-55.156-55.156 448-448 55.156 55.156z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["pencil","write","edit"],"defaultCode":59653,"grid":16},"attrs":[],"properties":{"ligatures":"pencil, write","name":"pencil","id":5,"order":392,"prevSize":32,"code":60038},"setIdx":1,"setId":0,"iconIdx":5},{"icon":{"paths":["M384 640l128-64 448-448-64-64-448 448-64 128zM289.3 867.098c-31.632-66.728-65.666-100.762-132.396-132.394l99.096-272.792 128-77.912 384-384h-192l-384 384-192 640 640-192 384-384v-192l-384 384-77.912 128z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["pencil","write","edit"],"defaultCode":59654,"grid":16},"attrs":[],"properties":{"ligatures":"pencil2, write2","name":"pencil2","id":6,"order":393,"prevSize":32,"code":60039},"setIdx":1,"setId":0,"iconIdx":6},{"icon":{"paths":["M0 1024c128-384 463-1024 1024-1024-263 211-384 704-576 704s-192 0-192 0l-192 320h-64z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["quill","feather","write","edit"],"defaultCode":59655,"grid":16},"attrs":[],"properties":{"ligatures":"quill, feather","name":"quill","id":7,"order":394,"prevSize":32,"code":60040},"setIdx":1,"setId":0,"iconIdx":7},{"icon":{"paths":["M1018.17 291.89l-286.058-286.058c-9.334-9.334-21.644-7.234-27.356 4.666l-38.354 79.904 267.198 267.198 79.904-38.354c11.9-5.712 14-18.022 4.666-27.356z","M615.384 135.384l-263.384 21.95c-17.5 2.166-32.080 5.898-37.090 28.752-0.006 0.024-0.012 0.042-0.018 0.066-71.422 343.070-314.892 677.848-314.892 677.848l57.374 57.374 271.986-271.99c-5.996-12.53-9.36-26.564-9.36-41.384 0-53.020 42.98-96 96-96s96 42.98 96 96-42.98 96-96 96c-14.82 0-28.852-3.364-41.384-9.36l-271.988 271.986 57.372 57.374c0 0 334.778-243.47 677.848-314.892 0.024-0.006 0.042-0.012 0.066-0.018 22.854-5.010 26.586-19.59 28.752-37.090l21.95-263.384-273.232-273.232z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["pen","write","edit"],"defaultCode":59656,"grid":16},"attrs":[],"properties":{"ligatures":"pen, write3","name":"pen","id":8,"order":395,"prevSize":32,"code":60041},"setIdx":1,"setId":0,"iconIdx":8},{"icon":{"paths":["M384 0v96c73.482 0 144.712 14.37 211.716 42.71 64.768 27.394 122.958 66.632 172.948 116.624s89.228 108.18 116.624 172.948c28.342 67.004 42.712 138.238 42.712 211.718h96c0-353.46-286.54-640-640-640z","M384 192v96c94.022 0 182.418 36.614 248.9 103.098 66.486 66.484 103.1 154.878 103.1 248.902h96c0-247.422-200.576-448-448-448z","M480 384l-64 64-224 64-192 416 25.374 25.374 232.804-232.804c-1.412-5.286-2.178-10.84-2.178-16.57 0-35.346 28.654-64 64-64s64 28.654 64 64-28.654 64-64 64c-5.732 0-11.282-0.764-16.568-2.178l-232.804 232.804 25.372 25.374 416-192 64-224 64-64-160-160z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["blog","pen","feed","publish","broadcast","write"],"defaultCode":59657,"grid":16},"attrs":[],"properties":{"ligatures":"blog, pen2","name":"blog","id":9,"order":396,"prevSize":32,"code":60042},"setIdx":1,"setId":0,"iconIdx":9},{"icon":{"paths":["M986.51 37.49c-49.988-49.986-131.032-49.986-181.020 0l-172.118 172.118-121.372-121.372-135.764 135.764 106.426 106.426-472.118 472.118c-8.048 8.048-11.468 18.958-10.3 29.456h-0.244v160c0 17.674 14.328 32 32 32h160c0 0 2.664 0 4 0 9.212 0 18.426-3.516 25.456-10.544l472.118-472.118 106.426 106.426 135.764-135.764-121.372-121.372 172.118-172.118c49.986-49.988 49.986-131.032 0-181.020zM173.090 960h-109.090v-109.090l469.574-469.572 109.088 109.088-469.572 469.574z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["eyedropper","color","color-picker","sample"],"defaultCode":59658,"grid":16},"attrs":[],"properties":{"ligatures":"eyedropper, color","name":"eyedropper","id":10,"order":397,"prevSize":32,"code":60043},"setIdx":1,"setId":0,"iconIdx":10},{"icon":{"paths":["M864.626 473.162c-65.754-183.44-205.11-348.15-352.626-473.162-147.516 125.012-286.87 289.722-352.626 473.162-40.664 113.436-44.682 236.562 12.584 345.4 65.846 125.14 198.632 205.438 340.042 205.438s274.196-80.298 340.040-205.44c57.27-108.838 53.25-231.962 12.586-345.398zM738.764 758.956c-43.802 83.252-132.812 137.044-226.764 137.044-55.12 0-108.524-18.536-152.112-50.652 13.242 1.724 26.632 2.652 40.112 2.652 117.426 0 228.668-67.214 283.402-171.242 44.878-85.292 40.978-173.848 23.882-244.338 14.558 28.15 26.906 56.198 36.848 83.932 22.606 63.062 40.024 156.34-5.368 242.604z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["droplet","color","water"],"defaultCode":59659,"grid":16},"attrs":[],"properties":{"ligatures":"droplet, color2","name":"droplet","id":11,"order":398,"prevSize":32,"code":60044},"setIdx":1,"setId":0,"iconIdx":11},{"icon":{"paths":["M1024 576v-384h-192v-64c0-35.2-28.8-64-64-64h-704c-35.2 0-64 28.8-64 64v192c0 35.2 28.8 64 64 64h704c35.2 0 64-28.8 64-64v-64h128v256h-576v128h-32c-17.674 0-32 14.326-32 32v320c0 17.674 14.326 32 32 32h128c17.674 0 32-14.326 32-32v-320c0-17.674-14.326-32-32-32h-32v-64h576zM768 192h-704v-64h704v64z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["paint-format","format","color"],"defaultCode":59660,"grid":16},"attrs":[],"properties":{"ligatures":"paint-format, format","name":"paint-format","id":12,"order":399,"prevSize":32,"code":60045},"setIdx":1,"setId":0,"iconIdx":12},{"icon":{"paths":["M959.884 128c0.040 0.034 0.082 0.076 0.116 0.116v767.77c-0.034 0.040-0.076 0.082-0.116 0.116h-895.77c-0.040-0.034-0.082-0.076-0.114-0.116v-767.772c0.034-0.040 0.076-0.082 0.114-0.114h895.77zM960 64h-896c-35.2 0-64 28.8-64 64v768c0 35.2 28.8 64 64 64h896c35.2 0 64-28.8 64-64v-768c0-35.2-28.8-64-64-64v0z","M832 288c0 53.020-42.98 96-96 96s-96-42.98-96-96 42.98-96 96-96 96 42.98 96 96z","M896 832h-768v-128l224-384 256 320h64l224-192z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["image","picture","photo","graphic"],"defaultCode":59661,"grid":16},"attrs":[],"properties":{"ligatures":"image, picture","name":"image","id":13,"order":400,"prevSize":32,"code":60046},"setIdx":1,"setId":0,"iconIdx":13},{"icon":{"paths":["M1088 128h-64v-64c0-35.2-28.8-64-64-64h-896c-35.2 0-64 28.8-64 64v768c0 35.2 28.8 64 64 64h64v64c0 35.2 28.8 64 64 64h896c35.2 0 64-28.8 64-64v-768c0-35.2-28.8-64-64-64zM128 192v640h-63.886c-0.040-0.034-0.082-0.076-0.114-0.116v-767.77c0.034-0.040 0.076-0.082 0.114-0.114h895.77c0.040 0.034 0.082 0.076 0.116 0.116v63.884h-768c-35.2 0-64 28.8-64 64v0zM1088 959.884c-0.034 0.040-0.076 0.082-0.116 0.116h-895.77c-0.040-0.034-0.082-0.076-0.114-0.116v-767.77c0.034-0.040 0.076-0.082 0.114-0.114h895.77c0.040 0.034 0.082 0.076 0.116 0.116v767.768z","M960 352c0 53.020-42.98 96-96 96s-96-42.98-96-96 42.98-96 96-96 96 42.98 96 96z","M1024 896h-768v-128l224-384 256 320h64l224-192z"],"width":1152,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["images","pictures","photos","graphics"],"defaultCode":59662,"grid":16},"attrs":[],"properties":{"ligatures":"images, pictures","name":"images","id":14,"order":401,"prevSize":32,"code":60047},"setIdx":1,"setId":0,"iconIdx":14},{"icon":{"paths":["M304 608c0 114.876 93.124 208 208 208s208-93.124 208-208-93.124-208-208-208-208 93.124-208 208zM960 256h-224c-16-64-32-128-96-128h-256c-64 0-80 64-96 128h-224c-35.2 0-64 28.8-64 64v576c0 35.2 28.8 64 64 64h896c35.2 0 64-28.8 64-64v-576c0-35.2-28.8-64-64-64zM512 892c-156.85 0-284-127.148-284-284 0-156.85 127.15-284 284-284 156.852 0 284 127.15 284 284 0 156.852-127.146 284-284 284zM960 448h-128v-64h128v64z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["camera","photo","picture","image"],"defaultCode":59663,"grid":16},"attrs":[],"properties":{"ligatures":"camera, photo","name":"camera","id":15,"order":402,"prevSize":32,"code":60048},"setIdx":1,"setId":0,"iconIdx":15},{"icon":{"paths":["M288 576h-64v448h64c17.6 0 32-14.4 32-32v-384c0-17.6-14.4-32-32-32z","M736 576c-17.602 0-32 14.4-32 32v384c0 17.6 14.398 32 32 32h64v-448h-64z","M1024 512c0-282.77-229.23-512-512-512s-512 229.23-512 512c0 61.412 10.83 120.29 30.656 174.848-19.478 33.206-30.656 71.87-30.656 113.152 0 112.846 83.448 206.188 192 221.716v-443.418c-31.914 4.566-61.664 15.842-87.754 32.378-5.392-26.718-8.246-54.364-8.246-82.676 0-229.75 186.25-416 416-416s416 186.25 416 416c0 28.314-2.83 55.968-8.22 82.696-26.1-16.546-55.854-27.848-87.78-32.418v443.44c108.548-15.532 192-108.874 192-221.714 0-41.274-11.178-79.934-30.648-113.138 19.828-54.566 30.648-113.452 30.648-174.866z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["headphones","headset","music","audio"],"defaultCode":59664,"grid":16},"attrs":[],"properties":{"ligatures":"headphones, headset","name":"headphones","id":16,"order":403,"prevSize":32,"code":60049},"setIdx":1,"setId":0,"iconIdx":16},{"icon":{"paths":["M960 0h64v736c0 88.366-100.29 160-224 160s-224-71.634-224-160c0-88.368 100.29-160 224-160 62.684 0 119.342 18.4 160 48.040v-368.040l-512 113.778v494.222c0 88.366-100.288 160-224 160s-224-71.634-224-160c0-88.368 100.288-160 224-160 62.684 0 119.342 18.4 160 48.040v-624.040l576-128z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["music","song","audio","sound","note"],"defaultCode":59665,"grid":16},"attrs":[],"properties":{"ligatures":"music, song","name":"music","id":17,"order":404,"prevSize":32,"code":60050},"setIdx":1,"setId":0,"iconIdx":17},{"icon":{"paths":["M981.188 160.108c-143.632-20.65-302.332-32.108-469.186-32.108-166.86 0-325.556 11.458-469.194 32.108-27.53 107.726-42.808 226.75-42.808 351.892 0 125.14 15.278 244.166 42.808 351.89 143.638 20.652 302.336 32.11 469.194 32.11 166.854 0 325.552-11.458 469.186-32.11 27.532-107.724 42.812-226.75 42.812-351.89 0-125.142-15.28-244.166-42.812-351.892zM384.002 704v-384l320 192-320 192z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["play","video","movie"],"defaultCode":59666,"grid":16},"attrs":[],"properties":{"ligatures":"play, video","name":"play","id":18,"order":405,"prevSize":32,"code":60051},"setIdx":1,"setId":0,"iconIdx":18},{"icon":{"paths":["M0 128v768h1024v-768h-1024zM192 832h-128v-128h128v128zM192 576h-128v-128h128v128zM192 320h-128v-128h128v128zM768 832h-512v-640h512v640zM960 832h-128v-128h128v128zM960 576h-128v-128h128v128zM960 320h-128v-128h128v128zM384 320v384l256-192z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["film","video","movie","tape","play"],"defaultCode":59667,"grid":16},"attrs":[],"properties":{"ligatures":"film, video2","name":"film","id":19,"order":406,"prevSize":32,"code":60052},"setIdx":1,"setId":0,"iconIdx":19},{"icon":{"paths":["M384 288c0-88.366 71.634-160 160-160s160 71.634 160 160c0 88.366-71.634 160-160 160s-160-71.634-160-160zM0 288c0-88.366 71.634-160 160-160s160 71.634 160 160c0 88.366-71.634 160-160 160s-160-71.634-160-160zM768 608v-96c0-35.2-28.8-64-64-64h-640c-35.2 0-64 28.8-64 64v320c0 35.2 28.8 64 64 64h640c35.2 0 64-28.8 64-64v-96l256 160v-448l-256 160zM640 768h-512v-192h512v192z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["video-camera","video","media","film","movie"],"defaultCode":59668,"grid":16},"attrs":[],"properties":{"ligatures":"video-camera, video3","name":"video-camera","id":20,"order":407,"prevSize":32,"code":60053},"setIdx":1,"setId":0,"iconIdx":20},{"icon":{"paths":["M864 192h-512c-88 0-160 72-160 160v512c0 88 72 160 160 160h512c88 0 160-72 160-160v-512c0-88-72-160-160-160zM416 896c-53.020 0-96-42.98-96-96s42.98-96 96-96 96 42.98 96 96-42.98 96-96 96zM416 512c-53.020 0-96-42.98-96-96s42.98-96 96-96 96 42.98 96 96-42.98 96-96 96zM608 704c-53.020 0-96-42.98-96-96s42.98-96 96-96 96 42.98 96 96-42.98 96-96 96zM800 896c-53.020 0-96-42.98-96-96s42.98-96 96-96 96 42.98 96 96-42.98 96-96 96zM800 512c-53.020 0-96-42.98-96-96s42.98-96 96-96 96 42.98 96 96-42.98 96-96 96zM828.76 128c-14.93-72.804-79.71-128-156.76-128h-512c-88 0-160 72-160 160v512c0 77.046 55.196 141.83 128 156.76v-636.76c0-35.2 28.8-64 64-64h636.76z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["dice","game","chance","luck","random","gample"],"defaultCode":59669,"grid":16},"attrs":[],"properties":{"ligatures":"dice, game","name":"dice","id":21,"order":408,"prevSize":32,"code":60054},"setIdx":1,"setId":0,"iconIdx":21},{"icon":{"paths":["M964.73 178.804c-93.902-109.45-233.21-178.804-388.73-178.804-282.77 0-512 229.23-512 512s229.23 512 512 512c155.52 0 294.828-69.356 388.728-178.804l-324.728-333.196 324.73-333.196zM704 120.602c39.432 0 71.398 31.964 71.398 71.398 0 39.432-31.966 71.398-71.398 71.398s-71.398-31.966-71.398-71.398c0-39.432 31.966-71.398 71.398-71.398z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["pacman","game","arcade"],"defaultCode":59670,"grid":16},"attrs":[],"properties":{"ligatures":"pacman, game2","name":"pacman","id":22,"order":409,"prevSize":32,"code":60055},"setIdx":1,"setId":0,"iconIdx":22},{"icon":{"paths":["M817.57 348.15c-193.566-143.858-260.266-259.018-305.566-348.148v0c-0.004 0-0.004-0.002-0.004-0.002v0.002c-45.296 89.13-112 204.292-305.566 348.148-330.036 245.286-19.376 587.668 253.758 399.224-17.796 116.93-78.53 202.172-140.208 238.882v37.744h384.032v-37.74c-61.682-36.708-122.41-121.954-140.212-238.884 273.136 188.446 583.8-153.94 253.766-399.226z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["spades","cards","poker"],"defaultCode":59671,"grid":16},"attrs":[],"properties":{"ligatures":"spades, cards","name":"spades","id":23,"order":410,"prevSize":32,"code":60056},"setIdx":1,"setId":0,"iconIdx":23},{"icon":{"paths":["M786.832 392.772c-59.032 0-112.086 24.596-149.852 64.694-15.996 16.984-43.762 37.112-73.8 54.81 14.11-53.868 58.676-121.7 89.628-151.456 39.64-38.17 63.984-91.83 63.984-151.5 0.006-114.894-91.476-208.096-204.788-209.32-113.32 1.222-204.796 94.426-204.796 209.318 0 59.672 24.344 113.33 63.986 151.5 30.954 29.756 75.52 97.588 89.628 151.456-30.042-17.7-57.806-37.826-73.8-54.81-37.768-40.098-90.82-64.694-149.85-64.694-114.386 0-207.080 93.664-207.080 209.328 0 115.638 92.692 209.338 207.080 209.338 59.042 0 112.082-25.356 149.85-65.452 16.804-17.872 46.444-40.138 78.292-58.632-3.002 147.692-73.532 256.168-145.318 298.906v37.742h384.014v-37.74c-71.792-42.736-142.32-151.216-145.32-298.906 31.852 18.494 61.488 40.768 78.292 58.632 37.766 40.094 90.808 65.452 149.852 65.452 114.386 0 207.078-93.7 207.078-209.338-0.002-115.664-92.692-209.328-207.080-209.328z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["clubs","cards","poker"],"defaultCode":59672,"grid":16},"attrs":[],"properties":{"ligatures":"clubs, cards2","name":"clubs","id":24,"order":411,"prevSize":32,"code":60057},"setIdx":1,"setId":0,"iconIdx":24},{"icon":{"paths":["M512 0l-320 512 320 512 320-512z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["diamonds","cards","poker"],"defaultCode":59673,"grid":16},"attrs":[],"properties":{"ligatures":"diamonds, cards3","name":"diamonds","id":25,"order":412,"prevSize":32,"code":60058},"setIdx":1,"setId":0,"iconIdx":25},{"icon":{"paths":["M1024 429.256c0-200.926-58.792-363.938-131.482-365.226 0.292-0.006 0.578-0.030 0.872-0.030h-82.942c0 0-194.8 146.336-475.23 203.754-8.56 45.292-14.030 99.274-14.030 161.502s5.466 116.208 14.030 161.5c280.428 57.418 475.23 203.756 475.23 203.756h82.942c-0.292 0-0.578-0.024-0.872-0.032 72.696-1.288 131.482-164.298 131.482-365.224zM864.824 739.252c-9.382 0-19.532-9.742-24.746-15.548-12.63-14.064-24.792-35.96-35.188-63.328-23.256-61.232-36.066-143.31-36.066-231.124 0-87.81 12.81-169.89 36.066-231.122 10.394-27.368 22.562-49.266 35.188-63.328 5.214-5.812 15.364-15.552 24.746-15.552 9.38 0 19.536 9.744 24.744 15.552 12.634 14.064 24.796 35.958 35.188 63.328 23.258 61.23 36.068 143.312 36.068 231.122 0 87.804-12.81 169.888-36.068 231.124-10.39 27.368-22.562 49.264-35.188 63.328-5.208 5.806-15.36 15.548-24.744 15.548zM251.812 429.256c0-51.95 3.81-102.43 11.052-149.094-47.372 6.554-88.942 10.324-140.34 10.324-67.058 0-67.058 0-67.058 0l-55.466 94.686v88.17l55.46 94.686c0 0 0 0 67.060 0 51.398 0 92.968 3.774 140.34 10.324-7.236-46.664-11.048-97.146-11.048-149.096zM368.15 642.172l-127.998-24.51 81.842 321.544c4.236 16.634 20.744 25.038 36.686 18.654l118.556-47.452c15.944-6.376 22.328-23.964 14.196-39.084l-123.282-229.152zM864.824 548.73c-3.618 0-7.528-3.754-9.538-5.992-4.87-5.42-9.556-13.86-13.562-24.408-8.962-23.6-13.9-55.234-13.9-89.078s4.938-65.478 13.9-89.078c4.006-10.548 8.696-18.988 13.562-24.408 2.010-2.24 5.92-5.994 9.538-5.994 3.616 0 7.53 3.756 9.538 5.994 4.87 5.42 9.556 13.858 13.56 24.408 8.964 23.598 13.902 55.234 13.902 89.078 0 33.842-4.938 65.478-13.902 89.078-4.004 10.548-8.696 18.988-13.56 24.408-2.008 2.238-5.92 5.992-9.538 5.992z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["bullhorn","megaphone","announcement","advertisement","news"],"defaultCode":59674,"grid":16},"attrs":[],"properties":{"ligatures":"bullhorn, megaphone","name":"bullhorn","id":26,"order":413,"prevSize":32,"code":60059},"setIdx":1,"setId":0,"iconIdx":26},{"icon":{"paths":["M640 576c105.87 0 201.87 43.066 271.402 112.598l-90.468 90.468c-46.354-46.356-110.356-75.066-180.934-75.066s-134.578 28.71-180.934 75.066l-90.468-90.468c69.532-69.532 165.532-112.598 271.402-112.598zM187.452 507.452c120.88-120.88 281.598-187.452 452.548-187.452s331.668 66.572 452.55 187.452l-90.51 90.508c-96.706-96.704-225.28-149.96-362.040-149.96-136.762 0-265.334 53.256-362.038 149.962l-90.51-90.51zM988.784 134.438c106.702 45.132 202.516 109.728 284.782 191.996v0l-90.508 90.508c-145.056-145.056-337.92-224.942-543.058-224.942-205.14 0-398 79.886-543.058 224.942l-90.51-90.51c82.268-82.266 178.082-146.862 284.784-191.994 110.504-46.738 227.852-70.438 348.784-70.438s238.278 23.7 348.784 70.438zM576 896c0-35.346 28.654-64 64-64s64 28.654 64 64c0 35.346-28.654 64-64 64s-64-28.654-64-64z"],"width":1280,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["connection","wifi","wave"],"defaultCode":59675,"grid":16},"attrs":[],"properties":{"ligatures":"connection, wifi","name":"connection","id":27,"order":414,"prevSize":32,"code":60060},"setIdx":1,"setId":0,"iconIdx":27},{"icon":{"paths":["M1024 512c0-282.77-229.23-512-512-512s-512 229.23-512 512c0 220.054 138.836 407.664 333.686 480.068l-13.686 31.932h384l-13.686-31.932c194.85-72.404 333.686-260.014 333.686-480.068zM486.79 634.826c-22.808-9.788-38.79-32.436-38.79-58.826 0-35.346 28.654-64 64-64s64 28.654 64 64c0 26.39-15.978 49.044-38.786 58.834l-25.214-58.834-25.21 58.826zM538.268 637.292c58.092-12.118 101.732-63.602 101.732-125.292 0-70.694-57.306-128-128-128-70.692 0-128 57.306-128 128 0 61.692 43.662 113.122 101.76 125.228l-74.624 174.122c-91.23-39.15-155.136-129.784-155.136-235.35 0-141.384 114.616-268 256-268s256 126.616 256 268c0 105.566-63.906 196.2-155.136 235.35l-74.596-174.058zM688.448 987.708l-73.924-172.486c126.446-42.738 217.476-162.346 217.476-303.222 0-176.73-143.268-320-320-320-176.73 0-320 143.27-320 320 0 140.876 91.030 260.484 217.476 303.222l-73.924 172.486c-159.594-68.488-271.386-227.034-271.386-411.708 0-247.332 200.502-459.834 447.834-459.834s447.834 212.502 447.834 459.834c0 184.674-111.792 343.22-271.386 411.708z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["podcast","broadcast","live","radio","feed"],"defaultCode":59676,"grid":16},"attrs":[],"properties":{"ligatures":"podcast, broadcast","name":"podcast","id":28,"order":415,"prevSize":32,"code":60061},"setIdx":1,"setId":0,"iconIdx":28},{"icon":{"paths":["M384 512c0-70.692 57.308-128 128-128s128 57.308 128 128c0 70.692-57.308 128-128 128s-128-57.308-128-128zM664.348 230.526c99.852 54.158 167.652 159.898 167.652 281.474s-67.8 227.316-167.652 281.474c44.066-70.126 71.652-170.27 71.652-281.474s-27.586-211.348-71.652-281.474zM288 512c0 111.204 27.584 211.348 71.652 281.474-99.852-54.16-167.652-159.898-167.652-281.474s67.8-227.314 167.652-281.474c-44.068 70.126-71.652 170.27-71.652 281.474zM96 512c0 171.9 54.404 326.184 140.652 431.722-142.302-90.948-236.652-250.314-236.652-431.722s94.35-340.774 236.652-431.722c-86.248 105.538-140.652 259.822-140.652 431.722zM787.352 80.28c142.298 90.946 236.648 250.312 236.648 431.72s-94.35 340.774-236.648 431.72c86.244-105.536 140.648-259.82 140.648-431.72s-54.404-326.184-140.648-431.72z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["feed","wave","radio","live","broadcast"],"defaultCode":59677,"grid":16},"attrs":[],"properties":{"ligatures":"feed, wave","name":"feed","id":29,"order":416,"prevSize":32,"code":60062},"setIdx":1,"setId":0,"iconIdx":29},{"icon":{"paths":["M480 704c88.366 0 160-71.634 160-160v-384c0-88.366-71.634-160-160-160s-160 71.634-160 160v384c0 88.366 71.636 160 160 160zM704 448v96c0 123.71-100.29 224-224 224-123.712 0-224-100.29-224-224v-96h-64v96c0 148.238 112.004 270.3 256 286.22v129.78h-128v64h320v-64h-128v-129.78c143.994-15.92 256-137.982 256-286.22v-96h-64z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["mic","microphone","voice","audio"],"defaultCode":59678,"grid":16},"attrs":[],"properties":{"ligatures":"mic, microphone","name":"mic","id":30,"order":417,"prevSize":32,"code":60063},"setIdx":1,"setId":0,"iconIdx":30},{"icon":{"paths":["M896 128v832h-672c-53.026 0-96-42.98-96-96s42.974-96 96-96h608v-768h-640c-70.398 0-128 57.6-128 128v768c0 70.4 57.602 128 128 128h768v-896h-64z","M224.056 832v0c-0.018 0.002-0.038 0-0.056 0-17.672 0-32 14.326-32 32s14.328 32 32 32c0.018 0 0.038-0.002 0.056-0.002v0.002h607.89v-64h-607.89z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["book","read","reading"],"defaultCode":59679,"grid":16},"attrs":[],"properties":{"ligatures":"book, read","name":"book","id":31,"order":418,"prevSize":32,"code":60064},"setIdx":1,"setId":0,"iconIdx":31},{"icon":{"paths":["M224 128h-192c-17.6 0-32 14.4-32 32v704c0 17.6 14.4 32 32 32h192c17.6 0 32-14.4 32-32v-704c0-17.6-14.4-32-32-32zM192 320h-128v-64h128v64z","M544 128h-192c-17.6 0-32 14.4-32 32v704c0 17.6 14.4 32 32 32h192c17.6 0 32-14.4 32-32v-704c0-17.6-14.4-32-32-32zM512 320h-128v-64h128v64z","M765.088 177.48l-171.464 86.394c-15.716 7.918-22.096 27.258-14.178 42.976l287.978 571.548c7.918 15.718 27.258 22.098 42.976 14.178l171.464-86.392c15.716-7.92 22.096-27.26 14.178-42.974l-287.978-571.55c-7.92-15.718-27.26-22.1-42.976-14.18z"],"width":1152,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["books","library","archive"],"defaultCode":59680,"grid":16},"attrs":[],"properties":{"ligatures":"books, library","name":"books","id":32,"order":419,"prevSize":32,"code":60065},"setIdx":1,"setId":0,"iconIdx":32},{"icon":{"paths":["M1024 960v-64h-64v-384h64v-64h-192v64h64v384h-192v-384h64v-64h-192v64h64v384h-192v-384h64v-64h-192v64h64v384h-192v-384h64v-64h-192v64h64v384h-64v64h-64v64h1088v-64h-64z","M512 0h64l512 320v64h-1088v-64l512-320z"],"width":1088,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["library","bank","building"],"defaultCode":59681,"grid":16},"attrs":[],"properties":{"ligatures":"library2, bank","name":"library","id":33,"order":420,"prevSize":32,"code":60066},"setIdx":1,"setId":0,"iconIdx":33},{"icon":{"paths":["M864 0h-768c-52.8 0-96 43.2-96 96v832c0 52.8 43.2 96 96 96h768c52.8 0 96-43.2 96-96v-832c0-52.8-43.2-96-96-96zM832 896h-704v-768h704v768zM256 448h448v64h-448zM256 576h448v64h-448zM256 704h448v64h-448zM256 320h448v64h-448z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["file-text","file","document","list","paper"],"defaultCode":59682,"grid":16},"attrs":[],"properties":{"ligatures":"file-text, file","name":"file-text","id":34,"order":421,"prevSize":32,"code":60067},"setIdx":1,"setId":0,"iconIdx":34},{"icon":{"paths":["M864 0h-768c-52.8 0-96 43.2-96 96v832c0 52.8 43.2 96 96 96h768c52.8 0 96-43.2 96-96v-832c0-52.8-43.2-96-96-96zM832 896h-704v-768h704v768zM256 576h448v64h-448zM256 704h448v64h-448zM320 288c0-53.019 42.981-96 96-96s96 42.981 96 96c0 53.019-42.981 96-96 96s-96-42.981-96-96zM480 384h-128c-52.8 0-96 28.8-96 64v64h320v-64c0-35.2-43.2-64-96-64z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["profile","file","document","page","user","paper"],"defaultCode":59683,"grid":16},"attrs":[],"properties":{"ligatures":"profile, file2","name":"profile","id":35,"order":422,"prevSize":32,"code":60068},"setIdx":1,"setId":0,"iconIdx":35},{"icon":{"paths":["M917.806 229.076c-22.212-30.292-53.174-65.7-87.178-99.704s-69.412-64.964-99.704-87.178c-51.574-37.82-76.592-42.194-90.924-42.194h-496c-44.112 0-80 35.888-80 80v864c0 44.112 35.888 80 80 80h736c44.112 0 80-35.888 80-80v-624c0-14.332-4.372-39.35-42.194-90.924zM785.374 174.626c30.7 30.7 54.8 58.398 72.58 81.374h-153.954v-153.946c22.984 17.78 50.678 41.878 81.374 72.572zM896 944c0 8.672-7.328 16-16 16h-736c-8.672 0-16-7.328-16-16v-864c0-8.672 7.328-16 16-16 0 0 495.956-0.002 496 0v224c0 17.672 14.326 32 32 32h224v624z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["file-empty","file","document","paper","page","new","empty","blank"],"defaultCode":59684,"grid":16},"attrs":[],"properties":{"ligatures":"file-empty, file3","name":"file-empty","id":36,"order":423,"prevSize":32,"code":60069},"setIdx":1,"setId":0,"iconIdx":36},{"icon":{"paths":["M917.806 357.076c-22.21-30.292-53.174-65.7-87.178-99.704s-69.412-64.964-99.704-87.178c-51.574-37.82-76.592-42.194-90.924-42.194h-368c-44.114 0-80 35.888-80 80v736c0 44.112 35.886 80 80 80h608c44.112 0 80-35.888 80-80v-496c0-14.332-4.372-39.35-42.194-90.924zM785.374 302.626c30.7 30.7 54.8 58.398 72.58 81.374h-153.954v-153.946c22.982 17.78 50.678 41.878 81.374 72.572v0zM896 944c0 8.672-7.328 16-16 16h-608c-8.672 0-16-7.328-16-16v-736c0-8.672 7.328-16 16-16 0 0 367.956-0.002 368 0v224c0 17.672 14.324 32 32 32h224v496z","M602.924 42.196c-51.574-37.822-76.592-42.196-90.924-42.196h-368c-44.112 0-80 35.888-80 80v736c0 38.632 27.528 70.958 64 78.39v-814.39c0-8.672 7.328-16 16-16h486.876c-9.646-7.92-19.028-15.26-27.952-21.804z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["files-empty","files","documents","papers","pages"],"defaultCode":59685,"grid":16},"attrs":[],"properties":{"ligatures":"files-empty, files","name":"files-empty","id":37,"order":424,"prevSize":32,"code":60070},"setIdx":1,"setId":0,"iconIdx":37},{"icon":{"paths":["M917.806 229.076c-22.212-30.292-53.174-65.7-87.178-99.704s-69.412-64.964-99.704-87.178c-51.574-37.82-76.592-42.194-90.924-42.194h-496c-44.112 0-80 35.888-80 80v864c0 44.112 35.888 80 80 80h736c44.112 0 80-35.888 80-80v-624c0-14.332-4.372-39.35-42.194-90.924zM785.374 174.626c30.7 30.7 54.8 58.398 72.58 81.374h-153.954v-153.946c22.984 17.78 50.678 41.878 81.374 72.572zM896 944c0 8.672-7.328 16-16 16h-736c-8.672 0-16-7.328-16-16v-864c0-8.672 7.328-16 16-16 0 0 495.956-0.002 496 0v224c0 17.672 14.326 32 32 32h224v624z","M736 832h-448c-17.672 0-32-14.326-32-32s14.328-32 32-32h448c17.674 0 32 14.326 32 32s-14.326 32-32 32z","M736 704h-448c-17.672 0-32-14.326-32-32s14.328-32 32-32h448c17.674 0 32 14.326 32 32s-14.326 32-32 32z","M736 576h-448c-17.672 0-32-14.326-32-32s14.328-32 32-32h448c17.674 0 32 14.326 32 32s-14.326 32-32 32z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["file-text","file","document","list","paper","page"],"defaultCode":59686,"grid":16},"attrs":[],"properties":{"ligatures":"file-text2, file4","name":"file-text2","id":38,"order":425,"prevSize":32,"code":60071},"setIdx":1,"setId":0,"iconIdx":38},{"icon":{"paths":["M832 896h-640v-128l192-320 263 320 185-128v256z","M832 480c0 53.020-42.98 96-96 96-53.022 0-96-42.98-96-96s42.978-96 96-96c53.020 0 96 42.98 96 96z","M917.806 229.076c-22.212-30.292-53.174-65.7-87.178-99.704s-69.412-64.964-99.704-87.178c-51.574-37.82-76.592-42.194-90.924-42.194h-496c-44.112 0-80 35.888-80 80v864c0 44.112 35.888 80 80 80h736c44.112 0 80-35.888 80-80v-624c0-14.332-4.372-39.35-42.194-90.924zM785.374 174.626c30.7 30.7 54.8 58.398 72.58 81.374h-153.954v-153.946c22.984 17.78 50.678 41.878 81.374 72.572zM896 944c0 8.672-7.328 16-16 16h-736c-8.672 0-16-7.328-16-16v-864c0-8.672 7.328-16 16-16 0 0 495.956-0.002 496 0v224c0 17.672 14.326 32 32 32h224v624z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["file-picture","file","document","file-image"],"defaultCode":59687,"grid":16},"attrs":[],"properties":{"ligatures":"file-picture, file5","name":"file-picture","id":39,"order":426,"prevSize":32,"code":60072},"setIdx":1,"setId":0,"iconIdx":39},{"icon":{"paths":["M917.806 229.076c-22.21-30.292-53.174-65.7-87.178-99.704s-69.412-64.964-99.704-87.178c-51.574-37.82-76.592-42.194-90.924-42.194h-496c-44.112 0-80 35.888-80 80v864c0 44.112 35.886 80 80 80h736c44.112 0 80-35.888 80-80v-624c0-14.332-4.372-39.35-42.194-90.924v0zM785.374 174.626c30.7 30.7 54.8 58.398 72.58 81.374h-153.954v-153.946c22.982 17.78 50.678 41.878 81.374 72.572v0zM896 944c0 8.672-7.328 16-16 16h-736c-8.672 0-16-7.328-16-16v-864c0-8.672 7.328-16 16-16 0 0 495.956-0.002 496 0v224c0 17.672 14.324 32 32 32h224v624z","M756.288 391.252c-7.414-6.080-17.164-8.514-26.562-6.632l-320 64c-14.958 2.994-25.726 16.126-25.726 31.38v236.876c-18.832-8.174-40.678-12.876-64-12.876-70.692 0-128 42.98-128 96s57.308 96 128 96 128-42.98 128-96v-229.766l256-51.202v133.842c-18.832-8.174-40.678-12.876-64-12.876-70.692 0-128 42.98-128 96s57.308 96 128 96 128-42.98 128-96v-319.998c0-9.586-4.298-18.668-11.712-24.748z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["file-music","file","document","file-song","file-audio"],"defaultCode":59688,"grid":16},"attrs":[],"properties":{"ligatures":"file-music, file6","name":"file-music","id":40,"order":427,"prevSize":32,"code":60073},"setIdx":1,"setId":0,"iconIdx":40},{"icon":{"paths":["M384 384l320 224-320 224v-448z","M917.806 229.076c-22.212-30.292-53.174-65.7-87.178-99.704s-69.412-64.964-99.704-87.178c-51.574-37.82-76.592-42.194-90.924-42.194h-496c-44.112 0-80 35.888-80 80v864c0 44.112 35.888 80 80 80h736c44.112 0 80-35.888 80-80v-624c0-14.332-4.372-39.35-42.194-90.924zM785.374 174.626c30.7 30.7 54.8 58.398 72.58 81.374h-153.954v-153.946c22.984 17.78 50.678 41.878 81.374 72.572zM896 944c0 8.672-7.328 16-16 16h-736c-8.672 0-16-7.328-16-16v-864c0-8.672 7.328-16 16-16 0 0 495.956-0.002 496 0v224c0 17.672 14.326 32 32 32h224v624z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["file-play","file","document","file-media","file-video"],"defaultCode":59689,"grid":16},"attrs":[],"properties":{"ligatures":"file-play, file7","name":"file-play","id":41,"order":428,"prevSize":32,"code":60074},"setIdx":1,"setId":0,"iconIdx":41},{"icon":{"paths":["M917.806 229.076c-22.208-30.292-53.174-65.7-87.178-99.704s-69.412-64.964-99.704-87.178c-51.574-37.82-76.594-42.194-90.924-42.194h-496c-44.112 0-80 35.888-80 80v864c0 44.112 35.882 80 80 80h736c44.112 0 80-35.888 80-80v-624c0-14.332-4.372-39.35-42.194-90.924v0 0zM785.374 174.626c30.7 30.7 54.8 58.398 72.58 81.374h-153.954v-153.946c22.98 17.78 50.678 41.878 81.374 72.572v0 0zM896 944c0 8.672-7.328 16-16 16h-736c-8.672 0-16-7.328-16-16v-864c0-8.672 7.328-16 16-16 0 0 495.956-0.002 496 0v224c0 17.672 14.32 32 32 32h224v624z","M256 512h320v320h-320v-320z","M576 640l192-128v320l-192-128z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["file-video","file","document","file-camera"],"defaultCode":59690,"grid":16},"attrs":[],"properties":{"ligatures":"file-video, file8","name":"file-video","id":42,"order":429,"prevSize":32,"code":60075},"setIdx":1,"setId":0,"iconIdx":42},{"icon":{"paths":["M917.806 229.076c-22.208-30.292-53.174-65.7-87.178-99.704s-69.412-64.964-99.704-87.178c-51.574-37.82-76.592-42.194-90.924-42.194h-496c-44.112 0-80 35.888-80 80v864c0 44.112 35.884 80 80 80h736c44.112 0 80-35.888 80-80v-624c0-14.332-4.372-39.35-42.194-90.924v0 0zM785.374 174.626c30.7 30.7 54.8 58.398 72.58 81.374h-153.954v-153.946c22.98 17.78 50.678 41.878 81.374 72.572v0 0zM896 944c0 8.672-7.328 16-16 16h-736c-8.672 0-16-7.328-16-16v-864c0-8.672 7.328-16 16-16 0 0 495.956-0.002 496 0v224c0 17.672 14.322 32 32 32h224v624z","M256 64h128v64h-128v-64z","M384 128h128v64h-128v-64z","M256 192h128v64h-128v-64z","M384 256h128v64h-128v-64z","M256 320h128v64h-128v-64z","M384 384h128v64h-128v-64z","M256 448h128v64h-128v-64z","M384 512h128v64h-128v-64z","M256 848c0 26.4 21.6 48 48 48h160c26.4 0 48-21.6 48-48v-160c0-26.4-21.6-48-48-48h-80v-64h-128v272zM448 768v64h-128v-64h128z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["file-zip","file","document","file-compressed","file-type","file-format"],"defaultCode":59691,"grid":16},"attrs":[],"properties":{"ligatures":"file-zip, file9","name":"file-zip","id":43,"order":430,"prevSize":32,"code":60076},"setIdx":1,"setId":0,"iconIdx":43},{"icon":{"paths":["M640 256v-256h-448l-192 192v576h384v256h640v-768h-384zM192 90.51v101.49h-101.49l101.49-101.49zM64 704v-448h192v-192h320v192l-192 192v256h-320zM576 346.51v101.49h-101.49l101.49-101.49zM960 960h-512v-448h192v-192h320v640z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["copy","duplicate","files","pages","papers","documents"],"defaultCode":59692,"grid":16},"attrs":[],"properties":{"ligatures":"copy, duplicate","name":"copy","id":44,"order":431,"prevSize":32,"code":60077},"setIdx":1,"setId":0,"iconIdx":44},{"icon":{"paths":["M704 128h-128v-64c0-35.2-28.8-64-64-64h-128c-35.204 0-64 28.8-64 64v64h-128v128h512v-128zM512 128h-128v-63.886c0.034-0.038 0.072-0.078 0.114-0.114h127.768c0.042 0.036 0.082 0.076 0.118 0.114v63.886zM832 320v-160c0-17.6-14.4-32-32-32h-64v64h32v128h-192l-192 192v256h-256v-576h32v-64h-64c-17.602 0-32 14.4-32 32v640c0 17.6 14.398 32 32 32h288v192h640v-704h-192zM576 410.51v101.49h-101.49l101.49-101.49zM960 960h-512v-384h192v-192h320v576z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["paste","clipboard-file"],"defaultCode":59693,"grid":16},"attrs":[],"properties":{"ligatures":"paste, clipboard-file","name":"paste","id":45,"order":432,"prevSize":32,"code":60078},"setIdx":1,"setId":0,"iconIdx":45},{"icon":{"paths":["M1024 320l-512-256-512 256 512 256 512-256zM512 148.97l342.058 171.030-342.058 171.030-342.058-171.030 342.058-171.030zM921.444 460.722l102.556 51.278-512 256-512-256 102.556-51.278 409.444 204.722zM921.444 652.722l102.556 51.278-512 256-512-256 102.556-51.278 409.444 204.722z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["stack","layers"],"defaultCode":59694,"grid":16},"attrs":[],"properties":{"ligatures":"stack, layers","name":"stack","id":46,"order":433,"prevSize":32,"code":60079},"setIdx":1,"setId":0,"iconIdx":46},{"icon":{"paths":["M448 128l128 128h448v704h-1024v-832z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["folder","directory","category","browse"],"defaultCode":59695,"grid":16},"attrs":[],"properties":{"ligatures":"folder, directory","name":"folder","id":47,"order":434,"prevSize":32,"code":60080},"setIdx":1,"setId":0,"iconIdx":47},{"icon":{"paths":["M832 960l192-512h-832l-192 512zM128 384l-128 576v-832h288l128 128h416v128z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["folder-open","directory","category","browse"],"defaultCode":59696,"grid":16},"attrs":[],"properties":{"ligatures":"folder-open, directory2","name":"folder-open","id":48,"order":435,"prevSize":32,"code":60081},"setIdx":1,"setId":0,"iconIdx":48},{"icon":{"paths":["M576 256l-128-128h-448v832h1024v-704h-448zM704 704h-128v128h-128v-128h-128v-128h128v-128h128v128h128v128z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["folder-plus","directory","folder-add"],"defaultCode":59697,"grid":16},"attrs":[],"properties":{"ligatures":"folder-plus, directory3","name":"folder-plus","id":49,"order":436,"prevSize":32,"code":60082},"setIdx":1,"setId":0,"iconIdx":49},{"icon":{"paths":["M576 256l-128-128h-448v832h1024v-704h-448zM704 704h-384v-128h384v128z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["folder-minus","directory","folder-remove"],"defaultCode":59698,"grid":16},"attrs":[],"properties":{"ligatures":"folder-minus, directory4","name":"folder-minus","id":50,"order":437,"prevSize":32,"code":60083},"setIdx":1,"setId":0,"iconIdx":50},{"icon":{"paths":["M576 256l-128-128h-448v832h1024v-704h-448zM512 864l-224-224h160v-256h128v256h160l-224 224z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["folder-download","directory","folder-save"],"defaultCode":59699,"grid":16},"attrs":[],"properties":{"ligatures":"folder-download, directory5","name":"folder-download","id":51,"order":438,"prevSize":32,"code":60084},"setIdx":1,"setId":0,"iconIdx":51},{"icon":{"paths":["M576 256l-128-128h-448v832h1024v-704h-448zM512 480l224 224h-160v256h-128v-256h-160l224-224z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["folder-upload","directory","folder-load"],"defaultCode":59700,"grid":16},"attrs":[],"properties":{"ligatures":"folder-upload, directory6","name":"folder-upload","id":52,"order":439,"prevSize":32,"code":60085},"setIdx":1,"setId":0,"iconIdx":52},{"icon":{"paths":["M976 0h-384c-26.4 0-63.274 15.274-81.942 33.942l-476.116 476.116c-18.668 18.668-18.668 49.214 0 67.882l412.118 412.118c18.668 18.668 49.214 18.668 67.882 0l476.118-476.118c18.666-18.666 33.94-55.54 33.94-81.94v-384c0-26.4-21.6-48-48-48zM736 384c-53.020 0-96-42.98-96-96s42.98-96 96-96 96 42.98 96 96-42.98 96-96 96z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["price-tag"],"defaultCode":59701,"grid":16},"attrs":[],"properties":{"ligatures":"price-tag","name":"price-tag","id":53,"order":440,"prevSize":32,"code":60086},"setIdx":1,"setId":0,"iconIdx":53},{"icon":{"paths":["M1232 0h-384c-26.4 0-63.274 15.274-81.942 33.942l-476.116 476.116c-18.668 18.668-18.668 49.214 0 67.882l412.118 412.118c18.668 18.668 49.214 18.668 67.882 0l476.118-476.118c18.666-18.666 33.94-55.54 33.94-81.94v-384c0-26.4-21.6-48-48-48zM992 384c-53.020 0-96-42.98-96-96s42.98-96 96-96 96 42.98 96 96-42.98 96-96 96z","M128 544l544-544h-80c-26.4 0-63.274 15.274-81.942 33.942l-476.116 476.116c-18.668 18.668-18.668 49.214 0 67.882l412.118 412.118c18.668 18.668 49.214 18.668 67.882 0l30.058-30.058-416-416z"],"width":1280,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["price-tags"],"defaultCode":59702,"grid":16},"attrs":[],"properties":{"ligatures":"price-tags","name":"price-tags","id":54,"order":441,"prevSize":32,"code":60087},"setIdx":1,"setId":0,"iconIdx":54},{"icon":{"paths":["M0 128h128v640h-128zM192 128h64v640h-64zM320 128h64v640h-64zM512 128h64v640h-64zM768 128h64v640h-64zM960 128h64v640h-64zM640 128h32v640h-32zM448 128h32v640h-32zM864 128h32v640h-32zM0 832h64v64h-64zM192 832h64v64h-64zM320 832h64v64h-64zM640 832h64v64h-64zM960 832h64v64h-64zM768 832h128v64h-128zM448 832h128v64h-128z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["barcode"],"defaultCode":59703,"grid":16},"attrs":[],"properties":{"ligatures":"barcode","name":"barcode","id":55,"order":442,"prevSize":32,"code":60088},"setIdx":1,"setId":0,"iconIdx":55},{"icon":{"paths":["M320 64h-256v256h256v-256zM384 0v0 384h-384v-384h384zM128 128h128v128h-128zM960 64h-256v256h256v-256zM1024 0v0 384h-384v-384h384zM768 128h128v128h-128zM320 704h-256v256h256v-256zM384 640v0 384h-384v-384h384zM128 768h128v128h-128zM448 0h64v64h-64zM512 64h64v64h-64zM448 128h64v64h-64zM512 192h64v64h-64zM448 256h64v64h-64zM512 320h64v64h-64zM448 384h64v64h-64zM448 512h64v64h-64zM512 576h64v64h-64zM448 640h64v64h-64zM512 704h64v64h-64zM448 768h64v64h-64zM512 832h64v64h-64zM448 896h64v64h-64zM512 960h64v64h-64zM960 512h64v64h-64zM64 512h64v64h-64zM128 448h64v64h-64zM0 448h64v64h-64zM256 448h64v64h-64zM320 512h64v64h-64zM384 448h64v64h-64zM576 512h64v64h-64zM640 448h64v64h-64zM704 512h64v64h-64zM768 448h64v64h-64zM832 512h64v64h-64zM896 448h64v64h-64zM960 640h64v64h-64zM576 640h64v64h-64zM640 576h64v64h-64zM704 640h64v64h-64zM832 640h64v64h-64zM896 576h64v64h-64zM960 768h64v64h-64zM576 768h64v64h-64zM640 704h64v64h-64zM768 704h64v64h-64zM832 768h64v64h-64zM896 704h64v64h-64zM960 896h64v64h-64zM640 832h64v64h-64zM704 896h64v64h-64zM768 832h64v64h-64zM832 896h64v64h-64zM640 960h64v64h-64zM768 960h64v64h-64zM896 960h64v64h-64z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["qrcode"],"defaultCode":59704,"grid":16},"attrs":[],"properties":{"ligatures":"qrcode","name":"qrcode","id":56,"order":443,"prevSize":32,"code":60089},"setIdx":1,"setId":0,"iconIdx":56},{"icon":{"paths":["M575.996 320l127.998 127.998-255.994 255.994-127.998-127.998zM1001.526 297.504l-73.516-73.516-32.008 32.008c-16.378 16.38-39.010 26.51-64 26.51-49.988 0-90.514-40.522-90.514-90.51 0-25.002 10.14-47.638 26.534-64.018l31.988-31.986-73.518-73.516c-29.968-29.968-79.008-29.968-108.976 0l-595.040 595.038c-29.966 29.968-29.966 79.010 0 108.976l73.52 73.518 31.962-31.964c16.382-16.406 39.030-26.552 64.044-26.552 49.988 0 90.51 40.524 90.51 90.51 0 25.006-10.14 47.64-26.534 64.022l-31.984 31.986 73.516 73.518c29.966 29.966 79.008 29.966 108.976 0l595.040-595.040c29.964-29.976 29.964-79.016 0-108.984zM448.002 831.996l-256-256 384-384 256 256-384 384z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["ticket","theater","cinema"],"defaultCode":59705,"grid":16},"attrs":[],"properties":{"ligatures":"ticket, theater","name":"ticket","id":57,"order":444,"prevSize":32,"code":60090},"setIdx":1,"setId":0,"iconIdx":57},{"icon":{"paths":["M384 928c0 53.019-42.981 96-96 96s-96-42.981-96-96c0-53.019 42.981-96 96-96s96 42.981 96 96z","M1024 928c0 53.019-42.981 96-96 96s-96-42.981-96-96c0-53.019 42.981-96 96-96s96 42.981 96 96z","M1024 512v-384h-768c0-35.346-28.654-64-64-64h-192v64h128l48.074 412.054c-29.294 23.458-48.074 59.5-48.074 99.946 0 70.696 57.308 128 128 128h768v-64h-768c-35.346 0-64-28.654-64-64 0-0.218 0.014-0.436 0.016-0.656l831.984-127.344z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["cart","purchase","ecommerce","shopping"],"defaultCode":59706,"grid":16},"attrs":[],"properties":{"ligatures":"cart, purchase","name":"cart","id":58,"order":445,"prevSize":32,"code":60091},"setIdx":1,"setId":0,"iconIdx":58},{"icon":{"paths":["M480 64c-265.096 0-480 214.904-480 480 0 265.098 214.904 480 480 480 265.098 0 480-214.902 480-480 0-265.096-214.902-480-480-480zM480 928c-212.078 0-384-171.922-384-384s171.922-384 384-384c212.078 0 384 171.922 384 384s-171.922 384-384 384zM512 512v-128h128v-64h-128v-64h-64v64h-128v256h128v128h-128v64h128v64h64v-64h128.002l-0.002-256h-128zM448 512h-64v-128h64v128zM576.002 704h-64.002v-128h64.002v128z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["coin-dollar","money","cash","currency-dollar"],"defaultCode":59707,"grid":16},"attrs":[],"properties":{"ligatures":"coin-dollar, money","name":"coin-dollar","id":59,"order":446,"prevSize":32,"code":60092},"setIdx":1,"setId":0,"iconIdx":59},{"icon":{"paths":["M480 64c-265.096 0-480 214.904-480 480s214.904 480 480 480c265.098 0 480-214.902 480-480s-214.902-480-480-480zM480 928c-212.078 0-384-171.922-384-384s171.922-384 384-384c212.076 0 384 171.922 384 384s-171.924 384-384 384z","M670.824 644.34c-15.27-8.884-34.862-3.708-43.75 11.57-17.256 29.662-49.088 48.090-83.074 48.090h-128c-41.716 0-77.286-26.754-90.496-64h154.496c17.672 0 32-14.326 32-32s-14.328-32-32-32h-160v-64h160c17.672 0 32-14.328 32-32s-14.328-32-32-32h-154.496c13.21-37.246 48.78-64 90.496-64h128c33.986 0 65.818 18.426 83.074 48.090 8.888 15.276 28.478 20.456 43.752 11.568 15.276-8.888 20.456-28.476 11.568-43.752-28.672-49.288-81.702-79.906-138.394-79.906h-128c-77.268 0-141.914 55.056-156.78 128h-35.22c-17.672 0-32 14.328-32 32s14.328 32 32 32h32v64h-32c-17.672 0-32 14.326-32 32s14.328 32 32 32h35.22c14.866 72.944 79.512 128 156.78 128h128c56.692 0 109.72-30.62 138.394-79.91 8.888-15.276 3.708-34.864-11.57-43.75z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["coin-euro","money","cash","currency-euro"],"defaultCode":59708,"grid":16},"attrs":[],"properties":{"ligatures":"coin-euro, money2","name":"coin-euro","id":60,"order":447,"prevSize":32,"code":60093},"setIdx":1,"setId":0,"iconIdx":60},{"icon":{"paths":["M480 64c-265.096 0-480 214.904-480 480s214.904 480 480 480c265.098 0 480-214.902 480-480s-214.902-480-480-480zM480 928c-212.078 0-384-171.922-384-384s171.922-384 384-384c212.074 0 384 171.922 384 384s-171.926 384-384 384z","M608 704h-224v-128h96c17.672 0 32-14.326 32-32s-14.328-32-32-32h-96v-32c0-52.934 43.066-96 96-96 34.17 0 66.042 18.404 83.18 48.030 8.85 15.298 28.426 20.526 43.722 11.676 15.296-8.848 20.526-28.424 11.676-43.722-28.538-49.336-81.638-79.984-138.578-79.984-88.224 0-160 71.776-160 160v32h-32c-17.672 0-32 14.326-32 32s14.328 32 32 32h32v192h288c17.674 0 32-14.326 32-32s-14.326-32-32-32z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["coin-pound","money","cash","currency-pound"],"defaultCode":59709,"grid":16},"attrs":[],"properties":{"ligatures":"coin-pound, money3","name":"coin-pound","id":61,"order":448,"prevSize":32,"code":60094},"setIdx":1,"setId":0,"iconIdx":61},{"icon":{"paths":["M480 64c-265.096 0-480 214.904-480 480s214.904 480 480 480c265.098 0 480-214.902 480-480s-214.902-480-480-480zM480 928c-212.078 0-384-171.922-384-384s171.922-384 384-384c212.076 0 384 171.922 384 384s-171.924 384-384 384z","M608 576c17.674 0 32-14.326 32-32s-14.326-32-32-32h-68.208l94.832-142.25c9.804-14.704 5.83-34.572-8.876-44.376-14.704-9.802-34.572-5.83-44.376 8.876l-101.372 152.062-101.374-152.062c-9.804-14.706-29.672-18.68-44.376-8.876-14.706 9.804-18.678 29.672-8.876 44.376l94.834 142.25h-68.208c-17.672 0-32 14.326-32 32s14.328 32 32 32h96v64h-96c-17.672 0-32 14.326-32 32s14.328 32 32 32h96v96c0 17.674 14.328 32 32 32s32-14.326 32-32v-96h96c17.674 0 32-14.326 32-32s-14.326-32-32-32h-96v-64h96z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["coin-yen","money","cash","currency-yen"],"defaultCode":59710,"grid":16},"attrs":[],"properties":{"ligatures":"coin-yen, money4","name":"coin-yen","id":62,"order":449,"prevSize":32,"code":60095},"setIdx":1,"setId":0,"iconIdx":62},{"icon":{"paths":["M928 128h-832c-52.8 0-96 43.2-96 96v576c0 52.8 43.2 96 96 96h832c52.8 0 96-43.2 96-96v-576c0-52.8-43.2-96-96-96zM96 192h832c17.346 0 32 14.654 32 32v96h-896v-96c0-17.346 14.654-32 32-32zM928 832h-832c-17.346 0-32-14.654-32-32v-288h896v288c0 17.346-14.654 32-32 32zM128 640h64v128h-64zM256 640h64v128h-64zM384 640h64v128h-64z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["credit-card","money","payment","ecommerce"],"defaultCode":59711,"grid":16},"attrs":[],"properties":{"ligatures":"credit-card, money5","name":"credit-card","id":63,"order":450,"prevSize":32,"code":60096},"setIdx":1,"setId":0,"iconIdx":63},{"icon":{"paths":["M384 64h-320c-35.2 0-64 28.8-64 64v320c0 35.2 28.796 64 64 64h320c35.2 0 64-28.8 64-64v-320c0-35.2-28.8-64-64-64zM384 320h-320v-64h320v64zM896 64h-320c-35.204 0-64 28.8-64 64v832c0 35.2 28.796 64 64 64h320c35.2 0 64-28.8 64-64v-832c0-35.2-28.8-64-64-64zM896 640h-320v-64h320v64zM896 448h-320v-64h320v64zM384 576h-320c-35.2 0-64 28.8-64 64v320c0 35.2 28.796 64 64 64h320c35.2 0 64-28.8 64-64v-320c0-35.2-28.8-64-64-64zM384 832h-128v128h-64v-128h-128v-64h128v-128h64v128h128v64z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["calculator","compute","math","arithmetic","sum"],"defaultCode":59712,"grid":16},"attrs":[],"properties":{"ligatures":"calculator, compute","name":"calculator","id":64,"order":451,"prevSize":32,"code":60097},"setIdx":1,"setId":0,"iconIdx":64},{"icon":{"paths":["M512 0c-282.77 0-512 229.23-512 512s229.23 512 512 512 512-229.23 512-512-229.23-512-512-512zM320 512c0-106.040 85.96-192 192-192s192 85.96 192 192-85.96 192-192 192-192-85.96-192-192zM925.98 683.476v0l-177.42-73.49c12.518-30.184 19.44-63.276 19.44-97.986s-6.922-67.802-19.44-97.986l177.42-73.49c21.908 52.822 34.020 110.73 34.020 171.476s-12.114 118.654-34.020 171.476v0zM683.478 98.020v0 0l-73.49 177.42c-30.184-12.518-63.276-19.44-97.988-19.44s-67.802 6.922-97.986 19.44l-73.49-177.422c52.822-21.904 110.732-34.018 171.476-34.018 60.746 0 118.654 12.114 171.478 34.020zM98.020 340.524l177.422 73.49c-12.518 30.184-19.442 63.276-19.442 97.986s6.922 67.802 19.44 97.986l-177.42 73.49c-21.906-52.822-34.020-110.73-34.020-171.476s12.114-118.654 34.020-171.476zM340.524 925.98l73.49-177.42c30.184 12.518 63.276 19.44 97.986 19.44s67.802-6.922 97.986-19.44l73.49 177.42c-52.822 21.904-110.73 34.020-171.476 34.020-60.744 0-118.654-12.114-171.476-34.020z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["lifebuoy","support","help"],"defaultCode":59713,"grid":16},"attrs":[],"properties":{"ligatures":"lifebuoy, support","name":"lifebuoy","id":65,"order":452,"prevSize":32,"code":60098},"setIdx":1,"setId":0,"iconIdx":65},{"icon":{"paths":["M704 640c-64 64-64 128-128 128s-128-64-192-128-128-128-128-192 64-64 128-128-128-256-192-256-192 192-192 192c0 128 131.5 387.5 256 512s384 256 512 256c0 0 192-128 192-192s-192-256-256-192z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["phone","telephone","contact","support","call"],"defaultCode":59714,"grid":16},"attrs":[],"properties":{"ligatures":"phone, telephone","name":"phone","id":66,"order":453,"prevSize":32,"code":60099},"setIdx":1,"setId":0,"iconIdx":66},{"icon":{"paths":["M1017.378 575.994c8.004 55.482 13.216 131.392-11.664 160.446-41.142 48.044-301.712 48.044-301.712-48.042 0-48.398 42.856-80.134 1.712-128.178-40.472-47.262-113.026-48.030-193.714-48.042-80.686 0.012-153.242 0.78-193.714 48.042-41.142 48.046 1.714 79.78 1.714 128.178 0 96.086-260.57 96.086-301.714 48.044-24.878-29.054-19.668-104.964-11.662-160.446 6.16-37.038 21.724-76.996 71.548-127.994 0-0.002 0.002-0.002 0.002-0.004 74.738-69.742 187.846-126.738 429.826-127.968v-0.030c1.344 0 2.664 0.010 4 0.014 1.338-0.004 2.656-0.014 4-0.014v0.028c241.98 1.23 355.088 58.226 429.826 127.968 0.002 0.002 0.002 0.004 0.002 0.004 49.824 50.996 65.39 90.954 71.55 127.994z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["phone-hang-up","telephone","contact","support","call"],"defaultCode":59715,"grid":16},"attrs":[],"properties":{"ligatures":"phone-hang-up, telephone2","name":"phone-hang-up","id":67,"order":454,"prevSize":32,"code":60100},"setIdx":1,"setId":0,"iconIdx":67},{"icon":{"paths":["M192 0v1024h768v-1024h-768zM576 256.33c70.51 0 127.67 57.16 127.67 127.67s-57.16 127.67-127.67 127.67-127.67-57.16-127.67-127.67 57.16-127.67 127.67-127.67v0zM768 768h-384v-64c0-70.696 57.306-128 128-128v0h128c70.696 0 128 57.304 128 128v64z","M64 64h96v192h-96v-192z","M64 320h96v192h-96v-192z","M64 576h96v192h-96v-192z","M64 832h96v192h-96v-192z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["address-book","contact","book","contacts"],"defaultCode":59716,"grid":16},"attrs":[],"properties":{"ligatures":"address-book, contact","name":"address-book","id":68,"order":455,"prevSize":32,"code":60101},"setIdx":1,"setId":0,"iconIdx":68},{"icon":{"paths":["M928 128h-832c-52.8 0-96 43.2-96 96v640c0 52.8 43.2 96 96 96h832c52.8 0 96-43.2 96-96v-640c0-52.8-43.2-96-96-96zM398.74 550.372l-270.74 210.892v-501.642l270.74 290.75zM176.38 256h671.24l-335.62 252-335.62-252zM409.288 561.698l102.712 110.302 102.71-110.302 210.554 270.302h-626.528l210.552-270.302zM625.26 550.372l270.74-290.75v501.642l-270.74-210.892z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["envelop","mail","email","contact","letter"],"defaultCode":59717,"grid":16},"attrs":[],"properties":{"ligatures":"envelop, mail","name":"envelop","id":69,"order":456,"prevSize":32,"code":60102},"setIdx":1,"setId":0,"iconIdx":69},{"icon":{"paths":["M544 0l-96 96 96 96-224 256h-224l176 176-272 360.616v39.384h39.384l360.616-272 176 176v-224l256-224 96 96 96-96-480-480zM448 544l-64-64 224-224 64 64-224 224z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["pushpin","pin"],"defaultCode":59718,"grid":16},"attrs":[],"properties":{"ligatures":"pushpin, pin","name":"pushpin","id":70,"order":457,"prevSize":32,"code":60103},"setIdx":1,"setId":0,"iconIdx":70},{"icon":{"paths":["M512 0c-176.732 0-320 143.268-320 320 0 320 320 704 320 704s320-384 320-704c0-176.732-143.27-320-320-320zM512 512c-106.040 0-192-85.96-192-192s85.96-192 192-192 192 85.96 192 192-85.96 192-192 192z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["location","map-marker","pin"],"defaultCode":59719,"grid":16},"attrs":[],"properties":{"ligatures":"location, map-marker","name":"location","id":71,"order":458,"prevSize":32,"code":60104},"setIdx":1,"setId":0,"iconIdx":71},{"icon":{"paths":["M512 0c-176.732 0-320 143.268-320 320 0 320 320 704 320 704s320-384 320-704c0-176.732-143.27-320-320-320zM512 516c-108.248 0-196-87.752-196-196s87.752-196 196-196 196 87.752 196 196-87.752 196-196 196zM388 320c0-68.483 55.517-124 124-124s124 55.517 124 124c0 68.483-55.517 124-124 124s-124-55.517-124-124z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["location","map-marker","pin"],"defaultCode":59720,"grid":16},"attrs":[],"properties":{"ligatures":"location2, map-marker2","name":"location2","id":72,"order":459,"prevSize":32,"code":60105},"setIdx":1,"setId":0,"iconIdx":72},{"icon":{"paths":["M544.010 1024.004c-2.296 0-4.622-0.25-6.94-0.764-14.648-3.25-25.070-16.238-25.070-31.24v-480h-480c-15.002 0-27.992-10.422-31.24-25.070-3.25-14.646 4.114-29.584 17.708-35.928l960-448c12.196-5.688 26.644-3.144 36.16 6.372 9.516 9.514 12.060 23.966 6.372 36.16l-448 960c-5.342 11.44-16.772 18.47-28.99 18.47zM176.242 448h367.758c17.674 0 32 14.328 32 32v367.758l349.79-749.546-749.548 349.788z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["compass","direction","location"],"defaultCode":59721,"grid":16},"attrs":[],"properties":{"ligatures":"compass, direction","name":"compass","id":73,"order":460,"prevSize":32,"code":60106},"setIdx":1,"setId":0,"iconIdx":73},{"icon":{"paths":["M512 0c-282.77 0-512 229.23-512 512s229.23 512 512 512 512-229.23 512-512-229.23-512-512-512zM96 512c0-229.75 186.25-416 416-416 109.574 0 209.232 42.386 283.534 111.628l-411.534 176.372-176.372 411.534c-69.242-74.302-111.628-173.96-111.628-283.534zM585.166 585.166l-256.082 109.75 109.75-256.082 146.332 146.332zM512 928c-109.574 0-209.234-42.386-283.532-111.628l411.532-176.372 176.372-411.532c69.242 74.298 111.628 173.958 111.628 283.532 0 229.75-186.25 416-416 416z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["compass","direction","location"],"defaultCode":59722,"grid":16},"attrs":[],"properties":{"ligatures":"compass2, direction2","name":"compass2","id":74,"order":461,"prevSize":32,"code":60107},"setIdx":1,"setId":0,"iconIdx":74},{"icon":{"paths":["M0 192l320-128v768l-320 128z","M384 32l320 192v736l-320-160z","M768 224l256-192v768l-256 192z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["map","guide"],"defaultCode":59723,"grid":16},"attrs":[],"properties":{"ligatures":"map, guide","name":"map","id":75,"order":462,"prevSize":32,"code":60108},"setIdx":1,"setId":0,"iconIdx":75},{"icon":{"paths":["M672 192l-320-128-352 128v768l352-128 320 128 352-128v-768l-352 128zM384 145.73l256 102.4v630.138l-256-102.398v-630.14zM64 236.828l256-93.090v631.8l-256 93.088v-631.798zM960 787.172l-256 93.092v-631.8l256-93.090v631.798z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["map","guide"],"defaultCode":59724,"grid":16},"attrs":[],"properties":{"ligatures":"map2, guide2","name":"map2","id":76,"order":463,"prevSize":32,"code":60109},"setIdx":1,"setId":0,"iconIdx":76},{"icon":{"paths":["M640 64c247.424 0 448 200.576 448 448s-200.576 448-448 448v-96c94.024 0 182.418-36.614 248.902-103.098s103.098-154.878 103.098-248.902c0-94.022-36.614-182.418-103.098-248.902s-154.878-103.098-248.902-103.098c-94.022 0-182.418 36.614-248.902 103.098-51.14 51.138-84.582 115.246-97.306 184.902h186.208l-224 256-224-256h164.57c31.060-217.102 217.738-384 443.43-384zM832 448v128h-256v-320h128v192z"],"width":1088,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["history","time","archive","past"],"defaultCode":59725,"grid":16},"attrs":[],"properties":{"ligatures":"history, time","name":"history","id":77,"order":464,"prevSize":32,"code":60110},"setIdx":1,"setId":0,"iconIdx":77},{"icon":{"paths":["M658.744 749.256l-210.744-210.746v-282.51h128v229.49l173.256 173.254zM512 0c-282.77 0-512 229.23-512 512s229.23 512 512 512 512-229.23 512-512-229.23-512-512-512zM512 896c-212.078 0-384-171.922-384-384s171.922-384 384-384c212.078 0 384 171.922 384 384s-171.922 384-384 384z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["clock","time","schedule"],"defaultCode":59726,"grid":16},"attrs":[],"properties":{"ligatures":"clock, time2","name":"clock","id":78,"order":465,"prevSize":32,"code":60111},"setIdx":1,"setId":0,"iconIdx":78},{"icon":{"paths":["M512 0c-282.77 0-512 229.23-512 512s229.23 512 512 512 512-229.23 512-512-229.23-512-512-512zM658.744 749.256l-210.744-210.746v-282.51h128v229.49l173.256 173.254-90.512 90.512z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["clock","time","schedule"],"defaultCode":59727,"grid":16},"attrs":[],"properties":{"ligatures":"clock2, time3","name":"clock2","id":79,"order":466,"prevSize":32,"code":60112},"setIdx":1,"setId":0,"iconIdx":79},{"icon":{"paths":["M512 128c-247.424 0-448 200.576-448 448s200.576 448 448 448 448-200.576 448-448-200.576-448-448-448zM512 936c-198.824 0-360-161.178-360-360 0-198.824 161.176-360 360-360 198.822 0 360 161.176 360 360 0 198.822-161.178 360-360 360zM934.784 287.174c16.042-28.052 25.216-60.542 25.216-95.174 0-106.040-85.96-192-192-192-61.818 0-116.802 29.222-151.92 74.596 131.884 27.236 245.206 105.198 318.704 212.578v0zM407.92 74.596c-35.116-45.374-90.102-74.596-151.92-74.596-106.040 0-192 85.96-192 192 0 34.632 9.174 67.122 25.216 95.174 73.5-107.38 186.822-185.342 318.704-212.578z","M512 576v-256h-64v320h256v-64z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["alarm","time","clock"],"defaultCode":59728,"grid":16},"attrs":[],"properties":{"ligatures":"alarm, time4","name":"alarm","id":80,"order":467,"prevSize":32,"code":60113},"setIdx":1,"setId":0,"iconIdx":80},{"icon":{"paths":["M1025.5 800c0-288-256-224-256-448 0-18.56-1.788-34.42-5.048-47.928-16.83-113.018-92.156-203.72-189.772-231.36 0.866-3.948 1.32-8.032 1.32-12.21 0-33.278-28.8-60.502-64-60.502s-64 27.224-64 60.5c0 4.18 0.456 8.264 1.32 12.21-109.47 30.998-190.914 141.298-193.254 273.442-0.040 1.92-0.066 3.864-0.066 5.846 0 224.002-256 160.002-256 448.002 0 76.226 170.59 139.996 398.97 156.080 21.524 40.404 64.056 67.92 113.030 67.92s91.508-27.516 113.030-67.92c228.38-16.084 398.97-79.854 398.97-156.080 0-0.228-0.026-0.456-0.028-0.682l1.528 0.682zM826.246 854.096c-54.23 14.47-118.158 24.876-186.768 30.648-5.704-65.418-60.582-116.744-127.478-116.744s-121.774 51.326-127.478 116.744c-68.608-5.772-132.538-16.178-186.768-30.648-74.63-19.914-110.31-42.19-123.368-54.096 13.058-11.906 48.738-34.182 123.368-54.096 86.772-23.152 198.372-35.904 314.246-35.904s227.474 12.752 314.246 35.904c74.63 19.914 110.31 42.19 123.368 54.096-13.058 11.906-48.738 34.182-123.368 54.096z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["bell","alarm","notification"],"defaultCode":59729,"grid":16},"attrs":[],"properties":{"ligatures":"bell, alarm2","name":"bell","id":81,"order":468,"prevSize":32,"code":60114},"setIdx":1,"setId":0,"iconIdx":81},{"icon":{"paths":["M512.002 193.212v-65.212h128v-64c0-35.346-28.654-64-64.002-64h-191.998c-35.346 0-64 28.654-64 64v64h128v65.212c-214.798 16.338-384 195.802-384 414.788 0 229.75 186.25 416 416 416s416-186.25 416-416c0-218.984-169.202-398.448-384-414.788zM706.276 834.274c-60.442 60.44-140.798 93.726-226.274 93.726s-165.834-33.286-226.274-93.726c-60.44-60.44-93.726-140.8-93.726-226.274s33.286-165.834 93.726-226.274c58.040-58.038 134.448-91.018 216.114-93.548l-21.678 314.020c-1.86 26.29 12.464 37.802 31.836 37.802s33.698-11.512 31.836-37.802l-21.676-314.022c81.666 2.532 158.076 35.512 216.116 93.55 60.44 60.44 93.726 140.8 93.726 226.274s-33.286 165.834-93.726 226.274z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["stopwatch","time","speed","meter","chronometer"],"defaultCode":59730,"grid":16},"attrs":[],"properties":{"ligatures":"stopwatch, time5","name":"stopwatch","id":82,"order":469,"prevSize":32,"code":60115},"setIdx":1,"setId":0,"iconIdx":82},{"icon":{"paths":["M320 384h128v128h-128zM512 384h128v128h-128zM704 384h128v128h-128zM128 768h128v128h-128zM320 768h128v128h-128zM512 768h128v128h-128zM320 576h128v128h-128zM512 576h128v128h-128zM704 576h128v128h-128zM128 576h128v128h-128zM832 0v64h-128v-64h-448v64h-128v-64h-128v1024h960v-1024h-128zM896 960h-832v-704h832v704z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["calendar","date","schedule","time","day"],"defaultCode":59731,"grid":16},"attrs":[],"properties":{"ligatures":"calendar, date","name":"calendar","id":83,"order":470,"prevSize":32,"code":60116},"setIdx":1,"setId":0,"iconIdx":83},{"icon":{"paths":["M256 64h512v128h-512v-128z","M960 256h-896c-35.2 0-64 28.8-64 64v320c0 35.2 28.794 64 64 64h192v256h512v-256h192c35.2 0 64-28.8 64-64v-320c0-35.2-28.8-64-64-64zM128 448c-35.346 0-64-28.654-64-64s28.654-64 64-64 64 28.654 64 64-28.652 64-64 64zM704 896h-384v-320h384v320z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["printer","print"],"defaultCode":59732,"grid":16},"attrs":[],"properties":{"ligatures":"printer, print","name":"printer","id":84,"order":471,"prevSize":32,"code":60117},"setIdx":1,"setId":0,"iconIdx":84},{"icon":{"paths":["M1088 128h-1024c-35.2 0-64 28.8-64 64v640c0 35.2 28.8 64 64 64h1024c35.2 0 64-28.8 64-64v-640c0-35.2-28.8-64-64-64zM640 256h128v128h-128v-128zM832 448v128h-128v-128h128zM448 256h128v128h-128v-128zM640 448v128h-128v-128h128zM256 256h128v128h-128v-128zM448 448v128h-128v-128h128zM128 256h64v128h-64v-128zM128 448h128v128h-128v-128zM192 768h-64v-128h64v128zM768 768h-512v-128h512v128zM1024 768h-192v-128h192v128zM1024 576h-128v-128h128v128zM1024 384h-192v-128h192v128z"],"width":1152,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["keyboard","typing","type"],"defaultCode":59733,"grid":16},"attrs":[],"properties":{"ligatures":"keyboard, typing","name":"keyboard","id":85,"order":472,"prevSize":32,"code":60118},"setIdx":1,"setId":0,"iconIdx":85},{"icon":{"paths":["M0 64v640h1024v-640h-1024zM960 640h-896v-512h896v512zM672 768h-320l-32 128-64 64h512l-64-64z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["display","screen","monitor","computer","desktop","pc"],"defaultCode":59734,"grid":16},"attrs":[],"properties":{"ligatures":"display, screen","name":"display","id":86,"order":473,"prevSize":32,"code":60119},"setIdx":1,"setId":0,"iconIdx":86},{"icon":{"paths":["M896 704v-512c0-35.2-28.8-64-64-64h-640c-35.2 0-64 28.8-64 64v512h-128v192h1024v-192h-128zM640 832h-256v-64h256v64zM832 704h-640v-511.886c0.034-0.040 0.076-0.082 0.114-0.114h639.77c0.040 0.034 0.082 0.076 0.116 0.116v511.884z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["laptop","computer","pc"],"defaultCode":59735,"grid":16},"attrs":[],"properties":{"ligatures":"laptop, computer","name":"laptop","id":87,"order":474,"prevSize":32,"code":60120},"setIdx":1,"setId":0,"iconIdx":87},{"icon":{"paths":["M736 0h-448c-52.8 0-96 43.2-96 96v832c0 52.8 43.2 96 96 96h448c52.8 0 96-43.2 96-96v-832c0-52.8-43.2-96-96-96zM384 48h256v32h-256v-32zM512 960c-35.346 0-64-28.654-64-64s28.654-64 64-64 64 28.654 64 64-28.654 64-64 64zM768 768h-512v-640h512v640z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["mobile","cell-phone","handheld"],"defaultCode":59736,"grid":16},"attrs":[],"properties":{"ligatures":"mobile, cell-phone","name":"mobile","id":88,"order":475,"prevSize":32,"code":60121},"setIdx":1,"setId":0,"iconIdx":88},{"icon":{"paths":["M768 0h-576c-35.2 0-64 28.798-64 64v896c0 35.2 28.798 64 64 64h576c35.2 0 64-28.8 64-64v-896c0-35.202-28.8-64-64-64zM480 977.782c-27.492 0-49.782-22.29-49.782-49.782s22.29-49.782 49.782-49.782 49.782 22.29 49.782 49.782-22.29 49.782-49.782 49.782zM768 832h-576v-704h576v704z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["mobile","cell-phone","handheld","tablet","phablet"],"defaultCode":59737,"grid":16},"attrs":[],"properties":{"ligatures":"mobile2, cell-phone2","name":"mobile2","id":89,"order":476,"prevSize":32,"code":60122},"setIdx":1,"setId":0,"iconIdx":89},{"icon":{"paths":["M800 0h-640c-52.8 0-96 43.2-96 96v832c0 52.8 43.2 96 96 96h640c52.8 0 96-43.2 96-96v-832c0-52.8-43.2-96-96-96zM480 992c-17.672 0-32-14.326-32-32s14.328-32 32-32 32 14.326 32 32-14.328 32-32 32zM768 896h-576v-768h576v768z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["tablet","mobile"],"defaultCode":59738,"grid":16},"attrs":[],"properties":{"ligatures":"tablet, mobile3","name":"tablet","id":90,"order":477,"prevSize":32,"code":60123},"setIdx":1,"setId":0,"iconIdx":90},{"icon":{"paths":["M981.188 288.108c-88.808-12.768-183.382-22.016-282.076-27.22l164.888-164.888-64-64-224.558 224.556c-21.006-0.368-42.156-0.556-63.442-0.556v0l-256-256-64 64 194.196 194.196c-120.922 4.242-236.338 14.524-343.386 29.912-27.532 107.726-42.81 226.752-42.81 351.892s15.278 244.166 42.804 351.89c143.642 20.652 302.34 32.11 469.196 32.11s325.55-11.458 469.188-32.11c27.534-107.724 42.812-226.75 42.812-351.89s-15.278-244.166-42.812-351.892zM863.892 874.594c-107.73 13.766-226.75 21.406-351.892 21.406s-244.166-7.64-351.892-21.406c-20.648-71.816-32.108-151.166-32.108-234.594 0-83.43 11.458-162.78 32.108-234.596 107.726-13.766 226.75-21.404 351.892-21.404 125.136 0 244.162 7.638 351.886 21.404 20.656 71.816 32.114 151.166 32.114 234.596 0 83.428-11.458 162.778-32.108 234.594z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["tv","television","show"],"defaultCode":59739,"grid":16},"attrs":[],"properties":{"ligatures":"tv, television","name":"tv","id":91,"order":478,"prevSize":32,"code":60124},"setIdx":1,"setId":0,"iconIdx":91},{"icon":{"paths":["M1016.988 652.010l-256-320c-6.074-7.592-15.266-12.010-24.988-12.010h-448c-9.72 0-18.916 4.418-24.988 12.010l-256 320c-4.538 5.674-7.012 12.724-7.012 19.99v288c0 35.346 28.654 64 64 64h896c35.348 0 64-28.654 64-64v-288c0-7.266-2.472-14.316-7.012-19.99zM960 704h-224l-128 128h-192l-128-128h-224v-20.776l239.38-299.224h417.24l239.38 299.224v20.776z","M736 512h-448c-17.672 0-32-14.328-32-32s14.328-32 32-32h448c17.674 0 32 14.328 32 32s-14.326 32-32 32z","M800 640h-576c-17.672 0-32-14.326-32-32s14.328-32 32-32h576c17.674 0 32 14.326 32 32s-14.326 32-32 32z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["drawer","box","inbox","archive","category"],"defaultCode":59740,"grid":16},"attrs":[],"properties":{"ligatures":"drawer, box","name":"drawer","id":92,"order":479,"prevSize":32,"code":60125},"setIdx":1,"setId":0,"iconIdx":92},{"icon":{"paths":["M1016.988 652.010l-256-320c-6.074-7.592-15.266-12.010-24.988-12.010h-448c-9.72 0-18.916 4.418-24.988 12.010l-256 320c-4.538 5.674-7.012 12.724-7.012 19.99v288c0 35.346 28.654 64 64 64h896c35.348 0 64-28.654 64-64v-288c0-7.266-2.472-14.316-7.012-19.99zM960 704h-224l-128 128h-192l-128-128h-224v-20.776l239.38-299.224h417.24l239.38 299.224v20.776z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["drawer","box","inbox","archive","category"],"defaultCode":59741,"grid":16},"attrs":[],"properties":{"ligatures":"drawer2, box2","name":"drawer2","id":93,"order":480,"prevSize":32,"code":60126},"setIdx":1,"setId":0,"iconIdx":93},{"icon":{"paths":["M832 64h-640l-192 192v672c0 17.674 14.326 32 32 32h960c17.672 0 32-14.326 32-32v-672l-192-192zM512 832l-320-256h192v-192h256v192h192l-320 256zM154.51 192l64-64h586.978l64 64h-714.978z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["box-add","box","download","storage","inbox","archive"],"defaultCode":59742,"grid":16},"attrs":[],"properties":{"ligatures":"box-add, box3","name":"box-add","id":94,"order":481,"prevSize":32,"code":60127},"setIdx":1,"setId":0,"iconIdx":94},{"icon":{"paths":["M832 64h-640l-192 192v672c0 17.674 14.326 32 32 32h960c17.672 0 32-14.326 32-32v-672l-192-192zM640 640v192h-256v-192h-192l320-256 320 256h-192zM154.51 192l64-64h586.976l64 64h-714.976z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["box-remove","box","upload","storage","outbox","archive"],"defaultCode":59743,"grid":16},"attrs":[],"properties":{"ligatures":"box-remove, box4","name":"box-remove","id":95,"order":482,"prevSize":32,"code":60128},"setIdx":1,"setId":0,"iconIdx":95},{"icon":{"paths":["M512 576l256-256h-192v-256h-128v256h-192zM744.726 471.272l-71.74 71.742 260.080 96.986-421.066 157.018-421.066-157.018 260.080-96.986-71.742-71.742-279.272 104.728v256l512 192 512-192v-256z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["download","save","store","arrow"],"defaultCode":59744,"grid":16},"attrs":[],"properties":{"ligatures":"download, save","name":"download","id":96,"order":483,"prevSize":32,"code":60129},"setIdx":1,"setId":0,"iconIdx":96},{"icon":{"paths":["M448 576h128v-256h192l-256-256-256 256h192zM640 432v98.712l293.066 109.288-421.066 157.018-421.066-157.018 293.066-109.288v-98.712l-384 144v256l512 192 512-192v-256z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["upload","load","arrow"],"defaultCode":59745,"grid":16},"attrs":[],"properties":{"ligatures":"upload, load","name":"upload","id":97,"order":484,"prevSize":32,"code":60130},"setIdx":1,"setId":0,"iconIdx":97},{"icon":{"paths":["M896 0h-896v1024h1024v-896l-128-128zM512 128h128v256h-128v-256zM896 896h-768v-768h64v320h576v-320h74.978l53.022 53.018v714.982z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["floppy-disk","save"],"defaultCode":59746,"grid":16},"attrs":[],"properties":{"ligatures":"floppy-disk, save2","name":"floppy-disk","id":98,"order":485,"prevSize":32,"code":60131},"setIdx":1,"setId":0,"iconIdx":98},{"icon":{"paths":["M192 896h640c106.038 0 192-85.96 192-192h-1024c0 106.040 85.962 192 192 192zM832 768h64v64h-64v-64zM960 128h-896l-64 512h1024z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["drive","save","hdd","hard-disk"],"defaultCode":59747,"grid":16},"attrs":[],"properties":{"ligatures":"drive, save3","name":"drive","id":99,"order":486,"prevSize":32,"code":60132},"setIdx":1,"setId":0,"iconIdx":99},{"icon":{"paths":["M512 0c-282.77 0-512 71.634-512 160v128c0 88.366 229.23 160 512 160s512-71.634 512-160v-128c0-88.366-229.23-160-512-160z","M512 544c-282.77 0-512-71.634-512-160v192c0 88.366 229.23 160 512 160s512-71.634 512-160v-192c0 88.366-229.23 160-512 160z","M512 832c-282.77 0-512-71.634-512-160v192c0 88.366 229.23 160 512 160s512-71.634 512-160v-192c0 88.366-229.23 160-512 160z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["database","db","server","host","storage","save","datecenter"],"defaultCode":59748,"grid":16},"attrs":[],"properties":{"ligatures":"database, db","name":"database","id":100,"order":487,"prevSize":32,"code":60133},"setIdx":1,"setId":0,"iconIdx":100},{"icon":{"paths":["M512 64c-141.384 0-269.376 57.32-362.032 149.978l-149.968-149.978v384h384l-143.532-143.522c69.496-69.492 165.492-112.478 271.532-112.478 212.068 0 384 171.924 384 384 0 114.696-50.292 217.636-130.018 288l84.666 96c106.302-93.816 173.352-231.076 173.352-384 0-282.77-229.23-512-512-512z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["undo","ccw","arrow"],"defaultCode":59749,"grid":16},"attrs":[],"properties":{"ligatures":"undo, ccw","name":"undo","id":101,"order":488,"prevSize":32,"code":60134},"setIdx":1,"setId":0,"iconIdx":101},{"icon":{"paths":["M0 576c0 152.924 67.048 290.184 173.35 384l84.666-96c-79.726-70.364-130.016-173.304-130.016-288 0-212.076 171.93-384 384-384 106.042 0 202.038 42.986 271.53 112.478l-143.53 143.522h384v-384l-149.97 149.978c-92.654-92.658-220.644-149.978-362.030-149.978-282.77 0-512 229.23-512 512z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["redo","cw","arrow"],"defaultCode":59750,"grid":16},"attrs":[],"properties":{"ligatures":"redo, cw","name":"redo","id":102,"order":489,"prevSize":32,"code":60135},"setIdx":1,"setId":0,"iconIdx":102},{"icon":{"paths":["M761.862 1024c113.726-206.032 132.888-520.306-313.862-509.824v253.824l-384-384 384-384v248.372c534.962-13.942 594.57 472.214 313.862 775.628z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["undo","left","arrow-left"],"defaultCode":59751,"grid":16},"attrs":[],"properties":{"ligatures":"undo2, left","name":"undo2","id":103,"order":490,"prevSize":32,"code":60136},"setIdx":1,"setId":0,"iconIdx":103},{"icon":{"paths":["M576 248.372v-248.372l384 384-384 384v-253.824c-446.75-10.482-427.588 303.792-313.86 509.824-280.712-303.414-221.1-789.57 313.86-775.628z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["redo","right","arrow-right"],"defaultCode":59752,"grid":16},"attrs":[],"properties":{"ligatures":"redo2, right","name":"redo2","id":104,"order":491,"prevSize":32,"code":60137},"setIdx":1,"setId":0,"iconIdx":104},{"icon":{"paths":["M262.14 0c-113.728 206.032-132.89 520.304 313.86 509.824v-253.824l384 384-384 384v-248.372c-534.96 13.942-594.572-472.214-313.86-775.628z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["forward","right","arrow-right"],"defaultCode":59753,"grid":16},"attrs":[],"properties":{"ligatures":"forward, right2","name":"forward","id":105,"order":492,"prevSize":32,"code":60138},"setIdx":1,"setId":0,"iconIdx":105},{"icon":{"paths":["M448 775.628v248.372l-384-384 384-384v253.824c446.75 10.48 427.588-303.792 313.862-509.824 280.71 303.414 221.1 789.57-313.862 775.628z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["reply","left","arrow-left"],"defaultCode":59754,"grid":16},"attrs":[],"properties":{"ligatures":"reply, left2","name":"reply","id":106,"order":493,"prevSize":32,"code":60139},"setIdx":1,"setId":0,"iconIdx":106},{"icon":{"paths":["M512 64c282.77 0 512 186.25 512 416 0 229.752-229.23 416-512 416-27.156 0-53.81-1.734-79.824-5.044-109.978 109.978-241.25 129.7-368.176 132.596v-26.916c68.536-33.578 128-94.74 128-164.636 0-9.754-0.758-19.33-2.164-28.696-115.796-76.264-189.836-192.754-189.836-323.304 0-229.75 229.23-416 512-416z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["bubble","comment","chat","talk"],"defaultCode":59755,"grid":16},"attrs":[],"properties":{"ligatures":"bubble, comment","name":"bubble","id":107,"order":494,"prevSize":32,"code":60140},"setIdx":1,"setId":0,"iconIdx":107},{"icon":{"paths":["M1088 901.166c0 45.5 26.028 84.908 64 104.184v15.938c-10.626 1.454-21.472 2.224-32.5 2.224-68.008 0-129.348-28.528-172.722-74.264-26.222 6.982-54.002 10.752-82.778 10.752-159.058 0-288-114.616-288-256s128.942-256 288-256c159.058 0 288 114.616 288 256 0 55.348-19.764 106.592-53.356 148.466-6.824 14.824-10.644 31.312-10.644 48.7zM512 0c278.458 0 504.992 180.614 511.836 405.52-49.182-21.92-103.586-33.52-159.836-33.52-95.56 0-185.816 33.446-254.138 94.178-70.846 62.972-109.862 147.434-109.862 237.822 0 44.672 9.544 87.888 27.736 127.788-5.228 0.126-10.468 0.212-15.736 0.212-27.156 0-53.81-1.734-79.824-5.044-109.978 109.978-241.25 129.7-368.176 132.596v-26.916c68.536-33.578 128-94.74 128-164.636 0-9.754-0.758-19.33-2.164-28.696-115.796-76.264-189.836-192.754-189.836-323.304 0-229.75 229.23-416 512-416z"],"width":1152,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["bubbles","comments","chat","talk"],"defaultCode":59756,"grid":16},"attrs":[],"properties":{"ligatures":"bubbles, comments","name":"bubbles","id":108,"order":495,"prevSize":32,"code":60141},"setIdx":1,"setId":0,"iconIdx":108},{"icon":{"paths":["M480 0v0c265.096 0 480 173.914 480 388.448s-214.904 388.448-480 388.448c-25.458 0-50.446-1.62-74.834-4.71-103.106 102.694-222.172 121.108-341.166 123.814v-25.134c64.252-31.354 116-88.466 116-153.734 0-9.106-0.712-18.048-2.030-26.794-108.558-71.214-177.97-179.988-177.97-301.89 0-214.534 214.904-388.448 480-388.448zM996 870.686c0 55.942 36.314 104.898 92 131.772v21.542c-103.126-2.318-197.786-18.102-287.142-106.126-21.14 2.65-42.794 4.040-64.858 4.040-95.47 0-183.408-25.758-253.614-69.040 144.674-0.506 281.26-46.854 384.834-130.672 52.208-42.252 93.394-91.826 122.414-147.348 30.766-58.866 46.366-121.582 46.366-186.406 0-10.448-0.45-20.836-1.258-31.168 72.57 59.934 117.258 141.622 117.258 231.676 0 104.488-60.158 197.722-154.24 258.764-1.142 7.496-1.76 15.16-1.76 22.966z"],"width":1152,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["bubbles","comments","chat","talk"],"defaultCode":59757,"grid":16},"attrs":[],"properties":{"ligatures":"bubbles2, comments2","name":"bubbles2","id":109,"order":496,"prevSize":32,"code":60142},"setIdx":1,"setId":0,"iconIdx":109},{"icon":{"paths":["M512 192c-54.932 0-107.988 8.662-157.694 25.742-46.712 16.054-88.306 38.744-123.628 67.444-66.214 53.798-102.678 122.984-102.678 194.814 0 40.298 11.188 79.378 33.252 116.152 22.752 37.92 56.982 72.586 98.988 100.252 30.356 19.992 50.78 51.948 56.176 87.894 1.8 11.984 2.928 24.088 3.37 36.124 7.47-6.194 14.75-12.846 21.88-19.976 24.154-24.152 56.78-37.49 90.502-37.49 5.368 0 10.762 0.336 16.156 1.024 20.974 2.666 42.398 4.020 63.676 4.020 54.934 0 107.988-8.66 157.694-25.742 46.712-16.054 88.306-38.744 123.628-67.444 66.214-53.796 102.678-122.984 102.678-194.814s-36.464-141.016-102.678-194.814c-35.322-28.698-76.916-51.39-123.628-67.444-49.706-17.080-102.76-25.742-157.694-25.742zM512 64v0c282.77 0 512 186.25 512 416 0 229.752-229.23 416-512 416-27.156 0-53.81-1.734-79.824-5.044-109.978 109.978-241.25 129.7-368.176 132.596v-26.916c68.536-33.578 128-94.74 128-164.636 0-9.754-0.758-19.33-2.164-28.696-115.796-76.264-189.836-192.754-189.836-323.304 0-229.75 229.23-416 512-416z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["bubble","comment","chat","talk"],"defaultCode":59758,"grid":16},"attrs":[],"properties":{"ligatures":"bubble2, comment2","name":"bubble2","id":110,"order":497,"prevSize":32,"code":60143},"setIdx":1,"setId":0,"iconIdx":110},{"icon":{"paths":["M1088 901.166c0 45.5 26.028 84.908 64 104.184v15.938c-10.626 1.454-21.472 2.224-32.5 2.224-68.008 0-129.348-28.528-172.722-74.264-26.222 6.982-54.002 10.752-82.778 10.752-159.058 0-288-114.616-288-256s128.942-256 288-256c159.058 0 288 114.616 288 256 0 55.348-19.764 106.592-53.356 148.466-6.824 14.824-10.644 31.312-10.644 48.7zM230.678 221.186c-66.214 53.798-102.678 122.984-102.678 194.814 0 40.298 11.188 79.378 33.252 116.15 22.752 37.92 56.982 72.586 98.988 100.252 30.356 19.992 50.78 51.948 56.176 87.894 1.8 11.984 2.928 24.088 3.37 36.124 7.47-6.194 14.75-12.846 21.88-19.976 24.154-24.152 56.78-37.49 90.502-37.49 5.368 0 10.762 0.336 16.156 1.024 20.948 2.662 42.344 4.016 63.594 4.020v128c-27.128-0.002-53.754-1.738-79.742-5.042-109.978 109.978-241.25 129.7-368.176 132.596v-26.916c68.536-33.578 128-94.74 128-164.636 0-9.754-0.758-19.33-2.164-28.696-115.796-76.264-189.836-192.754-189.836-323.304 0-229.75 229.23-416 512-416 278.458 0 504.992 180.614 511.836 405.52-41.096-18.316-85.84-29.422-132.262-32.578-11.53-56.068-45.402-108.816-98.252-151.756-35.322-28.698-76.916-51.39-123.628-67.444-49.706-17.080-102.76-25.742-157.694-25.742-54.932 0-107.988 8.662-157.694 25.742-46.712 16.054-88.306 38.744-123.628 67.444z"],"width":1152,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["bubbles","comments","chat","talk"],"defaultCode":59759,"grid":16},"attrs":[],"properties":{"ligatures":"bubbles3, comments3","name":"bubbles3","id":111,"order":498,"prevSize":32,"code":60144},"setIdx":1,"setId":0,"iconIdx":111},{"icon":{"paths":["M480 128c-50.666 0-99.582 7.95-145.386 23.628-42.924 14.694-81.114 35.436-113.502 61.646-60.044 48.59-93.112 110.802-93.112 175.174 0 35.99 10.066 70.948 29.92 103.898 20.686 34.34 51.898 65.794 90.26 90.958 30.44 19.968 50.936 51.952 56.362 87.95 0.902 5.99 1.63 12.006 2.18 18.032 2.722-2.52 5.424-5.114 8.114-7.794 24.138-24.040 56.688-37.312 90.322-37.312 5.348 0 10.718 0.336 16.094 1.018 19.36 2.452 39.124 3.696 58.748 3.696 50.666 0 99.58-7.948 145.384-23.628 42.926-14.692 81.116-35.434 113.504-61.644 60.046-48.59 93.112-110.802 93.112-175.174s-33.066-126.582-93.112-175.174c-32.388-26.212-70.578-46.952-113.504-61.646-45.804-15.678-94.718-23.628-145.384-23.628zM480 0v0c265.096 0 480 173.914 480 388.448s-214.904 388.448-480 388.448c-25.458 0-50.446-1.62-74.834-4.71-103.106 102.694-222.172 121.108-341.166 123.814v-25.134c64.252-31.354 116-88.466 116-153.734 0-9.106-0.712-18.048-2.030-26.794-108.558-71.214-177.97-179.988-177.97-301.89 0-214.534 214.904-388.448 480-388.448zM996 870.686c0 55.942 36.314 104.898 92 131.772v21.542c-103.126-2.318-197.786-18.102-287.142-106.126-21.14 2.65-42.794 4.040-64.858 4.040-95.47 0-183.408-25.758-253.614-69.040 144.674-0.506 281.26-46.854 384.834-130.672 52.208-42.252 93.394-91.826 122.414-147.348 30.766-58.866 46.366-121.582 46.366-186.406 0-10.448-0.45-20.836-1.258-31.168 72.57 59.934 117.258 141.622 117.258 231.676 0 104.488-60.158 197.722-154.24 258.764-1.142 7.496-1.76 15.16-1.76 22.966z"],"width":1152,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["bubbles","comments","chat","talk"],"defaultCode":59760,"grid":16},"attrs":[],"properties":{"ligatures":"bubbles4, comments4","name":"bubbles4","id":112,"order":499,"prevSize":32,"code":60145},"setIdx":1,"setId":0,"iconIdx":112},{"icon":{"paths":["M576 706.612v-52.78c70.498-39.728 128-138.772 128-237.832 0-159.058 0-288-192-288s-192 128.942-192 288c0 99.060 57.502 198.104 128 237.832v52.78c-217.102 17.748-384 124.42-384 253.388h896c0-128.968-166.898-235.64-384-253.388z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["user","profile","avatar","person","member"],"defaultCode":59761,"grid":16},"attrs":[],"properties":{"ligatures":"user, profile2","name":"user","id":113,"order":500,"prevSize":32,"code":60146},"setIdx":1,"setId":0,"iconIdx":113},{"icon":{"paths":["M768 770.612v-52.78c70.498-39.728 128-138.772 128-237.832 0-159.058 0-288-192-288s-192 128.942-192 288c0 99.060 57.502 198.104 128 237.832v52.78c-217.102 17.748-384 124.42-384 253.388h896c0-128.968-166.898-235.64-384-253.388z","M327.196 795.328c55.31-36.15 124.080-63.636 199.788-80.414-15.054-17.784-28.708-37.622-40.492-59.020-30.414-55.234-46.492-116.058-46.492-175.894 0-86.042 0-167.31 30.6-233.762 29.706-64.504 83.128-104.496 159.222-119.488-16.914-76.48-61.94-126.75-181.822-126.75-192 0-192 128.942-192 288 0 99.060 57.502 198.104 128 237.832v52.78c-217.102 17.748-384 124.42-384 253.388h279.006c14.518-12.91 30.596-25.172 48.19-36.672z"],"width":1152,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["users","group","team","members","community","collaborate"],"defaultCode":59762,"grid":16},"attrs":[],"properties":{"ligatures":"users, group","name":"users","id":114,"order":501,"prevSize":32,"code":60147},"setIdx":1,"setId":0,"iconIdx":114},{"icon":{"paths":["M384 736c0-151.234 95.874-280.486 230.032-330.2 16.28-36.538 25.968-77.164 25.968-117.8 0-159.058 0-288-192-288s-192 128.942-192 288c0 99.060 57.502 198.104 128 237.832v52.78c-217.102 17.748-384 124.42-384 253.388h397.306c-8.664-30.53-13.306-62.732-13.306-96z","M736 448c-159.058 0-288 128.942-288 288s128.942 288 288 288c159.056 0 288-128.942 288-288s-128.942-288-288-288zM896 768h-128v128h-64v-128h-128v-64h128v-128h64v128h128v64z"],"width":1024,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["user-plus","user","user-add","profile","avatar","person","member"],"defaultCode":59763,"grid":16},"attrs":[],"properties":{"ligatures":"user-plus, user2","name":"user-plus","id":115,"order":502,"prevSize":32,"code":60148},"setIdx":1,"setId":0,"iconIdx":115},{"icon":{"paths":["M384 736c0-151.234 95.874-280.486 230.032-330.2 16.28-36.538 25.968-77.164 25.968-117.8 0-159.058 0-288-192-288s-192 128.942-192 288c0 99.060 57.502 198.104 128 237.832v52.78c-217.102 17.748-384 124.42-384 253.388h397.306c-8.664-30.53-13.306-62.732-13.306-96z","M736 448c-159.058 0-288 128.942-288 288s128.942 288 288 288c159.056 0 288-128.942 288-288s-128.942-288-288-288zM896 768h-320v-64h320v64z"],"width":1024,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["user-minus","user","user-remove","profile","avatar","person","member"],"defaultCode":59764,"grid":16},"attrs":[],"properties":{"ligatures":"user-minus, user3","name":"user-minus","id":116,"order":503,"prevSize":32,"code":60149},"setIdx":1,"setId":0,"iconIdx":116},{"icon":{"paths":["M960 608l-288 288-96-96-64 64 160 160 352-352z","M448 768h320v-115.128c-67.22-39.2-156.308-66.11-256-74.26v-52.78c70.498-39.728 128-138.772 128-237.832 0-159.058 0-288-192-288s-192 128.942-192 288c0 99.060 57.502 198.104 128 237.832v52.78c-217.102 17.748-384 124.42-384 253.388h448v-64z"],"width":1024,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["user-check","user","user-tick","profile","avatar","person","member"],"defaultCode":59765,"grid":16},"attrs":[],"properties":{"ligatures":"user-check, user4","name":"user-check","id":117,"order":504,"prevSize":32,"code":60150},"setIdx":1,"setId":0,"iconIdx":117},{"icon":{"paths":["M320 192c0-106.039 85.961-192 192-192s192 85.961 192 192c0 106.039-85.961 192-192 192s-192-85.961-192-192zM768.078 448h-35.424l-199.104 404.244 74.45-372.244-96-96-96 96 74.45 372.244-199.102-404.244h-35.424c-127.924 0-127.924 85.986-127.924 192v320h768v-320c0-106.014 0-192-127.922-192z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["user-tie","user","user-employee","profile","avatar","person","member","job","official"],"defaultCode":59766,"grid":16},"attrs":[],"properties":{"ligatures":"user-tie, user5","name":"user-tie","id":118,"order":505,"prevSize":32,"code":60151},"setIdx":1,"setId":0,"iconIdx":118},{"icon":{"paths":["M225 448c123.712 0 224 100.29 224 224 0 123.712-100.288 224-224 224s-224-100.288-224-224l-1-32c0-247.424 200.576-448 448-448v128c-85.474 0-165.834 33.286-226.274 93.726-11.634 11.636-22.252 24.016-31.83 37.020 11.438-1.8 23.16-2.746 35.104-2.746zM801 448c123.71 0 224 100.29 224 224 0 123.712-100.29 224-224 224s-224-100.288-224-224l-1-32c0-247.424 200.576-448 448-448v128c-85.474 0-165.834 33.286-226.274 93.726-11.636 11.636-22.254 24.016-31.832 37.020 11.44-1.8 23.16-2.746 35.106-2.746z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["quotes-left","ldquo"],"defaultCode":59767,"grid":16},"attrs":[],"properties":{"ligatures":"quotes-left, ldquo","name":"quotes-left","id":119,"order":506,"prevSize":32,"code":60152},"setIdx":1,"setId":0,"iconIdx":119},{"icon":{"paths":["M800 640c-123.712 0-224-100.29-224-224 0-123.712 100.288-224 224-224s224 100.288 224 224l1 32c0 247.424-200.576 448-448 448v-128c85.474 0 165.834-33.286 226.274-93.726 11.634-11.636 22.252-24.016 31.83-37.020-11.438 1.8-23.16 2.746-35.104 2.746zM224 640c-123.71 0-224-100.29-224-224 0-123.712 100.29-224 224-224s224 100.288 224 224l1 32c0 247.424-200.576 448-448 448v-128c85.474 0 165.834-33.286 226.274-93.726 11.636-11.636 22.254-24.016 31.832-37.020-11.44 1.8-23.16 2.746-35.106 2.746z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["quotes-right","rdquo"],"defaultCode":59768,"grid":16},"attrs":[],"properties":{"ligatures":"quotes-right, rdquo","name":"quotes-right","id":120,"order":507,"prevSize":32,"code":60153},"setIdx":1,"setId":0,"iconIdx":120},{"icon":{"paths":["M728.992 512c137.754-87.334 231.008-255.208 231.008-448 0-21.676-1.192-43.034-3.478-64h-889.042c-2.29 20.968-3.48 42.326-3.48 64 0 192.792 93.254 360.666 231.006 448-137.752 87.334-231.006 255.208-231.006 448 0 21.676 1.19 43.034 3.478 64h889.042c2.288-20.966 3.478-42.324 3.478-64 0.002-192.792-93.252-360.666-231.006-448zM160 960c0-186.912 80.162-345.414 224-397.708v-100.586c-143.838-52.29-224-210.792-224-397.706v0h704c0 186.914-80.162 345.416-224 397.706v100.586c143.838 52.294 224 210.796 224 397.708h-704zM619.626 669.594c-71.654-40.644-75.608-93.368-75.626-125.366v-64.228c0-31.994 3.804-84.914 75.744-125.664 38.504-22.364 71.808-56.348 97.048-98.336h-409.582c25.266 42.032 58.612 76.042 97.166 98.406 71.654 40.644 75.606 93.366 75.626 125.366v64.228c0 31.992-3.804 84.914-75.744 125.664-72.622 42.18-126.738 125.684-143.090 226.336h501.67c-16.364-100.708-70.53-184.248-143.212-226.406z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["hour-glass","loading","busy","wait"],"defaultCode":59769,"grid":16},"attrs":[],"properties":{"ligatures":"hour-glass, loading","name":"hour-glass","id":121,"order":508,"prevSize":32,"code":60154},"setIdx":1,"setId":0,"iconIdx":121},{"icon":{"paths":["M384 128c0-70.692 57.308-128 128-128s128 57.308 128 128c0 70.692-57.308 128-128 128s-128-57.308-128-128zM655.53 240.47c0-70.692 57.308-128 128-128s128 57.308 128 128c0 70.692-57.308 128-128 128s-128-57.308-128-128zM832 512c0-35.346 28.654-64 64-64s64 28.654 64 64c0 35.346-28.654 64-64 64s-64-28.654-64-64zM719.53 783.53c0-35.346 28.654-64 64-64s64 28.654 64 64c0 35.346-28.654 64-64 64s-64-28.654-64-64zM448.002 896c0 0 0 0 0 0 0-35.346 28.654-64 64-64s64 28.654 64 64c0 0 0 0 0 0 0 35.346-28.654 64-64 64s-64-28.654-64-64zM176.472 783.53c0 0 0 0 0 0 0-35.346 28.654-64 64-64s64 28.654 64 64c0 0 0 0 0 0 0 35.346-28.654 64-64 64s-64-28.654-64-64zM144.472 240.47c0 0 0 0 0 0 0-53.019 42.981-96 96-96s96 42.981 96 96c0 0 0 0 0 0 0 53.019-42.981 96-96 96s-96-42.981-96-96zM56 512c0-39.765 32.235-72 72-72s72 32.235 72 72c0 39.765-32.235 72-72 72s-72-32.235-72-72z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["spinner","loading","loading-wheel","busy","wait"],"defaultCode":59770,"grid":16},"attrs":[],"properties":{"ligatures":"spinner, loading2","name":"spinner","id":122,"order":509,"prevSize":32,"code":60155},"setIdx":1,"setId":0,"iconIdx":122},{"icon":{"paths":["M1024 512c-1.278-66.862-15.784-133.516-42.576-194.462-26.704-61-65.462-116.258-113.042-161.92-47.552-45.696-103.944-81.82-164.984-105.652-61.004-23.924-126.596-35.352-191.398-33.966-64.81 1.282-129.332 15.374-188.334 41.356-59.048 25.896-112.542 63.47-156.734 109.576-44.224 46.082-79.16 100.708-102.186 159.798-23.114 59.062-34.128 122.52-32.746 185.27 1.286 62.76 14.964 125.148 40.134 182.206 25.088 57.1 61.476 108.828 106.11 151.548 44.61 42.754 97.472 76.504 154.614 98.72 57.118 22.304 118.446 32.902 179.142 31.526 60.708-1.29 120.962-14.554 176.076-38.914 55.15-24.282 105.116-59.48 146.366-102.644 41.282-43.14 73.844-94.236 95.254-149.43 13.034-33.458 21.88-68.4 26.542-103.798 1.246 0.072 2.498 0.12 3.762 0.12 35.346 0 64-28.652 64-64 0-1.796-0.094-3.572-0.238-5.332h0.238zM922.306 681.948c-23.472 53.202-57.484 101.4-99.178 141.18-41.67 39.81-91 71.186-144.244 91.79-53.228 20.678-110.29 30.452-166.884 29.082-56.604-1.298-112.596-13.736-163.82-36.474-51.25-22.666-97.684-55.49-135.994-95.712-38.338-40.198-68.528-87.764-88.322-139.058-19.87-51.284-29.228-106.214-27.864-160.756 1.302-54.552 13.328-108.412 35.254-157.69 21.858-49.3 53.498-93.97 92.246-130.81 38.73-36.868 84.53-65.87 133.874-84.856 49.338-19.060 102.136-28.006 154.626-26.644 52.5 1.306 104.228 12.918 151.562 34.034 47.352 21.050 90.256 51.502 125.624 88.782 35.396 37.258 63.21 81.294 81.39 128.688 18.248 47.392 26.782 98.058 25.424 148.496h0.238c-0.144 1.76-0.238 3.536-0.238 5.332 0 33.012 24.992 60.174 57.086 63.624-6.224 34.822-16.53 68.818-30.78 100.992z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["spinner","loading","loading-wheel","busy","wait"],"defaultCode":59771,"grid":16},"attrs":[],"properties":{"ligatures":"spinner2, loading3","name":"spinner2","id":123,"order":510,"prevSize":32,"code":60156},"setIdx":1,"setId":0,"iconIdx":123},{"icon":{"paths":["M512 303.096c-32.964 0-59.686-26.724-59.686-59.686v-179.060c0-32.964 26.722-59.686 59.686-59.686 32.962 0 59.688 26.722 59.688 59.686v179.060c0 32.964-26.726 59.686-59.688 59.686z","M512 996.956c-20.602 0-37.304-16.702-37.304-37.304v-179.060c0-20.602 16.702-37.304 37.304-37.304 20.604 0 37.304 16.704 37.304 37.304v179.060c0 20.602-16.7 37.304-37.304 37.304z","M377.756 335.36c-19.34 0-38.146-10.034-48.512-27.988l-89.53-155.070c-15.452-26.764-6.282-60.986 20.482-76.438 26.762-15.45 60.986-6.284 76.438 20.482l89.53 155.072c15.452 26.764 6.282 60.986-20.482 76.438-8.81 5.084-18.432 7.504-27.926 7.504z","M735.856 933.256c-11.602 0-22.886-6.022-29.108-16.792l-89.53-155.070c-9.27-16.056-3.77-36.592 12.29-45.864 16.056-9.264 36.59-3.77 45.864 12.292l89.532 155.068c9.27 16.058 3.768 36.592-12.292 45.864-5.286 3.048-11.060 4.502-16.756 4.502z","M279.344 429.94c-8.86 0-17.838-2.256-26.064-7.006l-155.072-89.53c-24.978-14.422-33.538-46.362-19.116-71.342 14.42-24.978 46.364-33.538 71.342-19.116l155.070 89.53c24.98 14.422 33.538 46.362 19.116 71.34-9.668 16.756-27.226 26.124-45.276 26.124z","M899.648 765.674c-5.064 0-10.196-1.29-14.894-4.004l-155.068-89.53c-14.274-8.24-19.164-26.494-10.924-40.768 8.242-14.276 26.496-19.166 40.766-10.924l155.070 89.532c14.274 8.24 19.164 26.492 10.924 40.766-5.53 9.574-15.562 14.928-25.874 14.928z","M243.41 560.496h-179.060c-26.784 0-48.496-21.712-48.496-48.496s21.712-48.496 48.496-48.496h179.060c26.784 0 48.496 21.712 48.496 48.496s-21.712 48.496-48.496 48.496z","M959.65 541.844c-0.002 0 0 0 0 0h-179.060c-16.482-0.002-29.844-13.364-29.844-29.844s13.364-29.844 29.844-29.844c0.002 0 0 0 0 0h179.060c16.482 0 29.844 13.362 29.844 29.844 0 16.48-13.364 29.844-29.844 29.844z","M124.366 780.598c-15.472 0-30.518-8.028-38.81-22.39-12.362-21.41-5.026-48.79 16.384-61.148l155.072-89.532c21.41-12.368 48.79-5.028 61.15 16.384 12.362 21.412 5.026 48.79-16.384 61.15l-155.072 89.53c-7.050 4.070-14.748 6.006-22.34 6.006z","M744.632 407.552c-10.314 0-20.346-5.352-25.874-14.926-8.24-14.274-3.35-32.526 10.924-40.768l155.070-89.528c14.272-8.236 32.526-3.352 40.768 10.922 8.24 14.274 3.35 32.526-10.924 40.768l-155.070 89.528c-4.7 2.714-9.83 4.004-14.894 4.004z","M288.136 940.716c-6.962 0-14.016-1.774-20.48-5.504-19.626-11.332-26.35-36.428-15.020-56.054l89.53-155.070c11.33-19.628 36.426-26.352 56.054-15.022 19.626 11.332 26.35 36.43 15.020 56.054l-89.53 155.072c-7.598 13.166-21.392 20.524-35.574 20.524z","M646.266 309.242c-5.062 0-10.196-1.29-14.894-4.002-14.274-8.242-19.164-26.494-10.924-40.766l89.534-155.070c8.24-14.274 26.492-19.166 40.766-10.922 14.274 8.242 19.164 26.494 10.924 40.766l-89.532 155.070c-5.53 9.57-15.56 14.924-25.874 14.924z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["spinner","loading","loading-wheel","busy","wait"],"defaultCode":59772,"grid":16},"attrs":[],"properties":{"ligatures":"spinner3, loading4","name":"spinner3","id":124,"order":511,"prevSize":32,"code":60157},"setIdx":1,"setId":0,"iconIdx":124},{"icon":{"paths":["M192 512c0-12.18 0.704-24.196 2.030-36.022l-184.98-60.104c-5.916 31.14-9.050 63.264-9.050 96.126 0 147.23 62.166 279.922 161.654 373.324l114.284-157.296c-52.124-56.926-83.938-132.758-83.938-216.028zM832 512c0 83.268-31.812 159.102-83.938 216.028l114.284 157.296c99.488-93.402 161.654-226.094 161.654-373.324 0-32.862-3.132-64.986-9.048-96.126l-184.98 60.104c1.324 11.828 2.028 23.842 2.028 36.022zM576 198.408c91.934 18.662 169.544 76.742 214.45 155.826l184.978-60.102c-73.196-155.42-222.24-268.060-399.428-290.156v194.432zM233.55 354.232c44.906-79.084 122.516-137.164 214.45-155.826v-194.43c-177.188 22.096-326.23 134.736-399.426 290.154l184.976 60.102zM644.556 803.328c-40.39 18.408-85.272 28.672-132.556 28.672s-92.166-10.264-132.554-28.67l-114.292 157.31c73.206 40.366 157.336 63.36 246.846 63.36s173.64-22.994 246.848-63.36l-114.292-157.312z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["spinner","loading","loading-wheel","busy","wait"],"defaultCode":59773,"grid":16},"attrs":[],"properties":{"ligatures":"spinner4, loading5","name":"spinner4","id":125,"order":512,"prevSize":32,"code":60158},"setIdx":1,"setId":0,"iconIdx":125},{"icon":{"paths":["M512 0c-282.77 0-512 229.23-512 512s229.23 512 512 512 512-229.23 512-512-229.23-512-512-512zM512 256c141.384 0 256 114.616 256 256s-114.616 256-256 256-256-114.616-256-256 114.616-256 256-256zM817.47 817.47c-81.594 81.594-190.080 126.53-305.47 126.53-115.392 0-223.876-44.936-305.47-126.53s-126.53-190.078-126.53-305.47c0-115.39 44.936-223.876 126.53-305.47l67.882 67.882c0 0 0 0 0 0-131.006 131.006-131.006 344.17 0 475.176 63.462 63.462 147.838 98.412 237.588 98.412 89.748 0 174.124-34.95 237.588-98.412 131.006-131.006 131.006-344.168 0-475.176l67.882-67.882c81.594 81.594 126.53 190.080 126.53 305.47 0 115.392-44.936 223.876-126.53 305.47z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["spinner","loading","loading-wheel","busy","wait"],"defaultCode":59774,"grid":16},"attrs":[],"properties":{"ligatures":"spinner5, loading6","name":"spinner5","id":126,"order":513,"prevSize":32,"code":60159},"setIdx":1,"setId":0,"iconIdx":126},{"icon":{"paths":["M384 128c0-70.692 57.308-128 128-128s128 57.308 128 128c0 70.692-57.308 128-128 128s-128-57.308-128-128zM790.994 512c0 0 0 0 0 0 0-57.993 47.013-105.006 105.006-105.006s105.006 47.013 105.006 105.006c0 0 0 0 0 0 0 57.993-47.013 105.006-105.006 105.006s-105.006-47.013-105.006-105.006zM688.424 783.53c0-52.526 42.58-95.106 95.106-95.106s95.106 42.58 95.106 95.106c0 52.526-42.58 95.106-95.106 95.106s-95.106-42.58-95.106-95.106zM425.862 896c0-47.573 38.565-86.138 86.138-86.138s86.138 38.565 86.138 86.138c0 47.573-38.565 86.138-86.138 86.138s-86.138-38.565-86.138-86.138zM162.454 783.53c0-43.088 34.93-78.018 78.018-78.018s78.018 34.93 78.018 78.018c0 43.088-34.93 78.018-78.018 78.018s-78.018-34.93-78.018-78.018zM57.338 512c0-39.026 31.636-70.662 70.662-70.662s70.662 31.636 70.662 70.662c0 39.026-31.636 70.662-70.662 70.662s-70.662-31.636-70.662-70.662zM176.472 240.472c0 0 0 0 0 0 0-35.346 28.654-64 64-64s64 28.654 64 64c0 0 0 0 0 0 0 35.346-28.654 64-64 64s-64-28.654-64-64zM899.464 240.472c0 64.024-51.906 115.934-115.936 115.934-64.024 0-115.936-51.91-115.936-115.934 0-64.032 51.912-115.934 115.936-115.934 64.030 0 115.936 51.902 115.936 115.934z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["spinner","loading","loading-wheel","busy","wait"],"defaultCode":59775,"grid":16},"attrs":[],"properties":{"ligatures":"spinner6, loading7","name":"spinner6","id":127,"order":514,"prevSize":32,"code":60160},"setIdx":1,"setId":0,"iconIdx":127},{"icon":{"paths":["M416 928c0-53.019 42.981-96 96-96s96 42.981 96 96c0 53.019-42.981 96-96 96s-96-42.981-96-96zM0 512c0-53.019 42.981-96 96-96s96 42.981 96 96c0 53.019-42.981 96-96 96s-96-42.981-96-96zM832 512c0-53.019 42.981-96 96-96s96 42.981 96 96c0 53.019-42.981 96-96 96s-96-42.981-96-96zM121.844 217.844c0-53.019 42.981-96 96-96s96 42.981 96 96c0 53.019-42.981 96-96 96s-96-42.981-96-96zM710.156 806.156c0-53.019 42.981-96 96-96s96 42.981 96 96c0 53.019-42.981 96-96 96s-96-42.981-96-96zM121.844 806.156c0-53.019 42.981-96 96-96s96 42.981 96 96c0 53.019-42.981 96-96 96s-96-42.981-96-96zM710.156 217.844c0-53.019 42.981-96 96-96s96 42.981 96 96c0 53.019-42.981 96-96 96s-96-42.981-96-96z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["spinner","loading","loading-wheel","busy","wait"],"defaultCode":59776,"grid":16},"attrs":[],"properties":{"ligatures":"spinner7, loading8","name":"spinner7","id":128,"order":515,"prevSize":32,"code":60161},"setIdx":1,"setId":0,"iconIdx":128},{"icon":{"paths":["M512 1024c-136.76 0-265.334-53.258-362.040-149.96-96.702-96.706-149.96-225.28-149.96-362.040 0-96.838 27.182-191.134 78.606-272.692 50-79.296 120.664-143.372 204.356-185.3l43 85.832c-68.038 34.084-125.492 86.186-166.15 150.67-41.746 66.208-63.812 142.798-63.812 221.49 0 229.382 186.618 416 416 416s416-186.618 416-416c0-78.692-22.066-155.282-63.81-221.49-40.66-64.484-98.114-116.584-166.15-150.67l43-85.832c83.692 41.928 154.358 106.004 204.356 185.3 51.422 81.558 78.604 175.854 78.604 272.692 0 136.76-53.258 265.334-149.96 362.040-96.706 96.702-225.28 149.96-362.040 149.96z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["spinner","loading","loading-wheel","busy","wait"],"defaultCode":59777,"grid":16},"attrs":[],"properties":{"ligatures":"spinner8, loading9","name":"spinner8","id":129,"order":516,"prevSize":32,"code":60162},"setIdx":1,"setId":0,"iconIdx":129},{"icon":{"paths":["M512 0c-278.748 0-505.458 222.762-511.848 499.974 5.92-241.864 189.832-435.974 415.848-435.974 229.75 0 416 200.576 416 448 0 53.020 42.98 96 96 96s96-42.98 96-96c0-282.77-229.23-512-512-512zM512 1024c278.748 0 505.458-222.762 511.848-499.974-5.92 241.864-189.832 435.974-415.848 435.974-229.75 0-416-200.576-416-448 0-53.020-42.98-96-96-96s-96 42.98-96 96c0 282.77 229.23 512 512 512z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["spinner","loading","loading-wheel","busy","wait"],"defaultCode":59778,"grid":16},"attrs":[],"properties":{"ligatures":"spinner9, loading10","name":"spinner9","id":130,"order":517,"prevSize":32,"code":60163},"setIdx":1,"setId":0,"iconIdx":130},{"icon":{"paths":["M0.042 513.618l-0.022 0.004c0 0 0.012 0.090 0.028 0.222 0.11 3.878 0.55 7.676 1.322 11.352 0.204 1.746 0.428 3.66 0.674 5.774 0.222 1.886 0.46 3.914 0.718 6.078 0.374 2.566 0.77 5.292 1.19 8.176 0.856 5.746 1.8 12.124 2.908 18.958 1.348 6.446 2.804 13.414 4.364 20.864 0.71 3.718 1.776 7.504 2.786 11.406 1.024 3.89 2.078 7.894 3.16 12.004 0.566 2.042 1.040 4.132 1.708 6.208 0.656 2.074 1.32 4.176 1.988 6.3 1.348 4.234 2.726 8.566 4.136 12.988 0.352 1.106 0.708 2.21 1.064 3.324 0.408 1.102 0.814 2.208 1.226 3.316 0.826 2.218 1.658 4.458 2.502 6.714 1.696 4.496 3.422 9.078 5.18 13.742 1.968 4.566 3.97 9.214 6.004 13.934 1.018 2.348 2.044 4.714 3.078 7.098 1.048 2.376 2.27 4.704 3.408 7.074 2.322 4.714 4.678 9.496 7.062 14.332 2.47 4.786 5.208 9.512 7.846 14.328 1.336 2.398 2.68 4.808 4.028 7.23 1.368 2.41 2.902 4.75 4.356 7.14 2.95 4.738 5.93 9.524 8.934 14.348 12.64 18.894 26.676 37.566 42.21 55.278 15.712 17.578 32.726 34.25 50.692 49.602 18.18 15.136 37.264 28.902 56.726 41.114 19.604 12.036 39.644 22.312 59.376 31.144 5.004 2.040 9.964 4.062 14.878 6.066 2.462 0.972 4.868 2.032 7.336 2.918 2.47 0.868 4.93 1.734 7.376 2.594 4.898 1.684 9.678 3.468 14.484 4.992 4.832 1.43 9.604 2.844 14.312 4.242 2.356 0.672 4.66 1.426 7.004 2.012 2.346 0.574 4.676 1.14 6.986 1.704 4.606 1.118 9.142 2.214 13.604 3.296 4.5 0.868 8.926 1.722 13.27 2.558 2.166 0.41 4.31 0.82 6.434 1.222 1.062 0.2 2.118 0.398 3.166 0.598 1.060 0.148 2.118 0.292 3.166 0.442 4.192 0.582 8.292 1.152 12.3 1.71 1.998 0.274 3.972 0.546 5.922 0.816 1.946 0.286 3.904 0.378 5.814 0.57 3.822 0.336 7.544 0.664 11.164 0.98 3.616 0.304 7.104 0.688 10.526 0.738 0.23 0.008 0.452 0.016 0.682 0.026 0.614 34.812 29.008 62.846 63.968 62.846 0.542 0 1.080-0.028 1.62-0.042v0.022c0 0 0.090-0.012 0.224-0.028 3.878-0.11 7.674-0.55 11.35-1.322 1.748-0.204 3.662-0.426 5.776-0.672 1.884-0.222 3.912-0.462 6.076-0.718 2.566-0.376 5.292-0.772 8.176-1.192 5.746-0.856 12.124-1.8 18.958-2.908 6.446-1.348 13.414-2.804 20.864-4.362 3.718-0.712 7.504-1.778 11.406-2.786 3.892-1.026 7.894-2.080 12.004-3.162 2.044-0.566 4.132-1.040 6.208-1.708 2.074-0.656 4.174-1.318 6.3-1.988 4.232-1.348 8.564-2.726 12.988-4.134 1.104-0.354 2.21-0.708 3.324-1.066 1.1-0.406 2.206-0.814 3.316-1.226 2.216-0.824 4.456-1.658 6.714-2.5 4.496-1.698 9.078-3.424 13.74-5.182 4.568-1.968 9.216-3.97 13.936-6.004 2.348-1.018 4.714-2.044 7.098-3.078 2.376-1.048 4.702-2.27 7.074-3.408 4.714-2.322 9.494-4.678 14.33-7.062 4.786-2.47 9.512-5.208 14.328-7.846 2.398-1.336 4.808-2.678 7.23-4.028 2.41-1.366 4.75-2.9 7.14-4.354 4.738-2.952 9.524-5.93 14.35-8.936 18.89-12.64 37.564-26.674 55.278-42.21 17.574-15.712 34.248-32.726 49.602-50.69 15.136-18.182 28.902-37.264 41.112-56.728 12.036-19.602 22.314-39.644 31.142-59.376 2.042-5.002 4.062-9.964 6.068-14.878 0.974-2.462 2.032-4.868 2.918-7.334 0.87-2.472 1.732-4.932 2.592-7.376 1.686-4.898 3.468-9.678 4.994-14.484 1.432-4.832 2.846-9.604 4.24-14.31 0.674-2.358 1.43-4.66 2.016-7.004 0.57-2.348 1.138-4.676 1.702-6.988 1.118-4.606 2.216-9.14 3.296-13.602 0.868-4.502 1.72-8.928 2.558-13.272 0.41-2.164 0.818-4.308 1.222-6.434 0.2-1.060 0.398-2.116 0.596-3.164 0.148-1.062 0.296-2.118 0.444-3.168 0.582-4.19 1.152-8.292 1.708-12.3 0.278-1.996 0.55-3.97 0.82-5.922 0.284-1.946 0.376-3.902 0.568-5.812 0.336-3.822 0.664-7.546 0.98-11.164 0.304-3.616 0.686-7.106 0.738-10.528 0.020-0.534 0.040-1.044 0.058-1.574 35.224-0.146 63.732-28.738 63.732-63.992 0-0.542-0.028-1.080-0.042-1.62h0.022c0 0-0.012-0.090-0.028-0.224-0.11-3.878-0.55-7.674-1.322-11.35-0.204-1.748-0.428-3.662-0.674-5.776-0.222-1.886-0.46-3.914-0.718-6.076-0.374-2.566-0.77-5.294-1.19-8.176-0.856-5.746-1.8-12.124-2.908-18.958-1.348-6.444-2.804-13.414-4.364-20.862-0.71-3.72-1.776-7.506-2.786-11.408-1.024-3.892-2.078-7.894-3.16-12.002-0.566-2.044-1.040-4.134-1.708-6.208-0.656-2.076-1.32-4.174-1.988-6.3-1.348-4.234-2.726-8.566-4.136-12.99-0.352-1.102-0.708-2.21-1.064-3.324-0.408-1.1-0.814-2.206-1.226-3.316-0.826-2.216-1.658-4.454-2.502-6.714-1.696-4.498-3.422-9.080-5.18-13.74-1.968-4.57-3.97-9.216-6.004-13.936-1.020-2.348-2.044-4.714-3.078-7.098-1.048-2.376-2.27-4.702-3.408-7.076-2.322-4.714-4.678-9.494-7.062-14.33-2.47-4.786-5.208-9.512-7.846-14.328-1.336-2.398-2.68-4.808-4.028-7.23-1.368-2.41-2.902-4.75-4.356-7.14-2.95-4.74-5.93-9.524-8.934-14.35-12.64-18.892-26.676-37.564-42.21-55.278-15.712-17.576-32.726-34.25-50.692-49.602-18.18-15.136-37.264-28.902-56.726-41.112-19.604-12.036-39.644-22.314-59.376-31.142-5.004-2.040-9.964-4.062-14.878-6.068-2.462-0.974-4.868-2.032-7.336-2.918-2.47-0.87-4.93-1.734-7.376-2.592-4.898-1.684-9.678-3.468-14.484-4.994-4.832-1.432-9.604-2.846-14.312-4.242-2.356-0.672-4.66-1.428-7.004-2.014-2.346-0.572-4.676-1.138-6.986-1.702-4.606-1.118-9.142-2.216-13.604-3.298-4.5-0.868-8.926-1.72-13.27-2.558-2.166-0.412-4.31-0.82-6.434-1.222-1.062-0.2-2.118-0.398-3.166-0.596-1.060-0.148-2.118-0.296-3.166-0.442-4.192-0.584-8.292-1.154-12.3-1.71-1.998-0.276-3.972-0.55-5.922-0.82-1.946-0.284-3.904-0.376-5.814-0.57-3.822-0.336-7.544-0.664-11.164-0.98-3.616-0.304-7.104-0.686-10.526-0.738-0.852-0.032-1.674-0.062-2.512-0.092-0.65-34.78-29.028-62.778-63.966-62.778-0.542 0-1.080 0.028-1.62 0.042l-0.002-0.022c0 0-0.090 0.012-0.222 0.028-3.878 0.11-7.676 0.55-11.352 1.322-1.748 0.204-3.662 0.426-5.776 0.672-1.884 0.222-3.912 0.462-6.076 0.718-2.566 0.376-5.292 0.772-8.176 1.192-5.746 0.856-12.124 1.8-18.958 2.908-6.446 1.348-13.414 2.804-20.864 4.362-3.718 0.712-7.504 1.778-11.406 2.786-3.892 1.026-7.894 2.080-12.004 3.162-2.044 0.566-4.132 1.040-6.208 1.708-2.074 0.656-4.174 1.318-6.3 1.988-4.232 1.348-8.564 2.726-12.988 4.134-1.104 0.354-2.21 0.708-3.324 1.066-1.1 0.406-2.206 0.814-3.316 1.226-2.216 0.824-4.456 1.658-6.714 2.5-4.496 1.698-9.078 3.424-13.74 5.182-4.568 1.968-9.216 3.97-13.936 6.004-2.348 1.018-4.714 2.044-7.098 3.078-2.376 1.048-4.702 2.27-7.074 3.408-4.714 2.322-9.494 4.678-14.33 7.062-4.786 2.47-9.512 5.208-14.328 7.846-2.398 1.336-4.808 2.678-7.23 4.028-2.41 1.366-4.75 2.9-7.14 4.354-4.738 2.952-9.524 5.93-14.35 8.936-18.89 12.64-37.564 26.674-55.278 42.21-17.574 15.712-34.248 32.726-49.602 50.69-15.136 18.182-28.902 37.264-41.112 56.728-12.036 19.602-22.314 39.644-31.142 59.376-2.042 5.002-4.062 9.964-6.068 14.878-0.974 2.462-2.032 4.868-2.918 7.334-0.87 2.472-1.732 4.932-2.592 7.376-1.686 4.898-3.468 9.678-4.994 14.484-1.432 4.832-2.846 9.604-4.24 14.31-0.674 2.358-1.43 4.66-2.016 7.004-0.57 2.348-1.138 4.676-1.702 6.988-1.118 4.606-2.216 9.14-3.296 13.602-0.868 4.502-1.72 8.928-2.558 13.272-0.41 2.164-0.818 4.308-1.222 6.434-0.2 1.060-0.398 2.116-0.596 3.164-0.148 1.062-0.296 2.118-0.444 3.168-0.582 4.19-1.152 8.292-1.708 12.3-0.278 1.996-0.55 3.97-0.82 5.922-0.284 1.946-0.376 3.902-0.568 5.812-0.336 3.822-0.664 7.546-0.98 11.164-0.304 3.616-0.686 7.106-0.738 10.528-0.020 0.548-0.040 1.076-0.058 1.62-34.376 1.112-61.902 29.304-61.902 63.946 0 0.542 0.028 1.078 0.042 1.618zM73.518 448.706c0.042-0.196 0.086-0.384 0.128-0.58 0.644-3.248 1.632-6.542 2.556-9.942 0.934-3.388 1.894-6.876 2.88-10.454 0.516-1.78 0.934-3.602 1.546-5.406 0.596-1.802 1.202-3.628 1.81-5.476 1.218-3.682 2.464-7.45 3.736-11.294 0.316-0.958 0.634-1.924 0.956-2.892 0.37-0.954 0.74-1.914 1.114-2.876 0.746-1.924 1.5-3.868 2.26-5.83 1.52-3.904 3.070-7.882 4.646-11.93 1.768-3.96 3.566-7.99 5.392-12.080 0.908-2.038 1.824-4.090 2.746-6.156 0.932-2.060 2.036-4.072 3.052-6.126 2.070-4.084 4.17-8.222 6.294-12.412 2.202-4.142 4.654-8.224 6.998-12.392 1.184-2.074 2.374-4.16 3.57-6.256 1.21-2.086 2.586-4.102 3.876-6.166 2.616-4.098 5.256-8.232 7.918-12.402 11.234-16.298 23.632-32.398 37.33-47.638 13.874-15.104 28.842-29.404 44.598-42.548 15.974-12.928 32.686-24.65 49.676-35.022 17.13-10.194 34.6-18.838 51.734-26.258 4.35-1.7 8.662-3.382 12.934-5.050 2.136-0.812 4.216-1.71 6.36-2.444 2.146-0.714 4.28-1.428 6.404-2.136 4.25-1.386 8.382-2.888 12.548-4.142 4.184-1.174 8.314-2.332 12.392-3.474 2.038-0.55 4.026-1.19 6.054-1.662 2.030-0.458 4.044-0.914 6.044-1.368 3.978-0.91 7.896-1.806 11.748-2.688 3.888-0.686 7.71-1.36 11.462-2.022 1.868-0.33 3.716-0.658 5.546-0.98 0.914-0.162 1.824-0.324 2.728-0.484 0.916-0.112 1.828-0.222 2.734-0.332 3.612-0.448 7.148-0.882 10.604-1.31 1.72-0.216 3.422-0.432 5.102-0.644 1.674-0.226 3.364-0.266 5.010-0.408 3.292-0.238 6.498-0.472 9.616-0.7 3.11-0.218 6.11-0.524 9.058-0.508 5.848-0.132 11.32-0.256 16.38-0.372 4.664 0.168 8.948 0.324 12.818 0.462 1.914 0.054 3.726 0.108 5.432 0.156 2.122 0.134 4.108 0.26 5.958 0.378 2.13 0.138 4.060 0.266 5.82 0.38 3.256 0.51 6.592 0.782 9.99 0.782 0.466 0 0.93-0.026 1.396-0.036 0.132 0.008 0.224 0.014 0.224 0.014v-0.020c31.14-0.778 56.75-23.784 61.556-53.754 0.542 0.12 1.064 0.236 1.612 0.356 3.246 0.644 6.542 1.632 9.942 2.556 3.386 0.934 6.876 1.894 10.454 2.88 1.778 0.516 3.602 0.934 5.404 1.546 1.802 0.596 3.63 1.202 5.478 1.812 3.68 1.218 7.448 2.464 11.292 3.736 0.96 0.316 1.924 0.634 2.892 0.956 0.956 0.37 1.914 0.74 2.876 1.112 1.926 0.746 3.868 1.5 5.83 2.26 3.904 1.52 7.884 3.070 11.932 4.646 3.96 1.768 7.988 3.566 12.080 5.392 2.038 0.908 4.088 1.824 6.156 2.746 2.060 0.932 4.072 2.036 6.126 3.054 4.082 2.070 8.222 4.17 12.41 6.294 4.144 2.202 8.226 4.654 12.394 6.998 2.074 1.184 4.16 2.374 6.256 3.572 2.086 1.21 4.102 2.586 6.166 3.876 4.098 2.616 8.23 5.256 12.402 7.918 16.296 11.234 32.398 23.632 47.636 37.33 15.104 13.874 29.406 28.842 42.55 44.598 12.928 15.974 24.648 32.686 35.020 49.676 10.196 17.13 18.84 34.6 26.26 51.736 1.698 4.348 3.382 8.662 5.050 12.932 0.812 2.136 1.71 4.216 2.444 6.36 0.714 2.146 1.428 4.28 2.136 6.404 1.386 4.25 2.888 8.384 4.142 12.548 1.174 4.184 2.33 8.316 3.474 12.392 0.55 2.038 1.19 4.026 1.66 6.054 0.46 2.030 0.916 4.046 1.368 6.046 0.91 3.978 1.808 7.896 2.688 11.748 0.688 3.888 1.362 7.71 2.024 11.462 0.33 1.868 0.656 3.716 0.98 5.548 0.162 0.914 0.324 1.824 0.484 2.728 0.11 0.916 0.222 1.828 0.332 2.734 0.446 3.612 0.882 7.148 1.31 10.604 0.216 1.72 0.432 3.42 0.642 5.1 0.226 1.674 0.268 3.364 0.41 5.010 0.238 3.292 0.472 6.498 0.7 9.616 0.218 3.11 0.524 6.11 0.508 9.058 0.132 5.848 0.256 11.32 0.372 16.38-0.168 4.664-0.324 8.948-0.462 12.818-0.054 1.914-0.108 3.726-0.156 5.432-0.134 2.122-0.26 4.108-0.378 5.958-0.138 2.13-0.266 4.060-0.38 5.82-0.498 3.256-0.768 6.592-0.768 9.99 0 0.468 0.026 0.93 0.036 1.396-0.008 0.132-0.016 0.224-0.016 0.224h0.022c0.768 30.766 23.236 56.128 52.682 61.37-0.066 0.296-0.13 0.584-0.198 0.884-0.644 3.248-1.632 6.542-2.556 9.942-0.934 3.388-1.894 6.876-2.88 10.454-0.516 1.78-0.934 3.602-1.546 5.406-0.596 1.802-1.202 3.628-1.81 5.476-1.218 3.682-2.464 7.45-3.736 11.294-0.316 0.958-0.634 1.924-0.956 2.892-0.37 0.954-0.74 1.914-1.114 2.876-0.746 1.924-1.5 3.868-2.26 5.83-1.52 3.904-3.070 7.882-4.646 11.93-1.768 3.96-3.566 7.99-5.392 12.080-0.908 2.038-1.824 4.090-2.746 6.156-0.932 2.060-2.036 4.072-3.052 6.126-2.070 4.084-4.17 8.222-6.294 12.412-2.202 4.142-4.654 8.224-6.998 12.392-1.184 2.074-2.374 4.16-3.57 6.256-1.21 2.086-2.586 4.102-3.876 6.166-2.616 4.098-5.256 8.232-7.918 12.402-11.234 16.298-23.632 32.398-37.33 47.638-13.874 15.104-28.842 29.404-44.598 42.548-15.974 12.928-32.686 24.65-49.676 35.022-17.13 10.194-34.6 18.838-51.734 26.258-4.35 1.7-8.662 3.382-12.934 5.050-2.136 0.812-4.216 1.71-6.36 2.444-2.146 0.714-4.28 1.428-6.404 2.136-4.25 1.386-8.382 2.888-12.548 4.142-4.184 1.174-8.314 2.332-12.392 3.474-2.038 0.55-4.026 1.19-6.054 1.662-2.030 0.458-4.044 0.914-6.044 1.368-3.978 0.91-7.896 1.806-11.748 2.688-3.888 0.686-7.71 1.36-11.462 2.022-1.868 0.33-3.716 0.658-5.546 0.98-0.914 0.162-1.824 0.324-2.728 0.484-0.916 0.112-1.828 0.222-2.734 0.332-3.612 0.448-7.148 0.882-10.604 1.31-1.72 0.216-3.422 0.432-5.102 0.644-1.674 0.226-3.364 0.266-5.010 0.408-3.292 0.238-6.498 0.472-9.616 0.7-3.11 0.218-6.11 0.524-9.058 0.508-5.848 0.132-11.32 0.256-16.38 0.372-4.664-0.168-8.948-0.324-12.818-0.462-1.914-0.054-3.726-0.108-5.432-0.156-2.122-0.134-4.108-0.26-5.958-0.378-2.13-0.138-4.060-0.266-5.82-0.38-3.256-0.51-6.592-0.782-9.99-0.782-0.466 0-0.93 0.026-1.396 0.036-0.132-0.008-0.224-0.014-0.224-0.014v0.020c-31.004 0.774-56.524 23.586-61.488 53.364-3.2-0.64-6.446-1.61-9.792-2.522-3.386-0.934-6.876-1.894-10.454-2.878-1.778-0.516-3.602-0.938-5.404-1.546-1.802-0.598-3.63-1.204-5.478-1.812-3.68-1.218-7.448-2.464-11.292-3.738-0.96-0.316-1.924-0.632-2.892-0.954-0.956-0.372-1.914-0.742-2.876-1.114-1.926-0.746-3.868-1.5-5.83-2.258-3.904-1.524-7.884-3.070-11.932-4.648-3.96-1.77-7.988-3.566-12.080-5.39-2.038-0.91-4.088-1.824-6.156-2.746-2.060-0.934-4.072-2.036-6.126-3.054-4.082-2.070-8.222-4.172-12.41-6.296-4.144-2.2-8.226-4.652-12.394-6.996-2.074-1.184-4.16-2.376-6.256-3.57-2.086-1.21-4.102-2.586-6.166-3.878-4.098-2.614-8.23-5.254-12.402-7.918-16.296-11.23-32.398-23.632-47.636-37.328-15.104-13.876-29.406-28.84-42.55-44.598-12.928-15.972-24.648-32.684-35.020-49.676-10.196-17.128-18.84-34.602-26.26-51.734-1.698-4.352-3.382-8.664-5.050-12.934-0.812-2.136-1.71-4.218-2.444-6.36-0.714-2.148-1.428-4.282-2.136-6.406-1.386-4.25-2.888-8.382-4.142-12.546-1.174-4.184-2.33-8.316-3.474-12.394-0.55-2.036-1.19-4.024-1.66-6.054-0.46-2.028-0.916-4.042-1.368-6.042-0.91-3.98-1.808-7.898-2.688-11.75-0.688-3.886-1.362-7.71-2.024-11.46-0.33-1.868-0.656-3.718-0.98-5.546-0.162-0.914-0.324-1.824-0.484-2.73-0.11-0.914-0.222-1.828-0.332-2.734-0.446-3.61-0.882-7.148-1.31-10.602-0.216-1.722-0.432-3.422-0.642-5.102-0.226-1.676-0.268-3.364-0.41-5.012-0.238-3.29-0.472-6.496-0.7-9.614-0.218-3.11-0.524-6.11-0.508-9.058-0.132-5.848-0.256-11.32-0.372-16.382 0.168-4.664 0.324-8.946 0.462-12.816 0.054-1.914 0.108-3.726 0.156-5.434 0.134-2.122 0.26-4.106 0.378-5.958 0.138-2.128 0.266-4.058 0.38-5.82 0.496-3.26 0.766-6.596 0.766-9.994 0-0.466-0.026-0.93-0.036-1.396 0.008-0.132 0.016-0.224 0.016-0.224h-0.022c-0.78-31.38-24.134-57.154-54.44-61.674z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["spinner","loading","loading-wheel","busy","wait"],"defaultCode":59779,"grid":16},"attrs":[],"properties":{"ligatures":"spinner10, loading11","name":"spinner10","id":131,"order":518,"prevSize":32,"code":60164},"setIdx":1,"setId":0,"iconIdx":131},{"icon":{"paths":["M1024 384h-384l143.53-143.53c-72.53-72.526-168.96-112.47-271.53-112.47s-199 39.944-271.53 112.47c-72.526 72.53-112.47 168.96-112.47 271.53s39.944 199 112.47 271.53c72.53 72.526 168.96 112.47 271.53 112.47s199-39.944 271.528-112.472c6.056-6.054 11.86-12.292 17.456-18.668l96.32 84.282c-93.846 107.166-231.664 174.858-385.304 174.858-282.77 0-512-229.23-512-512s229.23-512 512-512c141.386 0 269.368 57.326 362.016 149.984l149.984-149.984v384z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["spinner","loading","loading-wheel","refresh","repeat","busy","wait","arrow"],"defaultCode":59780,"grid":16},"attrs":[],"properties":{"ligatures":"spinner11, loading12","name":"spinner11","id":132,"order":519,"prevSize":32,"code":60165},"setIdx":1,"setId":0,"iconIdx":132},{"icon":{"paths":["M64 0h384v64h-384zM576 0h384v64h-384zM952 320h-56v-256h-256v256h-256v-256h-256v256h-56c-39.6 0-72 32.4-72 72v560c0 39.6 32.4 72 72 72h304c39.6 0 72-32.4 72-72v-376h128v376c0 39.6 32.4 72 72 72h304c39.6 0 72-32.4 72-72v-560c0-39.6-32.4-72-72-72zM348 960h-248c-19.8 0-36-14.4-36-32s16.2-32 36-32h248c19.8 0 36 14.4 36 32s-16.2 32-36 32zM544 512h-64c-17.6 0-32-14.4-32-32s14.4-32 32-32h64c17.6 0 32 14.4 32 32s-14.4 32-32 32zM924 960h-248c-19.8 0-36-14.4-36-32s16.2-32 36-32h248c19.8 0 36 14.4 36 32s-16.2 32-36 32z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["binoculars","lookup","search","find"],"defaultCode":59781,"grid":16},"attrs":[],"properties":{"ligatures":"binoculars, lookup","name":"binoculars","id":133,"order":520,"prevSize":32,"code":60166},"setIdx":1,"setId":0,"iconIdx":133},{"icon":{"paths":["M992.262 871.396l-242.552-206.294c-25.074-22.566-51.89-32.926-73.552-31.926 57.256-67.068 91.842-154.078 91.842-249.176 0-212.078-171.922-384-384-384-212.076 0-384 171.922-384 384s171.922 384 384 384c95.098 0 182.108-34.586 249.176-91.844-1 21.662 9.36 48.478 31.926 73.552l206.294 242.552c35.322 39.246 93.022 42.554 128.22 7.356s31.892-92.898-7.354-128.22zM384 640c-141.384 0-256-114.616-256-256s114.616-256 256-256 256 114.616 256 256-114.614 256-256 256z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["search","magnifier","magnifying-glass","inspect","find"],"defaultCode":59782,"grid":16},"attrs":[],"properties":{"ligatures":"search, magnifier","name":"search","id":134,"order":521,"prevSize":32,"code":60167},"setIdx":1,"setId":0,"iconIdx":134},{"icon":{"paths":["M992.262 871.396l-242.552-206.294c-25.074-22.566-51.89-32.926-73.552-31.926 57.256-67.068 91.842-154.078 91.842-249.176 0-212.078-171.922-384-384-384-212.076 0-384 171.922-384 384s171.922 384 384 384c95.098 0 182.108-34.586 249.176-91.844-1 21.662 9.36 48.478 31.926 73.552l206.294 242.552c35.322 39.246 93.022 42.554 128.22 7.356s31.892-92.898-7.354-128.22zM384 640c-141.384 0-256-114.616-256-256s114.616-256 256-256 256 114.616 256 256-114.614 256-256 256zM448 192h-128v128h-128v128h128v128h128v-128h128v-128h-128z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["zoom-in","magnifier","magnifier-plus","enlarge"],"defaultCode":59783,"grid":16},"attrs":[],"properties":{"ligatures":"zoom-in, magnifier2","name":"zoom-in","id":135,"order":522,"prevSize":32,"code":60168},"setIdx":1,"setId":0,"iconIdx":135},{"icon":{"paths":["M992.262 871.396l-242.552-206.294c-25.074-22.566-51.89-32.926-73.552-31.926 57.256-67.068 91.842-154.078 91.842-249.176 0-212.078-171.922-384-384-384-212.076 0-384 171.922-384 384s171.922 384 384 384c95.098 0 182.108-34.586 249.176-91.844-1 21.662 9.36 48.478 31.926 73.552l206.294 242.552c35.322 39.246 93.022 42.554 128.22 7.356s31.892-92.898-7.354-128.22zM384 640c-141.384 0-256-114.616-256-256s114.616-256 256-256 256 114.616 256 256-114.614 256-256 256zM192 320h384v128h-384z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["zoom-out","magnifier","magnifier-minus","reduce"],"defaultCode":59784,"grid":16},"attrs":[],"properties":{"ligatures":"zoom-out, magnifier3","name":"zoom-out","id":136,"order":523,"prevSize":32,"code":60169},"setIdx":1,"setId":0,"iconIdx":136},{"icon":{"paths":["M1024 0h-416l160 160-192 192 96 96 192-192 160 160z","M1024 1024v-416l-160 160-192-192-96 96 192 192-160 160z","M0 1024h416l-160-160 192-192-96-96-192 192-160-160z","M0 0v416l160-160 192 192 96-96-192-192 160-160z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["enlarge","expand","maximize","fullscreen"],"defaultCode":59785,"grid":16},"attrs":[],"properties":{"ligatures":"enlarge, expand","name":"enlarge","id":137,"order":524,"prevSize":32,"code":60170},"setIdx":1,"setId":0,"iconIdx":137},{"icon":{"paths":["M576 448h416l-160-160 192-192-96-96-192 192-160-160z","M576 576v416l160-160 192 192 96-96-192-192 160-160z","M448 575.996h-416l160 160-192 192 96 96 192-192 160 160z","M448 448v-416l-160 160-192-192-96 96 192 192-160 160z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["shrink","collapse","minimize","contract"],"defaultCode":59786,"grid":16},"attrs":[],"properties":{"ligatures":"shrink, collapse","name":"shrink","id":138,"order":525,"prevSize":32,"code":60171},"setIdx":1,"setId":0,"iconIdx":138},{"icon":{"paths":["M1024 0v416l-160-160-192 192-96-96 192-192-160-160zM448 672l-192 192 160 160h-416v-416l160 160 192-192z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["enlarge","expand","maximize","fullscreen"],"defaultCode":59787,"grid":16},"attrs":[],"properties":{"ligatures":"enlarge2, expand2","name":"enlarge2","id":139,"order":526,"prevSize":32,"code":60172},"setIdx":1,"setId":0,"iconIdx":139},{"icon":{"paths":["M448 576v416l-160-160-192 192-96-96 192-192-160-160zM1024 96l-192 192 160 160h-416v-416l160 160 192-192z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["shrink","collapse","minimize","contract"],"defaultCode":59788,"grid":16},"attrs":[],"properties":{"ligatures":"shrink2, collapse2","name":"shrink2","id":140,"order":527,"prevSize":32,"code":60173},"setIdx":1,"setId":0,"iconIdx":140},{"icon":{"paths":["M704 0c-176.73 0-320 143.268-320 320 0 20.026 1.858 39.616 5.376 58.624l-389.376 389.376v192c0 35.346 28.654 64 64 64h64v-64h128v-128h128v-128h128l83.042-83.042c34.010 12.316 70.696 19.042 108.958 19.042 176.73 0 320-143.268 320-320s-143.27-320-320-320zM799.874 320.126c-53.020 0-96-42.98-96-96s42.98-96 96-96 96 42.98 96 96-42.98 96-96 96z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["key","password","login","signin"],"defaultCode":59789,"grid":16},"attrs":[],"properties":{"ligatures":"key, password","name":"key","id":141,"order":528,"prevSize":32,"code":60174},"setIdx":1,"setId":0,"iconIdx":141},{"icon":{"paths":["M1002.132 314.242l-101.106-101.104c-24.792-24.794-65.37-65.368-90.162-90.164l-101.106-101.104c-24.792-24.794-68.954-29.166-98.13-9.716l-276.438 184.292c-29.176 19.452-40.218 61.028-24.536 92.39l70.486 140.974c2.154 4.306 4.646 8.896 7.39 13.66l-356.53 356.53-32 224h192v-64h128v-128h128v-128h128v-71.186c6.396 3.812 12.534 7.216 18.192 10.044l140.97 70.488c31.366 15.682 72.94 4.638 92.39-24.538l184.294-276.44c19.454-29.172 15.078-73.33-9.714-98.126zM150.628 854.626l-45.254-45.254 311.572-311.57 45.254 45.254-311.572 311.57zM917.020 423.764l-45.256 45.256c-12.446 12.444-32.808 12.444-45.254 0l-271.53-271.53c-12.446-12.444-12.446-32.81 0-45.254l45.256-45.256c12.446-12.444 32.808-12.444 45.254 0l271.53 271.53c12.446 12.444 12.446 32.81 0 45.254z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["key","password","login","signin"],"defaultCode":59790,"grid":16},"attrs":[],"properties":{"ligatures":"key2, password2","name":"key2","id":142,"order":529,"prevSize":32,"code":60175},"setIdx":1,"setId":0,"iconIdx":142},{"icon":{"paths":["M592 448h-16v-192c0-105.87-86.13-192-192-192h-128c-105.87 0-192 86.13-192 192v192h-16c-26.4 0-48 21.6-48 48v480c0 26.4 21.6 48 48 48h544c26.4 0 48-21.6 48-48v-480c0-26.4-21.6-48-48-48zM192 256c0-35.29 28.71-64 64-64h128c35.29 0 64 28.71 64 64v192h-256v-192z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["lock","secure","private","encrypted"],"defaultCode":59791,"grid":16},"attrs":[],"properties":{"ligatures":"lock, secure","name":"lock","id":143,"order":530,"prevSize":32,"code":60176},"setIdx":1,"setId":0,"iconIdx":143},{"icon":{"paths":["M768 64c105.87 0 192 86.13 192 192v192h-128v-192c0-35.29-28.71-64-64-64h-128c-35.29 0-64 28.71-64 64v192h16c26.4 0 48 21.6 48 48v480c0 26.4-21.6 48-48 48h-544c-26.4 0-48-21.6-48-48v-480c0-26.4 21.6-48 48-48h400v-192c0-105.87 86.13-192 192-192h128z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["unlocked","lock-open"],"defaultCode":59792,"grid":16},"attrs":[],"properties":{"ligatures":"unlocked, lock-open","name":"unlocked","id":144,"order":531,"prevSize":32,"code":60177},"setIdx":1,"setId":0,"iconIdx":144},{"icon":{"paths":["M1002.934 817.876l-460.552-394.76c21.448-40.298 33.618-86.282 33.618-135.116 0-159.058-128.942-288-288-288-29.094 0-57.172 4.332-83.646 12.354l166.39 166.39c24.89 24.89 24.89 65.62 0 90.51l-101.49 101.49c-24.89 24.89-65.62 24.89-90.51 0l-166.39-166.39c-8.022 26.474-12.354 54.552-12.354 83.646 0 159.058 128.942 288 288 288 48.834 0 94.818-12.17 135.116-33.62l394.76 460.552c22.908 26.724 62.016 28.226 86.904 3.338l101.492-101.492c24.888-24.888 23.386-63.994-3.338-86.902z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["wrench","tool","fix","settings","control","options","preferences"],"defaultCode":59793,"grid":16},"attrs":[],"properties":{"ligatures":"wrench, tool","name":"wrench","id":145,"order":532,"prevSize":32,"code":60178},"setIdx":1,"setId":0,"iconIdx":145},{"icon":{"paths":["M448 128v-16c0-26.4-21.6-48-48-48h-160c-26.4 0-48 21.6-48 48v16h-192v128h192v16c0 26.4 21.6 48 48 48h160c26.4 0 48-21.6 48-48v-16h576v-128h-576zM256 256v-128h128v128h-128zM832 432c0-26.4-21.6-48-48-48h-160c-26.4 0-48 21.6-48 48v16h-576v128h576v16c0 26.4 21.6 48 48 48h160c26.4 0 48-21.6 48-48v-16h192v-128h-192v-16zM640 576v-128h128v128h-128zM448 752c0-26.4-21.6-48-48-48h-160c-26.4 0-48 21.6-48 48v16h-192v128h192v16c0 26.4 21.6 48 48 48h160c26.4 0 48-21.6 48-48v-16h576v-128h-576v-16zM256 896v-128h128v128h-128z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["equalizer","sliders","settings","preferences","dashboard","control"],"defaultCode":59794,"grid":16},"attrs":[],"properties":{"ligatures":"equalizer, sliders","name":"equalizer","id":146,"order":533,"prevSize":32,"code":60179},"setIdx":1,"setId":0,"iconIdx":146},{"icon":{"paths":["M896 448h16c26.4 0 48-21.6 48-48v-160c0-26.4-21.6-48-48-48h-16v-192h-128v192h-16c-26.4 0-48 21.6-48 48v160c0 26.4 21.6 48 48 48h16v576h128v-576zM768 256h128v128h-128v-128zM592 832c26.4 0 48-21.6 48-48v-160c0-26.4-21.6-48-48-48h-16v-576h-128v576h-16c-26.4 0-48 21.6-48 48v160c0 26.4 21.6 48 48 48h16v192h128v-192h16zM448 640h128v128h-128v-128zM272 448c26.4 0 48-21.6 48-48v-160c0-26.4-21.6-48-48-48h-16v-192h-128v192h-16c-26.4 0-48 21.6-48 48v160c0 26.4 21.6 48 48 48h16v576h128v-576h16zM128 256h128v128h-128v-128z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["equalizer","sliders","settings","preferences","dashboard","control"],"defaultCode":59795,"grid":16},"attrs":[],"properties":{"ligatures":"equalizer2, sliders2","name":"equalizer2","id":147,"order":534,"prevSize":32,"code":60180},"setIdx":1,"setId":0,"iconIdx":147},{"icon":{"paths":["M933.79 610.25c-53.726-93.054-21.416-212.304 72.152-266.488l-100.626-174.292c-28.75 16.854-62.176 26.518-97.846 26.518-107.536 0-194.708-87.746-194.708-195.99h-201.258c0.266 33.41-8.074 67.282-25.958 98.252-53.724 93.056-173.156 124.702-266.862 70.758l-100.624 174.292c28.97 16.472 54.050 40.588 71.886 71.478 53.638 92.908 21.512 211.92-71.708 266.224l100.626 174.292c28.65-16.696 61.916-26.254 97.4-26.254 107.196 0 194.144 87.192 194.7 194.958h201.254c-0.086-33.074 8.272-66.57 25.966-97.218 53.636-92.906 172.776-124.594 266.414-71.012l100.626-174.29c-28.78-16.466-53.692-40.498-71.434-71.228zM512 719.332c-114.508 0-207.336-92.824-207.336-207.334 0-114.508 92.826-207.334 207.336-207.334 114.508 0 207.332 92.826 207.332 207.334-0.002 114.51-92.824 207.334-207.332 207.334z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["cog","gear","preferences","settings","generate","control","options"],"defaultCode":59796,"grid":16},"attrs":[],"properties":{"ligatures":"cog, gear","name":"cog","id":148,"order":535,"prevSize":32,"code":60181},"setIdx":1,"setId":0,"iconIdx":148},{"icon":{"paths":["M363.722 722.052l41.298-57.816-45.254-45.256-57.818 41.296c-10.722-5.994-22.204-10.774-34.266-14.192l-11.682-70.084h-64l-11.68 70.086c-12.062 3.418-23.544 8.198-34.266 14.192l-57.818-41.298-45.256 45.256 41.298 57.816c-5.994 10.72-10.774 22.206-14.192 34.266l-70.086 11.682v64l70.086 11.682c3.418 12.060 8.198 23.544 14.192 34.266l-41.298 57.816 45.254 45.256 57.818-41.296c10.722 5.994 22.204 10.774 34.266 14.192l11.682 70.084h64l11.68-70.086c12.062-3.418 23.544-8.198 34.266-14.192l57.818 41.296 45.254-45.256-41.298-57.816c5.994-10.72 10.774-22.206 14.192-34.266l70.088-11.68v-64l-70.086-11.682c-3.418-12.060-8.198-23.544-14.192-34.266zM224 864c-35.348 0-64-28.654-64-64s28.652-64 64-64 64 28.654 64 64-28.652 64-64 64zM1024 384v-64l-67.382-12.25c-1.242-8.046-2.832-15.978-4.724-23.79l57.558-37.1-24.492-59.128-66.944 14.468c-4.214-6.91-8.726-13.62-13.492-20.13l39.006-56.342-45.256-45.254-56.342 39.006c-6.512-4.766-13.22-9.276-20.13-13.494l14.468-66.944-59.128-24.494-37.1 57.558c-7.812-1.892-15.744-3.482-23.79-4.724l-12.252-67.382h-64l-12.252 67.382c-8.046 1.242-15.976 2.832-23.79 4.724l-37.098-57.558-59.128 24.492 14.468 66.944c-6.91 4.216-13.62 8.728-20.13 13.494l-56.342-39.006-45.254 45.254 39.006 56.342c-4.766 6.51-9.278 13.22-13.494 20.13l-66.944-14.468-24.492 59.128 57.558 37.1c-1.892 7.812-3.482 15.742-4.724 23.79l-67.384 12.252v64l67.382 12.25c1.242 8.046 2.832 15.978 4.724 23.79l-57.558 37.1 24.492 59.128 66.944-14.468c4.216 6.91 8.728 13.618 13.494 20.13l-39.006 56.342 45.254 45.256 56.342-39.006c6.51 4.766 13.22 9.276 20.13 13.492l-14.468 66.944 59.128 24.492 37.102-57.558c7.81 1.892 15.742 3.482 23.788 4.724l12.252 67.384h64l12.252-67.382c8.044-1.242 15.976-2.832 23.79-4.724l37.1 57.558 59.128-24.492-14.468-66.944c6.91-4.216 13.62-8.726 20.13-13.492l56.342 39.006 45.256-45.256-39.006-56.342c4.766-6.512 9.276-13.22 13.492-20.13l66.944 14.468 24.492-59.13-57.558-37.1c1.892-7.812 3.482-15.742 4.724-23.79l67.382-12.25zM672 491.2c-76.878 0-139.2-62.322-139.2-139.2s62.32-139.2 139.2-139.2 139.2 62.322 139.2 139.2c0 76.878-62.32 139.2-139.2 139.2z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["cogs","gears","preferences","settings","generate","control","options"],"defaultCode":59797,"grid":16},"attrs":[],"properties":{"ligatures":"cogs, gears","name":"cogs","id":149,"order":536,"prevSize":32,"code":60182},"setIdx":1,"setId":0,"iconIdx":149},{"icon":{"paths":["M1009.996 828.976l-301.544-301.544c-18.668-18.668-49.214-18.668-67.882 0l-22.626 22.626-184-184 302.056-302.058h-320l-142.058 142.058-14.060-14.058h-67.882v67.882l14.058 14.058-206.058 206.060 160 160 206.058-206.058 184 184-22.626 22.626c-18.668 18.668-18.668 49.214 0 67.882l301.544 301.544c18.668 18.668 49.214 18.668 67.882 0l113.136-113.136c18.67-18.666 18.67-49.214 0.002-67.882z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["hammer","tool","fix","make","generate","work","build"],"defaultCode":59798,"grid":16},"attrs":[],"properties":{"ligatures":"hammer, tool2","name":"hammer","id":150,"order":537,"prevSize":32,"code":60183},"setIdx":1,"setId":0,"iconIdx":150},{"icon":{"paths":["M256 192l-128-128h-64v64l128 128zM320 0h64v128h-64zM576 320h128v64h-128zM640 128v-64h-64l-128 128 64 64zM0 320h128v64h-128zM320 576h64v128h-64zM64 576v64h64l128-128-64-64zM1010 882l-636.118-636.118c-18.668-18.668-49.214-18.668-67.882 0l-60.118 60.118c-18.668 18.668-18.668 49.214 0 67.882l636.118 636.118c18.668 18.668 49.214 18.668 67.882 0l60.118-60.118c18.668-18.668 18.668-49.214 0-67.882zM480 544l-192-192 64-64 192 192-64 64z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["magic-wand","wizard"],"defaultCode":59799,"grid":16},"attrs":[],"properties":{"ligatures":"magic-wand, wizard","name":"magic-wand","id":151,"order":538,"prevSize":32,"code":60184},"setIdx":1,"setId":0,"iconIdx":151},{"icon":{"paths":["M896 256h-192v-128c0-35.2-28.8-64-64-64h-256c-35.2 0-64 28.8-64 64v128h-192c-70.4 0-128 57.6-128 128v512c0 70.4 57.6 128 128 128h768c70.4 0 128-57.6 128-128v-512c0-70.4-57.6-128-128-128zM384 128h256v128h-256v-128zM768 704h-192v192h-128v-192h-192v-128h192v-192h128v192h192v128z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["aid-kit","health","medicine","medical"],"defaultCode":59800,"grid":16},"attrs":[],"properties":{"ligatures":"aid-kit, health","name":"aid-kit","id":152,"order":539,"prevSize":32,"code":60185},"setIdx":1,"setId":0,"iconIdx":152},{"icon":{"paths":["M1024 576v-64h-193.29c-5.862-72.686-31.786-139.026-71.67-192.25h161.944l70.060-280.24-62.090-15.522-57.94 231.76h-174.68c-0.892-0.694-1.796-1.374-2.698-2.056 6.71-19.502 10.362-40.422 10.362-62.194 0.002-105.76-85.958-191.498-191.998-191.498s-192 85.738-192 191.5c0 21.772 3.65 42.692 10.362 62.194-0.9 0.684-1.804 1.362-2.698 2.056h-174.68l-57.94-231.76-62.090 15.522 70.060 280.24h161.944c-39.884 53.222-65.806 119.562-71.668 192.248h-193.29v64h193.37c3.802 45.664 15.508 88.812 33.638 127.75h-123.992l-70.060 280.238 62.090 15.524 57.94-231.762h112.354c58.692 78.032 147.396 127.75 246.66 127.75s187.966-49.718 246.662-127.75h112.354l57.94 231.762 62.090-15.524-70.060-280.238h-123.992c18.13-38.938 29.836-82.086 33.636-127.75h193.37z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["bug","virus","error"],"defaultCode":59801,"grid":16},"attrs":[],"properties":{"ligatures":"bug, virus","name":"bug","id":153,"order":540,"prevSize":32,"code":60186},"setIdx":1,"setId":0,"iconIdx":153},{"icon":{"paths":["M448 576v-448c-247.424 0-448 200.576-448 448s200.576 448 448 448 448-200.576 448-448c0-72.034-17.028-140.084-47.236-200.382l-400.764 200.382zM912.764 247.618c-73.552-146.816-225.374-247.618-400.764-247.618v448l400.764-200.382z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["pie-chart","stats","statistics","graph"],"defaultCode":59802,"grid":16},"attrs":[],"properties":{"ligatures":"pie-chart, stats","name":"pie-chart","id":154,"order":541,"prevSize":32,"code":60187},"setIdx":1,"setId":0,"iconIdx":154},{"icon":{"paths":["M128 896h896v128h-1024v-1024h128zM288 832c-53.020 0-96-42.98-96-96s42.98-96 96-96c2.828 0 5.622 0.148 8.388 0.386l103.192-171.986c-9.84-15.070-15.58-33.062-15.58-52.402 0-53.020 42.98-96 96-96s96 42.98 96 96c0 19.342-5.74 37.332-15.58 52.402l103.192 171.986c2.766-0.238 5.56-0.386 8.388-0.386 2.136 0 4.248 0.094 6.35 0.23l170.356-298.122c-10.536-15.408-16.706-34.036-16.706-54.11 0-53.020 42.98-96 96-96s96 42.98 96 96c0 53.020-42.98 96-96 96-2.14 0-4.248-0.094-6.35-0.232l-170.356 298.124c10.536 15.406 16.706 34.036 16.706 54.11 0 53.020-42.98 96-96 96s-96-42.98-96-96c0-19.34 5.74-37.332 15.578-52.402l-103.19-171.984c-2.766 0.238-5.56 0.386-8.388 0.386s-5.622-0.146-8.388-0.386l-103.192 171.986c9.84 15.068 15.58 33.060 15.58 52.4 0 53.020-42.98 96-96 96z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["stats-dots","stats","plot","statistics","chart"],"defaultCode":59803,"grid":16},"attrs":[],"properties":{"ligatures":"stats-dots, stats2","name":"stats-dots","id":155,"order":542,"prevSize":32,"code":60188},"setIdx":1,"setId":0,"iconIdx":155},{"icon":{"paths":["M0 832h1024v128h-1024zM128 576h128v192h-128zM320 320h128v448h-128zM512 512h128v256h-128zM704 128h128v640h-128z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["stats-bars","stats","statistics","chart"],"defaultCode":59804,"grid":16},"attrs":[],"properties":{"ligatures":"stats-bars, stats3","name":"stats-bars","id":156,"order":543,"prevSize":32,"code":60189},"setIdx":1,"setId":0,"iconIdx":156},{"icon":{"paths":["M288 384h-192c-17.6 0-32 14.4-32 32v576c0 17.6 14.4 32 32 32h192c17.6 0 32-14.4 32-32v-576c0-17.6-14.4-32-32-32zM288 960h-192v-256h192v256zM608 256h-192c-17.6 0-32 14.4-32 32v704c0 17.6 14.4 32 32 32h192c17.6 0 32-14.4 32-32v-704c0-17.6-14.4-32-32-32zM608 960h-192v-320h192v320zM928 128h-192c-17.6 0-32 14.4-32 32v832c0 17.6 14.4 32 32 32h192c17.6 0 32-14.4 32-32v-832c0-17.6-14.4-32-32-32zM928 960h-192v-384h192v384z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["stats-bars","stats","statistics","chart"],"defaultCode":59805,"grid":16},"attrs":[],"properties":{"ligatures":"stats-bars2, stats4","name":"stats-bars2","id":157,"order":544,"prevSize":32,"code":60190},"setIdx":1,"setId":0,"iconIdx":157},{"icon":{"paths":["M832 192v-128h-640v128h-192v128c0 106.038 85.958 192 192 192 20.076 0 39.43-3.086 57.62-8.802 46.174 66.008 116.608 113.796 198.38 130.396v198.406h-64c-70.694 0-128 57.306-128 128h512c0-70.694-57.306-128-128-128h-64v-198.406c81.772-16.6 152.206-64.386 198.38-130.396 18.19 5.716 37.544 8.802 57.62 8.802 106.042 0 192-85.962 192-192v-128h-192zM192 436c-63.962 0-116-52.038-116-116v-64h116v64c0 40.186 7.43 78.632 20.954 114.068-6.802 1.246-13.798 1.932-20.954 1.932zM948 320c0 63.962-52.038 116-116 116-7.156 0-14.152-0.686-20.954-1.932 13.524-35.436 20.954-73.882 20.954-114.068v-64h116v64z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["trophy","cup","prize","award","winner","tournament"],"defaultCode":59806,"grid":16},"attrs":[],"properties":{"ligatures":"trophy, cup","name":"trophy","id":158,"order":545,"prevSize":32,"code":60191},"setIdx":1,"setId":0,"iconIdx":158},{"icon":{"paths":["M771.516 320c18.126-12.88 35.512-27.216 51.444-43.148 33.402-33.402 55.746-74.5 62.912-115.722 7.858-45.186-3.672-87.14-31.63-115.1-22.3-22.298-52.51-34.086-87.364-34.086-49.632 0-101.922 23.824-143.46 65.362-66.476 66.476-105.226 158.238-126.076 223.722-15.44-65.802-46.206-154.644-106.018-214.458-32.094-32.092-73.114-48.57-111.846-48.57-31.654 0-61.78 11.004-84.26 33.486-49.986 49.988-43.232 137.786 15.086 196.104 20.792 20.792 45.098 38.062 70.72 52.412h-217.024v256h64v448h768v-448.002h64v-256h-188.484zM674.326 128.218c27.724-27.724 62.322-44.274 92.55-44.274 10.7 0 25.708 2.254 36.45 12.998 26.030 26.028 11.412 86.308-31.28 128.998-43.946 43.946-103.060 74.168-154.432 94.060h-50.672c18.568-57.548 52.058-136.456 107.384-191.782zM233.934 160.89c-0.702-9.12-0.050-26.248 12.196-38.494 10.244-10.244 23.788-12.396 33.348-12.396v0c21.258 0 43.468 10.016 60.932 27.48 33.872 33.872 61.766 87.772 80.668 155.876 0.51 1.84 1.008 3.67 1.496 5.486-1.816-0.486-3.646-0.984-5.486-1.496-68.104-18.904-122.002-46.798-155.874-80.67-15.828-15.826-25.77-36.16-27.28-55.786zM448 960h-256v-416h256v416zM448 512h-320v-128h320v128zM832 960h-256v-416h256v416zM896 512h-320v-128h320v128z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["gift","present","box"],"defaultCode":59807,"grid":16},"attrs":[],"properties":{"ligatures":"gift, present","name":"gift","id":159,"order":546,"prevSize":32,"code":60192},"setIdx":1,"setId":0,"iconIdx":159},{"icon":{"paths":["M777.784 16.856c-5.576-10.38-16.406-16.856-28.19-16.856h-475.188c-11.784 0-22.614 6.476-28.19 16.856-35.468 66.020-54.216 143.184-54.216 223.144 0 105.412 32.372 204.828 91.154 279.938 45.428 58.046 102.48 96.54 164.846 112.172v327.89h-96c-17.672 0-32 14.326-32 32s14.328 32 32 32h320c17.674 0 32-14.326 32-32s-14.326-32-32-32h-96v-327.89c62.368-15.632 119.418-54.124 164.846-112.172 58.782-75.11 91.154-174.526 91.154-279.938 0-79.96-18.748-157.122-54.216-223.144zM294.1 64h435.8c24.974 52.902 38.1 113.338 38.1 176 0 5.364-0.108 10.696-0.296 16h-511.406c-0.19-5.304-0.296-10.636-0.296-16-0.002-62.664 13.126-123.098 38.098-176z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["glass","drink","beverage","wine"],"defaultCode":59808,"grid":16},"attrs":[],"properties":{"ligatures":"glass, drink","name":"glass","id":160,"order":547,"prevSize":32,"code":60193},"setIdx":1,"setId":0,"iconIdx":160},{"icon":{"paths":["M889.162 179.77c7.568-9.632 8.972-22.742 3.62-33.758-5.356-11.018-16.532-18.012-28.782-18.012h-704c-12.25 0-23.426 6.994-28.78 18.012-5.356 11.018-3.95 24.126 3.618 33.758l313.162 398.57v381.66h-96c-17.672 0-32 14.326-32 32s14.328 32 32 32h320c17.674 0 32-14.326 32-32s-14.326-32-32-32h-96v-381.66l313.162-398.57zM798.162 192l-100.572 128h-371.18l-100.57-128h572.322z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["glass","drink","beverage","wine"],"defaultCode":59809,"grid":16},"attrs":[],"properties":{"ligatures":"glass2, drink2","name":"glass2","id":161,"order":548,"prevSize":32,"code":60194},"setIdx":1,"setId":0,"iconIdx":161},{"icon":{"paths":["M960 320h-192v-96c0-88.366-171.922-160-384-160s-384 71.634-384 160v640c0 88.366 171.922 160 384 160s384-71.634 384-160v-96h192c35.346 0 64-28.654 64-64v-320c0-35.346-28.654-64-64-64zM176.056 258.398c-36.994-12.19-59.408-25.246-71.41-34.398 12.004-9.152 34.416-22.208 71.41-34.398 57.942-19.090 131.79-29.602 207.944-29.602s150.004 10.512 207.944 29.602c36.994 12.188 59.408 25.246 71.41 34.398-12.002 9.152-34.416 22.208-71.41 34.398-57.94 19.090-131.79 29.602-207.944 29.602s-150.002-10.512-207.944-29.602zM896 640h-128v-192h128v192z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["mug","drink","glass","beverage"],"defaultCode":59810,"grid":16},"attrs":[],"properties":{"ligatures":"mug, drink3","name":"mug","id":162,"order":549,"prevSize":32,"code":60195},"setIdx":1,"setId":0,"iconIdx":162},{"icon":{"paths":["M224 0c-106.040 0-192 100.288-192 224 0 105.924 63.022 194.666 147.706 217.998l-31.788 518.124c-2.154 35.132 24.882 63.878 60.082 63.878h32c35.2 0 62.236-28.746 60.082-63.878l-31.788-518.124c84.684-23.332 147.706-112.074 147.706-217.998 0-123.712-85.96-224-192-224zM869.334 0l-53.334 320h-40l-26.666-320h-26.668l-26.666 320h-40l-53.334-320h-26.666v416c0 17.672 14.326 32 32 32h83.338l-31.42 512.122c-2.154 35.132 24.882 63.878 60.082 63.878h32c35.2 0 62.236-28.746 60.082-63.878l-31.42-512.122h83.338c17.674 0 32-14.328 32-32v-416h-26.666z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["spoon-knife","food","restaurant"],"defaultCode":59811,"grid":16},"attrs":[],"properties":{"ligatures":"spoon-knife, food","name":"spoon-knife","id":163,"order":550,"prevSize":32,"code":60196},"setIdx":1,"setId":0,"iconIdx":163},{"icon":{"paths":["M1011.328 134.496c-110.752-83.928-281.184-134.034-455.91-134.034-216.12 0-392.226 75.456-483.16 207.020-42.708 61.79-66.33 134.958-70.208 217.474-3.454 73.474 8.884 154.726 36.684 242.146 94.874-284.384 359.82-507.102 665.266-507.102 0 0-285.826 75.232-465.524 308.192-0.112 0.138-2.494 3.090-6.614 8.698-36.080 48.278-67.538 103.162-91.078 165.328-39.87 94.83-76.784 224.948-76.784 381.782h128c0 0-19.43-122.222 14.36-262.79 55.89 7.556 105.858 11.306 150.852 11.306 117.678 0 201.37-25.46 263.388-80.124 55.568-48.978 86.198-114.786 118.624-184.456 49.524-106.408 105.654-227.010 268.654-320.152 9.33-5.332 15.362-14.992 16.056-25.716s-4.040-21.080-12.606-27.572z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["leaf","nature","plant","tea","green","vegan","vegetarian"],"defaultCode":59812,"grid":16},"attrs":[],"properties":{"ligatures":"leaf, nature","name":"leaf","id":164,"order":551,"prevSize":32,"code":60197},"setIdx":1,"setId":0,"iconIdx":164},{"icon":{"paths":["M704 64l-320 320h-192l-192 256c0 0 203.416-56.652 322.066-30.084l-322.066 414.084 421.902-328.144c58.838 134.654-37.902 328.144-37.902 328.144l256-192v-192l320-320 64-320-320 64z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["rocket","jet","speed","spaceship","fast"],"defaultCode":59813,"grid":16},"attrs":[],"properties":{"ligatures":"rocket, jet","name":"rocket","id":165,"order":552,"prevSize":32,"code":60198},"setIdx":1,"setId":0,"iconIdx":165},{"icon":{"paths":["M512 64c282.77 0 512 229.23 512 512 0 192.792-106.576 360.666-264.008 448h-495.984c-157.432-87.334-264.008-255.208-264.008-448 0-282.77 229.23-512 512-512zM801.914 865.914c77.438-77.44 120.086-180.398 120.086-289.914h-90v-64h85.038c-7.014-44.998-21.39-88.146-42.564-128h-106.474v-64h64.284c-9.438-11.762-19.552-23.096-30.37-33.914-46.222-46.22-101.54-80.038-161.914-99.798v69.712h-64v-85.040c-20.982-3.268-42.36-4.96-64-4.96s-43.018 1.69-64 4.96v85.040h-64v-69.712c-60.372 19.76-115.692 53.576-161.914 99.798-10.818 10.818-20.932 22.152-30.37 33.914h64.284v64h-106.476c-21.174 39.854-35.552 83.002-42.564 128h85.040v64h-90c0 109.516 42.648 212.474 120.086 289.914 10.71 10.71 21.924 20.728 33.56 30.086h192.354l36.572-512h54.856l36.572 512h192.354c11.636-9.358 22.852-19.378 33.56-30.086z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["meter","gauge","dashboard","speedometer","performance"],"defaultCode":59814,"grid":16},"attrs":[],"properties":{"ligatures":"meter, gauge","name":"meter","id":166,"order":553,"prevSize":32,"code":60199},"setIdx":1,"setId":0,"iconIdx":166},{"icon":{"paths":["M512 0c-282.77 0-512 229.23-512 512s229.23 512 512 512 512-229.23 512-512-229.23-512-512-512zM302.836 834.152c11.106-30.632 17.164-63.688 17.164-98.152 0-124.35-78.81-230.292-189.208-270.606 10.21-84.924 48.254-163.498 109.678-224.924 72.53-72.526 168.96-112.47 271.53-112.47s199 39.944 271.53 112.47c61.428 61.426 99.468 140 109.682 224.924-110.402 40.314-189.212 146.256-189.212 270.606 0 34.468 6.060 67.52 17.166 98.15-61.706 40.242-133.77 61.85-209.166 61.85-75.394 0-147.458-21.608-209.164-61.848zM551.754 640.996c13.878 3.494 24.246 16.080 24.246 31.004v64c0 17.6-14.4 32-32 32h-64c-17.6 0-32-14.4-32-32v-64c0-14.924 10.368-27.51 24.246-31.004l23.754-448.996h32l23.754 448.996z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["meter","gauge","dashboard","speedometer","performance"],"defaultCode":59815,"grid":16},"attrs":[],"properties":{"ligatures":"meter2, gauge2","name":"meter2","id":167,"order":554,"prevSize":32,"code":60200},"setIdx":1,"setId":0,"iconIdx":167},{"icon":{"paths":["M1010.174 915.75l-548.634-499.458 25.534-25.598c20.894-20.954 32.188-48.030 33.918-75.61 1.002-0.45 2.002-0.912 2.958-1.442l102.99-64.402c13.934-16.392 12.916-42.268-2.284-57.502l-179.12-179.608c-15.19-15.234-40.998-16.262-57.344-2.284l-64.236 103.268c-0.526 0.966-0.99 1.966-1.44 2.974-27.502 1.736-54.5 13.056-75.398 34.006l-97.428 97.702c-20.898 20.956-32.184 48.026-33.918 75.604-1.004 0.45-2.004 0.916-2.964 1.446l-102.986 64.406c-13.942 16.39-12.916 42.264 2.276 57.496l179.12 179.604c15.194 15.238 40.996 16.262 57.35 2.286l64.228-103.27c0.528-0.958 0.988-1.96 1.442-2.966 27.502-1.738 54.504-13.050 75.398-34.004l28.292-28.372 498.122 550.114c14.436 15.944 36.7 18.518 49.474 5.712l50.356-50.488c12.764-12.808 10.196-35.132-5.706-49.614z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["hammer","gavel","rules","justice","legal"],"defaultCode":59816,"grid":16},"attrs":[],"properties":{"ligatures":"hammer2, gavel","name":"hammer2","id":168,"order":555,"prevSize":32,"code":60201},"setIdx":1,"setId":0,"iconIdx":168},{"icon":{"paths":["M321.008 1024c-68.246-142.008-31.902-223.378 20.55-300.044 57.44-83.956 72.244-167.066 72.244-167.066s45.154 58.7 27.092 150.508c79.772-88.8 94.824-230.28 82.782-284.464 180.314 126.012 257.376 398.856 153.522 601.066 552.372-312.532 137.398-780.172 65.154-832.85 24.082 52.676 28.648 141.85-20 185.126-82.352-312.276-285.972-376.276-285.972-376.276 24.082 161.044-87.296 337.144-194.696 468.73-3.774-64.216-7.782-108.528-41.55-169.98-7.58 116.656-96.732 211.748-120.874 328.628-32.702 158.286 24.496 274.18 241.748 396.622z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["fire","flame","hot","popular"],"defaultCode":59817,"grid":16},"attrs":[],"properties":{"ligatures":"fire, flame","name":"fire","id":169,"order":556,"prevSize":32,"code":60202},"setIdx":1,"setId":0,"iconIdx":169},{"icon":{"paths":["M956.29 804.482l-316.29-527.024v-213.458h32c17.6 0 32-14.4 32-32s-14.4-32-32-32h-320c-17.6 0-32 14.4-32 32s14.4 32 32 32h32v213.458l-316.288 527.024c-72.442 120.734-16.512 219.518 124.288 219.518h640c140.8 0 196.73-98.784 124.29-219.518zM241.038 640l206.962-344.938v-231.062h128v231.062l206.964 344.938h-541.926z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["lab","beta","beaker","test","experiment"],"defaultCode":59818,"grid":16},"attrs":[],"properties":{"ligatures":"lab, beta","name":"lab","id":170,"order":557,"prevSize":32,"code":60203},"setIdx":1,"setId":0,"iconIdx":170},{"icon":{"paths":["M896 0h-256l64 576c0 106.040-85.96 192-192 192s-192-85.96-192-192l64-576h-256l-64 576c0 247.424 200.576 448 448 448s448-200.576 448-448l-64-576zM777.874 841.874c-71.018 71.014-165.44 110.126-265.874 110.126s-194.856-39.112-265.872-110.126c-70.116-70.118-109.13-163.048-110.11-262.054l36.092-324.82h111.114l-35.224 317.010v3.99c0 70.518 27.46 136.814 77.324 186.676 49.862 49.864 116.158 77.324 186.676 77.324s136.814-27.46 186.676-77.324c49.864-49.862 77.324-116.158 77.324-186.676v-3.988l-0.44-3.962-34.782-313.050h111.114l36.090 324.818c-0.98 99.006-39.994 191.938-110.108 262.056z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["magnet","attract"],"defaultCode":59819,"grid":16},"attrs":[],"properties":{"ligatures":"magnet, attract","name":"magnet","id":171,"order":558,"prevSize":32,"code":60204},"setIdx":1,"setId":0,"iconIdx":171},{"icon":{"paths":["M128 320v640c0 35.2 28.8 64 64 64h576c35.2 0 64-28.8 64-64v-640h-704zM320 896h-64v-448h64v448zM448 896h-64v-448h64v448zM576 896h-64v-448h64v448zM704 896h-64v-448h64v448z","M848 128h-208v-80c0-26.4-21.6-48-48-48h-224c-26.4 0-48 21.6-48 48v80h-208c-26.4 0-48 21.6-48 48v80h832v-80c0-26.4-21.6-48-48-48zM576 128h-192v-63.198h192v63.198z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["bin","trashcan","remove","delete","recycle","dispose"],"defaultCode":59820,"grid":16},"attrs":[],"properties":{"ligatures":"bin, trashcan","name":"bin","id":172,"order":559,"prevSize":32,"code":60205},"setIdx":1,"setId":0,"iconIdx":172},{"icon":{"paths":["M192 1024h640l64-704h-768zM640 128v-128h-256v128h-320v192l64-64h768l64 64v-192h-320zM576 128h-128v-64h128v64z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["bin","trashcan","remove","delete","recycle","dispose"],"defaultCode":59821,"grid":16},"attrs":[],"properties":{"ligatures":"bin2, trashcan2","name":"bin2","id":173,"order":560,"prevSize":32,"code":60206},"setIdx":1,"setId":0,"iconIdx":173},{"icon":{"paths":["M960 256h-256v-64c0-35.2-28.8-64-64-64h-256c-35.204 0-64 28.8-64 64v64h-256c-35.2 0-64 28.8-64 64v576c0 35.202 28.796 64 64 64h896c35.2 0 64-28.798 64-64v-576c0-35.2-28.8-64-64-64zM384 192.116c0.034-0.040 0.074-0.082 0.114-0.116h255.772c0.042 0.034 0.082 0.076 0.118 0.116v63.884h-256.004v-63.884zM960 512h-128v96c0 17.602-14.4 32-32 32h-64c-17.604 0-32-14.398-32-32v-96h-384v96c0 17.602-14.4 32-32 32h-64c-17.602 0-32-14.398-32-32v-96h-128v-64h896v64z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["briefcase","portfolio","suitcase","work","job","employee"],"defaultCode":59822,"grid":16},"attrs":[],"properties":{"ligatures":"briefcase, portfolio","name":"briefcase","id":174,"order":561,"prevSize":32,"code":60207},"setIdx":1,"setId":0,"iconIdx":174},{"icon":{"paths":["M768 639.968l-182.82-182.822 438.82-329.15-128.010-127.996-548.52 219.442-172.7-172.706c-49.78-49.778-119.302-61.706-154.502-26.508-35.198 35.198-23.268 104.726 26.51 154.5l172.686 172.684-219.464 548.582 127.99 128.006 329.19-438.868 182.826 182.828v255.98h127.994l63.992-191.988 191.988-63.996v-127.992l-255.98 0.004z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["airplane","travel","flight","plane","transport","fly","vacation"],"defaultCode":59823,"grid":16},"attrs":[],"properties":{"ligatures":"airplane, travel","name":"airplane","id":175,"order":562,"prevSize":32,"code":60208},"setIdx":1,"setId":0,"iconIdx":175},{"icon":{"paths":["M1024 576l-128-256h-192v-128c0-35.2-28.8-64-64-64h-576c-35.2 0-64 28.8-64 64v512l64 64h81.166c-10.898 18.832-17.166 40.678-17.166 64 0 70.692 57.308 128 128 128s128-57.308 128-128c0-23.322-6.268-45.168-17.166-64h354.334c-10.898 18.832-17.168 40.678-17.168 64 0 70.692 57.308 128 128 128s128-57.308 128-128c0-23.322-6.27-45.168-17.168-64h81.168v-192zM704 576v-192h132.668l96 192h-228.668z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["truck","transit","transport","delivery","vehicle"],"defaultCode":59824,"grid":16},"attrs":[],"properties":{"ligatures":"truck, transit","name":"truck","id":176,"order":563,"prevSize":32,"code":60209},"setIdx":1,"setId":0,"iconIdx":176},{"icon":{"paths":["M704 1024h320l-256-1024h-192l32 256h-192l32-256h-192l-256 1024h320l32-256h320l32 256zM368 640l32-256h224l32 256h-288z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["road","asphalt","travel"],"defaultCode":59825,"grid":16},"attrs":[],"properties":{"ligatures":"road, asphalt","name":"road","id":177,"order":564,"prevSize":32,"code":60210},"setIdx":1,"setId":0,"iconIdx":177},{"icon":{"paths":["M416 96c0-53.018 42.98-96 96-96s96 42.982 96 96c0 53.020-42.98 96-96 96s-96-42.98-96-96z","M640 320l329.596-142.172-23.77-59.424-401.826 137.596h-64l-401.826-137.596-23.77 59.424 329.596 142.172v256l-131.27 424.57 59.84 22.7 185.716-415.27h27.428l185.716 415.27 59.84-22.7-131.27-424.57z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["accessibility"],"defaultCode":59826,"grid":16},"attrs":[],"properties":{"ligatures":"accessibility","name":"accessibility","id":178,"order":565,"prevSize":32,"code":60211},"setIdx":1,"setId":0,"iconIdx":178},{"icon":{"paths":["M1024 448h-100.924c-27.64-178.24-168.836-319.436-347.076-347.076v-100.924h-128v100.924c-178.24 27.64-319.436 168.836-347.076 347.076h-100.924v128h100.924c27.64 178.24 168.836 319.436 347.076 347.076v100.924h128v-100.924c178.24-27.64 319.436-168.836 347.076-347.076h100.924v-128zM792.822 448h-99.762c-19.284-54.55-62.51-97.778-117.060-117.060v-99.762c107.514 24.49 192.332 109.31 216.822 216.822zM512 576c-35.346 0-64-28.654-64-64s28.654-64 64-64c35.346 0 64 28.654 64 64s-28.654 64-64 64zM448 231.178v99.762c-54.55 19.282-97.778 62.51-117.060 117.060h-99.762c24.49-107.512 109.31-192.332 216.822-216.822zM231.178 576h99.762c19.282 54.55 62.51 97.778 117.060 117.060v99.762c-107.512-24.49-192.332-109.308-216.822-216.822zM576 792.822v-99.762c54.55-19.284 97.778-62.51 117.060-117.060h99.762c-24.49 107.514-109.308 192.332-216.822 216.822z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["target","goal","location","spot"],"defaultCode":59827,"grid":16},"attrs":[],"properties":{"ligatures":"target, goal","name":"target","id":179,"order":566,"prevSize":32,"code":60212},"setIdx":1,"setId":0,"iconIdx":179},{"icon":{"paths":["M960 0l-448 128-448-128c0 0-4.5 51.698 0 128l448 140.090 448-140.090c4.498-76.302 0-128 0-128zM72.19 195.106c23.986 250.696 113.49 672.234 439.81 828.894 326.32-156.66 415.824-578.198 439.81-828.894l-439.81 165.358-439.81-165.358z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["shield","security","defense","protection","anti virus"],"defaultCode":59828,"grid":16},"attrs":[],"properties":{"ligatures":"shield, security","name":"shield","id":180,"order":567,"prevSize":32,"code":60213},"setIdx":1,"setId":0,"iconIdx":180},{"icon":{"paths":["M384 0l-384 512h384l-256 512 896-640h-512l384-384z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["power","lightning","bolt","electricity"],"defaultCode":59829,"grid":16},"attrs":[],"properties":{"ligatures":"power, lightning","name":"power","id":181,"order":568,"prevSize":32,"code":60214},"setIdx":1,"setId":0,"iconIdx":181},{"icon":{"paths":["M640 146.588v135.958c36.206 15.804 69.5 38.408 98.274 67.18 60.442 60.44 93.726 140.8 93.726 226.274s-33.286 165.834-93.726 226.274c-60.44 60.44-140.798 93.726-226.274 93.726s-165.834-33.286-226.274-93.726c-60.44-60.44-93.726-140.8-93.726-226.274s33.286-165.834 93.726-226.274c28.774-28.774 62.068-51.378 98.274-67.182v-135.956c-185.048 55.080-320 226.472-320 429.412 0 247.424 200.578 448 448 448 247.424 0 448-200.576 448-448 0-202.94-134.95-374.332-320-429.412zM448 0h128v512h-128z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["switch"],"defaultCode":59830,"grid":16},"attrs":[],"properties":{"ligatures":"switch","name":"switch","id":182,"order":569,"prevSize":32,"code":60215},"setIdx":1,"setId":0,"iconIdx":182},{"icon":{"paths":["M1024 282.5l-90.506-90.5-178.746 178.752-101.5-101.502 178.75-178.75-90.5-90.5-178.75 178.75-114.748-114.75-86.626 86.624 512.002 512 86.624-86.622-114.752-114.752 178.752-178.75z","M794.040 673.79l-443.824-443.824c-95.818 114.904-204.52 292.454-129.396 445.216l-132.248 132.248c-31.112 31.114-31.112 82.024 0 113.136l14.858 14.858c31.114 31.114 82.026 31.114 113.138 0l132.246-132.244c152.764 75.132 330.318-33.566 445.226-129.39z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["power-cord","plugin","extension"],"defaultCode":59831,"grid":16},"attrs":[],"properties":{"ligatures":"power-cord, plugin","name":"power-cord","id":183,"order":570,"prevSize":32,"code":60216},"setIdx":1,"setId":0,"iconIdx":183},{"icon":{"paths":["M928 128h-288c0-70.692-57.306-128-128-128-70.692 0-128 57.308-128 128h-288c-17.672 0-32 14.328-32 32v832c0 17.674 14.328 32 32 32h832c17.674 0 32-14.326 32-32v-832c0-17.672-14.326-32-32-32zM512 64c35.346 0 64 28.654 64 64s-28.654 64-64 64c-35.346 0-64-28.654-64-64s28.654-64 64-64zM896 960h-768v-768h128v96c0 17.672 14.328 32 32 32h448c17.674 0 32-14.328 32-32v-96h128v768z","M448 858.51l-205.254-237.254 58.508-58.51 146.746 114.744 274.742-242.744 58.514 58.508z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["clipboard","board","signup","register","agreement"],"defaultCode":59832,"grid":16},"attrs":[],"properties":{"ligatures":"clipboard, board","name":"clipboard","id":184,"order":571,"prevSize":32,"code":60217},"setIdx":1,"setId":0,"iconIdx":184},{"icon":{"paths":["M384 832h640v128h-640zM384 448h640v128h-640zM384 64h640v128h-640zM192 0v256h-64v-192h-64v-64zM128 526v50h128v64h-192v-146l128-60v-50h-128v-64h192v146zM256 704v320h-192v-64h128v-64h-128v-64h128v-64h-128v-64z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["list-numbered","options"],"defaultCode":59833,"grid":16},"attrs":[],"properties":{"ligatures":"list-numbered, options","name":"list-numbered","id":185,"order":572,"prevSize":32,"code":60218},"setIdx":1,"setId":0,"iconIdx":185},{"icon":{"paths":["M0 0h256v256h-256zM384 64h640v128h-640zM0 384h256v256h-256zM384 448h640v128h-640zM0 768h256v256h-256zM384 832h640v128h-640z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["list","todo","bullet","menu","options"],"defaultCode":59834,"grid":16},"attrs":[],"properties":{"ligatures":"list, todo","name":"list","id":186,"order":573,"prevSize":32,"code":60219},"setIdx":1,"setId":0,"iconIdx":186},{"icon":{"paths":["M384 64h640v128h-640v-128zM384 448h640v128h-640v-128zM384 832h640v128h-640v-128zM0 128c0-70.692 57.308-128 128-128s128 57.308 128 128c0 70.692-57.308 128-128 128s-128-57.308-128-128zM0 512c0-70.692 57.308-128 128-128s128 57.308 128 128c0 70.692-57.308 128-128 128s-128-57.308-128-128zM0 896c0-70.692 57.308-128 128-128s128 57.308 128 128c0 70.692-57.308 128-128 128s-128-57.308-128-128z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["list","todo","bullet","menu","options"],"defaultCode":59835,"grid":16},"attrs":[],"properties":{"ligatures":"list2, todo2","name":"list2","id":187,"order":574,"prevSize":32,"code":60220},"setIdx":1,"setId":0,"iconIdx":187},{"icon":{"paths":["M976 768h-16v-208c0-61.756-50.242-112-112-112h-272v-128h16c26.4 0 48-21.6 48-48v-160c0-26.4-21.6-48-48-48h-160c-26.4 0-48 21.6-48 48v160c0 26.4 21.6 48 48 48h16v128h-272c-61.756 0-112 50.244-112 112v208h-16c-26.4 0-48 21.6-48 48v160c0 26.4 21.6 48 48 48h160c26.4 0 48-21.6 48-48v-160c0-26.4-21.6-48-48-48h-16v-192h256v192h-16c-26.4 0-48 21.6-48 48v160c0 26.4 21.6 48 48 48h160c26.4 0 48-21.6 48-48v-160c0-26.4-21.6-48-48-48h-16v-192h256v192h-16c-26.4 0-48 21.6-48 48v160c0 26.4 21.6 48 48 48h160c26.4 0 48-21.6 48-48v-160c0-26.4-21.6-48-48-48zM192 960h-128v-128h128v128zM576 960h-128v-128h128v128zM448 256v-128h128v128h-128zM960 960h-128v-128h128v128z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["tree","branches","inheritance"],"defaultCode":59836,"grid":16},"attrs":[],"properties":{"ligatures":"tree, branches","name":"tree","id":188,"order":575,"prevSize":32,"code":60221},"setIdx":1,"setId":0,"iconIdx":188},{"icon":{"paths":["M64 192h896v192h-896zM64 448h896v192h-896zM64 704h896v192h-896z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["menu","list","options","lines","hamburger"],"defaultCode":59837,"grid":16},"attrs":[],"properties":{"ligatures":"menu, list3","name":"menu","id":189,"order":576,"prevSize":32,"code":60222},"setIdx":1,"setId":0,"iconIdx":189},{"icon":{"paths":["M0 192h896v192h-896v-192zM0 448h896v192h-896v-192zM0 704h896v192h-896v-192z","M992 576l192 192 192-192z","M1376 512l-192-192-192 192z"],"width":1408,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["menu","options","hamburger"],"defaultCode":59838,"grid":16},"attrs":[],"properties":{"ligatures":"menu2, options2","name":"menu2","id":190,"order":577,"prevSize":32,"code":60223},"setIdx":1,"setId":0,"iconIdx":190},{"icon":{"paths":["M0 192h896v192h-896v-192zM0 448h896v192h-896v-192zM0 704h896v192h-896v-192z","M992 448l192 192 192-192z"],"width":1408,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["menu","options","hamburger"],"defaultCode":59839,"grid":16},"attrs":[],"properties":{"ligatures":"menu3, options3","name":"menu3","id":191,"order":578,"prevSize":32,"code":60224},"setIdx":1,"setId":0,"iconIdx":191},{"icon":{"paths":["M0 192h896v192h-896v-192zM0 448h896v192h-896v-192zM0 704h896v192h-896v-192z","M992 640l192-192 192 192z"],"width":1408,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["menu","options","hamburger"],"defaultCode":59840,"grid":16},"attrs":[],"properties":{"ligatures":"menu4, options4","name":"menu4","id":192,"order":579,"prevSize":32,"code":60225},"setIdx":1,"setId":0,"iconIdx":192},{"icon":{"paths":["M1024 657.542c0-82.090-56.678-150.9-132.996-169.48-3.242-128.7-108.458-232.062-237.862-232.062-75.792 0-143.266 35.494-186.854 90.732-24.442-31.598-62.69-51.96-105.708-51.96-73.81 0-133.642 59.874-133.642 133.722 0 6.436 0.48 12.76 1.364 18.954-11.222-2.024-22.766-3.138-34.57-3.138-106.998-0.002-193.732 86.786-193.732 193.842 0 107.062 86.734 193.848 193.73 193.848l656.262-0.012c96.138-0.184 174.008-78.212 174.008-174.446z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["cloud","weather"],"defaultCode":59841,"grid":16},"attrs":[],"properties":{"ligatures":"cloud, weather","name":"cloud","id":193,"order":580,"prevSize":32,"code":60226},"setIdx":1,"setId":0,"iconIdx":193},{"icon":{"paths":["M891.004 360.060c-3.242-128.698-108.458-232.060-237.862-232.060-75.792 0-143.266 35.494-186.854 90.732-24.442-31.598-62.69-51.96-105.708-51.96-73.81 0-133.642 59.876-133.642 133.722 0 6.436 0.48 12.76 1.364 18.954-11.222-2.024-22.766-3.138-34.57-3.138-106.998-0.002-193.732 86.786-193.732 193.842 0 107.062 86.734 193.848 193.73 193.848h91.76l226.51 234.51 226.51-234.51 111.482-0.012c96.138-0.184 174.008-78.21 174.008-174.446 0-82.090-56.678-150.9-132.996-169.482zM512 832l-192-192h128v-192h128v192h128l-192 192z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["cloud-download","cloud","save","download"],"defaultCode":59842,"grid":16},"attrs":[],"properties":{"ligatures":"cloud-download, cloud2","name":"cloud-download","id":194,"order":581,"prevSize":32,"code":60227},"setIdx":1,"setId":0,"iconIdx":194},{"icon":{"paths":["M892.268 386.49c2.444-11.11 3.732-22.648 3.732-34.49 0-88.366-71.634-160-160-160-14.222 0-28.014 1.868-41.132 5.352-24.798-77.352-97.29-133.352-182.868-133.352-87.348 0-161.054 58.336-184.326 138.17-22.742-6.622-46.792-10.17-71.674-10.17-141.384 0-256 114.616-256 256 0 141.388 114.616 256 256 256h128v192h256v-192h224c88.366 0 160-71.632 160-160 0-78.72-56.854-144.162-131.732-157.51zM576 640v192h-128v-192h-160l224-224 224 224h-160z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["cloud-upload","cloud","load","upload"],"defaultCode":59843,"grid":16},"attrs":[],"properties":{"ligatures":"cloud-upload, cloud3","name":"cloud-upload","id":195,"order":582,"prevSize":32,"code":60228},"setIdx":1,"setId":0,"iconIdx":195},{"icon":{"paths":["M892.268 514.49c2.442-11.108 3.732-22.646 3.732-34.49 0-88.366-71.634-160-160-160-14.224 0-28.014 1.868-41.134 5.352-24.796-77.352-97.288-133.352-182.866-133.352-87.348 0-161.054 58.336-184.326 138.17-22.742-6.62-46.792-10.17-71.674-10.17-141.384 0-256 114.616-256 256 0 141.382 114.616 256 256 256h608c88.366 0 160-71.632 160-160 0-78.718-56.854-144.16-131.732-157.51zM416 768l-160-160 64-64 96 96 224-224 64 64-288 288z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["cloud-check","cloud","synced"],"defaultCode":59844,"grid":16},"attrs":[],"properties":{"ligatures":"cloud-check, cloud4","name":"cloud-check","id":196,"order":583,"prevSize":32,"code":60229},"setIdx":1,"setId":0,"iconIdx":196},{"icon":{"paths":["M896 512h-160l-224 224-224-224h-160l-128 256v64h1024v-64l-128-256zM0 896h1024v64h-1024v-64zM576 320v-256h-128v256h-224l288 288 288-288h-224z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["download","save","store"],"defaultCode":59845,"grid":16},"attrs":[],"properties":{"ligatures":"download2, save4","name":"download2","id":197,"order":584,"prevSize":32,"code":60230},"setIdx":1,"setId":0,"iconIdx":197},{"icon":{"paths":["M0 896h1024v64h-1024zM1024 768v64h-1024v-64l128-256h256v128h256v-128h256zM224 320l288-288 288 288h-224v256h-128v-256z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["upload","load","open"],"defaultCode":59846,"grid":16},"attrs":[],"properties":{"ligatures":"upload2, load2","name":"upload2","id":198,"order":585,"prevSize":32,"code":60231},"setIdx":1,"setId":0,"iconIdx":198},{"icon":{"paths":["M736 448l-256 256-256-256h160v-384h192v384zM480 704h-480v256h960v-256h-480zM896 832h-128v-64h128v64z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["download","save","store"],"defaultCode":59847,"grid":16},"attrs":[],"properties":{"ligatures":"download3, save5","name":"download3","id":199,"order":586,"prevSize":32,"code":60232},"setIdx":1,"setId":0,"iconIdx":199},{"icon":{"paths":["M480 704h-480v256h960v-256h-480zM896 832h-128v-64h128v64zM224 320l256-256 256 256h-160v320h-192v-320z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["upload","load","open"],"defaultCode":59848,"grid":16},"attrs":[],"properties":{"ligatures":"upload3, load3","name":"upload3","id":200,"order":587,"prevSize":32,"code":60233},"setIdx":1,"setId":0,"iconIdx":200},{"icon":{"paths":["M480 64c-265.096 0-480 214.904-480 480 0 265.098 214.904 480 480 480 265.098 0 480-214.902 480-480 0-265.096-214.902-480-480-480zM751.59 704c8.58-40.454 13.996-83.392 15.758-128h127.446c-3.336 44.196-13.624 87.114-30.68 128h-112.524zM208.41 384c-8.58 40.454-13.996 83.392-15.758 128h-127.444c3.336-44.194 13.622-87.114 30.678-128h112.524zM686.036 384c9.614 40.962 15.398 83.854 17.28 128h-191.316v-128h174.036zM512 320v-187.338c14.59 4.246 29.044 11.37 43.228 21.37 26.582 18.74 52.012 47.608 73.54 83.486 14.882 24.802 27.752 52.416 38.496 82.484h-155.264zM331.232 237.516c21.528-35.878 46.956-64.748 73.54-83.486 14.182-10 28.638-17.124 43.228-21.37v187.34h-155.264c10.746-30.066 23.616-57.68 38.496-82.484zM448 384v128h-191.314c1.88-44.146 7.666-87.038 17.278-128h174.036zM95.888 704c-17.056-40.886-27.342-83.804-30.678-128h127.444c1.762 44.608 7.178 87.546 15.758 128h-112.524zM256.686 576h191.314v128h-174.036c-9.612-40.96-15.398-83.854-17.278-128zM448 768v187.34c-14.588-4.246-29.044-11.372-43.228-21.37-26.584-18.74-52.014-47.61-73.54-83.486-14.882-24.804-27.75-52.418-38.498-82.484h155.266zM628.768 850.484c-21.528 35.876-46.958 64.746-73.54 83.486-14.184 9.998-28.638 17.124-43.228 21.37v-187.34h155.266c-10.746 30.066-23.616 57.68-38.498 82.484zM512 704v-128h191.314c-1.88 44.146-7.666 87.040-17.28 128h-174.034zM767.348 512c-1.762-44.608-7.178-87.546-15.758-128h112.524c17.056 40.886 27.344 83.806 30.68 128h-127.446zM830.658 320h-95.9c-18.638-58.762-44.376-110.294-75.316-151.428 42.536 20.34 81.058 47.616 114.714 81.272 21.48 21.478 40.362 44.938 56.502 70.156zM185.844 249.844c33.658-33.658 72.18-60.932 114.714-81.272-30.942 41.134-56.676 92.666-75.316 151.428h-95.898c16.138-25.218 35.022-48.678 56.5-70.156zM129.344 768h95.898c18.64 58.762 44.376 110.294 75.318 151.43-42.536-20.34-81.058-47.616-114.714-81.274-21.48-21.478-40.364-44.938-56.502-70.156zM774.156 838.156c-33.656 33.658-72.18 60.934-114.714 81.274 30.942-41.134 56.678-92.668 75.316-151.43h95.9c-16.14 25.218-35.022 48.678-56.502 70.156z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["sphere","globe","internet"],"defaultCode":59849,"grid":16},"attrs":[],"properties":{"ligatures":"sphere, globe","name":"sphere","id":201,"order":588,"prevSize":32,"code":60234},"setIdx":1,"setId":0,"iconIdx":201},{"icon":{"paths":["M512 0c-282.77 0-512 229.23-512 512s229.23 512 512 512 512-229.23 512-512-229.23-512-512-512zM512 960.002c-62.958 0-122.872-13.012-177.23-36.452l233.148-262.29c5.206-5.858 8.082-13.422 8.082-21.26v-96c0-17.674-14.326-32-32-32-112.99 0-232.204-117.462-233.374-118.626-6-6.002-14.14-9.374-22.626-9.374h-128c-17.672 0-32 14.328-32 32v192c0 12.122 6.848 23.202 17.69 28.622l110.31 55.156v187.886c-116.052-80.956-192-215.432-192-367.664 0-68.714 15.49-133.806 43.138-192h116.862c8.488 0 16.626-3.372 22.628-9.372l128-128c6-6.002 9.372-14.14 9.372-22.628v-77.412c40.562-12.074 83.518-18.588 128-18.588 70.406 0 137.004 16.26 196.282 45.2-4.144 3.502-8.176 7.164-12.046 11.036-36.266 36.264-56.236 84.478-56.236 135.764s19.97 99.5 56.236 135.764c36.434 36.432 85.218 56.264 135.634 56.26 3.166 0 6.342-0.080 9.518-0.236 13.814 51.802 38.752 186.656-8.404 372.334-0.444 1.744-0.696 3.488-0.842 5.224-81.324 83.080-194.7 134.656-320.142 134.656z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["earth","globe","language","web","internet","sphere","planet"],"defaultCode":59850,"grid":16},"attrs":[],"properties":{"ligatures":"earth, globe2","name":"earth","id":202,"order":589,"prevSize":32,"code":60235},"setIdx":1,"setId":0,"iconIdx":202},{"icon":{"paths":["M440.236 635.766c-13.31 0-26.616-5.076-36.77-15.23-95.134-95.136-95.134-249.934 0-345.070l192-192c46.088-46.086 107.36-71.466 172.534-71.466s126.448 25.38 172.536 71.464c95.132 95.136 95.132 249.934 0 345.070l-87.766 87.766c-20.308 20.308-53.23 20.308-73.54 0-20.306-20.306-20.306-53.232 0-73.54l87.766-87.766c54.584-54.586 54.584-143.404 0-197.99-26.442-26.442-61.6-41.004-98.996-41.004s-72.552 14.562-98.996 41.006l-192 191.998c-54.586 54.586-54.586 143.406 0 197.992 20.308 20.306 20.306 53.232 0 73.54-10.15 10.152-23.462 15.23-36.768 15.23z","M256 1012c-65.176 0-126.45-25.38-172.534-71.464-95.134-95.136-95.134-249.934 0-345.070l87.764-87.764c20.308-20.306 53.234-20.306 73.54 0 20.308 20.306 20.308 53.232 0 73.54l-87.764 87.764c-54.586 54.586-54.586 143.406 0 197.992 26.44 26.44 61.598 41.002 98.994 41.002s72.552-14.562 98.998-41.006l192-191.998c54.584-54.586 54.584-143.406 0-197.992-20.308-20.308-20.306-53.232 0-73.54 20.306-20.306 53.232-20.306 73.54 0.002 95.132 95.134 95.132 249.932 0.002 345.068l-192.002 192c-46.090 46.088-107.364 71.466-172.538 71.466z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["link","chain","url","uri","anchor"],"defaultCode":59851,"grid":16},"attrs":[],"properties":{"ligatures":"link, chain","name":"link","id":203,"order":590,"prevSize":32,"code":60236},"setIdx":1,"setId":0,"iconIdx":203},{"icon":{"paths":["M0 0h128v1024h-128v-1024z","M832 643.002c82.624 0 154.57-19.984 192-49.5v-512c-37.43 29.518-109.376 49.502-192 49.502s-154.57-19.984-192-49.502v512c37.43 29.516 109.376 49.5 192 49.5z","M608 32.528c-46.906-19.94-115.52-32.528-192-32.528-96.396 0-180.334 19.984-224 49.502v512c43.666-29.518 127.604-49.502 224-49.502 76.48 0 145.094 12.588 192 32.528v-512z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["flag","report","mark"],"defaultCode":59852,"grid":16},"attrs":[],"properties":{"ligatures":"flag, report","name":"flag","id":204,"order":591,"prevSize":32,"code":60237},"setIdx":1,"setId":0,"iconIdx":204},{"icon":{"paths":["M665.832 327.048l-64.952-64.922-324.81 324.742c-53.814 53.792-53.814 141.048 0 194.844 53.804 53.792 141.060 53.792 194.874 0l389.772-389.708c89.714-89.662 89.714-235.062 0-324.726-89.666-89.704-235.112-89.704-324.782 0l-409.23 409.178c-0.29 0.304-0.612 0.576-0.876 0.846-125.102 125.096-125.102 327.856 0 452.906 125.054 125.056 327.868 125.056 452.988 0 0.274-0.274 0.516-0.568 0.82-0.876l0.032 0.034 279.332-279.292-64.986-64.92-279.33 279.262c-0.296 0.268-0.564 0.57-0.846 0.844-89.074 89.058-233.98 89.058-323.076 0-89.062-89.042-89.062-233.922 0-322.978 0.304-0.304 0.604-0.582 0.888-0.846l-0.046-0.060 409.28-409.166c53.712-53.738 141.144-53.738 194.886 0 53.712 53.734 53.712 141.148 0 194.84l-389.772 389.7c-17.936 17.922-47.054 17.922-64.972 0-17.894-17.886-17.894-47.032 0-64.92l324.806-324.782z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["attachment","paperclip"],"defaultCode":59853,"grid":16},"attrs":[],"properties":{"ligatures":"attachment, paperclip","name":"attachment","id":205,"order":592,"prevSize":32,"code":60238},"setIdx":1,"setId":0,"iconIdx":205},{"icon":{"paths":["M512 192c-223.318 0-416.882 130.042-512 320 95.118 189.958 288.682 320 512 320 223.312 0 416.876-130.042 512-320-95.116-189.958-288.688-320-512-320zM764.45 361.704c60.162 38.374 111.142 89.774 149.434 150.296-38.292 60.522-89.274 111.922-149.436 150.296-75.594 48.218-162.89 73.704-252.448 73.704-89.56 0-176.858-25.486-252.452-73.704-60.158-38.372-111.138-89.772-149.432-150.296 38.292-60.524 89.274-111.924 149.434-150.296 3.918-2.5 7.876-4.922 11.86-7.3-9.96 27.328-15.41 56.822-15.41 87.596 0 141.382 114.616 256 256 256 141.382 0 256-114.618 256-256 0-30.774-5.452-60.268-15.408-87.598 3.978 2.378 7.938 4.802 11.858 7.302v0zM512 416c0 53.020-42.98 96-96 96s-96-42.98-96-96 42.98-96 96-96 96 42.982 96 96z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["eye","views","vision","visit"],"defaultCode":59854,"grid":16},"attrs":[],"properties":{"ligatures":"eye, views","name":"eye","id":206,"order":593,"prevSize":32,"code":60239},"setIdx":1,"setId":0,"iconIdx":206},{"icon":{"paths":["M1024 128h-128v-128h-128v128h-128v128h128v128h128v-128h128z","M863.862 446.028c18.436 20.478 35.192 42.53 50.022 65.972-38.292 60.522-89.274 111.922-149.436 150.296-75.594 48.218-162.89 73.704-252.448 73.704-89.56 0-176.86-25.486-252.454-73.704-60.156-38.372-111.136-89.772-149.43-150.296 38.292-60.524 89.274-111.924 149.434-150.296 3.918-2.5 7.876-4.922 11.862-7.3-9.962 27.328-15.412 56.822-15.412 87.596 0 141.382 114.616 256 256 256 141.38 0 256-114.618 256-256 0-0.692-0.018-1.38-0.024-2.072-109.284-28.138-190.298-126.63-191.932-244.31-21.026-2.38-42.394-3.618-64.044-3.618-223.318 0-416.882 130.042-512 320 95.118 189.958 288.682 320 512 320 223.31 0 416.876-130.042 512-320-17.64-35.23-38.676-68.394-62.65-99.054-29.28 17.178-62.272 28.71-97.488 33.082zM416 320c53.020 0 96 42.982 96 96 0 53.020-42.98 96-96 96s-96-42.98-96-96 42.98-96 96-96z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["eye-plus","views","vision","visit"],"defaultCode":59855,"grid":16},"attrs":[],"properties":{"ligatures":"eye-plus, views2","name":"eye-plus","id":207,"order":594,"prevSize":32,"code":60240},"setIdx":1,"setId":0,"iconIdx":207},{"icon":{"paths":["M640 128h384v128h-384v-128z","M870.32 320h-294.32v-124.388c-21.014-2.376-42.364-3.612-64-3.612-223.318 0-416.882 130.042-512 320 95.118 189.958 288.682 320 512 320 223.31 0 416.876-130.042 512-320-37.396-74.686-90.020-140.1-153.68-192zM416 320c53.020 0 96 42.982 96 96 0 53.020-42.98 96-96 96s-96-42.98-96-96 42.98-96 96-96zM764.448 662.296c-75.594 48.218-162.89 73.704-252.448 73.704-89.56 0-176.86-25.486-252.454-73.704-60.156-38.372-111.136-89.772-149.43-150.296 38.292-60.524 89.274-111.924 149.434-150.296 3.918-2.5 7.876-4.922 11.862-7.3-9.962 27.328-15.412 56.822-15.412 87.596 0 141.382 114.616 256 256 256 141.38 0 256-114.618 256-256 0-30.774-5.454-60.268-15.408-87.598 3.976 2.378 7.938 4.802 11.858 7.302 60.162 38.374 111.142 89.774 149.434 150.296-38.292 60.522-89.274 111.922-149.436 150.296z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["eye-minus","views","vision","visit"],"defaultCode":59856,"grid":16},"attrs":[],"properties":{"ligatures":"eye-minus, views3","name":"eye-minus","id":208,"order":595,"prevSize":32,"code":60241},"setIdx":1,"setId":0,"iconIdx":208},{"icon":{"paths":["M945.942 14.058c-18.746-18.744-49.136-18.744-67.882 0l-202.164 202.164c-51.938-15.754-106.948-24.222-163.896-24.222-223.318 0-416.882 130.042-512 320 41.122 82.124 100.648 153.040 173.022 207.096l-158.962 158.962c-18.746 18.746-18.746 49.136 0 67.882 9.372 9.374 21.656 14.060 33.94 14.060s24.568-4.686 33.942-14.058l864-864c18.744-18.746 18.744-49.138 0-67.884zM416 320c42.24 0 78.082 27.294 90.92 65.196l-121.724 121.724c-37.902-12.838-65.196-48.68-65.196-90.92 0-53.020 42.98-96 96-96zM110.116 512c38.292-60.524 89.274-111.924 149.434-150.296 3.918-2.5 7.876-4.922 11.862-7.3-9.962 27.328-15.412 56.822-15.412 87.596 0 54.89 17.286 105.738 46.7 147.418l-60.924 60.924c-52.446-36.842-97.202-83.882-131.66-138.342z","M768 442c0-27.166-4.256-53.334-12.102-77.898l-321.808 321.808c24.568 7.842 50.742 12.090 77.91 12.090 141.382 0 256-114.618 256-256z","M830.026 289.974l-69.362 69.362c1.264 0.786 2.53 1.568 3.786 2.368 60.162 38.374 111.142 89.774 149.434 150.296-38.292 60.522-89.274 111.922-149.436 150.296-75.594 48.218-162.89 73.704-252.448 73.704-38.664 0-76.902-4.76-113.962-14.040l-76.894 76.894c59.718 21.462 123.95 33.146 190.856 33.146 223.31 0 416.876-130.042 512-320-45.022-89.916-112.118-166.396-193.974-222.026z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["eye-blocked","views","vision","visit","banned","blocked","forbidden","private"],"defaultCode":59857,"grid":16},"attrs":[],"properties":{"ligatures":"eye-blocked, views4","name":"eye-blocked","id":209,"order":596,"prevSize":32,"code":60242},"setIdx":1,"setId":0,"iconIdx":209},{"icon":{"paths":["M192 0v1024l320-320 320 320v-1024z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["bookmark","ribbon"],"defaultCode":59858,"grid":16},"attrs":[],"properties":{"ligatures":"bookmark, ribbon","name":"bookmark","id":210,"order":597,"prevSize":32,"code":60243},"setIdx":1,"setId":0,"iconIdx":210},{"icon":{"paths":["M256 128v896l320-320 320 320v-896zM768 0h-640v896l64-64v-768h576z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["bookmarks","ribbons"],"defaultCode":59859,"grid":16},"attrs":[],"properties":{"ligatures":"bookmarks, ribbons","name":"bookmarks","id":211,"order":598,"prevSize":32,"code":60244},"setIdx":1,"setId":0,"iconIdx":211},{"icon":{"paths":["M512 832c35.346 0 64 28.654 64 64v64c0 35.346-28.654 64-64 64s-64-28.654-64-64v-64c0-35.346 28.654-64 64-64zM512 192c-35.346 0-64-28.654-64-64v-64c0-35.346 28.654-64 64-64s64 28.654 64 64v64c0 35.346-28.654 64-64 64zM960 448c35.346 0 64 28.654 64 64s-28.654 64-64 64h-64c-35.348 0-64-28.654-64-64s28.652-64 64-64h64zM192 512c0 35.346-28.654 64-64 64h-64c-35.346 0-64-28.654-64-64s28.654-64 64-64h64c35.346 0 64 28.654 64 64zM828.784 738.274l45.256 45.258c24.992 24.99 24.992 65.516 0 90.508-24.994 24.992-65.518 24.992-90.51 0l-45.256-45.256c-24.992-24.99-24.992-65.516 0-90.51 24.994-24.992 65.518-24.992 90.51 0zM195.216 285.726l-45.256-45.256c-24.994-24.994-24.994-65.516 0-90.51s65.516-24.994 90.51 0l45.256 45.256c24.994 24.994 24.994 65.516 0 90.51s-65.516 24.994-90.51 0zM828.784 285.726c-24.992 24.992-65.516 24.992-90.51 0-24.992-24.994-24.992-65.516 0-90.51l45.256-45.254c24.992-24.994 65.516-24.994 90.51 0 24.992 24.994 24.992 65.516 0 90.51l-45.256 45.254zM195.216 738.274c24.992-24.992 65.518-24.992 90.508 0 24.994 24.994 24.994 65.52 0 90.51l-45.254 45.256c-24.994 24.992-65.516 24.992-90.51 0s-24.994-65.518 0-90.508l45.256-45.258z","M512 256c-141.384 0-256 114.616-256 256 0 141.382 114.616 256 256 256 141.382 0 256-114.618 256-256 0-141.384-114.616-256-256-256zM512 672c-88.366 0-160-71.634-160-160s71.634-160 160-160 160 71.634 160 160-71.634 160-160 160z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["sun","weather"],"defaultCode":59860,"grid":16},"attrs":[],"properties":{"ligatures":"sun, weather2","name":"sun","id":212,"order":599,"prevSize":32,"code":60245},"setIdx":1,"setId":0,"iconIdx":212},{"icon":{"paths":["M512 0c-282.77 0-512 229.23-512 512s229.23 512 512 512 512-229.23 512-512-229.23-512-512-512zM128 512c0-212.078 171.922-384 384-384v768c-212.078 0-384-171.922-384-384z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["contrast"],"defaultCode":59861,"grid":16},"attrs":[],"properties":{"ligatures":"contrast","name":"contrast","id":213,"order":600,"prevSize":32,"code":60246},"setIdx":1,"setId":0,"iconIdx":213},{"icon":{"paths":["M512 256c-141.384 0-256 114.616-256 256s114.616 256 256 256 256-114.616 256-256-114.616-256-256-256zM512 672v-320c88.224 0 160 71.776 160 160s-71.776 160-160 160zM512 832c35.346 0 64 28.654 64 64v64c0 35.346-28.654 64-64 64s-64-28.654-64-64v-64c0-35.346 28.654-64 64-64zM512 192c-35.346 0-64-28.654-64-64v-64c0-35.346 28.654-64 64-64s64 28.654 64 64v64c0 35.346-28.654 64-64 64zM960 448c35.346 0 64 28.654 64 64s-28.654 64-64 64h-64c-35.346 0-64-28.654-64-64s28.654-64 64-64h64zM192 512c0 35.346-28.654 64-64 64h-64c-35.346 0-64-28.654-64-64s28.654-64 64-64h64c35.346 0 64 28.654 64 64zM828.784 738.274l45.256 45.256c24.992 24.992 24.992 65.516 0 90.51-24.994 24.992-65.518 24.992-90.51 0l-45.256-45.256c-24.992-24.992-24.992-65.516 0-90.51 24.994-24.992 65.518-24.992 90.51 0zM195.216 285.726l-45.256-45.256c-24.994-24.994-24.994-65.516 0-90.51s65.516-24.994 90.51 0l45.256 45.256c24.994 24.994 24.994 65.516 0 90.51s-65.516 24.994-90.51 0zM828.784 285.726c-24.992 24.992-65.516 24.992-90.51 0-24.992-24.994-24.992-65.516 0-90.51l45.256-45.254c24.992-24.994 65.516-24.994 90.51 0 24.992 24.994 24.992 65.516 0 90.51l-45.256 45.254zM195.216 738.274c24.992-24.992 65.516-24.992 90.508 0 24.994 24.994 24.994 65.518 0 90.51l-45.254 45.256c-24.994 24.992-65.516 24.992-90.51 0-24.994-24.994-24.994-65.518 0-90.51l45.256-45.256z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["brightness-contrast"],"defaultCode":59862,"grid":16},"attrs":[],"properties":{"ligatures":"brightness-contrast","name":"brightness-contrast","id":214,"order":601,"prevSize":32,"code":60247},"setIdx":1,"setId":0,"iconIdx":214},{"icon":{"paths":["M1024 397.050l-353.78-51.408-158.22-320.582-158.216 320.582-353.784 51.408 256 249.538-60.432 352.352 316.432-166.358 316.432 166.358-60.434-352.352 256.002-249.538zM512 753.498l-223.462 117.48 42.676-248.83-180.786-176.222 249.84-36.304 111.732-226.396 111.736 226.396 249.836 36.304-180.788 176.222 42.678 248.83-223.462-117.48z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["star-empty","rate","star","favorite","bookmark"],"defaultCode":59863,"grid":16},"attrs":[],"properties":{"ligatures":"star-empty, rate","name":"star-empty","id":215,"order":602,"prevSize":32,"code":60248},"setIdx":1,"setId":0,"iconIdx":215},{"icon":{"paths":["M1024 397.050l-353.78-51.408-158.22-320.582-158.216 320.582-353.784 51.408 256 249.538-60.432 352.352 316.432-166.358 316.432 166.358-60.434-352.352 256.002-249.538zM512 753.498l-0.942 0.496 0.942-570.768 111.736 226.396 249.836 36.304-180.788 176.222 42.678 248.83-223.462-117.48z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["star-half","rate","star"],"defaultCode":59864,"grid":16},"attrs":[],"properties":{"ligatures":"star-half, rate2","name":"star-half","id":216,"order":603,"prevSize":32,"code":60249},"setIdx":1,"setId":0,"iconIdx":216},{"icon":{"paths":["M1024 397.050l-353.78-51.408-158.22-320.582-158.216 320.582-353.784 51.408 256 249.538-60.432 352.352 316.432-166.358 316.432 166.358-60.434-352.352 256.002-249.538z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["star-full","rate","star","favorite","bookmark"],"defaultCode":59865,"grid":16},"attrs":[],"properties":{"ligatures":"star-full, rate3","name":"star-full","id":217,"order":604,"prevSize":32,"code":60250},"setIdx":1,"setId":0,"iconIdx":217},{"icon":{"paths":["M755.188 64c-107.63 0-200.258 87.554-243.164 179-42.938-91.444-135.578-179-243.216-179-148.382 0-268.808 120.44-268.808 268.832 0 301.846 304.5 380.994 512.022 679.418 196.154-296.576 511.978-387.206 511.978-679.418 0-148.392-120.43-268.832-268.812-268.832z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["heart","like","love","favorite"],"defaultCode":59866,"grid":16},"attrs":[],"properties":{"ligatures":"heart, like","name":"heart","id":218,"order":605,"prevSize":32,"code":60251},"setIdx":1,"setId":0,"iconIdx":218},{"icon":{"paths":["M755.188 64c148.382 0 268.812 120.44 268.812 268.832 0 292.21-315.824 382.842-511.978 679.418-207.522-298.424-512.022-377.572-512.022-679.418 0-148.392 120.426-268.832 268.808-268.832 60.354 0 115.99 27.53 160.796 67.834l-77.604 124.166 224 128-128 320 352-384-224-128 61.896-92.846c35.42-21.768 75.21-35.154 117.292-35.154z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["heart-broken","heart","like","love"],"defaultCode":59867,"grid":16},"attrs":[],"properties":{"ligatures":"heart-broken, heart2","name":"heart-broken","id":219,"order":606,"prevSize":32,"code":60252},"setIdx":1,"setId":0,"iconIdx":219},{"icon":{"paths":["M576 96c0 53.019-42.981 96-96 96s-96-42.981-96-96c0-53.019 42.981-96 96-96s96 42.981 96 96z","M576 256h-192c-35.346 0-64 28.654-64 64v320h64v384h80v-384h32v384h80v-384h64v-320c0-35.346-28.652-64-64-64z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["man","male","gender","sex"],"defaultCode":59868,"grid":16},"attrs":[],"properties":{"ligatures":"man, male","name":"man","id":220,"order":607,"prevSize":32,"code":60253},"setIdx":1,"setId":0,"iconIdx":220},{"icon":{"paths":["M576 96c0 53.019-42.981 96-96 96s-96-42.981-96-96c0-53.019 42.981-96 96-96s96 42.981 96 96z","M719 512l49-35.5-133.286-206.116c-5.92-8.98-15.958-14.384-26.714-14.384h-256c-10.756 0-20.792 5.404-26.714 14.384l-133.286 206.116 49 35.5 110.644-143.596 38.458 89.74-134.102 245.856h122.666l21.334 320h64v-320h32v320h64l21.334-320h122.666l-134.104-245.858 38.458-89.74 110.646 143.598z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["woman","female","gender","sex"],"defaultCode":59869,"grid":16},"attrs":[],"properties":{"ligatures":"woman, female","name":"woman","id":221,"order":608,"prevSize":32,"code":60254},"setIdx":1,"setId":0,"iconIdx":221},{"icon":{"paths":["M256 96c0 53.019-42.981 96-96 96s-96-42.981-96-96c0-53.019 42.981-96 96-96s96 42.981 96 96z","M832 96c0 53.019-42.981 96-96 96s-96-42.981-96-96c0-53.019 42.981-96 96-96s96 42.981 96 96z","M256 256h-192c-35.346 0-64 28.654-64 64v320h64v384h80v-384h32v384h80v-384h64v-320c0-35.346-28.652-64-64-64z","M975 512l49-35.5-133.286-206.116c-5.92-8.98-15.958-14.384-26.714-14.384h-256c-10.756 0-20.792 5.404-26.714 14.384l-133.286 206.116 49 35.5 110.644-143.596 38.458 89.74-134.102 245.856h122.666l21.334 320h64v-320h32v320h64l21.334-320h122.666l-134.104-245.858 38.458-89.74 110.646 143.598z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["man-woman","toilet","bathroom","sex","gender"],"defaultCode":59870,"grid":16},"attrs":[],"properties":{"ligatures":"man-woman, toilet","name":"man-woman","id":222,"order":609,"prevSize":32,"code":60255},"setIdx":1,"setId":0,"iconIdx":222},{"icon":{"paths":["M512 1024c282.77 0 512-229.23 512-512s-229.23-512-512-512-512 229.23-512 512 229.23 512 512 512zM512 96c229.75 0 416 186.25 416 416s-186.25 416-416 416-416-186.25-416-416 186.25-416 416-416zM512 598.76c115.95 0 226.23-30.806 320-84.92-14.574 178.438-153.128 318.16-320 318.16-166.868 0-305.422-139.872-320-318.304 93.77 54.112 204.050 85.064 320 85.064zM256 352c0-53.019 28.654-96 64-96s64 42.981 64 96c0 53.019-28.654 96-64 96s-64-42.981-64-96zM640 352c0-53.019 28.654-96 64-96s64 42.981 64 96c0 53.019-28.654 96-64 96s-64-42.981-64-96z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["happy","emoticon","smiley","face"],"defaultCode":59871,"grid":16},"attrs":[],"properties":{"ligatures":"happy, emoticon","name":"happy","id":223,"order":610,"prevSize":32,"code":60256},"setIdx":1,"setId":0,"iconIdx":223},{"icon":{"paths":["M512 0c-282.77 0-512 229.23-512 512s229.23 512 512 512 512-229.23 512-512-229.23-512-512-512zM704 256c35.348 0 64 42.98 64 96s-28.652 96-64 96-64-42.98-64-96 28.652-96 64-96zM320 256c35.346 0 64 42.98 64 96s-28.654 96-64 96-64-42.98-64-96 28.654-96 64-96zM512 896c-166.868 0-305.422-139.872-320-318.304 93.77 54.114 204.050 85.064 320 85.064s226.23-30.806 320-84.92c-14.574 178.438-153.128 318.16-320 318.16z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["happy","emoticon","smiley","face"],"defaultCode":59872,"grid":16},"attrs":[],"properties":{"ligatures":"happy2, emoticon2","name":"happy2","id":224,"order":611,"prevSize":32,"code":60257},"setIdx":1,"setId":0,"iconIdx":224},{"icon":{"paths":["M512 1024c282.77 0 512-229.23 512-512s-229.23-512-512-512-512 229.23-512 512 229.23 512 512 512zM512 96c229.75 0 416 186.25 416 416s-186.25 416-416 416-416-186.25-416-416 186.25-416 416-416zM256 320c0-35.346 28.654-64 64-64s64 28.654 64 64c0 35.346-28.654 64-64 64s-64-28.654-64-64zM640 320c0-35.346 28.654-64 64-64s64 28.654 64 64c0 35.346-28.654 64-64 64s-64-28.654-64-64zM704.098 627.26l82.328 49.396c-55.962 93.070-157.916 155.344-274.426 155.344s-218.464-62.274-274.426-155.344l82.328-49.396c39.174 65.148 110.542 108.74 192.098 108.74s152.924-43.592 192.098-108.74z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["smile","emoticon","smiley","face"],"defaultCode":59873,"grid":16},"attrs":[],"properties":{"ligatures":"smile, emoticon3","name":"smile","id":225,"order":612,"prevSize":32,"code":60258},"setIdx":1,"setId":0,"iconIdx":225},{"icon":{"paths":["M512 0c-282.77 0-512 229.23-512 512s229.23 512 512 512 512-229.23 512-512-229.23-512-512-512zM704 256c35.346 0 64 28.654 64 64s-28.654 64-64 64-64-28.654-64-64 28.654-64 64-64zM320 256c35.346 0 64 28.654 64 64s-28.654 64-64 64-64-28.654-64-64 28.654-64 64-64zM512 832c-116.51 0-218.464-62.274-274.426-155.344l82.328-49.396c39.174 65.148 110.542 108.74 192.098 108.74s152.924-43.592 192.098-108.74l82.328 49.396c-55.962 93.070-157.916 155.344-274.426 155.344z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["smile","emoticon","smiley","face"],"defaultCode":59874,"grid":16},"attrs":[],"properties":{"ligatures":"smile2, emoticon4","name":"smile2","id":226,"order":613,"prevSize":32,"code":60259},"setIdx":1,"setId":0,"iconIdx":226},{"icon":{"paths":["M512 1024c282.77 0 512-229.23 512-512s-229.23-512-512-512-512 229.23-512 512 229.23 512 512 512zM512 96c229.75 0 416 186.25 416 416s-186.25 416-416 416-416-186.25-416-416 186.25-416 416-416zM256 320c0-35.346 28.654-64 64-64s64 28.654 64 64c0 35.346-28.654 64-64 64s-64-28.654-64-64zM640 320c0-35.346 28.654-64 64-64s64 28.654 64 64c0 35.346-28.654 64-64 64s-64-28.654-64-64zM768 576v64h-64v96c0 53.020-42.98 96-96 96s-96-42.98-96-96v-96h-256v-64h512z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["tongue","emoticon","smiley","face"],"defaultCode":59875,"grid":16},"attrs":[],"properties":{"ligatures":"tongue, emoticon5","name":"tongue","id":227,"order":614,"prevSize":32,"code":60260},"setIdx":1,"setId":0,"iconIdx":227},{"icon":{"paths":["M512 0c-282.77 0-512 229.23-512 512s229.23 512 512 512 512-229.23 512-512-229.23-512-512-512zM320 256c35.346 0 64 28.654 64 64s-28.654 64-64 64-64-28.654-64-64 28.654-64 64-64zM768 640h-64v96c0 53.020-42.98 96-96 96s-96-42.98-96-96v-96h-256v-64h512v64zM704 384c-35.346 0-64-28.654-64-64s28.654-64 64-64 64 28.654 64 64-28.654 64-64 64z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["tongue","emoticon","smiley","face"],"defaultCode":59876,"grid":16},"attrs":[],"properties":{"ligatures":"tongue2, emoticon6","name":"tongue2","id":228,"order":615,"prevSize":32,"code":60261},"setIdx":1,"setId":0,"iconIdx":228},{"icon":{"paths":["M512 1024c282.77 0 512-229.23 512-512s-229.23-512-512-512-512 229.23-512 512 229.23 512 512 512zM512 96c229.75 0 416 186.25 416 416s-186.25 416-416 416-416-186.25-416-416 186.25-416 416-416zM256 320c0-35.346 28.654-64 64-64s64 28.654 64 64c0 35.346-28.654 64-64 64s-64-28.654-64-64zM640 320c0-35.346 28.654-64 64-64s64 28.654 64 64c0 35.346-28.654 64-64 64s-64-28.654-64-64zM319.902 780.74l-82.328-49.396c55.962-93.070 157.916-155.344 274.426-155.344 116.508 0 218.462 62.274 274.426 155.344l-82.328 49.396c-39.174-65.148-110.542-108.74-192.098-108.74-81.558 0-152.924 43.592-192.098 108.74z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["sad","emoticon","smiley","face"],"defaultCode":59877,"grid":16},"attrs":[],"properties":{"ligatures":"sad, emoticon7","name":"sad","id":229,"order":616,"prevSize":32,"code":60262},"setIdx":1,"setId":0,"iconIdx":229},{"icon":{"paths":["M512 0c-282.77 0-512 229.23-512 512s229.23 512 512 512 512-229.23 512-512-229.23-512-512-512zM704 256c35.346 0 64 28.654 64 64s-28.654 64-64 64-64-28.654-64-64 28.654-64 64-64zM320 256c35.346 0 64 28.654 64 64s-28.654 64-64 64-64-28.654-64-64 28.654-64 64-64zM704.098 780.74c-39.174-65.148-110.544-108.74-192.098-108.74-81.556 0-152.924 43.592-192.098 108.74l-82.328-49.396c55.96-93.070 157.916-155.344 274.426-155.344 116.508 0 218.464 62.274 274.426 155.344l-82.328 49.396z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["sad","emoticon","smiley","face"],"defaultCode":59878,"grid":16},"attrs":[],"properties":{"ligatures":"sad2, emoticon8","name":"sad2","id":230,"order":617,"prevSize":32,"code":60263},"setIdx":1,"setId":0,"iconIdx":230},{"icon":{"paths":["M512 1024c282.77 0 512-229.23 512-512s-229.23-512-512-512-512 229.23-512 512 229.23 512 512 512zM512 96c229.75 0 416 186.25 416 416s-186.25 416-416 416-416-186.25-416-416 186.25-416 416-416zM542.74 711.028c140.248-27.706 249.11-91.542 288.454-176.594-21.654 167.956-161.518 297.566-330.85 297.566-119.242 0-223.858-64.282-282.892-160.948 70.41 55.058 194.534 65.808 325.288 39.976zM640 352c0-53.019 28.654-96 64-96s64 42.981 64 96c0 53.019-28.654 96-64 96s-64-42.981-64-96zM352 371.5c-41.796 0-77.334 15.656-90.516 37.5-3.54-5.866-5.484-32.174-5.484-38.75 0-31.066 42.98-56.25 96-56.25s96 25.184 96 56.25c0 6.576-1.944 32.884-5.484 38.75-13.182-21.844-48.72-37.5-90.516-37.5z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["wink","emoticon","smiley","face"],"defaultCode":59879,"grid":16},"attrs":[],"properties":{"ligatures":"wink, emoticon9","name":"wink","id":231,"order":618,"prevSize":32,"code":60264},"setIdx":1,"setId":0,"iconIdx":231},{"icon":{"paths":["M512 0c-282.77 0-512 229.228-512 512 0 282.77 229.228 512 512 512 282.77 0 512-229.23 512-512 0-282.772-229.23-512-512-512zM704 256c35.346 0 64 42.98 64 96s-28.654 96-64 96-64-42.98-64-96 28.654-96 64-96zM352 312.062c59.646 0 102 22.332 102 57.282 0 7.398 3.812 42.994-0.17 49.594-14.828-24.576-54.81-42.188-101.83-42.188s-87.002 17.612-101.83 42.188c-3.982-6.6-0.17-42.196-0.17-49.594 0-34.95 42.354-57.282 102-57.282zM500.344 832c-119.242 0-223.858-64.28-282.892-160.952 70.41 55.060 194.534 65.81 325.288 39.978 140.248-27.706 249.11-91.542 288.454-176.594-21.654 167.96-161.518 297.568-330.85 297.568z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["wink","emoticon","smiley","face"],"defaultCode":59880,"grid":16},"attrs":[],"properties":{"ligatures":"wink2, emoticon10","name":"wink2","id":232,"order":619,"prevSize":32,"code":60265},"setIdx":1,"setId":0,"iconIdx":232},{"icon":{"paths":["M512 1024c282.77 0 512-229.23 512-512s-229.23-512-512-512-512 229.23-512 512 229.23 512 512 512zM512 96c229.75 0 416 186.25 416 416s-186.25 416-416 416-416-186.25-416-416 186.25-416 416-416zM192 512v64c0 140.8 115.2 256 256 256h128c140.8 0 256-115.2 256-256v-64h-640zM384 756.988c-26.538-9.458-50.924-24.822-71.544-45.446-36.406-36.402-56.456-84.54-56.456-135.542h128v180.988zM576 768h-128v-192h128v192zM711.544 711.542c-20.624 20.624-45.010 35.988-71.544 45.446v-180.988h128c0 51.002-20.048 99.14-56.456 135.542zM225.352 384c0.002 0 0 0 0 0 9.768 0 18.108-7.056 19.724-16.69 6.158-36.684 37.668-63.31 74.924-63.31s68.766 26.626 74.924 63.31c1.616 9.632 9.956 16.69 19.722 16.69 9.768 0 18.108-7.056 19.724-16.688 1.082-6.436 1.628-12.934 1.628-19.312 0-63.962-52.038-116-116-116s-116 52.038-116 116c0 6.378 0.548 12.876 1.628 19.312 1.62 9.632 9.96 16.688 19.726 16.688zM609.352 384c0.002 0 0 0 0 0 9.77 0 18.112-7.056 19.724-16.69 6.158-36.684 37.668-63.31 74.924-63.31s68.766 26.626 74.924 63.31c1.616 9.632 9.958 16.69 19.722 16.69s18.108-7.056 19.722-16.688c1.082-6.436 1.628-12.934 1.628-19.312 0-63.962-52.038-116-116-116s-116 52.038-116 116c0 6.378 0.544 12.876 1.626 19.312 1.624 9.632 9.964 16.688 19.73 16.688z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["grin","emoticon","smiley","face"],"defaultCode":59881,"grid":16},"attrs":[],"properties":{"ligatures":"grin, emoticon11","name":"grin","id":233,"order":620,"prevSize":32,"code":60266},"setIdx":1,"setId":0,"iconIdx":233},{"icon":{"paths":["M512 0c-282.77 0-512 229.23-512 512s229.226 512 512 512c282.77 0 512-229.23 512-512s-229.23-512-512-512zM704 236c63.962 0 116 52.038 116 116 0 6.378-0.546 12.876-1.628 19.312-1.618 9.632-9.958 16.688-19.724 16.688s-18.108-7.056-19.722-16.69c-6.16-36.684-37.67-53.31-74.926-53.31s-68.766 16.626-74.924 53.31c-1.616 9.632-9.956 16.69-19.722 16.69-0.002 0 0 0-0.002 0-9.766 0-18.106-7.056-19.722-16.688-1.084-6.436-1.63-12.934-1.63-19.312 0-63.962 52.038-116 116-116zM320 236c63.962 0 116 52.038 116 116 0 6.378-0.548 12.876-1.628 19.312-1.618 9.632-9.956 16.688-19.724 16.688s-18.106-7.056-19.722-16.69c-6.16-36.684-37.67-53.31-74.926-53.31s-68.766 16.626-74.924 53.31c-1.616 9.632-9.956 16.69-19.722 16.69 0 0 0 0 0 0-9.766 0-18.106-7.056-19.724-16.688-1.082-6.436-1.63-12.934-1.63-19.312 0-63.962 52.038-116 116-116zM192 576h192v247.846c-110.094-28.606-192-129.124-192-247.846zM448 832v-256h128v256h-128zM640 823.846v-247.846h192c0 118.722-81.904 219.24-192 247.846z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["grin","emoticon","smiley","face"],"defaultCode":59882,"grid":16},"attrs":[],"properties":{"ligatures":"grin2, emoticon12","name":"grin2","id":234,"order":621,"prevSize":32,"code":60267},"setIdx":1,"setId":0,"iconIdx":234},{"icon":{"paths":["M512 1024c282.77 0 512-229.23 512-512s-229.23-512-512-512-512 229.23-512 512 229.23 512 512 512zM512 96c229.75 0 416 186.25 416 416s-186.25 416-416 416-416-186.25-416-416 186.25-416 416-416zM800 256c17.6 0 32 14.4 32 32v96c0 35.2-28.8 64-64 64h-128c-35.2 0-64-28.8-64-64h-128c0 35.2-28.8 64-64 64h-128c-35.2 0-64-28.8-64-64v-96c0-17.6 14.4-32 32-32h192c17.6 0 32 14.4 32 32v32h128v-32c0-17.6 14.4-32 32-32h192zM512 768c93.208 0 174.772-49.818 219.546-124.278l54.88 32.934c-55.966 93.070-157.916 155.344-274.426 155.344-48.458 0-94.384-10.796-135.54-30.082l33.162-55.278c31.354 13.714 65.964 21.36 102.378 21.36z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["cool","emoticon","smiley","face"],"defaultCode":59883,"grid":16},"attrs":[],"properties":{"ligatures":"cool, emoticon13","name":"cool","id":235,"order":622,"prevSize":32,"code":60268},"setIdx":1,"setId":0,"iconIdx":235},{"icon":{"paths":["M512 0c-282.77 0-512 229.23-512 512s229.226 512 512 512c282.77 0 512-229.23 512-512s-229.23-512-512-512zM512 832c-48.458 0-94.384-10.796-135.542-30.082l33.162-55.276c31.356 13.712 65.966 21.358 102.38 21.358 93.208 0 174.772-49.818 219.542-124.278l54.882 32.934c-55.964 93.070-157.914 155.344-274.424 155.344zM832 384c0 35.2-28.8 64-64 64h-128c-35.2 0-64-28.8-64-64h-128c0 35.2-28.8 64-64 64h-128c-35.2 0-64-28.8-64-64v-96c0-17.6 14.4-32 32-32h192c17.6 0 32 14.4 32 32v32h128v-32c0-17.6 14.4-32 32-32h192c17.6 0 32 14.4 32 32v96z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["cool","emoticon","smiley","face"],"defaultCode":59884,"grid":16},"attrs":[],"properties":{"ligatures":"cool2, emoticon14","name":"cool2","id":236,"order":623,"prevSize":32,"code":60269},"setIdx":1,"setId":0,"iconIdx":236},{"icon":{"paths":["M512 1024c282.77 0 512-229.23 512-512s-229.23-512-512-512-512 229.23-512 512 229.23 512 512 512zM512 96c229.75 0 416 186.25 416 416s-186.25 416-416 416-416-186.25-416-416 186.25-416 416-416zM704.098 780.74c-39.174-65.148-110.544-108.74-192.098-108.74-81.556 0-152.924 43.592-192.098 108.74l-82.328-49.396c55.96-93.070 157.916-155.344 274.426-155.344 116.508 0 218.464 62.274 274.426 155.344l-82.328 49.396zM767.042 280.24c4.284 17.144-6.14 34.518-23.282 38.804-17.626 4.45-38.522 12.12-56.936 21.35 10.648 11.43 17.174 26.752 17.174 43.606 0 35.346-28.654 64-64 64s-64-28.654-64-64c0-1.17 0.036-2.33 0.098-3.484 2.032-47.454 45.212-78.946 81.592-97.138 34.742-17.37 69.102-26.060 70.548-26.422 17.146-4.288 34.518 6.138 38.806 23.284zM256.958 280.24c4.288-17.146 21.66-27.572 38.806-23.284 1.446 0.362 35.806 9.052 70.548 26.422 36.38 18.192 79.56 49.684 81.592 97.138 0.062 1.154 0.098 2.314 0.098 3.484 0 35.346-28.654 64-64 64s-64-28.654-64-64c0-16.854 6.526-32.176 17.174-43.606-18.414-9.23-39.31-16.9-56.936-21.35-17.142-4.286-27.566-21.66-23.282-38.804z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["angry","emoticon","smiley","face","rage"],"defaultCode":59885,"grid":16},"attrs":[],"properties":{"ligatures":"angry, emoticon15","name":"angry","id":237,"order":624,"prevSize":32,"code":60270},"setIdx":1,"setId":0,"iconIdx":237},{"icon":{"paths":["M512 0c-282.77 0-512 229.23-512 512s229.23 512 512 512 512-229.23 512-512-229.23-512-512-512zM576.094 380.516c2.032-47.454 45.21-78.948 81.592-97.138 34.742-17.372 69.104-26.060 70.548-26.422 17.146-4.288 34.52 6.138 38.806 23.284s-6.138 34.518-23.284 38.806c-17.624 4.45-38.522 12.12-56.936 21.35 10.648 11.43 17.174 26.752 17.174 43.606 0 35.346-28.654 64-64 64s-64-28.654-64-64c0.002-1.17 0.038-2.332 0.1-3.486zM256.958 280.24c4.288-17.146 21.66-27.572 38.806-23.284 1.446 0.362 35.806 9.052 70.548 26.422 36.38 18.192 79.56 49.684 81.592 97.138 0.062 1.154 0.098 2.314 0.098 3.484 0 35.346-28.654 64-64 64s-64-28.654-64-64c0-16.854 6.526-32.176 17.174-43.606-18.414-9.23-39.31-16.9-56.936-21.35-17.142-4.286-27.566-21.66-23.282-38.804zM704.098 780.74c-39.174-65.148-110.544-108.74-192.098-108.74-81.556 0-152.924 43.592-192.098 108.74l-82.328-49.396c55.96-93.070 157.916-155.344 274.426-155.344 116.508 0 218.464 62.274 274.426 155.344l-82.328 49.396z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["angry","emoticon","smiley","face","rage"],"defaultCode":59886,"grid":16},"attrs":[],"properties":{"ligatures":"angry2, emoticon16","name":"angry2","id":238,"order":625,"prevSize":32,"code":60271},"setIdx":1,"setId":0,"iconIdx":238},{"icon":{"paths":["M639.996 448c-35.346 0-64-28.654-63.998-64.002 0-1.17 0.036-2.33 0.098-3.484 2.032-47.454 45.212-78.946 81.592-97.138 34.742-17.37 69.102-26.060 70.548-26.422 17.146-4.288 34.518 6.138 38.806 23.284 4.284 17.146-6.14 34.518-23.284 38.806-17.626 4.45-38.522 12.12-56.936 21.35 10.648 11.43 17.174 26.752 17.174 43.606 0 35.346-28.654 64-64 64zM280.242 319.044c-17.144-4.286-27.568-21.66-23.282-38.804 4.286-17.146 21.66-27.572 38.806-23.284 1.444 0.362 35.806 9.050 70.548 26.422 36.382 18.19 79.56 49.684 81.592 97.138 0.062 1.154 0.098 2.316 0.098 3.484 0 35.346-28.654 64-64 64s-64-28.654-64-64c0-16.854 6.526-32.176 17.174-43.606-18.414-9.23-39.312-16.9-56.936-21.35zM512 736c81.554 0 152.924-43.592 192.098-108.74l82.328 49.396c-55.962 93.070-157.916 155.344-274.426 155.344s-218.464-62.274-274.426-155.344l82.328-49.396c39.174 65.148 110.542 108.74 192.098 108.74zM1024 64c0-45.516-9.524-88.8-26.652-128-33.576 76.836-96.448 137.932-174.494 169.178-86.194-65.96-193.936-105.178-310.854-105.178s-224.66 39.218-310.854 105.178c-78.048-31.246-140.918-92.342-174.494-169.178-17.128 39.2-26.652 82.484-26.652 128 0 73.574 24.85 141.328 66.588 195.378-42.37 74.542-66.588 160.75-66.588 252.622 0 282.77 229.23 512 512 512s512-229.23 512-512c0-91.872-24.218-178.080-66.588-252.622 41.738-54.050 66.588-121.804 66.588-195.378zM512 928c-229.75 0-416-186.25-416-416s186.25-416 416-416 416 186.25 416 416-186.25 416-416 416z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["evil","emoticon","smiley","face"],"defaultCode":59887,"grid":16},"attrs":[],"properties":{"ligatures":"evil, emoticon17","name":"evil","id":239,"order":626,"prevSize":32,"code":60272},"setIdx":1,"setId":0,"iconIdx":239},{"icon":{"paths":["M1024 64c0-45.516-9.524-88.8-26.652-128-33.576 76.836-96.448 137.932-174.494 169.178-86.194-65.96-193.936-105.178-310.854-105.178s-224.66 39.218-310.854 105.178c-78.048-31.246-140.918-92.342-174.494-169.178-17.128 39.2-26.652 82.484-26.652 128 0 73.574 24.85 141.328 66.588 195.378-42.37 74.542-66.588 160.75-66.588 252.622 0 282.77 229.23 512 512 512s512-229.23 512-512c0-91.872-24.218-178.080-66.588-252.622 41.738-54.050 66.588-121.804 66.588-195.378zM576.094 380.516c2.032-47.454 45.21-78.948 81.592-97.138 34.742-17.372 69.104-26.060 70.548-26.422 17.146-4.288 34.52 6.138 38.806 23.284s-6.138 34.518-23.284 38.806c-17.624 4.45-38.522 12.12-56.936 21.35 10.648 11.43 17.174 26.752 17.174 43.606 0 35.346-28.654 64-64 64s-64-28.654-64-64c0.002-1.17 0.038-2.332 0.1-3.486zM256.958 280.24c4.288-17.146 21.66-27.572 38.806-23.284 1.446 0.362 35.806 9.052 70.548 26.422 36.38 18.192 79.56 49.684 81.592 97.138 0.062 1.154 0.098 2.314 0.098 3.484 0 35.346-28.654 64-64 64s-64-28.654-64-64c0-16.854 6.526-32.176 17.174-43.606-18.414-9.23-39.31-16.9-56.936-21.35-17.142-4.286-27.566-21.66-23.282-38.804zM512 832c-116.51 0-218.464-62.274-274.426-155.344l82.328-49.396c39.174 65.148 110.542 108.74 192.098 108.74 81.554 0 152.924-43.592 192.098-108.74l82.328 49.396c-55.962 93.070-157.916 155.344-274.426 155.344z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["evil","emoticon","smiley","face"],"defaultCode":59888,"grid":16},"attrs":[],"properties":{"ligatures":"evil2, emoticon18","name":"evil2","id":240,"order":627,"prevSize":32,"code":60273},"setIdx":1,"setId":0,"iconIdx":240},{"icon":{"paths":["M512 1024c282.77 0 512-229.23 512-512s-229.23-512-512-512-512 229.23-512 512 229.23 512 512 512zM512 96c229.75 0 416 186.25 416 416s-186.25 416-416 416-416-186.25-416-416 186.25-416 416-416zM384 704c0-70.692 57.308-128 128-128s128 57.308 128 128c0 70.692-57.308 128-128 128s-128-57.308-128-128zM640 352c0-53.019 28.654-96 64-96s64 42.981 64 96c0 53.019-28.654 96-64 96s-64-42.981-64-96zM256 352c0-53.019 28.654-96 64-96s64 42.981 64 96c0 53.019-28.654 96-64 96s-64-42.981-64-96z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["shocked","emoticon","smiley","face"],"defaultCode":59889,"grid":16},"attrs":[],"properties":{"ligatures":"shocked, emoticon19","name":"shocked","id":241,"order":628,"prevSize":32,"code":60274},"setIdx":1,"setId":0,"iconIdx":241},{"icon":{"paths":["M512 0c-282.77 0-512 229.23-512 512s229.23 512 512 512 512-229.23 512-512-229.23-512-512-512zM320 448c-35.346 0-64-42.98-64-96s28.654-96 64-96 64 42.98 64 96-28.654 96-64 96zM512 832c-70.692 0-128-57.308-128-128s57.308-128 128-128c70.692 0 128 57.308 128 128s-57.308 128-128 128zM704 448c-35.346 0-64-42.98-64-96s28.654-96 64-96 64 42.98 64 96-28.654 96-64 96z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["shocked","emoticon","smiley","face"],"defaultCode":59890,"grid":16},"attrs":[],"properties":{"ligatures":"shocked2, emoticon20","name":"shocked2","id":242,"order":629,"prevSize":32,"code":60275},"setIdx":1,"setId":0,"iconIdx":242},{"icon":{"paths":["M512 1024c282.77 0 512-229.23 512-512s-229.23-512-512-512-512 229.23-512 512 229.23 512 512 512zM512 96c229.75 0 416 186.25 416 416s-186.25 416-416 416-416-186.25-416-416 186.25-416 416-416z","M384 416c0 17.673-14.327 32-32 32s-32-14.327-32-32c0-17.673 14.327-32 32-32s32 14.327 32 32z","M352 320c53.020 0 96 42.98 96 96s-42.98 96-96 96-96-42.98-96-96 42.98-96 96-96zM352 256c-88.224 0-160 71.776-160 160s71.776 160 160 160 160-71.776 160-160-71.776-160-160-160v0z","M704 416c0 17.673-14.327 32-32 32s-32-14.327-32-32c0-17.673 14.327-32 32-32s32 14.327 32 32z","M672 320c53.020 0 96 42.98 96 96s-42.98 96-96 96-96-42.98-96-96 42.98-96 96-96zM672 256c-88.224 0-160 71.776-160 160s71.776 160 160 160 160-71.776 160-160-71.776-160-160-160v0z","M384 704h256v64h-256v-64z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["baffled","emoticon","smiley","shocked","face"],"defaultCode":59891,"grid":16},"attrs":[],"properties":{"ligatures":"baffled, emoticon21","name":"baffled","id":243,"order":630,"prevSize":32,"code":60276},"setIdx":1,"setId":0,"iconIdx":243},{"icon":{"paths":["M384 416c0 17.674-14.326 32-32 32s-32-14.326-32-32 14.326-32 32-32 32 14.326 32 32z","M704 416c0 17.674-14.326 32-32 32s-32-14.326-32-32 14.326-32 32-32 32 14.326 32 32z","M512 0c-282.77 0-512 229.23-512 512s229.23 512 512 512 512-229.23 512-512-229.23-512-512-512zM256 416c0-53.020 42.98-96 96-96s96 42.98 96 96-42.98 96-96 96-96-42.98-96-96zM640 768h-256v-64h256v64zM672 512c-53.020 0-96-42.98-96-96s42.98-96 96-96 96 42.98 96 96-42.98 96-96 96z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["baffled","emoticon","smiley","shocked","face"],"defaultCode":59892,"grid":16},"attrs":[],"properties":{"ligatures":"baffled2, emoticon22","name":"baffled2","id":244,"order":631,"prevSize":32,"code":60277},"setIdx":1,"setId":0,"iconIdx":244},{"icon":{"paths":["M512 1024c282.77 0 512-229.23 512-512s-229.23-512-512-512-512 229.23-512 512 229.23 512 512 512zM512 96c229.75 0 416 186.25 416 416s-186.25 416-416 416-416-186.25-416-416 186.25-416 416-416zM256 320c0-35.346 28.654-64 64-64s64 28.654 64 64c0 35.346-28.654 64-64 64s-64-28.654-64-64zM640 320c0-35.346 28.654-64 64-64s64 28.654 64 64c0 35.346-28.654 64-64 64s-64-28.654-64-64zM726.106 640h64.864c9.246 72.506-32.452 144.53-103.958 170.56-82.904 30.176-174.9-12.716-205.080-95.616-18.108-49.744-73.306-75.482-123.048-57.372-45.562 16.588-70.956 64.298-60.988 110.424h-64.86c-9.242-72.508 32.45-144.528 103.956-170.56 82.904-30.178 174.902 12.716 205.082 95.614 18.104 49.748 73.306 75.482 123.044 57.372 45.562-16.584 70.956-64.298 60.988-110.422z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["confused","emoticon","smiley","face","bewildered"],"defaultCode":59893,"grid":16},"attrs":[],"properties":{"ligatures":"confused, emoticon23","name":"confused","id":245,"order":632,"prevSize":32,"code":60278},"setIdx":1,"setId":0,"iconIdx":245},{"icon":{"paths":["M512 0c-282.77 0-512 229.23-512 512s229.226 512 512 512c282.77 0 512-229.23 512-512s-229.23-512-512-512zM704 256c35.346 0 64 28.654 64 64s-28.654 64-64 64-64-28.654-64-64c0-35.346 28.654-64 64-64zM320 256c35.346 0 64 28.654 64 64s-28.654 64-64 64-64-28.654-64-64c0-35.346 28.654-64 64-64zM687.010 810.56c-82.902 30.18-174.9-12.712-205.080-95.614-18.108-49.742-73.306-75.478-123.048-57.372-45.562 16.588-70.958 64.296-60.988 110.424h-64.86c-9.244-72.508 32.45-144.532 103.956-170.56 82.904-30.18 174.902 12.712 205.082 95.614 18.108 49.742 73.306 75.476 123.046 57.37 45.562-16.584 70.958-64.294 60.988-110.422h64.864c9.24 72.506-32.454 144.532-103.96 170.56z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["confused","emoticon","smiley","face","bewildered"],"defaultCode":59894,"grid":16},"attrs":[],"properties":{"ligatures":"confused2, emoticon24","name":"confused2","id":246,"order":633,"prevSize":32,"code":60279},"setIdx":1,"setId":0,"iconIdx":246},{"icon":{"paths":["M512 1024c282.77 0 512-229.23 512-512s-229.23-512-512-512-512 229.23-512 512 229.23 512 512 512zM512 96c229.75 0 416 186.25 416 416s-186.25 416-416 416-416-186.25-416-416 186.25-416 416-416zM256 320c0 35.346 28.654 64 64 64s64-28.654 64-64-28.654-64-64-64-64 28.654-64 64zM640 320c0 35.346 28.654 64 64 64s64-28.654 64-64-28.654-64-64-64-64 28.654-64 64zM384 704h256v64h-256v-64z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["neutral","emoticon","smiley","face"],"defaultCode":59895,"grid":16},"attrs":[],"properties":{"ligatures":"neutral, emoticon25","name":"neutral","id":247,"order":634,"prevSize":32,"code":60280},"setIdx":1,"setId":0,"iconIdx":247},{"icon":{"paths":["M512 0c-282.77 0-512 229.23-512 512s229.226 512 512 512c282.77 0 512-229.23 512-512s-229.23-512-512-512zM640 768h-256v-64h256v64zM704 256c35.346 0 64 28.654 64 64s-28.654 64-64 64-64-28.654-64-64c0-35.346 28.654-64 64-64zM320 256c35.346 0 64 28.654 64 64s-28.654 64-64 64-64-28.654-64-64c0-35.346 28.654-64 64-64z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["neutral","emoticon","smiley","face"],"defaultCode":59896,"grid":16},"attrs":[],"properties":{"ligatures":"neutral2, emoticon26","name":"neutral2","id":248,"order":635,"prevSize":32,"code":60281},"setIdx":1,"setId":0,"iconIdx":248},{"icon":{"paths":["M512 1024c282.77 0 512-229.23 512-512s-229.23-512-512-512-512 229.23-512 512 229.23 512 512 512zM512 96c229.75 0 416 186.25 416 416s-186.25 416-416 416-416-186.25-416-416 186.25-416 416-416zM256 320c0-35.346 28.654-64 64-64s64 28.654 64 64-28.654 64-64 64-64-28.654-64-64zM640 320c0-35.346 28.654-64 64-64s64 28.654 64 64-28.654 64-64 64-64-28.654-64-64z","M675.882 540.118c-37.49-37.49-98.276-37.49-135.766 0s-37.49 98.276 0 135.766c1.204 1.204 2.434 2.368 3.684 3.492 86.528 78.512 288.2-1.842 288.2-103.376-62 40-110.45 9.786-156.118-35.882z","M348.118 540.118c37.49-37.49 98.276-37.49 135.766 0s37.49 98.276 0 135.766c-1.204 1.204-2.434 2.368-3.684 3.492-86.528 78.512-288.2-1.842-288.2-103.376 62 40 110.45 9.786 156.118-35.882z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["hipster","emoticon","smiley","mustache","face"],"defaultCode":59897,"grid":16},"attrs":[],"properties":{"ligatures":"hipster, emoticon27","name":"hipster","id":249,"order":636,"prevSize":32,"code":60282},"setIdx":1,"setId":0,"iconIdx":249},{"icon":{"paths":["M512 0c-282.77 0-512 229.23-512 512s229.23 512 512 512 512-229.23 512-512-229.23-512-512-512zM704 256c35.346 0 64 28.654 64 64s-28.654 64-64 64-64-28.654-64-64 28.654-64 64-64zM320 256c35.346 0 64 28.654 64 64s-28.654 64-64 64-64-28.654-64-64 28.654-64 64-64zM543.8 679.376c-1.25-1.124-2.48-2.29-3.684-3.492-18.74-18.74-28.112-43.3-28.118-67.864-0.004 24.562-9.376 49.124-28.118 67.864-1.204 1.204-2.434 2.368-3.684 3.492-86.524 78.512-288.196-1.842-288.196-103.376 62 40 110.45 9.786 156.118-35.882 37.49-37.49 98.276-37.49 135.766 0 18.74 18.74 28.112 43.3 28.118 67.864 0.004-24.562 9.376-49.124 28.118-67.864 37.49-37.49 98.276-37.49 135.766 0 45.664 45.668 94.114 75.882 156.114 35.882 0 101.534-201.672 181.888-288.2 103.376z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["hipster","emoticon","smiley","mustache","face"],"defaultCode":59898,"grid":16},"attrs":[],"properties":{"ligatures":"hipster2, emoticon28","name":"hipster2","id":250,"order":637,"prevSize":32,"code":60283},"setIdx":1,"setId":0,"iconIdx":250},{"icon":{"paths":["M512 1024c282.77 0 512-229.23 512-512s-229.23-512-512-512-512 229.23-512 512 229.23 512 512 512zM512 96c229.75 0 416 186.25 416 416s-186.25 416-416 416-416-186.25-416-416 186.25-416 416-416zM745.74 601.62l22.488 76.776-437.008 128.002-22.488-76.776zM256 320c0-35.346 28.654-64 64-64s64 28.654 64 64c0 35.346-28.654 64-64 64s-64-28.654-64-64zM640 320c0-35.346 28.654-64 64-64s64 28.654 64 64c0 35.346-28.654 64-64 64s-64-28.654-64-64z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["wondering","emoticon","smiley","face","question"],"defaultCode":59899,"grid":16},"attrs":[],"properties":{"ligatures":"wondering, emoticon29","name":"wondering","id":251,"order":638,"prevSize":32,"code":60284},"setIdx":1,"setId":0,"iconIdx":251},{"icon":{"paths":["M512 0c-282.77 0-512 229.23-512 512s229.23 512 512 512 512-229.23 512-512-229.23-512-512-512zM704 256c35.346 0 64 28.654 64 64s-28.654 64-64 64-64-28.654-64-64 28.654-64 64-64zM256 320c0-35.346 28.654-64 64-64s64 28.654 64 64-28.654 64-64 64-64-28.654-64-64zM331.244 806.386l-22.488-76.774 437-128 22.488 76.774-437 128z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["wondering","emoticon","smiley","face","question"],"defaultCode":59900,"grid":16},"attrs":[],"properties":{"ligatures":"wondering2, emoticon30","name":"wondering2","id":252,"order":639,"prevSize":32,"code":60285},"setIdx":1,"setId":0,"iconIdx":252},{"icon":{"paths":["M512 1024c282.77 0 512-229.23 512-512s-229.23-512-512-512-512 229.23-512 512 229.23 512 512 512zM512 96c229.75 0 416 186.25 416 416s-186.25 416-416 416-416-186.25-416-416 186.25-416 416-416z","M640 672c0 88.366-57.308 160-128.002 160s-128.002-71.634-128.002-160c0-88.366 57.308-160 128.002-160s128.002 71.634 128.002 160z","M416 340c-8.19 0-16.378-3.124-22.626-9.374-19.334-19.332-63.412-19.332-82.746 0-12.496 12.498-32.758 12.498-45.254 0-12.498-12.496-12.498-32.758 0-45.254 44.528-44.53 128.726-44.53 173.254 0 12.498 12.496 12.498 32.758 0 45.254-6.248 6.25-14.438 9.374-22.628 9.374z","M736 340c-8.19 0-16.378-3.124-22.626-9.374-19.332-19.332-63.414-19.332-82.746 0-12.496 12.498-32.758 12.498-45.254 0-12.498-12.496-12.498-32.758 0-45.254 44.528-44.53 128.726-44.53 173.254 0 12.498 12.496 12.498 32.758 0 45.254-6.248 6.25-14.438 9.374-22.628 9.374z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["sleepy","emoticon","smiley","face"],"defaultCode":59901,"grid":16},"attrs":[],"properties":{"ligatures":"sleepy, emoticon31","name":"sleepy","id":253,"order":640,"prevSize":32,"code":60286},"setIdx":1,"setId":0,"iconIdx":253},{"icon":{"paths":["M512 0c-282.77 0-512 229.23-512 512s229.23 512 512 512 512-229.23 512-512-229.23-512-512-512zM310.628 330.626c-12.496 12.498-32.758 12.498-45.254 0-12.498-12.496-12.498-32.758 0-45.254 44.528-44.53 128.726-44.53 173.254 0 12.498 12.496 12.498 32.758 0 45.254-6.248 6.25-14.438 9.374-22.628 9.374s-16.378-3.124-22.626-9.374c-19.334-19.332-63.412-19.332-82.746 0zM511.998 832c-70.694 0-128.002-71.634-128.002-160s57.308-160 128.002-160 128.002 71.634 128.002 160-57.308 160-128.002 160zM758.628 330.626c-6.248 6.25-14.438 9.374-22.628 9.374s-16.378-3.124-22.626-9.374c-19.332-19.332-63.414-19.332-82.746 0-12.496 12.498-32.758 12.498-45.254 0-12.498-12.496-12.498-32.758 0-45.254 44.528-44.53 128.726-44.53 173.254 0 12.498 12.498 12.498 32.758 0 45.254z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["sleepy","emoticon","smiley","face"],"defaultCode":59902,"grid":16},"attrs":[],"properties":{"ligatures":"sleepy2, emoticon32","name":"sleepy2","id":254,"order":641,"prevSize":32,"code":60287},"setIdx":1,"setId":0,"iconIdx":254},{"icon":{"paths":["M366.312 283.378c-34.742-17.37-69.102-26.060-70.548-26.422-17.146-4.288-34.518 6.138-38.806 23.284-4.284 17.144 6.14 34.518 23.282 38.804 17.626 4.45 38.522 12.12 56.936 21.35-10.648 11.43-17.174 26.752-17.174 43.606 0 35.346 28.654 64 64 64s64-28.654 64-64c0-1.17-0.036-2.33-0.098-3.484-2.032-47.454-45.212-78.946-81.592-97.138z","M512 0c-282.77 0-512 229.23-512 512s229.23 512 512 512 512-229.23 512-512-229.23-512-512-512zM236.498 823.664c10.706 5.324 22.756 8.336 35.502 8.336h480c12.746 0 24.796-3.012 35.502-8.338-73.378 64.914-169.828 104.338-275.502 104.338-105.672 0-202.124-39.424-275.502-104.336zM256 752v-96c0-8.674 7.328-16 16-16h112v128h-112c-8.672 0-16-7.326-16-16zM448 768v-128h128v128h-128zM640 768v-128h112c8.674 0 16 7.326 16 16v96c0 8.674-7.326 16-16 16h-112zM823.662 787.502c5.326-10.706 8.338-22.756 8.338-35.502v-96c0-44.112-35.888-80-80-80h-480c-44.112 0-80 35.888-80 80v96c0 12.746 3.012 24.796 8.336 35.502-64.912-73.378-104.336-169.828-104.336-275.502 0-229.75 186.25-416 416-416s416 186.25 416 416c0 105.674-39.424 202.124-104.338 275.502z","M728.236 256.956c-1.448 0.362-35.806 9.052-70.548 26.422-36.378 18.192-79.558 49.684-81.592 97.138-0.060 1.154-0.098 2.314-0.098 3.484 0 35.346 28.654 64 64 64s64-28.654 64-64c0-16.854-6.526-32.176-17.174-43.606 18.414-9.23 39.31-16.9 56.936-21.35 17.142-4.286 27.566-21.66 23.284-38.804-4.29-17.146-21.662-27.572-38.808-23.284z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["frustrated","emoticon","smiley","face","angry"],"defaultCode":59903,"grid":16},"attrs":[],"properties":{"ligatures":"frustrated, emoticon33","name":"frustrated","id":255,"order":642,"prevSize":32,"code":60288},"setIdx":1,"setId":0,"iconIdx":255},{"icon":{"paths":["M256 656v96c0 8.674 7.328 16 16 16h112v-128h-112c-8.672 0-16 7.326-16 16z","M448 640h128v128h-128v-128z","M752 640h-112v128h112c8.674 0 16-7.326 16-16v-96c0-8.674-7.326-16-16-16z","M512 0c-282.77 0-512 229.23-512 512s229.23 512 512 512 512-229.23 512-512-229.23-512-512-512zM576.096 380.516c2.034-47.454 45.212-78.946 81.592-97.138 34.742-17.37 69.102-26.060 70.548-26.422 17.146-4.288 34.518 6.138 38.806 23.284 4.284 17.144-6.14 34.518-23.284 38.804-17.624 4.45-38.522 12.12-56.936 21.35 10.648 11.43 17.174 26.752 17.174 43.606 0 35.346-28.654 64-64 64s-64-28.654-64-64c0.002-1.17 0.040-2.33 0.1-3.484zM256.958 280.24c4.288-17.146 21.66-27.572 38.806-23.284 1.446 0.362 35.806 9.052 70.548 26.422 36.38 18.192 79.56 49.684 81.592 97.138 0.062 1.154 0.098 2.314 0.098 3.484 0 35.346-28.654 64-64 64s-64-28.654-64-64c0-16.854 6.526-32.176 17.174-43.606-18.414-9.23-39.31-16.9-56.936-21.35-17.142-4.286-27.566-21.66-23.282-38.804zM832 752c0 44.112-35.888 80-80 80h-480c-44.112 0-80-35.888-80-80v-96c0-44.112 35.888-80 80-80h480c44.112 0 80 35.888 80 80v96z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["frustrated","emoticon","smiley","face","angry"],"defaultCode":59904,"grid":16},"attrs":[],"properties":{"ligatures":"frustrated2, emoticon34","name":"frustrated2","id":256,"order":643,"prevSize":32,"code":60289},"setIdx":1,"setId":0,"iconIdx":256},{"icon":{"paths":["M512 1024c282.77 0 512-229.23 512-512s-229.23-512-512-512-512 229.23-512 512 229.23 512 512 512zM512 96c229.75 0 416 186.25 416 416s-186.25 416-416 416-416-186.25-416-416 186.25-416 416-416z","M800 384h-128c-17.674 0-32-14.328-32-32s14.326-32 32-32h128c17.674 0 32 14.328 32 32s-14.326 32-32 32z","M352 384h-128c-17.672 0-32-14.328-32-32s14.328-32 32-32h128c17.672 0 32 14.328 32 32s-14.328 32-32 32z","M608 856c-8.19 0-16.378-3.124-22.626-9.374-4.582-4.582-29.42-14.626-73.374-14.626s-68.79 10.044-73.374 14.626c-12.496 12.496-32.758 12.496-45.254 0-12.498-12.496-12.498-32.758 0-45.254 30.122-30.12 92.994-33.372 118.628-33.372 25.632 0 88.506 3.252 118.626 33.374 12.498 12.496 12.498 32.758 0 45.254-6.248 6.248-14.436 9.372-22.626 9.372z","M736 576c-17.674 0-32-14.326-32-32v-64c0-17.672 14.326-32 32-32s32 14.328 32 32v64c0 17.674-14.326 32-32 32z","M736 768c-17.674 0-32-14.326-32-32v-64c0-17.674 14.326-32 32-32s32 14.326 32 32v64c0 17.674-14.326 32-32 32z","M288 576c-17.672 0-32-14.326-32-32v-64c0-17.672 14.328-32 32-32s32 14.328 32 32v64c0 17.674-14.328 32-32 32z","M288 768c-17.672 0-32-14.326-32-32v-64c0-17.674 14.328-32 32-32s32 14.326 32 32v64c0 17.674-14.328 32-32 32z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["crying","emoticon","smiley","face"],"defaultCode":59905,"grid":16},"attrs":[],"properties":{"ligatures":"crying, emoticon35","name":"crying","id":257,"order":644,"prevSize":32,"code":60290},"setIdx":1,"setId":0,"iconIdx":257},{"icon":{"paths":["M512 0c-282.77 0-512 229.23-512 512s229.23 512 512 512 512-229.23 512-512-229.23-512-512-512zM320 736c0 17.674-14.328 32-32 32s-32-14.326-32-32v-64c0-17.674 14.328-32 32-32s32 14.326 32 32v64zM320 544c0 17.674-14.328 32-32 32s-32-14.326-32-32v-64c0-17.672 14.328-32 32-32s32 14.328 32 32v64zM352 384h-128c-17.672 0-32-14.328-32-32s14.328-32 32-32h128c17.672 0 32 14.328 32 32s-14.328 32-32 32zM630.626 846.626c-6.248 6.25-14.436 9.374-22.626 9.374s-16.378-3.124-22.626-9.374c-4.582-4.582-29.42-14.626-73.374-14.626s-68.79 10.044-73.374 14.626c-12.496 12.496-32.758 12.496-45.254 0-12.498-12.496-12.498-32.758 0-45.254 30.122-30.12 92.994-33.372 118.628-33.372 25.632 0 88.506 3.252 118.626 33.374 12.498 12.496 12.498 32.756 0 45.252zM768 736c0 17.674-14.326 32-32 32s-32-14.326-32-32v-64c0-17.674 14.326-32 32-32s32 14.326 32 32v64zM768 544c0 17.674-14.326 32-32 32s-32-14.326-32-32v-64c0-17.672 14.326-32 32-32s32 14.328 32 32v64zM800 384h-128c-17.674 0-32-14.328-32-32s14.326-32 32-32h128c17.674 0 32 14.328 32 32s-14.326 32-32 32z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["crying","emoticon","smiley","face"],"defaultCode":59906,"grid":16},"attrs":[],"properties":{"ligatures":"crying2, emoticon36","name":"crying2","id":258,"order":645,"prevSize":32,"code":60291},"setIdx":1,"setId":0,"iconIdx":258},{"icon":{"paths":["M960 608v-160c0-52.934-43.066-96-96-96-17.104 0-33.176 4.494-47.098 12.368-17.076-26.664-46.958-44.368-80.902-44.368-24.564 0-47.004 9.274-64 24.504-16.996-15.23-39.436-24.504-64-24.504-11.214 0-21.986 1.934-32 5.484v-229.484c0-52.934-43.066-96-96-96s-96 43.066-96 96v394.676l-176.018-93.836c-14.536-8.4-31.126-12.84-47.982-12.84-52.934 0-96 43.066-96 96 0 26.368 10.472 50.954 29.49 69.226 0.248 0.238 0.496 0.47 0.75 0.7l239.17 218.074h-45.41c-17.672 0-32 14.326-32 32v192c0 17.674 14.328 32 32 32h640c17.674 0 32-14.326 32-32v-192c0-17.674-14.326-32-32-32h-44.222l72.844-145.69c2.222-4.442 3.378-9.342 3.378-14.31zM896 864c0 17.674-14.326 32-32 32s-32-14.326-32-32 14.326-32 32-32 32 14.326 32 32zM896 600.446l-83.776 167.554h-383.826l-290.818-265.166c-6.18-6.070-9.58-14.164-9.58-22.834 0-17.644 14.356-32 32-32 5.46 0 10.612 1.31 15.324 3.894 0.53 0.324 1.070 0.632 1.622 0.926l224 119.416c9.92 5.288 21.884 4.986 31.52-0.8 9.638-5.782 15.534-16.196 15.534-27.436v-448c0-17.644 14.356-32 32-32s32 14.356 32 32v320c0 17.672 14.326 32 32 32s32-14.328 32-32c0-17.644 14.356-32 32-32s32 14.356 32 32c0 17.672 14.326 32 32 32s32-14.328 32-32c0-17.644 14.356-32 32-32s32 14.356 32 32v32c0 17.672 14.326 32 32 32s32-14.328 32-32c0-17.644 14.356-32 32-32s32 14.356 32 32v152.446z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["point-up","finger","direction","hand"],"defaultCode":59907,"grid":16},"attrs":[],"properties":{"ligatures":"point-up, finger","name":"point-up","id":259,"order":646,"prevSize":32,"code":60292},"setIdx":1,"setId":0,"iconIdx":259},{"icon":{"paths":["M416 960h160c52.934 0 96-43.066 96-96 0-17.104-4.494-33.176-12.368-47.098 26.664-17.076 44.368-46.958 44.368-80.902 0-24.564-9.276-47.004-24.504-64 15.228-16.996 24.504-39.436 24.504-64 0-11.214-1.934-21.986-5.484-32h229.484c52.934 0 96-43.066 96-96s-43.066-96-96-96h-394.676l93.836-176.018c8.4-14.536 12.84-31.126 12.84-47.982 0-52.934-43.066-96-96-96-26.368 0-50.954 10.472-69.226 29.49-0.238 0.248-0.47 0.496-0.7 0.75l-218.074 239.17v-45.41c0-17.672-14.326-32-32-32h-192c-17.674 0-32 14.328-32 32v640c0 17.674 14.326 32 32 32h192c17.674 0 32-14.326 32-32v-44.222l145.69 72.844c4.444 2.222 9.342 3.378 14.31 3.378zM160 896c-17.674 0-32-14.326-32-32s14.326-32 32-32 32 14.326 32 32-14.326 32-32 32zM423.556 896l-167.556-83.778v-383.824l265.168-290.818c6.066-6.18 14.162-9.58 22.832-9.58 17.644 0 32 14.356 32 32 0 5.46-1.308 10.612-3.894 15.324-0.324 0.53-0.632 1.070-0.926 1.622l-119.418 224c-5.288 9.92-4.986 21.884 0.8 31.52 5.784 9.638 16.198 15.534 27.438 15.534h448c17.644 0 32 14.356 32 32s-14.356 32-32 32h-320c-17.672 0-32 14.326-32 32s14.328 32 32 32c17.644 0 32 14.356 32 32s-14.356 32-32 32c-17.674 0-32 14.326-32 32s14.326 32 32 32c17.644 0 32 14.356 32 32s-14.356 32-32 32h-32c-17.674 0-32 14.326-32 32s14.326 32 32 32c17.644 0 32 14.356 32 32s-14.356 32-32 32h-152.444z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["point-right","finger","direction","hand"],"defaultCode":59908,"grid":16},"attrs":[],"properties":{"ligatures":"point-right, finger2","name":"point-right","id":260,"order":647,"prevSize":32,"code":60293},"setIdx":1,"setId":0,"iconIdx":260},{"icon":{"paths":["M960 416v160c0 52.934-43.066 96-96 96-17.104 0-33.176-4.494-47.098-12.368-17.076 26.662-46.96 44.368-80.902 44.368-24.564 0-47.004-9.276-64-24.504-16.996 15.228-39.436 24.504-64 24.504-11.214 0-21.986-1.934-32-5.484v229.484c0 52.934-43.066 96-96 96-52.936 0-96-43.066-96-96v-394.676l-176.018 93.836c-14.538 8.398-31.126 12.84-47.982 12.84-52.936 0-96-43.066-96-96 0-26.368 10.472-50.952 29.488-69.226 0.248-0.238 0.496-0.47 0.75-0.7l239.17-218.074h-45.408c-17.674 0-32-14.326-32-32v-192c0-17.674 14.326-32 32-32h640c17.674 0 32 14.326 32 32v192c0 17.674-14.326 32-32 32h-44.222l72.842 145.69c2.224 4.442 3.38 9.342 3.38 14.31zM896 160c0-17.674-14.326-32-32-32s-32 14.326-32 32 14.326 32 32 32 32-14.326 32-32zM896 423.554l-83.778-167.554h-383.824l-290.82 265.168c-6.18 6.066-9.578 14.162-9.578 22.832 0 17.644 14.356 32 32 32 5.458 0 10.612-1.308 15.324-3.894 0.53-0.324 1.070-0.632 1.622-0.926l224-119.416c9.92-5.288 21.884-4.986 31.52 0.8 9.638 5.782 15.534 16.196 15.534 27.436v448c0 17.644 14.356 32 32 32s32-14.356 32-32v-320c0-17.672 14.326-32 32-32s32 14.328 32 32c0 17.644 14.356 32 32 32s32-14.356 32-32c0-17.674 14.326-32 32-32s32 14.326 32 32c0 17.644 14.356 32 32 32s32-14.356 32-32v-32c0-17.674 14.326-32 32-32s32 14.326 32 32c0 17.644 14.356 32 32 32s32-14.356 32-32v-152.446z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["point-down","finger","direction","hand"],"defaultCode":59909,"grid":16},"attrs":[],"properties":{"ligatures":"point-down, finger3","name":"point-down","id":261,"order":648,"prevSize":32,"code":60294},"setIdx":1,"setId":0,"iconIdx":261},{"icon":{"paths":["M608 960h-160c-52.934 0-96-43.066-96-96 0-17.104 4.494-33.176 12.368-47.098-26.662-17.076-44.368-46.958-44.368-80.902 0-24.564 9.276-47.004 24.504-64-15.228-16.996-24.504-39.436-24.504-64 0-11.214 1.934-21.986 5.484-32h-229.484c-52.934 0-96-43.066-96-96 0-52.936 43.066-96 96-96h394.676l-93.836-176.018c-8.398-14.536-12.84-31.126-12.84-47.982 0-52.936 43.066-96 96-96 26.368 0 50.952 10.472 69.224 29.488 0.238 0.248 0.472 0.496 0.7 0.75l218.076 239.17v-45.408c0-17.674 14.326-32 32-32h192c17.674 0 32 14.326 32 32v640c0 17.674-14.326 32-32 32h-192c-17.674 0-32-14.326-32-32v-44.222l-145.69 72.844c-4.442 2.222-9.34 3.378-14.31 3.378zM864 896c17.674 0 32-14.326 32-32s-14.326-32-32-32-32 14.326-32 32 14.326 32 32 32zM600.446 896l167.554-83.778v-383.824l-265.168-290.82c-6.066-6.18-14.162-9.578-22.832-9.578-17.644 0-32 14.356-32 32 0 5.458 1.308 10.612 3.894 15.324 0.324 0.53 0.632 1.070 0.926 1.622l119.416 224c5.29 9.92 4.988 21.884-0.798 31.52-5.784 9.638-16.198 15.534-27.438 15.534h-448c-17.644 0-32 14.356-32 32s14.356 32 32 32h320c17.672 0 32 14.326 32 32s-14.328 32-32 32c-17.644 0-32 14.356-32 32s14.356 32 32 32c17.674 0 32 14.326 32 32s-14.326 32-32 32c-17.644 0-32 14.356-32 32s14.356 32 32 32h32c17.674 0 32 14.326 32 32s-14.326 32-32 32c-17.644 0-32 14.356-32 32s14.356 32 32 32h152.446z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["point-left","finger","direction","hand"],"defaultCode":59910,"grid":16},"attrs":[],"properties":{"ligatures":"point-left, finger4","name":"point-left","id":262,"order":649,"prevSize":32,"code":60295},"setIdx":1,"setId":0,"iconIdx":262},{"icon":{"paths":["M512 92.774l429.102 855.226h-858.206l429.104-855.226zM512 0c-22.070 0-44.14 14.882-60.884 44.648l-437.074 871.112c-33.486 59.532-5 108.24 63.304 108.24h869.308c68.3 0 96.792-48.708 63.3-108.24h0.002l-437.074-871.112c-16.742-29.766-38.812-44.648-60.882-44.648v0z","M576 832c0 35.346-28.654 64-64 64s-64-28.654-64-64c0-35.346 28.654-64 64-64s64 28.654 64 64z","M512 704c-35.346 0-64-28.654-64-64v-192c0-35.346 28.654-64 64-64s64 28.654 64 64v192c0 35.346-28.654 64-64 64z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["warning","sign"],"defaultCode":59911,"grid":16},"attrs":[],"properties":{"ligatures":"warning, sign","name":"warning","id":263,"order":650,"prevSize":32,"code":60296},"setIdx":1,"setId":0,"iconIdx":263},{"icon":{"paths":["M512 96c-111.118 0-215.584 43.272-294.156 121.844s-121.844 183.038-121.844 294.156c0 111.118 43.272 215.584 121.844 294.156s183.038 121.844 294.156 121.844c111.118 0 215.584-43.272 294.156-121.844s121.844-183.038 121.844-294.156c0-111.118-43.272-215.584-121.844-294.156s-183.038-121.844-294.156-121.844zM512 0v0c282.77 0 512 229.23 512 512s-229.23 512-512 512c-282.77 0-512-229.23-512-512s229.23-512 512-512zM448 704h128v128h-128zM448 192h128v384h-128z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["notification","warning","notice","note","exclamation"],"defaultCode":59912,"grid":16},"attrs":[],"properties":{"ligatures":"notification, warning2","name":"notification","id":264,"order":651,"prevSize":32,"code":60297},"setIdx":1,"setId":0,"iconIdx":264},{"icon":{"paths":["M448 704h128v128h-128zM704 256c35.346 0 64 28.654 64 64v192l-192 128h-128v-64l192-128v-64h-320v-128h384zM512 96c-111.118 0-215.584 43.272-294.156 121.844s-121.844 183.038-121.844 294.156c0 111.118 43.272 215.584 121.844 294.156s183.038 121.844 294.156 121.844c111.118 0 215.584-43.272 294.156-121.844s121.844-183.038 121.844-294.156c0-111.118-43.272-215.584-121.844-294.156s-183.038-121.844-294.156-121.844zM512 0v0c282.77 0 512 229.23 512 512s-229.23 512-512 512c-282.77 0-512-229.23-512-512s229.23-512 512-512z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["question","help","support"],"defaultCode":59913,"grid":16},"attrs":[],"properties":{"ligatures":"question, help","name":"question","id":265,"order":652,"prevSize":32,"code":60298},"setIdx":1,"setId":0,"iconIdx":265},{"icon":{"paths":["M992 384h-352v-352c0-17.672-14.328-32-32-32h-192c-17.672 0-32 14.328-32 32v352h-352c-17.672 0-32 14.328-32 32v192c0 17.672 14.328 32 32 32h352v352c0 17.672 14.328 32 32 32h192c17.672 0 32-14.328 32-32v-352h352c17.672 0 32-14.328 32-32v-192c0-17.672-14.328-32-32-32z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["plus","add","sum"],"defaultCode":59914,"grid":16},"attrs":[],"properties":{"ligatures":"plus, add","name":"plus","id":266,"order":653,"prevSize":32,"code":60299},"setIdx":1,"setId":0,"iconIdx":266},{"icon":{"paths":["M0 416v192c0 17.672 14.328 32 32 32h960c17.672 0 32-14.328 32-32v-192c0-17.672-14.328-32-32-32h-960c-17.672 0-32 14.328-32 32z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["minus","subtract","minimize","line"],"defaultCode":59915,"grid":16},"attrs":[],"properties":{"ligatures":"minus, subtract","name":"minus","id":267,"order":654,"prevSize":32,"code":60300},"setIdx":1,"setId":0,"iconIdx":267},{"icon":{"paths":["M448 304c0-26.4 21.6-48 48-48h32c26.4 0 48 21.6 48 48v32c0 26.4-21.6 48-48 48h-32c-26.4 0-48-21.6-48-48v-32z","M640 768h-256v-64h64v-192h-64v-64h192v256h64z","M512 0c-282.77 0-512 229.23-512 512s229.23 512 512 512 512-229.23 512-512-229.23-512-512-512zM512 928c-229.75 0-416-186.25-416-416s186.25-416 416-416 416 186.25 416 416-186.25 416-416 416z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["info","information"],"defaultCode":59916,"grid":16},"attrs":[],"properties":{"ligatures":"info, information","name":"info","id":268,"order":655,"prevSize":32,"code":60301},"setIdx":1,"setId":0,"iconIdx":268},{"icon":{"paths":["M512 0c-282.77 0-512 229.23-512 512s229.23 512 512 512 512-229.23 512-512-229.23-512-512-512zM512 928c-229.75 0-416-186.25-416-416s186.25-416 416-416 416 186.25 416 416-186.25 416-416 416z","M672 256l-160 160-160-160-96 96 160 160-160 160 96 96 160-160 160 160 96-96-160-160 160-160z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["cancel-circle","close","remove","delete"],"defaultCode":59917,"grid":16},"attrs":[],"properties":{"ligatures":"cancel-circle, close","name":"cancel-circle","id":269,"order":656,"prevSize":32,"code":60302},"setIdx":1,"setId":0,"iconIdx":269},{"icon":{"paths":["M874.040 149.96c-96.706-96.702-225.28-149.96-362.040-149.96s-265.334 53.258-362.040 149.96c-96.702 96.706-149.96 225.28-149.96 362.040s53.258 265.334 149.96 362.040c96.706 96.702 225.28 149.96 362.040 149.96s265.334-53.258 362.040-149.96c96.702-96.706 149.96-225.28 149.96-362.040s-53.258-265.334-149.96-362.040zM896 512c0 82.814-26.354 159.588-71.112 222.38l-535.266-535.268c62.792-44.758 139.564-71.112 222.378-71.112 211.738 0 384 172.262 384 384zM128 512c0-82.814 26.354-159.586 71.112-222.378l535.27 535.268c-62.794 44.756-139.568 71.11-222.382 71.11-211.738 0-384-172.262-384-384z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["blocked","forbidden","denied","banned"],"defaultCode":59918,"grid":16},"attrs":[],"properties":{"ligatures":"blocked, forbidden","name":"blocked","id":270,"order":657,"prevSize":32,"code":60303},"setIdx":1,"setId":0,"iconIdx":270},{"icon":{"paths":["M1014.662 822.66c-0.004-0.004-0.008-0.008-0.012-0.010l-310.644-310.65 310.644-310.65c0.004-0.004 0.008-0.006 0.012-0.010 3.344-3.346 5.762-7.254 7.312-11.416 4.246-11.376 1.824-24.682-7.324-33.83l-146.746-146.746c-9.148-9.146-22.45-11.566-33.828-7.32-4.16 1.55-8.070 3.968-11.418 7.31 0 0.004-0.004 0.006-0.008 0.010l-310.648 310.652-310.648-310.65c-0.004-0.004-0.006-0.006-0.010-0.010-3.346-3.342-7.254-5.76-11.414-7.31-11.38-4.248-24.682-1.826-33.83 7.32l-146.748 146.748c-9.148 9.148-11.568 22.452-7.322 33.828 1.552 4.16 3.97 8.072 7.312 11.416 0.004 0.002 0.006 0.006 0.010 0.010l310.65 310.648-310.65 310.652c-0.002 0.004-0.006 0.006-0.008 0.010-3.342 3.346-5.76 7.254-7.314 11.414-4.248 11.376-1.826 24.682 7.322 33.83l146.748 146.746c9.15 9.148 22.452 11.568 33.83 7.322 4.16-1.552 8.070-3.97 11.416-7.312 0.002-0.004 0.006-0.006 0.010-0.010l310.648-310.65 310.648 310.65c0.004 0.002 0.008 0.006 0.012 0.008 3.348 3.344 7.254 5.762 11.414 7.314 11.378 4.246 24.684 1.826 33.828-7.322l146.746-146.748c9.148-9.148 11.57-22.454 7.324-33.83-1.552-4.16-3.97-8.068-7.314-11.414z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["cross","cancel","close","quit","remove"],"defaultCode":59919,"grid":16},"attrs":[],"properties":{"ligatures":"cross, cancel","name":"cross","id":271,"order":658,"prevSize":32,"code":60304},"setIdx":1,"setId":0,"iconIdx":271},{"icon":{"paths":["M864 128l-480 480-224-224-160 160 384 384 640-640z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["checkmark","tick","correct","accept","ok"],"defaultCode":59920,"grid":16},"attrs":[],"properties":{"ligatures":"checkmark, tick","name":"checkmark","id":272,"order":659,"prevSize":32,"code":60305},"setIdx":1,"setId":0,"iconIdx":272},{"icon":{"paths":["M397.434 917.696l-397.868-391.6 197.378-194.27 200.49 197.332 429.62-422.852 197.378 194.27-626.998 617.12zM107.912 526.096l289.524 284.962 518.656-510.482-89.036-87.632-429.62 422.852-200.49-197.334-89.034 87.634z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["checkmark","tick","correct","accept","ok"],"defaultCode":59921,"grid":16},"attrs":[],"properties":{"ligatures":"checkmark2, tick2","name":"checkmark2","id":273,"order":660,"prevSize":32,"code":60306},"setIdx":1,"setId":0,"iconIdx":273},{"icon":{"paths":["M128 256h128v192h64v-384c0-35.2-28.8-64-64-64h-128c-35.2 0-64 28.8-64 64v384h64v-192zM128 64h128v128h-128v-128zM960 64v-64h-192c-35.202 0-64 28.8-64 64v320c0 35.2 28.798 64 64 64h192v-64h-192v-320h192zM640 160v-96c0-35.2-28.8-64-64-64h-192v448h192c35.2 0 64-28.8 64-64v-96c0-35.2-8.8-64-44-64 35.2 0 44-28.8 44-64zM576 384h-128v-128h128v128zM576 192h-128v-128h128v128zM832 576l-416 448-224-288 82-70 142 148 352-302z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["spell-check","spelling","correct"],"defaultCode":59922,"grid":16},"attrs":[],"properties":{"ligatures":"spell-check, spelling","name":"spell-check","id":274,"order":661,"prevSize":32,"code":60307},"setIdx":1,"setId":0,"iconIdx":274},{"icon":{"paths":["M384 512h-320v-128h320v-128l192 192-192 192zM1024 0v832l-384 192v-192h-384v-256h64v192h320v-576l256-128h-576v256h-64v-320z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["enter","signin","login"],"defaultCode":59923,"grid":16},"attrs":[],"properties":{"ligatures":"enter, signin","name":"enter","id":275,"order":662,"prevSize":32,"code":60308},"setIdx":1,"setId":0,"iconIdx":275},{"icon":{"paths":["M768 640v-128h-320v-128h320v-128l192 192zM704 576v256h-320v192l-384-192v-832h704v320h-64v-256h-512l256 128v576h256v-192z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["exit","signout","logout","quit","close"],"defaultCode":59924,"grid":16},"attrs":[],"properties":{"ligatures":"exit, signout","name":"exit","id":276,"order":663,"prevSize":32,"code":60309},"setIdx":1,"setId":0,"iconIdx":276},{"icon":{"paths":["M512 0c-282.77 0-512 229.23-512 512s229.23 512 512 512 512-229.23 512-512-229.23-512-512-512zM512 928c-229.75 0-416-186.25-416-416s186.25-416 416-416 416 186.25 416 416-186.25 416-416 416zM384 288l384 224-384 224z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["play","player"],"defaultCode":59925,"grid":16},"attrs":[],"properties":{"ligatures":"play2, player","name":"play2","id":277,"order":664,"prevSize":32,"code":60310},"setIdx":1,"setId":0,"iconIdx":277},{"icon":{"paths":["M512 0c-282.77 0-512 229.23-512 512s229.23 512 512 512 512-229.23 512-512-229.23-512-512-512zM512 928c-229.75 0-416-186.25-416-416s186.25-416 416-416 416 186.25 416 416-186.25 416-416 416zM320 320h128v384h-128zM576 320h128v384h-128z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["pause","player"],"defaultCode":59926,"grid":16},"attrs":[],"properties":{"ligatures":"pause, player2","name":"pause","id":278,"order":665,"prevSize":32,"code":60311},"setIdx":1,"setId":0,"iconIdx":278},{"icon":{"paths":["M512 0c-282.77 0-512 229.23-512 512s229.23 512 512 512 512-229.23 512-512-229.23-512-512-512zM512 928c-229.75 0-416-186.25-416-416s186.25-416 416-416 416 186.25 416 416-186.25 416-416 416zM320 320h384v384h-384z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["stop","player"],"defaultCode":59927,"grid":16},"attrs":[],"properties":{"ligatures":"stop, player3","name":"stop","id":279,"order":666,"prevSize":32,"code":60312},"setIdx":1,"setId":0,"iconIdx":279},{"icon":{"paths":["M512 0c-282.77 0-512 229.23-512 512s229.23 512 512 512 512-229.23 512-512-229.23-512-512-512zM512 928c-229.75 0-416-186.25-416-416s186.25-416 416-416 416 186.25 416 416-186.25 416-416 416z","M448 512l256-192v384z","M320 320h128v384h-128v-384z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["previous","player"],"defaultCode":59928,"grid":16},"attrs":[],"properties":{"ligatures":"previous, player4","name":"previous","id":280,"order":667,"prevSize":32,"code":60313},"setIdx":1,"setId":0,"iconIdx":280},{"icon":{"paths":["M512 0c282.77 0 512 229.23 512 512s-229.23 512-512 512-512-229.23-512-512 229.23-512 512-512zM512 928c229.75 0 416-186.25 416-416s-186.25-416-416-416-416 186.25-416 416 186.25 416 416 416z","M576 512l-256-192v384z","M704 320h-128v384h128v-384z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["next","player"],"defaultCode":59929,"grid":16},"attrs":[],"properties":{"ligatures":"next, player5","name":"next","id":281,"order":668,"prevSize":32,"code":60314},"setIdx":1,"setId":0,"iconIdx":281},{"icon":{"paths":["M512 1024c282.77 0 512-229.23 512-512s-229.23-512-512-512-512 229.23-512 512 229.23 512 512 512zM512 96c229.75 0 416 186.25 416 416s-186.25 416-416 416-416-186.25-416-416 186.25-416 416-416zM704 672l-224-160 224-160zM448 672l-224-160 224-160z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["backward","player"],"defaultCode":59930,"grid":16},"attrs":[],"properties":{"ligatures":"backward, player6","name":"backward","id":282,"order":669,"prevSize":32,"code":60315},"setIdx":1,"setId":0,"iconIdx":282},{"icon":{"paths":["M512 0c-282.77 0-512 229.23-512 512s229.23 512 512 512 512-229.23 512-512-229.23-512-512-512zM512 928c-229.75 0-416-186.25-416-416s186.25-416 416-416 416 186.25 416 416-186.25 416-416 416zM320 352l224 160-224 160zM576 352l224 160-224 160z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["forward","player"],"defaultCode":59931,"grid":16},"attrs":[],"properties":{"ligatures":"forward2, player7","name":"forward2","id":283,"order":670,"prevSize":32,"code":60316},"setIdx":1,"setId":0,"iconIdx":283},{"icon":{"paths":["M192 128l640 384-640 384z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["play","player"],"defaultCode":59932,"grid":16},"attrs":[],"properties":{"ligatures":"play3, player8","name":"play3","id":284,"order":671,"prevSize":32,"code":60317},"setIdx":1,"setId":0,"iconIdx":284},{"icon":{"paths":["M128 128h320v768h-320zM576 128h320v768h-320z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["pause","player"],"defaultCode":59933,"grid":16},"attrs":[],"properties":{"ligatures":"pause2, player9","name":"pause2","id":285,"order":672,"prevSize":32,"code":60318},"setIdx":1,"setId":0,"iconIdx":285},{"icon":{"paths":["M128 128h768v768h-768z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["stop","player","square"],"defaultCode":59934,"grid":16},"attrs":[],"properties":{"ligatures":"stop2, player10","name":"stop2","id":286,"order":673,"prevSize":32,"code":60319},"setIdx":1,"setId":0,"iconIdx":286},{"icon":{"paths":["M576 160v320l320-320v704l-320-320v320l-352-352z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["backward","player"],"defaultCode":59935,"grid":16},"attrs":[],"properties":{"ligatures":"backward2, player11","name":"backward2","id":287,"order":674,"prevSize":32,"code":60320},"setIdx":1,"setId":0,"iconIdx":287},{"icon":{"paths":["M512 864v-320l-320 320v-704l320 320v-320l352 352z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["forward","player"],"defaultCode":59936,"grid":16},"attrs":[],"properties":{"ligatures":"forward3, player12","name":"forward3","id":288,"order":675,"prevSize":32,"code":60321},"setIdx":1,"setId":0,"iconIdx":288},{"icon":{"paths":["M128 896v-768h128v352l320-320v320l320-320v704l-320-320v320l-320-320v352z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["first","player"],"defaultCode":59937,"grid":16},"attrs":[],"properties":{"ligatures":"first, player13","name":"first","id":289,"order":676,"prevSize":32,"code":60322},"setIdx":1,"setId":0,"iconIdx":289},{"icon":{"paths":["M896 128v768h-128v-352l-320 320v-320l-320 320v-704l320 320v-320l320 320v-352z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["last","player"],"defaultCode":59938,"grid":16},"attrs":[],"properties":{"ligatures":"last, player14","name":"last","id":290,"order":677,"prevSize":32,"code":60323},"setIdx":1,"setId":0,"iconIdx":290},{"icon":{"paths":["M256 896v-768h128v352l320-320v704l-320-320v352z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["previous","player"],"defaultCode":59939,"grid":16},"attrs":[],"properties":{"ligatures":"previous2, player15","name":"previous2","id":291,"order":678,"prevSize":32,"code":60324},"setIdx":1,"setId":0,"iconIdx":291},{"icon":{"paths":["M768 128v768h-128v-352l-320 320v-704l320 320v-352z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["next","player"],"defaultCode":59940,"grid":16},"attrs":[],"properties":{"ligatures":"next2, player16","name":"next2","id":292,"order":679,"prevSize":32,"code":60325},"setIdx":1,"setId":0,"iconIdx":292},{"icon":{"paths":["M0 768h1024v128h-1024zM512 128l512 512h-1024z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["eject","player"],"defaultCode":59941,"grid":16},"attrs":[],"properties":{"ligatures":"eject, player17","name":"eject","id":293,"order":680,"prevSize":32,"code":60326},"setIdx":1,"setId":0,"iconIdx":293},{"icon":{"paths":["M890.040 922.040c-12.286 0-24.566-4.686-33.942-14.056-18.744-18.746-18.744-49.136 0-67.882 87.638-87.642 135.904-204.16 135.904-328.1 0-123.938-48.266-240.458-135.904-328.098-18.744-18.746-18.744-49.138 0-67.882s49.138-18.744 67.882 0c105.77 105.772 164.022 246.4 164.022 395.98s-58.252 290.208-164.022 395.98c-9.372 9.372-21.656 14.058-33.94 14.058zM719.53 831.53c-12.286 0-24.566-4.686-33.942-14.056-18.744-18.744-18.744-49.136 0-67.882 131.006-131.006 131.006-344.17 0-475.176-18.744-18.746-18.744-49.138 0-67.882 18.744-18.742 49.138-18.744 67.882 0 81.594 81.59 126.53 190.074 126.53 305.466 0 115.39-44.936 223.876-126.53 305.47-9.372 9.374-21.656 14.060-33.94 14.060v0zM549.020 741.020c-12.286 0-24.568-4.686-33.942-14.058-18.746-18.746-18.746-49.134 0-67.88 81.1-81.1 81.1-213.058 0-294.156-18.746-18.746-18.746-49.138 0-67.882s49.136-18.744 67.882 0c118.53 118.53 118.53 311.392 0 429.922-9.372 9.368-21.656 14.054-33.94 14.054z","M416.006 960c-8.328 0-16.512-3.25-22.634-9.374l-246.626-246.626h-114.746c-17.672 0-32-14.326-32-32v-320c0-17.672 14.328-32 32-32h114.746l246.626-246.628c9.154-9.154 22.916-11.89 34.874-6.936 11.958 4.952 19.754 16.622 19.754 29.564v832c0 12.944-7.796 24.612-19.754 29.564-3.958 1.64-8.118 2.436-12.24 2.436z"],"width":1088,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["volume-high","volume","audio","speaker","player"],"defaultCode":59942,"grid":16},"attrs":[],"properties":{"ligatures":"volume-high, volume","name":"volume-high","id":294,"order":681,"prevSize":32,"code":60327},"setIdx":1,"setId":0,"iconIdx":294},{"icon":{"paths":["M719.53 831.53c-12.286 0-24.566-4.686-33.942-14.056-18.744-18.744-18.744-49.136 0-67.882 131.006-131.006 131.006-344.17 0-475.176-18.744-18.746-18.744-49.138 0-67.882 18.744-18.742 49.138-18.744 67.882 0 81.594 81.59 126.53 190.074 126.53 305.466 0 115.39-44.936 223.876-126.53 305.47-9.372 9.374-21.656 14.060-33.94 14.060v0zM549.020 741.020c-12.286 0-24.566-4.686-33.942-14.058-18.746-18.746-18.746-49.134 0-67.88 81.1-81.1 81.1-213.058 0-294.156-18.746-18.746-18.746-49.138 0-67.882s49.136-18.744 67.882 0c118.53 118.53 118.53 311.392 0 429.922-9.372 9.368-21.656 14.054-33.94 14.054z","M416.006 960c-8.328 0-16.512-3.25-22.634-9.374l-246.626-246.626h-114.746c-17.672 0-32-14.326-32-32v-320c0-17.672 14.328-32 32-32h114.746l246.626-246.628c9.154-9.154 22.916-11.89 34.874-6.936 11.958 4.952 19.754 16.622 19.754 29.564v832c0 12.944-7.796 24.612-19.754 29.564-3.958 1.64-8.118 2.436-12.24 2.436z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["volume-medium","volume","audio","speaker","player"],"defaultCode":59943,"grid":16},"attrs":[],"properties":{"ligatures":"volume-medium, volume2","name":"volume-medium","id":295,"order":682,"prevSize":32,"code":60328},"setIdx":1,"setId":0,"iconIdx":295},{"icon":{"paths":["M549.020 741.020c-12.286 0-24.566-4.686-33.942-14.058-18.746-18.746-18.746-49.134 0-67.88 81.1-81.1 81.1-213.058 0-294.156-18.746-18.746-18.746-49.138 0-67.882s49.136-18.744 67.882 0c118.53 118.53 118.53 311.392 0 429.922-9.372 9.368-21.656 14.054-33.94 14.054z","M416.006 960c-8.328 0-16.512-3.25-22.634-9.374l-246.626-246.626h-114.746c-17.672 0-32-14.326-32-32v-320c0-17.672 14.328-32 32-32h114.746l246.626-246.628c9.154-9.154 22.916-11.89 34.874-6.936 11.958 4.952 19.754 16.622 19.754 29.564v832c0 12.944-7.796 24.612-19.754 29.564-3.958 1.64-8.118 2.436-12.24 2.436z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["volume-low","volume","audio","speaker","player"],"defaultCode":59944,"grid":16},"attrs":[],"properties":{"ligatures":"volume-low, volume3","name":"volume-low","id":296,"order":683,"prevSize":32,"code":60329},"setIdx":1,"setId":0,"iconIdx":296},{"icon":{"paths":["M416.006 960c-8.328 0-16.512-3.25-22.634-9.374l-246.626-246.626h-114.746c-17.672 0-32-14.326-32-32v-320c0-17.672 14.328-32 32-32h114.746l246.626-246.628c9.154-9.154 22.916-11.89 34.874-6.936 11.958 4.952 19.754 16.622 19.754 29.564v832c0 12.944-7.796 24.612-19.754 29.564-3.958 1.64-8.118 2.436-12.24 2.436z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["volume-mute","volume","audio","speaker","player"],"defaultCode":59945,"grid":16},"attrs":[],"properties":{"ligatures":"volume-mute, volume4","name":"volume-mute","id":297,"order":684,"prevSize":32,"code":60330},"setIdx":1,"setId":0,"iconIdx":297},{"icon":{"paths":["M960 619.148v84.852h-84.852l-107.148-107.148-107.148 107.148h-84.852v-84.852l107.148-107.148-107.148-107.148v-84.852h84.852l107.148 107.148 107.148-107.148h84.852v84.852l-107.148 107.148 107.148 107.148z","M416.006 960c-8.328 0-16.512-3.25-22.634-9.374l-246.626-246.626h-114.746c-17.672 0-32-14.326-32-32v-320c0-17.672 14.328-32 32-32h114.746l246.626-246.628c9.154-9.154 22.916-11.89 34.874-6.936 11.958 4.952 19.754 16.622 19.754 29.564v832c0 12.944-7.796 24.612-19.754 29.564-3.958 1.64-8.118 2.436-12.24 2.436z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["volume-mute","volume","audio","player"],"defaultCode":59946,"grid":16},"attrs":[],"properties":{"ligatures":"volume-mute2, volume5","name":"volume-mute2","id":298,"order":685,"prevSize":32,"code":60331},"setIdx":1,"setId":0,"iconIdx":298},{"icon":{"paths":["M1024 576h-192v192h-128v-192h-192v-128h192v-192h128v192h192v128z","M416.006 960c-8.328 0-16.512-3.25-22.634-9.374l-246.626-246.626h-114.746c-17.672 0-32-14.326-32-32v-320c0-17.672 14.328-32 32-32h114.746l246.626-246.628c9.154-9.154 22.916-11.89 34.874-6.936 11.958 4.952 19.754 16.622 19.754 29.564v832c0 12.944-7.796 24.612-19.754 29.564-3.958 1.64-8.118 2.436-12.24 2.436z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["volume-increase","volume","audio","speaker","player"],"defaultCode":59947,"grid":16},"attrs":[],"properties":{"ligatures":"volume-increase, volume6","name":"volume-increase","id":299,"order":686,"prevSize":32,"code":60332},"setIdx":1,"setId":0,"iconIdx":299},{"icon":{"paths":["M512 448h512v128h-512v-128z","M416.006 960c-8.328 0-16.512-3.25-22.634-9.374l-246.626-246.626h-114.746c-17.672 0-32-14.326-32-32v-320c0-17.672 14.328-32 32-32h114.746l246.626-246.628c9.154-9.154 22.916-11.89 34.874-6.936 11.958 4.952 19.754 16.622 19.754 29.564v832c0 12.944-7.796 24.612-19.754 29.564-3.958 1.64-8.118 2.436-12.24 2.436z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["volume-decrease","volume","audio","speaker","player"],"defaultCode":59948,"grid":16},"attrs":[],"properties":{"ligatures":"volume-decrease, volume7","name":"volume-decrease","id":300,"order":687,"prevSize":32,"code":60333},"setIdx":1,"setId":0,"iconIdx":300},{"icon":{"paths":["M128 320h640v192l256-256-256-256v192h-768v384h128zM896 704h-640v-192l-256 256 256 256v-192h768v-384h-128z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["loop","repeat","player"],"defaultCode":59949,"grid":16},"attrs":[],"properties":{"ligatures":"loop, repeat","name":"loop","id":301,"order":688,"prevSize":32,"code":60334},"setIdx":1,"setId":0,"iconIdx":301},{"icon":{"paths":["M889.68 166.32c-93.608-102.216-228.154-166.32-377.68-166.32-282.77 0-512 229.23-512 512h96c0-229.75 186.25-416 416-416 123.020 0 233.542 53.418 309.696 138.306l-149.696 149.694h352v-352l-134.32 134.32z","M928 512c0 229.75-186.25 416-416 416-123.020 0-233.542-53.418-309.694-138.306l149.694-149.694h-352v352l134.32-134.32c93.608 102.216 228.154 166.32 377.68 166.32 282.77 0 512-229.23 512-512h-96z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["loop","repeat","player","reload","refresh","update","synchronize","arrows"],"defaultCode":59950,"grid":16},"attrs":[],"properties":{"ligatures":"loop2, repeat2","name":"loop2","id":302,"order":689,"prevSize":32,"code":60335},"setIdx":1,"setId":0,"iconIdx":302},{"icon":{"paths":["M783.988 752.012c-64.104 0-124.372-24.96-169.7-70.288l-102.288-102.282-102.276 102.27c-45.332 45.336-105.6 70.3-169.706 70.3-64.118 0-124.39-24.964-169.722-70.3-45.332-45.334-70.296-105.604-70.296-169.712s24.964-124.38 70.296-169.714c45.334-45.332 105.608-70.296 169.714-70.296 64.108 0 124.38 24.964 169.712 70.296l102.278 102.276 102.276-102.276c45.332-45.332 105.604-70.298 169.712-70.298 64.112 0 124.384 24.966 169.71 70.298 45.338 45.334 70.302 105.606 70.302 169.714 0 64.112-24.964 124.382-70.3 169.71-45.326 45.336-105.598 70.302-169.712 70.302zM681.72 614.288c27.322 27.31 63.64 42.354 102.268 42.352 38.634 0 74.958-15.044 102.276-42.362 27.316-27.322 42.364-63.644 42.364-102.278s-15.046-74.956-42.364-102.274c-27.32-27.318-63.64-42.364-102.276-42.364-38.632 0-74.956 15.044-102.278 42.364l-102.268 102.274 102.278 102.288zM240.012 367.362c-38.634 0-74.956 15.044-102.274 42.364-27.32 27.318-42.364 63.64-42.364 102.274 0 38.632 15.044 74.954 42.364 102.276 27.32 27.316 63.642 42.364 102.274 42.364 38.634 0 74.956-15.044 102.272-42.362l102.276-102.278-102.276-102.274c-27.318-27.32-63.64-42.366-102.272-42.364v0z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["infinite"],"defaultCode":59951,"grid":16},"attrs":[],"properties":{"ligatures":"infinite","name":"infinite","id":303,"order":690,"prevSize":32,"code":60336},"setIdx":1,"setId":0,"iconIdx":303},{"icon":{"paths":["M768 704h-101.49l-160-160 160-160h101.49v160l224-224-224-224v160h-128c-16.974 0-33.252 6.744-45.254 18.746l-178.746 178.744-178.746-178.746c-12-12-28.28-18.744-45.254-18.744h-192v128h165.49l160 160-160 160h-165.49v128h192c16.974 0 33.252-6.742 45.254-18.746l178.746-178.744 178.746 178.744c12.002 12.004 28.28 18.746 45.254 18.746h128v160l224-224-224-224v160z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["shuffle","random","player"],"defaultCode":59952,"grid":16},"attrs":[],"properties":{"ligatures":"shuffle, random","name":"shuffle","id":304,"order":691,"prevSize":32,"code":60337},"setIdx":1,"setId":0,"iconIdx":304},{"icon":{"paths":["M0 736l256-256 544 544 224-224-544-544 255.998-256h-735.998v736z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["arrow-up-left","up-left","arrow-top-left"],"defaultCode":59953,"grid":16},"attrs":[],"properties":{"ligatures":"arrow-up-left, up-left","name":"arrow-up-left","id":305,"order":692,"prevSize":32,"code":60338},"setIdx":1,"setId":0,"iconIdx":305},{"icon":{"paths":["M512 32l-480 480h288v512h384v-512h288z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["arrow-up","up","upload","top"],"defaultCode":59954,"grid":16},"attrs":[],"properties":{"ligatures":"arrow-up, up","name":"arrow-up","id":306,"order":693,"prevSize":32,"code":60339},"setIdx":1,"setId":0,"iconIdx":306},{"icon":{"paths":["M288 0l256 256-544 544 224 224 544-544 256 255.998v-735.998h-736z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["arrow-up-right","up-right","arrow-top-right"],"defaultCode":59955,"grid":16},"attrs":[],"properties":{"ligatures":"arrow-up-right, up-right","name":"arrow-up-right","id":307,"order":694,"prevSize":32,"code":60340},"setIdx":1,"setId":0,"iconIdx":307},{"icon":{"paths":["M992 512l-480-480v288h-512v384h512v288z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["arrow-right","right","next"],"defaultCode":59956,"grid":16},"attrs":[],"properties":{"ligatures":"arrow-right, right3","name":"arrow-right","id":308,"order":695,"prevSize":32,"code":60341},"setIdx":1,"setId":0,"iconIdx":308},{"icon":{"paths":["M1024 288l-256 256-544-544-224 224 544 544-255.998 256h735.998v-736z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["arrow-down-right","down-right","arrow-bottom-right"],"defaultCode":59957,"grid":16},"attrs":[],"properties":{"ligatures":"arrow-down-right, down-right","name":"arrow-down-right","id":309,"order":696,"prevSize":32,"code":60342},"setIdx":1,"setId":0,"iconIdx":309},{"icon":{"paths":["M512 992l480-480h-288v-512h-384v512h-288z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["arrow-down","down","download","bottom"],"defaultCode":59958,"grid":16},"attrs":[],"properties":{"ligatures":"arrow-down, down","name":"arrow-down","id":310,"order":697,"prevSize":32,"code":60343},"setIdx":1,"setId":0,"iconIdx":310},{"icon":{"paths":["M736 1024l-256-256 544-544-224-224-544 544-256-255.998v735.998h736z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["arrow-down-left","down-left","arrow-bottom-left"],"defaultCode":59959,"grid":16},"attrs":[],"properties":{"ligatures":"arrow-down-left, down-left","name":"arrow-down-left","id":311,"order":698,"prevSize":32,"code":60344},"setIdx":1,"setId":0,"iconIdx":311},{"icon":{"paths":["M32 512l480 480v-288h512v-384h-512v-288z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["arrow-left","left","previous"],"defaultCode":59960,"grid":16},"attrs":[],"properties":{"ligatures":"arrow-left, left3","name":"arrow-left","id":312,"order":699,"prevSize":32,"code":60345},"setIdx":1,"setId":0,"iconIdx":312},{"icon":{"paths":["M877.254 786.746l-530.744-530.746h229.49c35.346 0 64-28.654 64-64s-28.654-64-64-64h-384c-25.886 0-49.222 15.592-59.128 39.508-3.282 7.924-4.84 16.242-4.838 24.492h-0.034v384c0 35.346 28.654 64 64 64s64-28.654 64-64v-229.49l530.746 530.744c12.496 12.498 28.876 18.746 45.254 18.746s32.758-6.248 45.254-18.746c24.994-24.992 24.994-65.516 0-90.508z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["arrow-up-left","up-left","arrow-top-left"],"defaultCode":59961,"grid":16},"attrs":[],"properties":{"ligatures":"arrow-up-left2, up-left2","name":"arrow-up-left2","id":313,"order":700,"prevSize":32,"code":60346},"setIdx":1,"setId":0,"iconIdx":313},{"icon":{"paths":["M877.254 402.746l-320-320c-24.992-24.994-65.514-24.994-90.508 0l-320 320c-24.994 24.994-24.994 65.516 0 90.51 24.994 24.996 65.516 24.996 90.51 0l210.744-210.746v613.49c0 35.346 28.654 64 64 64s64-28.654 64-64v-613.49l210.746 210.746c12.496 12.496 28.876 18.744 45.254 18.744s32.758-6.248 45.254-18.746c24.994-24.994 24.994-65.514 0-90.508z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["arrow-up","up","upload","top"],"defaultCode":59962,"grid":16},"attrs":[],"properties":{"ligatures":"arrow-up2, up2","name":"arrow-up2","id":314,"order":701,"prevSize":32,"code":60347},"setIdx":1,"setId":0,"iconIdx":314},{"icon":{"paths":["M237.254 877.254l530.746-530.744v229.49c0 35.346 28.654 64 64 64s64-28.654 64-64v-384c0-25.884-15.594-49.222-39.508-59.126-7.924-3.284-16.242-4.84-24.492-4.838v-0.036h-384c-35.346 0-64 28.654-64 64 0 35.348 28.654 64 64 64h229.49l-530.744 530.746c-12.498 12.496-18.746 28.876-18.746 45.254s6.248 32.758 18.746 45.254c24.992 24.994 65.516 24.994 90.508 0z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["arrow-up-right","up-right","arrow-top-right"],"defaultCode":59963,"grid":16},"attrs":[],"properties":{"ligatures":"arrow-up-right2, up-right2","name":"arrow-up-right2","id":315,"order":702,"prevSize":32,"code":60348},"setIdx":1,"setId":0,"iconIdx":315},{"icon":{"paths":["M621.254 877.254l320-320c24.994-24.992 24.994-65.516 0-90.51l-320-320c-24.994-24.992-65.516-24.992-90.51 0-24.994 24.994-24.994 65.516 0 90.51l210.746 210.746h-613.49c-35.346 0-64 28.654-64 64s28.654 64 64 64h613.49l-210.746 210.746c-12.496 12.496-18.744 28.876-18.744 45.254s6.248 32.758 18.744 45.254c24.994 24.994 65.516 24.994 90.51 0z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["arrow-right","right","next"],"defaultCode":59964,"grid":16},"attrs":[],"properties":{"ligatures":"arrow-right2, right4","name":"arrow-right2","id":316,"order":703,"prevSize":32,"code":60349},"setIdx":1,"setId":0,"iconIdx":316},{"icon":{"paths":["M146.746 237.254l530.742 530.746h-229.488c-35.346 0-64 28.654-64 64s28.654 64 64 64h384c25.884 0 49.222-15.594 59.126-39.508 3.284-7.924 4.84-16.242 4.838-24.492h0.036v-384c0-35.346-28.654-64-64-64-35.348 0-64 28.654-64 64v229.49l-530.746-530.744c-12.496-12.498-28.874-18.746-45.254-18.746s-32.758 6.248-45.254 18.746c-24.994 24.992-24.994 65.516 0 90.508z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["arrow-down-right","down-right","arrow-bottom-right"],"defaultCode":59965,"grid":16},"attrs":[],"properties":{"ligatures":"arrow-down-right2, down-right2","name":"arrow-down-right2","id":317,"order":704,"prevSize":32,"code":60350},"setIdx":1,"setId":0,"iconIdx":317},{"icon":{"paths":["M877.254 621.254l-320 320c-24.992 24.994-65.514 24.994-90.508 0l-320-320c-24.994-24.994-24.994-65.516 0-90.51 24.994-24.996 65.516-24.996 90.51 0l210.744 210.746v-613.49c0-35.346 28.654-64 64-64s64 28.654 64 64v613.49l210.746-210.746c12.496-12.496 28.876-18.744 45.254-18.744s32.758 6.248 45.254 18.746c24.994 24.994 24.994 65.514 0 90.508z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["arrow-down","down","download","bottom"],"defaultCode":59966,"grid":16},"attrs":[],"properties":{"ligatures":"arrow-down2, down2","name":"arrow-down2","id":318,"order":705,"prevSize":32,"code":60351},"setIdx":1,"setId":0,"iconIdx":318},{"icon":{"paths":["M786.744 146.744l-530.744 530.744v-229.49c0-35.346-28.654-64-64-64s-64 28.654-64 64v384.002c0 25.886 15.592 49.222 39.508 59.128 7.924 3.282 16.242 4.84 24.492 4.836v0.036l384-0.002c35.344 0 64-28.654 64-63.998 0-35.348-28.656-64-64-64h-229.49l530.744-530.746c12.496-12.496 18.746-28.876 18.746-45.256 0-16.376-6.25-32.758-18.746-45.254-24.992-24.992-65.518-24.992-90.51 0v0z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["arrow-down-left","down-left","arrow-bottom-left"],"defaultCode":59967,"grid":16},"attrs":[],"properties":{"ligatures":"arrow-down-left2, down-left2","name":"arrow-down-left2","id":319,"order":706,"prevSize":32,"code":60352},"setIdx":1,"setId":0,"iconIdx":319},{"icon":{"paths":["M402.746 877.254l-320-320c-24.994-24.992-24.994-65.516 0-90.51l320-320c24.994-24.992 65.516-24.992 90.51 0 24.994 24.994 24.994 65.516 0 90.51l-210.746 210.746h613.49c35.346 0 64 28.654 64 64s-28.654 64-64 64h-613.49l210.746 210.746c12.496 12.496 18.744 28.876 18.744 45.254s-6.248 32.758-18.744 45.254c-24.994 24.994-65.516 24.994-90.51 0z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["arrow-left","left","previous"],"defaultCode":59968,"grid":16},"attrs":[],"properties":{"ligatures":"arrow-left2, left4","name":"arrow-left2","id":320,"order":707,"prevSize":32,"code":60353},"setIdx":1,"setId":0,"iconIdx":320},{"icon":{"paths":["M0 512c0 282.77 229.23 512 512 512s512-229.23 512-512-229.23-512-512-512-512 229.23-512 512zM928 512c0 229.75-186.25 416-416 416s-416-186.25-416-416 186.25-416 416-416 416 186.25 416 416z","M706.744 669.256l90.512-90.512-285.256-285.254-285.254 285.256 90.508 90.508 194.746-194.744z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["circle-up","up","circle-top","arrow"],"defaultCode":59969,"grid":16},"attrs":[],"properties":{"ligatures":"circle-up, up3","name":"circle-up","id":321,"order":708,"prevSize":32,"code":60354},"setIdx":1,"setId":0,"iconIdx":321},{"icon":{"paths":["M512 0c-282.77 0-512 229.23-512 512s229.23 512 512 512 512-229.23 512-512-229.23-512-512-512zM512 928c-229.75 0-416-186.25-416-416s186.25-416 416-416 416 186.25 416 416-186.25 416-416 416z","M354.744 706.744l90.512 90.512 285.254-285.256-285.256-285.254-90.508 90.508 194.744 194.746z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["circle-right","right","circle-next","arrow"],"defaultCode":59970,"grid":16},"attrs":[],"properties":{"ligatures":"circle-right, right5","name":"circle-right","id":322,"order":709,"prevSize":32,"code":60355},"setIdx":1,"setId":0,"iconIdx":322},{"icon":{"paths":["M1024 512c0-282.77-229.23-512-512-512s-512 229.23-512 512 229.23 512 512 512 512-229.23 512-512zM96 512c0-229.75 186.25-416 416-416s416 186.25 416 416-186.25 416-416 416-416-186.25-416-416z","M317.256 354.744l-90.512 90.512 285.256 285.254 285.254-285.256-90.508-90.508-194.746 194.744z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["circle-down","down","circle-bottom","arrow"],"defaultCode":59971,"grid":16},"attrs":[],"properties":{"ligatures":"circle-down, down3","name":"circle-down","id":323,"order":710,"prevSize":32,"code":60356},"setIdx":1,"setId":0,"iconIdx":323},{"icon":{"paths":["M512 1024c282.77 0 512-229.23 512-512s-229.23-512-512-512-512 229.23-512 512 229.23 512 512 512zM512 96c229.75 0 416 186.25 416 416s-186.25 416-416 416-416-186.25-416-416 186.25-416 416-416z","M669.256 317.256l-90.512-90.512-285.254 285.256 285.256 285.254 90.508-90.508-194.744-194.746z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["circle-left","left","circle-previous","arrow"],"defaultCode":59972,"grid":16},"attrs":[],"properties":{"ligatures":"circle-left, left5","name":"circle-left","id":324,"order":711,"prevSize":32,"code":60357},"setIdx":1,"setId":0,"iconIdx":324},{"icon":{"paths":["M960 0h64v512h-64v-512z","M0 512h64v512h-64v-512z","M320 704h704v128h-704v160l-224-224 224-224v160z","M704 320h-704v-128h704v-160l224 224-224 224z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["tab","arrows"],"defaultCode":59973,"grid":16},"attrs":[],"properties":{"ligatures":"tab, arrows","name":"tab","id":325,"order":712,"prevSize":32,"code":60358},"setIdx":1,"setId":0,"iconIdx":325},{"icon":{"paths":["M704 512v384h64v-384h160l-192-192-192 192z","M64 192h96v64h-96v-64z","M192 192h96v64h-96v-64z","M320 192h64v96h-64v-96z","M64 416h64v96h-64v-96z","M160 448h96v64h-96v-64z","M288 448h96v64h-96v-64z","M64 288h64v96h-64v-96z","M320 320h64v96h-64v-96z","M320 704v192h-192v-192h192zM384 640h-320v320h320v-320z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["move-up","sort","arrange"],"defaultCode":59974,"grid":16},"attrs":[],"properties":{"ligatures":"move-up, sort","name":"move-up","id":326,"order":713,"prevSize":32,"code":60359},"setIdx":1,"setId":0,"iconIdx":326},{"icon":{"paths":["M768 704v-384h-64v384h-160l192 192 192-192z","M320 256v192h-192v-192h192zM384 192h-320v320h320v-320z","M64 640h96v64h-96v-64z","M192 640h96v64h-96v-64z","M320 640h64v96h-64v-96z","M64 864h64v96h-64v-96z","M160 896h96v64h-96v-64z","M288 896h96v64h-96v-64z","M64 736h64v96h-64v-96z","M320 768h64v96h-64v-96z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["move-down","sort","arrange"],"defaultCode":59975,"grid":16},"attrs":[],"properties":{"ligatures":"move-down, sort2","name":"move-down","id":327,"order":714,"prevSize":32,"code":60360},"setIdx":1,"setId":0,"iconIdx":327},{"icon":{"paths":["M320 768v-768h-128v768h-160l224 224 224-224h-160z","M928 1024h-256c-11.8 0-22.644-6.496-28.214-16.9-5.566-10.404-4.958-23.030 1.59-32.85l222.832-334.25h-196.208c-17.672 0-32-14.328-32-32s14.328-32 32-32h256c11.8 0 22.644 6.496 28.214 16.9 5.566 10.404 4.958 23.030-1.59 32.85l-222.83 334.25h196.206c17.672 0 32 14.328 32 32s-14.328 32-32 32z","M1020.622 401.686l-192.002-384c-5.42-10.842-16.502-17.69-28.622-17.69-12.122 0-23.202 6.848-28.624 17.69l-191.996 384c-7.904 15.806-1.496 35.030 14.31 42.932 4.594 2.296 9.476 3.386 14.288 3.386 11.736 0 23.040-6.484 28.644-17.698l55.156-110.31h216.446l55.156 110.31c7.902 15.806 27.124 22.21 42.932 14.31 15.808-7.902 22.216-27.124 14.312-42.93zM723.778 255.996l76.22-152.446 76.224 152.446h-152.444z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["sort-alpha-asc","arrange","alphabetic"],"defaultCode":59976,"grid":16},"attrs":[],"properties":{"ligatures":"sort-alpha-asc, arrange","name":"sort-alpha-asc","id":328,"order":715,"prevSize":32,"code":60361},"setIdx":1,"setId":0,"iconIdx":328},{"icon":{"paths":["M320 768v-768h-128v768h-160l224 224 224-224h-160z","M928 448h-256c-11.8 0-22.644-6.496-28.214-16.9-5.566-10.406-4.958-23.030 1.59-32.85l222.832-334.25h-196.208c-17.672 0-32-14.328-32-32s14.328-32 32-32h256c11.8 0 22.644 6.496 28.214 16.9 5.566 10.406 4.958 23.030-1.59 32.85l-222.83 334.25h196.206c17.672 0 32 14.328 32 32s-14.328 32-32 32z","M1020.622 977.69l-192.002-384c-5.42-10.842-16.502-17.69-28.622-17.69-12.122 0-23.202 6.848-28.624 17.69l-191.996 384c-7.904 15.806-1.496 35.030 14.31 42.932 4.594 2.296 9.476 3.386 14.288 3.386 11.736 0 23.040-6.484 28.644-17.698l55.158-110.31h216.446l55.156 110.31c7.902 15.806 27.124 22.21 42.932 14.31 15.806-7.902 22.214-27.124 14.31-42.93zM723.778 832l76.22-152.446 76.226 152.446h-152.446z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["sort-alpha-desc","arrange","alphabetic"],"defaultCode":59977,"grid":16},"attrs":[],"properties":{"ligatures":"sort-alpha-desc, arrange2","name":"sort-alpha-desc","id":329,"order":716,"prevSize":32,"code":60362},"setIdx":1,"setId":0,"iconIdx":329},{"icon":{"paths":["M320 768v-768h-128v768h-160l224 224 224-224h-160z","M864 448c-17.674 0-32-14.328-32-32v-352h-32c-17.674 0-32-14.328-32-32s14.326-32 32-32h64c17.674 0 32 14.328 32 32v384c0 17.672-14.326 32-32 32z","M928 576h-192c-17.674 0-32 14.326-32 32v192c0 17.674 14.326 32 32 32h160v128h-160c-17.674 0-32 14.326-32 32s14.326 32 32 32h192c17.674 0 32-14.326 32-32v-384c0-17.674-14.326-32-32-32zM768 640h128v128h-128v-128z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["sort-numeric-asc","arrange"],"defaultCode":59978,"grid":16},"attrs":[],"properties":{"ligatures":"sort-numeric-asc, arrange3","name":"sort-numeric-asc","id":330,"order":717,"prevSize":32,"code":60363},"setIdx":1,"setId":0,"iconIdx":330},{"icon":{"paths":["M320 768v-768h-128v768h-160l224 224 224-224h-160z","M864 1024c-17.674 0-32-14.328-32-32v-352h-32c-17.674 0-32-14.328-32-32s14.326-32 32-32h64c17.674 0 32 14.328 32 32v384c0 17.672-14.326 32-32 32z","M928 0h-192c-17.674 0-32 14.326-32 32v192c0 17.674 14.326 32 32 32h160v128h-160c-17.674 0-32 14.326-32 32s14.326 32 32 32h192c17.674 0 32-14.326 32-32v-384c0-17.674-14.326-32-32-32zM768 64h128v128h-128v-128z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["sort-numberic-desc","arrange"],"defaultCode":59979,"grid":16},"attrs":[],"properties":{"ligatures":"sort-numberic-desc, arrange4","name":"sort-numberic-desc","id":331,"order":718,"prevSize":32,"code":60364},"setIdx":1,"setId":0,"iconIdx":331},{"icon":{"paths":["M320 768v-768h-128v768h-160l224 224 224-224h-160z","M448 576h576v128h-576v-128z","M448 384h448v128h-448v-128z","M448 192h320v128h-320v-128z","M448 0h192v128h-192v-128z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["sort-amount-asc","arrange"],"defaultCode":59980,"grid":16},"attrs":[],"properties":{"ligatures":"sort-amount-asc, arrange5","name":"sort-amount-asc","id":332,"order":719,"prevSize":32,"code":60365},"setIdx":1,"setId":0,"iconIdx":332},{"icon":{"paths":["M320 768v-768h-128v768h-160l224 224 224-224h-160z","M448 0h576v128h-576v-128z","M448 192h448v128h-448v-128z","M448 384h320v128h-320v-128z","M448 576h192v128h-192v-128z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["sort-amount-desc","arrange"],"defaultCode":59981,"grid":16},"attrs":[],"properties":{"ligatures":"sort-amount-desc, arrange6","name":"sort-amount-desc","id":333,"order":720,"prevSize":32,"code":60366},"setIdx":1,"setId":0,"iconIdx":333},{"icon":{"paths":["M736 896c-88.224 0-160-71.776-160-160v-96h-128v96c0 88.224-71.776 160-160 160s-160-71.776-160-160 71.776-160 160-160h96v-128h-96c-88.224 0-160-71.776-160-160s71.776-160 160-160 160 71.776 160 160v96h128v-96c0-88.224 71.776-160 160-160s160 71.776 160 160-71.776 160-160 160h-96v128h96c88.224 0 160 71.776 160 160s-71.774 160-160 160zM640 640v96c0 52.934 43.066 96 96 96s96-43.066 96-96-43.066-96-96-96h-96zM288 640c-52.934 0-96 43.066-96 96s43.066 96 96 96 96-43.066 96-96v-96h-96zM448 576h128v-128h-128v128zM640 384h96c52.934 0 96-43.066 96-96s-43.066-96-96-96-96 43.066-96 96v96zM288 192c-52.934 0-96 43.066-96 96s43.066 96 96 96h96v-96c0-52.934-43.064-96-96-96z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["command","cmd"],"defaultCode":59982,"grid":16},"attrs":[],"properties":{"ligatures":"command, cmd","name":"command","id":334,"order":721,"prevSize":32,"code":60367},"setIdx":1,"setId":0,"iconIdx":334},{"icon":{"paths":["M672 896h-320c-17.672 0-32-14.326-32-32v-352h-128c-12.942 0-24.612-7.796-29.564-19.754-4.954-11.958-2.214-25.722 6.936-34.874l320-320c12.498-12.496 32.758-12.496 45.254 0l320 320c9.152 9.152 11.89 22.916 6.938 34.874s-16.62 19.754-29.564 19.754h-128v352c0 17.674-14.326 32-32 32zM384 832h256v-352c0-17.672 14.326-32 32-32h82.744l-242.744-242.746-242.744 242.746h82.744c17.672 0 32 14.328 32 32v352z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["shift"],"defaultCode":59983,"grid":16},"attrs":[],"properties":{"ligatures":"shift","name":"shift","id":335,"order":722,"prevSize":32,"code":60368},"setIdx":1,"setId":0,"iconIdx":335},{"icon":{"paths":["M736.014 448c-8.908 0-17.77-3.698-24.096-10.928l-199.918-228.478-199.918 228.478c-11.636 13.3-31.856 14.65-45.154 3.010-13.3-11.638-14.648-31.854-3.010-45.154l224-256c6.076-6.944 14.854-10.928 24.082-10.928s18.006 3.984 24.082 10.928l224 256c11.638 13.3 10.292 33.516-3.010 45.154-6.070 5.312-13.582 7.918-21.058 7.918z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["ctrl","control"],"defaultCode":59984,"grid":16},"attrs":[],"properties":{"ligatures":"ctrl, control","name":"ctrl","id":336,"order":723,"prevSize":32,"code":60369},"setIdx":1,"setId":0,"iconIdx":336},{"icon":{"paths":["M928 832h-256c-12.646 0-24.106-7.448-29.242-19.004l-247.554-556.996h-299.204c-17.672 0-32-14.328-32-32s14.328-32 32-32h320c12.646 0 24.106 7.448 29.242 19.004l247.556 556.996h235.202c17.674 0 32 14.326 32 32s-14.326 32-32 32z","M928 256h-320c-17.674 0-32-14.328-32-32s14.326-32 32-32h320c17.674 0 32 14.328 32 32s-14.326 32-32 32z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["opt","option","alt"],"defaultCode":59985,"grid":16},"attrs":[],"properties":{"ligatures":"opt, option","name":"opt","id":337,"order":724,"prevSize":32,"code":60370},"setIdx":1,"setId":0,"iconIdx":337},{"icon":{"paths":["M896 0h-768c-70.4 0-128 57.6-128 128v768c0 70.4 57.6 128 128 128h768c70.4 0 128-57.6 128-128v-768c0-70.4-57.6-128-128-128zM448 794.51l-237.254-237.256 90.51-90.508 146.744 146.744 306.746-306.746 90.508 90.51-397.254 397.256z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["checkbox-checked","checkbox","tick","checked","selected"],"defaultCode":59986,"grid":16},"attrs":[],"properties":{"ligatures":"checkbox-checked, checkbox","name":"checkbox-checked","id":338,"order":725,"prevSize":32,"code":60371},"setIdx":1,"setId":0,"iconIdx":338},{"icon":{"paths":["M896 0h-768c-70.4 0-128 57.6-128 128v768c0 70.4 57.6 128 128 128h768c70.4 0 128-57.6 128-128v-768c0-70.4-57.6-128-128-128zM896 896h-768v-768h768v768z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["checkbox-unchecked","checkbox","unchecked","square"],"defaultCode":59987,"grid":16},"attrs":[],"properties":{"ligatures":"checkbox-unchecked, checkbox2","name":"checkbox-unchecked","id":339,"order":726,"prevSize":32,"code":60372},"setIdx":1,"setId":0,"iconIdx":339},{"icon":{"paths":["M512 0c-282.77 0-512 229.23-512 512s229.23 512 512 512 512-229.23 512-512-229.23-512-512-512zM512 896c-212.078 0-384-171.922-384-384s171.922-384 384-384c212.078 0 384 171.922 384 384s-171.922 384-384 384zM320 512c0-106.039 85.961-192 192-192s192 85.961 192 192c0 106.039-85.961 192-192 192s-192-85.961-192-192z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["radio-checked","radio-button"],"defaultCode":59988,"grid":16},"attrs":[],"properties":{"ligatures":"radio-checked, radio-button","name":"radio-checked","id":340,"order":727,"prevSize":32,"code":60373},"setIdx":1,"setId":0,"iconIdx":340},{"icon":{"paths":["M512 0c-282.77 0-512 229.23-512 512s229.23 512 512 512 512-229.23 512-512-229.23-512-512-512zM512 640c-70.692 0-128-57.306-128-128 0-70.692 57.308-128 128-128 70.694 0 128 57.308 128 128 0 70.694-57.306 128-128 128z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["radio-checked","radio-button"],"defaultCode":59989,"grid":16},"attrs":[],"properties":{"ligatures":"radio-checked2, radio-button2","name":"radio-checked2","id":341,"order":728,"prevSize":32,"code":60374},"setIdx":1,"setId":0,"iconIdx":341},{"icon":{"paths":["M512 0c-282.77 0-512 229.23-512 512s229.23 512 512 512 512-229.23 512-512-229.23-512-512-512zM512 896c-212.078 0-384-171.922-384-384s171.922-384 384-384c212.078 0 384 171.922 384 384s-171.922 384-384 384z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["radio-unchecked","radio-button","circle"],"defaultCode":59990,"grid":16},"attrs":[],"properties":{"ligatures":"radio-unchecked, radio-button3","name":"radio-unchecked","id":342,"order":729,"prevSize":32,"code":60375},"setIdx":1,"setId":0,"iconIdx":342},{"icon":{"paths":["M832 256l192-192-64-64-192 192h-448v-192h-128v192h-192v128h192v512h512v192h128v-192h192v-128h-192v-448zM320 320h320l-320 320v-320zM384 704l320-320v320h-320z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["crop","resize","cut"],"defaultCode":59991,"grid":16},"attrs":[],"properties":{"ligatures":"crop, resize","name":"crop","id":343,"order":730,"prevSize":32,"code":60376},"setIdx":1,"setId":0,"iconIdx":343},{"icon":{"paths":["M320 128h-128c-35.2 0-64 28.8-64 64v128c0 35.2 28.8 64 64 64h128c35.2 0 64-28.8 64-64v-128c0-35.2-28.8-64-64-64z","M704 384h128c35.2 0 64-28.8 64-64v-128c0-35.2-28.8-64-64-64h-128c-35.2 0-64 28.8-64 64v128c0 35.2 28.8 64 64 64zM704 192h128v128h-128v-128z","M320 640h-128c-35.2 0-64 28.8-64 64v128c0 35.2 28.8 64 64 64h128c35.2 0 64-28.8 64-64v-128c0-35.2-28.8-64-64-64zM320 832h-128v-128h128v128z","M832 640h-128c-35.2 0-64 28.8-64 64v128c0 35.2 28.8 64 64 64h128c35.2 0 64-28.8 64-64v-128c0-35.2-28.8-64-64-64z","M896 512h-64c-85.476 0-165.834-33.286-226.274-93.724-60.44-60.442-93.726-140.802-93.726-226.276v-64c0-70.4-57.6-128-128-128h-256c-70.4 0-128 57.6-128 128v256c0 70.4 57.6 128 128 128h64c85.476 0 165.834 33.286 226.274 93.724 60.44 60.442 93.726 140.802 93.726 226.276v64c0 70.4 57.6 128 128 128h256c70.4 0 128-57.6 128-128v-256c0-70.4-57.6-128-128-128zM960 896c0 16.954-6.696 32.986-18.856 45.144-12.158 12.16-28.19 18.856-45.144 18.856h-256c-16.954 0-32.986-6.696-45.144-18.856-12.16-12.158-18.856-28.19-18.856-45.144v-64c0-212.078-171.922-384-384-384h-64c-16.954 0-32.986-6.696-45.146-18.854-12.158-12.16-18.854-28.192-18.854-45.146v-256c0-16.954 6.696-32.986 18.854-45.146 12.16-12.158 28.192-18.854 45.146-18.854h256c16.954 0 32.986 6.696 45.146 18.854 12.158 12.16 18.854 28.192 18.854 45.146v64c0 212.078 171.922 384 384 384h64c16.954 0 32.986 6.696 45.144 18.856 12.16 12.158 18.856 28.19 18.856 45.144v256z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["make-group"],"defaultCode":59992,"grid":16},"attrs":[],"properties":{"ligatures":"make-group","name":"make-group","id":344,"order":731,"prevSize":32,"code":60377},"setIdx":1,"setId":0,"iconIdx":344},{"icon":{"paths":["M384 464c0 26.4-21.6 48-48 48h-96c-26.4 0-48-21.6-48-48v-96c0-26.4 21.6-48 48-48h96c26.4 0 48 21.6 48 48v96z","M704 464c0 26.4-21.6 48-48 48h-96c-26.4 0-48-21.6-48-48v-96c0-26.4 21.6-48 48-48h96c26.4 0 48 21.6 48 48v96z","M384 784c0 26.4-21.6 48-48 48h-96c-26.4 0-48-21.6-48-48v-96c0-26.4 21.6-48 48-48h96c26.4 0 48 21.6 48 48v96z","M704 784c0 26.4-21.6 48-48 48h-96c-26.4 0-48-21.6-48-48v-96c0-26.4 21.6-48 48-48h96c26.4 0 48 21.6 48 48v96z","M912.082 160l111.918-111.916v-48.084h-48.082l-111.918 111.916-111.918-111.916h-48.082v48.084l111.918 111.916-111.918 111.916v48.084h48.082l111.918-111.916 111.918 111.916h48.082v-48.084z","M0 768h64v128h-64v-128z","M0 576h64v128h-64v-128z","M832 448h64v128h-64v-128z","M832 832h64v128h-64v-128z","M832 640h64v128h-64v-128z","M0 384h64v128h-64v-128z","M0 192h64v128h-64v-128z","M512 128h128v64h-128v-64z","M320 128h128v64h-128v-64z","M128 128h128v64h-128v-64z","M448 960h128v64h-128v-64z","M640 960h128v64h-128v-64z","M256 960h128v64h-128v-64z","M64 960h128v64h-128v-64z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["ungroup"],"defaultCode":59993,"grid":16},"attrs":[],"properties":{"ligatures":"ungroup","name":"ungroup","id":345,"order":732,"prevSize":32,"code":60378},"setIdx":1,"setId":0,"iconIdx":345},{"icon":{"paths":["M913.826 679.694c-66.684-104.204-181.078-150.064-255.51-102.434-6.428 4.116-12.334 8.804-17.744 13.982l-79.452-124.262 183.462-287.972c15.016-27.73 20.558-60.758 13.266-93.974-6.972-31.75-24.516-58.438-48.102-77.226l-12.278-7.808-217.468 340.114-217.47-340.114-12.276 7.806c-23.586 18.79-41.13 45.476-48.1 77.226-7.292 33.216-1.75 66.244 13.264 93.974l183.464 287.972-79.454 124.262c-5.41-5.178-11.316-9.868-17.744-13.982-74.432-47.63-188.826-1.77-255.51 102.434-66.68 104.2-60.398 227.286 14.032 274.914 74.43 47.632 188.824 1.77 255.508-102.432l164.286-257.87 164.288 257.872c66.684 104.202 181.078 150.064 255.508 102.432 74.428-47.63 80.71-170.716 14.030-274.914zM234.852 800.43c-30.018 46.904-68.534 69.726-94.572 75.446-0.004 0-0.004 0-0.004 0-8.49 1.868-20.294 3.010-28.324-2.128-8.898-5.694-14.804-20.748-15.8-40.276-1.616-31.644 9.642-68.836 30.888-102.034 30.014-46.906 68.53-69.726 94.562-75.444 8.496-1.866 20.308-3.010 28.336 2.126 8.898 5.694 14.802 20.75 15.798 40.272 1.618 31.65-9.64 68.84-30.884 102.038zM480 512c-17.672 0-32-14.328-32-32s14.328-32 32-32 32 14.328 32 32-14.328 32-32 32zM863.85 833.47c-0.996 19.528-6.902 34.582-15.8 40.276-8.030 5.138-19.834 3.996-28.324 2.128 0 0 0 0-0.004 0-26.040-5.718-64.554-28.542-94.572-75.446-21.244-33.198-32.502-70.388-30.884-102.038 0.996-19.522 6.9-34.578 15.798-40.272 8.028-5.136 19.84-3.992 28.336-2.126 26.034 5.716 64.548 28.538 94.562 75.444 21.246 33.198 32.502 70.39 30.888 102.034z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["scissors","cut"],"defaultCode":59994,"grid":16},"attrs":[],"properties":{"ligatures":"scissors, cut","name":"scissors","id":346,"order":733,"prevSize":32,"code":60379},"setIdx":1,"setId":0,"iconIdx":346},{"icon":{"paths":["M512 0c-282.77 0-512 71.634-512 160v96l384 384v320c0 35.346 57.306 64 128 64 70.692 0 128-28.654 128-64v-320l384-384v-96c0-88.366-229.23-160-512-160zM94.384 138.824c23.944-13.658 57.582-26.62 97.278-37.488 87.944-24.076 201.708-37.336 320.338-37.336 118.628 0 232.394 13.26 320.338 37.336 39.696 10.868 73.334 23.83 97.28 37.488 15.792 9.006 24.324 16.624 28.296 21.176-3.972 4.552-12.506 12.168-28.296 21.176-23.946 13.658-57.584 26.62-97.28 37.488-87.942 24.076-201.708 37.336-320.338 37.336s-232.394-13.26-320.338-37.336c-39.696-10.868-73.334-23.83-97.278-37.488-15.792-9.008-24.324-16.624-28.298-21.176 3.974-4.552 12.506-12.168 28.298-21.176z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["filter","funnel"],"defaultCode":59995,"grid":16},"attrs":[],"properties":{"ligatures":"filter, funnel","name":"filter","id":347,"order":734,"prevSize":32,"code":60380},"setIdx":1,"setId":0,"iconIdx":347},{"icon":{"paths":["M799.596 16.208c-90.526 0-148.62-16.208-241.848-16.208-301.284 0-441.792 171.584-441.792 345.872 0 102.678 48.64 136.458 144.564 136.458-6.758-14.864-18.914-31.080-18.914-104.034 0-204.010 77.006-263.458 175.636-267.51 0 0-80.918 793.374-315.778 888.542v24.672h316.594l108.026-512h197.844l44.072-128h-214.908l51.944-246.19c59.446 12.156 117.542 24.316 167.532 24.316 62.148 0 118.894-18.914 149.968-162.126-37.826 12.16-78.362 16.208-122.94 16.208z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["font","typeface","typography","font-family","wysiwyg"],"defaultCode":59996,"grid":16},"attrs":[],"properties":{"ligatures":"font, typeface","name":"font","id":348,"order":735,"prevSize":32,"code":60381},"setIdx":1,"setId":0,"iconIdx":348},{"icon":{"paths":["M768 871.822c0-0.040 0.002-0.076 0.002-0.116l-0.344-436.562-127.492 6.19h-251.93v-21.494c0-81.542 5.8-162.976 17.24-194.716 7.896-21.948 22.598-41.744 43.698-58.836 20.618-16.702 41.178-25.17 61.11-25.17 16.772 0 30.702 2.878 41.402 8.554 15.026 8.562 29.716 22.964 43.67 42.818 36.95 52.504 51.99 66.454 60.094 72.376 13.804 10.094 30.512 15.212 49.658 15.212 18.668 0 34.962-6.97 48.436-20.714 13.372-13.636 20.15-30.682 20.15-50.666 0-21.452-8.916-44.204-26.502-67.622-17.184-22.888-43.708-41.742-78.834-56.032-34.322-13.964-72.94-21.044-114.778-21.044-60.716 0-116.012 14.596-164.356 43.384-48.424 28.834-85.558 68.952-110.37 119.24-22.994 46.604-21.334 134.706-22.732 214.712h-125.732v71.402h125.598v324.668c0 71.666-21.906 91.008-30.216 101.324-11.436 14.202-32.552 29.104-60.444 29.104h-38.654v56.166h385.326v-56.168h-6.708c-91.144 0-117.020-9.832-117.020-120.842 0-0.018 0-0.034 0-0.048l-0.038-334.206h140.204c74.404 0 91.496 3.444 95.392 4.924 4.706 1.79 10.798 4.832 13.084 9.144 0.868 1.684 5.194 25.008 5.194 82.972v250.67c0 58.454-7.124 77.896-11.45 84.402-9.248 14.194-20.41 22.066-54.66 22.904v56.248h293.61v-55.846c-91.608 0-101.608-9.82-101.608-96.332z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["ligature","typography","font"],"defaultCode":59997,"grid":16},"attrs":[],"properties":{"ligatures":"ligature, typography","name":"ligature","id":349,"order":736,"prevSize":32,"code":60382},"setIdx":1,"setId":0,"iconIdx":349},{"icon":{"paths":["M855.328 917.454c-11.734 0-83.62-13.2-88.020-29.338-10.274-39.612-11.738-82.152-11.738-130.568v-540.974c0-80.686 16.138-127.632 16.138-127.632-1.468-7.334-8.804-23.472-17.604-23.472h-4.404c-4.4 0-55.746 32.276-102.692 32.276-38.14-0.002-61.89-33.746-105.902-33.746-185.106 0-271.942 150.31-271.942 363.032v11.072c0 4.402-2.934 8.804-7.336 8.804h-60.148c-7.336 0-22.006 41.078-22.006 60.148 0 5.87 1.466 8.8 4.4 8.8h77.754c4.402 0 7.336 5.872 7.336 10.27 0 130.566-1.466 259.298-1.466 259.298 0 20.54-1.466 66.016-10.27 102.692-4.4 16.138-71.884 29.338-89.488 29.338-7.334 0-7.334 35.212 0 42.546 60.148-2.934 99.758-7.334 159.908-7.334 55.75 0 98.292 4.4 156.974 7.334 2.934-8.802 2.934-42.546-4.4-42.546-11.736 0-83.624-13.2-88.022-29.338-10.27-39.612-10.27-82.152-11.738-130.568v-232.888c0-4.402 4.402-8.804 8.802-8.804h151.104c10.27-20.538 17.606-45.476 17.606-58.68 0-8.802 0-10.27-7.336-10.27h-162.84c-2.934 0-7.336-4.402-7.336-7.334v-52.82c0-130.568 53.482-245.538 142.97-245.538 63.372 0 118.666 41.060 118.666 197.922 0 0.006 0 0.012 0 0.018 0.208 4.036 0.314 7.294 0.314 9.452v436.816c0 20.54-1.47 66.016-10.27 102.692-4.404 16.138-71.884 29.338-89.492 29.338-7.336 0-7.336 35.212 0 42.546 60.15-2.934 99.762-7.334 159.912-7.334 55.746 0 98.288 4.4 156.972 7.334 2.928-8.8 2.928-42.544-4.406-42.544z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["ligature","typography","font"],"defaultCode":59998,"grid":16},"attrs":[],"properties":{"ligatures":"ligature2, typography2","name":"ligature2","id":350,"order":737,"prevSize":32,"code":60383},"setIdx":1,"setId":0,"iconIdx":350},{"icon":{"paths":["M896 768h128l-160 192-160-192h128v-512h-128l160-192 160 192h-128zM640 64v256l-64-128h-192v704h128v64h-384v-64h128v-704h-192l-64 128v-256z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["text-height","wysiwyg"],"defaultCode":59999,"grid":16},"attrs":[],"properties":{"ligatures":"text-height, wysiwyg","name":"text-height","id":351,"order":738,"prevSize":32,"code":60384},"setIdx":1,"setId":0,"iconIdx":351},{"icon":{"paths":["M256 896v128l-192-160 192-160v128h512v-128l192 160-192 160v-128zM832 64v256l-64-128h-192v448h128v64h-384v-64h128v-448h-192l-64 128v-256z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["text-width","wysiwyg"],"defaultCode":60000,"grid":16},"attrs":[],"properties":{"ligatures":"text-width, wysiwyg2","name":"text-width","id":352,"order":739,"prevSize":32,"code":60385},"setIdx":1,"setId":0,"iconIdx":352},{"icon":{"paths":["M64 512h384v128h-128v384h-128v-384h-128zM960 256h-251.75v768h-136.5v-768h-251.75v-128h640z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["font-size","wysiwyg"],"defaultCode":60001,"grid":16},"attrs":[],"properties":{"ligatures":"font-size, wysiwyg3","name":"font-size","id":353,"order":740,"prevSize":32,"code":60386},"setIdx":1,"setId":0,"iconIdx":353},{"icon":{"paths":["M707.88 484.652c37.498-44.542 60.12-102.008 60.12-164.652 0-141.16-114.842-256-256-256h-320v896h384c141.158 0 256-114.842 256-256 0-92.956-49.798-174.496-124.12-219.348zM384 192h101.5c55.968 0 101.5 57.42 101.5 128s-45.532 128-101.5 128h-101.5v-256zM543 832h-159v-256h159c58.45 0 106 57.42 106 128s-47.55 128-106 128z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["bold","wysiwyg"],"defaultCode":60002,"grid":16},"attrs":[],"properties":{"ligatures":"bold, wysiwyg4","name":"bold","id":354,"order":741,"prevSize":32,"code":60387},"setIdx":1,"setId":0,"iconIdx":354},{"icon":{"paths":["M704 64h128v416c0 159.058-143.268 288-320 288-176.73 0-320-128.942-320-288v-416h128v416c0 40.166 18.238 78.704 51.354 108.506 36.896 33.204 86.846 51.494 140.646 51.494s103.75-18.29 140.646-51.494c33.116-29.802 51.354-68.34 51.354-108.506v-416zM192 832h640v128h-640z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["underline","wysiwyg"],"defaultCode":60003,"grid":16},"attrs":[],"properties":{"ligatures":"underline, wysiwyg5","name":"underline","id":355,"order":742,"prevSize":32,"code":60388},"setIdx":1,"setId":0,"iconIdx":355},{"icon":{"paths":["M896 64v64h-128l-320 768h128v64h-448v-64h128l320-768h-128v-64z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["italic","wysiwyg"],"defaultCode":60004,"grid":16},"attrs":[],"properties":{"ligatures":"italic, wysiwyg6","name":"italic","id":356,"order":743,"prevSize":32,"code":60389},"setIdx":1,"setId":0,"iconIdx":356},{"icon":{"paths":["M1024 512v64h-234.506c27.504 38.51 42.506 82.692 42.506 128 0 70.878-36.66 139.026-100.58 186.964-59.358 44.518-137.284 69.036-219.42 69.036-82.138 0-160.062-24.518-219.42-69.036-63.92-47.938-100.58-116.086-100.58-186.964h128c0 69.382 87.926 128 192 128s192-58.618 192-128c0-69.382-87.926-128-192-128h-512v-64h299.518c-2.338-1.654-4.656-3.324-6.938-5.036-63.92-47.94-100.58-116.086-100.58-186.964s36.66-139.024 100.58-186.964c59.358-44.518 137.282-69.036 219.42-69.036 82.136 0 160.062 24.518 219.42 69.036 63.92 47.94 100.58 116.086 100.58 186.964h-128c0-69.382-87.926-128-192-128s-192 58.618-192 128c0 69.382 87.926 128 192 128 78.978 0 154.054 22.678 212.482 64h299.518z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["strikethrough","wysiwyg"],"defaultCode":60005,"grid":16},"attrs":[],"properties":{"ligatures":"strikethrough, wysiwyg7","name":"strikethrough","id":357,"order":744,"prevSize":32,"code":60390},"setIdx":1,"setId":0,"iconIdx":357},{"icon":{"paths":["M704 896h256l64-128v256h-384v-214.214c131.112-56.484 224-197.162 224-361.786 0-214.432-157.598-382.266-352-382.266-194.406 0-352 167.832-352 382.266 0 164.624 92.886 305.302 224 361.786v214.214h-384v-256l64 128h256v-32.59c-187.63-66.46-320-227.402-320-415.41 0-247.424 229.23-448 512-448s512 200.576 512 448c0 188.008-132.37 348.95-320 415.41v32.59z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["omega","wysiwyg","symbols"],"defaultCode":60006,"grid":16},"attrs":[],"properties":{"ligatures":"omega, wysiwyg8","name":"omega","id":358,"order":745,"prevSize":32,"code":60391},"setIdx":1,"setId":0,"iconIdx":358},{"icon":{"paths":["M941.606 734.708l44.394-94.708h38l-64 384h-960v-74.242l331.546-391.212-331.546-331.546v-227h980l44 256h-34.376l-18.72-38.88c-35.318-73.364-61.904-89.12-138.904-89.12h-662l353.056 353.056-297.42 350.944h542.364c116.008 0 146.648-41.578 173.606-97.292z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["sigma","wysiwyg","symbols"],"defaultCode":60007,"grid":16},"attrs":[],"properties":{"ligatures":"sigma, wysiwyg9","name":"sigma","id":359,"order":746,"prevSize":32,"code":60392},"setIdx":1,"setId":0,"iconIdx":359},{"icon":{"paths":["M0 512h128v64h-128zM192 512h192v64h-192zM448 512h128v64h-128zM640 512h192v64h-192zM896 512h128v64h-128zM880 0l16 448h-768l16-448h32l16 384h640l16-384zM144 1024l-16-384h768l-16 384h-32l-16-320h-640l-16 320z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["page-break","wysiwyg"],"defaultCode":60008,"grid":16},"attrs":[],"properties":{"ligatures":"page-break, wysiwyg10","name":"page-break","id":360,"order":747,"prevSize":32,"code":60393},"setIdx":1,"setId":0,"iconIdx":360},{"icon":{"paths":["M768 206v50h128v64h-192v-146l128-60v-50h-128v-64h192v146zM676 256h-136l-188 188-188-188h-136l256 256-256 256h136l188-188 188 188h136l-256-256z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["superscript","wysiwyg"],"defaultCode":60009,"grid":16},"attrs":[],"properties":{"ligatures":"superscript, wysiwyg11","name":"superscript","id":361,"order":748,"prevSize":32,"code":60394},"setIdx":1,"setId":0,"iconIdx":361},{"icon":{"paths":["M768 910v50h128v64h-192v-146l128-60v-50h-128v-64h192v146zM676 256h-136l-188 188-188-188h-136l256 256-256 256h136l188-188 188 188h136l-256-256z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["subscript","wysiwyg"],"defaultCode":60010,"grid":16},"attrs":[],"properties":{"ligatures":"subscript, wysiwyg12","name":"subscript","id":362,"order":749,"prevSize":32,"code":60395},"setIdx":1,"setId":0,"iconIdx":362},{"icon":{"paths":["M194.018 832l57.6-192h264.764l57.6 192h113.632l-192-640h-223.232l-192 640h113.636zM347.618 320h72.764l57.6 192h-187.964l57.6-192zM704 832l160-256 160 256h-320z","M864 128h-64c-17.644 0-32-14.356-32-32s14.356-32 32-32h128c17.674 0 32-14.328 32-32s-14.326-32-32-32h-128c-52.936 0-96 43.066-96 96 0 24.568 9.288 47.002 24.524 64 17.588 19.624 43.11 32 71.476 32h64c17.644 0 32 14.356 32 32s-14.356 32-32 32h-128c-17.674 0-32 14.328-32 32s14.326 32 32 32h128c52.936 0 96-43.066 96-96 0-24.568-9.288-47.002-24.524-64-17.588-19.624-43.108-32-71.476-32z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["superscript","wysiwyg"],"defaultCode":60011,"grid":16},"attrs":[],"properties":{"ligatures":"superscript2, wysiwyg13","name":"superscript2","id":363,"order":750,"prevSize":32,"code":60396},"setIdx":1,"setId":0,"iconIdx":363},{"icon":{"paths":["M194.018 832l57.6-192h264.764l57.6 192h113.632l-192-640h-223.232l-192 640h113.636zM347.618 320h72.764l57.6 192h-187.964l57.6-192zM1024 192l-160 256-160-256h320z","M864 832h-64c-17.644 0-32-14.356-32-32s14.356-32 32-32h128c17.674 0 32-14.328 32-32s-14.326-32-32-32h-128c-52.936 0-96 43.066-96 96 0 24.568 9.29 47.002 24.524 64 17.588 19.624 43.112 32 71.476 32h64c17.644 0 32 14.356 32 32s-14.356 32-32 32h-128c-17.674 0-32 14.328-32 32s14.326 32 32 32h128c52.936 0 96-43.066 96-96 0-24.568-9.29-47.002-24.524-64-17.588-19.624-43.108-32-71.476-32z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["subscript","wysiwyg"],"defaultCode":60012,"grid":16},"attrs":[],"properties":{"ligatures":"subscript2, wysiwyg14","name":"subscript2","id":364,"order":751,"prevSize":32,"code":60397},"setIdx":1,"setId":0,"iconIdx":364},{"icon":{"paths":["M322.018 832l57.6-192h264.764l57.6 192h113.632l-191.996-640h-223.236l-192 640h113.636zM475.618 320h72.764l57.6 192h-187.964l57.6-192z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["text-color","wysiwyg"],"defaultCode":60013,"grid":16},"attrs":[],"properties":{"ligatures":"text-color, wysiwyg15","name":"text-color","id":365,"order":752,"prevSize":32,"code":60398},"setIdx":1,"setId":0,"iconIdx":365},{"icon":{"paths":["M256 384v-384h768v384h-64v-320h-640v320zM1024 576v448h-768v-448h64v384h640v-384zM512 448h128v64h-128zM320 448h128v64h-128zM704 448h128v64h-128zM896 448h128v64h-128zM0 288l192 192-192 192z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["pagebreak","wysiwyg"],"defaultCode":60014,"grid":16},"attrs":[],"properties":{"ligatures":"pagebreak, wysiwyg16","name":"pagebreak","id":366,"order":753,"prevSize":32,"code":60399},"setIdx":1,"setId":0,"iconIdx":366},{"icon":{"paths":["M0 896h576v128h-576zM896 128h-302.56l-183.764 704h-132.288l183.762-704h-269.15v-128h704zM929.774 1024l-129.774-129.774-129.774 129.774-62.226-62.226 129.774-129.774-129.774-129.774 62.226-62.226 129.774 129.774 129.774-129.774 62.226 62.226-129.774 129.774 129.774 129.774z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["clear-formatting","wysiwyg","remove-style"],"defaultCode":60015,"grid":16},"attrs":[],"properties":{"ligatures":"clear-formatting, wysiwyg17","name":"clear-formatting","id":367,"order":754,"prevSize":32,"code":60400},"setIdx":1,"setId":0,"iconIdx":367},{"icon":{"paths":["M0 192v704h1024v-704h-1024zM384 640v-128h256v128h-256zM640 704v128h-256v-128h256zM640 320v128h-256v-128h256zM320 320v128h-256v-128h256zM64 512h256v128h-256v-128zM704 512h256v128h-256v-128zM704 448v-128h256v128h-256zM64 704h256v128h-256v-128zM704 832v-128h256v128h-256z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["table","wysiwyg"],"defaultCode":60016,"grid":16},"attrs":[],"properties":{"ligatures":"table, wysiwyg18","name":"table","id":368,"order":755,"prevSize":32,"code":60401},"setIdx":1,"setId":0,"iconIdx":368},{"icon":{"paths":["M0 64v896h1024v-896h-1024zM384 640v-192h256v192h-256zM640 704v192h-256v-192h256zM640 192v192h-256v-192h256zM320 192v192h-256v-192h256zM64 448h256v192h-256v-192zM704 448h256v192h-256v-192zM704 384v-192h256v192h-256zM64 704h256v192h-256v-192zM704 896v-192h256v192h-256z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["table","wysiwyg"],"defaultCode":60017,"grid":16},"attrs":[],"properties":{"ligatures":"table2, wysiwyg19","name":"table2","id":369,"order":756,"prevSize":32,"code":60402},"setIdx":1,"setId":0,"iconIdx":369},{"icon":{"paths":["M384 192h128v64h-128zM576 192h128v64h-128zM896 192v256h-192v-64h128v-128h-64v-64zM320 384h128v64h-128zM512 384h128v64h-128zM192 256v128h64v64h-128v-256h192v64zM384 576h128v64h-128zM576 576h128v64h-128zM896 576v256h-192v-64h128v-128h-64v-64zM320 768h128v64h-128zM512 768h128v64h-128zM192 640v128h64v64h-128v-256h192v64zM960 64h-896v896h896v-896zM1024 0v0 1024h-1024v-1024h1024z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["insert-template","wysiwyg"],"defaultCode":60018,"grid":16},"attrs":[],"properties":{"ligatures":"insert-template, wysiwyg20","name":"insert-template","id":370,"order":757,"prevSize":32,"code":60403},"setIdx":1,"setId":0,"iconIdx":370},{"icon":{"paths":["M384 0h512v128h-128v896h-128v-896h-128v896h-128v-512c-141.384 0-256-114.616-256-256s114.616-256 256-256z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["pilcrow","wysiwyg"],"defaultCode":60019,"grid":16},"attrs":[],"properties":{"ligatures":"pilcrow, wysiwyg21","name":"pilcrow","id":371,"order":758,"prevSize":32,"code":60404},"setIdx":1,"setId":0,"iconIdx":371},{"icon":{"paths":["M512 0c-141.384 0-256 114.616-256 256s114.616 256 256 256v512h128v-896h128v896h128v-896h128v-128h-512zM0 704l256-256-256-256z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["ltr","wysiwyg","left-to-right","direction"],"defaultCode":60020,"grid":16},"attrs":[],"properties":{"ligatures":"ltr, wysiwyg22","name":"ltr","id":372,"order":759,"prevSize":32,"code":60405},"setIdx":1,"setId":0,"iconIdx":372},{"icon":{"paths":["M256 0c-141.384 0-256 114.616-256 256s114.616 256 256 256v512h128v-896h128v896h128v-896h128v-128h-512zM1024 192l-256 256 256 256z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["rtl","wysiwyg","right-to-left","direction"],"defaultCode":60021,"grid":16},"attrs":[],"properties":{"ligatures":"rtl, wysiwyg23","name":"rtl","id":373,"order":760,"prevSize":32,"code":60406},"setIdx":1,"setId":0,"iconIdx":373},{"icon":{"paths":["M495.964 1024c-49.36 0-91.116-14.406-124.104-42.82-33.224-28.614-50.068-62.038-50.068-99.344 0-18.128 6.6-33.756 19.622-46.458 13.232-12.914 29.782-19.744 47.85-19.744 18.002 0 34.194 6.41 46.826 18.542 12.472 11.972 18.796 27.824 18.796 47.104 0 11.318-1.85 23.818-5.494 37.146-3.616 13.178-4.376 19.938-4.376 23.292 0 3.682 0.924 8.076 7.774 12.756 12.76 8.824 28.066 13.084 46.876 13.084 22.576 0 42.718-7.858 61.574-24.022 18.578-15.942 27.612-32.318 27.612-50.056 0-19.736-5.27-36.826-16.12-52.242-18.336-25.758-52.878-55.954-102.612-89.668-79.858-53.454-133.070-99.766-162.58-141.52-22.89-32.684-34.476-67.89-34.476-104.704 0-37.062 12.142-73.948 36.092-109.63 20.508-30.554 50.8-58.12 90.228-82.138-21.096-22.7-36.896-44.064-47.094-63.688-12.872-24.76-19.398-50.372-19.398-76.122 0-47.814 18.91-89.16 56.206-122.89 37.32-33.76 83.86-50.878 138.322-50.878 50.086 0 92.206 14.082 125.182 41.852 33.328 28.082 50.222 60.898 50.222 97.54 0 18.656-6.986 35.364-20.766 49.66l-0.276 0.282c-7.976 7.924-22.618 17.37-47.046 17.37-19.148 0-35.934-6.272-48.54-18.136-12.558-11.794-18.93-25.918-18.93-41.966 0-6.934 1.702-17.416 5.352-32.98 1.778-7.364 2.668-14.142 2.668-20.25 0-10.338-3.726-18.272-11.724-24.966-8.282-6.93-20.108-10.302-36.142-10.302-24.868 0-45.282 7.562-62.41 23.118-17.19 15.606-25.544 34.088-25.544 56.508 0 20.156 4.568 36.762 13.58 49.362 17.112 23.938 46.796 49.79 88.22 76.836 84.17 54.588 142.902 104.672 174.518 148.826 23.35 33.12 35.152 68.34 35.152 104.792 0 36.598-11.882 73.496-35.318 109.676-20.208 31.18-50.722 59.276-90.884 83.71 22.178 23.466 37.812 44.042 47.554 62.538 12.082 22.97 18.208 48.048 18.208 74.542 0 49.664-18.926 91.862-56.244 125.422-37.34 33.554-83.866 50.566-138.288 50.566zM446.416 356.346c-48.222 28.952-71.712 62.19-71.712 101.314 0 22.756 6.498 43.13 19.86 62.278 19.936 27.926 59.27 62.054 116.804 101.288 24.358 16.586 46.36 32.712 65.592 48.060 49.060-29.504 72.956-62.366 72.956-100.178 0-20.598-8.142-42.774-24.204-65.916-16.808-24.196-52.85-55.796-107.128-93.914-28.328-19.562-52.558-37.334-72.168-52.932z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["section","wysiwyg"],"defaultCode":60022,"grid":16},"attrs":[],"properties":{"ligatures":"section, wysiwyg24","name":"section","id":374,"order":761,"prevSize":32,"code":60407},"setIdx":1,"setId":0,"iconIdx":374},{"icon":{"paths":["M0 64h1024v128h-1024zM0 256h640v128h-640zM0 640h640v128h-640zM0 448h1024v128h-1024zM0 832h1024v128h-1024z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["paragraph-left","wysiwyg","align-left","left"],"defaultCode":60023,"grid":16},"attrs":[],"properties":{"ligatures":"paragraph-left, wysiwyg25","name":"paragraph-left","id":375,"order":762,"prevSize":32,"code":60408},"setIdx":1,"setId":0,"iconIdx":375},{"icon":{"paths":["M0 64h1024v128h-1024zM192 256h640v128h-640zM192 640h640v128h-640zM0 448h1024v128h-1024zM0 832h1024v128h-1024z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["paragraph-center","wysiwyg","align-center","center"],"defaultCode":60024,"grid":16},"attrs":[],"properties":{"ligatures":"paragraph-center, wysiwyg26","name":"paragraph-center","id":376,"order":763,"prevSize":32,"code":60409},"setIdx":1,"setId":0,"iconIdx":376},{"icon":{"paths":["M0 64h1024v128h-1024zM384 256h640v128h-640zM384 640h640v128h-640zM0 448h1024v128h-1024zM0 832h1024v128h-1024z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["paragraph-right","wysiwyg","align-right","right"],"defaultCode":60025,"grid":16},"attrs":[],"properties":{"ligatures":"paragraph-right, wysiwyg27","name":"paragraph-right","id":377,"order":764,"prevSize":32,"code":60410},"setIdx":1,"setId":0,"iconIdx":377},{"icon":{"paths":["M0 64h1024v128h-1024zM0 256h1024v128h-1024zM0 448h1024v128h-1024zM0 640h1024v128h-1024zM0 832h1024v128h-1024z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["paragraph-justify","wysiwyg","justify"],"defaultCode":60026,"grid":16},"attrs":[],"properties":{"ligatures":"paragraph-justify, wysiwyg28","name":"paragraph-justify","id":378,"order":765,"prevSize":32,"code":60411},"setIdx":1,"setId":0,"iconIdx":378},{"icon":{"paths":["M0 64h1024v128h-1024zM384 256h640v128h-640zM384 448h640v128h-640zM384 640h640v128h-640zM0 832h1024v128h-1024zM0 704v-384l256 192z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["indent-increase","wysiwyg"],"defaultCode":60027,"grid":16},"attrs":[],"properties":{"ligatures":"indent-increase, wysiwyg29","name":"indent-increase","id":379,"order":766,"prevSize":32,"code":60412},"setIdx":1,"setId":0,"iconIdx":379},{"icon":{"paths":["M0 64h1024v128h-1024zM384 256h640v128h-640zM384 448h640v128h-640zM384 640h640v128h-640zM0 832h1024v128h-1024zM256 320v384l-256-192z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["indent-decrease","wysiwyg"],"defaultCode":60028,"grid":16},"attrs":[],"properties":{"ligatures":"indent-decrease, wysiwyg30","name":"indent-decrease","id":380,"order":767,"prevSize":32,"code":60413},"setIdx":1,"setId":0,"iconIdx":380},{"icon":{"paths":["M256 640c0 0 58.824-192 384-192v192l384-256-384-256v192c-256 0-384 159.672-384 320zM704 768h-576v-384h125.876c10.094-11.918 20.912-23.334 32.488-34.18 43.964-41.19 96.562-72.652 156.114-93.82h-442.478v640h832v-268.624l-128 85.334v55.29z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["share","out","external","outside"],"defaultCode":60029,"grid":16},"attrs":[],"properties":{"ligatures":"share, out","name":"share","id":381,"order":768,"prevSize":32,"code":60414},"setIdx":1,"setId":0,"iconIdx":381},{"icon":{"paths":["M192 64v768h768v-768h-768zM896 768h-640v-640h640v640zM128 896v-672l-64-64v800h800l-64-64h-672z","M352 256l160 160-192 192 96 96 192-192 160 160v-416z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["new-tab","out","external","outside","popout","link","blank"],"defaultCode":60030,"grid":16},"attrs":[],"properties":{"ligatures":"new-tab, out2","name":"new-tab","id":382,"order":769,"prevSize":32,"code":60415},"setIdx":1,"setId":0,"iconIdx":382},{"icon":{"paths":["M576 736l96 96 320-320-320-320-96 96 224 224z","M448 288l-96-96-320 320 320 320 96-96-224-224z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["embed","code","html","xml"],"defaultCode":60031,"grid":16},"attrs":[],"properties":{"ligatures":"embed, code","name":"embed","id":383,"order":770,"prevSize":32,"code":60416},"setIdx":1,"setId":0,"iconIdx":383},{"icon":{"paths":["M832 736l96 96 320-320-320-320-96 96 224 224z","M448 288l-96-96-320 320 320 320 96-96-224-224z","M701.298 150.519l69.468 18.944-191.987 704.026-69.468-18.944 191.987-704.026z"],"width":1280,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["embed","code","html","xml"],"defaultCode":60032,"grid":16},"attrs":[],"properties":{"ligatures":"embed2, code2","name":"embed2","id":384,"order":771,"prevSize":32,"code":60417},"setIdx":1,"setId":0,"iconIdx":384},{"icon":{"paths":["M0 64v896h1024v-896h-1024zM960 896h-896v-768h896v768zM896 192h-768v640h768v-640zM448 512h-64v64h-64v64h-64v-64h64v-64h64v-64h-64v-64h-64v-64h64v64h64v64h64v64zM704 640h-192v-64h192v64z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["terminal","console","cmd","command-line"],"defaultCode":60033,"grid":16},"attrs":[],"properties":{"ligatures":"terminal, console","name":"terminal","id":385,"order":772,"prevSize":32,"code":60418},"setIdx":1,"setId":0,"iconIdx":385},{"icon":{"paths":["M864 704c-45.16 0-85.92 18.738-115.012 48.83l-431.004-215.502c1.314-8.252 2.016-16.706 2.016-25.328s-0.702-17.076-2.016-25.326l431.004-215.502c29.092 30.090 69.852 48.828 115.012 48.828 88.366 0 160-71.634 160-160s-71.634-160-160-160-160 71.634-160 160c0 8.622 0.704 17.076 2.016 25.326l-431.004 215.504c-29.092-30.090-69.852-48.83-115.012-48.83-88.366 0-160 71.636-160 160 0 88.368 71.634 160 160 160 45.16 0 85.92-18.738 115.012-48.828l431.004 215.502c-1.312 8.25-2.016 16.704-2.016 25.326 0 88.368 71.634 160 160 160s160-71.632 160-160c0-88.364-71.634-160-160-160z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["share","social"],"defaultCode":60034,"grid":16},"attrs":[],"properties":{"ligatures":"share2, social","name":"share2","id":386,"order":773,"prevSize":32,"code":60419},"setIdx":1,"setId":0,"iconIdx":386},{"icon":{"paths":["M853.31 0h-682.62c-93.88 0-170.69 76.784-170.69 170.658v682.656c0 93.876 76.81 170.686 170.69 170.686h682.622c93.938 0 170.688-76.81 170.688-170.686v-682.656c0-93.874-76.75-170.658-170.69-170.658zM256 256h512c9.138 0 18.004 1.962 26.144 5.662l-282.144 329.168-282.144-329.17c8.14-3.696 17.006-5.66 26.144-5.66zM192 704v-384c0-1.34 0.056-2.672 0.14-4l187.664 218.94-185.598 185.6c-1.444-5.338-2.206-10.886-2.206-16.54zM768 768h-512c-5.654 0-11.202-0.762-16.54-2.206l182.118-182.118 90.422 105.496 90.424-105.494 182.116 182.118c-5.34 1.442-10.886 2.204-16.54 2.204zM832 704c0 5.654-0.762 11.2-2.206 16.54l-185.598-185.598 187.664-218.942c0.084 1.328 0.14 2.66 0.14 4v384z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["mail","contact","support","newsletter","letter","email","envelop","social"],"defaultCode":60035,"grid":16},"attrs":[],"properties":{"ligatures":"mail2, contact2","name":"mail","id":387,"order":774,"prevSize":32,"code":60420},"setIdx":1,"setId":0,"iconIdx":387},{"icon":{"paths":["M853.342 0h-682.656c-93.874 0-170.686 76.81-170.686 170.69v682.622c0 93.938 76.812 170.688 170.686 170.688h682.656c93.876 0 170.658-76.75 170.658-170.69v-682.62c0-93.88-76.782-170.69-170.658-170.69zM853.342 128c7.988 0 15.546 2.334 22.020 6.342l-363.362 300.404-363.354-300.4c6.478-4.010 14.044-6.346 22.040-6.346h682.656zM170.686 896c-1.924 0-3.82-0.146-5.684-0.408l225.626-312.966-29.256-29.254-233.372 233.37v-611.138l384 464.396 384-464.394v611.136l-233.372-233.37-29.254 29.254 225.628 312.968c-1.858 0.26-3.746 0.406-5.662 0.406h-682.654z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["mail","contact","support","newsletter","letter","email","envelop","social"],"defaultCode":60036,"grid":16},"attrs":[],"properties":{"ligatures":"mail3, contact3","name":"mail2","id":388,"order":775,"prevSize":32,"code":60421},"setIdx":1,"setId":0,"iconIdx":388},{"icon":{"paths":["M853.342 0h-682.656c-93.874 0-170.686 76.81-170.686 170.69v682.622c0 93.938 76.812 170.688 170.686 170.688h682.656c93.876 0 170.658-76.75 170.658-170.69v-682.62c0-93.88-76.782-170.69-170.658-170.69zM182.628 886.626l-77.256-77.254 256-256 29.256 29.254-208 304zM153.372 198.628l29.256-29.256 329.372 265.374 329.374-265.374 29.254 29.256-358.628 422.626-358.628-422.626zM841.374 886.626l-208-304 29.254-29.254 256 256-77.254 77.254z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["mail","contact","support","newsletter","letter","email","envelop","social"],"defaultCode":60037,"grid":16},"attrs":[],"properties":{"ligatures":"mail4, contact4","name":"mail3","id":389,"order":776,"prevSize":32,"code":60422},"setIdx":1,"setId":0,"iconIdx":389},{"icon":{"paths":["M512 0c-282.77 0-512 229.23-512 512s229.23 512 512 512 512-229.23 512-512-229.23-512-512-512zM256 256h512c9.138 0 18.004 1.962 26.144 5.662l-282.144 329.168-282.144-329.17c8.14-3.696 17.006-5.66 26.144-5.66zM192 704v-384c0-1.34 0.056-2.672 0.14-4l187.664 218.942-185.598 185.598c-1.444-5.336-2.206-10.886-2.206-16.54zM768 768h-512c-5.654 0-11.202-0.762-16.54-2.208l182.118-182.118 90.422 105.498 90.424-105.494 182.116 182.12c-5.34 1.44-10.886 2.202-16.54 2.202zM832 704c0 5.654-0.762 11.2-2.206 16.54l-185.6-185.598 187.666-218.942c0.084 1.328 0.14 2.66 0.14 4v384z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["mail","contact","support","newsletter","letter","email","envelop","social"],"defaultCode":60038,"grid":16},"attrs":[],"properties":{"ligatures":"mail5, contact5","name":"mail4","id":390,"order":777,"prevSize":32,"code":60423},"setIdx":1,"setId":0,"iconIdx":390},{"icon":{"paths":["M925.6 885.2c-112.2 82.8-274.6 126.8-414.6 126.8-196.2 0-372.8-72.4-506.4-193.2-10.4-9.4-1.2-22.4 11.4-15 144.2 84 322.6 134.4 506.8 134.4 124.2 0 260.8-25.8 386.6-79.2 18.8-8 34.8 12.6 16.2 26.2z","M972.2 832c-14.4-18.4-94.8-8.8-131-4.4-11 1.2-12.6-8.2-2.8-15.2 64.2-45 169.4-32 181.6-17 12.4 15.2-3.2 120.6-63.4 171-9.2 7.8-18 3.6-14-6.6 13.8-33.8 44-109.4 29.6-127.8z","M707.4 757.6l0.2 0.2c24.8-21.8 69.4-60.8 94.6-81.8 10-8 8.2-21.4 0.4-32.6-22.6-31.2-46.6-56.6-46.6-114.2v-192c0-81.4 5.6-156-54.2-212-47.2-45.2-125.6-61.2-185.6-61.2-117.2 0-248 43.8-275.4 188.6-3 15.4 8.4 23.6 18.4 25.8l119.4 13c11.2-0.6 19.2-11.6 21.4-22.8 10.2-49.8 52-74 99-74 25.4 0 54.2 9.2 69.2 32 17.2 25.4 15 60 15 89.4v16c-71.4 8-164.8 13.2-231.6 42.6-77.2 33.4-131.4 101.4-131.4 201.4 0 128 80.6 192 184.4 192 87.6 0 135.4-20.6 203-89.8 22.4 32.4 29.6 48.2 70.6 82.2 9.4 5 21 4.6 29.2-2.8zM583.2 457.2c0 48 1.2 88-23 130.6-19.6 34.8-50.6 56-85.2 56-47.2 0-74.8-36-74.8-89.2 0-105 94.2-124 183.2-124v26.6z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["amazon","brand"],"defaultCode":60039,"grid":16},"attrs":[],"properties":{"name":"amazon","ligatures":"amazon, brand","id":391,"order":778,"prevSize":32,"code":60424},"setIdx":1,"setId":0,"iconIdx":391},{"icon":{"paths":["M522.2 438.8v175.6h290.4c-11.8 75.4-87.8 220.8-290.4 220.8-174.8 0-317.4-144.8-317.4-323.2s142.6-323.2 317.4-323.2c99.4 0 166 42.4 204 79l139-133.8c-89.2-83.6-204.8-134-343-134-283 0-512 229-512 512s229 512 512 512c295.4 0 491.6-207.8 491.6-500.2 0-33.6-3.6-59.2-8-84.8l-483.6-0.2z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["google","brand"],"defaultCode":60040,"grid":16},"attrs":[],"properties":{"name":"google","ligatures":"google, brand2","id":392,"order":779,"prevSize":32,"code":60425},"setIdx":1,"setId":0,"iconIdx":392},{"icon":{"paths":["M928 0h-832c-52.8 0-96 43.2-96 96v832c0 52.8 43.2 96 96 96h832c52.8 0 96-43.2 96-96v-832c0-52.8-43.2-96-96-96zM519.6 896c-212.2 0-384-171.8-384-384s171.8-384 384-384c103.6 0 190.4 37.8 257.2 100.4l-104.2 100.4c-28.6-27.4-78.4-59.2-153-59.2-131.2 0-238 108.6-238 242.4s107 242.4 238 242.4c152 0 209-109.2 217.8-165.6h-217.8v-131.6h362.6c3.2 19.2 6 38.4 6 63.6 0.2 219.4-146.8 375.2-368.6 375.2z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["google","brand"],"defaultCode":60041,"grid":16},"attrs":[],"properties":{"name":"google2","ligatures":"google2, brand3","id":393,"order":780,"prevSize":32,"code":60426},"setIdx":1,"setId":0,"iconIdx":393},{"icon":{"paths":["M512 0c-282.8 0-512 229.2-512 512s229.2 512 512 512 512-229.2 512-512-229.2-512-512-512zM519.6 896c-212.2 0-384-171.8-384-384s171.8-384 384-384c103.6 0 190.4 37.8 257.2 100.4l-104.2 100.4c-28.6-27.4-78.4-59.2-153-59.2-131.2 0-238 108.6-238 242.4s107 242.4 238 242.4c152 0 209-109.2 217.8-165.6h-217.8v-131.6h362.6c3.2 19.2 6 38.4 6 63.6 0.2 219.4-146.8 375.2-368.6 375.2z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["google","brand"],"defaultCode":60042,"grid":16},"attrs":[],"properties":{"name":"google3","ligatures":"google3, brand4","id":394,"order":781,"prevSize":32,"code":60427},"setIdx":1,"setId":0,"iconIdx":394},{"icon":{"paths":["M325.8 457.4v111.8h184.8c-7.4 48-55.8 140.6-184.8 140.6-111.2 0-202-92.2-202-205.8s90.8-205.8 202-205.8c63.4 0 105.6 27 129.8 50.2l88.4-85.2c-56.8-53-130.4-85.2-218.2-85.2-180.2 0.2-325.8 145.8-325.8 326s145.6 325.8 325.8 325.8c188 0 312.8-132.2 312.8-318.4 0-21.4-2.4-37.8-5.2-54h-307.6z","M1024 448h-96v-96h-96v96h-96v96h96v96h96v-96h96z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["google-plus","brand","social"],"defaultCode":60043,"grid":16},"attrs":[],"properties":{"ligatures":"google-plus, brand5","name":"google-plus","id":395,"order":782,"prevSize":32,"code":60428},"setIdx":1,"setId":0,"iconIdx":395},{"icon":{"paths":["M928 0h-832c-52.8 0-96 43.2-96 96v832c0 52.8 43.2 96 96 96h832c52.8 0 96-43.2 96-96v-832c0-52.8-43.2-96-96-96zM384 768c-141.6 0-256-114.4-256-256s114.4-256 256-256c69.2 0 127 25.2 171.6 67l-69.6 66.8c-19-18.2-52.2-39.4-102-39.4-87.4 0-158.8 72.4-158.8 161.6s71.4 161.6 158.8 161.6c101.4 0 139.4-72.8 145.2-110.4h-145.2v-87.8h241.8c2.2 12.8 4 25.6 4 42.4 0 146.4-98 250.2-245.8 250.2zM896 512h-64v64h-64v-64h-64v-64h64v-64h64v64h64v64z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["google-plus","brand","social"],"defaultCode":60044,"grid":16},"attrs":[],"properties":{"ligatures":"google-plus2, brand6","name":"google-plus2","id":396,"order":783,"prevSize":32,"code":60429},"setIdx":1,"setId":0,"iconIdx":396},{"icon":{"paths":["M512 0c-282.8 0-512 229.2-512 512s229.2 512 512 512 512-229.2 512-512-229.2-512-512-512zM384 768c-141.6 0-256-114.4-256-256s114.4-256 256-256c69.2 0 127 25.2 171.6 67l-69.6 66.8c-19-18.2-52.2-39.4-102-39.4-87.4 0-158.8 72.4-158.8 161.6s71.4 161.6 158.8 161.6c101.4 0 139.4-72.8 145.2-110.4h-145.2v-87.8h241.8c2.2 12.8 4 25.6 4 42.4 0 146.4-98 250.2-245.8 250.2zM832 512v64h-64v-64h-64v-64h64v-64h64v64h64v64h-64z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["google-plus","brand","social"],"defaultCode":60045,"grid":16},"attrs":[],"properties":{"ligatures":"google-plus3, brand7","name":"google-plus3","id":397,"order":784,"prevSize":32,"code":60430},"setIdx":1,"setId":0,"iconIdx":397},{"icon":{"paths":["M511.8 0c-244.2 0-442.2 198-442.2 442.2 0 231.4 210.8 419 442.2 419v162.8c268.6-136.2 442.6-355.6 442.6-581.8 0-244.2-198.4-442.2-442.6-442.2zM448 512c0 53-28.6 96-64 96v-96h-128v-192h192v192zM768 512c0 53-28.6 96-64 96v-96h-128v-192h192v192z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["hangouts","brand","social"],"defaultCode":60046,"grid":16},"attrs":[],"properties":{"name":"hangouts","ligatures":"hangouts, brand8","id":398,"order":785,"prevSize":32,"code":60431},"setIdx":1,"setId":0,"iconIdx":398},{"icon":{"paths":["M438 640l-184.6 320h580.6l184.6-320z","M992.4 576l-295.6-512h-369.6l295.6 512z","M290.2 128l-290.2 502.8 184.8 320 290.2-502.8z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["google-drive","brand"],"defaultCode":60047,"grid":16},"attrs":[],"properties":{"ligatures":"google-drive, brand9","name":"google-drive","id":399,"order":786,"prevSize":32,"code":60432},"setIdx":1,"setId":0,"iconIdx":399},{"icon":{"paths":["M608 192h160v-192h-160c-123.514 0-224 100.486-224 224v96h-128v192h128v512h192v-512h160l32-192h-192v-96c0-17.346 14.654-32 32-32z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["facebook","brand","social"],"defaultCode":60048,"grid":16},"attrs":[],"properties":{"ligatures":"facebook, brand10","name":"facebook","id":400,"order":787,"prevSize":32,"code":60433},"setIdx":1,"setId":0,"iconIdx":400},{"icon":{"paths":["M928 0h-832c-52.8 0-96 43.2-96 96v832c0 52.8 43.2 96 96 96h416v-448h-128v-128h128v-64c0-105.8 86.2-192 192-192h128v128h-128c-35.2 0-64 28.8-64 64v64h192l-32 128h-160v448h288c52.8 0 96-43.2 96-96v-832c0-52.8-43.2-96-96-96z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["facebook","brand","social"],"defaultCode":60049,"grid":16},"attrs":[],"properties":{"ligatures":"facebook2, brand11","name":"facebook2","id":401,"order":788,"prevSize":32,"code":60434},"setIdx":1,"setId":0,"iconIdx":401},{"icon":{"paths":["M512 92.2c136.8 0 153 0.6 206.8 3 50 2.2 77 10.6 95 17.6 23.8 9.2 41 20.4 58.8 38.2 18 18 29 35 38.4 58.8 7 18 15.4 45.2 17.6 95 2.4 54 3 70.2 3 206.8s-0.6 153-3 206.8c-2.2 50-10.6 77-17.6 95-9.2 23.8-20.4 41-38.2 58.8-18 18-35 29-58.8 38.4-18 7-45.2 15.4-95 17.6-54 2.4-70.2 3-206.8 3s-153-0.6-206.8-3c-50-2.2-77-10.6-95-17.6-23.8-9.2-41-20.4-58.8-38.2-18-18-29-35-38.4-58.8-7-18-15.4-45.2-17.6-95-2.4-54-3-70.2-3-206.8s0.6-153 3-206.8c2.2-50 10.6-77 17.6-95 9.2-23.8 20.4-41 38.2-58.8 18-18 35-29 58.8-38.4 18-7 45.2-15.4 95-17.6 53.8-2.4 70-3 206.8-3zM512 0c-139 0-156.4 0.6-211 3-54.4 2.4-91.8 11.2-124.2 23.8-33.8 13.2-62.4 30.6-90.8 59.2-28.6 28.4-46 57-59.2 90.6-12.6 32.6-21.4 69.8-23.8 124.2-2.4 54.8-3 72.2-3 211.2s0.6 156.4 3 211c2.4 54.4 11.2 91.8 23.8 124.2 13.2 33.8 30.6 62.4 59.2 90.8 28.4 28.4 57 46 90.6 59 32.6 12.6 69.8 21.4 124.2 23.8 54.6 2.4 72 3 211 3s156.4-0.6 211-3c54.4-2.4 91.8-11.2 124.2-23.8 33.6-13 62.2-30.6 90.6-59s46-57 59-90.6c12.6-32.6 21.4-69.8 23.8-124.2 2.4-54.6 3-72 3-211s-0.6-156.4-3-211c-2.4-54.4-11.2-91.8-23.8-124.2-12.6-34-30-62.6-58.6-91-28.4-28.4-57-46-90.6-59-32.6-12.6-69.8-21.4-124.2-23.8-54.8-2.6-72.2-3.2-211.2-3.2v0z","M512 249c-145.2 0-263 117.8-263 263s117.8 263 263 263 263-117.8 263-263c0-145.2-117.8-263-263-263zM512 682.6c-94.2 0-170.6-76.4-170.6-170.6s76.4-170.6 170.6-170.6c94.2 0 170.6 76.4 170.6 170.6s-76.4 170.6-170.6 170.6z","M846.8 238.6c0 33.91-27.49 61.4-61.4 61.4s-61.4-27.49-61.4-61.4c0-33.91 27.49-61.4 61.4-61.4s61.4 27.49 61.4 61.4z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["instagram","brand","social"],"defaultCode":60050,"grid":16},"attrs":[],"properties":{"ligatures":"instagram, brand12","name":"instagram","id":402,"order":789,"prevSize":32,"code":60435},"setIdx":1,"setId":0,"iconIdx":402},{"icon":{"paths":["M873 148.8c-95.8-96-223.2-148.8-359-148.8-279.6 0-507.2 227.6-507.2 507.4 0 89.4 23.4 176.8 67.8 253.6l-72 263 269-70.6c74.2 40.4 157.6 61.8 242.4 61.8h0.2c0 0 0 0 0 0 279.6 0 507.4-227.6 507.4-507.4 0-135.6-52.8-263-148.6-359zM514.2 929.6v0c-75.8 0-150-20.4-214.8-58.8l-15.4-9.2-159.6 41.8 42.6-155.6-10-16c-42.4-67-64.6-144.6-64.6-224.4 0-232.6 189.2-421.8 422-421.8 112.6 0 218.6 44 298.2 123.6 79.6 79.8 123.4 185.6 123.4 298.4-0.2 232.8-189.4 422-421.8 422zM745.4 613.6c-12.6-6.4-75-37-86.6-41.2s-20-6.4-28.6 6.4c-8.4 12.6-32.8 41.2-40.2 49.8-7.4 8.4-14.8 9.6-27.4 3.2s-53.6-19.8-102-63c-37.6-33.6-63.2-75.2-70.6-87.8s-0.8-19.6 5.6-25.8c5.8-5.6 12.6-14.8 19-22.2s8.4-12.6 12.6-21.2c4.2-8.4 2.2-15.8-1-22.2s-28.6-68.8-39-94.2c-10.2-24.8-20.8-21.4-28.6-21.8-7.4-0.4-15.8-0.4-24.2-0.4s-22.2 3.2-33.8 15.8c-11.6 12.6-44.4 43.4-44.4 105.8s45.4 122.6 51.8 131.2c6.4 8.4 89.4 136.6 216.6 191.4 30.2 13 53.8 20.8 72.2 26.8 30.4 9.6 58 8.2 79.8 5 24.4-3.6 75-30.6 85.6-60.2s10.6-55 7.4-60.2c-3-5.6-11.4-8.8-24.2-15.2z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["whatsapp","brand","social"],"defaultCode":60051,"grid":16},"attrs":[],"properties":{"name":"whatsapp","ligatures":"whatsapp, brand13","id":403,"order":790,"prevSize":32,"code":60436},"setIdx":1,"setId":0,"iconIdx":403},{"icon":{"paths":["M512 0c-281.6 0-512 230.4-512 512s230.4 512 512 512 512-230.4 512-512-227.8-512-512-512zM747.6 739.8c-10.2 15.4-28.2 20.4-43.6 10.2-120.4-74.2-271.4-89.6-450.6-48.6-18 5.2-33.2-7.6-38.4-23-5.2-18 7.6-33.2 23-38.4 194.6-43.6 363.6-25.6 496.6 56.4 18 7.6 20.6 28 13 43.4zM809 599c-12.8 18-35.8 25.6-53.8 12.8-138.2-84.4-348.2-110-509.4-58.8-20.4 5.2-43.6-5.2-48.6-25.6-5.2-20.4 5.2-43.6 25.6-48.6 186.8-56.4 417.2-28.2 576 69.2 15.2 7.6 23 33.2 10.2 51zM814 455.6c-163.8-97.2-437.8-107.6-594-58.8-25.6 7.6-51.2-7.6-58.8-30.8-7.6-25.6 7.6-51.2 30.8-58.8 181.8-53.8 481.2-43.6 670.8 69.2 23 12.8 30.8 43.6 18 66.6-13 17.8-43.6 25.4-66.8 12.6z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["spotify","brand","social"],"defaultCode":60052,"grid":16},"attrs":[],"properties":{"name":"spotify","ligatures":"spotify, brand14","id":404,"order":791,"prevSize":32,"code":60437},"setIdx":1,"setId":0,"iconIdx":404},{"icon":{"paths":["M512 0c-282.8 0-512 229.2-512 512s229.2 512 512 512 512-229.2 512-512-229.2-512-512-512zM763.6 351l-84 395.8c-5.8 28.2-22.8 34.8-46.4 21.8l-128-94.6-61.4 59.8c-7.2 7-12.8 12.8-25.6 12.8-16.6 0-13.8-6.2-19.4-22l-43.6-143.2-126.6-39.4c-27.4-8.4-27.6-27.2 6.2-40.6l493.2-190.4c22.4-10.2 44.2 5.4 35.6 40z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["telegram","brand","social"],"defaultCode":60053,"grid":16},"attrs":[],"properties":{"name":"telegram","ligatures":"telegram, brand15","id":405,"order":792,"prevSize":32,"code":60438},"setIdx":1,"setId":0,"iconIdx":405},{"icon":{"paths":["M1024 226.4c-37.6 16.8-78.2 28-120.6 33 43.4-26 76.6-67.2 92.4-116.2-40.6 24-85.6 41.6-133.4 51-38.4-40.8-93-66.2-153.4-66.2-116 0-210 94-210 210 0 16.4 1.8 32.4 5.4 47.8-174.6-8.8-329.4-92.4-433-219.6-18 31-28.4 67.2-28.4 105.6 0 72.8 37 137.2 93.4 174.8-34.4-1-66.8-10.6-95.2-26.2 0 0.8 0 1.8 0 2.6 0 101.8 72.4 186.8 168.6 206-17.6 4.8-36.2 7.4-55.4 7.4-13.6 0-26.6-1.4-39.6-3.8 26.8 83.4 104.4 144.2 196.2 146-72 56.4-162.4 90-261 90-17 0-33.6-1-50.2-3 93.2 59.8 203.6 94.4 322.2 94.4 386.4 0 597.8-320.2 597.8-597.8 0-9.2-0.2-18.2-0.6-27.2 41-29.4 76.6-66.4 104.8-108.6z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["twitter","brand","tweet","social"],"defaultCode":60054,"grid":16},"attrs":[],"properties":{"ligatures":"twitter, brand16","name":"twitter","id":406,"order":793,"prevSize":32,"code":60439},"setIdx":1,"setId":0,"iconIdx":406},{"icon":{"paths":["M960.8 509c-26.4 6-51.8 8.8-74.8 8.8-129.2 0-228.6-90.2-228.6-247.2 0-77 29.8-116.8 71.8-116.8 40 0 66.6 35.8 66.6 108.6 0 41.4-11 86.8-19.2 113.6 0 0 39.8 69.4 148.6 48.2 23.2-51.4 35.6-117.8 35.6-176 0-156.8-80-248.2-226.6-248.2-150.8 0-239 115.8-239 268.6 0 151.4 70.8 281.2 187.4 340.4-49 98.2-111.4 184.6-176.6 249.8-118-142.8-224.8-333.2-268.6-705h-174.2c80.6 619.2 320.4 816.4 384 854.2 35.8 21.6 66.8 20.6 99.6 2 51.6-29.2 206.2-184 292-365 36 0 79.2-4.2 122.2-14v-122z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["vine","brand","social"],"defaultCode":60055,"grid":16},"attrs":[],"properties":{"name":"vine","ligatures":"vine, brand17","id":407,"order":794,"prevSize":32,"code":60440},"setIdx":1,"setId":0,"iconIdx":407},{"icon":{"paths":["M928 0h-832c-52.8 0-96 43.2-96 96v832c0 52.8 43.2 96 96 96h832c52.8 0 96-43.2 96-96v-832c0-52.8-43.2-96-96-96zM829.4 716.8l-93.6 1.4c0 0-20.2 4-46.6-14.2-35-24-68-86.6-93.8-78.4-26 8.2-25.2 64.4-25.2 64.4s0.2 12-5.8 18.4c-6.4 7-19.2 8.4-19.2 8.4h-41.8c0 0-92.4 5.6-173.8-79.2-88.8-92.4-167.2-275.8-167.2-275.8s-4.6-12 0.4-17.8c5.6-6.6 20.6-7 20.6-7l100.2-0.6c0 0 9.4 1.6 16.2 6.6 5.6 4 8.6 11.8 8.6 11.8s16.2 41 37.6 78c41.8 72.2 61.4 88 75.6 80.4 20.6-11.2 14.4-102.2 14.4-102.2s0.4-33-10.4-47.6c-8.4-11.4-24.2-14.8-31-15.6-5.6-0.8 3.6-13.8 15.6-19.8 18-8.8 49.8-9.4 87.4-9 29.2 0.2 37.8 2.2 49.2 4.8 34.6 8.4 22.8 40.6 22.8 117.8 0 24.8-4.4 59.6 13.4 71 7.6 5 26.4 0.8 73.4-79 22.2-37.8 39-82.2 39-82.2s3.6-8 9.2-11.4c5.8-3.4 13.6-2.4 13.6-2.4l105.4-0.6c0 0 31.6-3.8 36.8 10.6 5.4 15-11.8 50-54.8 107.4-70.6 94.2-78.6 85.4-19.8 139.8 56 52 67.6 77.4 69.6 80.6 22.8 38.4-26 41.4-26 41.4z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["vk","brand","social"],"defaultCode":60056,"grid":16},"attrs":[],"properties":{"name":"vk","ligatures":"vk, brand18","id":408,"order":795,"prevSize":32,"code":60441},"setIdx":1,"setId":0,"iconIdx":408},{"icon":{"paths":["M425.2 10.6c-241.2 40.6-425.2 250.4-425.2 503.2 0 125.6 45.6 240.6 120.8 329.6 178.6-86.4 303.6-282 304.4-509.8v-323z","M598.8 10.6c241.2 40.6 425.2 250.4 425.2 503.2 0 125.6-45.6 240.6-120.8 329.6-178.6-86.4-303.6-282-304.4-509.8v-323z","M510.2 642.6c-31.8 131.6-126.8 244-245 318.8 72.8 39.8 156.2 62.6 245 62.6s172.2-22.8 245-62.6c-118.2-74.8-213.2-187.2-245-318.8z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["renren","brand","social"],"defaultCode":60057,"grid":16},"attrs":[],"properties":{"name":"renren","ligatures":"renren, brand19","id":409,"order":796,"prevSize":32,"code":60442},"setIdx":1,"setId":0,"iconIdx":409},{"icon":{"paths":["M430.2 898c-169.6 16.8-316-60-327-171.2-11-111.4 117.6-215 287-231.8 169.6-16.8 316 60 326.8 171.2 11.2 111.4-117.4 215.2-286.8 231.8zM769.2 528.6c-14.4-4.4-24.4-7.2-16.8-26.2 16.4-41.2 18-76.6 0.2-102-33.2-47.4-124.2-45-228.4-1.2 0 0-32.8 14.2-24.4-11.6 16-51.6 13.6-94.6-11.4-119.6-56.6-56.6-207 2.2-336 131.2-96.4 96.2-152.4 198.8-152.4 287.4 0 169.2 217.2 272.2 429.6 272.2 278.4 0 463.8-161.8 463.8-290.2 0-77.8-65.4-121.8-124.2-140z","M954.2 218.6c-67.2-74.6-166.4-103-258-83.6v0c-21.2 4.6-34.6 25.4-30 46.4 4.6 21.2 25.2 34.6 46.4 30 65.2-13.8 135.6 6.4 183.4 59.4s60.8 125.2 40.2 188.4v0c-6.6 20.6 4.6 42.6 25.2 49.4 20.6 6.6 42.6-4.6 49.4-25.2v-0.2c28.8-88.4 10.6-190-56.6-264.6z","M850.8 312c-32.8-36.4-81.2-50.2-125.6-40.6-18.2 3.8-29.8 22-26 40.2 4 18.2 22 29.8 40 25.8v0c21.8-4.6 45.4 2.2 61.4 19.8 16 17.8 20.4 42 13.4 63.2v0c-5.6 17.6 4 36.8 21.8 42.6 17.8 5.6 36.8-4 42.6-21.8 14-43.4 5.2-93-27.6-129.2z","M439.6 696.6c-6 10.2-19 15-29.2 10.8-10.2-4-13.2-15.6-7.4-25.4 6-9.8 18.6-14.6 28.6-10.8 10 3.6 13.6 15 8 25.4zM385.4 765.8c-16.4 26.2-51.6 37.6-78 25.6-26-11.8-33.8-42.2-17.4-67.8 16.2-25.4 50.2-36.8 76.4-25.8 26.6 11.4 35.2 41.6 19 68zM447 580.6c-80.6-21-171.8 19.2-206.8 90.2-35.8 72.4-1.2 153 80.2 179.4 84.4 27.2 184-14.6 218.6-92.6 34.2-76.6-8.4-155.2-92-177z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["sina-weibo","brand","social"],"defaultCode":60058,"grid":16},"attrs":[],"properties":{"name":"sina-weibo","ligatures":"sina-weibo, brand20","id":410,"order":797,"prevSize":32,"code":60443},"setIdx":1,"setId":0,"iconIdx":410},{"icon":{"paths":["M136.294 750.93c-75.196 0-136.292 61.334-136.292 136.076 0 75.154 61.1 135.802 136.292 135.802 75.466 0 136.494-60.648 136.494-135.802-0.002-74.742-61.024-136.076-136.494-136.076zM0.156 347.93v196.258c127.784 0 247.958 49.972 338.458 140.512 90.384 90.318 140.282 211.036 140.282 339.3h197.122c-0.002-372.82-303.282-676.070-675.862-676.070zM0.388 0v196.356c455.782 0 826.756 371.334 826.756 827.644h196.856c0-564.47-459.254-1024-1023.612-1024z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["feed","rss","social"],"defaultCode":60059,"grid":16},"attrs":[],"properties":{"ligatures":"feed2, rss","name":"rss","id":411,"order":798,"prevSize":32,"code":60444},"setIdx":1,"setId":0,"iconIdx":411},{"icon":{"paths":["M928 0h-832c-52.8 0-96 43.2-96 96v832c0 52.8 43.2 96 96 96h832c52.8 0 96-43.2 96-96v-832c0-52.8-43.2-96-96-96zM279 831.2c-48 0-87-38.6-87-86.6 0-47.6 39-86.8 87-86.8 48.2 0 87 39.2 87 86.8 0 48-39 86.6-87 86.6zM497.4 832c0-81.8-31.8-158.8-89.4-216.4-57.8-57.8-134.4-89.6-216-89.6v-125.2c237.6 0 431.2 193.4 431.2 431.2h-125.8zM719.6 832c0-291-236.6-528-527.4-528v-125.2c360 0 653 293.2 653 653.2h-125.6z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["feed","rss","social"],"defaultCode":60060,"grid":16},"attrs":[],"properties":{"ligatures":"feed3, rss2","name":"rss2","id":412,"order":799,"prevSize":32,"code":60445},"setIdx":1,"setId":0,"iconIdx":412},{"icon":{"paths":["M1013.8 307.2c0 0-10-70.6-40.8-101.6-39-40.8-82.6-41-102.6-43.4-143.2-10.4-358.2-10.4-358.2-10.4h-0.4c0 0-215 0-358.2 10.4-20 2.4-63.6 2.6-102.6 43.4-30.8 31-40.6 101.6-40.6 101.6s-10.2 82.8-10.2 165.8v77.6c0 82.8 10.2 165.8 10.2 165.8s10 70.6 40.6 101.6c39 40.8 90.2 39.4 113 43.8 82 7.8 348.2 10.2 348.2 10.2s215.2-0.4 358.4-10.6c20-2.4 63.6-2.6 102.6-43.4 30.8-31 40.8-101.6 40.8-101.6s10.2-82.8 10.2-165.8v-77.6c-0.2-82.8-10.4-165.8-10.4-165.8zM406.2 644.8v-287.8l276.6 144.4-276.6 143.4z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["youtube","brand","social"],"defaultCode":60061,"grid":16},"attrs":[],"properties":{"ligatures":"youtube, brand21","name":"youtube","id":413,"order":800,"prevSize":32,"code":60446},"setIdx":1,"setId":0,"iconIdx":413},{"icon":{"paths":["M344.012 169.399c0.209-0.865 0.344-1.479 0.388-1.8l1.042-7.559-47.349-0.267c-42.779-0.242-55.87 0.007-57.047 1.084-0.565 0.516-15.333 56.633-41.655 158.273-12.556 48.484-23.124 87.206-23.487 86.051s-15.391-56.498-33.397-122.98c-18.006-66.482-33.104-121.243-33.55-121.692-0.623-0.623-57.98-0.9-104.417-0.502-6.735 0.056-10.477-13.11 60.021 211.133 9.759 31.041 24.371 74.997 32.469 97.679 9.333 26.141 15.989 46.323 20.534 63.173 8.038 32.067 8.319 52.163 6.565 75.625-2.026 27.101-2.321 218.438-0.342 221.638 1.512 2.449 91.223 3.589 99.712 1.268 1.358-0.372 2.265-1.691 2.87-8.928 2.119-6.219 2.286-30.969 2.286-133.744v-131.281l5.742-18.112c3.756-11.849 13.201-42.995 20.989-69.22 7.789-26.222 17.21-57.619 20.938-69.771 33.834-110.319 66.14-218.831 66.994-225.011l0.693-5.056z","M846.122 328.651l-0.021 6.838-1.065 0.014-0.595 188.993-0.577 183.227-14.666 14.929c-16.424 16.719-29.585 23.101-41.488 20.113-12.963-3.254-12.64 1.8-13.722-214.768l-0.998-199.347h-94.316v6.851h-1.086v216.289c0 231.737-0.007 231.599 11.752 254.875 9.366 18.536 23.010 27.559 46.391 30.671h0.002c30.79 4.1 64.001-9.849 94.77-39.809l13.373-13.022v22.445c0 19.396 0.554 22.601 4.070 23.58 5.756 1.605 77.173 1.707 84.89 0.126l6.396-1.314v-6.628l1.086-0.223v-495.098l-94.195 1.258z","M606.892 426.33c-8.935-38.341-25.68-64.115-53.233-81.939-43.281-27.999-92.718-30.957-138.586-8.291-33.425 16.515-54.951 43.914-66.071 84.083-1.326 4.786-2.298 8.812-3.033 14.815-2.83 14.184-3.163 35.351-3.889 133.951-1.121 151.928 0.616 170.003 19.643 204.51 18.664 33.848 57.403 58.661 99.572 63.782 12.696 1.54 38.43-0.858 53.23-4.961 33.632-9.326 65.864-35.906 80.118-66.078 6.158-13.033 9.875-22.096 12.115-38.651 4.175-22.617 4.47-59.175 4.47-152.375-0.002-118.875-0.379-131.862-4.337-148.847zM499.34 736.003c-7.907 6.028-21.734 8.649-32.983 6.249-8.656-1.847-20.338-15.419-23.934-27.801-4.479-15.436-4.823-229.985-0.954-272.059 6.379-21.054 24.19-32.050 43.635-26.813 15.157 4.082 22.915 13.575 27.336 33.457 3.282 14.754 3.67 33.129 2.972 141.26-0.46 71.701-0.716 106.742-3.058 125.553-2.382 11.87-6.319 15.047-13.015 20.154z","M2300.389 534.137h45.57l-0.726-41.281c-0.705-37.869-1.263-42.2-6.324-52.472-7.982-16.21-19.759-23.401-38.446-23.401-22.448 0-36.678 10.849-43.388 33.141-2.858 9.486-5.863 74.685-3.707 80.308 1.205 3.144 7.724 3.705 47.021 3.705z","M1995.795 440.237c-6.077-12.247-17.385-18.278-30.525-17.806-10.221 0.365-21.561 4.677-32.488 13.010l-8.14 6.177v296.598l8.14 6.177c18.429 14.052 38.674 17.031 52.619 7.703 5.519-3.691 9.117-8.779 11.919-16.861 3.647-10.524 3.965-24.003 3.489-148.772-0.495-130.043-0.781-137.702-5.014-146.226z","M2560.878 306.633c-9.080-108.842-16.303-144.165-38.751-189.544-29.729-60.101-72.692-91.788-133.876-98.747-47.309-5.379-225.315-12.97-390.044-16.631-285.188-6.338-754.057 5.858-813.939 21.173-27.673 7.077-48.426 19.11-70.022 40.604-37.844 37.662-60.391 91.679-69.452 166.396-20.692 170.606-21.134 376.727-1.188 553.515 8.577 76.041 26.243 125.443 59.41 166.159 20.694 25.406 56.352 46.998 88.26 53.442 22.385 4.523 134.42 10.798 297.605 16.668 24.306 0.874 88.667 2.379 143.030 3.344 113.301 2.012 321.627 0.821 440.719-2.519 80.127-2.249 226.201-8.172 253.5-10.282 7.677-0.593 25.469-1.728 39.537-2.523 47.277-2.67 77.353-12.568 105.596-34.76 36.553-28.718 64.857-81.795 76.815-144.037 11.314-58.894 18.887-163.773 20.422-282.851 1.284-99.491-0.426-153.175-7.621-239.409zM1425.273 267.192l-52.982 0.654-2.326 565.143-45.932 0.581c-35.525 0.488-46.307-0.044-47.167-2.326-0.616-1.626-1.356-129.020-1.672-283.153l-0.581-280.246-103.493-1.307v-88.304l305.829 1.235 1.307 87.069-52.982 0.654zM1750.216 591.117v243.035h-83.725v-25.583c0-19.247-0.735-25.583-2.979-25.583-1.64 0-9.226 6.344-16.861 14.098-16.557 16.817-36.171 30.367-52.91 36.63-34.662 12.968-67.589 5.4-81.618-18.75-12.838-22.11-13.082-27.052-13.082-256.335v-210.547h83.653l0.654 198.265c0.623 194.821 0.714 198.393 5.377 206.333 6.182 10.521 15.608 13.347 30.597 9.231 8.817-2.423 14.836-6.707 29.143-20.931l18.024-17.952v-374.946h83.725v243.035zM2076.757 799.41c-7.372 16.424-23.806 32.509-37.283 36.485-35.167 10.382-63.375 1.923-95.935-28.708-10.103-9.505-19.51-17.224-20.931-17.224-1.712 0-2.616 7.449-2.616 22.094v22.094h-83.725v-655.845h83.725v106.982c0 58.84 0.786 106.982 1.744 106.982s9.789-7.807 19.624-17.298c22.629-21.841 41.548-31.399 65.557-33.213 42.811-3.24 68.327 18.794 80.018 69.117 3.647 15.696 3.998 33.625 3.998 179.078-0.002 177.178-0.021 177.918-14.175 209.457zM2430.99 702.168c-0.744 18.226-2.954 39.137-4.942 46.514-11.642 43.167-42.635 73.731-87.432 86.269-60.315 16.878-126.704-10.777-153.205-63.812-14.875-29.769-15.408-35.706-15.408-181.185 0-118.617 0.419-133.171 4.214-149.354 10.747-45.788 37.392-75.422 82.49-91.865 13.068-4.765 26.708-7.207 40.337-7.486 48.672-0.998 96.984 25.18 117.229 67.808 13.659 28.76 15.35 41.060 16.717 122.099l1.235 72.678-178.497 1.235-0.654 48.84c-0.93 68.901 3.716 90.088 22.313 102.621 15.645 10.54 39.679 9.745 52.765-1.744 12.263-10.768 15.726-22.336 16.933-56.107l1.091-29.653h86.195l-1.381 33.143z"],"width":2569,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["youtube","brand","social"],"defaultCode":60062,"grid":16},"attrs":[],"properties":{"ligatures":"youtube2, brand22","name":"youtube2","id":414,"order":801,"prevSize":32,"code":60447},"setIdx":1,"setId":0,"iconIdx":414},{"icon":{"paths":["M96 0l-96 160v736h256v128h128l128-128h160l288-288v-608h-864zM832 544l-160 160h-160l-128 128v-128h-192v-576h640v416z","M608 256h96v256h-96v-256z","M416 256h96v256h-96v-256z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["twitch","brand","social"],"defaultCode":60063,"grid":16},"attrs":[],"properties":{"ligatures":"twitch, brand23","name":"twitch","id":415,"order":802,"prevSize":32,"code":60448},"setIdx":1,"setId":0,"iconIdx":415},{"icon":{"paths":["M1023.6 274c-4.6 99.6-74.2 236.2-208.8 409.4-139.2 180.8-257 271.4-353.4 271.4-59.6 0-110.2-55-151.4-165.2-27.6-101-55-202-82.6-303-30.6-110.2-63.4-165.2-98.6-165.2-7.6 0-34.4 16.2-80.4 48.2l-48.2-62c50.6-44.4 100.4-88.8 149.4-133.2 67.4-58.2 118-88.8 151.8-92 79.6-7.6 128.8 46.8 147.2 163.4 19.8 125.8 33.6 204 41.4 234.6 23 104.4 48.2 156.6 75.8 156.6 21.4 0 53.6-33.8 96.6-101.6 42.8-67.6 65.8-119.2 69-154.6 6.2-58.4-16.8-87.8-69-87.8-24.6 0-49.8 5.6-75.8 16.8 50.4-164.8 146.4-244.8 288.4-240.2 105 2.8 154.6 71 148.6 204.4z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["vimeo","brand","social"],"defaultCode":60064,"grid":16},"attrs":[],"properties":{"ligatures":"vimeo, brand24","name":"vimeo","id":416,"order":803,"prevSize":32,"code":60449},"setIdx":1,"setId":0,"iconIdx":416},{"icon":{"paths":["M928 0h-832c-52.8 0-96 43.2-96 96v832c0 52.8 43.2 96 96 96h832c52.8 0 96-43.2 96-96v-832c0-52.8-43.2-96-96-96zM861.6 340c-3.2 72-53.6 170.6-151 295.8-100.6 130.8-185.8 196.2-255.4 196.2-43.2 0-79.6-39.8-109.4-119.4-20-73-39.8-146-59.8-219-22-79.6-45.8-119.4-71.2-119.4-5.6 0-25 11.6-58 34.8l-34.8-44.8c36.6-32 72.6-64.2 108-96.2 48.8-42 85.2-64.2 109.6-66.4 57.6-5.6 93 33.8 106.4 118 14.4 91 24.4 147.4 30 169.6 16.6 75.4 34.8 113 54.8 113 15.4 0 38.8-24.4 69.8-73.4s47.6-86.2 49.8-111.8c4.4-42.2-12.2-63.4-49.8-63.4-17.8 0-36 4-54.8 12.2 36.4-119 105.8-177 208.4-173.6 76 2.2 111.8 51.4 107.4 147.8z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["vimeo","brand","social"],"defaultCode":60065,"grid":16},"attrs":[],"properties":{"ligatures":"vimeo2, brand25","name":"vimeo2","id":417,"order":804,"prevSize":32,"code":60450},"setIdx":1,"setId":0,"iconIdx":417},{"icon":{"paths":["M928 0h-832c-52.8 0-96 43.2-96 96v832c0 52.8 43.2 96 96 96h832c52.8 0 96-43.2 96-96v-832c0-52.8-43.2-96-96-96zM822.4 768.8l-348.4 114c-79.6 26-87.6 21.8-123.6-89.6l-88-272.6c-21-64.6-85-238.6-95.8-272-20-62-20-65.4 97-103.4 91.6-30 95.4-29 128.6 74.4 26.8 83.2 44 150.4 71.6 235.4l75 232 239.6-78.4c47.2-15.6 63-14.8 76.4 43.4l9.6 44c11.2 51-14.6 64-42 72.8z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["lanyrd","brand"],"defaultCode":60066,"grid":16},"attrs":[],"properties":{"ligatures":"lanyrd, brand26","name":"lanyrd","id":418,"order":805,"prevSize":32,"code":60451},"setIdx":1,"setId":0,"iconIdx":418},{"icon":{"paths":["M0 544c0-123.712 100.288-224 224-224s224 100.288 224 224c0 123.712-100.288 224-224 224s-224-100.288-224-224zM576 544c0-123.712 100.288-224 224-224s224 100.288 224 224c0 123.712-100.288 224-224 224s-224-100.288-224-224z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["flickr","brand","social"],"defaultCode":60067,"grid":16},"attrs":[],"properties":{"ligatures":"flickr, brand27","name":"flickr","id":419,"order":806,"prevSize":32,"code":60452},"setIdx":1,"setId":0,"iconIdx":419},{"icon":{"paths":["M800 416c-70.58 0-128 57.42-128 128s57.42 128 128 128c70.58 0 128-57.42 128-128s-57.42-128-128-128zM800 320v0c123.71 0 224 100.288 224 224 0 123.71-100.29 224-224 224s-224-100.29-224-224c0-123.712 100.29-224 224-224zM0 544c0-123.712 100.288-224 224-224s224 100.288 224 224c0 123.712-100.288 224-224 224s-224-100.288-224-224z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["flickr","brand","social"],"defaultCode":60068,"grid":16},"attrs":[],"properties":{"ligatures":"flickr2, brand28","name":"flickr2","id":420,"order":807,"prevSize":32,"code":60453},"setIdx":1,"setId":0,"iconIdx":420},{"icon":{"paths":["M928 0h-832c-52.8 0-96 43.2-96 96v832c0 52.8 43.2 96 96 96h832c52.8 0 96-43.2 96-96v-832c0-52.8-43.2-96-96-96zM288 672c-88.4 0-160-71.6-160-160s71.6-160 160-160 160 71.6 160 160-71.6 160-160 160zM736 672c-88.4 0-160-71.6-160-160s71.6-160 160-160c88.4 0 160 71.6 160 160s-71.6 160-160 160z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["flickr","brand","social"],"defaultCode":60069,"grid":16},"attrs":[],"properties":{"ligatures":"flickr3, brand29","name":"flickr3","id":421,"order":808,"prevSize":32,"code":60454},"setIdx":1,"setId":0,"iconIdx":421},{"icon":{"paths":["M512 0c-282.77 0-512 230.796-512 515.5s229.23 515.5 512 515.5 512-230.796 512-515.5-229.23-515.5-512-515.5zM288 672c-88.366 0-160-71.634-160-160s71.634-160 160-160 160 71.634 160 160c0 88.366-71.634 160-160 160zM736 672c-88.368 0-160-71.634-160-160s71.632-160 160-160 160 71.634 160 160c0 88.366-71.632 160-160 160z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["flickr","brand","social"],"defaultCode":60070,"grid":16},"attrs":[],"properties":{"ligatures":"flickr4, brand30","name":"flickr4","id":422,"order":809,"prevSize":32,"code":60455},"setIdx":1,"setId":0,"iconIdx":422},{"icon":{"paths":["M512 1024c-282.4 0-512-229.6-512-512s229.6-512 512-512c282.4 0 512 229.6 512 512s-229.6 512-512 512v0zM943.8 582c-15-4.8-135.4-40.6-272.4-18.6 57.2 157.2 80.4 285.2 85 311.8 98-66.4 168-171.4 187.4-293.2v0zM682.8 915.2c-6.6-38.4-31.8-172-93.2-331.6-1 0.4-2 0.6-2.8 1-246.8 86-335.4 257-343.2 273 74.2 57.8 167.4 92.4 268.4 92.4 60.6 0 118.4-12.4 170.8-34.8v0zM187 805c10-17 130-215.6 355.4-288.6 5.6-1.8 11.4-3.6 17.2-5.2-11-24.8-23-49.8-35.4-74.2-218.2 65.4-430.2 62.6-449.4 62.4-0.2 4.4-0.2 8.8-0.2 13.4 0 112.2 42.6 214.8 112.4 292.2v0zM84 423c19.6 0.2 199.8 1 404.4-53.2-72.4-128.8-150.6-237.2-162.2-253-122.4 57.8-214 170.6-242.2 306.2v0zM409.6 87.4c12 16.2 91.6 124.4 163.2 256 155.6-58.2 221.4-146.8 229.2-158-77.2-68.6-178.8-110.2-290-110.2-35.2 0.2-69.6 4.4-102.4 12.2v0zM850.6 236.2c-9.2 12.4-82.6 106.4-244.2 172.4 10.2 20.8 20 42 29 63.4 3.2 7.6 6.4 15 9.4 22.6 145.6-18.2 290.2 11 304.6 14-1-103.2-38-198-98.8-272.4v0z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["dribbble","brand","social"],"defaultCode":60071,"grid":16},"attrs":[],"properties":{"ligatures":"dribbble, brand31","name":"dribbble","id":423,"order":810,"prevSize":32,"code":60456},"setIdx":1,"setId":0,"iconIdx":423},{"icon":{"paths":["M297 205.2c30.2 0 57.4 2.6 82.2 8 24.8 5.2 45.8 14 63.6 26 17.6 12 31.2 28 41.2 48 9.6 19.8 14.4 44.6 14.4 74 0 31.8-7.2 58.2-21.6 79.4-14.6 21.2-35.8 38.4-64.2 52 38.8 11.2 67.4 30.8 86.6 58.6 19.2 28 28.4 61.6 28.4 101.2 0 32-6.2 59.4-18.4 82.6-12.4 23.4-29.2 42.4-49.8 57-20.8 14.8-44.8 25.6-71.6 32.6-26.6 7-54 10.6-82.4 10.6h-305.4v-630h297zM279 459.6c24.6 0 45-5.8 61-17.6 16-11.6 23.6-30.8 23.6-57.2 0-14.6-2.6-26.8-7.8-36.2-5.4-9.4-12.4-16.8-21.4-22-8.8-5.4-18.8-9-30.6-11-11.4-2.2-23.4-3.2-35.6-3.2h-129.6v147.2h140.4zM286.6 727.8c13.6 0 26.6-1.2 38.8-4 12.4-2.8 23.4-7 32.6-13.4 9.2-6.2 17-14.4 22.6-25.2 5.6-10.6 8.2-24.2 8.2-40.8 0-32.4-9.2-55.6-27.4-69.6-18.2-13.8-42.4-20.6-72.4-20.6h-150.4v173.4h148z","M725.2 725.6c18.8 18.4 45.8 27.6 81 27.6 25.2 0 47.2-6.4 65.4-19.2s29.2-26.4 33.4-40.4h110.4c-17.8 55-44.6 94-81.4 117.6-36.2 23.6-80.6 35.6-132 35.6-36 0-68.2-5.8-97.2-17.2-29-11.6-53.2-27.8-73.6-49-19.8-21.2-35.4-46.4-46.4-76-10.8-29.4-16.4-62-16.4-97.2 0-34.2 5.6-66 16.8-95.4 11.4-29.6 27-55 47.8-76.4s45.2-38.4 74-50.8c28.6-12.4 60.2-18.6 95.2-18.6 38.6 0 72.4 7.4 101.4 22.6 28.8 15 52.6 35.2 71.2 60.4s31.8 54.2 40 86.6c8.2 32.4 11 66.2 8.8 101.6h-329.4c0 35.8 12 70 31 88.2zM869 486c-14.8-16.4-40.2-25.4-70.8-25.4-20 0-36.6 3.4-49.8 10.2-13 6.8-23.6 15.2-31.8 25.2-8 10-13.6 20.8-16.8 32.2-3.2 11-5.2 21.2-5.8 30h204c-3-32-14-55.6-29-72.2z","M668.4 256h255.4v62.2h-255.4v-62.2z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["behance","brand","social"],"defaultCode":60072,"grid":16},"attrs":[],"properties":{"name":"behance","ligatures":"behance, brand32","id":424,"order":811,"prevSize":32,"code":60457},"setIdx":1,"setId":0,"iconIdx":424},{"icon":{"paths":["M404.2 448.6c13-9.4 19.2-25 19.2-46.6 0-12-2-21.8-6.2-29.4-4.4-7.6-10-13.6-17.4-17.8-7.2-4.4-15.4-7.4-24.8-9-9.2-1.8-19-2.6-29-2.6h-105.4v119.6h114c20 0.2 36.6-4.6 49.6-14.2z","M422 556.6c-14.8-11.2-34.4-16.8-58.8-16.8h-122.6v141h120.2c11.2 0 21.6-1 31.6-3.2s19-5.6 26.6-10.8c7.6-5 13.8-11.8 18.4-20.4s6.8-19.8 6.8-33.2c0-26.4-7.4-45.2-22.2-56.6z","M928 0h-832c-52.8 0-96 43.2-96 96v832c0 52.8 43.2 96 96 96h832c52.8 0 96-43.2 96-96v-832c0-52.8-43.2-96-96-96zM671.2 269.4h207.4v50.6h-207.4v-50.6zM541.6 686.4c-10 19-23.6 34.4-40.4 46.4-17 12-36.4 20.8-58.2 26.6-21.6 5.8-44 8.6-66.8 8.6h-248.2v-511.8h241.2c24.4 0 46.6 2.2 66.8 6.4 20 4.2 37.2 11.4 51.6 21.2 14.2 9.8 25.4 22.8 33.4 39 7.8 16 11.8 36.2 11.8 60 0 25.8-5.8 47.2-17.6 64.4s-29 31.2-52.2 42.2c31.6 9 54.8 25 70.2 47.6 15.6 22.8 23.2 50.2 23.2 82.2 0.2 26.2-4.8 48.6-14.8 67.2zM959.4 607.2h-267.4c0 29.2 10 57 25.2 72 15.2 14.8 37.2 22.4 65.8 22.4 20.6 0 38.2-5.2 53.2-15.6 14.8-10.4 23.8-21.4 27.2-32.8h89.6c-14.4 44.6-36.2 76.4-66 95.6-29.4 19.2-65.4 28.8-107.2 28.8-29.2 0-55.4-4.8-79-14-23.6-9.4-43.2-22.6-59.8-39.8-16.2-17.2-28.6-37.8-37.6-61.8-8.8-23.8-13.4-50.4-13.4-79 0-27.8 4.6-53.6 13.6-77.6 9.2-24 22-44.8 38.8-62 16.8-17.4 36.8-31.2 60-41.4 23.2-10 48.8-15 77.2-15 31.4 0 58.8 6 82.4 18.4 23.4 12.2 42.6 28.6 57.8 49.2s25.8 44 32.6 70.4c6.6 26 8.8 53.4 7 82.2z","M776.6 463.8c-16.2 0-29.8 2.8-40.4 8.4s-19.2 12.4-25.8 20.4c-6.6 8.2-11 16.8-13.6 26.2-2.6 9-4.2 17.2-4.6 24.4h165.6c-2.4-26-11.4-45.2-23.4-58.6-12.4-13.6-32.8-20.8-57.8-20.8z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["behance","brand","social"],"defaultCode":60073,"grid":16},"attrs":[],"properties":{"name":"behance2","ligatures":"behance2, brand33","id":425,"order":812,"prevSize":32,"code":60458},"setIdx":1,"setId":0,"iconIdx":425},{"icon":{"paths":["M829 186.2v-186.2h-186.2l-18.6 18.8-88 167.4-27.6 18.6h-313.6v255.6h172.4l15.4 18.6-187.8 358.8v186.2h186.2l18.6-18.8 88-167.4 27.6-18.6h313.6v-255.6h-172.4l-15.4-18.8z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["deviantart","brand","social"],"defaultCode":60074,"grid":16},"attrs":[],"properties":{"ligatures":"deviantart, brand34","name":"deviantart","id":426,"order":813,"prevSize":32,"code":60459},"setIdx":1,"setId":0,"iconIdx":426},{"icon":{"paths":["M253 672.8c0.2 0.6 5.6 15.2 8.6 22.6 16.8 39.8 41 75.8 71.8 106.6s66.6 55 106.6 71.8c41.4 17.4 85.2 26.4 130.4 26.4s89.2-8.8 130.4-26.4c40-16.8 75.8-41 106.6-71.8s55-66.6 71.8-106.6c17.4-41.4 26.4-85.2 26.4-130.4s-8.8-89.2-26.4-130.4c-16.8-40-41-75.8-71.8-106.6s-66.6-55-106.6-71.8c-41.4-17.4-85.2-26.4-130.4-26.4-45.8 0-91.6 9.2-132.2 26.4-32.6 13.8-87.8 49.2-120 82.6l-0.2 0.2v-276h463.4c16.8-0.2 16.8-23.8 16.8-31.4 0-7.8 0-31.2-17-31.4h-501c-13.6 0-22 11.4-22 21.8v388.2c0 12.6 15.6 21.6 30.2 24.6 28.4 6 34.8-3 41.8-12.6l1-1.2c10.6-15.8 43.6-49 44-49.4 51.6-51.6 120.6-80 194.4-80 73.4 0 142.2 28.4 193.8 80 51.8 51.8 80.4 120.4 80.4 193.2 0 73-28.4 141.8-80 193.2-50.8 50.8-122 80-195 80-49.4 0-97.2-13.2-138.2-38.2l0.2-236c0-31.4 13.6-65.8 36.6-91.6 26.2-29.6 62.2-45.8 101.6-45.8 38 0 73.6 14.4 100.2 40.6 26.2 26 40.8 60.8 40.8 97.8 0 78.8-62 140.6-141.2 140.6-15.2 0-43-6.8-44.2-7-16-4.8-22.8 17.4-25 24.8-8.6 28.2 4.4 33.8 7 34.6 25.4 8 42.2 9.4 64.2 9.4 111.8 0 202.8-91 202.8-202.8 0-111-91-201.2-202.6-201.2-54.8 0-106.2 21-144.8 58.8-36.8 36.2-57.8 84.4-57.8 132.4v1.2c-0.2 6-0.2 147.6-0.4 194l-0.2-0.2c-21-23.2-41.8-58.8-55.6-95.2-5.4-14.2-17.6-11.8-34.2-6.6-8 2.2-30 9-25 25.2v0zM491.2 617.4c0 6.8 6.2 12.8 10 16.2l1.2 1.2c6.4 6.2 12.4 9.4 18 9.4 4.6 0 7.4-2.2 8.4-3.2 2.8-2.6 34.4-34.8 37.6-37.8l35.4 35.2c3.2 3.6 6.8 5.6 11 5.6 5.6 0 11.8-3.4 18.2-10 15.2-15.6 7.6-24 4-28l-35.8-35.8 37.4-37.6c8.2-8.8 1-18.2-6.2-25.4-10.4-10.4-20.6-13.2-27-7.2l-37.2 37.2-37.6-37.6c-2-2-4.6-3-7.2-3-5 0-11 3.4-17.6 10-11.6 11.6-14 19.6-8 26l37.6 37.4-37.4 37.4c-3.4 3.2-5 6.6-4.8 10zM573 109.8c-60 0-124 12.2-170.8 32.4-5 2-8 6-8.6 11.6-0.6 5.4 0.8 12.4 4.4 21.6 3 7.4 10.6 27.2 25.6 21.4 48-18.4 101.2-28.4 149.4-28.4 54.8 0 108 10.8 158 31.8 39.8 16.8 77.2 41.2 118 76.4 3 2.6 6.2 3.8 9.4 3.8 8 0 15.6-7.8 22.2-15.2 10.8-12.2 18.4-22.4 7.6-32.6-39-36.8-81.6-64.4-134.4-86.8-57.2-23.8-118.2-36-180.8-36zM896.4 851.2v0c-7.2-7.2-13.4-11.4-18.8-13s-10.4-0.4-14.2 3.4l-3.6 3.6c-37.2 37.2-80.6 66.4-128.8 86.8-50 21.2-103 31.8-157.6 31.8-54.8 0-107.8-10.8-157.6-31.8-48.2-20.4-91.6-49.6-128.8-86.8-38.8-38.8-68-82.2-86.8-128.8-18.4-45.6-24.4-79.8-26.4-91-0.2-1-0.4-1.8-0.4-2.4-2.6-13.2-14.8-14.2-32.2-11.4-7.2 1.2-29.4 4.6-27.4 20.4v0.4c5.8 37 16.2 73.2 30.8 107.6 23.4 55.4 57 105.2 99.8 148s92.6 76.2 148 99.8c57.4 24.2 118.4 36.6 181.2 36.6s123.8-12.4 181.2-36.6c55.4-23.4 105.2-57 148-99.8 0 0 2.4-2.4 3.8-3.8 4.4-5.4 8.6-14.4-10.2-33z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["500px","brand","social"],"defaultCode":60075,"grid":16},"attrs":[],"properties":{"name":"500px","ligatures":"500px, brand35","id":427,"order":814,"prevSize":32,"code":60460},"setIdx":1,"setId":0,"iconIdx":427},{"icon":{"paths":["M704 288c0-53.019 42.981-96 96-96s96 42.981 96 96c0 53.019-42.981 96-96 96s-96-42.981-96-96zM958.392 129.608c-87.478-87.476-229.306-87.476-316.786 0-35.578 35.578-56.684 80.146-63.322 126.392v0l-204.694 310.228c-27.506 1.41-54.776 8.416-79.966 21.016l-157.892-123.424c-36.55-28.574-89.342-22.102-117.912 14.448-28.572 36.55-22.102 89.342 14.448 117.912l155.934 121.892c-16.96 66.782 0.672 140.538 52.93 192.794 78.906 78.904 206.832 78.904 285.736 0 48.466-48.466 67.15-115.428 56.076-178.166l249.054-222.986c46.248-6.638 90.816-27.744 126.394-63.322 87.478-87.476 87.478-229.306 0-316.784zM384 902.698c-74.39 0-134.698-60.304-134.698-134.698 0-0.712 0.042-1.414 0.054-2.124l66.912 52.304c15.36 12.006 33.582 17.824 51.674 17.824 24.962 0 49.672-11.080 66.238-32.272 28.572-36.55 22.102-89.342-14.448-117.912l-63.5-49.636c8.962-1.878 18.248-2.88 27.768-2.88 74.392 0 134.698 60.304 134.698 134.698s-60.306 134.696-134.698 134.696zM800 448c-88.366 0-160-71.634-160-160s71.634-160 160-160 160 71.634 160 160-71.634 160-160 160z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["steam","brand","social"],"defaultCode":60076,"grid":16},"attrs":[],"properties":{"ligatures":"steam, brand36","name":"steam","id":428,"order":815,"prevSize":32,"code":60461},"setIdx":1,"setId":0,"iconIdx":428},{"icon":{"paths":["M303.922 836.010c27.144 0 53.786-13.136 69.972-37.416 25.734-38.602 15.302-90.754-23.298-116.488l-66.074-44.048c11.308-3.080 23.194-4.756 35.478-4.756 74.392 0 134.696 60.304 134.696 134.698s-60.306 134.698-134.698 134.698c-72.404 0-131.444-57.132-134.548-128.774l71.954 47.968c14.322 9.548 30.506 14.118 46.518 14.118zM853.34 0c93.876 0 170.66 76.812 170.66 170.688v682.628c0 93.936-76.784 170.684-170.66 170.684h-682.652c-93.876 0-170.688-76.75-170.688-170.682v-203.028l121.334 80.888c-11.652 63.174 6.938 130.83 55.798 179.69 78.904 78.904 206.83 78.904 285.736 0 48.468-48.466 67.15-115.43 56.076-178.166l249.056-222.988c46.248-6.638 90.816-27.744 126.394-63.322 87.476-87.476 87.476-229.306 0-316.784-87.48-87.478-229.308-87.478-316.786 0-35.578 35.578-56.684 80.146-63.322 126.392v0l-204.694 310.23c-31.848 1.632-63.378 10.764-91.726 27.392l-217.866-145.244v-277.69c0-93.876 76.81-170.688 170.686-170.688h682.654zM896 288c0-88.366-71.634-160-160-160s-160 71.634-160 160 71.634 160 160 160 160-71.634 160-160zM640 288c0-53.020 42.98-96 96-96s96 42.98 96 96-42.98 96-96 96-96-42.98-96-96z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["steam","brand","social"],"defaultCode":60077,"grid":16},"attrs":[],"properties":{"ligatures":"steam2, brand37","name":"steam2","id":429,"order":816,"prevSize":32,"code":60462},"setIdx":1,"setId":0,"iconIdx":429},{"icon":{"paths":["M736 32l-224 192 288 192 224-192z","M512 224l-224-192-288 192 224 192z","M800 416l224 192-288 160-224-192z","M512 576l-288-160-224 192 288 160z","M728.156 845.57l-216.156-185.278-216.158 185.278-135.842-75.468v93.898l352 160 352-160v-93.898z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["dropbox","brand"],"defaultCode":60078,"grid":16},"attrs":[],"properties":{"ligatures":"dropbox, brand38","name":"dropbox","id":430,"order":817,"prevSize":32,"code":60463},"setIdx":1,"setId":0,"iconIdx":430},{"icon":{"paths":["M350.868 828.388c-60.274-15.060-93.856-62.97-93.962-134.064-0.032-22.726 1.612-33.62 7.286-48.236 13.908-35.834 50.728-62.872 99.176-72.822 24.11-4.95 31.536-10.266 31.536-22.572 0-3.862 2.872-15.36 6.378-25.552 15.932-46.306 45.43-84.91 76.948-100.702 32.99-16.526 49.642-20.254 89.548-20.040 56.674 0.304 84.952 12.598 124.496 54.128l21.75 22.842 19.484-6.742c94.3-32.636 188.306 22.916 195.888 115.756l2.072 25.398 18.57 6.65c53.032 19.004 77.96 58.904 73.442 117.556-2.958 38.358-20.89 68.98-49.3 84.184l-13.356 7.146-296.822 0.57c-228.094 0.44-300.6-0.368-313.134-3.5v0zM103.218 785.966c-36.176-9.086-74.506-42.854-92.48-81.47-10.196-21.906-10.738-25.128-10.738-63.88 0-36.864 0.87-42.778 8.988-61.080 17.11-38.582 49.894-66.46 91.030-77.408 8.684-2.312 16.842-6 18.128-8.196 1.29-2.198 2.722-14.164 3.182-26.592 2.866-77.196 50.79-145.214 117.708-167.056 36.154-11.8 83.572-12.898 122.896 3.726 12.47 5.274 11.068 6.404 37.438-30.14 15.594-21.612 45.108-44.49 70.9-58.18 27.838-14.776 56.792-21.584 91.412-21.494 96.768 0.252 180.166 64.22 211.004 161.848 9.854 31.192 9.362 39.926-2.26 40.184-5.072 0.112-19.604 3.064-32.292 6.558l-23.072 6.358-21.052-22.25c-59.362-62.734-156.238-76.294-238.592-33.396-32.9 17.138-59.34 41.746-79.31 73.81-14.236 22.858-32.39 65.504-32.39 76.094 0 7.51-5.754 11.264-30.332 19.782-76.094 26.376-120.508 87.282-120.476 165.218 0.010 28.368 6.922 63.074 16.52 82.956 3.618 7.494 5.634 14.622 4.484 15.836-2.946 3.106-97.608 2.060-110.696-1.228v0z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["onedrive","brand","skydrive"],"defaultCode":60079,"grid":16},"attrs":[],"properties":{"ligatures":"onedrive, brand39","name":"onedrive","id":431,"order":818,"prevSize":32,"code":60464},"setIdx":1,"setId":0,"iconIdx":431},{"icon":{"paths":["M512.008 12.642c-282.738 0-512.008 229.218-512.008 511.998 0 226.214 146.704 418.132 350.136 485.836 25.586 4.738 34.992-11.11 34.992-24.632 0-12.204-0.48-52.542-0.696-95.324-142.448 30.976-172.504-60.41-172.504-60.41-23.282-59.176-56.848-74.916-56.848-74.916-46.452-31.778 3.51-31.124 3.51-31.124 51.4 3.61 78.476 52.766 78.476 52.766 45.672 78.27 119.776 55.64 149.004 42.558 4.588-33.086 17.852-55.68 32.506-68.464-113.73-12.942-233.276-56.85-233.276-253.032 0-55.898 20.004-101.574 52.76-137.428-5.316-12.9-22.854-64.972 4.952-135.5 0 0 43.006-13.752 140.84 52.49 40.836-11.348 84.636-17.036 128.154-17.234 43.502 0.198 87.336 5.886 128.256 17.234 97.734-66.244 140.656-52.49 140.656-52.49 27.872 70.528 10.35 122.6 5.036 135.5 32.82 35.856 52.694 81.532 52.694 137.428 0 196.654-119.778 239.95-233.79 252.624 18.364 15.89 34.724 47.046 34.724 94.812 0 68.508-0.596 123.644-0.596 140.508 0 13.628 9.222 29.594 35.172 24.566 203.322-67.776 349.842-259.626 349.842-485.768 0-282.78-229.234-511.998-511.992-511.998z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["github","brand","octacat","social"],"defaultCode":60080,"grid":16},"attrs":[],"properties":{"ligatures":"github, brand40","name":"github","id":432,"order":819,"prevSize":32,"code":60465},"setIdx":1,"setId":0,"iconIdx":432},{"icon":{"paths":["M0 0v1024h1024v-1024h-1024zM832 832h-128v-512h-192v512h-320v-640h640v640z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["npm","brand"],"defaultCode":60081,"grid":16},"attrs":[],"properties":{"name":"npm","ligatures":"npm, brand41","id":433,"order":820,"prevSize":32,"code":60466},"setIdx":1,"setId":0,"iconIdx":433},{"icon":{"paths":["M512 106.6c-186.8 0-330.8 156.4-412.4 309.6-46 86.2-78.2 180.6-93 277.2-1.6 11-3.2 22-4.4 33.2-0.6 6-1.2 12-1.6 18-0.6 7.6-0.2 10 3.8 16.4 12 19.4 26.2 37.4 42.2 53.6 32.8 33.6 72.6 59.4 114.8 79.4 96.2 45.4 204.8 61.8 310.4 65.4 109 3.6 221-5.4 325.2-39.4 89-29 174.8-79.6 224.2-161.4 5.4-8.8 1.6-21.8 0.6-32-1.2-12.2-2.8-24.2-4.8-36.2-3.6-23.6-8.4-46.8-14.2-70-11.6-47.2-27.4-93.6-46.6-138.2-69.6-161.6-198.4-334-381.6-369.6-20.6-4-41.6-6-62.6-6zM518.4 890.2c-114.2 0-238.6-10.2-341.4-65.2-40-21.4-80.8-52.4-100-95-5.6-12.4-3.6-17.2-1-31.8 1.8-9.4 2.6-18.6 6.8-27.4 5.8-12.2 11.8-24.2 18-36.2 21-40.6 43.6-80.8 69.8-118.6 13-18.6 26.8-37 42.8-53 11.2-11.2 24.8-23.2 40.6-27 48.4-11.6 85.4 44.4 114.8 72.6 14.2 13.6 33.2 29 54.4 26.4 14.6-1.8 27.6-13.2 38-22.6 35.4-31.8 63.8-71.2 93.2-108.2 14.6-18.2 29-36.6 44.8-54 10.6-11.8 22.2-25.2 36.4-32.8 25.4-13.8 57.8 14.6 75.4 29.2 30 25 56.6 54.2 82 83.8 24.2 28.2 47.6 56.8 68.2 87.8 31.8 48 59.4 99.2 84.6 151 5.4 11.2 7.2 18.8 9.2 31.2 1.2 6.8 3.8 14.6 2.8 21.6-1.4 9.8-8.2 20.4-13.2 28.4-12 19-28.2 35.4-46 49.2-74.6 57.8-175.6 77-267.4 85.6-37.6 3.6-75.2 5-112.8 5z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["basecamp","brand"],"defaultCode":60082,"grid":16},"attrs":[],"properties":{"name":"basecamp","ligatures":"basecamp, brand42","id":434,"order":821,"prevSize":32,"code":60467},"setIdx":1,"setId":0,"iconIdx":434},{"icon":{"paths":["M928 0h-832c-52.8 0-96 43.2-96 96v832c0 52.8 43.2 96 96 96h832c52.8 0 96-43.2 96-96v-832c0-52.8-43.2-96-96-96zM448 768c0 35.2-28.8 64-64 64h-128c-35.2 0-64-28.8-64-64v-512c0-35.2 28.8-64 64-64h128c35.2 0 64 28.8 64 64v512zM832 576c0 35.2-28.8 64-64 64h-128c-35.2 0-64-28.8-64-64v-320c0-35.2 28.8-64 64-64h128c35.2 0 64 28.8 64 64v320z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["trello","brand"],"defaultCode":60083,"grid":16},"attrs":[],"properties":{"name":"trello","ligatures":"trello, brand43","id":435,"order":822,"prevSize":32,"code":60468},"setIdx":1,"setId":0,"iconIdx":435},{"icon":{"paths":["M128 511.992c0 148.026 88.322 275.968 216.43 336.578l-183.178-488.784c-21.308 46.508-33.252 97.982-33.252 152.206zM771.228 493.128c0-46.234-17.054-78.236-31.654-103.142-19.458-30.82-37.72-56.894-37.72-87.716 0-34.374 26.766-66.376 64.486-66.376 1.704 0 3.32 0.204 4.976 0.302-68.316-60.97-159.34-98.196-259.308-98.196-134.16 0-252.186 67.046-320.844 168.568 9.010 0.282 17.506 0.454 24.712 0.454 40.154 0 102.34-4.752 102.34-4.752 20.69-1.182 23.132 28.434 2.458 30.822 0 0-20.81 2.368-43.952 3.55l139.834 405.106 84.044-245.456-59.822-159.65c-20.688-1.184-40.278-3.55-40.278-3.55-20.702-1.192-18.272-32.002 2.438-30.822 0 0 63.4 4.752 101.134 4.752 40.146 0 102.35-4.752 102.35-4.752 20.702-1.182 23.14 28.434 2.446 30.822 0 0-20.834 2.372-43.948 3.55l138.78 402.018 38.312-124.632c16.58-51.75 29.216-88.9 29.216-120.9zM518.742 544.704l-115.226 326.058c34.416 9.858 70.794 15.238 108.488 15.238 44.716 0 87.604-7.518 127.518-21.2-1.018-1.602-1.974-3.304-2.75-5.154l-118.030-314.942zM848.962 332.572c1.652 11.91 2.588 24.686 2.588 38.458 0 37.93-7.292 80.596-29.202 133.95l-117.286 330.272c114.162-64.828 190.938-185.288 190.938-323.258 0-65.030-17.060-126.16-47.038-179.422zM512 0c-282.77 0-512 229.23-512 512s229.23 512 512 512 512-229.23 512-512-229.23-512-512-512zM512 960c-247.424 0-448-200.576-448-448s200.576-448 448-448 448 200.576 448 448-200.576 448-448 448z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["wordpress","brand","social","cms"],"defaultCode":60084,"grid":16},"attrs":[],"properties":{"ligatures":"wordpress, brand44","name":"wordpress","id":436,"order":823,"prevSize":32,"code":60469},"setIdx":1,"setId":0,"iconIdx":436},{"icon":{"paths":["M266.004 276.678c32.832-32.844 86.002-32.844 118.804-0.032l7.826 7.868 101.104-101.156-7.874-7.88c-57.624-57.7-138.514-77.878-212.42-60.522-10.594-65.182-67.088-114.924-135.174-114.956-75.65 0-136.954 61.442-136.97 137.158 0 65.336 45.59 120 106.662 133.83-23.138 77.45-4.242 164.834 56.846 225.984l227.826 227.9 100.996-101.214-227.81-227.886c-32.682-32.722-32.742-86.126 0.184-119.094zM1022.712 137.158c0.016-75.762-61.318-137.158-136.984-137.158-69.234 0-126.478 51.444-135.682 118.238-77.074-22.664-163.784-3.496-224.64 57.408l-227.84 227.9 101.102 101.172 227.766-227.856c32.94-32.966 85.988-32.906 118.684-0.184 32.8 32.83 32.8 86.114-0.032 118.956l-7.794 7.836 101.010 101.248 7.858-7.928c60.458-60.566 79.678-146.756 57.612-223.638 67.15-8.834 118.94-66.364 118.94-135.994zM906.266 751.064c18.102-74.458-1.976-156.324-60.108-214.5l-227.49-227.992-101.102 101.122 227.52 228.012c32.94 32.996 32.864 86.096 0.184 118.848-32.802 32.814-86.004 32.814-118.836-0.030l-7.766-7.79-100.994 101.246 7.732 7.728c61.516 61.594 149.618 80.438 227.368 56.488 12.632 62.682 67.934 109.804 134.258 109.804 75.604 0 136.968-61.35 136.968-137.126 0-69.2-51.18-126.456-117.734-135.81zM612.344 528.684l-227.536 227.992c-32.71 32.768-86.034 32.828-118.944-0.124-32.818-32.904-32.832-86.098-0.044-118.97l7.808-7.774-101.086-101.124-7.734 7.712c-58.76 58.802-78.56 141.834-59.45 216.982-60.398 14.26-105.358 68.634-105.358 133.496-0.016 75.746 61.332 137.126 136.982 137.126 65.1-0.032 119.588-45.418 133.54-106.382 74.702 18.552 156.998-1.304 215.344-59.756l227.49-227.96-101.012-101.218z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["joomla","brand","cms"],"defaultCode":60085,"grid":16},"attrs":[],"properties":{"ligatures":"joomla, brand45","name":"joomla","id":437,"order":824,"prevSize":32,"code":60470},"setIdx":1,"setId":0,"iconIdx":437},{"icon":{"paths":["M512 0c-282.77 0-512 229.23-512 512s229.23 512 512 512 512-229.23 512-512-229.23-512-512-512zM824.636 589.598c-36.798 142.716-165.358 242.402-312.63 242.402-147.282 0-275.85-99.686-312.654-242.42-6.232-24.158 8.352-48.886 32.512-55.124 3.71-0.958 7.528-1.446 11.338-1.446 20.624 0 38.628 13.972 43.788 33.976 26.512 102.748 119.042 174.51 225.014 174.51 105.978 0 198.502-71.76 225-174.51 5.152-20.006 23.15-33.982 43.766-33.982 3.822 0 7.65 0.49 11.376 1.456 11.692 3.016 21.526 10.418 27.668 20.842 6.142 10.416 7.854 22.596 4.822 34.296z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["ello","brand","social"],"defaultCode":60086,"grid":16},"attrs":[],"properties":{"ligatures":"ello, brand46","name":"ello","id":438,"order":825,"prevSize":32,"code":60471},"setIdx":1,"setId":0,"iconIdx":438},{"icon":{"paths":["M957.796 384h-57.406c-35.166 0-65.988-29.742-68.39-64v0c0.004-182.668-147.258-320-331.19-320h-167.824c-183.812 0-332.856 148-332.986 330.666v362.798c0 182.654 149.174 330.536 332.984 330.536h358.42c183.948 0 332.596-147.882 332.596-330.536v-234.382c0-36.502-29.44-75.082-66.204-75.082zM320 256h192c35.2 0 64 28.8 64 64s-28.8 64-64 64h-192c-35.2 0-64-28.8-64-64s28.8-64 64-64zM704 768h-384c-35.2 0-64-28.8-64-64s28.8-64 64-64h384c35.2 0 64 28.8 64 64s-28.8 64-64 64z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["blogger","brand","social"],"defaultCode":60087,"grid":16},"attrs":[],"properties":{"ligatures":"blogger, brand47","name":"blogger","id":439,"order":826,"prevSize":32,"code":60472},"setIdx":1,"setId":0,"iconIdx":439},{"icon":{"paths":["M928 0h-832c-52.8 0-96 43.2-96 96v832c0 52.8 43.2 96 96 96h832c52.8 0 96-43.2 96-96v-832c0-52.8-43.2-96-96-96zM896 648c0 137-111.4 248-249.4 248h-268.8c-138 0-249.8-111-249.8-248v-272c0-137 111.8-248 249.8-248h125.8c138 0 248.4 103 248.4 240 1.8 25.6 25 48 51.2 48h43c27.6 0 49.6 29 49.6 56.4v175.6z","M704 640c0 35.2-28.8 64-64 64h-256c-35.2 0-64-28.8-64-64v0c0-35.2 28.8-64 64-64h256c35.2 0 64 28.8 64 64v0z","M576 384c0 35.2-28.8 64-64 64h-128c-35.2 0-64-28.8-64-64v0c0-35.2 28.8-64 64-64h128c35.2 0 64 28.8 64 64v0z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["blogger","brand","social"],"defaultCode":60088,"grid":16},"attrs":[],"properties":{"ligatures":"blogger2, brand48","name":"blogger2","id":440,"order":827,"prevSize":32,"code":60473},"setIdx":1,"setId":0,"iconIdx":440},{"icon":{"paths":["M576.032 448l-0.002 234.184c0 59.418-0.77 93.656 5.53 110.5 6.25 16.754 21.918 34.146 38.99 44.202 22.684 13.588 48.542 20.376 77.708 20.376 51.854 0 82.478-6.848 133.742-40.54v153.944c-43.7 20.552-81.866 32.594-117.324 40.922-35.5 8.242-73.86 12.406-115.064 12.406-46.828 0-74.456-5.886-110.41-17.656-35.958-11.868-66.66-28.806-92.020-50.54-25.45-21.922-43.022-45.208-52.848-69.832-9.826-24.636-14.716-60.414-14.716-107.244v-359.1h-137.426v-145.006c40.208-13.042 85.164-31.788 113.78-56.152 28.754-24.45 51.766-53.706 69.106-87.944 17.392-34.146 29.348-77.712 35.872-130.516h165.084l-0.002 255.996h255.968v192h-255.968z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["tumblr","brand","social"],"defaultCode":60089,"grid":16},"attrs":[],"properties":{"ligatures":"tumblr, brand49","name":"tumblr","id":441,"order":828,"prevSize":32,"code":60474},"setIdx":1,"setId":0,"iconIdx":441},{"icon":{"paths":["M928 0h-832c-52.8 0-96 43.2-96 96v832c0 52.8 43.2 96 96 96h832c52.8 0 96-43.2 96-96v-832c0-52.8-43.2-96-96-96zM731.8 824.6c-30.2 14.2-57.6 24.2-82 30-24.4 5.6-51 8.6-79.4 8.6-32.4 0-51.4-4-76.2-12.2s-46-19.8-63.6-34.8c-17.6-15.2-29.6-31.2-36.4-48.2s-10.2-41.6-10.2-74v-247.8h-96v-100c27.8-9 60-22 79.6-38.8 19.8-16.8 35.8-37 47.6-60.6 12-23.6 20.2-53.6 24.8-90h100.4v163.2h163.6v126.2h-163.4v181.2c0 41-0.6 64.6 3.8 76.2s15.2 23.6 27 30.4c15.6 9.4 33.6 14 53.6 14 35.8 0 71.4-11.6 106.8-34.8v111.4z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["tumblr","brand","social"],"defaultCode":60090,"grid":16},"attrs":[],"properties":{"ligatures":"tumblr2, brand50","name":"tumblr2","id":442,"order":829,"prevSize":32,"code":60475},"setIdx":1,"setId":0,"iconIdx":442},{"icon":{"paths":["M568.2 589v0c112.6-197.6 298.6-520 349.6-589-22.4 15-56.8 22.6-88.4 29.8l-47.8-29.8c-38.4 71.6-180 303-270.2 451.2-91.4-151.4-199.6-326.2-270.2-451.2-56 12-79.2 12.6-135 0v0 0c0 0 0 0 0 0v0c110.8 166.8 288.2 484.6 348.6 589v0l-8.2 435 64.8-29.8v-0.8l64.8 30.6-8-435z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["yahoo","brand","social"],"defaultCode":60091,"grid":16},"attrs":[],"properties":{"ligatures":"yahoo, brand51","name":"yahoo","id":443,"order":830,"prevSize":32,"code":60476},"setIdx":1,"setId":0,"iconIdx":443},{"icon":{"paths":["M513.2 69.6c-181 0-352-23.8-513.2-69.6 0 361.8 0 933.2 0 1024 161.4-45.8 332.4-69.6 513.2-69.6 178.8 0 349.4 23.2 510.8 69.6 0-348.4 0-649.8 0-1024-161.4 46.4-331.8 69.6-510.8 69.6zM796.8 157l-6.2 9.8c-5.8 9.2-11 17-18.2 28-9.6 14.4-27.6 43-49.2 79.8-6 10.2-13.4 22.4-21 35.6-14.6 24.6-31 52.4-44 74.4-5.4 9.4-10.8 19-16.4 28.6-14.4 25-29.2 50.8-43.4 75.6-14.6 25.8-29 51.2-43.4 76.4v25.4c0 35.2 0.8 73.6 2 107.8 0.6 15.6 1.2 43.4 2 72.8 0.8 35 1.6 71.2 2.6 89.6l0.2 5.6v0.6l-6-1.6c-2.4-0.6-4.6-1.2-7-1.8-7.2-1.6-15-2.8-22.6-3.6-4.6-0.4-9.4-0.6-14.2-0.6 0 0 0 0 0 0s0 0 0 0c-4.8 0-9.6 0.2-14.2 0.6-7.6 0.8-15.4 2-22.6 3.6-2.4 0.6-4.8 1.2-7 1.8l-6 1.6v-0.6l0.2-5.6c0.8-18.2 1.8-54.6 2.6-89.6 0.6-29.4 1.4-57.2 2-72.8 1.4-34.4 2-72.6 2-107.8v-25.4c-14.4-25.4-28.8-50.6-43.4-76.4-14.2-25-29-50.6-43.2-75.6-5.6-9.6-11-19.2-16.4-28.6-12.8-22.2-29.4-50-44-74.4-7.8-13-15.2-25.4-21-35.6-21.6-36.8-39.6-65.2-49.2-79.8-7.2-11-12.4-18.8-18.2-28l-6.2-9.8 11.2 3.2c14.2 4 28.8 6 44.4 6s30.6-2 44.6-6l3.4-1 1.8 3c27.6 49.8 101.8 171.8 146.2 244.8 15.2 25.2 27.4 45 33.4 55.2 0 0 0 0 0-0.2 0 0 0 0 0 0.2 6-10 18.2-30 33.4-55.2 44.4-72.8 118.6-194.8 146.2-244.8l1.8-3 3.4 1c14 4 29 6 44.6 6s30.2-2 44.4-6l10.6-3.2z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["yahoo"],"defaultCode":60092,"grid":16},"attrs":[],"properties":{"name":"yahoo2","ligatures":"yahoo2","id":444,"order":831,"prevSize":32,"code":60477},"setIdx":1,"setId":0,"iconIdx":444},{"icon":{"paths":["M567.656 736.916c-81.944 38.118-158.158 37.716-209.34 34.020-61.052-4.41-110.158-21.124-131.742-35.732-13.3-9.006-31.384-5.522-40.39 7.782-9.004 13.302-5.52 31.386 7.782 40.39 34.698 23.486 96.068 40.954 160.162 45.58 10.866 0.784 22.798 1.278 35.646 1.278 55.782 0 126.626-5.316 202.42-40.57 14.564-6.778 20.878-24.074 14.104-38.64-6.776-14.566-24.076-20.872-38.642-14.108zM890.948 693.816c2.786-252.688 28.762-730.206-454.97-691.612-477.6 38.442-350.964 542.968-358.082 711.95-6.308 89.386-35.978 198.648-77.896 309.846h129.1c13.266-47.122 23.024-93.72 27.232-138.15 7.782 5.428 16.108 10.674 24.994 15.7 14.458 8.518 26.884 19.844 40.040 31.834 30.744 28.018 65.59 59.774 133.712 63.752 4.572 0.262 9.174 0.394 13.676 0.394 68.896 0 116.014-30.154 153.878-54.382 18.14-11.612 33.818-21.64 48.564-26.452 41.91-13.12 78.532-34.296 105.904-61.252 4.276-4.208 8.242-8.538 11.962-12.948 15.246 55.878 36.118 118.758 59.288 181.504h275.65c-66.174-102.224-134.436-202.374-133.052-330.184zM124.11 556.352c0-0.016 0-0.030-0.002-0.046-4.746-82.462 34.71-151.832 88.126-154.936 53.412-3.106 100.56 61.228 105.304 143.692 0 0.014 0.004 0.030 0.004 0.044 0.256 4.446 0.368 8.846 0.37 13.206-16.924 4.256-32.192 10.436-45.872 17.63-0.052-0.612-0.092-1.216-0.152-1.83 0-0.008 0-0.018 0-0.026-4.57-46.81-29.572-82.16-55.852-78.958-26.28 3.204-43.88 43.75-39.312 90.558 0 0.010 0.004 0.018 0.004 0.026 1.992 20.408 7.868 38.636 16.042 52.444-2.034 1.604-7.784 5.812-14.406 10.656-4.97 3.634-11.020 8.058-18.314 13.43-19.882-26.094-33.506-63.58-35.94-105.89zM665.26 760.178c-1.9 43.586-58.908 84.592-111.582 101.044l-0.296 0.096c-21.9 7.102-41.428 19.6-62.104 32.83-34.732 22.224-70.646 45.208-122.522 45.208-3.404 0-6.894-0.104-10.326-0.296-47.516-2.778-69.742-23.032-97.88-48.676-14.842-13.526-30.19-27.514-49.976-39.124l-0.424-0.244c-42.706-24.104-69.212-54.082-70.908-80.194-0.842-12.98 4.938-24.218 17.182-33.4 26.636-19.972 44.478-33.022 56.284-41.658 13.11-9.588 17.068-12.48 20-15.264 2.096-1.986 4.364-4.188 6.804-6.562 24.446-23.774 65.36-63.562 128.15-63.562 38.404 0 80.898 14.8 126.17 43.902 21.324 13.878 39.882 20.286 63.38 28.4 16.156 5.578 34.468 11.902 58.992 22.404l0.396 0.164c22.88 9.404 49.896 26.564 48.66 54.932zM652.646 657.806c-4.4-2.214-8.974-4.32-13.744-6.286-22.106-9.456-39.832-15.874-54.534-20.998 8.116-15.894 13.16-35.72 13.624-57.242 0-0.010 0-0.022 0-0.030 1.126-52.374-25.288-94.896-58.996-94.976-33.71-0.078-61.95 42.314-63.076 94.686 0 0.010 0 0.018 0 0.028-0.038 1.714-0.042 3.416-0.020 5.11-20.762-9.552-41.18-16.49-61.166-20.76-0.092-1.968-0.204-3.932-0.244-5.92 0-0.016 0-0.036 0-0.050-1.938-95.412 56.602-174.39 130.754-176.402 74.15-2.014 135.828 73.7 137.772 169.11 0 0.018 0 0.038 0 0.052 0.874 43.146-10.66 82.866-30.37 113.678z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["tux","brand","linux"],"defaultCode":60093,"grid":16},"attrs":[],"properties":{"ligatures":"tux, brand52","name":"tux","id":445,"order":832,"prevSize":32,"code":60478},"setIdx":1,"setId":0,"iconIdx":445},{"icon":{"paths":["M791.498 544.092c-1.294-129.682 105.758-191.876 110.542-194.966-60.152-88.020-153.85-100.078-187.242-101.472-79.742-8.074-155.596 46.948-196.066 46.948-40.368 0-102.818-45.754-168.952-44.552-86.916 1.292-167.058 50.538-211.812 128.38-90.304 156.698-23.126 388.84 64.89 515.926 43.008 62.204 94.292 132.076 161.626 129.58 64.842-2.588 89.362-41.958 167.756-41.958s100.428 41.958 169.050 40.67c69.774-1.296 113.982-63.398 156.692-125.796 49.39-72.168 69.726-142.038 70.924-145.626-1.548-0.706-136.060-52.236-137.408-207.134zM662.562 163.522c35.738-43.358 59.86-103.512 53.28-163.522-51.478 2.096-113.878 34.29-150.81 77.55-33.142 38.376-62.148 99.626-54.374 158.436 57.466 4.484 116.128-29.204 151.904-72.464z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["apple","brand"],"defaultCode":60094,"grid":16},"attrs":[],"properties":{"ligatures":"apple, brand53","name":"appleinc","id":446,"order":833,"prevSize":32,"code":60479},"setIdx":1,"setId":0,"iconIdx":446},{"icon":{"paths":["M569.226 778.256c-0.002-0.044-0.002-0.088-0.004-0.132 0.002 0.044 0.002 0.088 0.004 0.132z","M570.596 814.538c-0.012-0.234-0.022-0.466-0.032-0.702 0.010 0.234 0.020 0.466 0.032 0.702z","M569.814 796.312c-0.006-0.178-0.012-0.356-0.020-0.536 0.010 0.182 0.016 0.358 0.020 0.536z","M960 0h-896c-35.2 0-64 28.8-64 64v896c0 35.2 28.8 64 64 64h493.832c0.044 0 0.088 0.006 0.132 0.006 0.042 0 0.084-0.006 0.126-0.006h401.91c35.2 0 64-28.8 64-64v-896c0-35.2-28.8-64-64-64zM192 224c0-17.672 14.328-32 32-32s32 14.328 32 32v64c0 17.672-14.328 32-32 32s-32-14.328-32-32v-64zM960 960h-375.058c-6.7-42.082-10.906-85.476-13.388-127.604 0.006 0.116 0.010 0.228 0.018 0.344-19.696 2.146-39.578 3.26-59.572 3.26-133.65 0-262.382-48.656-362.484-137.006-14.906-13.156-16.326-35.906-3.168-50.812 13.158-14.904 35.906-16.326 50.814-3.168 86.936 76.728 198.748 118.986 314.838 118.986 19.086 0 38.052-1.166 56.816-3.416-2.192-118.194 6.876-211.914 7.026-213.404 0.898-8.996-2.050-17.952-8.118-24.654-6.066-6.702-14.682-10.526-23.724-10.526h-95.174c1.384-34.614 5.082-93.814 14.958-160.188 18.864-126.76 51.994-225.77 96.152-287.812h400.064v896z","M800 320c-17.674 0-32-14.328-32-32v-64c0-17.672 14.326-32 32-32s32 14.328 32 32v64c0 17.672-14.326 32-32 32z","M540.496 835.232c-3.646 0.192-7.298 0.336-10.956 0.454 3.658-0.116 7.31-0.264 10.956-0.454z","M512 836c4.692 0 9.374-0.074 14.050-0.196-4.676 0.122-9.358 0.196-14.050 0.196z","M539.074 763.202c0.784-0.044 1.568-0.084 2.352-0.132-0.782 0.048-1.568 0.088-2.352 0.132z","M525.084 763.8c1.074-0.030 2.146-0.072 3.218-0.11-1.072 0.038-2.144 0.082-3.218 0.11z","M877.65 648.182c-13.156-14.91-35.908-16.322-50.812-3.168-72.642 64.114-162.658 104.136-258.022 115.57 0.43 23.278 1.294 47.496 2.754 72.156 111.954-12.21 217.786-58.614 302.912-133.746 14.908-13.156 16.326-35.906 3.168-50.812z","M571.498 832.748c-4.606 0.5-9.222 0.936-13.848 1.322 4.626-0.384 9.244-0.822 13.848-1.322z","M555.488 834.242c-3.906 0.312-7.822 0.576-11.742 0.806 3.92-0.226 7.834-0.496 11.742-0.806z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["finder","brand","mac","os"],"defaultCode":60095,"grid":16},"attrs":[],"properties":{"ligatures":"finder, brand54","name":"finder","id":447,"order":834,"prevSize":32,"code":60480},"setIdx":1,"setId":0,"iconIdx":447},{"icon":{"paths":["M896 384c-35.2 0-64 28.8-64 64v256c0 35.2 28.8 64 64 64s64-28.8 64-64v-256c0-35.2-28.8-64-64-64zM128 384c-35.2 0-64 28.8-64 64v256c0 35.2 28.8 64 64 64s64-28.8 64-64v-256c0-35.2-28.802-64-64-64zM224 736c0 53.020 42.98 96 96 96v0 128c0 35.2 28.8 64 64 64s64-28.8 64-64v-128h128v128c0 35.2 28.8 64 64 64s64-28.8 64-64v-128c53.020 0 96-42.98 96-96v-352h-576v352z","M798.216 320.002c-9.716-87.884-59.004-163.792-129.62-209.646l32.024-64.046c7.904-15.806 1.496-35.028-14.31-42.932s-35.030-1.496-42.932 14.312l-32.142 64.286-8.35-3.316c-28.568-9.502-59.122-14.66-90.886-14.66-31.762 0-62.316 5.158-90.888 14.656l-8.348 3.316-32.142-64.282c-7.904-15.808-27.128-22.212-42.932-14.312-15.808 7.904-22.214 27.126-14.312 42.932l32.022 64.046c-70.616 45.852-119.904 121.762-129.622 209.644v32h574.222v-31.998h-1.784zM416 256c-17.674 0-32-14.328-32-32 0-17.648 14.288-31.958 31.93-31.996 0.032 0 0.062 0.002 0.094 0.002 0.018 0 0.036-0.002 0.052-0.002 17.638 0.042 31.924 14.35 31.924 31.996 0 17.672-14.326 32-32 32zM608 256c-17.674 0-32-14.328-32-32 0-17.646 14.286-31.954 31.924-31.996 0.016 0 0.034 0.002 0.050 0.002 0.032 0 0.064-0.002 0.096-0.002 17.64 0.038 31.93 14.348 31.93 31.996 0 17.672-14.326 32-32 32z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["android","brand","os","mobile"],"defaultCode":60096,"grid":16},"attrs":[],"properties":{"ligatures":"android, brand55","name":"android","id":448,"order":835,"prevSize":32,"code":60481},"setIdx":1,"setId":0,"iconIdx":448},{"icon":{"paths":["M412.23 511.914c-47.708-24.518-94.086-36.958-137.88-36.958-5.956 0-11.952 0.18-17.948 0.708-55.88 4.624-106.922 19.368-139.75 30.828-8.708 3.198-17.634 6.576-26.83 10.306l-89.822 311.394c61.702-22.832 116.292-33.938 166.27-33.938 80.846 0 139.528 30.208 187.992 61.304 22.962-77.918 78.044-266.090 94.482-322.324-11.95-7.284-24.076-14.57-36.514-21.32zM528.348 591.070l-90.446 314.148c26.832 15.372 117.098 64.050 186.212 64.050 55.792 0 118.252-14.296 190.834-43.792l86.356-301.976c-58.632 18.922-114.876 28.52-167.464 28.52-95.95 0-163.114-31.098-205.492-60.95zM292.822 368.79c77.118 0.798 134.152 30.208 181.416 60.502l92.752-317.344c-19.546-11.196-70.806-39.094-107.858-48.6-24.386-5.684-50.020-8.616-77.204-8.616-51.796 0.976-108.388 13.946-172.888 39.8l-88.44 310.596c64.808-24.436 120.644-36.34 172.086-36.34 0.046 0.002 0.136 0.002 0.136 0.002zM1024 198.124c-58.814 22.832-116.208 34.466-171.028 34.466-91.686 0-159.292-31.802-203.094-62.366l-91.95 318.236c61.746 39.708 128.29 59.878 198.122 59.878 56.948 0 115.94-13.68 175.462-40.688l-0.182-2.222 3.734-0.886 88.936-306.418z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["windows","brand","os"],"defaultCode":60097,"grid":16},"attrs":[],"properties":{"ligatures":"windows, brand56","name":"windows","id":449,"order":836,"prevSize":32,"code":60482},"setIdx":1,"setId":0,"iconIdx":449},{"icon":{"paths":["M0.35 512l-0.35-312.074 384-52.144v364.218zM448 138.482l511.872-74.482v448h-511.872zM959.998 576l-0.126 448-511.872-72.016v-375.984zM384 943.836l-383.688-52.594-0.020-315.242h383.708z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["windows8","brand","os"],"defaultCode":60098,"grid":16},"attrs":[],"properties":{"ligatures":"windows8, brand57","name":"windows8","id":450,"order":837,"prevSize":32,"code":60483},"setIdx":1,"setId":0,"iconIdx":450},{"icon":{"paths":["M891.96 514.204c-18.086 0-35.348 3.52-51.064 9.856-10.506-114.358-110.29-204.060-232-204.060-29.786 0-58.682 5.63-84.318 15.164-9.96 3.702-12.578 7.52-12.578 14.916v402.714c0 7.766 6.24 14.234 14.124 14.996 0.336 0.034 363.536 0.21 365.89 0.21 72.904 0 131.986-56.816 131.986-126.894s-59.134-126.902-132.040-126.902zM400 768h32l16-224.22-16-223.78h-32l-16 223.78zM304 768h-32l-16-162.75 16-157.25h32l16 160zM144 768h32l16-128-16-128h-32l-16 128zM16 704h32l16-64-16-64h-32l-16 64z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["soundcloud","brand","social"],"defaultCode":60099,"grid":16},"attrs":[],"properties":{"ligatures":"soundcloud, brand58","name":"soundcloud","id":451,"order":838,"prevSize":32,"code":60484},"setIdx":1,"setId":0,"iconIdx":451},{"icon":{"paths":["M928 0h-832c-52.8 0-96 43.2-96 96v832c0 52.8 43.2 96 96 96h832c52.8 0 96-43.2 96-96v-832c0-52.8-43.2-96-96-96zM176 704h-32l-16-96 16-96h32l16 96-16 96zM304 704h-32l-16-128 16-128h32l16 128-16 128zM432 704h-32l-16-192 16-192h32l16 192-16 192zM825.2 704c-2 0-301.2-0.2-301.4-0.2-6.4-0.6-11.6-6.2-11.8-12.8v-345.2c0-6.4 2.2-9.6 10.4-12.8 21.2-8.2 45-13 69.6-13 100.2 0 182.4 76.8 191.2 175 13-5.4 27.2-8.4 42-8.4 60 0 108.8 48.8 108.8 108.8s-48.8 108.6-108.8 108.6z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["soundcloud","brand","social"],"defaultCode":60100,"grid":16},"attrs":[],"properties":{"ligatures":"soundcloud2, brand59","name":"soundcloud2","id":452,"order":839,"prevSize":32,"code":60485},"setIdx":1,"setId":0,"iconIdx":452},{"icon":{"paths":["M425.6 37.4c-1.6-1-3.4-1.8-5-2.6-1.8 0.4-3.4 0.6-5.2 1l10.2 1.6z","M36.8 421c-0.4 1.8-0.6 3.6-0.8 5.2 1 1.6 1.6 3.2 2.6 4.8l-1.8-10z","M986.8 602.6c0.4-1.8 0.6-3.6 1-5.4-1-1.6-1.6-3.2-2.6-4.8l1.6 10.2z","M592 983c1.6 1 3.4 1.8 5 2.6 1.8-0.4 3.6-0.6 5.4-0.8l-10.4-1.8z","M987.8 597.2c-0.4 1.8-0.6 3.6-1 5.4l-1.8-10.4c1 1.8 1.8 3.4 2.8 5 5.2-28.8 8-58.2 8-87.6 0-65.2-12.8-128.6-38-188.2-24.4-57.6-59.2-109.4-103.6-153.8s-96.2-79.2-153.6-103.6c-59.6-25.2-123-38-188.2-38-30.8 0-61.6 2.8-91.6 8.6 0 0-0.2 0-0.2 0 1.6 0.8 3.4 1.6 5 2.6l-10.2-1.6c1.8-0.4 3.4-0.6 5.2-1-41.2-21.8-87.4-33.6-134.2-33.6-76.4 0-148.4 29.8-202.4 83.8s-83.8 126-83.8 202.4c0 48.6 12.6 96.6 36 138.8 0.4-1.8 0.6-3.6 0.8-5.2l1.8 10.2c-1-1.6-1.8-3.2-2.6-4.8-4.8 27.4-7.2 55.4-7.2 83.4 0 65.2 12.8 128.6 38 188.2 24.4 57.6 59.2 109.2 103.6 153.6s96.2 79.2 153.8 103.6c59.6 25.2 123 38 188.2 38 28.4 0 56.8-2.6 84.6-7.6-1.6-1-3.2-1.8-5-2.6l10.4 1.8c-1.8 0.4-3.6 0.6-5.4 0.8 42.8 24.2 91.4 37.2 140.8 37.2 76.4 0 148.4-29.8 202.4-83.8s83.8-126 83.8-202.4c-0.2-48.6-12.8-96.6-36.4-139.2zM514.2 805.8c-171.8 0-248.6-84.4-248.6-147.8 0-32.4 24-55.2 57-55.2 73.6 0 54.4 105.6 191.6 105.6 70.2 0 109-38.2 109-77.2 0-23.4-11.6-49.4-57.8-60.8l-152.8-38.2c-123-30.8-145.4-97.4-145.4-160 0-129.8 122.2-178.6 237-178.6 105.8 0 230.4 58.4 230.4 136.4 0 33.4-29 52.8-62 52.8-62.8 0-51.2-86.8-177.6-86.8-62.8 0-97.4 28.4-97.4 69s49.6 53.6 92.6 63.4l113.2 25.2c123.8 27.6 155.2 100 155.2 168 0 105.4-81 184.2-244.4 184.2z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["skype","brand","social"],"defaultCode":60101,"grid":16},"attrs":[],"properties":{"ligatures":"skype, brand60","name":"skype","id":453,"order":840,"prevSize":32,"code":60486},"setIdx":1,"setId":0,"iconIdx":453},{"icon":{"paths":["M256 640c0-35.346 28.654-64 64-64s64 28.654 64 64c0 35.346-28.654 64-64 64s-64-28.654-64-64zM640 640c0-35.346 28.654-64 64-64s64 28.654 64 64c0 35.346-28.654 64-64 64s-64-28.654-64-64zM643.112 776.778c16.482-12.986 40.376-10.154 53.364 6.332s10.152 40.378-6.334 53.366c-45.896 36.158-115.822 59.524-178.142 59.524-62.322 0-132.248-23.366-178.144-59.522-16.486-12.99-19.32-36.882-6.332-53.368 12.99-16.482 36.882-19.318 53.366-6.332 26.422 20.818 78.722 43.222 131.11 43.222s104.688-22.404 131.112-43.222zM1024 512c0-70.692-57.308-128-128-128-48.116 0-89.992 26.57-111.852 65.82-65.792-35.994-145.952-59.246-233.28-64.608l76.382-171.526 146.194 42.2c13.152 37.342 48.718 64.114 90.556 64.114 53.020 0 96-42.98 96-96s-42.98-96-96-96c-36.56 0-68.342 20.442-84.554 50.514l-162.906-47.024c-18.224-5.258-37.538 3.722-45.252 21.052l-103.77 233.026c-85.138 5.996-163.262 29.022-227.636 64.236-21.864-39.25-63.766-65.804-111.882-65.804-70.692 0-128 57.308-128 128 0 52.312 31.402 97.254 76.372 117.102-8.070 24.028-12.372 49.104-12.372 74.898 0 176.73 200.576 320 448 320 247.422 0 448-143.27 448-320 0-25.792-4.3-50.862-12.368-74.886 44.97-19.85 76.368-64.802 76.368-117.114zM864 188c19.882 0 36 16.118 36 36s-16.118 36-36 36-36-16.118-36-36 16.118-36 36-36zM64 512c0-35.29 28.71-64 64-64 25.508 0 47.572 15.004 57.846 36.646-33.448 25.366-61.166 54.626-81.666 86.738-23.524-9.47-40.18-32.512-40.18-59.384zM512 948c-205.45 0-372-109.242-372-244s166.55-244 372-244c205.45 0 372 109.242 372 244s-166.55 244-372 244zM919.82 571.384c-20.5-32.112-48.218-61.372-81.666-86.738 10.276-21.642 32.338-36.646 57.846-36.646 35.29 0 64 28.71 64 64 0 26.872-16.656 49.914-40.18 59.384z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["reddit","brand","social"],"defaultCode":60102,"grid":16},"attrs":[],"properties":{"ligatures":"reddit, brand61","name":"reddit","id":454,"order":841,"prevSize":32,"code":60487},"setIdx":1,"setId":0,"iconIdx":454},{"icon":{"paths":["M0 0v1024h1024v-1024h-1024zM544 584v216h-64v-216l-175-328h72.6l134.4 252 134.4-252h72.6l-175 328z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["hackernews","brand","ycombinator","yc","social"],"defaultCode":60103,"grid":16},"attrs":[],"properties":{"name":"hackernews","ligatures":"hackernews, brand62","id":455,"order":842,"prevSize":32,"code":60488},"setIdx":1,"setId":0,"iconIdx":455},{"icon":{"paths":["M966.8 233.6c0 3.2-1 6.2-3 9-2 2.6-4.2 4-6.8 4-20 2-36.4 8.4-49 19.2-12.8 10.8-25.8 31.8-39.2 62.4l-206.4 465.4c-1.4 4.4-5.2 6.4-11.4 6.4-4.8 0-8.6-2.2-11.4-6.4l-115.8-242-133.2 242c-2.8 4.4-6.4 6.4-11.4 6.4-6 0-9.8-2.2-11.8-6.4l-202.6-465.2c-12.6-28.8-26-49-40-60.4s-33.6-18.6-58.6-21.2c-2.2 0-4.2-1.2-6-3.4-2-2.2-2.8-4.8-2.8-7.8 0-7.6 2.2-11.4 6.4-11.4 18 0 37 0.8 56.8 2.4 18.4 1.6 35.6 2.4 51.8 2.4 16.4 0 36-0.8 58.4-2.4 23.4-1.6 44.2-2.4 62.4-2.4 4.4 0 6.4 3.8 6.4 11.4s-1.4 11.2-4 11.2c-18 1.4-32.4 6-42.8 13.8s-15.6 18-15.6 30.8c0 6.4 2.2 14.6 6.4 24.2l167.4 378.4 95.2-179.6-88.6-185.8c-16-33.2-29-54.6-39.2-64.2s-25.8-15.4-46.6-17.6c-2 0-3.6-1.2-5.4-3.4s-2.6-4.8-2.6-7.8c0-7.6 1.8-11.4 5.6-11.4 18 0 34.6 0.8 49.8 2.4 14.6 1.6 30 2.4 46.6 2.4 16.2 0 33.2-0.8 51.4-2.4 18.6-1.6 37-2.4 55-2.4 4.4 0 6.4 3.8 6.4 11.4s-1.2 11.2-4 11.2c-36.2 2.4-54.2 12.8-54.2 30.8 0 8 4.2 20.6 12.6 37.6l58.6 119 58.4-108.8c8-15.4 12.2-28.4 12.2-38.8 0-24.8-18-38-54.2-39.6-3.2 0-4.8-3.8-4.8-11.2 0-2.8 0.8-5.2 2.4-7.6s3.2-3.6 4.8-3.6c13 0 28.8 0.8 47.8 2.4 18 1.6 33 2.4 44.6 2.4 8.4 0 20.6-0.8 36.8-2 20.4-1.8 37.6-2.8 51.4-2.8 3.2 0 4.8 3.2 4.8 9.6 0 8.6-3 13-8.8 13-21 2.2-38 8-50.8 17.4s-28.8 30.8-48 64.4l-78.2 143.2 105.2 214.4 155.4-361.4c5.4-13.2 8-25.4 8-36.4 0-26.4-18-40.4-54.2-42.2-3.2 0-4.8-3.8-4.8-11.2 0-7.6 2.4-11.4 7.2-11.4 13.2 0 28.8 0.8 47 2.4 16.8 1.6 30.8 2.4 42 2.4 12 0 25.6-0.8 41.2-2.4 16.2-1.6 30.8-2.4 43.8-2.4 4 0 6 3.2 6 9.6z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["wikipedia","brand"],"defaultCode":60104,"grid":16},"attrs":[],"properties":{"name":"wikipedia","ligatures":"wikipedia, brand63","id":456,"order":843,"prevSize":32,"code":60489},"setIdx":1,"setId":0,"iconIdx":456},{"icon":{"paths":["M928 0h-832c-52.8 0-96 43.2-96 96v832c0 52.8 43.2 96 96 96h832c52.8 0 96-43.2 96-96v-832c0-52.8-43.2-96-96-96zM384 832h-128v-448h128v448zM320 320c-35.4 0-64-28.6-64-64s28.6-64 64-64c35.4 0 64 28.6 64 64s-28.6 64-64 64zM832 832h-128v-256c0-35.4-28.6-64-64-64s-64 28.6-64 64v256h-128v-448h128v79.4c26.4-36.2 66.8-79.4 112-79.4 79.6 0 144 71.6 144 160v288z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["linkedin","brand","social"],"defaultCode":60105,"grid":16},"attrs":[],"properties":{"ligatures":"linkedin, brand64","name":"linkedin","id":457,"order":844,"prevSize":32,"code":60490},"setIdx":1,"setId":0,"iconIdx":457},{"icon":{"paths":["M384 384h177.106v90.782h2.532c24.64-44.194 84.958-90.782 174.842-90.782 186.946 0 221.52 116.376 221.52 267.734v308.266h-184.61v-273.278c0-65.184-1.334-149.026-96.028-149.026-96.148 0-110.82 70.986-110.82 144.292v278.012h-184.542v-576z","M64 384h192v576h-192v-576z","M256 224c0 53.019-42.981 96-96 96s-96-42.981-96-96c0-53.019 42.981-96 96-96s96 42.981 96 96z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["linkedin","brand","social"],"defaultCode":60106,"grid":16},"attrs":[],"properties":{"ligatures":"linkedin2, brand65","name":"linkedin2","id":458,"order":845,"prevSize":32,"code":60491},"setIdx":1,"setId":0,"iconIdx":458},{"icon":{"paths":["M451.6 766.2l-37.6-102c0 0-61 68-152.4 68-81 0-138.4-70.4-138.4-183 0-144.2 72.8-195.8 144.2-195.8 103.2 0 136 66.8 164.2 152.4l37.6 117.2c37.6 113.8 108 205.2 310.8 205.2 145.4 0 244-44.6 244-161.8 0-95-54-144.2-154.8-167.8l-75-16.4c-51.6-11.8-66.8-32.8-66.8-68 0-39.8 31.6-63.4 83.2-63.4 56.4 0 86.8 21.2 91.4 71.6l117.2-14c-9.4-105.6-82.2-149-201.8-149-105.6 0-208.8 39.8-208.8 167.8 0 79.8 38.8 130.2 136 153.6l79.8 18.8c59.8 14 79.8 38.8 79.8 72.8 0 43.4-42.2 61-122 61-118.4 0-167.8-62.2-195.8-147.8l-38.8-117.2c-49-152.6-127.6-208.8-283.6-208.8-172.4 0-264 109-264 294.4 0 178.2 91.4 274.4 255.8 274.4 132.4 0 195.8-62.2 195.8-62.2v0z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["lastfm","brand","social"],"defaultCode":60107,"grid":16},"attrs":[],"properties":{"ligatures":"lastfm, brand66","name":"lastfm","id":459,"order":846,"prevSize":32,"code":60492},"setIdx":1,"setId":0,"iconIdx":459},{"icon":{"paths":["M928 0h-832c-52.8 0-96 43.2-96 96v832c0 52.8 43.2 96 96 96h832c52.8 0 96-43.2 96-96v-832c0-52.8-43.2-96-96-96zM746.6 760.8c-177.6 0-239.2-80-272-179.6l-32.8-102.6c-24.6-75-53.4-133.4-143.6-133.4-62.6 0-126.2 45.2-126.2 171.4 0 98.6 50.2 160.2 121.2 160.2 80 0 133.4-59.6 133.4-59.6l32.8 89.2c0 0-55.4 54.4-171.4 54.4-144 0-224-84-224-240 0-162.2 80-257.6 231-257.6 136.6 0 205.2 49.2 248.4 182.6l33.8 102.6c24.6 75 67.8 129.4 171.4 129.4 69.8 0 106.8-15.4 106.8-53.4 0-29.8-17.4-51.4-69.8-63.6l-69.8-16.4c-85.2-20.6-119-64.6-119-134.4 0-111.8 90.4-146.8 182.6-146.8 104.6 0 168.4 38 176.6 130.4l-102.6 12.4c-4.2-44.2-30.8-62.6-80-62.6-45.2 0-72.8 20.6-72.8 55.4 0 30.8 13.4 49.2 58.4 59.6l65.6 14.4c88.2 20.6 135.4 63.6 135.4 146.8 0 102.2-86.2 141.2-213.4 141.2z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["lastfm","brand","social"],"defaultCode":60108,"grid":16},"attrs":[],"properties":{"ligatures":"lastfm2, brand67","name":"lastfm2","id":460,"order":847,"prevSize":32,"code":60493},"setIdx":1,"setId":0,"iconIdx":460},{"icon":{"paths":["M0 0v1024h1024v-1024h-1024zM512 960v-448h-448v-448h448v448h448v448h-448z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["delicious","brand","social"],"defaultCode":60109,"grid":16},"attrs":[],"properties":{"ligatures":"delicious, brand68","name":"delicious","id":461,"order":848,"prevSize":32,"code":60494},"setIdx":1,"setId":0,"iconIdx":461},{"icon":{"paths":["M512 320c-35.2 0-64 28.8-64 64v256c0 105.8-86.2 192-192 192s-192-86.2-192-192v-128h128v128c0 35.2 28.8 64 64 64s64-28.8 64-64v-256c0-105.8 86.2-192 192-192s192 86.2 192 178v62l-82 24-46-24v-62c0-21.2-28.8-50-64-50z","M960 640c0 105.8-86.2 192-192 192s-192-86.2-192-206v-124l46 24 82-24v124c0 49.2 28.8 78 64 78s64-28.8 64-64v-128h128v128z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["stumbleupon","brand","social"],"defaultCode":60110,"grid":16},"attrs":[],"properties":{"name":"stumbleupon","ligatures":"stumbleupon, brand69","id":462,"order":849,"prevSize":32,"code":60495},"setIdx":1,"setId":0,"iconIdx":462},{"icon":{"paths":["M852 0h-680c-94.6 0-172 77.4-172 172v680c0 94.6 77.4 172 172 172h680c94.6 0 172-77.4 172-172v-680c0-94.6-77.4-172-172-172zM512 320c-35.29 0-64 28.71-64 64v256c0 105.872-86.13 192-192 192s-192-86.128-192-192v-128h128v128c0 35.29 28.71 64 64 64s64-28.71 64-64v-256c0-105.87 86.13-192 192-192s192 86.13 192 178v62l-82 24-46-24v-62c0-21.29-28.71-50-64-50zM960 640c0 105.872-86.13 192-192 192s-192-86.128-192-206v-124l46 24 82-24v124c0 49.29 28.71 78 64 78s64-28.71 64-64v-128h128v128z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["stumbleupon","brand","social"],"defaultCode":60111,"grid":16},"attrs":[],"properties":{"ligatures":"stumbleupon2, brand70","name":"stumbleupon2","id":463,"order":850,"prevSize":32,"code":60496},"setIdx":1,"setId":0,"iconIdx":463},{"icon":{"paths":["M1024 640v384h-1024v-384h128v256h768v-256zM192 704h640v128h-640zM207.152 565.466l27.698-124.964 624.832 138.496-27.698 124.964zM279.658 308.558l54.092-116.006 580.032 270.464-54.092 116.006zM991.722 361.476l-77.922 101.55-507.746-389.608 56.336-73.418h58.244z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["stackoverflow","brand","social"],"defaultCode":60112,"grid":16},"attrs":[],"properties":{"ligatures":"stackoverflow, brand71","name":"stackoverflow","id":464,"order":851,"prevSize":32,"code":60497},"setIdx":1,"setId":0,"iconIdx":464},{"icon":{"paths":["M512 68.4c-245 0-443.6 198.6-443.6 443.6 0 188 117 348.4 282 413-3.8-35-7.4-89 1.6-127.2 8-34.6 52-220.4 52-220.4s-13.2-26.6-13.2-65.8c0-61.6 35.8-107.8 80.2-107.8 37.8 0 56.2 28.4 56.2 62.4 0 38-24.2 95-36.8 147.6-10.6 44.2 22 80.2 65.6 80.2 78.8 0 139.4-83.2 139.4-203.2 0-106.2-76.4-180.4-185.2-180.4-126.2 0-200.2 94.6-200.2 192.6 0 38.2 14.6 79 33 101.2 3.6 4.4 4.2 8.2 3 12.8-3.4 14-10.8 44.2-12.4 50.4-2 8.2-6.4 9.8-14.8 6-55.4-25.8-90-106.8-90-171.8 0-140 101.6-268.4 293-268.4 153.8 0 273.4 109.6 273.4 256.2 0 152.8-96.4 276-230.2 276-45 0-87.2-23.4-101.6-51 0 0-22.2 84.6-27.6 105.4-10 38.6-37 86.8-55.2 116.2 41.6 12.8 85.6 19.8 131.4 19.8 245 0 443.6-198.6 443.6-443.6 0-245.2-198.6-443.8-443.6-443.8z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["pinterest","brand","social"],"defaultCode":60113,"grid":16},"attrs":[],"properties":{"name":"pinterest","ligatures":"pinterest, brand72","id":465,"order":852,"prevSize":32,"code":60498},"setIdx":1,"setId":0,"iconIdx":465},{"icon":{"paths":["M512 0c-282.4 0-512 229.6-512 512s229.6 512 512 512 512-229.6 512-512-229.6-512-512-512zM512 955.6c-45.8 0-89.8-7-131.4-19.8 18-29.4 45.2-77.8 55.2-116.2 5.4-20.8 27.6-105.4 27.6-105.4 14.4 27.6 56.8 51 101.6 51 133.8 0 230.2-123 230.2-276 0-146.6-119.6-256.2-273.4-256.2-191.4 0-293 128.6-293 268.4 0 65 34.6 146 90 171.8 8.4 4 12.8 2.2 14.8-6 1.4-6.2 9-36.2 12.4-50.4 1-4.4 0.6-8.4-3-12.8-18.4-22.2-33-63.2-33-101.2 0-97.8 74-192.6 200.2-192.6 109 0 185.2 74.2 185.2 180.4 0 120-60.6 203.2-139.4 203.2-43.6 0-76.2-36-65.6-80.2 12.6-52.8 36.8-109.6 36.8-147.6 0-34-18.2-62.4-56.2-62.4-44.6 0-80.2 46-80.2 107.8 0 39.2 13.2 65.8 13.2 65.8s-44 185.8-52 220.4c-9 38.4-5.4 92.2-1.6 127.2-165-64.4-282-224.8-282-412.8 0-245 198.6-443.6 443.6-443.6s443.6 198.6 443.6 443.6c0 245-198.6 443.6-443.6 443.6z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["pinterest","brand","social"],"defaultCode":60114,"grid":16},"attrs":[],"properties":{"ligatures":"pinterest2, brand73","name":"pinterest2","id":466,"order":853,"prevSize":32,"code":60499},"setIdx":1,"setId":0,"iconIdx":466},{"icon":{"paths":["M928 0h-832c-52.8 0-96 43.2-96 96v832c0 52.8 43.2 96 96 96h832c52.8 0 96-43.2 96-96v-832c0-52.8-43.2-96-96-96zM312.6 666h-110.6c-6.6 0-11.6-3-14.4-7.6-3-4.8-3-10.8 0-17l117.6-207.6c0.2-0.2 0.2-0.4 0-0.6l-74.8-129.6c-3-6.2-3.6-12.2-0.6-17 2.8-4.6 8.4-7 15.2-7h110.8c17 0 25.4 11 30.8 20.8 0 0 75.6 132 76.2 132.8-4.4 8-119.6 211.4-119.6 211.4-6 10.4-14 21.4-30.6 21.4zM836.4 152.2l-245.2 433.6c-0.2 0.2-0.2 0.6 0 0.8l156.2 285.2c3 6.2 3.2 12.4 0.2 17.2-2.8 4.6-8 7-14.8 7h-110.6c-17 0-25.4-11.2-31-21 0 0-157-288-157.4-288.8 7.8-13.8 246.4-437 246.4-437 6-10.6 13.2-21 29.6-21h112.2c6.6 0 12 2.6 14.8 7 2.8 4.6 2.8 10.8-0.4 17z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["xing","brand","social"],"defaultCode":60115,"grid":16},"attrs":[],"properties":{"ligatures":"xing, brand74","name":"xing","id":467,"order":854,"prevSize":32,"code":60500},"setIdx":1,"setId":0,"iconIdx":467},{"icon":{"paths":["M155.6 202.2c-8.8 0-16.4 3.2-20.2 9.2-3.8 6.4-3.2 14.4 0.8 22.6l99.8 172.8c0.2 0.4 0.2 0.6 0 0.8l-156.8 277.2c-4 8.2-3.8 16.4 0 22.6 3.8 6 10.4 10 19.2 10h147.6c22 0 32.8-15 40.2-28.6 0 0 153.4-271.4 159.4-282-0.6-1-101.6-177-101.6-177-7.4-13-18.4-27.6-41.2-27.6h-147.2z","M776 0c-22 0-31.6 13.8-39.6 28.2 0 0-318.2 564.2-328.6 582.8 0.6 1 209.8 385 209.8 385 7.4 13 18.6 28.2 41.2 28.2h147.6c8.8 0 15.8-3.4 19.6-9.4 4-6.4 3.8-14.6-0.4-22.8l-208-380.6c-0.2-0.4-0.2-0.6 0-1l327-578.2c4-8.2 4.2-16.4 0.4-22.8-3.8-6-10.8-9.4-19.6-9.4h-149.4z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["xing","brand","social"],"defaultCode":60116,"grid":16},"attrs":[],"properties":{"ligatures":"xing2, brand75","name":"xing2","codes":[61231],"id":468,"order":855,"prevSize":32,"code":60501},"setIdx":1,"setId":0,"iconIdx":468},{"icon":{"paths":["M367.562 0c-243.358 0-367.562 140.162-367.562 401.856v0 549.034l238.39-238.628v-278.896c0-108.416 28.73-177.406 125.118-192.894v0c33.672-6.584 103.75-4.278 148.306-4.278v0 165.596c0 1.51 0.208 4.206 0.594 5.586v0c1.87 6.704 7.93 11.616 15.116 11.63v0c4.062 0.008 7.868-2.104 11.79-5.97v0l413.122-412.974-584.874-0.062zM785.61 311.746v278.89c0 108.414-28.736 177.414-125.116 192.894v0c-33.672 6.582-103.756 4.278-148.312 4.278v0-165.594c0-1.5-0.206-4.204-0.594-5.582v0c-1.864-6.712-7.922-11.622-15.112-11.63v0c-4.064-0.008-7.866 2.112-11.79 5.966v0l-413.124 412.966 584.874 0.066c243.354 0 367.564-140.168 367.564-401.852v0-549.028l-238.39 238.626z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["flattr","brand","donate","social"],"defaultCode":60117,"grid":16},"attrs":[],"properties":{"ligatures":"flattr, brand76","name":"flattr","id":469,"order":856,"prevSize":32,"code":60502},"setIdx":1,"setId":0,"iconIdx":469},{"icon":{"paths":["M851.564 90.090c-12.060-16.404-31.204-26.090-51.564-26.090h-608c-35.346 0-64 28.654-64 64v768c0 25.884 15.592 49.222 39.508 59.128 7.918 3.28 16.234 4.874 24.478 4.874 16.656 0 33.026-6.504 45.268-18.748l237.256-237.254h165.49c27.992 0 52.736-18.192 61.086-44.91l160-512c6.074-19.432 2.538-40.596-9.522-57zM672.948 320h-224.948c-35.346 0-64 28.654-64 64s28.654 64 64 64h184.948l-40 128h-144.948c-16.974 0-33.252 6.742-45.254 18.746l-146.746 146.744v-549.49h456.948l-40 128z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["foursquare","brand","social"],"defaultCode":60118,"grid":16},"attrs":[],"properties":{"ligatures":"foursquare, brand77","name":"foursquare","id":470,"order":857,"prevSize":32,"code":60503},"setIdx":1,"setId":0,"iconIdx":470},{"icon":{"paths":["M608.876 653.468c-17.282 17.426-2.668 49.128-2.668 49.128l130.090 217.218c0 0 21.36 28.64 39.864 28.64 18.59 0 36.954-15.27 36.954-15.27l102.844-147.008c0 0 10.36-18.546 10.598-34.792 0.372-23.106-34.454-29.434-34.454-29.434l-243.488-78.192c-0.002 0.004-23.858-6.328-39.74 9.71zM596.532 543.984c12.46 21.128 46.828 14.972 46.828 14.972l242.938-71.006c0 0 33.106-13.466 37.832-31.418 4.64-17.954-5.46-39.622-5.46-39.622l-116.098-136.752c0 0-10.062-17.292-30.938-19.032-23.016-1.958-37.18 25.898-37.18 25.898l-137.27 216.010c0 0.004-12.134 21.516-0.652 40.95zM481.754 459.768c28.608-7.044 33.148-48.604 33.148-48.604l-1.944-345.87c0 0-4.314-42.666-23.486-54.232-30.070-18.242-38.982-8.718-47.596-7.444l-201.696 74.944c0 0-19.754 6.536-30.042 23.018-14.69 23.352 14.928 57.544 14.928 57.544l209.644 285.756c0 0 20.69 21.396 47.044 14.888zM431.944 599.738c0.722-26.676-32.030-42.7-32.030-42.7l-216.796-109.524c0 0-32.126-13.246-47.722-4.016-11.95 7.060-22.536 19.84-23.572 31.134l-14.12 173.812c0 0-2.116 30.114 5.69 43.82 11.054 19.442 47.428 5.902 47.428 5.902l253.096-55.942c9.832-6.61 27.074-7.204 28.026-42.486zM494.88 693.542c-21.726-11.156-47.724 11.95-47.724 11.95l-169.468 186.566c0 0-21.144 28.528-15.768 46.050 5.066 16.418 13.454 24.578 25.318 30.328l170.192 53.726c0 0 20.634 4.286 36.258-0.242 22.18-6.43 18.094-41.152 18.094-41.152l3.848-252.602c-0.002 0.002-0.868-24.334-20.75-34.624z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["yelp","brand","social"],"defaultCode":60119,"grid":16},"attrs":[],"properties":{"ligatures":"yelp, brand78","name":"yelp","id":471,"order":858,"prevSize":32,"code":60504},"setIdx":1,"setId":0,"iconIdx":471},{"icon":{"paths":["M930 308.6c-47.8 212.2-195.4 324.2-428 324.2h-77.4l-53.8 341.6h-64.8l-3.4 22c-2.2 14.6 9 27.6 23.6 27.6h165.6c19.6 0 36.2-14.2 39.4-33.6l1.6-8.4 31.2-197.8 2-10.8c3-19.4 19.8-33.6 39.4-33.6h24.6c160.4 0 286-65.2 322.8-253.6 13.8-71.6 8.6-132.4-22.8-177.6z","M831 77.2c-47.4-54-133.2-77.2-242.8-77.2h-318.2c-22.4 0-41.6 16.2-45 38.4l-132.6 840.4c-2.6 16.6 10.2 31.6 27 31.6h196.6l49.4-313-1.6 9.8c3.4-22.2 22.4-38.4 44.8-38.4h93.4c183.4 0 327-74.4 369-290 1.2-6.4 2.4-12.6 3.2-18.6 12.4-79.6 0-134-43.2-183z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["paypal","brand","donate"],"defaultCode":60120,"grid":16},"attrs":[],"properties":{"ligatures":"paypal, brand79","name":"paypal","codes":[61234],"id":472,"order":859,"prevSize":32,"code":60505},"setIdx":1,"setId":0,"iconIdx":472},{"icon":{"paths":["M258.278 446.542l-146.532-253.802c93.818-117.464 238.234-192.74 400.254-192.74 187.432 0 351.31 100.736 440.532 251h-417.77c-7.504-0.65-15.092-1-22.762-1-121.874 0-224.578 83.644-253.722 196.542zM695.306 325h293.46c22.74 57.93 35.234 121.004 35.234 187 0 280.826-226.1 508.804-506.186 511.926l209.394-362.678c29.48-42.378 46.792-93.826 46.792-149.248 0-73.17-30.164-139.42-78.694-187zM326 512c0-102.56 83.44-186 186-186s186 83.44 186 186c0 102.56-83.44 186-186 186s-186-83.44-186-186zM582.182 764.442l-146.578 253.878c-246.532-36.884-435.604-249.516-435.604-506.32 0-91.218 23.884-176.846 65.696-251.024l209.030 362.054c41.868 89.112 132.476 150.97 237.274 150.97 24.3 0 47.836-3.34 70.182-9.558z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["chrome","browser","internet","brand"],"defaultCode":60121,"grid":16},"attrs":[],"properties":{"ligatures":"chrome, browser","name":"chrome","id":473,"order":860,"prevSize":32,"code":60506},"setIdx":1,"setId":0,"iconIdx":473},{"icon":{"paths":["M1022.526 334.14l-11.86 76.080c0 0-16.954-140.856-37.732-193.514-31.846-80.688-46.014-80.040-46.108-79.922 21.33 54.204 17.462 83.324 17.462 83.324s-37.792-102.998-137.712-135.768c-110.686-36.282-170.57-26.364-177.488-24.486-1.050-0.008-2.064-0.010-3.030-0.010 0.818 0.062 1.612 0.146 2.426 0.212-0.034 0.020-0.090 0.042-0.082 0.052 0.45 0.548 122.306 21.302 143.916 50.996 0 0-51.76 0-103.272 14.842-2.328 0.666 189.524 23.964 228.746 215.674 0 0-21.030-43.876-47.040-51.328 17.106 52.036 12.714 150.776-3.576 199.85-2.096 6.312-4.24-27.282-36.328-41.75 10.28 73.646-0.616 190.456-51.708 222.632-3.982 2.504 32.030-115.31 7.242-69.762-142.708 218.802-311.404 100.972-387.248 49.11 38.866 8.462 112.654-1.318 145.314-25.612 0.042-0.030 0.078-0.056 0.118-0.086 35.468-24.252 56.472-41.964 75.334-37.772 18.874 4.214 31.438-14.726 16.78-31.53-14.676-16.838-50.314-39.978-98.524-27.366-34 8.904-76.134 46.522-140.448 8.432-49.364-29.25-54.012-53.546-54.45-70.376 1.218-5.966 2.754-11.536 4.576-16.624 5.682-15.87 22.912-20.658 32.494-24.438 16.256 2.792 30.262 7.862 44.968 15.406 0.19-4.894 0.252-11.39-0.018-18.76 1.41-2.802 0.538-11.252-1.722-21.58-1.302-10.308-3.42-20.974-6.752-30.692 0.012-0.002 0.020-0.010 0.030-0.014 0.056-0.018 0.108-0.040 0.156-0.070 0.078-0.044 0.146-0.112 0.208-0.19 0.012-0.020 0.030-0.034 0.044-0.052 0.082-0.124 0.154-0.272 0.198-0.466 1.020-4.618 12.022-13.524 25.718-23.1 12.272-8.58 26.702-17.696 38.068-24.752 10.060-6.248 17.72-10.882 19.346-12.098 0.618-0.466 1.358-1.012 2.164-1.636 0.15-0.116 0.3-0.232 0.454-0.354 0.094-0.074 0.19-0.148 0.286-0.226 5.41-4.308 13.484-12.448 15.178-29.578 0.004-0.042 0.010-0.080 0.012-0.122 0.050-0.504 0.092-1.014 0.13-1.534 0.028-0.362 0.050-0.726 0.072-1.096 0.014-0.284 0.032-0.566 0.044-0.856 0.030-0.674 0.050-1.364 0.060-2.064 0-0.040 0.002-0.076 0.004-0.116 0.022-1.658-0.006-3.386-0.104-5.202-0.054-1.014-0.126-1.93-0.298-2.762-0.008-0.044-0.018-0.092-0.028-0.136-0.018-0.082-0.036-0.164-0.058-0.244-0.036-0.146-0.076-0.292-0.122-0.43-0.006-0.018-0.010-0.032-0.016-0.046-0.052-0.16-0.112-0.314-0.174-0.464-0.004-0.006-0.004-0.010-0.006-0.016-1.754-4.108-8.32-5.658-35.442-6.118-0.026-0.002-0.050-0.002-0.076-0.002v0c-11.066-0.188-25.538-0.194-44.502-0.118-33.25 0.134-51.628-32.504-57.494-45.132 8.040-44.46 31.276-76.142 69.45-97.626 0.722-0.406 0.58-0.742-0.274-0.978 7.464-4.514-90.246-0.124-135.186 57.036-39.888-9.914-74.654-9.246-104.616-2.214-5.754-0.162-12.924-0.88-21.434-2.652-19.924-18.056-48.448-51.402-49.976-91.208 0 0-0.092 0.072-0.252 0.204-0.020-0.382-0.056-0.76-0.072-1.142 0 0-60.716 46.664-51.628 173.882-0.022 2.036-0.064 3.986-0.12 5.874-16.432 22.288-24.586 41.020-25.192 45.156-14.56 29.644-29.334 74.254-41.356 141.98 0 0 8.408-26.666 25.284-56.866-12.412 38.022-22.164 97.156-16.436 185.856 0 0 1.514-19.666 6.874-47.994 4.186 55.010 22.518 122.924 68.858 202.788 88.948 153.32 225.67 230.74 376.792 242.616 26.836 2.212 54.050 2.264 81.424 0.186 2.516-0.178 5.032-0.364 7.55-0.574 30.964-2.174 62.134-6.852 93.238-14.366 425.172-102.798 378.942-616.198 378.942-616.198z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["firefox","browser","internet","brand"],"defaultCode":60122,"grid":16},"attrs":[],"properties":{"ligatures":"firefox, browser2","name":"firefox","id":474,"order":861,"prevSize":32,"code":60507},"setIdx":1,"setId":0,"iconIdx":474},{"icon":{"paths":["M734.202 628.83h236.050c1.82-16.37 2.548-33.098 2.548-50.196 0-80.224-21.534-155.468-59.124-220.266 38.88-103.308 37.492-190.988-14.556-243.39-49.496-49.28-182.29-41.28-332.412 25.198-11.104-0.84-22.318-1.272-33.638-1.272-206.048 0-378.926 141.794-426.708 332.85 64.638-82.754 132.638-142.754 223.478-186.448-8.26 7.74-56.454 55.652-64.56 63.764-239.548 239.478-315.090 552.306-233.806 633.604 61.786 61.774 173.758 51.342 302.376-11.648 59.806 30.458 127.5 47.63 199.218 47.63 193.134 0 356.804-124.316 416.090-297.448h-237.868c-32.734 60.382-96.748 101.48-170.218 101.48-73.468 0-137.484-41.098-170.216-101.48-14.55-27.274-22.914-58.554-22.914-91.656v-0.722h386.26zM348.302 512.804c5.456-97.11 86.2-174.584 184.766-174.584s179.312 77.472 184.766 174.584h-369.532zM896.966 163.808c33.526 33.88 32.688 96.214 4.012 174.022-49.136-74.908-120.518-133.936-204.792-167.64 90.106-38.638 163.406-43.756 200.78-6.382zM93.482 967.256c-42.782-42.796-29.884-132.618 25.23-240.832 34.308 96.27 101.156 177.090 187.336 229.154-95.43 43.318-173.536 50.674-212.566 11.678z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["IE","browser","internet-explorer","brand"],"defaultCode":60123,"grid":16},"attrs":[],"properties":{"ligatures":"IE, browser3","name":"IE","id":475,"order":862,"prevSize":32,"code":60508},"setIdx":1,"setId":0,"iconIdx":475},{"icon":{"paths":["M15.4 454.6c30-236.8 191.6-451.6 481.2-454.6 174.8 3.4 318.6 82.6 404.2 233.6 43 78.8 56.4 161.6 59.2 253v107.4h-642.6c3 265 390 256 556.6 139.2v215.8c-97.6 58.6-319 111-490.4 43.6-146-54.8-250-207.6-249.4-354.6-4.8-190.6 94.8-316.8 249.4-388.6-32.8 40.6-57.8 85.4-70.8 163h362.8c0 0 21.2-216.8-205.4-216.8-213.6 7.4-367.6 131.6-454.8 259v0z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["edge","browser","brand"],"defaultCode":60124,"grid":16},"attrs":[],"properties":{"name":"edge","ligatures":"edge, browser4","id":476,"order":863,"prevSize":32,"code":60509},"setIdx":1,"setId":0,"iconIdx":476},{"icon":{"paths":["M512 0c-282.8 0-512 229.2-512 512s229.2 512 512 512 512-229.2 512-512-229.2-512-512-512zM958.4 472.8l-1-10.6c0.2 3.6 0.6 7 1 10.6zM888.4 268.8l-7.2-10.8c2.4 3.6 4.8 7.2 7.2 10.8zM860.6 230.6l-4.4-5.4c1.6 1.8 3 3.6 4.4 5.4zM798.6 167.6l-5.4-4.4c2 1.6 3.6 3 5.4 4.4zM766 142.8l-10.8-7.2c3.6 2.4 7.2 4.8 10.8 7.2zM561.8 66.8l-10.8-1c3.6 0.2 7.2 0.6 10.8 1zM472.8 65.6l-10.8 1c3.6-0.2 7.2-0.6 10.8-1zM268.8 135.6l-10.8 7.2c3.6-2.4 7.2-4.8 10.8-7.2zM230.6 163.4l-5.2 4.2c1.8-1.4 3.4-2.8 5.2-4.2zM167.6 225.4l-4.4 5.4c1.6-1.8 3-3.6 4.4-5.4zM142.8 258l-7.2 10.8c2.4-3.6 4.8-7.2 7.2-10.8zM66.8 462.2l-1 10.8c0.2-3.6 0.6-7.2 1-10.8zM65.6 551.2l1 10.8c-0.2-3.6-0.6-7.2-1-10.8zM135.6 755l7.2 10.8c-2.4-3.4-4.8-7-7.2-10.8zM144 767.6l79.8-53.4-8.8-13.4-79.8 53.4c-36.2-56.2-60-120.8-68-190.4l47.8-4.8-1.6-16-47.8 4.8c-0.8-9.2-1.2-18.6-1.4-28h96v-16h-96c0.2-9.4 0.6-18.6 1.4-28l47.8 4.6 1.6-16-47.8-4.6c8-69.6 32-134.2 68.2-190.4l79.8 53.4 8.8-13.4-80-53c5.4-7.6 10.8-15.2 16.6-22.4l37 30.4 10.2-12.4-37-30.4c6-7.2 12.4-14 18.8-20.8l67.8 67.8 11.4-11.4-67.8-67.8c6.8-6.4 13.6-12.8 20.6-18.8l30.4 37.2 12.4-10.2-30.4-37c7.4-5.8 14.8-11.4 22.4-16.8l53.4 79.8 13.4-8.8-53.4-79.8c56.2-36.2 120.8-60 190.4-68l4.8 47.8 16-1.6-4.8-47.8c9.2-0.8 18.6-1.2 28-1.4v96h16v-96c9.4 0.2 18.6 0.6 28 1.4l-4.6 47.8 16 1.6 4.6-47.8c69.6 8 134.2 32 190.4 68.2l-53.4 79.8 13.4 8.8 53.4-79.8c7.6 5.4 15.2 10.8 22.4 16.6l-30.4 37 12.4 10.2 30.4-37c7.2 6 14 12.4 20.8 18.8l-25.6 25-350 233.4-233.4 350-25 25c-6.4-6.8-12.8-13.6-18.8-20.6l37-30.4-10.2-12.4-37 30.4c-5.8-7.2-11.2-14.8-16.6-22.4zM167.6 798.6c-1.4-1.8-2.8-3.4-4.2-5.2l4.2 5.2zM225.4 856.4l5.2 4.2c-1.8-1.4-3.4-2.8-5.2-4.2zM258 881l10.8 7.2c-3.6-2.2-7.2-4.6-10.8-7.2zM462.2 957.2l10.8 1c-3.6-0.2-7.2-0.6-10.8-1zM551.2 958.4l10.6-1c-3.6 0.2-7 0.6-10.6 1zM755.2 888.4l10.8-7.2c-3.6 2.4-7.2 4.8-10.8 7.2zM793.4 860.6l5.4-4.4c-1.8 1.6-3.6 3-5.4 4.4zM828.4 829.2l0.8-0.8c-0.2 0.2-0.6 0.6-0.8 0.8zM856.4 798.6l4.4-5.4c-1.6 1.8-3 3.6-4.4 5.4zM863.4 790l-37-30.4-10.2 12.4 37 30.4c-6 7.2-12.4 14-18.8 20.8l-67.8-67.8-11.4 11.4 67.8 67.8c-6.8 6.4-13.6 12.8-20.6 18.8l-30.4-37.2-12.4 10.2 30.4 37c-7.4 5.8-14.8 11.4-22.4 16.8l-53.4-79.8-13.4 8.8 53.4 79.8c-56.2 36.2-120.8 60-190.4 68l-4.8-47.8-16 1.6 4.8 47.8c-9.2 0.8-18.6 1.2-28 1.4v-96h-16v96c-9.4-0.2-18.6-0.6-28-1.4l4.6-47.8-16-1.6-4.6 47.8c-69.6-8-134.2-32-190.4-68.2l53.4-79.8-13.4-8.8-53 79.8c-7.6-5.4-15.2-10.8-22.4-16.6l30.4-37-12.4-10.2-30.4 37c-7.2-6-14-12.4-20.8-18.8l25.2-25 350-233.4 233.4-350 25-25c6.4 6.8 12.8 13.6 18.8 20.6l-37 30.4 10.2 12.4 37-30.4c5.8 7.4 11.4 14.8 16.8 22.4l-79.8 53.4 8.8 13.4 79.8-53.4c36.2 56.2 60 120.8 68 190.4l-47.8 4.8 1.6 16 47.8-4.8c0.8 9.2 1.2 18.6 1.4 28h-96v16h96c-0.2 9.4-0.6 18.6-1.4 28l-47.8-4.6-1.6 16 47.8 4.6c-8 69.6-32 134.2-68.2 190.4l-79.8-53.4-8.8 13.4 79.8 53.4c-5.2 7.2-10.8 14.6-16.6 22zM958.4 551c-0.4 3.6-0.6 7.2-1 10.8l1-10.8zM888.4 755.2c-2.4 3.6-4.8 7.2-7.2 10.8l7.2-10.8z","M432.535 71.075l18.73 94.157-15.693 3.122-18.73-94.157 15.693-3.122z","M591.656 952.95l-18.73-94.157 15.693-3.122 18.73 94.157-15.693 3.122z","M389.628 80.89l13.939 45.931-15.31 4.646-13.939-45.931 15.31-4.646z","M634.434 942.887l-13.939-45.931 15.31-4.646 13.939 45.931-15.31 4.646z","M348.014 95.099l36.739 88.694-14.782 6.123-36.739-88.694 14.782-6.123z","M676.123 928.965l-36.739-88.694 14.782-6.123 36.739 88.694-14.782 6.123z","M293.62 120.659l14.11-7.544 22.632 42.331-14.11 7.544-22.632-42.331z","M730.101 903.289l-14.11 7.544-22.632-42.331 14.11-7.544 22.632 42.331z","M120.601 293.826l42.336 22.622-7.541 14.112-42.336-22.622 7.541-14.112z","M903.244 730.195l-42.336-22.622 7.541-14.112 42.336 22.622-7.541 14.112z","M183.811 384.623l-88.694-36.739 6.123-14.782 88.694 36.739-6.123 14.782z","M840.32 639.301l88.694 36.739-6.123 14.782-88.694-36.739 6.123-14.782z","M85.543 374.387l45.936 13.93-4.643 15.312-45.936-13.93 4.643-15.312z","M938.308 649.667l-45.936-13.93 4.643-15.312 45.936 13.93-4.643 15.312z","M74.069 416.782l94.157 18.73-3.122 15.693-94.157-18.73 3.122-15.693z","M949.741 607.243l-94.157-18.73 3.122-15.693 94.157 18.73-3.122 15.693z","M70.965 591.548l94.157-18.73 3.122 15.693-94.157 18.73-3.122-15.693z","M952.842 432.427l-94.157 18.73-3.122-15.693 94.157-18.73 3.122 15.693z","M80.974 634.514l45.931-13.939 4.646 15.31-45.931 13.939-4.646-15.31z","M942.969 389.707l-45.931 13.939-4.646-15.31 45.931-13.939 4.646 15.31z","M101.142 690.912l-6.123-14.782 88.694-36.739 6.123 14.782-88.694 36.739z","M922.794 333.231l6.122 14.782-88.694 36.73-6.122-14.782 88.694-36.73z","M120.824 730.267l-7.544-14.11 42.331-22.632 7.544 14.11-42.331 22.632z","M903.455 293.785l7.544 14.11-42.331 22.632-7.544-14.11 42.331-22.632z","M307.878 910.846l-14.11-7.542 22.627-42.331 14.11 7.542-22.627 42.331z","M716.073 113.074l14.112 7.541-22.622 42.336-14.112-7.541 22.622-42.336z","M333.267 922.799l36.739-88.694 14.782 6.123-36.739 88.694-14.782-6.123z","M690.884 101.11l-36.739 88.694-14.782-6.123 36.739-88.694 14.782 6.123z","M389.634 943.028l-15.31-4.645 13.934-45.931 15.31 4.645-13.934 45.931z","M634.349 80.882l15.312 4.642-13.925 45.936-15.312-4.642 13.925-45.936z","M432.472 952.839l-15.693-3.122 18.73-94.157 15.693 3.122-18.73 94.157z","M591.536 70.969l15.693 3.122-18.73 94.157-15.693-3.122 18.73-94.157z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["safari","browser","internet","brand"],"defaultCode":60125,"grid":16},"attrs":[],"properties":{"ligatures":"safari, browser5","name":"safari","id":477,"order":864,"prevSize":32,"code":60510},"setIdx":1,"setId":0,"iconIdx":477},{"icon":{"paths":["M1024 512v0 0c0 151.6-66 288-170.8 381.6-131.4 64-253.8 19.2-294.2-8.8 129-28.2 226.4-184.2 226.4-372.8s-97.4-344.6-226.4-373c40.6-28 163-72.8 294.2-8.8 104.8 93.8 170.8 230.2 170.8 381.8v0 0z","M343.4 223.4c-56.6 66.8-93.2 165.6-95.6 276.6 0 0.2 0 23.8 0 24.2 2.4 110.8 39.2 209.6 95.8 276.4 73.4 95.4 182.6 155.8 304.6 155.8 75 0 145.2-22.8 205.2-62.6-90.8 81-210.4 130.2-341.4 130.2-8.2 0-16.4-0.2-24.4-0.6-271.4-12.8-487.6-236.8-487.6-511.4 0-282.8 229.2-512 512-512 0.6 0 1.2 0 2 0 130.4 0.4 249.2 49.6 339.4 130.4-60-39.8-130.2-62.8-205.2-62.8-122 0-231.2 60.4-304.8 155.8z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["opera","browser","internet","brand"],"defaultCode":60126,"grid":16},"attrs":[],"properties":{"ligatures":"opera, browser6","name":"opera","id":478,"order":865,"prevSize":32,"code":60511},"setIdx":1,"setId":0,"iconIdx":478},{"icon":{"paths":["M842.012 589.48c-13.648-13.446-43.914-20.566-89.972-21.172-31.178-0.344-68.702 2.402-108.17 7.928-17.674-10.198-35.892-21.294-50.188-34.658-38.462-35.916-70.568-85.772-90.576-140.594 1.304-5.12 2.414-9.62 3.448-14.212 0 0 21.666-123.060 15.932-164.666-0.792-5.706-1.276-7.362-2.808-11.796l-1.882-4.834c-5.894-13.592-17.448-27.994-35.564-27.208l-10.916-0.344c-20.202 0-36.664 10.332-40.986 25.774-13.138 48.434 0.418 120.892 24.98 214.738l-6.288 15.286c-17.588 42.876-39.63 86.060-59.078 124.158l-2.528 4.954c-20.46 40.040-39.026 74.028-55.856 102.822l-17.376 9.188c-1.264 0.668-31.044 16.418-38.028 20.644-59.256 35.38-98.524 75.542-105.038 107.416-2.072 10.17-0.53 23.186 10.014 29.212l16.806 8.458c7.292 3.652 14.978 5.502 22.854 5.502 42.206 0 91.202-52.572 158.698-170.366 77.93-25.37 166.652-46.458 244.412-58.090 59.258 33.368 132.142 56.544 178.142 56.544 8.168 0 15.212-0.78 20.932-2.294 8.822-2.336 16.258-7.368 20.792-14.194 8.926-13.432 10.734-31.932 8.312-50.876-0.72-5.622-5.21-12.574-10.068-17.32zM211.646 814.048c7.698-21.042 38.16-62.644 83.206-99.556 2.832-2.296 9.808-8.832 16.194-14.902-47.104 75.124-78.648 105.066-99.4 114.458zM478.434 199.686c13.566 0 21.284 34.194 21.924 66.254s-6.858 54.56-16.158 71.208c-7.702-24.648-11.426-63.5-11.426-88.904 0 0-0.566-48.558 5.66-48.558v0zM398.852 637.494c9.45-16.916 19.282-34.756 29.33-53.678 24.492-46.316 39.958-82.556 51.478-112.346 22.91 41.684 51.444 77.12 84.984 105.512 4.186 3.542 8.62 7.102 13.276 10.65-68.21 13.496-127.164 29.91-179.068 49.862v0zM828.902 633.652c-4.152 2.598-16.052 4.1-23.708 4.1-24.708 0-55.272-11.294-98.126-29.666 16.468-1.218 31.562-1.838 45.102-1.838 24.782 0 32.12-0.108 56.35 6.072 24.228 6.18 24.538 18.734 20.382 21.332v0z","M917.806 229.076c-22.21-30.292-53.174-65.7-87.178-99.704s-69.412-64.964-99.704-87.178c-51.574-37.82-76.592-42.194-90.924-42.194h-496c-44.112 0-80 35.888-80 80v864c0 44.112 35.886 80 80 80h736c44.112 0 80-35.888 80-80v-624c0-14.332-4.372-39.35-42.194-90.924v0zM785.374 174.626c30.7 30.7 54.8 58.398 72.58 81.374h-153.954v-153.946c22.982 17.78 50.678 41.878 81.374 72.572v0zM896 944c0 8.672-7.328 16-16 16h-736c-8.672 0-16-7.328-16-16v-864c0-8.672 7.328-16 16-16 0 0 495.956-0.002 496 0v224c0 17.672 14.324 32 32 32h224v624z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["file-pdf","file","file-format"],"defaultCode":60127,"grid":16},"attrs":[],"properties":{"ligatures":"file-pdf, file10","name":"file-pdf","id":479,"order":866,"prevSize":32,"code":60512},"setIdx":1,"setId":0,"iconIdx":479},{"icon":{"paths":["M690.22 471.682c-60.668-28.652-137.97-34.42-194.834 6.048 69.14-6.604 144.958 4.838 195.106 57.124 48-55.080 124.116-65.406 192.958-59.732-57.488-38.144-133.22-33.024-193.23-3.44v0zM665.646 605.75c-68.376-1.578-134.434 23.172-191.1 60.104-107.176-45.588-242.736-37.124-334.002 38.982 26.33-0.934 52.006-7.446 78.056-10.792 95.182-9.488 196.588 14.142 268.512 79.824 29.772-43.542 71.644-78.242 119.652-99.922 63.074-30.52 134.16-33.684 202.82-34.52-41.688-28.648-94.614-33.954-143.938-33.676z","M917.806 229.076c-22.21-30.292-53.174-65.7-87.178-99.704s-69.412-64.964-99.704-87.178c-51.574-37.82-76.592-42.194-90.924-42.194h-496c-44.112 0-80 35.888-80 80v864c0 44.112 35.886 80 80 80h736c44.112 0 80-35.888 80-80v-624c0-14.332-4.372-39.35-42.194-90.924v0zM785.374 174.626c30.7 30.7 54.8 58.398 72.58 81.374h-153.954v-153.946c22.982 17.78 50.678 41.878 81.374 72.572v0zM896 944c0 8.672-7.328 16-16 16h-736c-8.672 0-16-7.328-16-16v-864c0-8.672 7.328-16 16-16 0 0 495.956-0.002 496 0v224c0 17.672 14.324 32 32 32h224v624z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["file-openoffice","file","file-format"],"defaultCode":60128,"grid":16},"attrs":[],"properties":{"ligatures":"file-openoffice, file11","name":"file-openoffice","id":480,"order":867,"prevSize":32,"code":60513},"setIdx":1,"setId":0,"iconIdx":480},{"icon":{"paths":["M639.778 475.892h44.21l-51.012 226.178-66.324-318.010h-106.55l-77.114 318.010-57.816-318.010h-111.394l113.092 511.88h108.838l76.294-302.708 68.256 302.708h100.336l129.628-511.88h-170.446v91.832z","M917.806 229.076c-22.21-30.292-53.174-65.7-87.178-99.704s-69.412-64.964-99.704-87.178c-51.574-37.82-76.592-42.194-90.924-42.194h-496c-44.112 0-80 35.888-80 80v864c0 44.112 35.886 80 80 80h736c44.112 0 80-35.888 80-80v-624c0-14.332-4.372-39.35-42.194-90.924v0zM785.374 174.626c30.7 30.7 54.8 58.398 72.58 81.374h-153.954v-153.946c22.982 17.78 50.678 41.878 81.374 72.572v0zM896 944c0 8.672-7.328 16-16 16h-736c-8.672 0-16-7.328-16-16v-864c0-8.672 7.328-16 16-16 0 0 495.956-0.002 496 0v224c0 17.672 14.324 32 32 32h224v624z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["file-word","file","file-format","word","docx"],"defaultCode":60129,"grid":16},"attrs":[],"properties":{"ligatures":"file-word, file12","name":"file-word","id":481,"order":868,"prevSize":32,"code":60514},"setIdx":1,"setId":0,"iconIdx":481},{"icon":{"paths":["M743.028 384h-135.292l-95.732 141.032-95.742-141.032h-135.29l162.162 242.464-182.972 269.536h251.838v-91.576h-50.156l50.156-74.994 111.396 166.57h140.444l-182.976-269.536 162.164-242.464z","M917.806 229.076c-22.21-30.292-53.174-65.7-87.178-99.704s-69.412-64.964-99.704-87.178c-51.574-37.82-76.592-42.194-90.924-42.194h-496c-44.112 0-80 35.888-80 80v864c0 44.112 35.886 80 80 80h736c44.112 0 80-35.888 80-80v-624c0-14.332-4.372-39.35-42.194-90.924v0zM785.374 174.626c30.7 30.7 54.8 58.398 72.58 81.374h-153.954v-153.946c22.982 17.78 50.678 41.878 81.374 72.572v0zM896 944c0 8.672-7.328 16-16 16h-736c-8.672 0-16-7.328-16-16v-864c0-8.672 7.328-16 16-16 0 0 495.956-0.002 496 0v224c0 17.672 14.324 32 32 32h224v624z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["file-excel","file","file-format","xlc"],"defaultCode":60130,"grid":16},"attrs":[],"properties":{"ligatures":"file-excel, file13","name":"file-excel","id":482,"order":869,"prevSize":32,"code":60515},"setIdx":1,"setId":0,"iconIdx":482},{"icon":{"paths":["M534.626 22.628c-12.444-12.444-37.026-22.628-54.626-22.628h-384c-17.6 0-32 14.4-32 32v960c0 17.6 14.4 32 32 32h768c17.6 0 32-14.4 32-32v-576c0-17.6-10.182-42.182-22.626-54.626l-338.748-338.746zM832 960h-704v-896h351.158c2.916 0.48 8.408 2.754 10.81 4.478l337.556 337.554c1.722 2.402 3.996 7.894 4.476 10.81v543.158zM864 0h-192c-17.6 0-21.818 10.182-9.374 22.626l210.746 210.746c12.446 12.446 22.628 8.228 22.628-9.372v-192c0-17.6-14.4-32-32-32z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["libreoffice","file","file-format"],"defaultCode":60131,"grid":16},"attrs":[],"properties":{"ligatures":"libreoffice, file14","name":"libreoffice","id":483,"order":870,"prevSize":32,"code":60516},"setIdx":1,"setId":0,"iconIdx":483},{"icon":{"paths":["M60.538 0l82.144 921.63 368.756 102.37 369.724-102.524 82.3-921.476h-902.924zM784.63 301.428h-432.54l10.302 115.75h411.968l-31.042 347.010-231.844 64.254-231.572-64.254-15.83-177.512h113.494l8.048 90.232 125.862 33.916 0.278-0.078 125.934-33.992 13.070-146.55h-391.74l-30.494-341.8h566.214l-10.108 113.024z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["html-five","w3c"],"defaultCode":60132,"grid":16},"attrs":[],"properties":{"ligatures":"html-five, w3c","name":"html-five","id":484,"order":871,"prevSize":32,"code":60517},"setIdx":1,"setId":0,"iconIdx":484},{"icon":{"paths":["M60.538 0l82.144 921.63 368.756 102.37 369.724-102.524 82.3-921.476h-902.924zM810.762 862.824l-297.226 82.376v0.466l-0.776-0.234-0.782 0.234v-0.466l-297.222-82.376-70.242-787.486h736.496l-70.248 787.486zM650.754 530.204l-13.070 146.552-126.21 34.070-125.862-33.916-8.050-90.234h-113.49l15.83 177.512 232.076 64.176 231.342-64.176 31.040-347.012h-411.966l-10.302-115.748h432.534l10.112-113.026h-566.218l30.498 341.802z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["html-five","w3c"],"defaultCode":60133,"grid":16},"attrs":[],"properties":{"ligatures":"html-five2, w3c2","name":"html-five2","id":485,"order":872,"prevSize":32,"code":60518},"setIdx":1,"setId":0,"iconIdx":485},{"icon":{"paths":["M152.388 48.522l-34.36 171.926h699.748l-21.884 111.054h-700.188l-33.892 171.898h699.684l-39.018 196.064-282.012 93.422-244.4-93.422 16.728-85.042h-171.898l-40.896 206.352 404.226 154.704 466.006-154.704 153.768-772.252z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["css3","w3c"],"defaultCode":60134,"grid":16},"attrs":[],"properties":{"ligatures":"css3, w3c3","name":"css3","id":486,"order":873,"prevSize":32,"code":60519},"setIdx":1,"setId":0,"iconIdx":486},{"icon":{"paths":["M1004.692 466.394l-447.096-447.080c-25.738-25.754-67.496-25.754-93.268 0l-103.882 103.876 78.17 78.17c12.532-5.996 26.564-9.36 41.384-9.36 53.020 0 96 42.98 96 96 0 14.82-3.364 28.854-9.362 41.386l127.976 127.974c12.532-5.996 26.566-9.36 41.386-9.36 53.020 0 96 42.98 96 96s-42.98 96-96 96-96-42.98-96-96c0-14.82 3.364-28.854 9.362-41.386l-127.976-127.974c-3.042 1.456-6.176 2.742-9.384 3.876v266.968c37.282 13.182 64 48.718 64 90.516 0 53.020-42.98 96-96 96s-96-42.98-96-96c0-41.796 26.718-77.334 64-90.516v-266.968c-37.282-13.18-64-48.72-64-90.516 0-14.82 3.364-28.852 9.36-41.384l-78.17-78.17-295.892 295.876c-25.75 25.776-25.75 67.534 0 93.288l447.12 447.080c25.738 25.75 67.484 25.75 93.268 0l445.006-445.006c25.758-25.762 25.758-67.54-0.002-93.29z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["git","brand"],"defaultCode":60135,"grid":16},"attrs":[],"properties":{"ligatures":"git, brand80","name":"git","id":487,"order":874,"prevSize":32,"code":60520},"setIdx":1,"setId":0,"iconIdx":487},{"icon":{"paths":["M945.75 368.042l-448-298.666c-10.748-7.166-24.752-7.166-35.5 0l-448 298.666c-8.902 5.934-14.25 15.926-14.25 26.624v298.666c0 10.7 5.348 20.692 14.25 26.624l448 298.666c5.374 3.584 11.562 5.376 17.75 5.376s12.376-1.792 17.75-5.376l448-298.666c8.902-5.934 14.25-15.926 14.25-26.624v-298.666c0-10.698-5.348-20.69-14.25-26.624zM480 654.876l-166.312-110.876 166.312-110.874 166.312 110.874-166.312 110.876zM512 377.542v-221.75l358.31 238.876-166.31 110.874-192-128zM448 377.542l-192 128-166.312-110.874 358.312-238.876v221.75zM198.312 544l-134.312 89.542v-179.082l134.312 89.54zM256 582.458l192 128v221.748l-358.312-238.872 166.312-110.876zM512 710.458l192-128 166.312 110.876-358.312 238.874v-221.75zM761.688 544l134.312-89.54v179.084l-134.312-89.544z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["codepen","brand"],"defaultCode":60136,"grid":16},"attrs":[],"properties":{"ligatures":"codepen, brand81","name":"codepen","id":488,"order":875,"prevSize":32,"code":60521},"setIdx":1,"setId":0,"iconIdx":488},{"icon":{"paths":["M928 416c-28.428 0-53.958 12.366-71.536 32h-189.956l134.318-134.318c26.312 1.456 53.11-7.854 73.21-27.956 37.49-37.49 37.49-98.274 0-135.764s-98.274-37.49-135.766 0c-20.102 20.102-29.41 46.898-27.956 73.21l-134.314 134.318v-189.954c19.634-17.578 32-43.108 32-71.536 0-53.020-42.98-96-96-96s-96 42.98-96 96c0 28.428 12.366 53.958 32 71.536v189.954l-134.318-134.318c1.454-26.312-7.856-53.11-27.958-73.21-37.49-37.49-98.274-37.49-135.764 0-37.49 37.492-37.49 98.274 0 135.764 20.102 20.102 46.898 29.412 73.212 27.956l134.32 134.318h-189.956c-17.578-19.634-43.108-32-71.536-32-53.020 0-96 42.98-96 96s42.98 96 96 96c28.428 0 53.958-12.366 71.536-32h189.956l-134.318 134.318c-26.314-1.456-53.11 7.854-73.212 27.956-37.49 37.492-37.49 98.276 0 135.766 37.492 37.49 98.274 37.49 135.764 0 20.102-20.102 29.412-46.898 27.958-73.21l134.316-134.32v189.956c-19.634 17.576-32 43.108-32 71.536 0 53.020 42.98 96 96 96s96-42.98 96-96c0-28.428-12.366-53.958-32-71.536v-189.956l134.318 134.318c-1.456 26.312 7.854 53.11 27.956 73.21 37.492 37.49 98.276 37.49 135.766 0s37.49-98.274 0-135.766c-20.102-20.102-46.898-29.41-73.21-27.956l-134.32-134.316h189.956c17.576 19.634 43.108 32 71.536 32 53.020 0 96-42.98 96-96s-42.982-96-96.002-96z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["svg"],"defaultCode":60137,"grid":16},"attrs":[],"properties":{"ligatures":"svg","name":"svg","id":489,"order":876,"prevSize":32,"code":60522},"setIdx":1,"setId":0,"iconIdx":489},{"icon":{"paths":["M259.544 511.998c0-65.416 53.030-118.446 118.446-118.446s118.446 53.030 118.446 118.446c0 65.416-53.030 118.446-118.446 118.446s-118.446-53.030-118.446-118.446zM512.004 0c-282.774 0-512.004 229.232-512.004 512s229.226 512 512.004 512c282.764 0 511.996-229.23 511.996-512 0-282.768-229.23-512-511.996-512zM379.396 959.282c-153.956-89.574-257.468-256.324-257.468-447.282s103.512-357.708 257.462-447.282c154.010 89.562 257.59 256.288 257.59 447.282 0 190.988-103.58 357.718-257.584 447.282z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["IcoMoon","icomoon","brand"],"defaultCode":60138,"grid":16},"attrs":[],"properties":{"ligatures":"IcoMoon, icomoon","name":"IcoMoon","id":490,"order":877,"prevSize":32,"code":60523},"setIdx":1,"setId":0,"iconIdx":490}],"height":1024,"metadata":{"name":"icomoon_freeEntypo"},"preferences":{"showGlyphs":true,"showQuickUse":true,"showQuickUse2":true,"showSVGs":true,"fontPref":{"prefix":"icon-","metadata":{"fontFamily":"icomoon_freeEntypo","majorVersion":1,"minorVersion":0},"metrics":{"emSize":1024,"baseline":6.25,"whitespace":50},"embed":false},"imagePref":{"prefix":"icon-","png":true,"useClassSelector":true,"color":0,"bgColor":16777215,"classSelector":".icon"},"historySize":50,"showCodes":false,"gridSize":16,"showLiga":false}}
\ No newline at end of file
diff --git a/UyTube_mobile/web/iconos/style.css b/UyTube_mobile/web/iconos/style.css
new file mode 100644
index 0000000000000000000000000000000000000000..59810e148c9154955ec36ff20dd680eaa8ad287d
--- /dev/null
+++ b/UyTube_mobile/web/iconos/style.css
@@ -0,0 +1,2655 @@
+@font-face {
+  font-family: 'icomoon_freeEntypo';
+  src:  url('fonts/icomoon_freeEntypo.eot?5emqyv');
+  src:  url('fonts/icomoon_freeEntypo.eot?5emqyv#iefix') format('embedded-opentype'),
+    url('fonts/icomoon_freeEntypo.ttf?5emqyv') format('truetype'),
+    url('fonts/icomoon_freeEntypo.woff?5emqyv') format('woff'),
+    url('fonts/icomoon_freeEntypo.svg?5emqyv#icomoon_freeEntypo') format('svg');
+  font-weight: normal;
+  font-style: normal;
+  font-display: block;
+}
+
+[class^="icon-"], [class*=" icon-"] {
+  /* use !important to prevent issues with browser extensions that change fonts */
+  font-family: 'icomoon_freeEntypo' !important;
+  speak: none;
+  font-style: normal;
+  font-weight: normal;
+  font-variant: normal;
+  text-transform: none;
+  line-height: 1;
+
+  /* Better Font Rendering =========== */
+  -webkit-font-smoothing: antialiased;
+  -moz-osx-font-smoothing: grayscale;
+}
+
+.icon-add-to-list:before {
+  content: "\e900";
+}
+.icon-classic-computer:before {
+  content: "\e901";
+}
+.icon-controller-fast-backward:before {
+  content: "\e902";
+}
+.icon-creative-commons-attribution:before {
+  content: "\e903";
+}
+.icon-creative-commons-noderivs:before {
+  content: "\e904";
+}
+.icon-creative-commons-noncommercial-eu:before {
+  content: "\e905";
+}
+.icon-creative-commons-noncommercial-us:before {
+  content: "\e906";
+}
+.icon-creative-commons-public-domain:before {
+  content: "\e907";
+}
+.icon-creative-commons-remix:before {
+  content: "\e908";
+}
+.icon-creative-commons-share:before {
+  content: "\e909";
+}
+.icon-creative-commons-sharealike:before {
+  content: "\e90a";
+}
+.icon-creative-commons:before {
+  content: "\e90b";
+}
+.icon-document-landscape:before {
+  content: "\e90c";
+}
+.icon-remove-user:before {
+  content: "\e90d";
+}
+.icon-warning1:before {
+  content: "\e90e";
+}
+.icon-arrow-bold-down:before {
+  content: "\e90f";
+}
+.icon-arrow-bold-left:before {
+  content: "\e910";
+}
+.icon-arrow-bold-right:before {
+  content: "\e911";
+}
+.icon-arrow-bold-up:before {
+  content: "\e912";
+}
+.icon-arrow-down1:before {
+  content: "\e913";
+}
+.icon-arrow-left1:before {
+  content: "\e914";
+}
+.icon-arrow-long-down:before {
+  content: "\e915";
+}
+.icon-arrow-long-left:before {
+  content: "\e916";
+}
+.icon-arrow-long-right:before {
+  content: "\e917";
+}
+.icon-arrow-long-up:before {
+  content: "\e918";
+}
+.icon-arrow-right1:before {
+  content: "\e919";
+}
+.icon-arrow-up1:before {
+  content: "\e91a";
+}
+.icon-arrow-with-circle-down:before {
+  content: "\e91b";
+}
+.icon-arrow-with-circle-left:before {
+  content: "\e91c";
+}
+.icon-arrow-with-circle-right:before {
+  content: "\e91d";
+}
+.icon-arrow-with-circle-up:before {
+  content: "\e91e";
+}
+.icon-bookmark1:before {
+  content: "\e91f";
+}
+.icon-bookmarks1:before {
+  content: "\e920";
+}
+.icon-chevron-down:before {
+  content: "\e921";
+}
+.icon-chevron-left:before {
+  content: "\e922";
+}
+.icon-chevron-right:before {
+  content: "\e923";
+}
+.icon-chevron-small-down:before {
+  content: "\e924";
+}
+.icon-chevron-small-left:before {
+  content: "\e925";
+}
+.icon-chevron-small-right:before {
+  content: "\e926";
+}
+.icon-chevron-small-up:before {
+  content: "\e927";
+}
+.icon-chevron-thin-down:before {
+  content: "\e928";
+}
+.icon-chevron-thin-left:before {
+  content: "\e929";
+}
+.icon-chevron-thin-right:before {
+  content: "\e92a";
+}
+.icon-chevron-thin-up:before {
+  content: "\e92b";
+}
+.icon-chevron-up:before {
+  content: "\e92c";
+}
+.icon-chevron-with-circle-down:before {
+  content: "\e92d";
+}
+.icon-chevron-with-circle-left:before {
+  content: "\e92e";
+}
+.icon-chevron-with-circle-right:before {
+  content: "\e92f";
+}
+.icon-chevron-with-circle-up:before {
+  content: "\e930";
+}
+.icon-cloud1:before {
+  content: "\e931";
+}
+.icon-controller-fast-forward:before {
+  content: "\e932";
+}
+.icon-controller-jump-to-start:before {
+  content: "\e933";
+}
+.icon-controller-next:before {
+  content: "\e934";
+}
+.icon-controller-paus:before {
+  content: "\e935";
+}
+.icon-controller-play:before {
+  content: "\e936";
+}
+.icon-controller-record:before {
+  content: "\e937";
+}
+.icon-controller-stop:before {
+  content: "\e938";
+}
+.icon-controller-volume:before {
+  content: "\e939";
+}
+.icon-dot-single:before {
+  content: "\e93a";
+}
+.icon-dots-three-horizontal:before {
+  content: "\e93b";
+}
+.icon-dots-three-vertical:before {
+  content: "\e93c";
+}
+.icon-dots-two-horizontal:before {
+  content: "\e93d";
+}
+.icon-dots-two-vertical:before {
+  content: "\e93e";
+}
+.icon-download1:before {
+  content: "\e93f";
+}
+.icon-emoji-flirt:before {
+  content: "\e940";
+}
+.icon-flow-branch:before {
+  content: "\e941";
+}
+.icon-flow-cascade:before {
+  content: "\e942";
+}
+.icon-flow-line:before {
+  content: "\e943";
+}
+.icon-flow-parallel:before {
+  content: "\e944";
+}
+.icon-flow-tree:before {
+  content: "\e945";
+}
+.icon-install:before {
+  content: "\e946";
+}
+.icon-layers:before {
+  content: "\e947";
+}
+.icon-open-book:before {
+  content: "\e948";
+}
+.icon-resize-100:before {
+  content: "\e949";
+}
+.icon-resize-full-screen:before {
+  content: "\e94a";
+}
+.icon-save:before {
+  content: "\e94b";
+}
+.icon-select-arrows:before {
+  content: "\e94c";
+}
+.icon-sound-mute:before {
+  content: "\e94d";
+}
+.icon-sound:before {
+  content: "\e94e";
+}
+.icon-trash:before {
+  content: "\e94f";
+}
+.icon-triangle-down:before {
+  content: "\e950";
+}
+.icon-triangle-left:before {
+  content: "\e951";
+}
+.icon-triangle-right:before {
+  content: "\e952";
+}
+.icon-triangle-up:before {
+  content: "\e953";
+}
+.icon-uninstall:before {
+  content: "\e954";
+}
+.icon-upload-to-cloud:before {
+  content: "\e955";
+}
+.icon-upload1:before {
+  content: "\e956";
+}
+.icon-add-user:before {
+  content: "\e957";
+}
+.icon-address:before {
+  content: "\e958";
+}
+.icon-adjust:before {
+  content: "\e959";
+}
+.icon-air:before {
+  content: "\e95a";
+}
+.icon-aircraft-landing:before {
+  content: "\e95b";
+}
+.icon-aircraft-take-off:before {
+  content: "\e95c";
+}
+.icon-aircraft:before {
+  content: "\e95d";
+}
+.icon-align-bottom:before {
+  content: "\e95e";
+}
+.icon-align-horizontal-middle:before {
+  content: "\e95f";
+}
+.icon-align-left:before {
+  content: "\e960";
+}
+.icon-align-right:before {
+  content: "\e961";
+}
+.icon-align-top:before {
+  content: "\e962";
+}
+.icon-align-vertical-middle:before {
+  content: "\e963";
+}
+.icon-archive:before {
+  content: "\e964";
+}
+.icon-area-graph:before {
+  content: "\e965";
+}
+.icon-attachment1:before {
+  content: "\e966";
+}
+.icon-awareness-ribbon:before {
+  content: "\e967";
+}
+.icon-back-in-time:before {
+  content: "\e968";
+}
+.icon-back:before {
+  content: "\e969";
+}
+.icon-bar-graph:before {
+  content: "\e96a";
+}
+.icon-battery:before {
+  content: "\e96b";
+}
+.icon-beamed-note:before {
+  content: "\e96c";
+}
+.icon-bell1:before {
+  content: "\e96d";
+}
+.icon-blackboard:before {
+  content: "\e96e";
+}
+.icon-block:before {
+  content: "\e96f";
+}
+.icon-book1:before {
+  content: "\e970";
+}
+.icon-bowl:before {
+  content: "\e971";
+}
+.icon-box:before {
+  content: "\e972";
+}
+.icon-briefcase1:before {
+  content: "\e973";
+}
+.icon-browser:before {
+  content: "\e974";
+}
+.icon-brush:before {
+  content: "\e975";
+}
+.icon-bucket:before {
+  content: "\e976";
+}
+.icon-cake:before {
+  content: "\e977";
+}
+.icon-calculator1:before {
+  content: "\e978";
+}
+.icon-calendar1:before {
+  content: "\e979";
+}
+.icon-camera1:before {
+  content: "\e97a";
+}
+.icon-ccw:before {
+  content: "\e97b";
+}
+.icon-chat:before {
+  content: "\e97c";
+}
+.icon-check:before {
+  content: "\e97d";
+}
+.icon-circle-with-cross:before {
+  content: "\e97e";
+}
+.icon-circle-with-minus:before {
+  content: "\e97f";
+}
+.icon-circle-with-plus:before {
+  content: "\e980";
+}
+.icon-circle:before {
+  content: "\e981";
+}
+.icon-circular-graph:before {
+  content: "\e982";
+}
+.icon-clapperboard:before {
+  content: "\e983";
+}
+.icon-clipboard1:before {
+  content: "\e984";
+}
+.icon-clock1:before {
+  content: "\e985";
+}
+.icon-code:before {
+  content: "\e986";
+}
+.icon-cog1:before {
+  content: "\e987";
+}
+.icon-colours:before {
+  content: "\e988";
+}
+.icon-compass1:before {
+  content: "\e989";
+}
+.icon-copy1:before {
+  content: "\e98a";
+}
+.icon-credit-card1:before {
+  content: "\e98b";
+}
+.icon-credit:before {
+  content: "\e98c";
+}
+.icon-cross1:before {
+  content: "\e98d";
+}
+.icon-cup:before {
+  content: "\e98e";
+}
+.icon-cw:before {
+  content: "\e98f";
+}
+.icon-cycle:before {
+  content: "\e990";
+}
+.icon-database1:before {
+  content: "\e991";
+}
+.icon-dial-pad:before {
+  content: "\e992";
+}
+.icon-direction:before {
+  content: "\e993";
+}
+.icon-document:before {
+  content: "\e994";
+}
+.icon-documents:before {
+  content: "\e995";
+}
+.icon-drink:before {
+  content: "\e996";
+}
+.icon-drive1:before {
+  content: "\e997";
+}
+.icon-drop:before {
+  content: "\e998";
+}
+.icon-edit:before {
+  content: "\e999";
+}
+.icon-email:before {
+  content: "\e99a";
+}
+.icon-emoji-happy:before {
+  content: "\e99b";
+}
+.icon-emoji-neutral:before {
+  content: "\e99c";
+}
+.icon-emoji-sad:before {
+  content: "\e99d";
+}
+.icon-erase:before {
+  content: "\e99e";
+}
+.icon-eraser:before {
+  content: "\e99f";
+}
+.icon-export:before {
+  content: "\e9a0";
+}
+.icon-eye1:before {
+  content: "\e9a1";
+}
+.icon-feather:before {
+  content: "\e9a2";
+}
+.icon-flag1:before {
+  content: "\e9a3";
+}
+.icon-flash:before {
+  content: "\e9a4";
+}
+.icon-flashlight:before {
+  content: "\e9a5";
+}
+.icon-flat-brush:before {
+  content: "\e9a6";
+}
+.icon-folder-images:before {
+  content: "\e9a7";
+}
+.icon-folder-music:before {
+  content: "\e9a8";
+}
+.icon-folder-video:before {
+  content: "\e9a9";
+}
+.icon-folder1:before {
+  content: "\e9aa";
+}
+.icon-forward1:before {
+  content: "\e9ab";
+}
+.icon-funnel:before {
+  content: "\e9ac";
+}
+.icon-game-controller:before {
+  content: "\e9ad";
+}
+.icon-gauge:before {
+  content: "\e9ae";
+}
+.icon-globe:before {
+  content: "\e9af";
+}
+.icon-graduation-cap:before {
+  content: "\e9b0";
+}
+.icon-grid:before {
+  content: "\e9b1";
+}
+.icon-hair-cross:before {
+  content: "\e9b2";
+}
+.icon-hand:before {
+  content: "\e9b3";
+}
+.icon-heart-outlined:before {
+  content: "\e9b4";
+}
+.icon-heart1:before {
+  content: "\e9b5";
+}
+.icon-help-with-circle:before {
+  content: "\e9b6";
+}
+.icon-help:before {
+  content: "\e9b7";
+}
+.icon-home1:before {
+  content: "\e9b8";
+}
+.icon-hour-glass1:before {
+  content: "\e9b9";
+}
+.icon-image-inverted:before {
+  content: "\e9ba";
+}
+.icon-image1:before {
+  content: "\e9bb";
+}
+.icon-images1:before {
+  content: "\e9bc";
+}
+.icon-inbox:before {
+  content: "\e9bd";
+}
+.icon-infinity:before {
+  content: "\e9be";
+}
+.icon-info-with-circle:before {
+  content: "\e9bf";
+}
+.icon-info1:before {
+  content: "\e9c0";
+}
+.icon-key1:before {
+  content: "\e9c1";
+}
+.icon-keyboard1:before {
+  content: "\e9c2";
+}
+.icon-lab-flask:before {
+  content: "\e9c3";
+}
+.icon-landline:before {
+  content: "\e9c4";
+}
+.icon-language:before {
+  content: "\e9c5";
+}
+.icon-laptop1:before {
+  content: "\e9c6";
+}
+.icon-leaf1:before {
+  content: "\e9c7";
+}
+.icon-level-down:before {
+  content: "\e9c8";
+}
+.icon-level-up:before {
+  content: "\e9c9";
+}
+.icon-lifebuoy1:before {
+  content: "\e9ca";
+}
+.icon-light-bulb:before {
+  content: "\e9cb";
+}
+.icon-light-down:before {
+  content: "\e9cc";
+}
+.icon-light-up:before {
+  content: "\e9cd";
+}
+.icon-line-graph:before {
+  content: "\e9ce";
+}
+.icon-link1:before {
+  content: "\e9cf";
+}
+.icon-list1:before {
+  content: "\e9d0";
+}
+.icon-location-pin:before {
+  content: "\e9d1";
+}
+.icon-location1:before {
+  content: "\e9d2";
+}
+.icon-lock-open:before {
+  content: "\e9d3";
+}
+.icon-lock1:before {
+  content: "\e9d4";
+}
+.icon-log-out:before {
+  content: "\e9d5";
+}
+.icon-login:before {
+  content: "\e9d6";
+}
+.icon-loop1:before {
+  content: "\e9d7";
+}
+.icon-magnet1:before {
+  content: "\e9d8";
+}
+.icon-magnifying-glass:before {
+  content: "\e9d9";
+}
+.icon-mail1:before {
+  content: "\e9da";
+}
+.icon-man1:before {
+  content: "\e9db";
+}
+.icon-map1:before {
+  content: "\e9dc";
+}
+.icon-mask:before {
+  content: "\e9dd";
+}
+.icon-medal:before {
+  content: "\e9de";
+}
+.icon-megaphone:before {
+  content: "\e9df";
+}
+.icon-menu1:before {
+  content: "\e9e0";
+}
+.icon-message:before {
+  content: "\e9e1";
+}
+.icon-mic1:before {
+  content: "\e9e2";
+}
+.icon-minus1:before {
+  content: "\e9e3";
+}
+.icon-mobile1:before {
+  content: "\e9e4";
+}
+.icon-modern-mic:before {
+  content: "\e9e5";
+}
+.icon-moon:before {
+  content: "\e9e6";
+}
+.icon-mouse:before {
+  content: "\e9e7";
+}
+.icon-music1:before {
+  content: "\e9e8";
+}
+.icon-network:before {
+  content: "\e9e9";
+}
+.icon-new-message:before {
+  content: "\e9ea";
+}
+.icon-new:before {
+  content: "\e9eb";
+}
+.icon-news:before {
+  content: "\e9ec";
+}
+.icon-note:before {
+  content: "\e9ed";
+}
+.icon-notification1:before {
+  content: "\e9ee";
+}
+.icon-old-mobile:before {
+  content: "\e9ef";
+}
+.icon-old-phone:before {
+  content: "\e9f0";
+}
+.icon-palette:before {
+  content: "\e9f1";
+}
+.icon-paper-plane:before {
+  content: "\e9f2";
+}
+.icon-pencil1:before {
+  content: "\e9f3";
+}
+.icon-phone1:before {
+  content: "\e9f4";
+}
+.icon-pie-chart1:before {
+  content: "\e9f5";
+}
+.icon-pin:before {
+  content: "\e9f6";
+}
+.icon-plus1:before {
+  content: "\e9f7";
+}
+.icon-popup:before {
+  content: "\e9f8";
+}
+.icon-power-plug:before {
+  content: "\e9f9";
+}
+.icon-price-ribbon:before {
+  content: "\e9fa";
+}
+.icon-price-tag1:before {
+  content: "\e9fb";
+}
+.icon-print:before {
+  content: "\e9fc";
+}
+.icon-progress-empty:before {
+  content: "\e9fd";
+}
+.icon-progress-full:before {
+  content: "\e9fe";
+}
+.icon-progress-one:before {
+  content: "\e9ff";
+}
+.icon-progress-two:before {
+  content: "\ea00";
+}
+.icon-publish:before {
+  content: "\ea01";
+}
+.icon-quote:before {
+  content: "\ea02";
+}
+.icon-radio:before {
+  content: "\ea03";
+}
+.icon-reply-all:before {
+  content: "\ea04";
+}
+.icon-reply1:before {
+  content: "\ea05";
+}
+.icon-retweet:before {
+  content: "\ea06";
+}
+.icon-rocket1:before {
+  content: "\ea07";
+}
+.icon-round-brush:before {
+  content: "\ea08";
+}
+.icon-rss1:before {
+  content: "\ea09";
+}
+.icon-ruler:before {
+  content: "\ea0a";
+}
+.icon-scissors1:before {
+  content: "\ea0b";
+}
+.icon-share-alternitive:before {
+  content: "\ea0c";
+}
+.icon-share1:before {
+  content: "\ea0d";
+}
+.icon-shareable:before {
+  content: "\ea0e";
+}
+.icon-shield1:before {
+  content: "\ea0f";
+}
+.icon-shop:before {
+  content: "\ea10";
+}
+.icon-shopping-bag:before {
+  content: "\ea11";
+}
+.icon-shopping-basket:before {
+  content: "\ea12";
+}
+.icon-shopping-cart:before {
+  content: "\ea13";
+}
+.icon-shuffle1:before {
+  content: "\ea14";
+}
+.icon-signal:before {
+  content: "\ea15";
+}
+.icon-sound-mix:before {
+  content: "\ea16";
+}
+.icon-sports-club:before {
+  content: "\ea17";
+}
+.icon-spreadsheet:before {
+  content: "\ea18";
+}
+.icon-squared-cross:before {
+  content: "\ea19";
+}
+.icon-squared-minus:before {
+  content: "\ea1a";
+}
+.icon-squared-plus:before {
+  content: "\ea1b";
+}
+.icon-star-outlined:before {
+  content: "\ea1c";
+}
+.icon-star:before {
+  content: "\ea1d";
+}
+.icon-stopwatch1:before {
+  content: "\ea1e";
+}
+.icon-suitcase:before {
+  content: "\ea1f";
+}
+.icon-swap:before {
+  content: "\ea20";
+}
+.icon-sweden:before {
+  content: "\ea21";
+}
+.icon-switch1:before {
+  content: "\ea22";
+}
+.icon-tablet1:before {
+  content: "\ea23";
+}
+.icon-tag:before {
+  content: "\ea24";
+}
+.icon-text-document-inverted:before {
+  content: "\ea25";
+}
+.icon-text-document:before {
+  content: "\ea26";
+}
+.icon-text:before {
+  content: "\ea27";
+}
+.icon-thermometer:before {
+  content: "\ea28";
+}
+.icon-thumbs-down:before {
+  content: "\ea29";
+}
+.icon-thumbs-up:before {
+  content: "\ea2a";
+}
+.icon-thunder-cloud:before {
+  content: "\ea2b";
+}
+.icon-ticket1:before {
+  content: "\ea2c";
+}
+.icon-time-slot:before {
+  content: "\ea2d";
+}
+.icon-tools:before {
+  content: "\ea2e";
+}
+.icon-traffic-cone:before {
+  content: "\ea2f";
+}
+.icon-tree1:before {
+  content: "\ea30";
+}
+.icon-trophy1:before {
+  content: "\ea31";
+}
+.icon-tv1:before {
+  content: "\ea32";
+}
+.icon-typing:before {
+  content: "\ea33";
+}
+.icon-unread:before {
+  content: "\ea34";
+}
+.icon-untag:before {
+  content: "\ea35";
+}
+.icon-user1:before {
+  content: "\ea36";
+}
+.icon-users1:before {
+  content: "\ea37";
+}
+.icon-v-card:before {
+  content: "\ea38";
+}
+.icon-video:before {
+  content: "\ea39";
+}
+.icon-vinyl:before {
+  content: "\ea3a";
+}
+.icon-voicemail:before {
+  content: "\ea3b";
+}
+.icon-wallet:before {
+  content: "\ea3c";
+}
+.icon-water:before {
+  content: "\ea3d";
+}
+.icon-500px-with-circle:before {
+  content: "\ea3e";
+}
+.icon-500px1:before {
+  content: "\ea3f";
+}
+.icon-basecamp1:before {
+  content: "\ea40";
+}
+.icon-behance1:before {
+  content: "\ea41";
+}
+.icon-creative-cloud:before {
+  content: "\ea42";
+}
+.icon-dropbox1:before {
+  content: "\ea43";
+}
+.icon-evernote:before {
+  content: "\ea44";
+}
+.icon-flattr1:before {
+  content: "\ea45";
+}
+.icon-foursquare1:before {
+  content: "\ea46";
+}
+.icon-google-drive1:before {
+  content: "\ea47";
+}
+.icon-google-hangouts:before {
+  content: "\ea48";
+}
+.icon-grooveshark:before {
+  content: "\ea49";
+}
+.icon-icloud:before {
+  content: "\ea4a";
+}
+.icon-mixi:before {
+  content: "\ea4b";
+}
+.icon-onedrive1:before {
+  content: "\ea4c";
+}
+.icon-paypal1:before {
+  content: "\ea4d";
+}
+.icon-picasa:before {
+  content: "\ea4e";
+}
+.icon-qq:before {
+  content: "\ea4f";
+}
+.icon-rdio-with-circle:before {
+  content: "\ea50";
+}
+.icon-renren1:before {
+  content: "\ea51";
+}
+.icon-scribd:before {
+  content: "\ea52";
+}
+.icon-sina-weibo1:before {
+  content: "\ea53";
+}
+.icon-skype-with-circle:before {
+  content: "\ea54";
+}
+.icon-skype1:before {
+  content: "\ea55";
+}
+.icon-slideshare:before {
+  content: "\ea56";
+}
+.icon-smashing:before {
+  content: "\ea57";
+}
+.icon-soundcloud1:before {
+  content: "\ea58";
+}
+.icon-spotify-with-circle:before {
+  content: "\ea59";
+}
+.icon-spotify1:before {
+  content: "\ea5a";
+}
+.icon-swarm:before {
+  content: "\ea5b";
+}
+.icon-vine-with-circle:before {
+  content: "\ea5c";
+}
+.icon-vine1:before {
+  content: "\ea5d";
+}
+.icon-vk-alternitive:before {
+  content: "\ea5e";
+}
+.icon-vk-with-circle:before {
+  content: "\ea5f";
+}
+.icon-vk1:before {
+  content: "\ea60";
+}
+.icon-xing-with-circle:before {
+  content: "\ea61";
+}
+.icon-xing1:before {
+  content: "\ea62";
+}
+.icon-yelp1:before {
+  content: "\ea63";
+}
+.icon-dribbble-with-circle:before {
+  content: "\ea64";
+}
+.icon-dribbble1:before {
+  content: "\ea65";
+}
+.icon-facebook-with-circle:before {
+  content: "\ea66";
+}
+.icon-facebook1:before {
+  content: "\ea67";
+}
+.icon-flickr-with-circle:before {
+  content: "\ea68";
+}
+.icon-flickr1:before {
+  content: "\ea69";
+}
+.icon-github-with-circle:before {
+  content: "\ea6a";
+}
+.icon-github1:before {
+  content: "\ea6b";
+}
+.icon-google-with-circle:before {
+  content: "\ea6c";
+}
+.icon-google1:before {
+  content: "\ea6d";
+}
+.icon-instagram-with-circle:before {
+  content: "\ea6e";
+}
+.icon-instagram1:before {
+  content: "\ea6f";
+}
+.icon-lastfm-with-circle:before {
+  content: "\ea70";
+}
+.icon-lastfm1:before {
+  content: "\ea71";
+}
+.icon-linkedin-with-circle:before {
+  content: "\ea72";
+}
+.icon-linkedin1:before {
+  content: "\ea73";
+}
+.icon-pinterest-with-circle:before {
+  content: "\ea74";
+}
+.icon-pinterest1:before {
+  content: "\ea75";
+}
+.icon-rdio:before {
+  content: "\ea76";
+}
+.icon-stumbleupon-with-circle:before {
+  content: "\ea77";
+}
+.icon-stumbleupon1:before {
+  content: "\ea78";
+}
+.icon-tumblr-with-circle:before {
+  content: "\ea79";
+}
+.icon-tumblr1:before {
+  content: "\ea7a";
+}
+.icon-twitter-with-circle:before {
+  content: "\ea7b";
+}
+.icon-twitter1:before {
+  content: "\ea7c";
+}
+.icon-vimeo-with-circle:before {
+  content: "\ea7d";
+}
+.icon-vimeo1:before {
+  content: "\ea7e";
+}
+.icon-youtube-with-circle:before {
+  content: "\ea7f";
+}
+.icon-youtube1:before {
+  content: "\ea80";
+}
+.icon-home:before {
+  content: "\ea81";
+}
+.icon-home2:before {
+  content: "\ea82";
+}
+.icon-home3:before {
+  content: "\ea83";
+}
+.icon-office:before {
+  content: "\ea84";
+}
+.icon-newspaper:before {
+  content: "\ea85";
+}
+.icon-pencil:before {
+  content: "\ea86";
+}
+.icon-pencil2:before {
+  content: "\ea87";
+}
+.icon-quill:before {
+  content: "\ea88";
+}
+.icon-pen:before {
+  content: "\ea89";
+}
+.icon-blog:before {
+  content: "\ea8a";
+}
+.icon-eyedropper:before {
+  content: "\ea8b";
+}
+.icon-droplet:before {
+  content: "\ea8c";
+}
+.icon-paint-format:before {
+  content: "\ea8d";
+}
+.icon-image:before {
+  content: "\ea8e";
+}
+.icon-images:before {
+  content: "\ea8f";
+}
+.icon-camera:before {
+  content: "\ea90";
+}
+.icon-headphones:before {
+  content: "\ea91";
+}
+.icon-music:before {
+  content: "\ea92";
+}
+.icon-play:before {
+  content: "\ea93";
+}
+.icon-film:before {
+  content: "\ea94";
+}
+.icon-video-camera:before {
+  content: "\ea95";
+}
+.icon-dice:before {
+  content: "\ea96";
+}
+.icon-pacman:before {
+  content: "\ea97";
+}
+.icon-spades:before {
+  content: "\ea98";
+}
+.icon-clubs:before {
+  content: "\ea99";
+}
+.icon-diamonds:before {
+  content: "\ea9a";
+}
+.icon-bullhorn:before {
+  content: "\ea9b";
+}
+.icon-connection:before {
+  content: "\ea9c";
+}
+.icon-podcast:before {
+  content: "\ea9d";
+}
+.icon-feed:before {
+  content: "\ea9e";
+}
+.icon-mic:before {
+  content: "\ea9f";
+}
+.icon-book:before {
+  content: "\eaa0";
+}
+.icon-books:before {
+  content: "\eaa1";
+}
+.icon-library:before {
+  content: "\eaa2";
+}
+.icon-file-text:before {
+  content: "\eaa3";
+}
+.icon-profile:before {
+  content: "\eaa4";
+}
+.icon-file-empty:before {
+  content: "\eaa5";
+}
+.icon-files-empty:before {
+  content: "\eaa6";
+}
+.icon-file-text2:before {
+  content: "\eaa7";
+}
+.icon-file-picture:before {
+  content: "\eaa8";
+}
+.icon-file-music:before {
+  content: "\eaa9";
+}
+.icon-file-play:before {
+  content: "\eaaa";
+}
+.icon-file-video:before {
+  content: "\eaab";
+}
+.icon-file-zip:before {
+  content: "\eaac";
+}
+.icon-copy:before {
+  content: "\eaad";
+}
+.icon-paste:before {
+  content: "\eaae";
+}
+.icon-stack:before {
+  content: "\eaaf";
+}
+.icon-folder:before {
+  content: "\eab0";
+}
+.icon-folder-open:before {
+  content: "\eab1";
+}
+.icon-folder-plus:before {
+  content: "\eab2";
+}
+.icon-folder-minus:before {
+  content: "\eab3";
+}
+.icon-folder-download:before {
+  content: "\eab4";
+}
+.icon-folder-upload:before {
+  content: "\eab5";
+}
+.icon-price-tag:before {
+  content: "\eab6";
+}
+.icon-price-tags:before {
+  content: "\eab7";
+}
+.icon-barcode:before {
+  content: "\eab8";
+}
+.icon-qrcode:before {
+  content: "\eab9";
+}
+.icon-ticket:before {
+  content: "\eaba";
+}
+.icon-cart:before {
+  content: "\eabb";
+}
+.icon-coin-dollar:before {
+  content: "\eabc";
+}
+.icon-coin-euro:before {
+  content: "\eabd";
+}
+.icon-coin-pound:before {
+  content: "\eabe";
+}
+.icon-coin-yen:before {
+  content: "\eabf";
+}
+.icon-credit-card:before {
+  content: "\eac0";
+}
+.icon-calculator:before {
+  content: "\eac1";
+}
+.icon-lifebuoy:before {
+  content: "\eac2";
+}
+.icon-phone:before {
+  content: "\eac3";
+}
+.icon-phone-hang-up:before {
+  content: "\eac4";
+}
+.icon-address-book:before {
+  content: "\eac5";
+}
+.icon-envelop:before {
+  content: "\eac6";
+}
+.icon-pushpin:before {
+  content: "\eac7";
+}
+.icon-location:before {
+  content: "\eac8";
+}
+.icon-location2:before {
+  content: "\eac9";
+}
+.icon-compass:before {
+  content: "\eaca";
+}
+.icon-compass2:before {
+  content: "\eacb";
+}
+.icon-map:before {
+  content: "\eacc";
+}
+.icon-map2:before {
+  content: "\eacd";
+}
+.icon-history:before {
+  content: "\eace";
+}
+.icon-clock:before {
+  content: "\eacf";
+}
+.icon-clock2:before {
+  content: "\ead0";
+}
+.icon-alarm:before {
+  content: "\ead1";
+}
+.icon-bell:before {
+  content: "\ead2";
+}
+.icon-stopwatch:before {
+  content: "\ead3";
+}
+.icon-calendar:before {
+  content: "\ead4";
+}
+.icon-printer:before {
+  content: "\ead5";
+}
+.icon-keyboard:before {
+  content: "\ead6";
+}
+.icon-display:before {
+  content: "\ead7";
+}
+.icon-laptop:before {
+  content: "\ead8";
+}
+.icon-mobile:before {
+  content: "\ead9";
+}
+.icon-mobile2:before {
+  content: "\eada";
+}
+.icon-tablet:before {
+  content: "\eadb";
+}
+.icon-tv:before {
+  content: "\eadc";
+}
+.icon-drawer:before {
+  content: "\eadd";
+}
+.icon-drawer2:before {
+  content: "\eade";
+}
+.icon-box-add:before {
+  content: "\eadf";
+}
+.icon-box-remove:before {
+  content: "\eae0";
+}
+.icon-download:before {
+  content: "\eae1";
+}
+.icon-upload:before {
+  content: "\eae2";
+}
+.icon-floppy-disk:before {
+  content: "\eae3";
+}
+.icon-drive:before {
+  content: "\eae4";
+}
+.icon-database:before {
+  content: "\eae5";
+}
+.icon-undo:before {
+  content: "\eae6";
+}
+.icon-redo:before {
+  content: "\eae7";
+}
+.icon-undo2:before {
+  content: "\eae8";
+}
+.icon-redo2:before {
+  content: "\eae9";
+}
+.icon-forward:before {
+  content: "\eaea";
+}
+.icon-reply:before {
+  content: "\eaeb";
+}
+.icon-bubble:before {
+  content: "\eaec";
+}
+.icon-bubbles:before {
+  content: "\eaed";
+}
+.icon-bubbles2:before {
+  content: "\eaee";
+}
+.icon-bubble2:before {
+  content: "\eaef";
+}
+.icon-bubbles3:before {
+  content: "\eaf0";
+}
+.icon-bubbles4:before {
+  content: "\eaf1";
+}
+.icon-user:before {
+  content: "\eaf2";
+}
+.icon-users:before {
+  content: "\eaf3";
+}
+.icon-user-plus:before {
+  content: "\eaf4";
+}
+.icon-user-minus:before {
+  content: "\eaf5";
+}
+.icon-user-check:before {
+  content: "\eaf6";
+}
+.icon-user-tie:before {
+  content: "\eaf7";
+}
+.icon-quotes-left:before {
+  content: "\eaf8";
+}
+.icon-quotes-right:before {
+  content: "\eaf9";
+}
+.icon-hour-glass:before {
+  content: "\eafa";
+}
+.icon-spinner:before {
+  content: "\eafb";
+}
+.icon-spinner2:before {
+  content: "\eafc";
+}
+.icon-spinner3:before {
+  content: "\eafd";
+}
+.icon-spinner4:before {
+  content: "\eafe";
+}
+.icon-spinner5:before {
+  content: "\eaff";
+}
+.icon-spinner6:before {
+  content: "\eb00";
+}
+.icon-spinner7:before {
+  content: "\eb01";
+}
+.icon-spinner8:before {
+  content: "\eb02";
+}
+.icon-spinner9:before {
+  content: "\eb03";
+}
+.icon-spinner10:before {
+  content: "\eb04";
+}
+.icon-spinner11:before {
+  content: "\eb05";
+}
+.icon-binoculars:before {
+  content: "\eb06";
+}
+.icon-search:before {
+  content: "\eb07";
+}
+.icon-zoom-in:before {
+  content: "\eb08";
+}
+.icon-zoom-out:before {
+  content: "\eb09";
+}
+.icon-enlarge:before {
+  content: "\eb0a";
+}
+.icon-shrink:before {
+  content: "\eb0b";
+}
+.icon-enlarge2:before {
+  content: "\eb0c";
+}
+.icon-shrink2:before {
+  content: "\eb0d";
+}
+.icon-key:before {
+  content: "\eb0e";
+}
+.icon-key2:before {
+  content: "\eb0f";
+}
+.icon-lock:before {
+  content: "\eb10";
+}
+.icon-unlocked:before {
+  content: "\eb11";
+}
+.icon-wrench:before {
+  content: "\eb12";
+}
+.icon-equalizer:before {
+  content: "\eb13";
+}
+.icon-equalizer2:before {
+  content: "\eb14";
+}
+.icon-cog:before {
+  content: "\eb15";
+}
+.icon-cogs:before {
+  content: "\eb16";
+}
+.icon-hammer:before {
+  content: "\eb17";
+}
+.icon-magic-wand:before {
+  content: "\eb18";
+}
+.icon-aid-kit:before {
+  content: "\eb19";
+}
+.icon-bug:before {
+  content: "\eb1a";
+}
+.icon-pie-chart:before {
+  content: "\eb1b";
+}
+.icon-stats-dots:before {
+  content: "\eb1c";
+}
+.icon-stats-bars:before {
+  content: "\eb1d";
+}
+.icon-stats-bars2:before {
+  content: "\eb1e";
+}
+.icon-trophy:before {
+  content: "\eb1f";
+}
+.icon-gift:before {
+  content: "\eb20";
+}
+.icon-glass:before {
+  content: "\eb21";
+}
+.icon-glass2:before {
+  content: "\eb22";
+}
+.icon-mug:before {
+  content: "\eb23";
+}
+.icon-spoon-knife:before {
+  content: "\eb24";
+}
+.icon-leaf:before {
+  content: "\eb25";
+}
+.icon-rocket:before {
+  content: "\eb26";
+}
+.icon-meter:before {
+  content: "\eb27";
+}
+.icon-meter2:before {
+  content: "\eb28";
+}
+.icon-hammer2:before {
+  content: "\eb29";
+}
+.icon-fire:before {
+  content: "\eb2a";
+}
+.icon-lab:before {
+  content: "\eb2b";
+}
+.icon-magnet:before {
+  content: "\eb2c";
+}
+.icon-bin:before {
+  content: "\eb2d";
+}
+.icon-bin2:before {
+  content: "\eb2e";
+}
+.icon-briefcase:before {
+  content: "\eb2f";
+}
+.icon-airplane:before {
+  content: "\eb30";
+}
+.icon-truck:before {
+  content: "\eb31";
+}
+.icon-road:before {
+  content: "\eb32";
+}
+.icon-accessibility:before {
+  content: "\eb33";
+}
+.icon-target:before {
+  content: "\eb34";
+}
+.icon-shield:before {
+  content: "\eb35";
+}
+.icon-power:before {
+  content: "\eb36";
+}
+.icon-switch:before {
+  content: "\eb37";
+}
+.icon-power-cord:before {
+  content: "\eb38";
+}
+.icon-clipboard:before {
+  content: "\eb39";
+}
+.icon-list-numbered:before {
+  content: "\eb3a";
+}
+.icon-list:before {
+  content: "\eb3b";
+}
+.icon-list2:before {
+  content: "\eb3c";
+}
+.icon-tree:before {
+  content: "\eb3d";
+}
+.icon-menu:before {
+  content: "\eb3e";
+}
+.icon-menu2:before {
+  content: "\eb3f";
+}
+.icon-menu3:before {
+  content: "\eb40";
+}
+.icon-menu4:before {
+  content: "\eb41";
+}
+.icon-cloud:before {
+  content: "\eb42";
+}
+.icon-cloud-download:before {
+  content: "\eb43";
+}
+.icon-cloud-upload:before {
+  content: "\eb44";
+}
+.icon-cloud-check:before {
+  content: "\eb45";
+}
+.icon-download2:before {
+  content: "\eb46";
+}
+.icon-upload2:before {
+  content: "\eb47";
+}
+.icon-download3:before {
+  content: "\eb48";
+}
+.icon-upload3:before {
+  content: "\eb49";
+}
+.icon-sphere:before {
+  content: "\eb4a";
+}
+.icon-earth:before {
+  content: "\eb4b";
+}
+.icon-link:before {
+  content: "\eb4c";
+}
+.icon-flag:before {
+  content: "\eb4d";
+}
+.icon-attachment:before {
+  content: "\eb4e";
+}
+.icon-eye:before {
+  content: "\eb4f";
+}
+.icon-eye-plus:before {
+  content: "\eb50";
+}
+.icon-eye-minus:before {
+  content: "\eb51";
+}
+.icon-eye-blocked:before {
+  content: "\eb52";
+}
+.icon-bookmark:before {
+  content: "\eb53";
+}
+.icon-bookmarks:before {
+  content: "\eb54";
+}
+.icon-sun:before {
+  content: "\eb55";
+}
+.icon-contrast:before {
+  content: "\eb56";
+}
+.icon-brightness-contrast:before {
+  content: "\eb57";
+}
+.icon-star-empty:before {
+  content: "\eb58";
+}
+.icon-star-half:before {
+  content: "\eb59";
+}
+.icon-star-full:before {
+  content: "\eb5a";
+}
+.icon-heart:before {
+  content: "\eb5b";
+}
+.icon-heart-broken:before {
+  content: "\eb5c";
+}
+.icon-man:before {
+  content: "\eb5d";
+}
+.icon-woman:before {
+  content: "\eb5e";
+}
+.icon-man-woman:before {
+  content: "\eb5f";
+}
+.icon-happy:before {
+  content: "\eb60";
+}
+.icon-happy2:before {
+  content: "\eb61";
+}
+.icon-smile:before {
+  content: "\eb62";
+}
+.icon-smile2:before {
+  content: "\eb63";
+}
+.icon-tongue:before {
+  content: "\eb64";
+}
+.icon-tongue2:before {
+  content: "\eb65";
+}
+.icon-sad:before {
+  content: "\eb66";
+}
+.icon-sad2:before {
+  content: "\eb67";
+}
+.icon-wink:before {
+  content: "\eb68";
+}
+.icon-wink2:before {
+  content: "\eb69";
+}
+.icon-grin:before {
+  content: "\eb6a";
+}
+.icon-grin2:before {
+  content: "\eb6b";
+}
+.icon-cool:before {
+  content: "\eb6c";
+}
+.icon-cool2:before {
+  content: "\eb6d";
+}
+.icon-angry:before {
+  content: "\eb6e";
+}
+.icon-angry2:before {
+  content: "\eb6f";
+}
+.icon-evil:before {
+  content: "\eb70";
+}
+.icon-evil2:before {
+  content: "\eb71";
+}
+.icon-shocked:before {
+  content: "\eb72";
+}
+.icon-shocked2:before {
+  content: "\eb73";
+}
+.icon-baffled:before {
+  content: "\eb74";
+}
+.icon-baffled2:before {
+  content: "\eb75";
+}
+.icon-confused:before {
+  content: "\eb76";
+}
+.icon-confused2:before {
+  content: "\eb77";
+}
+.icon-neutral:before {
+  content: "\eb78";
+}
+.icon-neutral2:before {
+  content: "\eb79";
+}
+.icon-hipster:before {
+  content: "\eb7a";
+}
+.icon-hipster2:before {
+  content: "\eb7b";
+}
+.icon-wondering:before {
+  content: "\eb7c";
+}
+.icon-wondering2:before {
+  content: "\eb7d";
+}
+.icon-sleepy:before {
+  content: "\eb7e";
+}
+.icon-sleepy2:before {
+  content: "\eb7f";
+}
+.icon-frustrated:before {
+  content: "\eb80";
+}
+.icon-frustrated2:before {
+  content: "\eb81";
+}
+.icon-crying:before {
+  content: "\eb82";
+}
+.icon-crying2:before {
+  content: "\eb83";
+}
+.icon-point-up:before {
+  content: "\eb84";
+}
+.icon-point-right:before {
+  content: "\eb85";
+}
+.icon-point-down:before {
+  content: "\eb86";
+}
+.icon-point-left:before {
+  content: "\eb87";
+}
+.icon-warning:before {
+  content: "\eb88";
+}
+.icon-notification:before {
+  content: "\eb89";
+}
+.icon-question:before {
+  content: "\eb8a";
+}
+.icon-plus:before {
+  content: "\eb8b";
+}
+.icon-minus:before {
+  content: "\eb8c";
+}
+.icon-info:before {
+  content: "\eb8d";
+}
+.icon-cancel-circle:before {
+  content: "\eb8e";
+}
+.icon-blocked:before {
+  content: "\eb8f";
+}
+.icon-cross:before {
+  content: "\eb90";
+}
+.icon-checkmark:before {
+  content: "\eb91";
+}
+.icon-checkmark2:before {
+  content: "\eb92";
+}
+.icon-spell-check:before {
+  content: "\eb93";
+}
+.icon-enter:before {
+  content: "\eb94";
+}
+.icon-exit:before {
+  content: "\eb95";
+}
+.icon-play2:before {
+  content: "\eb96";
+}
+.icon-pause:before {
+  content: "\eb97";
+}
+.icon-stop:before {
+  content: "\eb98";
+}
+.icon-previous:before {
+  content: "\eb99";
+}
+.icon-next:before {
+  content: "\eb9a";
+}
+.icon-backward:before {
+  content: "\eb9b";
+}
+.icon-forward2:before {
+  content: "\eb9c";
+}
+.icon-play3:before {
+  content: "\eb9d";
+}
+.icon-pause2:before {
+  content: "\eb9e";
+}
+.icon-stop2:before {
+  content: "\eb9f";
+}
+.icon-backward2:before {
+  content: "\eba0";
+}
+.icon-forward3:before {
+  content: "\eba1";
+}
+.icon-first:before {
+  content: "\eba2";
+}
+.icon-last:before {
+  content: "\eba3";
+}
+.icon-previous2:before {
+  content: "\eba4";
+}
+.icon-next2:before {
+  content: "\eba5";
+}
+.icon-eject:before {
+  content: "\eba6";
+}
+.icon-volume-high:before {
+  content: "\eba7";
+}
+.icon-volume-medium:before {
+  content: "\eba8";
+}
+.icon-volume-low:before {
+  content: "\eba9";
+}
+.icon-volume-mute:before {
+  content: "\ebaa";
+}
+.icon-volume-mute2:before {
+  content: "\ebab";
+}
+.icon-volume-increase:before {
+  content: "\ebac";
+}
+.icon-volume-decrease:before {
+  content: "\ebad";
+}
+.icon-loop:before {
+  content: "\ebae";
+}
+.icon-loop2:before {
+  content: "\ebaf";
+}
+.icon-infinite:before {
+  content: "\ebb0";
+}
+.icon-shuffle:before {
+  content: "\ebb1";
+}
+.icon-arrow-up-left:before {
+  content: "\ebb2";
+}
+.icon-arrow-up:before {
+  content: "\ebb3";
+}
+.icon-arrow-up-right:before {
+  content: "\ebb4";
+}
+.icon-arrow-right:before {
+  content: "\ebb5";
+}
+.icon-arrow-down-right:before {
+  content: "\ebb6";
+}
+.icon-arrow-down:before {
+  content: "\ebb7";
+}
+.icon-arrow-down-left:before {
+  content: "\ebb8";
+}
+.icon-arrow-left:before {
+  content: "\ebb9";
+}
+.icon-arrow-up-left2:before {
+  content: "\ebba";
+}
+.icon-arrow-up2:before {
+  content: "\ebbb";
+}
+.icon-arrow-up-right2:before {
+  content: "\ebbc";
+}
+.icon-arrow-right2:before {
+  content: "\ebbd";
+}
+.icon-arrow-down-right2:before {
+  content: "\ebbe";
+}
+.icon-arrow-down2:before {
+  content: "\ebbf";
+}
+.icon-arrow-down-left2:before {
+  content: "\ebc0";
+}
+.icon-arrow-left2:before {
+  content: "\ebc1";
+}
+.icon-circle-up:before {
+  content: "\ebc2";
+}
+.icon-circle-right:before {
+  content: "\ebc3";
+}
+.icon-circle-down:before {
+  content: "\ebc4";
+}
+.icon-circle-left:before {
+  content: "\ebc5";
+}
+.icon-tab:before {
+  content: "\ebc6";
+}
+.icon-move-up:before {
+  content: "\ebc7";
+}
+.icon-move-down:before {
+  content: "\ebc8";
+}
+.icon-sort-alpha-asc:before {
+  content: "\ebc9";
+}
+.icon-sort-alpha-desc:before {
+  content: "\ebca";
+}
+.icon-sort-numeric-asc:before {
+  content: "\ebcb";
+}
+.icon-sort-numberic-desc:before {
+  content: "\ebcc";
+}
+.icon-sort-amount-asc:before {
+  content: "\ebcd";
+}
+.icon-sort-amount-desc:before {
+  content: "\ebce";
+}
+.icon-command:before {
+  content: "\ebcf";
+}
+.icon-shift:before {
+  content: "\ebd0";
+}
+.icon-ctrl:before {
+  content: "\ebd1";
+}
+.icon-opt:before {
+  content: "\ebd2";
+}
+.icon-checkbox-checked:before {
+  content: "\ebd3";
+}
+.icon-checkbox-unchecked:before {
+  content: "\ebd4";
+}
+.icon-radio-checked:before {
+  content: "\ebd5";
+}
+.icon-radio-checked2:before {
+  content: "\ebd6";
+}
+.icon-radio-unchecked:before {
+  content: "\ebd7";
+}
+.icon-crop:before {
+  content: "\ebd8";
+}
+.icon-make-group:before {
+  content: "\ebd9";
+}
+.icon-ungroup:before {
+  content: "\ebda";
+}
+.icon-scissors:before {
+  content: "\ebdb";
+}
+.icon-filter:before {
+  content: "\ebdc";
+}
+.icon-font:before {
+  content: "\ebdd";
+}
+.icon-ligature:before {
+  content: "\ebde";
+}
+.icon-ligature2:before {
+  content: "\ebdf";
+}
+.icon-text-height:before {
+  content: "\ebe0";
+}
+.icon-text-width:before {
+  content: "\ebe1";
+}
+.icon-font-size:before {
+  content: "\ebe2";
+}
+.icon-bold:before {
+  content: "\ebe3";
+}
+.icon-underline:before {
+  content: "\ebe4";
+}
+.icon-italic:before {
+  content: "\ebe5";
+}
+.icon-strikethrough:before {
+  content: "\ebe6";
+}
+.icon-omega:before {
+  content: "\ebe7";
+}
+.icon-sigma:before {
+  content: "\ebe8";
+}
+.icon-page-break:before {
+  content: "\ebe9";
+}
+.icon-superscript:before {
+  content: "\ebea";
+}
+.icon-subscript:before {
+  content: "\ebeb";
+}
+.icon-superscript2:before {
+  content: "\ebec";
+}
+.icon-subscript2:before {
+  content: "\ebed";
+}
+.icon-text-color:before {
+  content: "\ebee";
+}
+.icon-pagebreak:before {
+  content: "\ebef";
+}
+.icon-clear-formatting:before {
+  content: "\ebf0";
+}
+.icon-table:before {
+  content: "\ebf1";
+}
+.icon-table2:before {
+  content: "\ebf2";
+}
+.icon-insert-template:before {
+  content: "\ebf3";
+}
+.icon-pilcrow:before {
+  content: "\ebf4";
+}
+.icon-ltr:before {
+  content: "\ebf5";
+}
+.icon-rtl:before {
+  content: "\ebf6";
+}
+.icon-section:before {
+  content: "\ebf7";
+}
+.icon-paragraph-left:before {
+  content: "\ebf8";
+}
+.icon-paragraph-center:before {
+  content: "\ebf9";
+}
+.icon-paragraph-right:before {
+  content: "\ebfa";
+}
+.icon-paragraph-justify:before {
+  content: "\ebfb";
+}
+.icon-indent-increase:before {
+  content: "\ebfc";
+}
+.icon-indent-decrease:before {
+  content: "\ebfd";
+}
+.icon-share:before {
+  content: "\ebfe";
+}
+.icon-new-tab:before {
+  content: "\ebff";
+}
+.icon-embed:before {
+  content: "\ec00";
+}
+.icon-embed2:before {
+  content: "\ec01";
+}
+.icon-terminal:before {
+  content: "\ec02";
+}
+.icon-share2:before {
+  content: "\ec03";
+}
+.icon-mail:before {
+  content: "\ec04";
+}
+.icon-mail2:before {
+  content: "\ec05";
+}
+.icon-mail3:before {
+  content: "\ec06";
+}
+.icon-mail4:before {
+  content: "\ec07";
+}
+.icon-amazon:before {
+  content: "\ec08";
+}
+.icon-google:before {
+  content: "\ec09";
+}
+.icon-google2:before {
+  content: "\ec0a";
+}
+.icon-google3:before {
+  content: "\ec0b";
+}
+.icon-google-plus:before {
+  content: "\ec0c";
+}
+.icon-google-plus2:before {
+  content: "\ec0d";
+}
+.icon-google-plus3:before {
+  content: "\ec0e";
+}
+.icon-hangouts:before {
+  content: "\ec0f";
+}
+.icon-google-drive:before {
+  content: "\ec10";
+}
+.icon-facebook:before {
+  content: "\ec11";
+}
+.icon-facebook2:before {
+  content: "\ec12";
+}
+.icon-instagram:before {
+  content: "\ec13";
+}
+.icon-whatsapp:before {
+  content: "\ec14";
+}
+.icon-spotify:before {
+  content: "\ec15";
+}
+.icon-telegram:before {
+  content: "\ec16";
+}
+.icon-twitter:before {
+  content: "\ec17";
+}
+.icon-vine:before {
+  content: "\ec18";
+}
+.icon-vk:before {
+  content: "\ec19";
+}
+.icon-renren:before {
+  content: "\ec1a";
+}
+.icon-sina-weibo:before {
+  content: "\ec1b";
+}
+.icon-rss:before {
+  content: "\ec1c";
+}
+.icon-rss2:before {
+  content: "\ec1d";
+}
+.icon-youtube:before {
+  content: "\ec1e";
+}
+.icon-youtube2:before {
+  content: "\ec1f";
+}
+.icon-twitch:before {
+  content: "\ec20";
+}
+.icon-vimeo:before {
+  content: "\ec21";
+}
+.icon-vimeo2:before {
+  content: "\ec22";
+}
+.icon-lanyrd:before {
+  content: "\ec23";
+}
+.icon-flickr:before {
+  content: "\ec24";
+}
+.icon-flickr2:before {
+  content: "\ec25";
+}
+.icon-flickr3:before {
+  content: "\ec26";
+}
+.icon-flickr4:before {
+  content: "\ec27";
+}
+.icon-dribbble:before {
+  content: "\ec28";
+}
+.icon-behance:before {
+  content: "\ec29";
+}
+.icon-behance2:before {
+  content: "\ec2a";
+}
+.icon-deviantart:before {
+  content: "\ec2b";
+}
+.icon-500px:before {
+  content: "\ec2c";
+}
+.icon-steam:before {
+  content: "\ec2d";
+}
+.icon-steam2:before {
+  content: "\ec2e";
+}
+.icon-dropbox:before {
+  content: "\ec2f";
+}
+.icon-onedrive:before {
+  content: "\ec30";
+}
+.icon-github:before {
+  content: "\ec31";
+}
+.icon-npm:before {
+  content: "\ec32";
+}
+.icon-basecamp:before {
+  content: "\ec33";
+}
+.icon-trello:before {
+  content: "\ec34";
+}
+.icon-wordpress:before {
+  content: "\ec35";
+}
+.icon-joomla:before {
+  content: "\ec36";
+}
+.icon-ello:before {
+  content: "\ec37";
+}
+.icon-blogger:before {
+  content: "\ec38";
+}
+.icon-blogger2:before {
+  content: "\ec39";
+}
+.icon-tumblr:before {
+  content: "\ec3a";
+}
+.icon-tumblr2:before {
+  content: "\ec3b";
+}
+.icon-yahoo:before {
+  content: "\ec3c";
+}
+.icon-yahoo2:before {
+  content: "\ec3d";
+}
+.icon-tux:before {
+  content: "\ec3e";
+}
+.icon-appleinc:before {
+  content: "\ec3f";
+}
+.icon-finder:before {
+  content: "\ec40";
+}
+.icon-android:before {
+  content: "\ec41";
+}
+.icon-windows:before {
+  content: "\ec42";
+}
+.icon-windows8:before {
+  content: "\ec43";
+}
+.icon-soundcloud:before {
+  content: "\ec44";
+}
+.icon-soundcloud2:before {
+  content: "\ec45";
+}
+.icon-skype:before {
+  content: "\ec46";
+}
+.icon-reddit:before {
+  content: "\ec47";
+}
+.icon-hackernews:before {
+  content: "\ec48";
+}
+.icon-wikipedia:before {
+  content: "\ec49";
+}
+.icon-linkedin:before {
+  content: "\ec4a";
+}
+.icon-linkedin2:before {
+  content: "\ec4b";
+}
+.icon-lastfm:before {
+  content: "\ec4c";
+}
+.icon-lastfm2:before {
+  content: "\ec4d";
+}
+.icon-delicious:before {
+  content: "\ec4e";
+}
+.icon-stumbleupon:before {
+  content: "\ec4f";
+}
+.icon-stumbleupon2:before {
+  content: "\ec50";
+}
+.icon-stackoverflow:before {
+  content: "\ec51";
+}
+.icon-pinterest:before {
+  content: "\ec52";
+}
+.icon-pinterest2:before {
+  content: "\ec53";
+}
+.icon-xing:before {
+  content: "\ec54";
+}
+.icon-xing2:before {
+  content: "\ec55";
+}
+.icon-flattr:before {
+  content: "\ec56";
+}
+.icon-foursquare:before {
+  content: "\ec57";
+}
+.icon-yelp:before {
+  content: "\ec58";
+}
+.icon-paypal:before {
+  content: "\ec59";
+}
+.icon-chrome:before {
+  content: "\ec5a";
+}
+.icon-firefox:before {
+  content: "\ec5b";
+}
+.icon-IE:before {
+  content: "\ec5c";
+}
+.icon-edge:before {
+  content: "\ec5d";
+}
+.icon-safari:before {
+  content: "\ec5e";
+}
+.icon-opera:before {
+  content: "\ec5f";
+}
+.icon-file-pdf:before {
+  content: "\ec60";
+}
+.icon-file-openoffice:before {
+  content: "\ec61";
+}
+.icon-file-word:before {
+  content: "\ec62";
+}
+.icon-file-excel:before {
+  content: "\ec63";
+}
+.icon-libreoffice:before {
+  content: "\ec64";
+}
+.icon-html-five:before {
+  content: "\ec65";
+}
+.icon-html-five2:before {
+  content: "\ec66";
+}
+.icon-css3:before {
+  content: "\ec67";
+}
+.icon-git:before {
+  content: "\ec68";
+}
+.icon-codepen:before {
+  content: "\ec69";
+}
+.icon-svg:before {
+  content: "\ec6a";
+}
+.icon-IcoMoon:before {
+  content: "\ec6b";
+}
diff --git a/UyTube_mobile/web/imagenes/UyTubeAlfa.png b/UyTube_mobile/web/imagenes/UyTubeAlfa.png
new file mode 100644
index 0000000000000000000000000000000000000000..3fe58bb9b0743cc0950e8ad44cb9650c7f79cd23
Binary files /dev/null and b/UyTube_mobile/web/imagenes/UyTubeAlfa.png differ
diff --git a/UyTube_mobile/web/imagenes/about.png b/UyTube_mobile/web/imagenes/about.png
new file mode 100644
index 0000000000000000000000000000000000000000..937e151247a0fb9b1e63ea91a4ea849744f012da
Binary files /dev/null and b/UyTube_mobile/web/imagenes/about.png differ
diff --git a/UyTube_mobile/web/imagenes/des.jpeg b/UyTube_mobile/web/imagenes/des.jpeg
new file mode 100644
index 0000000000000000000000000000000000000000..7a7eb2ebcdb13adad971a990838700e2ba23ab7d
Binary files /dev/null and b/UyTube_mobile/web/imagenes/des.jpeg differ
diff --git a/UyTube_mobile/web/imagenes/facebook.png b/UyTube_mobile/web/imagenes/facebook.png
new file mode 100644
index 0000000000000000000000000000000000000000..b386bb10725871071801b8447c4475189524dfe4
Binary files /dev/null and b/UyTube_mobile/web/imagenes/facebook.png differ
diff --git a/UyTube_mobile/web/imagenes/homero.jpg b/UyTube_mobile/web/imagenes/homero.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..421215cb9a5a007be104366f69efa5ea7277d5ea
Binary files /dev/null and b/UyTube_mobile/web/imagenes/homero.jpg differ
diff --git a/UyTube_mobile/web/imagenes/icono.jpg b/UyTube_mobile/web/imagenes/icono.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..e1c6c0706f82d5f48c7f8719a85952965bb15b21
Binary files /dev/null and b/UyTube_mobile/web/imagenes/icono.jpg differ
diff --git a/UyTube_mobile/web/imagenes/icono.png b/UyTube_mobile/web/imagenes/icono.png
new file mode 100644
index 0000000000000000000000000000000000000000..4ea64e3d916b95f27e7340fdcf054e3c97ae1982
Binary files /dev/null and b/UyTube_mobile/web/imagenes/icono.png differ
diff --git a/UyTube_mobile/web/imagenes/icons8-menu-48.png b/UyTube_mobile/web/imagenes/icons8-menu-48.png
new file mode 100644
index 0000000000000000000000000000000000000000..dba2a958db2348e5b975cf701c42cc004cedb147
Binary files /dev/null and b/UyTube_mobile/web/imagenes/icons8-menu-48.png differ
diff --git a/UyTube_mobile/web/imagenes/instagram.jpeg b/UyTube_mobile/web/imagenes/instagram.jpeg
new file mode 100644
index 0000000000000000000000000000000000000000..6036723d0b1c8752b1d0609dd20c61a4066c3f1c
Binary files /dev/null and b/UyTube_mobile/web/imagenes/instagram.jpeg differ
diff --git a/UyTube_mobile/web/imagenes/lista.jpg b/UyTube_mobile/web/imagenes/lista.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..df86bc21dd1110452ac0b59ca5ed1d06c8aa339e
Binary files /dev/null and b/UyTube_mobile/web/imagenes/lista.jpg differ
diff --git a/UyTube_mobile/web/imagenes/logoChico.jpeg b/UyTube_mobile/web/imagenes/logoChico.jpeg
new file mode 100644
index 0000000000000000000000000000000000000000..37f9b9d9ed97122b466ba2fc6d43734039d54951
Binary files /dev/null and b/UyTube_mobile/web/imagenes/logoChico.jpeg differ
diff --git a/UyTube_mobile/web/imagenes/logoGrande.jpeg b/UyTube_mobile/web/imagenes/logoGrande.jpeg
new file mode 100644
index 0000000000000000000000000000000000000000..ae8669eff31db4a044b5a8efa0ca2dcae5da65b6
Binary files /dev/null and b/UyTube_mobile/web/imagenes/logoGrande.jpeg differ
diff --git a/UyTube_mobile/web/imagenes/logo_utec-150-x-105.png b/UyTube_mobile/web/imagenes/logo_utec-150-x-105.png
new file mode 100644
index 0000000000000000000000000000000000000000..661298d3897bc8ca1e5001dcba066b4dd044782f
Binary files /dev/null and b/UyTube_mobile/web/imagenes/logo_utec-150-x-105.png differ
diff --git a/UyTube_mobile/web/imagenes/textura1.png b/UyTube_mobile/web/imagenes/textura1.png
new file mode 100644
index 0000000000000000000000000000000000000000..7c98f3c7739fd679ba8f52c2ae806de4438d2696
Binary files /dev/null and b/UyTube_mobile/web/imagenes/textura1.png differ
diff --git a/UyTube_mobile/web/imagenes/texturaAzul.jpg b/UyTube_mobile/web/imagenes/texturaAzul.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..721747fc940b5b6bf902c2e406bc5a63ca31137a
Binary files /dev/null and b/UyTube_mobile/web/imagenes/texturaAzul.jpg differ
diff --git a/UyTube_mobile/web/imagenes/texturaAzul2.jpg b/UyTube_mobile/web/imagenes/texturaAzul2.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..33160f4614888de3ff8e85f1369d118919995b16
Binary files /dev/null and b/UyTube_mobile/web/imagenes/texturaAzul2.jpg differ
diff --git a/UyTube_mobile/web/imagenes/twiter.png b/UyTube_mobile/web/imagenes/twiter.png
new file mode 100644
index 0000000000000000000000000000000000000000..afbc28f2823a376c90b12102c90f4d607e1d7b44
Binary files /dev/null and b/UyTube_mobile/web/imagenes/twiter.png differ
diff --git a/UyTube_mobile/web/imagenes/udelar.png b/UyTube_mobile/web/imagenes/udelar.png
new file mode 100644
index 0000000000000000000000000000000000000000..ab0bff72fbe67a38e93e9b6453e6fca8cca83d25
Binary files /dev/null and b/UyTube_mobile/web/imagenes/udelar.png differ
diff --git a/UyTube_mobile/web/imagenes/ukp.jpg b/UyTube_mobile/web/imagenes/ukp.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..bbb872e55fccd2b64057b17537f13a79b33a5d0b
Binary files /dev/null and b/UyTube_mobile/web/imagenes/ukp.jpg differ
diff --git a/UyTube_mobile/web/imagenes/ukp.png b/UyTube_mobile/web/imagenes/ukp.png
new file mode 100644
index 0000000000000000000000000000000000000000..5939b67d080df91af9d46511590d81eda44a17b9
Binary files /dev/null and b/UyTube_mobile/web/imagenes/ukp.png differ
diff --git a/UyTube_mobile/web/imagenes/youtube.png b/UyTube_mobile/web/imagenes/youtube.png
new file mode 100644
index 0000000000000000000000000000000000000000..cded75b09fd63a78861854274b19f18be55b65a2
Binary files /dev/null and b/UyTube_mobile/web/imagenes/youtube.png differ
diff --git a/UyTube_mobile/web/include/filtro-visible.jsp b/UyTube_mobile/web/include/filtro-visible.jsp
new file mode 100644
index 0000000000000000000000000000000000000000..594d9e5ef3fc357bab34150d2f9bfdcccb8a0241
--- /dev/null
+++ b/UyTube_mobile/web/include/filtro-visible.jsp
@@ -0,0 +1,67 @@
+<%-- 
+    Document   : filtro-visible
+    Created on : 21/10/2019, 02:00:09 AM
+    Author     : Juan
+--%>
+<%@page import="java.util.ArrayList"%>
+<%@page contentType="text/html" pageEncoding="UTF-8"%>
+<!DOCTYPE html>
+
+<!--
+ Filtros ocultos
+-->
+<%
+    ArrayList<String> opcionesFiltro = new ArrayList();
+    opcionesFiltro.add("Todo");
+    opcionesFiltro.add("Canales");
+    opcionesFiltro.add("Videos");
+    opcionesFiltro.add("Listas");
+    
+    ArrayList<String> opcionesOrden = new ArrayList();
+    opcionesOrden.add("Alfabético");
+    opcionesOrden.add("Fecha");
+    
+    String opcionFiltroSeleccionado = (String) request.getParameter("filtro");
+    if (opcionFiltroSeleccionado == null){
+        opcionFiltroSeleccionado = "Todo";
+    }
+    String opcionOrdenSeleccionado = (String) request.getParameter("orden");
+    if (opcionOrdenSeleccionado == null){
+        opcionOrdenSeleccionado = "Fecha";
+    }
+%>
+<div>                                       
+    <div class="form-row">
+        <div class="form-group col-md-3">
+            <label for="inputState">Filtrar por</label>
+            <select id="inputState" class="form-control" name="filtro" form="formBuscar">
+                <%                    
+                    for (String s : opcionesFiltro){
+                        String selected = "";
+                        if (opcionFiltroSeleccionado.equals(s)){
+                            selected = "selected";
+                        }
+                %>
+                <option <%= selected %>><%= s %></option>
+                <%}%>
+            </select>
+        </div>
+        <div class="form-group col-md-3">
+            <label for="inputState">Ordenar por</label>
+            <select id="inputState" class="form-control" name="orden" form="formBuscar" >
+                <%                    
+                    for (String s : opcionesOrden){
+                        String selected = "";
+                        if (opcionOrdenSeleccionado.equals(s)){
+                            selected = "selected";
+                        }
+                %>
+                <option <%= selected %>><%= s %></option>
+                <%}%>
+            </select>
+        </div>
+        <div class="form-group col-md-6">
+        </div>
+    </div> 
+</div>
+
diff --git a/UyTube_mobile/web/include/footer.html b/UyTube_mobile/web/include/footer.html
new file mode 100644
index 0000000000000000000000000000000000000000..533634417dcc980ea9516fc5ab22c8549dad9290
--- /dev/null
+++ b/UyTube_mobile/web/include/footer.html
@@ -0,0 +1,15 @@
+<%@page contentType="text/html" pageEncoding="UTF-8"%>
+<!DOCTYPE html>
+<!--
+    Pie de pagina
+-->
+<div class="container-fluid" style="padding-left: 0; padding-right: 0px;">
+    <div class="row">
+        <div class="col-12">
+            <footer class="footer">			
+                <small>Proyecto de Programción de Aplicaciones. Tecnólogo en Informática, UTEC </small><br>
+                <small>Integrantes: Juan Alvarez, Julio Arrieta, Carlos Balbiani, Facundo Camilo, Lucas Garrido</small>
+            </footer>
+        </div>
+    </div>
+</div>
\ No newline at end of file
diff --git a/UyTube_mobile/web/include/header-usuario.jsp b/UyTube_mobile/web/include/header-usuario.jsp
new file mode 100644
index 0000000000000000000000000000000000000000..03bef94840db42b273b65f871470451a9312ed78
--- /dev/null
+++ b/UyTube_mobile/web/include/header-usuario.jsp
@@ -0,0 +1,50 @@
+<%@page import="logica.controladores.CUsuario"%>
+<%@page import="logica.controladores.CUsuarioService"%>
+<%@page import="logica.controladores.DtUsuario"%>
+<%@page contentType="text/html" pageEncoding="UTF-8"%>
+<!DOCTYPE html>
+<!--
+To change this license header, choose License Headers in Project Properties.
+To change this template file, choose Tools | Templates
+and open the template in the editor.
+-->
+<div class="container-fluid" style="padding-left: 0; padding-right: 0px;">
+    <%
+        CUsuarioService servicio = new CUsuarioService();
+        CUsuario sys = servicio.getCUsuarioPort();
+        DtUsuario usu = sys.obtenerUsuarioActual();
+
+    %>
+    <div class="row">
+        <div class="col-12">
+            <header class="header">
+                <nav>
+                    <div class="navbar-dark item-header item-header1" id="navLogo">
+                        <label class="icon-menu1"></label>
+                        <a href="presentacion"><img class="fotoLogo" src="imagenes/logoChico.jpeg" alt="UyTube"></a>					
+                    </div>	
+                    <div class="navbar-dark item-header item-header2">					  
+                        <div id="navbarSupportedContent">		
+                            <form class="form-inline my-2 my-lg-0 formBuscar" action="buscar" id="formBuscar" method="get">
+                                <input class=" mr-sm-2" name="texto" type="search" placeholder="Buscar" aria-label="Search">
+                                <button class="btn btn-primary" id="btnBuscar" type="submit">Buscar</button>
+                            </form>
+                        </div>
+                    </div>
+                    <div class="perfil item-header item-header3 flex-row justify-content-lg-space-between">
+                        <div class="flex-row justify-content-lg-space-between alig-content-center" id="nombrePerfil">
+                            <a href="usuario-consultar?id=<%= usu.getNickname()%>">
+                                <%= usu.getNickname()%>
+                            </a>
+                        </div>	
+                        <div class="fotoPerfil">
+                            <a href="usuario-consultar?id=<%= usu.getNickname()%>">
+                                <img id="fotoPerfil" src="usuario-imagen?id=<%= usu.getNickname() %>" alt="Perfil">
+                            </a>
+                        </div>
+                    </div>
+                </nav>					
+            </header>
+        </div>
+    </div>		
+</div>
\ No newline at end of file
diff --git a/UyTube_mobile/web/include/header-visitante.jsp b/UyTube_mobile/web/include/header-visitante.jsp
new file mode 100644
index 0000000000000000000000000000000000000000..a1c34508f5e3fdb23612c315c65c3d2f30fa1489
--- /dev/null
+++ b/UyTube_mobile/web/include/header-visitante.jsp
@@ -0,0 +1,34 @@
+<%@page contentType="text/html" pageEncoding="UTF-8"%>
+<!DOCTYPE html>
+<!--
+Header para el visitante
+-->
+<div class="container-fluid" style="padding-left: 0; padding-right: 0px;">
+    <div class="row">
+        <div class="col-12">
+            <header class="header">
+                <nav>
+                    <div class="navbar-dark item-header item-header1" id="navLogo">
+                        <label class="icon-menu1"></label>
+                        <a href="presentacion"><img class="fotoLogo" src="imagenes/logoChico.jpeg" alt="UyTube"></a>					
+                    </div>	
+                    <div class="navbar-dark item-header item-header2">					  
+                        <div id="navbarSupportedContent">		
+                            <form class="form-inline my-2 my-lg-0 formBuscar" action="buscar" id="formBuscar" method="get">
+                                <input class=" mr-sm-2" name="texto" type="search" placeholder="Buscar" aria-label="Search">
+                                <button class="btn btn-primary" id="btnBuscar" type="submit">Buscar</button>
+                            </form>
+                        </div>
+                    </div>
+                    <div class="perfil item-header item-header3">
+                        <a href="inicio-sesion">
+                            <button type="button" id="iniciar-sesion" class="btn btn-outline-primary"><span class="icon-user-tie"></span> INICIAR SESIÓN</button>                            
+                        </a>                        
+                    </div>
+                </nav>
+
+            </header>
+
+        </div>
+    </div>		
+</div>
\ No newline at end of file
diff --git a/UyTube_mobile/web/include/menu-usuario.jsp b/UyTube_mobile/web/include/menu-usuario.jsp
new file mode 100644
index 0000000000000000000000000000000000000000..b6ac81c2f315a9d528d6e15d780f9fb970d0e625
--- /dev/null
+++ b/UyTube_mobile/web/include/menu-usuario.jsp
@@ -0,0 +1,42 @@
+<%@page import="logica.controladores.CUsuarioService"%>
+<%@page import="logica.controladores.CUsuario"%>
+<%@page import="java.util.ArrayList"%>
+<%@page import="logica.controladores.DtUsuario"%>
+
+<!DOCTYPE html>
+<%@page contentType="text/html" pageEncoding="UTF-8"%>
+<!--
+Menú para el usuario logueado   <%%>
+-->
+<aside class="menu" >	
+    <%
+        CUsuarioService servicio = new CUsuarioService();
+        CUsuario sys = servicio.getCUsuarioPort();
+        
+        DtUsuario usu = sys.obtenerUsuarioActual();
+        ArrayList<String> cate = (ArrayList<String>) sys.listarCategorias();
+    %>
+    <ul>	
+        <li class="titulo"> Inicio </li>
+        <li><a href="presentacion"><span class="icon-home1"></span> Inicio</a></li>
+        <li class="titulo"> <%= usu.getNickname()%> </li>
+        <li><a href="usuario-consultar?id=<%= usu.getNickname()%>" ><span class="icon-user"></span> Mi perfil</a></li>
+        <li><a href="usuario-consultar?id=<%= usu.getNickname()%>&ps=VIDEOS"><span class="icon-video-camera"></span> Mis videos</a></li> 
+        <li><a href="usuario-consultar?id=<%= usu.getNickname()%>&ps=LISTAS"><span class="icon-list"></span> Mis listas</a></li> 
+        <li class="titulo">Agregar</li>
+        <li><a href="video-agregar"><span class="icon-upload3"></span> Subir video</a></li>
+        <li><a href="lista-agregar"><span class="icon-add-to-list"></span> Crear lista</a></li>
+        <li class="titulo">Categorias</li>
+        <% 
+            for (String elem : cate) {
+                if(!elem.equals("UNDEFINED")){
+        %> 
+                <li><a href="buscar?categoria=<%= elem %>"><span class="icon-tag"></span> <%= elem %></a></li>
+        <%
+                }
+            }
+        %>
+        <li class="titulo"> Salir </li>
+        <li class="salir"><a href="cerrar-sesion"><span class="icon-exit"></span> Cerrar sesión</a></li>
+    </ul>					  
+</aside>
\ No newline at end of file
diff --git a/UyTube_mobile/web/include/menu-visitante.jsp b/UyTube_mobile/web/include/menu-visitante.jsp
new file mode 100644
index 0000000000000000000000000000000000000000..63418ba263d0ac501a37480be988aec6448e9cec
--- /dev/null
+++ b/UyTube_mobile/web/include/menu-visitante.jsp
@@ -0,0 +1,33 @@
+<%@page import="logica.controladores.CUsuario"%>
+<%@page import="logica.controladores.CUsuarioService"%>
+<%@page import="java.util.ArrayList"%>
+<%@page contentType="text/html" pageEncoding="UTF-8"%>
+<!DOCTYPE html>
+<!--
+Menú para el Visitante
+-->
+<aside class="menu" >							
+    <ul>
+        <li class="titulo"> Inicio </li>
+        <li><a href="presentacion"><span class="icon-home1"></span> Inicio</a></li>
+        <li class="titulo">Cuenta</li>
+        <li><a href="usuario-agregar"><span class="icon-add-user"></span> Crear cuenta</a></li>
+        <li><a href="inicio-sesion"><span class="icon-login"></span> Iniciar sesion</a></li>
+        <li class="titulo">Buscar</li>
+        <li><a href="buscar"><span class="icon-magnifying-glass"></span> Buscar</a></li>
+        <li class="titulo">Categoria</li>
+        <%
+            CUsuarioService servicio = new CUsuarioService();
+            CUsuario sys = servicio.getCUsuarioPort();
+
+            ArrayList<String> cate = (ArrayList<String>) sys.listarCategorias();
+            for (String elem : cate) {
+                if(!elem.equals("UNDEFINED")){
+        %> 
+                <li><a href="buscar?categoria=<%= elem %>"><span class="icon-tag"></span> <%= elem %></a></li>
+        <%
+                }
+            }
+        %>
+    </ul>					  
+</aside>
\ No newline at end of file
diff --git a/UyTube_mobile/web/include/ventana-modal.html b/UyTube_mobile/web/include/ventana-modal.html
new file mode 100644
index 0000000000000000000000000000000000000000..a562564b0518dc1f16b9bee1a04f0dc96166d65b
--- /dev/null
+++ b/UyTube_mobile/web/include/ventana-modal.html
@@ -0,0 +1,29 @@
+<%@page contentType="text/html" pageEncoding="UTF-8"%>
+<!DOCTYPE html>
+<!--
+    Ventana emergente para responder comentarios
+-->
+<div class="modal fade" id="exampleModal" tabindex="-1" role="dialog" aria-labelledby="exampleModalLabel" aria-hidden="true">
+    <div class="modal-dialog" role="document">
+        <div class="modal-content">
+            <div class="modal-header">
+                <h5 class="modal-title" id="exampleModalLabel">Responder Comentario</h5>
+                <button type="button" class="close" data-dismiss="modal" aria-label="Close">
+                    <span aria-hidden="true">&times;</span>
+                </button>
+            </div>
+            <div class="modal-body">
+                <form >
+                    <div class="form-group">
+                        <label for="message-text" class="col-form-label">Ingrese el texto de su comentario:</label>
+                        <textarea class="form-control" id="txtResponder"></textarea>
+                    </div>
+                </form>
+            </div>
+            <div class="modal-footer">
+                <button type="button" class="btn btn-secondary" data-dismiss="modal">Cerrar</button>
+                <button type="button" class="btn btn-primary" onclick="responderComentario()">Enviar</button>
+            </div>
+        </div>
+    </div>
+</div>
\ No newline at end of file
diff --git a/UyTube_mobile/web/include/ventana-modal_baja.html b/UyTube_mobile/web/include/ventana-modal_baja.html
new file mode 100644
index 0000000000000000000000000000000000000000..b974bc6aa4a6222e5309ce5056996fdb74c2cd50
--- /dev/null
+++ b/UyTube_mobile/web/include/ventana-modal_baja.html
@@ -0,0 +1,36 @@
+<%@page contentType="text/html" pageEncoding="UTF-8"%>
+<!DOCTYPE html>
+<!--
+    Ventana emergente para responder comentarios
+-->
+
+<script>
+var bajaUsuario = function(){
+       $("#exampleModal .close").click(); //Cierra el modal
+        window.location.href = "usuario-borrar";
+};
+</script>
+
+<div class="modal fade" id="exampleModal" tabindex="-1" role="dialog" aria-labelledby="exampleModalLabel" aria-hidden="true">
+    <div class="modal-dialog" role="document">
+        <div class="modal-content">
+            <div class="modal-header">
+                <h5 class="modal-title" id="exampleModalLabel">Eliminar usuario</h5>
+                <button type="button" class="close" data-dismiss="modal" aria-label="Close">
+                    <span aria-hidden="true">&times;</span>
+                </button>
+            </div>
+            <div class="modal-body">
+                <form method="get" action="usuario-borra">
+                    <div class="form-group">
+                        <label for="message-text" class="col-form-label">Realmente desea darse de baja</label>
+                    </div>
+                </form>
+            </div>
+            <div class="modal-footer">
+                <button type="button" class="btn btn-secondary" data-dismiss="modal">Cancelar</button>
+                <button type="submit" class="btn btn-danger" onclick="bajaUsuario()">Eliminar</button>
+            </div>
+        </div>
+    </div>
+</div>
\ No newline at end of file
diff --git a/UyTube_mobile/web/include/widgets.html b/UyTube_mobile/web/include/widgets.html
new file mode 100644
index 0000000000000000000000000000000000000000..eb7b8653f5a2b63a65cd9e78903fdd310f805beb
--- /dev/null
+++ b/UyTube_mobile/web/include/widgets.html
@@ -0,0 +1,22 @@
+<%@page contentType="text/html" pageEncoding="UTF-8"%>
+<!DOCTYPE html>
+<!--
+    Widgets de la parte anterior al pie de pagina
+-->
+<div class="container-fluid" style="padding-left: 0; padding-right: 0px;">
+    <div class="row">
+        <div class="col-12">
+            <section class="widgets">	
+                <div class="widget-1 ">
+                    <a href="http://utec.edu.uy"><img src="imagenes/logo_utec-150-x-105.png" alt="UTEC" id="utec" class="img-widget"></a>
+                    <a href="http://www.universidad.edu.uy/"><img src="imagenes/udelar.png" alt="UDELAR" id="udelar" class="img-widget"></a>		
+                </div>
+                <div class="widget-2">
+                    <a href="https://twitter.com/UTECuy"><img src="imagenes/twiter.png" alt="twiter" id="twiter" class="img-widget"></a>	
+                    <a href="http://www.facebook.com/utecuy"><img src="imagenes/facebook.png" alt="facebook" id="facebook" class="img-widget"></a>
+                    <a href="https://www.instagram.com/utec_uy"><img src="imagenes/instagram.jpeg" alt="instagram" id="instagram" class="img-widget"></a>
+                </div>												
+            </section>
+        </div>
+    </div>
+</div>	
diff --git a/UyTube_mobile/web/index.jsp b/UyTube_mobile/web/index.jsp
new file mode 100644
index 0000000000000000000000000000000000000000..f0e7150c26d53f26d71b00c36401fa2758b5faf1
--- /dev/null
+++ b/UyTube_mobile/web/index.jsp
@@ -0,0 +1,13 @@
+<%-- 
+    Document   : Presentacion
+    Created on : 02/10/2019, 08:56:04 AM
+    Author     : administrador
+--%>
+
+<%@page contentType="text/html" pageEncoding="UTF-8"%>
+<!DOCTYPE html>
+<html lang="es">
+    <body>
+         <% response.sendRedirect("presentacion"); %>
+    </body>
+</html>
\ No newline at end of file
diff --git a/UyTube_mobile/web/js/alta-modificar-lista.js b/UyTube_mobile/web/js/alta-modificar-lista.js
new file mode 100644
index 0000000000000000000000000000000000000000..0bb85f269e5edeb48ee57323b584214987948ecb
--- /dev/null
+++ b/UyTube_mobile/web/js/alta-modificar-lista.js
@@ -0,0 +1,11 @@
+$("#nombreLista").keyup(function(){
+    var valorIngresado = $("#nombreLista").val();
+    
+    $.get("/uytube/consultar",
+        {
+          accion: "validarNombreLista",
+          dato: valorIngresado
+        }, function(respuesta, status){
+        $("#msjNombre").text(respuesta);
+    });
+}); 
diff --git a/UyTube_mobile/web/js/alta-modificar-video.js b/UyTube_mobile/web/js/alta-modificar-video.js
new file mode 100644
index 0000000000000000000000000000000000000000..dca6aa9d08836fa49b3cf73d5c48b38a4b12b993
--- /dev/null
+++ b/UyTube_mobile/web/js/alta-modificar-video.js
@@ -0,0 +1,17 @@
+$("#inputNombre").keyup(function(){
+    var idVideo = $("#inputNombre").attr("idVideo");
+    var valorIngresado = $("#inputNombre").val();
+    
+    if (idVideo === undefined){
+        idVideo = 0;
+    }
+    
+    $.get("/uytube/consultar",
+        {
+          idVideo: idVideo,
+          accion: "validarNombreVideo",
+          dato: valorIngresado
+        }, function(respuesta, status){
+        $("#msjNombre").text(respuesta);
+    });
+}); 
diff --git a/UyTube_mobile/web/js/alta-usuario.js b/UyTube_mobile/web/js/alta-usuario.js
new file mode 100644
index 0000000000000000000000000000000000000000..b65cbfa85dee6bbff4e3451272376ce73ebe1d8c
--- /dev/null
+++ b/UyTube_mobile/web/js/alta-usuario.js
@@ -0,0 +1,61 @@
+
+//Lee lo que se escribe en el campo usuario
+$("#input_Nickname").keyup(function(){
+    //Obtiene el valor ingresaro
+    var valorIngresado = $("#input_Nickname").val();
+    $("#input_Nombre_canal").val($("#input_Nickname").val());
+    
+    //Realiza la consulta utilizando AJAX al servidor
+    $.get("/uytube/consultar",
+        {
+          dato: valorIngresado,
+          accion: "validarNickname" 
+        }, function(respuesta, status){
+        //alert("Data: " + respuesta + "\nStatus: " + status);
+        $("#msjNickname").text(respuesta);
+        if(respuesta == "Este nickname no está disponible"){
+          $("#msjNickname").css("color","#dc3545");
+        }
+    });
+}); 
+
+
+//Lee lo que se escribe en el campo usuario
+$("#email").keyup(function(){
+    //Obtiene el valor ingresaro
+    var valorIngresado = $("#email").val();
+    
+    //Realiza la consulta utilizando AJAX al servidor
+    $.get("/uytube/consultar",
+        {
+          dato: valorIngresado,
+          accion: "validarEmail" 
+        }, function(respuesta, status){
+        //alert("Data: " + respuesta + "\nStatus: " + status);
+        $("#msjEmail").text(respuesta);
+        $("#msjEmail").css("color","#dc3545");
+    });
+}); 
+
+var check = function () {
+  if (document.getElementById('input_Contrasenia').value ==document.getElementById('input_Repetir_contraseña').value) {
+      document.getElementById('message').style.color = 'green';
+      document.getElementById('message').innerHTML = 'Correcto';
+      document.getElementById("btn_Registrarme").disabled = false;
+      if (document.getElementById('input_Contrasenia').value == ""){
+          document.getElementById('message').style.color = '#dc3545';
+          document.getElementById('message').innerHTML = 'Ingrese la contraseña';
+          document.getElementById("btn_Registrarme").disabled = true;
+      }
+  } else {
+      document.getElementById('message').style.color = '#dc3545';
+      document.getElementById('message').innerHTML = 'No son iguales';
+      document.getElementById("btn_Registrarme").disabled = true;
+  }
+}
+
+var borrar = function(){
+  $("#message").text("");
+  $("#input_Contrasenia").val("");
+  $("#input_Repetir_contraseña").val("");
+};
\ No newline at end of file
diff --git a/UyTube_mobile/web/js/bootstrap.bundle.min.js b/UyTube_mobile/web/js/bootstrap.bundle.min.js
new file mode 100644
index 0000000000000000000000000000000000000000..43203684c3dab66d6c4bc12062862d72d664fce8
--- /dev/null
+++ b/UyTube_mobile/web/js/bootstrap.bundle.min.js
@@ -0,0 +1,7 @@
+/*!
+  * Bootstrap v4.3.1 (https://getbootstrap.com/)
+  * Copyright 2011-2019 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)
+  * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
+  */
+!function(t,e){"object"==typeof exports&&"undefined"!=typeof module?e(exports,require("jquery")):"function"==typeof define&&define.amd?define(["exports","jquery"],e):e((t=t||self).bootstrap={},t.jQuery)}(this,function(t,p){"use strict";function i(t,e){for(var n=0;n<e.length;n++){var i=e[n];i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(t,i.key,i)}}function s(t,e,n){return e&&i(t.prototype,e),n&&i(t,n),t}function l(o){for(var t=1;t<arguments.length;t++){var r=null!=arguments[t]?arguments[t]:{},e=Object.keys(r);"function"==typeof Object.getOwnPropertySymbols&&(e=e.concat(Object.getOwnPropertySymbols(r).filter(function(t){return Object.getOwnPropertyDescriptor(r,t).enumerable}))),e.forEach(function(t){var e,n,i;e=o,i=r[n=t],n in e?Object.defineProperty(e,n,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[n]=i})}return o}p=p&&p.hasOwnProperty("default")?p.default:p;var e="transitionend";function n(t){var e=this,n=!1;return p(this).one(m.TRANSITION_END,function(){n=!0}),setTimeout(function(){n||m.triggerTransitionEnd(e)},t),this}var m={TRANSITION_END:"bsTransitionEnd",getUID:function(t){for(;t+=~~(1e6*Math.random()),document.getElementById(t););return t},getSelectorFromElement:function(t){var e=t.getAttribute("data-target");if(!e||"#"===e){var n=t.getAttribute("href");e=n&&"#"!==n?n.trim():""}try{return document.querySelector(e)?e:null}catch(t){return null}},getTransitionDurationFromElement:function(t){if(!t)return 0;var e=p(t).css("transition-duration"),n=p(t).css("transition-delay"),i=parseFloat(e),o=parseFloat(n);return i||o?(e=e.split(",")[0],n=n.split(",")[0],1e3*(parseFloat(e)+parseFloat(n))):0},reflow:function(t){return t.offsetHeight},triggerTransitionEnd:function(t){p(t).trigger(e)},supportsTransitionEnd:function(){return Boolean(e)},isElement:function(t){return(t[0]||t).nodeType},typeCheckConfig:function(t,e,n){for(var i in n)if(Object.prototype.hasOwnProperty.call(n,i)){var o=n[i],r=e[i],s=r&&m.isElement(r)?"element":(a=r,{}.toString.call(a).match(/\s([a-z]+)/i)[1].toLowerCase());if(!new RegExp(o).test(s))throw new Error(t.toUpperCase()+': Option "'+i+'" provided type "'+s+'" but expected type "'+o+'".')}var a},findShadowRoot:function(t){if(!document.documentElement.attachShadow)return null;if("function"!=typeof t.getRootNode)return t instanceof ShadowRoot?t:t.parentNode?m.findShadowRoot(t.parentNode):null;var e=t.getRootNode();return e instanceof ShadowRoot?e:null}};p.fn.emulateTransitionEnd=n,p.event.special[m.TRANSITION_END]={bindType:e,delegateType:e,handle:function(t){if(p(t.target).is(this))return t.handleObj.handler.apply(this,arguments)}};var o="alert",r="bs.alert",a="."+r,c=p.fn[o],h={CLOSE:"close"+a,CLOSED:"closed"+a,CLICK_DATA_API:"click"+a+".data-api"},u="alert",f="fade",d="show",g=function(){function i(t){this._element=t}var t=i.prototype;return t.close=function(t){var e=this._element;t&&(e=this._getRootElement(t)),this._triggerCloseEvent(e).isDefaultPrevented()||this._removeElement(e)},t.dispose=function(){p.removeData(this._element,r),this._element=null},t._getRootElement=function(t){var e=m.getSelectorFromElement(t),n=!1;return e&&(n=document.querySelector(e)),n||(n=p(t).closest("."+u)[0]),n},t._triggerCloseEvent=function(t){var e=p.Event(h.CLOSE);return p(t).trigger(e),e},t._removeElement=function(e){var n=this;if(p(e).removeClass(d),p(e).hasClass(f)){var t=m.getTransitionDurationFromElement(e);p(e).one(m.TRANSITION_END,function(t){return n._destroyElement(e,t)}).emulateTransitionEnd(t)}else this._destroyElement(e)},t._destroyElement=function(t){p(t).detach().trigger(h.CLOSED).remove()},i._jQueryInterface=function(n){return this.each(function(){var t=p(this),e=t.data(r);e||(e=new i(this),t.data(r,e)),"close"===n&&e[n](this)})},i._handleDismiss=function(e){return function(t){t&&t.preventDefault(),e.close(this)}},s(i,null,[{key:"VERSION",get:function(){return"4.3.1"}}]),i}();p(document).on(h.CLICK_DATA_API,'[data-dismiss="alert"]',g._handleDismiss(new g)),p.fn[o]=g._jQueryInterface,p.fn[o].Constructor=g,p.fn[o].noConflict=function(){return p.fn[o]=c,g._jQueryInterface};var _="button",v="bs.button",y="."+v,E=".data-api",b=p.fn[_],w="active",C="btn",T="focus",S='[data-toggle^="button"]',D='[data-toggle="buttons"]',I='input:not([type="hidden"])',A=".active",O=".btn",N={CLICK_DATA_API:"click"+y+E,FOCUS_BLUR_DATA_API:"focus"+y+E+" blur"+y+E},k=function(){function n(t){this._element=t}var t=n.prototype;return t.toggle=function(){var t=!0,e=!0,n=p(this._element).closest(D)[0];if(n){var i=this._element.querySelector(I);if(i){if("radio"===i.type)if(i.checked&&this._element.classList.contains(w))t=!1;else{var o=n.querySelector(A);o&&p(o).removeClass(w)}if(t){if(i.hasAttribute("disabled")||n.hasAttribute("disabled")||i.classList.contains("disabled")||n.classList.contains("disabled"))return;i.checked=!this._element.classList.contains(w),p(i).trigger("change")}i.focus(),e=!1}}e&&this._element.setAttribute("aria-pressed",!this._element.classList.contains(w)),t&&p(this._element).toggleClass(w)},t.dispose=function(){p.removeData(this._element,v),this._element=null},n._jQueryInterface=function(e){return this.each(function(){var t=p(this).data(v);t||(t=new n(this),p(this).data(v,t)),"toggle"===e&&t[e]()})},s(n,null,[{key:"VERSION",get:function(){return"4.3.1"}}]),n}();p(document).on(N.CLICK_DATA_API,S,function(t){t.preventDefault();var e=t.target;p(e).hasClass(C)||(e=p(e).closest(O)),k._jQueryInterface.call(p(e),"toggle")}).on(N.FOCUS_BLUR_DATA_API,S,function(t){var e=p(t.target).closest(O)[0];p(e).toggleClass(T,/^focus(in)?$/.test(t.type))}),p.fn[_]=k._jQueryInterface,p.fn[_].Constructor=k,p.fn[_].noConflict=function(){return p.fn[_]=b,k._jQueryInterface};var L="carousel",x="bs.carousel",P="."+x,H=".data-api",j=p.fn[L],R={interval:5e3,keyboard:!0,slide:!1,pause:"hover",wrap:!0,touch:!0},F={interval:"(number|boolean)",keyboard:"boolean",slide:"(boolean|string)",pause:"(string|boolean)",wrap:"boolean",touch:"boolean"},M="next",W="prev",U="left",B="right",q={SLIDE:"slide"+P,SLID:"slid"+P,KEYDOWN:"keydown"+P,MOUSEENTER:"mouseenter"+P,MOUSELEAVE:"mouseleave"+P,TOUCHSTART:"touchstart"+P,TOUCHMOVE:"touchmove"+P,TOUCHEND:"touchend"+P,POINTERDOWN:"pointerdown"+P,POINTERUP:"pointerup"+P,DRAG_START:"dragstart"+P,LOAD_DATA_API:"load"+P+H,CLICK_DATA_API:"click"+P+H},K="carousel",Q="active",V="slide",Y="carousel-item-right",z="carousel-item-left",X="carousel-item-next",G="carousel-item-prev",$="pointer-event",J=".active",Z=".active.carousel-item",tt=".carousel-item",et=".carousel-item img",nt=".carousel-item-next, .carousel-item-prev",it=".carousel-indicators",ot="[data-slide], [data-slide-to]",rt='[data-ride="carousel"]',st={TOUCH:"touch",PEN:"pen"},at=function(){function r(t,e){this._items=null,this._interval=null,this._activeElement=null,this._isPaused=!1,this._isSliding=!1,this.touchTimeout=null,this.touchStartX=0,this.touchDeltaX=0,this._config=this._getConfig(e),this._element=t,this._indicatorsElement=this._element.querySelector(it),this._touchSupported="ontouchstart"in document.documentElement||0<navigator.maxTouchPoints,this._pointerEvent=Boolean(window.PointerEvent||window.MSPointerEvent),this._addEventListeners()}var t=r.prototype;return t.next=function(){this._isSliding||this._slide(M)},t.nextWhenVisible=function(){!document.hidden&&p(this._element).is(":visible")&&"hidden"!==p(this._element).css("visibility")&&this.next()},t.prev=function(){this._isSliding||this._slide(W)},t.pause=function(t){t||(this._isPaused=!0),this._element.querySelector(nt)&&(m.triggerTransitionEnd(this._element),this.cycle(!0)),clearInterval(this._interval),this._interval=null},t.cycle=function(t){t||(this._isPaused=!1),this._interval&&(clearInterval(this._interval),this._interval=null),this._config.interval&&!this._isPaused&&(this._interval=setInterval((document.visibilityState?this.nextWhenVisible:this.next).bind(this),this._config.interval))},t.to=function(t){var e=this;this._activeElement=this._element.querySelector(Z);var n=this._getItemIndex(this._activeElement);if(!(t>this._items.length-1||t<0))if(this._isSliding)p(this._element).one(q.SLID,function(){return e.to(t)});else{if(n===t)return this.pause(),void this.cycle();var i=n<t?M:W;this._slide(i,this._items[t])}},t.dispose=function(){p(this._element).off(P),p.removeData(this._element,x),this._items=null,this._config=null,this._element=null,this._interval=null,this._isPaused=null,this._isSliding=null,this._activeElement=null,this._indicatorsElement=null},t._getConfig=function(t){return t=l({},R,t),m.typeCheckConfig(L,t,F),t},t._handleSwipe=function(){var t=Math.abs(this.touchDeltaX);if(!(t<=40)){var e=t/this.touchDeltaX;0<e&&this.prev(),e<0&&this.next()}},t._addEventListeners=function(){var e=this;this._config.keyboard&&p(this._element).on(q.KEYDOWN,function(t){return e._keydown(t)}),"hover"===this._config.pause&&p(this._element).on(q.MOUSEENTER,function(t){return e.pause(t)}).on(q.MOUSELEAVE,function(t){return e.cycle(t)}),this._config.touch&&this._addTouchEventListeners()},t._addTouchEventListeners=function(){var n=this;if(this._touchSupported){var e=function(t){n._pointerEvent&&st[t.originalEvent.pointerType.toUpperCase()]?n.touchStartX=t.originalEvent.clientX:n._pointerEvent||(n.touchStartX=t.originalEvent.touches[0].clientX)},i=function(t){n._pointerEvent&&st[t.originalEvent.pointerType.toUpperCase()]&&(n.touchDeltaX=t.originalEvent.clientX-n.touchStartX),n._handleSwipe(),"hover"===n._config.pause&&(n.pause(),n.touchTimeout&&clearTimeout(n.touchTimeout),n.touchTimeout=setTimeout(function(t){return n.cycle(t)},500+n._config.interval))};p(this._element.querySelectorAll(et)).on(q.DRAG_START,function(t){return t.preventDefault()}),this._pointerEvent?(p(this._element).on(q.POINTERDOWN,function(t){return e(t)}),p(this._element).on(q.POINTERUP,function(t){return i(t)}),this._element.classList.add($)):(p(this._element).on(q.TOUCHSTART,function(t){return e(t)}),p(this._element).on(q.TOUCHMOVE,function(t){var e;(e=t).originalEvent.touches&&1<e.originalEvent.touches.length?n.touchDeltaX=0:n.touchDeltaX=e.originalEvent.touches[0].clientX-n.touchStartX}),p(this._element).on(q.TOUCHEND,function(t){return i(t)}))}},t._keydown=function(t){if(!/input|textarea/i.test(t.target.tagName))switch(t.which){case 37:t.preventDefault(),this.prev();break;case 39:t.preventDefault(),this.next()}},t._getItemIndex=function(t){return this._items=t&&t.parentNode?[].slice.call(t.parentNode.querySelectorAll(tt)):[],this._items.indexOf(t)},t._getItemByDirection=function(t,e){var n=t===M,i=t===W,o=this._getItemIndex(e),r=this._items.length-1;if((i&&0===o||n&&o===r)&&!this._config.wrap)return e;var s=(o+(t===W?-1:1))%this._items.length;return-1===s?this._items[this._items.length-1]:this._items[s]},t._triggerSlideEvent=function(t,e){var n=this._getItemIndex(t),i=this._getItemIndex(this._element.querySelector(Z)),o=p.Event(q.SLIDE,{relatedTarget:t,direction:e,from:i,to:n});return p(this._element).trigger(o),o},t._setActiveIndicatorElement=function(t){if(this._indicatorsElement){var e=[].slice.call(this._indicatorsElement.querySelectorAll(J));p(e).removeClass(Q);var n=this._indicatorsElement.children[this._getItemIndex(t)];n&&p(n).addClass(Q)}},t._slide=function(t,e){var n,i,o,r=this,s=this._element.querySelector(Z),a=this._getItemIndex(s),l=e||s&&this._getItemByDirection(t,s),c=this._getItemIndex(l),h=Boolean(this._interval);if(o=t===M?(n=z,i=X,U):(n=Y,i=G,B),l&&p(l).hasClass(Q))this._isSliding=!1;else if(!this._triggerSlideEvent(l,o).isDefaultPrevented()&&s&&l){this._isSliding=!0,h&&this.pause(),this._setActiveIndicatorElement(l);var u=p.Event(q.SLID,{relatedTarget:l,direction:o,from:a,to:c});if(p(this._element).hasClass(V)){p(l).addClass(i),m.reflow(l),p(s).addClass(n),p(l).addClass(n);var f=parseInt(l.getAttribute("data-interval"),10);this._config.interval=f?(this._config.defaultInterval=this._config.defaultInterval||this._config.interval,f):this._config.defaultInterval||this._config.interval;var d=m.getTransitionDurationFromElement(s);p(s).one(m.TRANSITION_END,function(){p(l).removeClass(n+" "+i).addClass(Q),p(s).removeClass(Q+" "+i+" "+n),r._isSliding=!1,setTimeout(function(){return p(r._element).trigger(u)},0)}).emulateTransitionEnd(d)}else p(s).removeClass(Q),p(l).addClass(Q),this._isSliding=!1,p(this._element).trigger(u);h&&this.cycle()}},r._jQueryInterface=function(i){return this.each(function(){var t=p(this).data(x),e=l({},R,p(this).data());"object"==typeof i&&(e=l({},e,i));var n="string"==typeof i?i:e.slide;if(t||(t=new r(this,e),p(this).data(x,t)),"number"==typeof i)t.to(i);else if("string"==typeof n){if("undefined"==typeof t[n])throw new TypeError('No method named "'+n+'"');t[n]()}else e.interval&&e.ride&&(t.pause(),t.cycle())})},r._dataApiClickHandler=function(t){var e=m.getSelectorFromElement(this);if(e){var n=p(e)[0];if(n&&p(n).hasClass(K)){var i=l({},p(n).data(),p(this).data()),o=this.getAttribute("data-slide-to");o&&(i.interval=!1),r._jQueryInterface.call(p(n),i),o&&p(n).data(x).to(o),t.preventDefault()}}},s(r,null,[{key:"VERSION",get:function(){return"4.3.1"}},{key:"Default",get:function(){return R}}]),r}();p(document).on(q.CLICK_DATA_API,ot,at._dataApiClickHandler),p(window).on(q.LOAD_DATA_API,function(){for(var t=[].slice.call(document.querySelectorAll(rt)),e=0,n=t.length;e<n;e++){var i=p(t[e]);at._jQueryInterface.call(i,i.data())}}),p.fn[L]=at._jQueryInterface,p.fn[L].Constructor=at,p.fn[L].noConflict=function(){return p.fn[L]=j,at._jQueryInterface};var lt="collapse",ct="bs.collapse",ht="."+ct,ut=p.fn[lt],ft={toggle:!0,parent:""},dt={toggle:"boolean",parent:"(string|element)"},pt={SHOW:"show"+ht,SHOWN:"shown"+ht,HIDE:"hide"+ht,HIDDEN:"hidden"+ht,CLICK_DATA_API:"click"+ht+".data-api"},mt="show",gt="collapse",_t="collapsing",vt="collapsed",yt="width",Et="height",bt=".show, .collapsing",wt='[data-toggle="collapse"]',Ct=function(){function a(e,t){this._isTransitioning=!1,this._element=e,this._config=this._getConfig(t),this._triggerArray=[].slice.call(document.querySelectorAll('[data-toggle="collapse"][href="#'+e.id+'"],[data-toggle="collapse"][data-target="#'+e.id+'"]'));for(var n=[].slice.call(document.querySelectorAll(wt)),i=0,o=n.length;i<o;i++){var r=n[i],s=m.getSelectorFromElement(r),a=[].slice.call(document.querySelectorAll(s)).filter(function(t){return t===e});null!==s&&0<a.length&&(this._selector=s,this._triggerArray.push(r))}this._parent=this._config.parent?this._getParent():null,this._config.parent||this._addAriaAndCollapsedClass(this._element,this._triggerArray),this._config.toggle&&this.toggle()}var t=a.prototype;return t.toggle=function(){p(this._element).hasClass(mt)?this.hide():this.show()},t.show=function(){var t,e,n=this;if(!this._isTransitioning&&!p(this._element).hasClass(mt)&&(this._parent&&0===(t=[].slice.call(this._parent.querySelectorAll(bt)).filter(function(t){return"string"==typeof n._config.parent?t.getAttribute("data-parent")===n._config.parent:t.classList.contains(gt)})).length&&(t=null),!(t&&(e=p(t).not(this._selector).data(ct))&&e._isTransitioning))){var i=p.Event(pt.SHOW);if(p(this._element).trigger(i),!i.isDefaultPrevented()){t&&(a._jQueryInterface.call(p(t).not(this._selector),"hide"),e||p(t).data(ct,null));var o=this._getDimension();p(this._element).removeClass(gt).addClass(_t),this._element.style[o]=0,this._triggerArray.length&&p(this._triggerArray).removeClass(vt).attr("aria-expanded",!0),this.setTransitioning(!0);var r="scroll"+(o[0].toUpperCase()+o.slice(1)),s=m.getTransitionDurationFromElement(this._element);p(this._element).one(m.TRANSITION_END,function(){p(n._element).removeClass(_t).addClass(gt).addClass(mt),n._element.style[o]="",n.setTransitioning(!1),p(n._element).trigger(pt.SHOWN)}).emulateTransitionEnd(s),this._element.style[o]=this._element[r]+"px"}}},t.hide=function(){var t=this;if(!this._isTransitioning&&p(this._element).hasClass(mt)){var e=p.Event(pt.HIDE);if(p(this._element).trigger(e),!e.isDefaultPrevented()){var n=this._getDimension();this._element.style[n]=this._element.getBoundingClientRect()[n]+"px",m.reflow(this._element),p(this._element).addClass(_t).removeClass(gt).removeClass(mt);var i=this._triggerArray.length;if(0<i)for(var o=0;o<i;o++){var r=this._triggerArray[o],s=m.getSelectorFromElement(r);if(null!==s)p([].slice.call(document.querySelectorAll(s))).hasClass(mt)||p(r).addClass(vt).attr("aria-expanded",!1)}this.setTransitioning(!0);this._element.style[n]="";var a=m.getTransitionDurationFromElement(this._element);p(this._element).one(m.TRANSITION_END,function(){t.setTransitioning(!1),p(t._element).removeClass(_t).addClass(gt).trigger(pt.HIDDEN)}).emulateTransitionEnd(a)}}},t.setTransitioning=function(t){this._isTransitioning=t},t.dispose=function(){p.removeData(this._element,ct),this._config=null,this._parent=null,this._element=null,this._triggerArray=null,this._isTransitioning=null},t._getConfig=function(t){return(t=l({},ft,t)).toggle=Boolean(t.toggle),m.typeCheckConfig(lt,t,dt),t},t._getDimension=function(){return p(this._element).hasClass(yt)?yt:Et},t._getParent=function(){var t,n=this;m.isElement(this._config.parent)?(t=this._config.parent,"undefined"!=typeof this._config.parent.jquery&&(t=this._config.parent[0])):t=document.querySelector(this._config.parent);var e='[data-toggle="collapse"][data-parent="'+this._config.parent+'"]',i=[].slice.call(t.querySelectorAll(e));return p(i).each(function(t,e){n._addAriaAndCollapsedClass(a._getTargetFromElement(e),[e])}),t},t._addAriaAndCollapsedClass=function(t,e){var n=p(t).hasClass(mt);e.length&&p(e).toggleClass(vt,!n).attr("aria-expanded",n)},a._getTargetFromElement=function(t){var e=m.getSelectorFromElement(t);return e?document.querySelector(e):null},a._jQueryInterface=function(i){return this.each(function(){var t=p(this),e=t.data(ct),n=l({},ft,t.data(),"object"==typeof i&&i?i:{});if(!e&&n.toggle&&/show|hide/.test(i)&&(n.toggle=!1),e||(e=new a(this,n),t.data(ct,e)),"string"==typeof i){if("undefined"==typeof e[i])throw new TypeError('No method named "'+i+'"');e[i]()}})},s(a,null,[{key:"VERSION",get:function(){return"4.3.1"}},{key:"Default",get:function(){return ft}}]),a}();p(document).on(pt.CLICK_DATA_API,wt,function(t){"A"===t.currentTarget.tagName&&t.preventDefault();var n=p(this),e=m.getSelectorFromElement(this),i=[].slice.call(document.querySelectorAll(e));p(i).each(function(){var t=p(this),e=t.data(ct)?"toggle":n.data();Ct._jQueryInterface.call(t,e)})}),p.fn[lt]=Ct._jQueryInterface,p.fn[lt].Constructor=Ct,p.fn[lt].noConflict=function(){return p.fn[lt]=ut,Ct._jQueryInterface};for(var Tt="undefined"!=typeof window&&"undefined"!=typeof document,St=["Edge","Trident","Firefox"],Dt=0,It=0;It<St.length;It+=1)if(Tt&&0<=navigator.userAgent.indexOf(St[It])){Dt=1;break}var At=Tt&&window.Promise?function(t){var e=!1;return function(){e||(e=!0,window.Promise.resolve().then(function(){e=!1,t()}))}}:function(t){var e=!1;return function(){e||(e=!0,setTimeout(function(){e=!1,t()},Dt))}};function Ot(t){return t&&"[object Function]"==={}.toString.call(t)}function Nt(t,e){if(1!==t.nodeType)return[];var n=t.ownerDocument.defaultView.getComputedStyle(t,null);return e?n[e]:n}function kt(t){return"HTML"===t.nodeName?t:t.parentNode||t.host}function Lt(t){if(!t)return document.body;switch(t.nodeName){case"HTML":case"BODY":return t.ownerDocument.body;case"#document":return t.body}var e=Nt(t),n=e.overflow,i=e.overflowX,o=e.overflowY;return/(auto|scroll|overlay)/.test(n+o+i)?t:Lt(kt(t))}var xt=Tt&&!(!window.MSInputMethodContext||!document.documentMode),Pt=Tt&&/MSIE 10/.test(navigator.userAgent);function Ht(t){return 11===t?xt:10===t?Pt:xt||Pt}function jt(t){if(!t)return document.documentElement;for(var e=Ht(10)?document.body:null,n=t.offsetParent||null;n===e&&t.nextElementSibling;)n=(t=t.nextElementSibling).offsetParent;var i=n&&n.nodeName;return i&&"BODY"!==i&&"HTML"!==i?-1!==["TH","TD","TABLE"].indexOf(n.nodeName)&&"static"===Nt(n,"position")?jt(n):n:t?t.ownerDocument.documentElement:document.documentElement}function Rt(t){return null!==t.parentNode?Rt(t.parentNode):t}function Ft(t,e){if(!(t&&t.nodeType&&e&&e.nodeType))return document.documentElement;var n=t.compareDocumentPosition(e)&Node.DOCUMENT_POSITION_FOLLOWING,i=n?t:e,o=n?e:t,r=document.createRange();r.setStart(i,0),r.setEnd(o,0);var s,a,l=r.commonAncestorContainer;if(t!==l&&e!==l||i.contains(o))return"BODY"===(a=(s=l).nodeName)||"HTML"!==a&&jt(s.firstElementChild)!==s?jt(l):l;var c=Rt(t);return c.host?Ft(c.host,e):Ft(t,Rt(e).host)}function Mt(t){var e="top"===(1<arguments.length&&void 0!==arguments[1]?arguments[1]:"top")?"scrollTop":"scrollLeft",n=t.nodeName;if("BODY"!==n&&"HTML"!==n)return t[e];var i=t.ownerDocument.documentElement;return(t.ownerDocument.scrollingElement||i)[e]}function Wt(t,e){var n="x"===e?"Left":"Top",i="Left"===n?"Right":"Bottom";return parseFloat(t["border"+n+"Width"],10)+parseFloat(t["border"+i+"Width"],10)}function Ut(t,e,n,i){return Math.max(e["offset"+t],e["scroll"+t],n["client"+t],n["offset"+t],n["scroll"+t],Ht(10)?parseInt(n["offset"+t])+parseInt(i["margin"+("Height"===t?"Top":"Left")])+parseInt(i["margin"+("Height"===t?"Bottom":"Right")]):0)}function Bt(t){var e=t.body,n=t.documentElement,i=Ht(10)&&getComputedStyle(n);return{height:Ut("Height",e,n,i),width:Ut("Width",e,n,i)}}var qt=function(){function i(t,e){for(var n=0;n<e.length;n++){var i=e[n];i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(t,i.key,i)}}return function(t,e,n){return e&&i(t.prototype,e),n&&i(t,n),t}}(),Kt=function(t,e,n){return e in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t},Qt=Object.assign||function(t){for(var e=1;e<arguments.length;e++){var n=arguments[e];for(var i in n)Object.prototype.hasOwnProperty.call(n,i)&&(t[i]=n[i])}return t};function Vt(t){return Qt({},t,{right:t.left+t.width,bottom:t.top+t.height})}function Yt(t){var e={};try{if(Ht(10)){e=t.getBoundingClientRect();var n=Mt(t,"top"),i=Mt(t,"left");e.top+=n,e.left+=i,e.bottom+=n,e.right+=i}else e=t.getBoundingClientRect()}catch(t){}var o={left:e.left,top:e.top,width:e.right-e.left,height:e.bottom-e.top},r="HTML"===t.nodeName?Bt(t.ownerDocument):{},s=r.width||t.clientWidth||o.right-o.left,a=r.height||t.clientHeight||o.bottom-o.top,l=t.offsetWidth-s,c=t.offsetHeight-a;if(l||c){var h=Nt(t);l-=Wt(h,"x"),c-=Wt(h,"y"),o.width-=l,o.height-=c}return Vt(o)}function zt(t,e){var n=2<arguments.length&&void 0!==arguments[2]&&arguments[2],i=Ht(10),o="HTML"===e.nodeName,r=Yt(t),s=Yt(e),a=Lt(t),l=Nt(e),c=parseFloat(l.borderTopWidth,10),h=parseFloat(l.borderLeftWidth,10);n&&o&&(s.top=Math.max(s.top,0),s.left=Math.max(s.left,0));var u=Vt({top:r.top-s.top-c,left:r.left-s.left-h,width:r.width,height:r.height});if(u.marginTop=0,u.marginLeft=0,!i&&o){var f=parseFloat(l.marginTop,10),d=parseFloat(l.marginLeft,10);u.top-=c-f,u.bottom-=c-f,u.left-=h-d,u.right-=h-d,u.marginTop=f,u.marginLeft=d}return(i&&!n?e.contains(a):e===a&&"BODY"!==a.nodeName)&&(u=function(t,e){var n=2<arguments.length&&void 0!==arguments[2]&&arguments[2],i=Mt(e,"top"),o=Mt(e,"left"),r=n?-1:1;return t.top+=i*r,t.bottom+=i*r,t.left+=o*r,t.right+=o*r,t}(u,e)),u}function Xt(t){if(!t||!t.parentElement||Ht())return document.documentElement;for(var e=t.parentElement;e&&"none"===Nt(e,"transform");)e=e.parentElement;return e||document.documentElement}function Gt(t,e,n,i){var o=4<arguments.length&&void 0!==arguments[4]&&arguments[4],r={top:0,left:0},s=o?Xt(t):Ft(t,e);if("viewport"===i)r=function(t){var e=1<arguments.length&&void 0!==arguments[1]&&arguments[1],n=t.ownerDocument.documentElement,i=zt(t,n),o=Math.max(n.clientWidth,window.innerWidth||0),r=Math.max(n.clientHeight,window.innerHeight||0),s=e?0:Mt(n),a=e?0:Mt(n,"left");return Vt({top:s-i.top+i.marginTop,left:a-i.left+i.marginLeft,width:o,height:r})}(s,o);else{var a=void 0;"scrollParent"===i?"BODY"===(a=Lt(kt(e))).nodeName&&(a=t.ownerDocument.documentElement):a="window"===i?t.ownerDocument.documentElement:i;var l=zt(a,s,o);if("HTML"!==a.nodeName||function t(e){var n=e.nodeName;if("BODY"===n||"HTML"===n)return!1;if("fixed"===Nt(e,"position"))return!0;var i=kt(e);return!!i&&t(i)}(s))r=l;else{var c=Bt(t.ownerDocument),h=c.height,u=c.width;r.top+=l.top-l.marginTop,r.bottom=h+l.top,r.left+=l.left-l.marginLeft,r.right=u+l.left}}var f="number"==typeof(n=n||0);return r.left+=f?n:n.left||0,r.top+=f?n:n.top||0,r.right-=f?n:n.right||0,r.bottom-=f?n:n.bottom||0,r}function $t(t,e,i,n,o){var r=5<arguments.length&&void 0!==arguments[5]?arguments[5]:0;if(-1===t.indexOf("auto"))return t;var s=Gt(i,n,r,o),a={top:{width:s.width,height:e.top-s.top},right:{width:s.right-e.right,height:s.height},bottom:{width:s.width,height:s.bottom-e.bottom},left:{width:e.left-s.left,height:s.height}},l=Object.keys(a).map(function(t){return Qt({key:t},a[t],{area:(e=a[t],e.width*e.height)});var e}).sort(function(t,e){return e.area-t.area}),c=l.filter(function(t){var e=t.width,n=t.height;return e>=i.clientWidth&&n>=i.clientHeight}),h=0<c.length?c[0].key:l[0].key,u=t.split("-")[1];return h+(u?"-"+u:"")}function Jt(t,e,n){var i=3<arguments.length&&void 0!==arguments[3]?arguments[3]:null;return zt(n,i?Xt(e):Ft(e,n),i)}function Zt(t){var e=t.ownerDocument.defaultView.getComputedStyle(t),n=parseFloat(e.marginTop||0)+parseFloat(e.marginBottom||0),i=parseFloat(e.marginLeft||0)+parseFloat(e.marginRight||0);return{width:t.offsetWidth+i,height:t.offsetHeight+n}}function te(t){var e={left:"right",right:"left",bottom:"top",top:"bottom"};return t.replace(/left|right|bottom|top/g,function(t){return e[t]})}function ee(t,e,n){n=n.split("-")[0];var i=Zt(t),o={width:i.width,height:i.height},r=-1!==["right","left"].indexOf(n),s=r?"top":"left",a=r?"left":"top",l=r?"height":"width",c=r?"width":"height";return o[s]=e[s]+e[l]/2-i[l]/2,o[a]=n===a?e[a]-i[c]:e[te(a)],o}function ne(t,e){return Array.prototype.find?t.find(e):t.filter(e)[0]}function ie(t,n,e){return(void 0===e?t:t.slice(0,function(t,e,n){if(Array.prototype.findIndex)return t.findIndex(function(t){return t[e]===n});var i=ne(t,function(t){return t[e]===n});return t.indexOf(i)}(t,"name",e))).forEach(function(t){t.function&&console.warn("`modifier.function` is deprecated, use `modifier.fn`!");var e=t.function||t.fn;t.enabled&&Ot(e)&&(n.offsets.popper=Vt(n.offsets.popper),n.offsets.reference=Vt(n.offsets.reference),n=e(n,t))}),n}function oe(t,n){return t.some(function(t){var e=t.name;return t.enabled&&e===n})}function re(t){for(var e=[!1,"ms","Webkit","Moz","O"],n=t.charAt(0).toUpperCase()+t.slice(1),i=0;i<e.length;i++){var o=e[i],r=o?""+o+n:t;if("undefined"!=typeof document.body.style[r])return r}return null}function se(t){var e=t.ownerDocument;return e?e.defaultView:window}function ae(t,e,n,i){n.updateBound=i,se(t).addEventListener("resize",n.updateBound,{passive:!0});var o=Lt(t);return function t(e,n,i,o){var r="BODY"===e.nodeName,s=r?e.ownerDocument.defaultView:e;s.addEventListener(n,i,{passive:!0}),r||t(Lt(s.parentNode),n,i,o),o.push(s)}(o,"scroll",n.updateBound,n.scrollParents),n.scrollElement=o,n.eventsEnabled=!0,n}function le(){var t,e;this.state.eventsEnabled&&(cancelAnimationFrame(this.scheduleUpdate),this.state=(t=this.reference,e=this.state,se(t).removeEventListener("resize",e.updateBound),e.scrollParents.forEach(function(t){t.removeEventListener("scroll",e.updateBound)}),e.updateBound=null,e.scrollParents=[],e.scrollElement=null,e.eventsEnabled=!1,e))}function ce(t){return""!==t&&!isNaN(parseFloat(t))&&isFinite(t)}function he(n,i){Object.keys(i).forEach(function(t){var e="";-1!==["width","height","top","right","bottom","left"].indexOf(t)&&ce(i[t])&&(e="px"),n.style[t]=i[t]+e})}var ue=Tt&&/Firefox/i.test(navigator.userAgent);function fe(t,e,n){var i=ne(t,function(t){return t.name===e}),o=!!i&&t.some(function(t){return t.name===n&&t.enabled&&t.order<i.order});if(!o){var r="`"+e+"`",s="`"+n+"`";console.warn(s+" modifier is required by "+r+" modifier in order to work, be sure to include it before "+r+"!")}return o}var de=["auto-start","auto","auto-end","top-start","top","top-end","right-start","right","right-end","bottom-end","bottom","bottom-start","left-end","left","left-start"],pe=de.slice(3);function me(t){var e=1<arguments.length&&void 0!==arguments[1]&&arguments[1],n=pe.indexOf(t),i=pe.slice(n+1).concat(pe.slice(0,n));return e?i.reverse():i}var ge="flip",_e="clockwise",ve="counterclockwise";function ye(t,o,r,e){var s=[0,0],a=-1!==["right","left"].indexOf(e),n=t.split(/(\+|\-)/).map(function(t){return t.trim()}),i=n.indexOf(ne(n,function(t){return-1!==t.search(/,|\s/)}));n[i]&&-1===n[i].indexOf(",")&&console.warn("Offsets separated by white space(s) are deprecated, use a comma (,) instead.");var l=/\s*,\s*|\s+/,c=-1!==i?[n.slice(0,i).concat([n[i].split(l)[0]]),[n[i].split(l)[1]].concat(n.slice(i+1))]:[n];return(c=c.map(function(t,e){var n=(1===e?!a:a)?"height":"width",i=!1;return t.reduce(function(t,e){return""===t[t.length-1]&&-1!==["+","-"].indexOf(e)?(t[t.length-1]=e,i=!0,t):i?(t[t.length-1]+=e,i=!1,t):t.concat(e)},[]).map(function(t){return function(t,e,n,i){var o=t.match(/((?:\-|\+)?\d*\.?\d*)(.*)/),r=+o[1],s=o[2];if(!r)return t;if(0!==s.indexOf("%"))return"vh"!==s&&"vw"!==s?r:("vh"===s?Math.max(document.documentElement.clientHeight,window.innerHeight||0):Math.max(document.documentElement.clientWidth,window.innerWidth||0))/100*r;var a=void 0;switch(s){case"%p":a=n;break;case"%":case"%r":default:a=i}return Vt(a)[e]/100*r}(t,n,o,r)})})).forEach(function(n,i){n.forEach(function(t,e){ce(t)&&(s[i]+=t*("-"===n[e-1]?-1:1))})}),s}var Ee={placement:"bottom",positionFixed:!1,eventsEnabled:!0,removeOnDestroy:!1,onCreate:function(){},onUpdate:function(){},modifiers:{shift:{order:100,enabled:!0,fn:function(t){var e=t.placement,n=e.split("-")[0],i=e.split("-")[1];if(i){var o=t.offsets,r=o.reference,s=o.popper,a=-1!==["bottom","top"].indexOf(n),l=a?"left":"top",c=a?"width":"height",h={start:Kt({},l,r[l]),end:Kt({},l,r[l]+r[c]-s[c])};t.offsets.popper=Qt({},s,h[i])}return t}},offset:{order:200,enabled:!0,fn:function(t,e){var n=e.offset,i=t.placement,o=t.offsets,r=o.popper,s=o.reference,a=i.split("-")[0],l=void 0;return l=ce(+n)?[+n,0]:ye(n,r,s,a),"left"===a?(r.top+=l[0],r.left-=l[1]):"right"===a?(r.top+=l[0],r.left+=l[1]):"top"===a?(r.left+=l[0],r.top-=l[1]):"bottom"===a&&(r.left+=l[0],r.top+=l[1]),t.popper=r,t},offset:0},preventOverflow:{order:300,enabled:!0,fn:function(t,i){var e=i.boundariesElement||jt(t.instance.popper);t.instance.reference===e&&(e=jt(e));var n=re("transform"),o=t.instance.popper.style,r=o.top,s=o.left,a=o[n];o.top="",o.left="",o[n]="";var l=Gt(t.instance.popper,t.instance.reference,i.padding,e,t.positionFixed);o.top=r,o.left=s,o[n]=a,i.boundaries=l;var c=i.priority,h=t.offsets.popper,u={primary:function(t){var e=h[t];return h[t]<l[t]&&!i.escapeWithReference&&(e=Math.max(h[t],l[t])),Kt({},t,e)},secondary:function(t){var e="right"===t?"left":"top",n=h[e];return h[t]>l[t]&&!i.escapeWithReference&&(n=Math.min(h[e],l[t]-("right"===t?h.width:h.height))),Kt({},e,n)}};return c.forEach(function(t){var e=-1!==["left","top"].indexOf(t)?"primary":"secondary";h=Qt({},h,u[e](t))}),t.offsets.popper=h,t},priority:["left","right","top","bottom"],padding:5,boundariesElement:"scrollParent"},keepTogether:{order:400,enabled:!0,fn:function(t){var e=t.offsets,n=e.popper,i=e.reference,o=t.placement.split("-")[0],r=Math.floor,s=-1!==["top","bottom"].indexOf(o),a=s?"right":"bottom",l=s?"left":"top",c=s?"width":"height";return n[a]<r(i[l])&&(t.offsets.popper[l]=r(i[l])-n[c]),n[l]>r(i[a])&&(t.offsets.popper[l]=r(i[a])),t}},arrow:{order:500,enabled:!0,fn:function(t,e){var n;if(!fe(t.instance.modifiers,"arrow","keepTogether"))return t;var i=e.element;if("string"==typeof i){if(!(i=t.instance.popper.querySelector(i)))return t}else if(!t.instance.popper.contains(i))return console.warn("WARNING: `arrow.element` must be child of its popper element!"),t;var o=t.placement.split("-")[0],r=t.offsets,s=r.popper,a=r.reference,l=-1!==["left","right"].indexOf(o),c=l?"height":"width",h=l?"Top":"Left",u=h.toLowerCase(),f=l?"left":"top",d=l?"bottom":"right",p=Zt(i)[c];a[d]-p<s[u]&&(t.offsets.popper[u]-=s[u]-(a[d]-p)),a[u]+p>s[d]&&(t.offsets.popper[u]+=a[u]+p-s[d]),t.offsets.popper=Vt(t.offsets.popper);var m=a[u]+a[c]/2-p/2,g=Nt(t.instance.popper),_=parseFloat(g["margin"+h],10),v=parseFloat(g["border"+h+"Width"],10),y=m-t.offsets.popper[u]-_-v;return y=Math.max(Math.min(s[c]-p,y),0),t.arrowElement=i,t.offsets.arrow=(Kt(n={},u,Math.round(y)),Kt(n,f,""),n),t},element:"[x-arrow]"},flip:{order:600,enabled:!0,fn:function(p,m){if(oe(p.instance.modifiers,"inner"))return p;if(p.flipped&&p.placement===p.originalPlacement)return p;var g=Gt(p.instance.popper,p.instance.reference,m.padding,m.boundariesElement,p.positionFixed),_=p.placement.split("-")[0],v=te(_),y=p.placement.split("-")[1]||"",E=[];switch(m.behavior){case ge:E=[_,v];break;case _e:E=me(_);break;case ve:E=me(_,!0);break;default:E=m.behavior}return E.forEach(function(t,e){if(_!==t||E.length===e+1)return p;_=p.placement.split("-")[0],v=te(_);var n,i=p.offsets.popper,o=p.offsets.reference,r=Math.floor,s="left"===_&&r(i.right)>r(o.left)||"right"===_&&r(i.left)<r(o.right)||"top"===_&&r(i.bottom)>r(o.top)||"bottom"===_&&r(i.top)<r(o.bottom),a=r(i.left)<r(g.left),l=r(i.right)>r(g.right),c=r(i.top)<r(g.top),h=r(i.bottom)>r(g.bottom),u="left"===_&&a||"right"===_&&l||"top"===_&&c||"bottom"===_&&h,f=-1!==["top","bottom"].indexOf(_),d=!!m.flipVariations&&(f&&"start"===y&&a||f&&"end"===y&&l||!f&&"start"===y&&c||!f&&"end"===y&&h);(s||u||d)&&(p.flipped=!0,(s||u)&&(_=E[e+1]),d&&(y="end"===(n=y)?"start":"start"===n?"end":n),p.placement=_+(y?"-"+y:""),p.offsets.popper=Qt({},p.offsets.popper,ee(p.instance.popper,p.offsets.reference,p.placement)),p=ie(p.instance.modifiers,p,"flip"))}),p},behavior:"flip",padding:5,boundariesElement:"viewport"},inner:{order:700,enabled:!1,fn:function(t){var e=t.placement,n=e.split("-")[0],i=t.offsets,o=i.popper,r=i.reference,s=-1!==["left","right"].indexOf(n),a=-1===["top","left"].indexOf(n);return o[s?"left":"top"]=r[n]-(a?o[s?"width":"height"]:0),t.placement=te(e),t.offsets.popper=Vt(o),t}},hide:{order:800,enabled:!0,fn:function(t){if(!fe(t.instance.modifiers,"hide","preventOverflow"))return t;var e=t.offsets.reference,n=ne(t.instance.modifiers,function(t){return"preventOverflow"===t.name}).boundaries;if(e.bottom<n.top||e.left>n.right||e.top>n.bottom||e.right<n.left){if(!0===t.hide)return t;t.hide=!0,t.attributes["x-out-of-boundaries"]=""}else{if(!1===t.hide)return t;t.hide=!1,t.attributes["x-out-of-boundaries"]=!1}return t}},computeStyle:{order:850,enabled:!0,fn:function(t,e){var n=e.x,i=e.y,o=t.offsets.popper,r=ne(t.instance.modifiers,function(t){return"applyStyle"===t.name}).gpuAcceleration;void 0!==r&&console.warn("WARNING: `gpuAcceleration` option moved to `computeStyle` modifier and will not be supported in future versions of Popper.js!");var s,a,l,c,h,u,f,d,p,m,g,_,v,y,E=void 0!==r?r:e.gpuAcceleration,b=jt(t.instance.popper),w=Yt(b),C={position:o.position},T=(s=t,a=window.devicePixelRatio<2||!ue,l=s.offsets,c=l.popper,h=l.reference,u=Math.round,f=Math.floor,d=function(t){return t},p=u(h.width),m=u(c.width),g=-1!==["left","right"].indexOf(s.placement),_=-1!==s.placement.indexOf("-"),y=a?u:d,{left:(v=a?g||_||p%2==m%2?u:f:d)(p%2==1&&m%2==1&&!_&&a?c.left-1:c.left),top:y(c.top),bottom:y(c.bottom),right:v(c.right)}),S="bottom"===n?"top":"bottom",D="right"===i?"left":"right",I=re("transform"),A=void 0,O=void 0;if(O="bottom"===S?"HTML"===b.nodeName?-b.clientHeight+T.bottom:-w.height+T.bottom:T.top,A="right"===D?"HTML"===b.nodeName?-b.clientWidth+T.right:-w.width+T.right:T.left,E&&I)C[I]="translate3d("+A+"px, "+O+"px, 0)",C[S]=0,C[D]=0,C.willChange="transform";else{var N="bottom"===S?-1:1,k="right"===D?-1:1;C[S]=O*N,C[D]=A*k,C.willChange=S+", "+D}var L={"x-placement":t.placement};return t.attributes=Qt({},L,t.attributes),t.styles=Qt({},C,t.styles),t.arrowStyles=Qt({},t.offsets.arrow,t.arrowStyles),t},gpuAcceleration:!0,x:"bottom",y:"right"},applyStyle:{order:900,enabled:!0,fn:function(t){var e,n;return he(t.instance.popper,t.styles),e=t.instance.popper,n=t.attributes,Object.keys(n).forEach(function(t){!1!==n[t]?e.setAttribute(t,n[t]):e.removeAttribute(t)}),t.arrowElement&&Object.keys(t.arrowStyles).length&&he(t.arrowElement,t.arrowStyles),t},onLoad:function(t,e,n,i,o){var r=Jt(o,e,t,n.positionFixed),s=$t(n.placement,r,e,t,n.modifiers.flip.boundariesElement,n.modifiers.flip.padding);return e.setAttribute("x-placement",s),he(e,{position:n.positionFixed?"fixed":"absolute"}),n},gpuAcceleration:void 0}}},be=function(){function r(t,e){var n=this,i=2<arguments.length&&void 0!==arguments[2]?arguments[2]:{};!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,r),this.scheduleUpdate=function(){return requestAnimationFrame(n.update)},this.update=At(this.update.bind(this)),this.options=Qt({},r.Defaults,i),this.state={isDestroyed:!1,isCreated:!1,scrollParents:[]},this.reference=t&&t.jquery?t[0]:t,this.popper=e&&e.jquery?e[0]:e,this.options.modifiers={},Object.keys(Qt({},r.Defaults.modifiers,i.modifiers)).forEach(function(t){n.options.modifiers[t]=Qt({},r.Defaults.modifiers[t]||{},i.modifiers?i.modifiers[t]:{})}),this.modifiers=Object.keys(this.options.modifiers).map(function(t){return Qt({name:t},n.options.modifiers[t])}).sort(function(t,e){return t.order-e.order}),this.modifiers.forEach(function(t){t.enabled&&Ot(t.onLoad)&&t.onLoad(n.reference,n.popper,n.options,t,n.state)}),this.update();var o=this.options.eventsEnabled;o&&this.enableEventListeners(),this.state.eventsEnabled=o}return qt(r,[{key:"update",value:function(){return function(){if(!this.state.isDestroyed){var t={instance:this,styles:{},arrowStyles:{},attributes:{},flipped:!1,offsets:{}};t.offsets.reference=Jt(this.state,this.popper,this.reference,this.options.positionFixed),t.placement=$t(this.options.placement,t.offsets.reference,this.popper,this.reference,this.options.modifiers.flip.boundariesElement,this.options.modifiers.flip.padding),t.originalPlacement=t.placement,t.positionFixed=this.options.positionFixed,t.offsets.popper=ee(this.popper,t.offsets.reference,t.placement),t.offsets.popper.position=this.options.positionFixed?"fixed":"absolute",t=ie(this.modifiers,t),this.state.isCreated?this.options.onUpdate(t):(this.state.isCreated=!0,this.options.onCreate(t))}}.call(this)}},{key:"destroy",value:function(){return function(){return this.state.isDestroyed=!0,oe(this.modifiers,"applyStyle")&&(this.popper.removeAttribute("x-placement"),this.popper.style.position="",this.popper.style.top="",this.popper.style.left="",this.popper.style.right="",this.popper.style.bottom="",this.popper.style.willChange="",this.popper.style[re("transform")]=""),this.disableEventListeners(),this.options.removeOnDestroy&&this.popper.parentNode.removeChild(this.popper),this}.call(this)}},{key:"enableEventListeners",value:function(){return function(){this.state.eventsEnabled||(this.state=ae(this.reference,this.options,this.state,this.scheduleUpdate))}.call(this)}},{key:"disableEventListeners",value:function(){return le.call(this)}}]),r}();be.Utils=("undefined"!=typeof window?window:global).PopperUtils,be.placements=de,be.Defaults=Ee;var we="dropdown",Ce="bs.dropdown",Te="."+Ce,Se=".data-api",De=p.fn[we],Ie=new RegExp("38|40|27"),Ae={HIDE:"hide"+Te,HIDDEN:"hidden"+Te,SHOW:"show"+Te,SHOWN:"shown"+Te,CLICK:"click"+Te,CLICK_DATA_API:"click"+Te+Se,KEYDOWN_DATA_API:"keydown"+Te+Se,KEYUP_DATA_API:"keyup"+Te+Se},Oe="disabled",Ne="show",ke="dropup",Le="dropright",xe="dropleft",Pe="dropdown-menu-right",He="position-static",je='[data-toggle="dropdown"]',Re=".dropdown form",Fe=".dropdown-menu",Me=".navbar-nav",We=".dropdown-menu .dropdown-item:not(.disabled):not(:disabled)",Ue="top-start",Be="top-end",qe="bottom-start",Ke="bottom-end",Qe="right-start",Ve="left-start",Ye={offset:0,flip:!0,boundary:"scrollParent",reference:"toggle",display:"dynamic"},ze={offset:"(number|string|function)",flip:"boolean",boundary:"(string|element)",reference:"(string|element)",display:"string"},Xe=function(){function c(t,e){this._element=t,this._popper=null,this._config=this._getConfig(e),this._menu=this._getMenuElement(),this._inNavbar=this._detectNavbar(),this._addEventListeners()}var t=c.prototype;return t.toggle=function(){if(!this._element.disabled&&!p(this._element).hasClass(Oe)){var t=c._getParentFromElement(this._element),e=p(this._menu).hasClass(Ne);if(c._clearMenus(),!e){var n={relatedTarget:this._element},i=p.Event(Ae.SHOW,n);if(p(t).trigger(i),!i.isDefaultPrevented()){if(!this._inNavbar){if("undefined"==typeof be)throw new TypeError("Bootstrap's dropdowns require Popper.js (https://popper.js.org/)");var o=this._element;"parent"===this._config.reference?o=t:m.isElement(this._config.reference)&&(o=this._config.reference,"undefined"!=typeof this._config.reference.jquery&&(o=this._config.reference[0])),"scrollParent"!==this._config.boundary&&p(t).addClass(He),this._popper=new be(o,this._menu,this._getPopperConfig())}"ontouchstart"in document.documentElement&&0===p(t).closest(Me).length&&p(document.body).children().on("mouseover",null,p.noop),this._element.focus(),this._element.setAttribute("aria-expanded",!0),p(this._menu).toggleClass(Ne),p(t).toggleClass(Ne).trigger(p.Event(Ae.SHOWN,n))}}}},t.show=function(){if(!(this._element.disabled||p(this._element).hasClass(Oe)||p(this._menu).hasClass(Ne))){var t={relatedTarget:this._element},e=p.Event(Ae.SHOW,t),n=c._getParentFromElement(this._element);p(n).trigger(e),e.isDefaultPrevented()||(p(this._menu).toggleClass(Ne),p(n).toggleClass(Ne).trigger(p.Event(Ae.SHOWN,t)))}},t.hide=function(){if(!this._element.disabled&&!p(this._element).hasClass(Oe)&&p(this._menu).hasClass(Ne)){var t={relatedTarget:this._element},e=p.Event(Ae.HIDE,t),n=c._getParentFromElement(this._element);p(n).trigger(e),e.isDefaultPrevented()||(p(this._menu).toggleClass(Ne),p(n).toggleClass(Ne).trigger(p.Event(Ae.HIDDEN,t)))}},t.dispose=function(){p.removeData(this._element,Ce),p(this._element).off(Te),this._element=null,(this._menu=null)!==this._popper&&(this._popper.destroy(),this._popper=null)},t.update=function(){this._inNavbar=this._detectNavbar(),null!==this._popper&&this._popper.scheduleUpdate()},t._addEventListeners=function(){var e=this;p(this._element).on(Ae.CLICK,function(t){t.preventDefault(),t.stopPropagation(),e.toggle()})},t._getConfig=function(t){return t=l({},this.constructor.Default,p(this._element).data(),t),m.typeCheckConfig(we,t,this.constructor.DefaultType),t},t._getMenuElement=function(){if(!this._menu){var t=c._getParentFromElement(this._element);t&&(this._menu=t.querySelector(Fe))}return this._menu},t._getPlacement=function(){var t=p(this._element.parentNode),e=qe;return t.hasClass(ke)?(e=Ue,p(this._menu).hasClass(Pe)&&(e=Be)):t.hasClass(Le)?e=Qe:t.hasClass(xe)?e=Ve:p(this._menu).hasClass(Pe)&&(e=Ke),e},t._detectNavbar=function(){return 0<p(this._element).closest(".navbar").length},t._getOffset=function(){var e=this,t={};return"function"==typeof this._config.offset?t.fn=function(t){return t.offsets=l({},t.offsets,e._config.offset(t.offsets,e._element)||{}),t}:t.offset=this._config.offset,t},t._getPopperConfig=function(){var t={placement:this._getPlacement(),modifiers:{offset:this._getOffset(),flip:{enabled:this._config.flip},preventOverflow:{boundariesElement:this._config.boundary}}};return"static"===this._config.display&&(t.modifiers.applyStyle={enabled:!1}),t},c._jQueryInterface=function(e){return this.each(function(){var t=p(this).data(Ce);if(t||(t=new c(this,"object"==typeof e?e:null),p(this).data(Ce,t)),"string"==typeof e){if("undefined"==typeof t[e])throw new TypeError('No method named "'+e+'"');t[e]()}})},c._clearMenus=function(t){if(!t||3!==t.which&&("keyup"!==t.type||9===t.which))for(var e=[].slice.call(document.querySelectorAll(je)),n=0,i=e.length;n<i;n++){var o=c._getParentFromElement(e[n]),r=p(e[n]).data(Ce),s={relatedTarget:e[n]};if(t&&"click"===t.type&&(s.clickEvent=t),r){var a=r._menu;if(p(o).hasClass(Ne)&&!(t&&("click"===t.type&&/input|textarea/i.test(t.target.tagName)||"keyup"===t.type&&9===t.which)&&p.contains(o,t.target))){var l=p.Event(Ae.HIDE,s);p(o).trigger(l),l.isDefaultPrevented()||("ontouchstart"in document.documentElement&&p(document.body).children().off("mouseover",null,p.noop),e[n].setAttribute("aria-expanded","false"),p(a).removeClass(Ne),p(o).removeClass(Ne).trigger(p.Event(Ae.HIDDEN,s)))}}}},c._getParentFromElement=function(t){var e,n=m.getSelectorFromElement(t);return n&&(e=document.querySelector(n)),e||t.parentNode},c._dataApiKeydownHandler=function(t){if((/input|textarea/i.test(t.target.tagName)?!(32===t.which||27!==t.which&&(40!==t.which&&38!==t.which||p(t.target).closest(Fe).length)):Ie.test(t.which))&&(t.preventDefault(),t.stopPropagation(),!this.disabled&&!p(this).hasClass(Oe))){var e=c._getParentFromElement(this),n=p(e).hasClass(Ne);if(n&&(!n||27!==t.which&&32!==t.which)){var i=[].slice.call(e.querySelectorAll(We));if(0!==i.length){var o=i.indexOf(t.target);38===t.which&&0<o&&o--,40===t.which&&o<i.length-1&&o++,o<0&&(o=0),i[o].focus()}}else{if(27===t.which){var r=e.querySelector(je);p(r).trigger("focus")}p(this).trigger("click")}}},s(c,null,[{key:"VERSION",get:function(){return"4.3.1"}},{key:"Default",get:function(){return Ye}},{key:"DefaultType",get:function(){return ze}}]),c}();p(document).on(Ae.KEYDOWN_DATA_API,je,Xe._dataApiKeydownHandler).on(Ae.KEYDOWN_DATA_API,Fe,Xe._dataApiKeydownHandler).on(Ae.CLICK_DATA_API+" "+Ae.KEYUP_DATA_API,Xe._clearMenus).on(Ae.CLICK_DATA_API,je,function(t){t.preventDefault(),t.stopPropagation(),Xe._jQueryInterface.call(p(this),"toggle")}).on(Ae.CLICK_DATA_API,Re,function(t){t.stopPropagation()}),p.fn[we]=Xe._jQueryInterface,p.fn[we].Constructor=Xe,p.fn[we].noConflict=function(){return p.fn[we]=De,Xe._jQueryInterface};var Ge="modal",$e="bs.modal",Je="."+$e,Ze=p.fn[Ge],tn={backdrop:!0,keyboard:!0,focus:!0,show:!0},en={backdrop:"(boolean|string)",keyboard:"boolean",focus:"boolean",show:"boolean"},nn={HIDE:"hide"+Je,HIDDEN:"hidden"+Je,SHOW:"show"+Je,SHOWN:"shown"+Je,FOCUSIN:"focusin"+Je,RESIZE:"resize"+Je,CLICK_DISMISS:"click.dismiss"+Je,KEYDOWN_DISMISS:"keydown.dismiss"+Je,MOUSEUP_DISMISS:"mouseup.dismiss"+Je,MOUSEDOWN_DISMISS:"mousedown.dismiss"+Je,CLICK_DATA_API:"click"+Je+".data-api"},on="modal-dialog-scrollable",rn="modal-scrollbar-measure",sn="modal-backdrop",an="modal-open",ln="fade",cn="show",hn=".modal-dialog",un=".modal-body",fn='[data-toggle="modal"]',dn='[data-dismiss="modal"]',pn=".fixed-top, .fixed-bottom, .is-fixed, .sticky-top",mn=".sticky-top",gn=function(){function o(t,e){this._config=this._getConfig(e),this._element=t,this._dialog=t.querySelector(hn),this._backdrop=null,this._isShown=!1,this._isBodyOverflowing=!1,this._ignoreBackdropClick=!1,this._isTransitioning=!1,this._scrollbarWidth=0}var t=o.prototype;return t.toggle=function(t){return this._isShown?this.hide():this.show(t)},t.show=function(t){var e=this;if(!this._isShown&&!this._isTransitioning){p(this._element).hasClass(ln)&&(this._isTransitioning=!0);var n=p.Event(nn.SHOW,{relatedTarget:t});p(this._element).trigger(n),this._isShown||n.isDefaultPrevented()||(this._isShown=!0,this._checkScrollbar(),this._setScrollbar(),this._adjustDialog(),this._setEscapeEvent(),this._setResizeEvent(),p(this._element).on(nn.CLICK_DISMISS,dn,function(t){return e.hide(t)}),p(this._dialog).on(nn.MOUSEDOWN_DISMISS,function(){p(e._element).one(nn.MOUSEUP_DISMISS,function(t){p(t.target).is(e._element)&&(e._ignoreBackdropClick=!0)})}),this._showBackdrop(function(){return e._showElement(t)}))}},t.hide=function(t){var e=this;if(t&&t.preventDefault(),this._isShown&&!this._isTransitioning){var n=p.Event(nn.HIDE);if(p(this._element).trigger(n),this._isShown&&!n.isDefaultPrevented()){this._isShown=!1;var i=p(this._element).hasClass(ln);if(i&&(this._isTransitioning=!0),this._setEscapeEvent(),this._setResizeEvent(),p(document).off(nn.FOCUSIN),p(this._element).removeClass(cn),p(this._element).off(nn.CLICK_DISMISS),p(this._dialog).off(nn.MOUSEDOWN_DISMISS),i){var o=m.getTransitionDurationFromElement(this._element);p(this._element).one(m.TRANSITION_END,function(t){return e._hideModal(t)}).emulateTransitionEnd(o)}else this._hideModal()}}},t.dispose=function(){[window,this._element,this._dialog].forEach(function(t){return p(t).off(Je)}),p(document).off(nn.FOCUSIN),p.removeData(this._element,$e),this._config=null,this._element=null,this._dialog=null,this._backdrop=null,this._isShown=null,this._isBodyOverflowing=null,this._ignoreBackdropClick=null,this._isTransitioning=null,this._scrollbarWidth=null},t.handleUpdate=function(){this._adjustDialog()},t._getConfig=function(t){return t=l({},tn,t),m.typeCheckConfig(Ge,t,en),t},t._showElement=function(t){var e=this,n=p(this._element).hasClass(ln);this._element.parentNode&&this._element.parentNode.nodeType===Node.ELEMENT_NODE||document.body.appendChild(this._element),this._element.style.display="block",this._element.removeAttribute("aria-hidden"),this._element.setAttribute("aria-modal",!0),p(this._dialog).hasClass(on)?this._dialog.querySelector(un).scrollTop=0:this._element.scrollTop=0,n&&m.reflow(this._element),p(this._element).addClass(cn),this._config.focus&&this._enforceFocus();var i=p.Event(nn.SHOWN,{relatedTarget:t}),o=function(){e._config.focus&&e._element.focus(),e._isTransitioning=!1,p(e._element).trigger(i)};if(n){var r=m.getTransitionDurationFromElement(this._dialog);p(this._dialog).one(m.TRANSITION_END,o).emulateTransitionEnd(r)}else o()},t._enforceFocus=function(){var e=this;p(document).off(nn.FOCUSIN).on(nn.FOCUSIN,function(t){document!==t.target&&e._element!==t.target&&0===p(e._element).has(t.target).length&&e._element.focus()})},t._setEscapeEvent=function(){var e=this;this._isShown&&this._config.keyboard?p(this._element).on(nn.KEYDOWN_DISMISS,function(t){27===t.which&&(t.preventDefault(),e.hide())}):this._isShown||p(this._element).off(nn.KEYDOWN_DISMISS)},t._setResizeEvent=function(){var e=this;this._isShown?p(window).on(nn.RESIZE,function(t){return e.handleUpdate(t)}):p(window).off(nn.RESIZE)},t._hideModal=function(){var t=this;this._element.style.display="none",this._element.setAttribute("aria-hidden",!0),this._element.removeAttribute("aria-modal"),this._isTransitioning=!1,this._showBackdrop(function(){p(document.body).removeClass(an),t._resetAdjustments(),t._resetScrollbar(),p(t._element).trigger(nn.HIDDEN)})},t._removeBackdrop=function(){this._backdrop&&(p(this._backdrop).remove(),this._backdrop=null)},t._showBackdrop=function(t){var e=this,n=p(this._element).hasClass(ln)?ln:"";if(this._isShown&&this._config.backdrop){if(this._backdrop=document.createElement("div"),this._backdrop.className=sn,n&&this._backdrop.classList.add(n),p(this._backdrop).appendTo(document.body),p(this._element).on(nn.CLICK_DISMISS,function(t){e._ignoreBackdropClick?e._ignoreBackdropClick=!1:t.target===t.currentTarget&&("static"===e._config.backdrop?e._element.focus():e.hide())}),n&&m.reflow(this._backdrop),p(this._backdrop).addClass(cn),!t)return;if(!n)return void t();var i=m.getTransitionDurationFromElement(this._backdrop);p(this._backdrop).one(m.TRANSITION_END,t).emulateTransitionEnd(i)}else if(!this._isShown&&this._backdrop){p(this._backdrop).removeClass(cn);var o=function(){e._removeBackdrop(),t&&t()};if(p(this._element).hasClass(ln)){var r=m.getTransitionDurationFromElement(this._backdrop);p(this._backdrop).one(m.TRANSITION_END,o).emulateTransitionEnd(r)}else o()}else t&&t()},t._adjustDialog=function(){var t=this._element.scrollHeight>document.documentElement.clientHeight;!this._isBodyOverflowing&&t&&(this._element.style.paddingLeft=this._scrollbarWidth+"px"),this._isBodyOverflowing&&!t&&(this._element.style.paddingRight=this._scrollbarWidth+"px")},t._resetAdjustments=function(){this._element.style.paddingLeft="",this._element.style.paddingRight=""},t._checkScrollbar=function(){var t=document.body.getBoundingClientRect();this._isBodyOverflowing=t.left+t.right<window.innerWidth,this._scrollbarWidth=this._getScrollbarWidth()},t._setScrollbar=function(){var o=this;if(this._isBodyOverflowing){var t=[].slice.call(document.querySelectorAll(pn)),e=[].slice.call(document.querySelectorAll(mn));p(t).each(function(t,e){var n=e.style.paddingRight,i=p(e).css("padding-right");p(e).data("padding-right",n).css("padding-right",parseFloat(i)+o._scrollbarWidth+"px")}),p(e).each(function(t,e){var n=e.style.marginRight,i=p(e).css("margin-right");p(e).data("margin-right",n).css("margin-right",parseFloat(i)-o._scrollbarWidth+"px")});var n=document.body.style.paddingRight,i=p(document.body).css("padding-right");p(document.body).data("padding-right",n).css("padding-right",parseFloat(i)+this._scrollbarWidth+"px")}p(document.body).addClass(an)},t._resetScrollbar=function(){var t=[].slice.call(document.querySelectorAll(pn));p(t).each(function(t,e){var n=p(e).data("padding-right");p(e).removeData("padding-right"),e.style.paddingRight=n||""});var e=[].slice.call(document.querySelectorAll(""+mn));p(e).each(function(t,e){var n=p(e).data("margin-right");"undefined"!=typeof n&&p(e).css("margin-right",n).removeData("margin-right")});var n=p(document.body).data("padding-right");p(document.body).removeData("padding-right"),document.body.style.paddingRight=n||""},t._getScrollbarWidth=function(){var t=document.createElement("div");t.className=rn,document.body.appendChild(t);var e=t.getBoundingClientRect().width-t.clientWidth;return document.body.removeChild(t),e},o._jQueryInterface=function(n,i){return this.each(function(){var t=p(this).data($e),e=l({},tn,p(this).data(),"object"==typeof n&&n?n:{});if(t||(t=new o(this,e),p(this).data($e,t)),"string"==typeof n){if("undefined"==typeof t[n])throw new TypeError('No method named "'+n+'"');t[n](i)}else e.show&&t.show(i)})},s(o,null,[{key:"VERSION",get:function(){return"4.3.1"}},{key:"Default",get:function(){return tn}}]),o}();p(document).on(nn.CLICK_DATA_API,fn,function(t){var e,n=this,i=m.getSelectorFromElement(this);i&&(e=document.querySelector(i));var o=p(e).data($e)?"toggle":l({},p(e).data(),p(this).data());"A"!==this.tagName&&"AREA"!==this.tagName||t.preventDefault();var r=p(e).one(nn.SHOW,function(t){t.isDefaultPrevented()||r.one(nn.HIDDEN,function(){p(n).is(":visible")&&n.focus()})});gn._jQueryInterface.call(p(e),o,this)}),p.fn[Ge]=gn._jQueryInterface,p.fn[Ge].Constructor=gn,p.fn[Ge].noConflict=function(){return p.fn[Ge]=Ze,gn._jQueryInterface};var _n=["background","cite","href","itemtype","longdesc","poster","src","xlink:href"],vn={"*":["class","dir","id","lang","role",/^aria-[\w-]*$/i],a:["target","href","title","rel"],area:[],b:[],br:[],col:[],code:[],div:[],em:[],hr:[],h1:[],h2:[],h3:[],h4:[],h5:[],h6:[],i:[],img:["src","alt","title","width","height"],li:[],ol:[],p:[],pre:[],s:[],small:[],span:[],sub:[],sup:[],strong:[],u:[],ul:[]},yn=/^(?:(?:https?|mailto|ftp|tel|file):|[^&:/?#]*(?:[/?#]|$))/gi,En=/^data:(?:image\/(?:bmp|gif|jpeg|jpg|png|tiff|webp)|video\/(?:mpeg|mp4|ogg|webm)|audio\/(?:mp3|oga|ogg|opus));base64,[a-z0-9+/]+=*$/i;function bn(t,s,e){if(0===t.length)return t;if(e&&"function"==typeof e)return e(t);for(var n=(new window.DOMParser).parseFromString(t,"text/html"),a=Object.keys(s),l=[].slice.call(n.body.querySelectorAll("*")),i=function(t,e){var n=l[t],i=n.nodeName.toLowerCase();if(-1===a.indexOf(n.nodeName.toLowerCase()))return n.parentNode.removeChild(n),"continue";var o=[].slice.call(n.attributes),r=[].concat(s["*"]||[],s[i]||[]);o.forEach(function(t){(function(t,e){var n=t.nodeName.toLowerCase();if(-1!==e.indexOf(n))return-1===_n.indexOf(n)||Boolean(t.nodeValue.match(yn)||t.nodeValue.match(En));for(var i=e.filter(function(t){return t instanceof RegExp}),o=0,r=i.length;o<r;o++)if(n.match(i[o]))return!0;return!1})(t,r)||n.removeAttribute(t.nodeName)})},o=0,r=l.length;o<r;o++)i(o);return n.body.innerHTML}var wn="tooltip",Cn="bs.tooltip",Tn="."+Cn,Sn=p.fn[wn],Dn="bs-tooltip",In=new RegExp("(^|\\s)"+Dn+"\\S+","g"),An=["sanitize","whiteList","sanitizeFn"],On={animation:"boolean",template:"string",title:"(string|element|function)",trigger:"string",delay:"(number|object)",html:"boolean",selector:"(string|boolean)",placement:"(string|function)",offset:"(number|string|function)",container:"(string|element|boolean)",fallbackPlacement:"(string|array)",boundary:"(string|element)",sanitize:"boolean",sanitizeFn:"(null|function)",whiteList:"object"},Nn={AUTO:"auto",TOP:"top",RIGHT:"right",BOTTOM:"bottom",LEFT:"left"},kn={animation:!0,template:'<div class="tooltip" role="tooltip"><div class="arrow"></div><div class="tooltip-inner"></div></div>',trigger:"hover focus",title:"",delay:0,html:!1,selector:!1,placement:"top",offset:0,container:!1,fallbackPlacement:"flip",boundary:"scrollParent",sanitize:!0,sanitizeFn:null,whiteList:vn},Ln="show",xn="out",Pn={HIDE:"hide"+Tn,HIDDEN:"hidden"+Tn,SHOW:"show"+Tn,SHOWN:"shown"+Tn,INSERTED:"inserted"+Tn,CLICK:"click"+Tn,FOCUSIN:"focusin"+Tn,FOCUSOUT:"focusout"+Tn,MOUSEENTER:"mouseenter"+Tn,MOUSELEAVE:"mouseleave"+Tn},Hn="fade",jn="show",Rn=".tooltip-inner",Fn=".arrow",Mn="hover",Wn="focus",Un="click",Bn="manual",qn=function(){function i(t,e){if("undefined"==typeof be)throw new TypeError("Bootstrap's tooltips require Popper.js (https://popper.js.org/)");this._isEnabled=!0,this._timeout=0,this._hoverState="",this._activeTrigger={},this._popper=null,this.element=t,this.config=this._getConfig(e),this.tip=null,this._setListeners()}var t=i.prototype;return t.enable=function(){this._isEnabled=!0},t.disable=function(){this._isEnabled=!1},t.toggleEnabled=function(){this._isEnabled=!this._isEnabled},t.toggle=function(t){if(this._isEnabled)if(t){var e=this.constructor.DATA_KEY,n=p(t.currentTarget).data(e);n||(n=new this.constructor(t.currentTarget,this._getDelegateConfig()),p(t.currentTarget).data(e,n)),n._activeTrigger.click=!n._activeTrigger.click,n._isWithActiveTrigger()?n._enter(null,n):n._leave(null,n)}else{if(p(this.getTipElement()).hasClass(jn))return void this._leave(null,this);this._enter(null,this)}},t.dispose=function(){clearTimeout(this._timeout),p.removeData(this.element,this.constructor.DATA_KEY),p(this.element).off(this.constructor.EVENT_KEY),p(this.element).closest(".modal").off("hide.bs.modal"),this.tip&&p(this.tip).remove(),this._isEnabled=null,this._timeout=null,this._hoverState=null,(this._activeTrigger=null)!==this._popper&&this._popper.destroy(),this._popper=null,this.element=null,this.config=null,this.tip=null},t.show=function(){var e=this;if("none"===p(this.element).css("display"))throw new Error("Please use show on visible elements");var t=p.Event(this.constructor.Event.SHOW);if(this.isWithContent()&&this._isEnabled){p(this.element).trigger(t);var n=m.findShadowRoot(this.element),i=p.contains(null!==n?n:this.element.ownerDocument.documentElement,this.element);if(t.isDefaultPrevented()||!i)return;var o=this.getTipElement(),r=m.getUID(this.constructor.NAME);o.setAttribute("id",r),this.element.setAttribute("aria-describedby",r),this.setContent(),this.config.animation&&p(o).addClass(Hn);var s="function"==typeof this.config.placement?this.config.placement.call(this,o,this.element):this.config.placement,a=this._getAttachment(s);this.addAttachmentClass(a);var l=this._getContainer();p(o).data(this.constructor.DATA_KEY,this),p.contains(this.element.ownerDocument.documentElement,this.tip)||p(o).appendTo(l),p(this.element).trigger(this.constructor.Event.INSERTED),this._popper=new be(this.element,o,{placement:a,modifiers:{offset:this._getOffset(),flip:{behavior:this.config.fallbackPlacement},arrow:{element:Fn},preventOverflow:{boundariesElement:this.config.boundary}},onCreate:function(t){t.originalPlacement!==t.placement&&e._handlePopperPlacementChange(t)},onUpdate:function(t){return e._handlePopperPlacementChange(t)}}),p(o).addClass(jn),"ontouchstart"in document.documentElement&&p(document.body).children().on("mouseover",null,p.noop);var c=function(){e.config.animation&&e._fixTransition();var t=e._hoverState;e._hoverState=null,p(e.element).trigger(e.constructor.Event.SHOWN),t===xn&&e._leave(null,e)};if(p(this.tip).hasClass(Hn)){var h=m.getTransitionDurationFromElement(this.tip);p(this.tip).one(m.TRANSITION_END,c).emulateTransitionEnd(h)}else c()}},t.hide=function(t){var e=this,n=this.getTipElement(),i=p.Event(this.constructor.Event.HIDE),o=function(){e._hoverState!==Ln&&n.parentNode&&n.parentNode.removeChild(n),e._cleanTipClass(),e.element.removeAttribute("aria-describedby"),p(e.element).trigger(e.constructor.Event.HIDDEN),null!==e._popper&&e._popper.destroy(),t&&t()};if(p(this.element).trigger(i),!i.isDefaultPrevented()){if(p(n).removeClass(jn),"ontouchstart"in document.documentElement&&p(document.body).children().off("mouseover",null,p.noop),this._activeTrigger[Un]=!1,this._activeTrigger[Wn]=!1,this._activeTrigger[Mn]=!1,p(this.tip).hasClass(Hn)){var r=m.getTransitionDurationFromElement(n);p(n).one(m.TRANSITION_END,o).emulateTransitionEnd(r)}else o();this._hoverState=""}},t.update=function(){null!==this._popper&&this._popper.scheduleUpdate()},t.isWithContent=function(){return Boolean(this.getTitle())},t.addAttachmentClass=function(t){p(this.getTipElement()).addClass(Dn+"-"+t)},t.getTipElement=function(){return this.tip=this.tip||p(this.config.template)[0],this.tip},t.setContent=function(){var t=this.getTipElement();this.setElementContent(p(t.querySelectorAll(Rn)),this.getTitle()),p(t).removeClass(Hn+" "+jn)},t.setElementContent=function(t,e){"object"!=typeof e||!e.nodeType&&!e.jquery?this.config.html?(this.config.sanitize&&(e=bn(e,this.config.whiteList,this.config.sanitizeFn)),t.html(e)):t.text(e):this.config.html?p(e).parent().is(t)||t.empty().append(e):t.text(p(e).text())},t.getTitle=function(){var t=this.element.getAttribute("data-original-title");return t||(t="function"==typeof this.config.title?this.config.title.call(this.element):this.config.title),t},t._getOffset=function(){var e=this,t={};return"function"==typeof this.config.offset?t.fn=function(t){return t.offsets=l({},t.offsets,e.config.offset(t.offsets,e.element)||{}),t}:t.offset=this.config.offset,t},t._getContainer=function(){return!1===this.config.container?document.body:m.isElement(this.config.container)?p(this.config.container):p(document).find(this.config.container)},t._getAttachment=function(t){return Nn[t.toUpperCase()]},t._setListeners=function(){var i=this;this.config.trigger.split(" ").forEach(function(t){if("click"===t)p(i.element).on(i.constructor.Event.CLICK,i.config.selector,function(t){return i.toggle(t)});else if(t!==Bn){var e=t===Mn?i.constructor.Event.MOUSEENTER:i.constructor.Event.FOCUSIN,n=t===Mn?i.constructor.Event.MOUSELEAVE:i.constructor.Event.FOCUSOUT;p(i.element).on(e,i.config.selector,function(t){return i._enter(t)}).on(n,i.config.selector,function(t){return i._leave(t)})}}),p(this.element).closest(".modal").on("hide.bs.modal",function(){i.element&&i.hide()}),this.config.selector?this.config=l({},this.config,{trigger:"manual",selector:""}):this._fixTitle()},t._fixTitle=function(){var t=typeof this.element.getAttribute("data-original-title");(this.element.getAttribute("title")||"string"!==t)&&(this.element.setAttribute("data-original-title",this.element.getAttribute("title")||""),this.element.setAttribute("title",""))},t._enter=function(t,e){var n=this.constructor.DATA_KEY;(e=e||p(t.currentTarget).data(n))||(e=new this.constructor(t.currentTarget,this._getDelegateConfig()),p(t.currentTarget).data(n,e)),t&&(e._activeTrigger["focusin"===t.type?Wn:Mn]=!0),p(e.getTipElement()).hasClass(jn)||e._hoverState===Ln?e._hoverState=Ln:(clearTimeout(e._timeout),e._hoverState=Ln,e.config.delay&&e.config.delay.show?e._timeout=setTimeout(function(){e._hoverState===Ln&&e.show()},e.config.delay.show):e.show())},t._leave=function(t,e){var n=this.constructor.DATA_KEY;(e=e||p(t.currentTarget).data(n))||(e=new this.constructor(t.currentTarget,this._getDelegateConfig()),p(t.currentTarget).data(n,e)),t&&(e._activeTrigger["focusout"===t.type?Wn:Mn]=!1),e._isWithActiveTrigger()||(clearTimeout(e._timeout),e._hoverState=xn,e.config.delay&&e.config.delay.hide?e._timeout=setTimeout(function(){e._hoverState===xn&&e.hide()},e.config.delay.hide):e.hide())},t._isWithActiveTrigger=function(){for(var t in this._activeTrigger)if(this._activeTrigger[t])return!0;return!1},t._getConfig=function(t){var e=p(this.element).data();return Object.keys(e).forEach(function(t){-1!==An.indexOf(t)&&delete e[t]}),"number"==typeof(t=l({},this.constructor.Default,e,"object"==typeof t&&t?t:{})).delay&&(t.delay={show:t.delay,hide:t.delay}),"number"==typeof t.title&&(t.title=t.title.toString()),"number"==typeof t.content&&(t.content=t.content.toString()),m.typeCheckConfig(wn,t,this.constructor.DefaultType),t.sanitize&&(t.template=bn(t.template,t.whiteList,t.sanitizeFn)),t},t._getDelegateConfig=function(){var t={};if(this.config)for(var e in this.config)this.constructor.Default[e]!==this.config[e]&&(t[e]=this.config[e]);return t},t._cleanTipClass=function(){var t=p(this.getTipElement()),e=t.attr("class").match(In);null!==e&&e.length&&t.removeClass(e.join(""))},t._handlePopperPlacementChange=function(t){var e=t.instance;this.tip=e.popper,this._cleanTipClass(),this.addAttachmentClass(this._getAttachment(t.placement))},t._fixTransition=function(){var t=this.getTipElement(),e=this.config.animation;null===t.getAttribute("x-placement")&&(p(t).removeClass(Hn),this.config.animation=!1,this.hide(),this.show(),this.config.animation=e)},i._jQueryInterface=function(n){return this.each(function(){var t=p(this).data(Cn),e="object"==typeof n&&n;if((t||!/dispose|hide/.test(n))&&(t||(t=new i(this,e),p(this).data(Cn,t)),"string"==typeof n)){if("undefined"==typeof t[n])throw new TypeError('No method named "'+n+'"');t[n]()}})},s(i,null,[{key:"VERSION",get:function(){return"4.3.1"}},{key:"Default",get:function(){return kn}},{key:"NAME",get:function(){return wn}},{key:"DATA_KEY",get:function(){return Cn}},{key:"Event",get:function(){return Pn}},{key:"EVENT_KEY",get:function(){return Tn}},{key:"DefaultType",get:function(){return On}}]),i}();p.fn[wn]=qn._jQueryInterface,p.fn[wn].Constructor=qn,p.fn[wn].noConflict=function(){return p.fn[wn]=Sn,qn._jQueryInterface};var Kn="popover",Qn="bs.popover",Vn="."+Qn,Yn=p.fn[Kn],zn="bs-popover",Xn=new RegExp("(^|\\s)"+zn+"\\S+","g"),Gn=l({},qn.Default,{placement:"right",trigger:"click",content:"",template:'<div class="popover" role="tooltip"><div class="arrow"></div><h3 class="popover-header"></h3><div class="popover-body"></div></div>'}),$n=l({},qn.DefaultType,{content:"(string|element|function)"}),Jn="fade",Zn="show",ti=".popover-header",ei=".popover-body",ni={HIDE:"hide"+Vn,HIDDEN:"hidden"+Vn,SHOW:"show"+Vn,SHOWN:"shown"+Vn,INSERTED:"inserted"+Vn,CLICK:"click"+Vn,FOCUSIN:"focusin"+Vn,FOCUSOUT:"focusout"+Vn,MOUSEENTER:"mouseenter"+Vn,MOUSELEAVE:"mouseleave"+Vn},ii=function(t){var e,n;function i(){return t.apply(this,arguments)||this}n=t,(e=i).prototype=Object.create(n.prototype),(e.prototype.constructor=e).__proto__=n;var o=i.prototype;return o.isWithContent=function(){return this.getTitle()||this._getContent()},o.addAttachmentClass=function(t){p(this.getTipElement()).addClass(zn+"-"+t)},o.getTipElement=function(){return this.tip=this.tip||p(this.config.template)[0],this.tip},o.setContent=function(){var t=p(this.getTipElement());this.setElementContent(t.find(ti),this.getTitle());var e=this._getContent();"function"==typeof e&&(e=e.call(this.element)),this.setElementContent(t.find(ei),e),t.removeClass(Jn+" "+Zn)},o._getContent=function(){return this.element.getAttribute("data-content")||this.config.content},o._cleanTipClass=function(){var t=p(this.getTipElement()),e=t.attr("class").match(Xn);null!==e&&0<e.length&&t.removeClass(e.join(""))},i._jQueryInterface=function(n){return this.each(function(){var t=p(this).data(Qn),e="object"==typeof n?n:null;if((t||!/dispose|hide/.test(n))&&(t||(t=new i(this,e),p(this).data(Qn,t)),"string"==typeof n)){if("undefined"==typeof t[n])throw new TypeError('No method named "'+n+'"');t[n]()}})},s(i,null,[{key:"VERSION",get:function(){return"4.3.1"}},{key:"Default",get:function(){return Gn}},{key:"NAME",get:function(){return Kn}},{key:"DATA_KEY",get:function(){return Qn}},{key:"Event",get:function(){return ni}},{key:"EVENT_KEY",get:function(){return Vn}},{key:"DefaultType",get:function(){return $n}}]),i}(qn);p.fn[Kn]=ii._jQueryInterface,p.fn[Kn].Constructor=ii,p.fn[Kn].noConflict=function(){return p.fn[Kn]=Yn,ii._jQueryInterface};var oi="scrollspy",ri="bs.scrollspy",si="."+ri,ai=p.fn[oi],li={offset:10,method:"auto",target:""},ci={offset:"number",method:"string",target:"(string|element)"},hi={ACTIVATE:"activate"+si,SCROLL:"scroll"+si,LOAD_DATA_API:"load"+si+".data-api"},ui="dropdown-item",fi="active",di='[data-spy="scroll"]',pi=".nav, .list-group",mi=".nav-link",gi=".nav-item",_i=".list-group-item",vi=".dropdown",yi=".dropdown-item",Ei=".dropdown-toggle",bi="offset",wi="position",Ci=function(){function n(t,e){var n=this;this._element=t,this._scrollElement="BODY"===t.tagName?window:t,this._config=this._getConfig(e),this._selector=this._config.target+" "+mi+","+this._config.target+" "+_i+","+this._config.target+" "+yi,this._offsets=[],this._targets=[],this._activeTarget=null,this._scrollHeight=0,p(this._scrollElement).on(hi.SCROLL,function(t){return n._process(t)}),this.refresh(),this._process()}var t=n.prototype;return t.refresh=function(){var e=this,t=this._scrollElement===this._scrollElement.window?bi:wi,o="auto"===this._config.method?t:this._config.method,r=o===wi?this._getScrollTop():0;this._offsets=[],this._targets=[],this._scrollHeight=this._getScrollHeight(),[].slice.call(document.querySelectorAll(this._selector)).map(function(t){var e,n=m.getSelectorFromElement(t);if(n&&(e=document.querySelector(n)),e){var i=e.getBoundingClientRect();if(i.width||i.height)return[p(e)[o]().top+r,n]}return null}).filter(function(t){return t}).sort(function(t,e){return t[0]-e[0]}).forEach(function(t){e._offsets.push(t[0]),e._targets.push(t[1])})},t.dispose=function(){p.removeData(this._element,ri),p(this._scrollElement).off(si),this._element=null,this._scrollElement=null,this._config=null,this._selector=null,this._offsets=null,this._targets=null,this._activeTarget=null,this._scrollHeight=null},t._getConfig=function(t){if("string"!=typeof(t=l({},li,"object"==typeof t&&t?t:{})).target){var e=p(t.target).attr("id");e||(e=m.getUID(oi),p(t.target).attr("id",e)),t.target="#"+e}return m.typeCheckConfig(oi,t,ci),t},t._getScrollTop=function(){return this._scrollElement===window?this._scrollElement.pageYOffset:this._scrollElement.scrollTop},t._getScrollHeight=function(){return this._scrollElement.scrollHeight||Math.max(document.body.scrollHeight,document.documentElement.scrollHeight)},t._getOffsetHeight=function(){return this._scrollElement===window?window.innerHeight:this._scrollElement.getBoundingClientRect().height},t._process=function(){var t=this._getScrollTop()+this._config.offset,e=this._getScrollHeight(),n=this._config.offset+e-this._getOffsetHeight();if(this._scrollHeight!==e&&this.refresh(),n<=t){var i=this._targets[this._targets.length-1];this._activeTarget!==i&&this._activate(i)}else{if(this._activeTarget&&t<this._offsets[0]&&0<this._offsets[0])return this._activeTarget=null,void this._clear();for(var o=this._offsets.length;o--;){this._activeTarget!==this._targets[o]&&t>=this._offsets[o]&&("undefined"==typeof this._offsets[o+1]||t<this._offsets[o+1])&&this._activate(this._targets[o])}}},t._activate=function(e){this._activeTarget=e,this._clear();var t=this._selector.split(",").map(function(t){return t+'[data-target="'+e+'"],'+t+'[href="'+e+'"]'}),n=p([].slice.call(document.querySelectorAll(t.join(","))));n.hasClass(ui)?(n.closest(vi).find(Ei).addClass(fi),n.addClass(fi)):(n.addClass(fi),n.parents(pi).prev(mi+", "+_i).addClass(fi),n.parents(pi).prev(gi).children(mi).addClass(fi)),p(this._scrollElement).trigger(hi.ACTIVATE,{relatedTarget:e})},t._clear=function(){[].slice.call(document.querySelectorAll(this._selector)).filter(function(t){return t.classList.contains(fi)}).forEach(function(t){return t.classList.remove(fi)})},n._jQueryInterface=function(e){return this.each(function(){var t=p(this).data(ri);if(t||(t=new n(this,"object"==typeof e&&e),p(this).data(ri,t)),"string"==typeof e){if("undefined"==typeof t[e])throw new TypeError('No method named "'+e+'"');t[e]()}})},s(n,null,[{key:"VERSION",get:function(){return"4.3.1"}},{key:"Default",get:function(){return li}}]),n}();p(window).on(hi.LOAD_DATA_API,function(){for(var t=[].slice.call(document.querySelectorAll(di)),e=t.length;e--;){var n=p(t[e]);Ci._jQueryInterface.call(n,n.data())}}),p.fn[oi]=Ci._jQueryInterface,p.fn[oi].Constructor=Ci,p.fn[oi].noConflict=function(){return p.fn[oi]=ai,Ci._jQueryInterface};var Ti="bs.tab",Si="."+Ti,Di=p.fn.tab,Ii={HIDE:"hide"+Si,HIDDEN:"hidden"+Si,SHOW:"show"+Si,SHOWN:"shown"+Si,CLICK_DATA_API:"click"+Si+".data-api"},Ai="dropdown-menu",Oi="active",Ni="disabled",ki="fade",Li="show",xi=".dropdown",Pi=".nav, .list-group",Hi=".active",ji="> li > .active",Ri='[data-toggle="tab"], [data-toggle="pill"], [data-toggle="list"]',Fi=".dropdown-toggle",Mi="> .dropdown-menu .active",Wi=function(){function i(t){this._element=t}var t=i.prototype;return t.show=function(){var n=this;if(!(this._element.parentNode&&this._element.parentNode.nodeType===Node.ELEMENT_NODE&&p(this._element).hasClass(Oi)||p(this._element).hasClass(Ni))){var t,i,e=p(this._element).closest(Pi)[0],o=m.getSelectorFromElement(this._element);if(e){var r="UL"===e.nodeName||"OL"===e.nodeName?ji:Hi;i=(i=p.makeArray(p(e).find(r)))[i.length-1]}var s=p.Event(Ii.HIDE,{relatedTarget:this._element}),a=p.Event(Ii.SHOW,{relatedTarget:i});if(i&&p(i).trigger(s),p(this._element).trigger(a),!a.isDefaultPrevented()&&!s.isDefaultPrevented()){o&&(t=document.querySelector(o)),this._activate(this._element,e);var l=function(){var t=p.Event(Ii.HIDDEN,{relatedTarget:n._element}),e=p.Event(Ii.SHOWN,{relatedTarget:i});p(i).trigger(t),p(n._element).trigger(e)};t?this._activate(t,t.parentNode,l):l()}}},t.dispose=function(){p.removeData(this._element,Ti),this._element=null},t._activate=function(t,e,n){var i=this,o=(!e||"UL"!==e.nodeName&&"OL"!==e.nodeName?p(e).children(Hi):p(e).find(ji))[0],r=n&&o&&p(o).hasClass(ki),s=function(){return i._transitionComplete(t,o,n)};if(o&&r){var a=m.getTransitionDurationFromElement(o);p(o).removeClass(Li).one(m.TRANSITION_END,s).emulateTransitionEnd(a)}else s()},t._transitionComplete=function(t,e,n){if(e){p(e).removeClass(Oi);var i=p(e.parentNode).find(Mi)[0];i&&p(i).removeClass(Oi),"tab"===e.getAttribute("role")&&e.setAttribute("aria-selected",!1)}if(p(t).addClass(Oi),"tab"===t.getAttribute("role")&&t.setAttribute("aria-selected",!0),m.reflow(t),t.classList.contains(ki)&&t.classList.add(Li),t.parentNode&&p(t.parentNode).hasClass(Ai)){var o=p(t).closest(xi)[0];if(o){var r=[].slice.call(o.querySelectorAll(Fi));p(r).addClass(Oi)}t.setAttribute("aria-expanded",!0)}n&&n()},i._jQueryInterface=function(n){return this.each(function(){var t=p(this),e=t.data(Ti);if(e||(e=new i(this),t.data(Ti,e)),"string"==typeof n){if("undefined"==typeof e[n])throw new TypeError('No method named "'+n+'"');e[n]()}})},s(i,null,[{key:"VERSION",get:function(){return"4.3.1"}}]),i}();p(document).on(Ii.CLICK_DATA_API,Ri,function(t){t.preventDefault(),Wi._jQueryInterface.call(p(this),"show")}),p.fn.tab=Wi._jQueryInterface,p.fn.tab.Constructor=Wi,p.fn.tab.noConflict=function(){return p.fn.tab=Di,Wi._jQueryInterface};var Ui="toast",Bi="bs.toast",qi="."+Bi,Ki=p.fn[Ui],Qi={CLICK_DISMISS:"click.dismiss"+qi,HIDE:"hide"+qi,HIDDEN:"hidden"+qi,SHOW:"show"+qi,SHOWN:"shown"+qi},Vi="fade",Yi="hide",zi="show",Xi="showing",Gi={animation:"boolean",autohide:"boolean",delay:"number"},$i={animation:!0,autohide:!0,delay:500},Ji='[data-dismiss="toast"]',Zi=function(){function i(t,e){this._element=t,this._config=this._getConfig(e),this._timeout=null,this._setListeners()}var t=i.prototype;return t.show=function(){var t=this;p(this._element).trigger(Qi.SHOW),this._config.animation&&this._element.classList.add(Vi);var e=function(){t._element.classList.remove(Xi),t._element.classList.add(zi),p(t._element).trigger(Qi.SHOWN),t._config.autohide&&t.hide()};if(this._element.classList.remove(Yi),this._element.classList.add(Xi),this._config.animation){var n=m.getTransitionDurationFromElement(this._element);p(this._element).one(m.TRANSITION_END,e).emulateTransitionEnd(n)}else e()},t.hide=function(t){var e=this;this._element.classList.contains(zi)&&(p(this._element).trigger(Qi.HIDE),t?this._close():this._timeout=setTimeout(function(){e._close()},this._config.delay))},t.dispose=function(){clearTimeout(this._timeout),this._timeout=null,this._element.classList.contains(zi)&&this._element.classList.remove(zi),p(this._element).off(Qi.CLICK_DISMISS),p.removeData(this._element,Bi),this._element=null,this._config=null},t._getConfig=function(t){return t=l({},$i,p(this._element).data(),"object"==typeof t&&t?t:{}),m.typeCheckConfig(Ui,t,this.constructor.DefaultType),t},t._setListeners=function(){var t=this;p(this._element).on(Qi.CLICK_DISMISS,Ji,function(){return t.hide(!0)})},t._close=function(){var t=this,e=function(){t._element.classList.add(Yi),p(t._element).trigger(Qi.HIDDEN)};if(this._element.classList.remove(zi),this._config.animation){var n=m.getTransitionDurationFromElement(this._element);p(this._element).one(m.TRANSITION_END,e).emulateTransitionEnd(n)}else e()},i._jQueryInterface=function(n){return this.each(function(){var t=p(this),e=t.data(Bi);if(e||(e=new i(this,"object"==typeof n&&n),t.data(Bi,e)),"string"==typeof n){if("undefined"==typeof e[n])throw new TypeError('No method named "'+n+'"');e[n](this)}})},s(i,null,[{key:"VERSION",get:function(){return"4.3.1"}},{key:"DefaultType",get:function(){return Gi}},{key:"Default",get:function(){return $i}}]),i}();p.fn[Ui]=Zi._jQueryInterface,p.fn[Ui].Constructor=Zi,p.fn[Ui].noConflict=function(){return p.fn[Ui]=Ki,Zi._jQueryInterface},function(){if("undefined"==typeof p)throw new TypeError("Bootstrap's JavaScript requires jQuery. jQuery must be included before Bootstrap's JavaScript.");var t=p.fn.jquery.split(" ")[0].split(".");if(t[0]<2&&t[1]<9||1===t[0]&&9===t[1]&&t[2]<1||4<=t[0])throw new Error("Bootstrap's JavaScript requires at least jQuery v1.9.1 but less than v4.0.0")}(),t.Util=m,t.Alert=g,t.Button=k,t.Carousel=at,t.Collapse=Ct,t.Dropdown=Xe,t.Modal=gn,t.Popover=ii,t.Scrollspy=Ci,t.Tab=Wi,t.Toast=Zi,t.Tooltip=qn,Object.defineProperty(t,"__esModule",{value:!0})});
+//# sourceMappingURL=bootstrap.bundle.min.js.map
\ No newline at end of file
diff --git a/UyTube_mobile/web/js/bootstrap.min.js b/UyTube_mobile/web/js/bootstrap.min.js
new file mode 100644
index 0000000000000000000000000000000000000000..c4c0d1f95cd3ca1b97ed8e7f7f22a91fa24b4edf
--- /dev/null
+++ b/UyTube_mobile/web/js/bootstrap.min.js
@@ -0,0 +1,7 @@
+/*!
+  * Bootstrap v4.3.1 (https://getbootstrap.com/)
+  * Copyright 2011-2019 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)
+  * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
+  */
+!function(t,e){"object"==typeof exports&&"undefined"!=typeof module?e(exports,require("jquery"),require("popper.js")):"function"==typeof define&&define.amd?define(["exports","jquery","popper.js"],e):e((t=t||self).bootstrap={},t.jQuery,t.Popper)}(this,function(t,g,u){"use strict";function i(t,e){for(var n=0;n<e.length;n++){var i=e[n];i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(t,i.key,i)}}function s(t,e,n){return e&&i(t.prototype,e),n&&i(t,n),t}function l(o){for(var t=1;t<arguments.length;t++){var r=null!=arguments[t]?arguments[t]:{},e=Object.keys(r);"function"==typeof Object.getOwnPropertySymbols&&(e=e.concat(Object.getOwnPropertySymbols(r).filter(function(t){return Object.getOwnPropertyDescriptor(r,t).enumerable}))),e.forEach(function(t){var e,n,i;e=o,i=r[n=t],n in e?Object.defineProperty(e,n,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[n]=i})}return o}g=g&&g.hasOwnProperty("default")?g.default:g,u=u&&u.hasOwnProperty("default")?u.default:u;var e="transitionend";function n(t){var e=this,n=!1;return g(this).one(_.TRANSITION_END,function(){n=!0}),setTimeout(function(){n||_.triggerTransitionEnd(e)},t),this}var _={TRANSITION_END:"bsTransitionEnd",getUID:function(t){for(;t+=~~(1e6*Math.random()),document.getElementById(t););return t},getSelectorFromElement:function(t){var e=t.getAttribute("data-target");if(!e||"#"===e){var n=t.getAttribute("href");e=n&&"#"!==n?n.trim():""}try{return document.querySelector(e)?e:null}catch(t){return null}},getTransitionDurationFromElement:function(t){if(!t)return 0;var e=g(t).css("transition-duration"),n=g(t).css("transition-delay"),i=parseFloat(e),o=parseFloat(n);return i||o?(e=e.split(",")[0],n=n.split(",")[0],1e3*(parseFloat(e)+parseFloat(n))):0},reflow:function(t){return t.offsetHeight},triggerTransitionEnd:function(t){g(t).trigger(e)},supportsTransitionEnd:function(){return Boolean(e)},isElement:function(t){return(t[0]||t).nodeType},typeCheckConfig:function(t,e,n){for(var i in n)if(Object.prototype.hasOwnProperty.call(n,i)){var o=n[i],r=e[i],s=r&&_.isElement(r)?"element":(a=r,{}.toString.call(a).match(/\s([a-z]+)/i)[1].toLowerCase());if(!new RegExp(o).test(s))throw new Error(t.toUpperCase()+': Option "'+i+'" provided type "'+s+'" but expected type "'+o+'".')}var a},findShadowRoot:function(t){if(!document.documentElement.attachShadow)return null;if("function"!=typeof t.getRootNode)return t instanceof ShadowRoot?t:t.parentNode?_.findShadowRoot(t.parentNode):null;var e=t.getRootNode();return e instanceof ShadowRoot?e:null}};g.fn.emulateTransitionEnd=n,g.event.special[_.TRANSITION_END]={bindType:e,delegateType:e,handle:function(t){if(g(t.target).is(this))return t.handleObj.handler.apply(this,arguments)}};var o="alert",r="bs.alert",a="."+r,c=g.fn[o],h={CLOSE:"close"+a,CLOSED:"closed"+a,CLICK_DATA_API:"click"+a+".data-api"},f="alert",d="fade",m="show",p=function(){function i(t){this._element=t}var t=i.prototype;return t.close=function(t){var e=this._element;t&&(e=this._getRootElement(t)),this._triggerCloseEvent(e).isDefaultPrevented()||this._removeElement(e)},t.dispose=function(){g.removeData(this._element,r),this._element=null},t._getRootElement=function(t){var e=_.getSelectorFromElement(t),n=!1;return e&&(n=document.querySelector(e)),n||(n=g(t).closest("."+f)[0]),n},t._triggerCloseEvent=function(t){var e=g.Event(h.CLOSE);return g(t).trigger(e),e},t._removeElement=function(e){var n=this;if(g(e).removeClass(m),g(e).hasClass(d)){var t=_.getTransitionDurationFromElement(e);g(e).one(_.TRANSITION_END,function(t){return n._destroyElement(e,t)}).emulateTransitionEnd(t)}else this._destroyElement(e)},t._destroyElement=function(t){g(t).detach().trigger(h.CLOSED).remove()},i._jQueryInterface=function(n){return this.each(function(){var t=g(this),e=t.data(r);e||(e=new i(this),t.data(r,e)),"close"===n&&e[n](this)})},i._handleDismiss=function(e){return function(t){t&&t.preventDefault(),e.close(this)}},s(i,null,[{key:"VERSION",get:function(){return"4.3.1"}}]),i}();g(document).on(h.CLICK_DATA_API,'[data-dismiss="alert"]',p._handleDismiss(new p)),g.fn[o]=p._jQueryInterface,g.fn[o].Constructor=p,g.fn[o].noConflict=function(){return g.fn[o]=c,p._jQueryInterface};var v="button",y="bs.button",E="."+y,C=".data-api",T=g.fn[v],S="active",b="btn",I="focus",D='[data-toggle^="button"]',w='[data-toggle="buttons"]',A='input:not([type="hidden"])',N=".active",O=".btn",k={CLICK_DATA_API:"click"+E+C,FOCUS_BLUR_DATA_API:"focus"+E+C+" blur"+E+C},P=function(){function n(t){this._element=t}var t=n.prototype;return t.toggle=function(){var t=!0,e=!0,n=g(this._element).closest(w)[0];if(n){var i=this._element.querySelector(A);if(i){if("radio"===i.type)if(i.checked&&this._element.classList.contains(S))t=!1;else{var o=n.querySelector(N);o&&g(o).removeClass(S)}if(t){if(i.hasAttribute("disabled")||n.hasAttribute("disabled")||i.classList.contains("disabled")||n.classList.contains("disabled"))return;i.checked=!this._element.classList.contains(S),g(i).trigger("change")}i.focus(),e=!1}}e&&this._element.setAttribute("aria-pressed",!this._element.classList.contains(S)),t&&g(this._element).toggleClass(S)},t.dispose=function(){g.removeData(this._element,y),this._element=null},n._jQueryInterface=function(e){return this.each(function(){var t=g(this).data(y);t||(t=new n(this),g(this).data(y,t)),"toggle"===e&&t[e]()})},s(n,null,[{key:"VERSION",get:function(){return"4.3.1"}}]),n}();g(document).on(k.CLICK_DATA_API,D,function(t){t.preventDefault();var e=t.target;g(e).hasClass(b)||(e=g(e).closest(O)),P._jQueryInterface.call(g(e),"toggle")}).on(k.FOCUS_BLUR_DATA_API,D,function(t){var e=g(t.target).closest(O)[0];g(e).toggleClass(I,/^focus(in)?$/.test(t.type))}),g.fn[v]=P._jQueryInterface,g.fn[v].Constructor=P,g.fn[v].noConflict=function(){return g.fn[v]=T,P._jQueryInterface};var L="carousel",j="bs.carousel",H="."+j,R=".data-api",x=g.fn[L],F={interval:5e3,keyboard:!0,slide:!1,pause:"hover",wrap:!0,touch:!0},U={interval:"(number|boolean)",keyboard:"boolean",slide:"(boolean|string)",pause:"(string|boolean)",wrap:"boolean",touch:"boolean"},W="next",q="prev",M="left",K="right",Q={SLIDE:"slide"+H,SLID:"slid"+H,KEYDOWN:"keydown"+H,MOUSEENTER:"mouseenter"+H,MOUSELEAVE:"mouseleave"+H,TOUCHSTART:"touchstart"+H,TOUCHMOVE:"touchmove"+H,TOUCHEND:"touchend"+H,POINTERDOWN:"pointerdown"+H,POINTERUP:"pointerup"+H,DRAG_START:"dragstart"+H,LOAD_DATA_API:"load"+H+R,CLICK_DATA_API:"click"+H+R},B="carousel",V="active",Y="slide",z="carousel-item-right",X="carousel-item-left",$="carousel-item-next",G="carousel-item-prev",J="pointer-event",Z=".active",tt=".active.carousel-item",et=".carousel-item",nt=".carousel-item img",it=".carousel-item-next, .carousel-item-prev",ot=".carousel-indicators",rt="[data-slide], [data-slide-to]",st='[data-ride="carousel"]',at={TOUCH:"touch",PEN:"pen"},lt=function(){function r(t,e){this._items=null,this._interval=null,this._activeElement=null,this._isPaused=!1,this._isSliding=!1,this.touchTimeout=null,this.touchStartX=0,this.touchDeltaX=0,this._config=this._getConfig(e),this._element=t,this._indicatorsElement=this._element.querySelector(ot),this._touchSupported="ontouchstart"in document.documentElement||0<navigator.maxTouchPoints,this._pointerEvent=Boolean(window.PointerEvent||window.MSPointerEvent),this._addEventListeners()}var t=r.prototype;return t.next=function(){this._isSliding||this._slide(W)},t.nextWhenVisible=function(){!document.hidden&&g(this._element).is(":visible")&&"hidden"!==g(this._element).css("visibility")&&this.next()},t.prev=function(){this._isSliding||this._slide(q)},t.pause=function(t){t||(this._isPaused=!0),this._element.querySelector(it)&&(_.triggerTransitionEnd(this._element),this.cycle(!0)),clearInterval(this._interval),this._interval=null},t.cycle=function(t){t||(this._isPaused=!1),this._interval&&(clearInterval(this._interval),this._interval=null),this._config.interval&&!this._isPaused&&(this._interval=setInterval((document.visibilityState?this.nextWhenVisible:this.next).bind(this),this._config.interval))},t.to=function(t){var e=this;this._activeElement=this._element.querySelector(tt);var n=this._getItemIndex(this._activeElement);if(!(t>this._items.length-1||t<0))if(this._isSliding)g(this._element).one(Q.SLID,function(){return e.to(t)});else{if(n===t)return this.pause(),void this.cycle();var i=n<t?W:q;this._slide(i,this._items[t])}},t.dispose=function(){g(this._element).off(H),g.removeData(this._element,j),this._items=null,this._config=null,this._element=null,this._interval=null,this._isPaused=null,this._isSliding=null,this._activeElement=null,this._indicatorsElement=null},t._getConfig=function(t){return t=l({},F,t),_.typeCheckConfig(L,t,U),t},t._handleSwipe=function(){var t=Math.abs(this.touchDeltaX);if(!(t<=40)){var e=t/this.touchDeltaX;0<e&&this.prev(),e<0&&this.next()}},t._addEventListeners=function(){var e=this;this._config.keyboard&&g(this._element).on(Q.KEYDOWN,function(t){return e._keydown(t)}),"hover"===this._config.pause&&g(this._element).on(Q.MOUSEENTER,function(t){return e.pause(t)}).on(Q.MOUSELEAVE,function(t){return e.cycle(t)}),this._config.touch&&this._addTouchEventListeners()},t._addTouchEventListeners=function(){var n=this;if(this._touchSupported){var e=function(t){n._pointerEvent&&at[t.originalEvent.pointerType.toUpperCase()]?n.touchStartX=t.originalEvent.clientX:n._pointerEvent||(n.touchStartX=t.originalEvent.touches[0].clientX)},i=function(t){n._pointerEvent&&at[t.originalEvent.pointerType.toUpperCase()]&&(n.touchDeltaX=t.originalEvent.clientX-n.touchStartX),n._handleSwipe(),"hover"===n._config.pause&&(n.pause(),n.touchTimeout&&clearTimeout(n.touchTimeout),n.touchTimeout=setTimeout(function(t){return n.cycle(t)},500+n._config.interval))};g(this._element.querySelectorAll(nt)).on(Q.DRAG_START,function(t){return t.preventDefault()}),this._pointerEvent?(g(this._element).on(Q.POINTERDOWN,function(t){return e(t)}),g(this._element).on(Q.POINTERUP,function(t){return i(t)}),this._element.classList.add(J)):(g(this._element).on(Q.TOUCHSTART,function(t){return e(t)}),g(this._element).on(Q.TOUCHMOVE,function(t){var e;(e=t).originalEvent.touches&&1<e.originalEvent.touches.length?n.touchDeltaX=0:n.touchDeltaX=e.originalEvent.touches[0].clientX-n.touchStartX}),g(this._element).on(Q.TOUCHEND,function(t){return i(t)}))}},t._keydown=function(t){if(!/input|textarea/i.test(t.target.tagName))switch(t.which){case 37:t.preventDefault(),this.prev();break;case 39:t.preventDefault(),this.next()}},t._getItemIndex=function(t){return this._items=t&&t.parentNode?[].slice.call(t.parentNode.querySelectorAll(et)):[],this._items.indexOf(t)},t._getItemByDirection=function(t,e){var n=t===W,i=t===q,o=this._getItemIndex(e),r=this._items.length-1;if((i&&0===o||n&&o===r)&&!this._config.wrap)return e;var s=(o+(t===q?-1:1))%this._items.length;return-1===s?this._items[this._items.length-1]:this._items[s]},t._triggerSlideEvent=function(t,e){var n=this._getItemIndex(t),i=this._getItemIndex(this._element.querySelector(tt)),o=g.Event(Q.SLIDE,{relatedTarget:t,direction:e,from:i,to:n});return g(this._element).trigger(o),o},t._setActiveIndicatorElement=function(t){if(this._indicatorsElement){var e=[].slice.call(this._indicatorsElement.querySelectorAll(Z));g(e).removeClass(V);var n=this._indicatorsElement.children[this._getItemIndex(t)];n&&g(n).addClass(V)}},t._slide=function(t,e){var n,i,o,r=this,s=this._element.querySelector(tt),a=this._getItemIndex(s),l=e||s&&this._getItemByDirection(t,s),c=this._getItemIndex(l),h=Boolean(this._interval);if(o=t===W?(n=X,i=$,M):(n=z,i=G,K),l&&g(l).hasClass(V))this._isSliding=!1;else if(!this._triggerSlideEvent(l,o).isDefaultPrevented()&&s&&l){this._isSliding=!0,h&&this.pause(),this._setActiveIndicatorElement(l);var u=g.Event(Q.SLID,{relatedTarget:l,direction:o,from:a,to:c});if(g(this._element).hasClass(Y)){g(l).addClass(i),_.reflow(l),g(s).addClass(n),g(l).addClass(n);var f=parseInt(l.getAttribute("data-interval"),10);this._config.interval=f?(this._config.defaultInterval=this._config.defaultInterval||this._config.interval,f):this._config.defaultInterval||this._config.interval;var d=_.getTransitionDurationFromElement(s);g(s).one(_.TRANSITION_END,function(){g(l).removeClass(n+" "+i).addClass(V),g(s).removeClass(V+" "+i+" "+n),r._isSliding=!1,setTimeout(function(){return g(r._element).trigger(u)},0)}).emulateTransitionEnd(d)}else g(s).removeClass(V),g(l).addClass(V),this._isSliding=!1,g(this._element).trigger(u);h&&this.cycle()}},r._jQueryInterface=function(i){return this.each(function(){var t=g(this).data(j),e=l({},F,g(this).data());"object"==typeof i&&(e=l({},e,i));var n="string"==typeof i?i:e.slide;if(t||(t=new r(this,e),g(this).data(j,t)),"number"==typeof i)t.to(i);else if("string"==typeof n){if("undefined"==typeof t[n])throw new TypeError('No method named "'+n+'"');t[n]()}else e.interval&&e.ride&&(t.pause(),t.cycle())})},r._dataApiClickHandler=function(t){var e=_.getSelectorFromElement(this);if(e){var n=g(e)[0];if(n&&g(n).hasClass(B)){var i=l({},g(n).data(),g(this).data()),o=this.getAttribute("data-slide-to");o&&(i.interval=!1),r._jQueryInterface.call(g(n),i),o&&g(n).data(j).to(o),t.preventDefault()}}},s(r,null,[{key:"VERSION",get:function(){return"4.3.1"}},{key:"Default",get:function(){return F}}]),r}();g(document).on(Q.CLICK_DATA_API,rt,lt._dataApiClickHandler),g(window).on(Q.LOAD_DATA_API,function(){for(var t=[].slice.call(document.querySelectorAll(st)),e=0,n=t.length;e<n;e++){var i=g(t[e]);lt._jQueryInterface.call(i,i.data())}}),g.fn[L]=lt._jQueryInterface,g.fn[L].Constructor=lt,g.fn[L].noConflict=function(){return g.fn[L]=x,lt._jQueryInterface};var ct="collapse",ht="bs.collapse",ut="."+ht,ft=g.fn[ct],dt={toggle:!0,parent:""},gt={toggle:"boolean",parent:"(string|element)"},_t={SHOW:"show"+ut,SHOWN:"shown"+ut,HIDE:"hide"+ut,HIDDEN:"hidden"+ut,CLICK_DATA_API:"click"+ut+".data-api"},mt="show",pt="collapse",vt="collapsing",yt="collapsed",Et="width",Ct="height",Tt=".show, .collapsing",St='[data-toggle="collapse"]',bt=function(){function a(e,t){this._isTransitioning=!1,this._element=e,this._config=this._getConfig(t),this._triggerArray=[].slice.call(document.querySelectorAll('[data-toggle="collapse"][href="#'+e.id+'"],[data-toggle="collapse"][data-target="#'+e.id+'"]'));for(var n=[].slice.call(document.querySelectorAll(St)),i=0,o=n.length;i<o;i++){var r=n[i],s=_.getSelectorFromElement(r),a=[].slice.call(document.querySelectorAll(s)).filter(function(t){return t===e});null!==s&&0<a.length&&(this._selector=s,this._triggerArray.push(r))}this._parent=this._config.parent?this._getParent():null,this._config.parent||this._addAriaAndCollapsedClass(this._element,this._triggerArray),this._config.toggle&&this.toggle()}var t=a.prototype;return t.toggle=function(){g(this._element).hasClass(mt)?this.hide():this.show()},t.show=function(){var t,e,n=this;if(!this._isTransitioning&&!g(this._element).hasClass(mt)&&(this._parent&&0===(t=[].slice.call(this._parent.querySelectorAll(Tt)).filter(function(t){return"string"==typeof n._config.parent?t.getAttribute("data-parent")===n._config.parent:t.classList.contains(pt)})).length&&(t=null),!(t&&(e=g(t).not(this._selector).data(ht))&&e._isTransitioning))){var i=g.Event(_t.SHOW);if(g(this._element).trigger(i),!i.isDefaultPrevented()){t&&(a._jQueryInterface.call(g(t).not(this._selector),"hide"),e||g(t).data(ht,null));var o=this._getDimension();g(this._element).removeClass(pt).addClass(vt),this._element.style[o]=0,this._triggerArray.length&&g(this._triggerArray).removeClass(yt).attr("aria-expanded",!0),this.setTransitioning(!0);var r="scroll"+(o[0].toUpperCase()+o.slice(1)),s=_.getTransitionDurationFromElement(this._element);g(this._element).one(_.TRANSITION_END,function(){g(n._element).removeClass(vt).addClass(pt).addClass(mt),n._element.style[o]="",n.setTransitioning(!1),g(n._element).trigger(_t.SHOWN)}).emulateTransitionEnd(s),this._element.style[o]=this._element[r]+"px"}}},t.hide=function(){var t=this;if(!this._isTransitioning&&g(this._element).hasClass(mt)){var e=g.Event(_t.HIDE);if(g(this._element).trigger(e),!e.isDefaultPrevented()){var n=this._getDimension();this._element.style[n]=this._element.getBoundingClientRect()[n]+"px",_.reflow(this._element),g(this._element).addClass(vt).removeClass(pt).removeClass(mt);var i=this._triggerArray.length;if(0<i)for(var o=0;o<i;o++){var r=this._triggerArray[o],s=_.getSelectorFromElement(r);if(null!==s)g([].slice.call(document.querySelectorAll(s))).hasClass(mt)||g(r).addClass(yt).attr("aria-expanded",!1)}this.setTransitioning(!0);this._element.style[n]="";var a=_.getTransitionDurationFromElement(this._element);g(this._element).one(_.TRANSITION_END,function(){t.setTransitioning(!1),g(t._element).removeClass(vt).addClass(pt).trigger(_t.HIDDEN)}).emulateTransitionEnd(a)}}},t.setTransitioning=function(t){this._isTransitioning=t},t.dispose=function(){g.removeData(this._element,ht),this._config=null,this._parent=null,this._element=null,this._triggerArray=null,this._isTransitioning=null},t._getConfig=function(t){return(t=l({},dt,t)).toggle=Boolean(t.toggle),_.typeCheckConfig(ct,t,gt),t},t._getDimension=function(){return g(this._element).hasClass(Et)?Et:Ct},t._getParent=function(){var t,n=this;_.isElement(this._config.parent)?(t=this._config.parent,"undefined"!=typeof this._config.parent.jquery&&(t=this._config.parent[0])):t=document.querySelector(this._config.parent);var e='[data-toggle="collapse"][data-parent="'+this._config.parent+'"]',i=[].slice.call(t.querySelectorAll(e));return g(i).each(function(t,e){n._addAriaAndCollapsedClass(a._getTargetFromElement(e),[e])}),t},t._addAriaAndCollapsedClass=function(t,e){var n=g(t).hasClass(mt);e.length&&g(e).toggleClass(yt,!n).attr("aria-expanded",n)},a._getTargetFromElement=function(t){var e=_.getSelectorFromElement(t);return e?document.querySelector(e):null},a._jQueryInterface=function(i){return this.each(function(){var t=g(this),e=t.data(ht),n=l({},dt,t.data(),"object"==typeof i&&i?i:{});if(!e&&n.toggle&&/show|hide/.test(i)&&(n.toggle=!1),e||(e=new a(this,n),t.data(ht,e)),"string"==typeof i){if("undefined"==typeof e[i])throw new TypeError('No method named "'+i+'"');e[i]()}})},s(a,null,[{key:"VERSION",get:function(){return"4.3.1"}},{key:"Default",get:function(){return dt}}]),a}();g(document).on(_t.CLICK_DATA_API,St,function(t){"A"===t.currentTarget.tagName&&t.preventDefault();var n=g(this),e=_.getSelectorFromElement(this),i=[].slice.call(document.querySelectorAll(e));g(i).each(function(){var t=g(this),e=t.data(ht)?"toggle":n.data();bt._jQueryInterface.call(t,e)})}),g.fn[ct]=bt._jQueryInterface,g.fn[ct].Constructor=bt,g.fn[ct].noConflict=function(){return g.fn[ct]=ft,bt._jQueryInterface};var It="dropdown",Dt="bs.dropdown",wt="."+Dt,At=".data-api",Nt=g.fn[It],Ot=new RegExp("38|40|27"),kt={HIDE:"hide"+wt,HIDDEN:"hidden"+wt,SHOW:"show"+wt,SHOWN:"shown"+wt,CLICK:"click"+wt,CLICK_DATA_API:"click"+wt+At,KEYDOWN_DATA_API:"keydown"+wt+At,KEYUP_DATA_API:"keyup"+wt+At},Pt="disabled",Lt="show",jt="dropup",Ht="dropright",Rt="dropleft",xt="dropdown-menu-right",Ft="position-static",Ut='[data-toggle="dropdown"]',Wt=".dropdown form",qt=".dropdown-menu",Mt=".navbar-nav",Kt=".dropdown-menu .dropdown-item:not(.disabled):not(:disabled)",Qt="top-start",Bt="top-end",Vt="bottom-start",Yt="bottom-end",zt="right-start",Xt="left-start",$t={offset:0,flip:!0,boundary:"scrollParent",reference:"toggle",display:"dynamic"},Gt={offset:"(number|string|function)",flip:"boolean",boundary:"(string|element)",reference:"(string|element)",display:"string"},Jt=function(){function c(t,e){this._element=t,this._popper=null,this._config=this._getConfig(e),this._menu=this._getMenuElement(),this._inNavbar=this._detectNavbar(),this._addEventListeners()}var t=c.prototype;return t.toggle=function(){if(!this._element.disabled&&!g(this._element).hasClass(Pt)){var t=c._getParentFromElement(this._element),e=g(this._menu).hasClass(Lt);if(c._clearMenus(),!e){var n={relatedTarget:this._element},i=g.Event(kt.SHOW,n);if(g(t).trigger(i),!i.isDefaultPrevented()){if(!this._inNavbar){if("undefined"==typeof u)throw new TypeError("Bootstrap's dropdowns require Popper.js (https://popper.js.org/)");var o=this._element;"parent"===this._config.reference?o=t:_.isElement(this._config.reference)&&(o=this._config.reference,"undefined"!=typeof this._config.reference.jquery&&(o=this._config.reference[0])),"scrollParent"!==this._config.boundary&&g(t).addClass(Ft),this._popper=new u(o,this._menu,this._getPopperConfig())}"ontouchstart"in document.documentElement&&0===g(t).closest(Mt).length&&g(document.body).children().on("mouseover",null,g.noop),this._element.focus(),this._element.setAttribute("aria-expanded",!0),g(this._menu).toggleClass(Lt),g(t).toggleClass(Lt).trigger(g.Event(kt.SHOWN,n))}}}},t.show=function(){if(!(this._element.disabled||g(this._element).hasClass(Pt)||g(this._menu).hasClass(Lt))){var t={relatedTarget:this._element},e=g.Event(kt.SHOW,t),n=c._getParentFromElement(this._element);g(n).trigger(e),e.isDefaultPrevented()||(g(this._menu).toggleClass(Lt),g(n).toggleClass(Lt).trigger(g.Event(kt.SHOWN,t)))}},t.hide=function(){if(!this._element.disabled&&!g(this._element).hasClass(Pt)&&g(this._menu).hasClass(Lt)){var t={relatedTarget:this._element},e=g.Event(kt.HIDE,t),n=c._getParentFromElement(this._element);g(n).trigger(e),e.isDefaultPrevented()||(g(this._menu).toggleClass(Lt),g(n).toggleClass(Lt).trigger(g.Event(kt.HIDDEN,t)))}},t.dispose=function(){g.removeData(this._element,Dt),g(this._element).off(wt),this._element=null,(this._menu=null)!==this._popper&&(this._popper.destroy(),this._popper=null)},t.update=function(){this._inNavbar=this._detectNavbar(),null!==this._popper&&this._popper.scheduleUpdate()},t._addEventListeners=function(){var e=this;g(this._element).on(kt.CLICK,function(t){t.preventDefault(),t.stopPropagation(),e.toggle()})},t._getConfig=function(t){return t=l({},this.constructor.Default,g(this._element).data(),t),_.typeCheckConfig(It,t,this.constructor.DefaultType),t},t._getMenuElement=function(){if(!this._menu){var t=c._getParentFromElement(this._element);t&&(this._menu=t.querySelector(qt))}return this._menu},t._getPlacement=function(){var t=g(this._element.parentNode),e=Vt;return t.hasClass(jt)?(e=Qt,g(this._menu).hasClass(xt)&&(e=Bt)):t.hasClass(Ht)?e=zt:t.hasClass(Rt)?e=Xt:g(this._menu).hasClass(xt)&&(e=Yt),e},t._detectNavbar=function(){return 0<g(this._element).closest(".navbar").length},t._getOffset=function(){var e=this,t={};return"function"==typeof this._config.offset?t.fn=function(t){return t.offsets=l({},t.offsets,e._config.offset(t.offsets,e._element)||{}),t}:t.offset=this._config.offset,t},t._getPopperConfig=function(){var t={placement:this._getPlacement(),modifiers:{offset:this._getOffset(),flip:{enabled:this._config.flip},preventOverflow:{boundariesElement:this._config.boundary}}};return"static"===this._config.display&&(t.modifiers.applyStyle={enabled:!1}),t},c._jQueryInterface=function(e){return this.each(function(){var t=g(this).data(Dt);if(t||(t=new c(this,"object"==typeof e?e:null),g(this).data(Dt,t)),"string"==typeof e){if("undefined"==typeof t[e])throw new TypeError('No method named "'+e+'"');t[e]()}})},c._clearMenus=function(t){if(!t||3!==t.which&&("keyup"!==t.type||9===t.which))for(var e=[].slice.call(document.querySelectorAll(Ut)),n=0,i=e.length;n<i;n++){var o=c._getParentFromElement(e[n]),r=g(e[n]).data(Dt),s={relatedTarget:e[n]};if(t&&"click"===t.type&&(s.clickEvent=t),r){var a=r._menu;if(g(o).hasClass(Lt)&&!(t&&("click"===t.type&&/input|textarea/i.test(t.target.tagName)||"keyup"===t.type&&9===t.which)&&g.contains(o,t.target))){var l=g.Event(kt.HIDE,s);g(o).trigger(l),l.isDefaultPrevented()||("ontouchstart"in document.documentElement&&g(document.body).children().off("mouseover",null,g.noop),e[n].setAttribute("aria-expanded","false"),g(a).removeClass(Lt),g(o).removeClass(Lt).trigger(g.Event(kt.HIDDEN,s)))}}}},c._getParentFromElement=function(t){var e,n=_.getSelectorFromElement(t);return n&&(e=document.querySelector(n)),e||t.parentNode},c._dataApiKeydownHandler=function(t){if((/input|textarea/i.test(t.target.tagName)?!(32===t.which||27!==t.which&&(40!==t.which&&38!==t.which||g(t.target).closest(qt).length)):Ot.test(t.which))&&(t.preventDefault(),t.stopPropagation(),!this.disabled&&!g(this).hasClass(Pt))){var e=c._getParentFromElement(this),n=g(e).hasClass(Lt);if(n&&(!n||27!==t.which&&32!==t.which)){var i=[].slice.call(e.querySelectorAll(Kt));if(0!==i.length){var o=i.indexOf(t.target);38===t.which&&0<o&&o--,40===t.which&&o<i.length-1&&o++,o<0&&(o=0),i[o].focus()}}else{if(27===t.which){var r=e.querySelector(Ut);g(r).trigger("focus")}g(this).trigger("click")}}},s(c,null,[{key:"VERSION",get:function(){return"4.3.1"}},{key:"Default",get:function(){return $t}},{key:"DefaultType",get:function(){return Gt}}]),c}();g(document).on(kt.KEYDOWN_DATA_API,Ut,Jt._dataApiKeydownHandler).on(kt.KEYDOWN_DATA_API,qt,Jt._dataApiKeydownHandler).on(kt.CLICK_DATA_API+" "+kt.KEYUP_DATA_API,Jt._clearMenus).on(kt.CLICK_DATA_API,Ut,function(t){t.preventDefault(),t.stopPropagation(),Jt._jQueryInterface.call(g(this),"toggle")}).on(kt.CLICK_DATA_API,Wt,function(t){t.stopPropagation()}),g.fn[It]=Jt._jQueryInterface,g.fn[It].Constructor=Jt,g.fn[It].noConflict=function(){return g.fn[It]=Nt,Jt._jQueryInterface};var Zt="modal",te="bs.modal",ee="."+te,ne=g.fn[Zt],ie={backdrop:!0,keyboard:!0,focus:!0,show:!0},oe={backdrop:"(boolean|string)",keyboard:"boolean",focus:"boolean",show:"boolean"},re={HIDE:"hide"+ee,HIDDEN:"hidden"+ee,SHOW:"show"+ee,SHOWN:"shown"+ee,FOCUSIN:"focusin"+ee,RESIZE:"resize"+ee,CLICK_DISMISS:"click.dismiss"+ee,KEYDOWN_DISMISS:"keydown.dismiss"+ee,MOUSEUP_DISMISS:"mouseup.dismiss"+ee,MOUSEDOWN_DISMISS:"mousedown.dismiss"+ee,CLICK_DATA_API:"click"+ee+".data-api"},se="modal-dialog-scrollable",ae="modal-scrollbar-measure",le="modal-backdrop",ce="modal-open",he="fade",ue="show",fe=".modal-dialog",de=".modal-body",ge='[data-toggle="modal"]',_e='[data-dismiss="modal"]',me=".fixed-top, .fixed-bottom, .is-fixed, .sticky-top",pe=".sticky-top",ve=function(){function o(t,e){this._config=this._getConfig(e),this._element=t,this._dialog=t.querySelector(fe),this._backdrop=null,this._isShown=!1,this._isBodyOverflowing=!1,this._ignoreBackdropClick=!1,this._isTransitioning=!1,this._scrollbarWidth=0}var t=o.prototype;return t.toggle=function(t){return this._isShown?this.hide():this.show(t)},t.show=function(t){var e=this;if(!this._isShown&&!this._isTransitioning){g(this._element).hasClass(he)&&(this._isTransitioning=!0);var n=g.Event(re.SHOW,{relatedTarget:t});g(this._element).trigger(n),this._isShown||n.isDefaultPrevented()||(this._isShown=!0,this._checkScrollbar(),this._setScrollbar(),this._adjustDialog(),this._setEscapeEvent(),this._setResizeEvent(),g(this._element).on(re.CLICK_DISMISS,_e,function(t){return e.hide(t)}),g(this._dialog).on(re.MOUSEDOWN_DISMISS,function(){g(e._element).one(re.MOUSEUP_DISMISS,function(t){g(t.target).is(e._element)&&(e._ignoreBackdropClick=!0)})}),this._showBackdrop(function(){return e._showElement(t)}))}},t.hide=function(t){var e=this;if(t&&t.preventDefault(),this._isShown&&!this._isTransitioning){var n=g.Event(re.HIDE);if(g(this._element).trigger(n),this._isShown&&!n.isDefaultPrevented()){this._isShown=!1;var i=g(this._element).hasClass(he);if(i&&(this._isTransitioning=!0),this._setEscapeEvent(),this._setResizeEvent(),g(document).off(re.FOCUSIN),g(this._element).removeClass(ue),g(this._element).off(re.CLICK_DISMISS),g(this._dialog).off(re.MOUSEDOWN_DISMISS),i){var o=_.getTransitionDurationFromElement(this._element);g(this._element).one(_.TRANSITION_END,function(t){return e._hideModal(t)}).emulateTransitionEnd(o)}else this._hideModal()}}},t.dispose=function(){[window,this._element,this._dialog].forEach(function(t){return g(t).off(ee)}),g(document).off(re.FOCUSIN),g.removeData(this._element,te),this._config=null,this._element=null,this._dialog=null,this._backdrop=null,this._isShown=null,this._isBodyOverflowing=null,this._ignoreBackdropClick=null,this._isTransitioning=null,this._scrollbarWidth=null},t.handleUpdate=function(){this._adjustDialog()},t._getConfig=function(t){return t=l({},ie,t),_.typeCheckConfig(Zt,t,oe),t},t._showElement=function(t){var e=this,n=g(this._element).hasClass(he);this._element.parentNode&&this._element.parentNode.nodeType===Node.ELEMENT_NODE||document.body.appendChild(this._element),this._element.style.display="block",this._element.removeAttribute("aria-hidden"),this._element.setAttribute("aria-modal",!0),g(this._dialog).hasClass(se)?this._dialog.querySelector(de).scrollTop=0:this._element.scrollTop=0,n&&_.reflow(this._element),g(this._element).addClass(ue),this._config.focus&&this._enforceFocus();var i=g.Event(re.SHOWN,{relatedTarget:t}),o=function(){e._config.focus&&e._element.focus(),e._isTransitioning=!1,g(e._element).trigger(i)};if(n){var r=_.getTransitionDurationFromElement(this._dialog);g(this._dialog).one(_.TRANSITION_END,o).emulateTransitionEnd(r)}else o()},t._enforceFocus=function(){var e=this;g(document).off(re.FOCUSIN).on(re.FOCUSIN,function(t){document!==t.target&&e._element!==t.target&&0===g(e._element).has(t.target).length&&e._element.focus()})},t._setEscapeEvent=function(){var e=this;this._isShown&&this._config.keyboard?g(this._element).on(re.KEYDOWN_DISMISS,function(t){27===t.which&&(t.preventDefault(),e.hide())}):this._isShown||g(this._element).off(re.KEYDOWN_DISMISS)},t._setResizeEvent=function(){var e=this;this._isShown?g(window).on(re.RESIZE,function(t){return e.handleUpdate(t)}):g(window).off(re.RESIZE)},t._hideModal=function(){var t=this;this._element.style.display="none",this._element.setAttribute("aria-hidden",!0),this._element.removeAttribute("aria-modal"),this._isTransitioning=!1,this._showBackdrop(function(){g(document.body).removeClass(ce),t._resetAdjustments(),t._resetScrollbar(),g(t._element).trigger(re.HIDDEN)})},t._removeBackdrop=function(){this._backdrop&&(g(this._backdrop).remove(),this._backdrop=null)},t._showBackdrop=function(t){var e=this,n=g(this._element).hasClass(he)?he:"";if(this._isShown&&this._config.backdrop){if(this._backdrop=document.createElement("div"),this._backdrop.className=le,n&&this._backdrop.classList.add(n),g(this._backdrop).appendTo(document.body),g(this._element).on(re.CLICK_DISMISS,function(t){e._ignoreBackdropClick?e._ignoreBackdropClick=!1:t.target===t.currentTarget&&("static"===e._config.backdrop?e._element.focus():e.hide())}),n&&_.reflow(this._backdrop),g(this._backdrop).addClass(ue),!t)return;if(!n)return void t();var i=_.getTransitionDurationFromElement(this._backdrop);g(this._backdrop).one(_.TRANSITION_END,t).emulateTransitionEnd(i)}else if(!this._isShown&&this._backdrop){g(this._backdrop).removeClass(ue);var o=function(){e._removeBackdrop(),t&&t()};if(g(this._element).hasClass(he)){var r=_.getTransitionDurationFromElement(this._backdrop);g(this._backdrop).one(_.TRANSITION_END,o).emulateTransitionEnd(r)}else o()}else t&&t()},t._adjustDialog=function(){var t=this._element.scrollHeight>document.documentElement.clientHeight;!this._isBodyOverflowing&&t&&(this._element.style.paddingLeft=this._scrollbarWidth+"px"),this._isBodyOverflowing&&!t&&(this._element.style.paddingRight=this._scrollbarWidth+"px")},t._resetAdjustments=function(){this._element.style.paddingLeft="",this._element.style.paddingRight=""},t._checkScrollbar=function(){var t=document.body.getBoundingClientRect();this._isBodyOverflowing=t.left+t.right<window.innerWidth,this._scrollbarWidth=this._getScrollbarWidth()},t._setScrollbar=function(){var o=this;if(this._isBodyOverflowing){var t=[].slice.call(document.querySelectorAll(me)),e=[].slice.call(document.querySelectorAll(pe));g(t).each(function(t,e){var n=e.style.paddingRight,i=g(e).css("padding-right");g(e).data("padding-right",n).css("padding-right",parseFloat(i)+o._scrollbarWidth+"px")}),g(e).each(function(t,e){var n=e.style.marginRight,i=g(e).css("margin-right");g(e).data("margin-right",n).css("margin-right",parseFloat(i)-o._scrollbarWidth+"px")});var n=document.body.style.paddingRight,i=g(document.body).css("padding-right");g(document.body).data("padding-right",n).css("padding-right",parseFloat(i)+this._scrollbarWidth+"px")}g(document.body).addClass(ce)},t._resetScrollbar=function(){var t=[].slice.call(document.querySelectorAll(me));g(t).each(function(t,e){var n=g(e).data("padding-right");g(e).removeData("padding-right"),e.style.paddingRight=n||""});var e=[].slice.call(document.querySelectorAll(""+pe));g(e).each(function(t,e){var n=g(e).data("margin-right");"undefined"!=typeof n&&g(e).css("margin-right",n).removeData("margin-right")});var n=g(document.body).data("padding-right");g(document.body).removeData("padding-right"),document.body.style.paddingRight=n||""},t._getScrollbarWidth=function(){var t=document.createElement("div");t.className=ae,document.body.appendChild(t);var e=t.getBoundingClientRect().width-t.clientWidth;return document.body.removeChild(t),e},o._jQueryInterface=function(n,i){return this.each(function(){var t=g(this).data(te),e=l({},ie,g(this).data(),"object"==typeof n&&n?n:{});if(t||(t=new o(this,e),g(this).data(te,t)),"string"==typeof n){if("undefined"==typeof t[n])throw new TypeError('No method named "'+n+'"');t[n](i)}else e.show&&t.show(i)})},s(o,null,[{key:"VERSION",get:function(){return"4.3.1"}},{key:"Default",get:function(){return ie}}]),o}();g(document).on(re.CLICK_DATA_API,ge,function(t){var e,n=this,i=_.getSelectorFromElement(this);i&&(e=document.querySelector(i));var o=g(e).data(te)?"toggle":l({},g(e).data(),g(this).data());"A"!==this.tagName&&"AREA"!==this.tagName||t.preventDefault();var r=g(e).one(re.SHOW,function(t){t.isDefaultPrevented()||r.one(re.HIDDEN,function(){g(n).is(":visible")&&n.focus()})});ve._jQueryInterface.call(g(e),o,this)}),g.fn[Zt]=ve._jQueryInterface,g.fn[Zt].Constructor=ve,g.fn[Zt].noConflict=function(){return g.fn[Zt]=ne,ve._jQueryInterface};var ye=["background","cite","href","itemtype","longdesc","poster","src","xlink:href"],Ee={"*":["class","dir","id","lang","role",/^aria-[\w-]*$/i],a:["target","href","title","rel"],area:[],b:[],br:[],col:[],code:[],div:[],em:[],hr:[],h1:[],h2:[],h3:[],h4:[],h5:[],h6:[],i:[],img:["src","alt","title","width","height"],li:[],ol:[],p:[],pre:[],s:[],small:[],span:[],sub:[],sup:[],strong:[],u:[],ul:[]},Ce=/^(?:(?:https?|mailto|ftp|tel|file):|[^&:/?#]*(?:[/?#]|$))/gi,Te=/^data:(?:image\/(?:bmp|gif|jpeg|jpg|png|tiff|webp)|video\/(?:mpeg|mp4|ogg|webm)|audio\/(?:mp3|oga|ogg|opus));base64,[a-z0-9+/]+=*$/i;function Se(t,s,e){if(0===t.length)return t;if(e&&"function"==typeof e)return e(t);for(var n=(new window.DOMParser).parseFromString(t,"text/html"),a=Object.keys(s),l=[].slice.call(n.body.querySelectorAll("*")),i=function(t,e){var n=l[t],i=n.nodeName.toLowerCase();if(-1===a.indexOf(n.nodeName.toLowerCase()))return n.parentNode.removeChild(n),"continue";var o=[].slice.call(n.attributes),r=[].concat(s["*"]||[],s[i]||[]);o.forEach(function(t){(function(t,e){var n=t.nodeName.toLowerCase();if(-1!==e.indexOf(n))return-1===ye.indexOf(n)||Boolean(t.nodeValue.match(Ce)||t.nodeValue.match(Te));for(var i=e.filter(function(t){return t instanceof RegExp}),o=0,r=i.length;o<r;o++)if(n.match(i[o]))return!0;return!1})(t,r)||n.removeAttribute(t.nodeName)})},o=0,r=l.length;o<r;o++)i(o);return n.body.innerHTML}var be="tooltip",Ie="bs.tooltip",De="."+Ie,we=g.fn[be],Ae="bs-tooltip",Ne=new RegExp("(^|\\s)"+Ae+"\\S+","g"),Oe=["sanitize","whiteList","sanitizeFn"],ke={animation:"boolean",template:"string",title:"(string|element|function)",trigger:"string",delay:"(number|object)",html:"boolean",selector:"(string|boolean)",placement:"(string|function)",offset:"(number|string|function)",container:"(string|element|boolean)",fallbackPlacement:"(string|array)",boundary:"(string|element)",sanitize:"boolean",sanitizeFn:"(null|function)",whiteList:"object"},Pe={AUTO:"auto",TOP:"top",RIGHT:"right",BOTTOM:"bottom",LEFT:"left"},Le={animation:!0,template:'<div class="tooltip" role="tooltip"><div class="arrow"></div><div class="tooltip-inner"></div></div>',trigger:"hover focus",title:"",delay:0,html:!1,selector:!1,placement:"top",offset:0,container:!1,fallbackPlacement:"flip",boundary:"scrollParent",sanitize:!0,sanitizeFn:null,whiteList:Ee},je="show",He="out",Re={HIDE:"hide"+De,HIDDEN:"hidden"+De,SHOW:"show"+De,SHOWN:"shown"+De,INSERTED:"inserted"+De,CLICK:"click"+De,FOCUSIN:"focusin"+De,FOCUSOUT:"focusout"+De,MOUSEENTER:"mouseenter"+De,MOUSELEAVE:"mouseleave"+De},xe="fade",Fe="show",Ue=".tooltip-inner",We=".arrow",qe="hover",Me="focus",Ke="click",Qe="manual",Be=function(){function i(t,e){if("undefined"==typeof u)throw new TypeError("Bootstrap's tooltips require Popper.js (https://popper.js.org/)");this._isEnabled=!0,this._timeout=0,this._hoverState="",this._activeTrigger={},this._popper=null,this.element=t,this.config=this._getConfig(e),this.tip=null,this._setListeners()}var t=i.prototype;return t.enable=function(){this._isEnabled=!0},t.disable=function(){this._isEnabled=!1},t.toggleEnabled=function(){this._isEnabled=!this._isEnabled},t.toggle=function(t){if(this._isEnabled)if(t){var e=this.constructor.DATA_KEY,n=g(t.currentTarget).data(e);n||(n=new this.constructor(t.currentTarget,this._getDelegateConfig()),g(t.currentTarget).data(e,n)),n._activeTrigger.click=!n._activeTrigger.click,n._isWithActiveTrigger()?n._enter(null,n):n._leave(null,n)}else{if(g(this.getTipElement()).hasClass(Fe))return void this._leave(null,this);this._enter(null,this)}},t.dispose=function(){clearTimeout(this._timeout),g.removeData(this.element,this.constructor.DATA_KEY),g(this.element).off(this.constructor.EVENT_KEY),g(this.element).closest(".modal").off("hide.bs.modal"),this.tip&&g(this.tip).remove(),this._isEnabled=null,this._timeout=null,this._hoverState=null,(this._activeTrigger=null)!==this._popper&&this._popper.destroy(),this._popper=null,this.element=null,this.config=null,this.tip=null},t.show=function(){var e=this;if("none"===g(this.element).css("display"))throw new Error("Please use show on visible elements");var t=g.Event(this.constructor.Event.SHOW);if(this.isWithContent()&&this._isEnabled){g(this.element).trigger(t);var n=_.findShadowRoot(this.element),i=g.contains(null!==n?n:this.element.ownerDocument.documentElement,this.element);if(t.isDefaultPrevented()||!i)return;var o=this.getTipElement(),r=_.getUID(this.constructor.NAME);o.setAttribute("id",r),this.element.setAttribute("aria-describedby",r),this.setContent(),this.config.animation&&g(o).addClass(xe);var s="function"==typeof this.config.placement?this.config.placement.call(this,o,this.element):this.config.placement,a=this._getAttachment(s);this.addAttachmentClass(a);var l=this._getContainer();g(o).data(this.constructor.DATA_KEY,this),g.contains(this.element.ownerDocument.documentElement,this.tip)||g(o).appendTo(l),g(this.element).trigger(this.constructor.Event.INSERTED),this._popper=new u(this.element,o,{placement:a,modifiers:{offset:this._getOffset(),flip:{behavior:this.config.fallbackPlacement},arrow:{element:We},preventOverflow:{boundariesElement:this.config.boundary}},onCreate:function(t){t.originalPlacement!==t.placement&&e._handlePopperPlacementChange(t)},onUpdate:function(t){return e._handlePopperPlacementChange(t)}}),g(o).addClass(Fe),"ontouchstart"in document.documentElement&&g(document.body).children().on("mouseover",null,g.noop);var c=function(){e.config.animation&&e._fixTransition();var t=e._hoverState;e._hoverState=null,g(e.element).trigger(e.constructor.Event.SHOWN),t===He&&e._leave(null,e)};if(g(this.tip).hasClass(xe)){var h=_.getTransitionDurationFromElement(this.tip);g(this.tip).one(_.TRANSITION_END,c).emulateTransitionEnd(h)}else c()}},t.hide=function(t){var e=this,n=this.getTipElement(),i=g.Event(this.constructor.Event.HIDE),o=function(){e._hoverState!==je&&n.parentNode&&n.parentNode.removeChild(n),e._cleanTipClass(),e.element.removeAttribute("aria-describedby"),g(e.element).trigger(e.constructor.Event.HIDDEN),null!==e._popper&&e._popper.destroy(),t&&t()};if(g(this.element).trigger(i),!i.isDefaultPrevented()){if(g(n).removeClass(Fe),"ontouchstart"in document.documentElement&&g(document.body).children().off("mouseover",null,g.noop),this._activeTrigger[Ke]=!1,this._activeTrigger[Me]=!1,this._activeTrigger[qe]=!1,g(this.tip).hasClass(xe)){var r=_.getTransitionDurationFromElement(n);g(n).one(_.TRANSITION_END,o).emulateTransitionEnd(r)}else o();this._hoverState=""}},t.update=function(){null!==this._popper&&this._popper.scheduleUpdate()},t.isWithContent=function(){return Boolean(this.getTitle())},t.addAttachmentClass=function(t){g(this.getTipElement()).addClass(Ae+"-"+t)},t.getTipElement=function(){return this.tip=this.tip||g(this.config.template)[0],this.tip},t.setContent=function(){var t=this.getTipElement();this.setElementContent(g(t.querySelectorAll(Ue)),this.getTitle()),g(t).removeClass(xe+" "+Fe)},t.setElementContent=function(t,e){"object"!=typeof e||!e.nodeType&&!e.jquery?this.config.html?(this.config.sanitize&&(e=Se(e,this.config.whiteList,this.config.sanitizeFn)),t.html(e)):t.text(e):this.config.html?g(e).parent().is(t)||t.empty().append(e):t.text(g(e).text())},t.getTitle=function(){var t=this.element.getAttribute("data-original-title");return t||(t="function"==typeof this.config.title?this.config.title.call(this.element):this.config.title),t},t._getOffset=function(){var e=this,t={};return"function"==typeof this.config.offset?t.fn=function(t){return t.offsets=l({},t.offsets,e.config.offset(t.offsets,e.element)||{}),t}:t.offset=this.config.offset,t},t._getContainer=function(){return!1===this.config.container?document.body:_.isElement(this.config.container)?g(this.config.container):g(document).find(this.config.container)},t._getAttachment=function(t){return Pe[t.toUpperCase()]},t._setListeners=function(){var i=this;this.config.trigger.split(" ").forEach(function(t){if("click"===t)g(i.element).on(i.constructor.Event.CLICK,i.config.selector,function(t){return i.toggle(t)});else if(t!==Qe){var e=t===qe?i.constructor.Event.MOUSEENTER:i.constructor.Event.FOCUSIN,n=t===qe?i.constructor.Event.MOUSELEAVE:i.constructor.Event.FOCUSOUT;g(i.element).on(e,i.config.selector,function(t){return i._enter(t)}).on(n,i.config.selector,function(t){return i._leave(t)})}}),g(this.element).closest(".modal").on("hide.bs.modal",function(){i.element&&i.hide()}),this.config.selector?this.config=l({},this.config,{trigger:"manual",selector:""}):this._fixTitle()},t._fixTitle=function(){var t=typeof this.element.getAttribute("data-original-title");(this.element.getAttribute("title")||"string"!==t)&&(this.element.setAttribute("data-original-title",this.element.getAttribute("title")||""),this.element.setAttribute("title",""))},t._enter=function(t,e){var n=this.constructor.DATA_KEY;(e=e||g(t.currentTarget).data(n))||(e=new this.constructor(t.currentTarget,this._getDelegateConfig()),g(t.currentTarget).data(n,e)),t&&(e._activeTrigger["focusin"===t.type?Me:qe]=!0),g(e.getTipElement()).hasClass(Fe)||e._hoverState===je?e._hoverState=je:(clearTimeout(e._timeout),e._hoverState=je,e.config.delay&&e.config.delay.show?e._timeout=setTimeout(function(){e._hoverState===je&&e.show()},e.config.delay.show):e.show())},t._leave=function(t,e){var n=this.constructor.DATA_KEY;(e=e||g(t.currentTarget).data(n))||(e=new this.constructor(t.currentTarget,this._getDelegateConfig()),g(t.currentTarget).data(n,e)),t&&(e._activeTrigger["focusout"===t.type?Me:qe]=!1),e._isWithActiveTrigger()||(clearTimeout(e._timeout),e._hoverState=He,e.config.delay&&e.config.delay.hide?e._timeout=setTimeout(function(){e._hoverState===He&&e.hide()},e.config.delay.hide):e.hide())},t._isWithActiveTrigger=function(){for(var t in this._activeTrigger)if(this._activeTrigger[t])return!0;return!1},t._getConfig=function(t){var e=g(this.element).data();return Object.keys(e).forEach(function(t){-1!==Oe.indexOf(t)&&delete e[t]}),"number"==typeof(t=l({},this.constructor.Default,e,"object"==typeof t&&t?t:{})).delay&&(t.delay={show:t.delay,hide:t.delay}),"number"==typeof t.title&&(t.title=t.title.toString()),"number"==typeof t.content&&(t.content=t.content.toString()),_.typeCheckConfig(be,t,this.constructor.DefaultType),t.sanitize&&(t.template=Se(t.template,t.whiteList,t.sanitizeFn)),t},t._getDelegateConfig=function(){var t={};if(this.config)for(var e in this.config)this.constructor.Default[e]!==this.config[e]&&(t[e]=this.config[e]);return t},t._cleanTipClass=function(){var t=g(this.getTipElement()),e=t.attr("class").match(Ne);null!==e&&e.length&&t.removeClass(e.join(""))},t._handlePopperPlacementChange=function(t){var e=t.instance;this.tip=e.popper,this._cleanTipClass(),this.addAttachmentClass(this._getAttachment(t.placement))},t._fixTransition=function(){var t=this.getTipElement(),e=this.config.animation;null===t.getAttribute("x-placement")&&(g(t).removeClass(xe),this.config.animation=!1,this.hide(),this.show(),this.config.animation=e)},i._jQueryInterface=function(n){return this.each(function(){var t=g(this).data(Ie),e="object"==typeof n&&n;if((t||!/dispose|hide/.test(n))&&(t||(t=new i(this,e),g(this).data(Ie,t)),"string"==typeof n)){if("undefined"==typeof t[n])throw new TypeError('No method named "'+n+'"');t[n]()}})},s(i,null,[{key:"VERSION",get:function(){return"4.3.1"}},{key:"Default",get:function(){return Le}},{key:"NAME",get:function(){return be}},{key:"DATA_KEY",get:function(){return Ie}},{key:"Event",get:function(){return Re}},{key:"EVENT_KEY",get:function(){return De}},{key:"DefaultType",get:function(){return ke}}]),i}();g.fn[be]=Be._jQueryInterface,g.fn[be].Constructor=Be,g.fn[be].noConflict=function(){return g.fn[be]=we,Be._jQueryInterface};var Ve="popover",Ye="bs.popover",ze="."+Ye,Xe=g.fn[Ve],$e="bs-popover",Ge=new RegExp("(^|\\s)"+$e+"\\S+","g"),Je=l({},Be.Default,{placement:"right",trigger:"click",content:"",template:'<div class="popover" role="tooltip"><div class="arrow"></div><h3 class="popover-header"></h3><div class="popover-body"></div></div>'}),Ze=l({},Be.DefaultType,{content:"(string|element|function)"}),tn="fade",en="show",nn=".popover-header",on=".popover-body",rn={HIDE:"hide"+ze,HIDDEN:"hidden"+ze,SHOW:"show"+ze,SHOWN:"shown"+ze,INSERTED:"inserted"+ze,CLICK:"click"+ze,FOCUSIN:"focusin"+ze,FOCUSOUT:"focusout"+ze,MOUSEENTER:"mouseenter"+ze,MOUSELEAVE:"mouseleave"+ze},sn=function(t){var e,n;function i(){return t.apply(this,arguments)||this}n=t,(e=i).prototype=Object.create(n.prototype),(e.prototype.constructor=e).__proto__=n;var o=i.prototype;return o.isWithContent=function(){return this.getTitle()||this._getContent()},o.addAttachmentClass=function(t){g(this.getTipElement()).addClass($e+"-"+t)},o.getTipElement=function(){return this.tip=this.tip||g(this.config.template)[0],this.tip},o.setContent=function(){var t=g(this.getTipElement());this.setElementContent(t.find(nn),this.getTitle());var e=this._getContent();"function"==typeof e&&(e=e.call(this.element)),this.setElementContent(t.find(on),e),t.removeClass(tn+" "+en)},o._getContent=function(){return this.element.getAttribute("data-content")||this.config.content},o._cleanTipClass=function(){var t=g(this.getTipElement()),e=t.attr("class").match(Ge);null!==e&&0<e.length&&t.removeClass(e.join(""))},i._jQueryInterface=function(n){return this.each(function(){var t=g(this).data(Ye),e="object"==typeof n?n:null;if((t||!/dispose|hide/.test(n))&&(t||(t=new i(this,e),g(this).data(Ye,t)),"string"==typeof n)){if("undefined"==typeof t[n])throw new TypeError('No method named "'+n+'"');t[n]()}})},s(i,null,[{key:"VERSION",get:function(){return"4.3.1"}},{key:"Default",get:function(){return Je}},{key:"NAME",get:function(){return Ve}},{key:"DATA_KEY",get:function(){return Ye}},{key:"Event",get:function(){return rn}},{key:"EVENT_KEY",get:function(){return ze}},{key:"DefaultType",get:function(){return Ze}}]),i}(Be);g.fn[Ve]=sn._jQueryInterface,g.fn[Ve].Constructor=sn,g.fn[Ve].noConflict=function(){return g.fn[Ve]=Xe,sn._jQueryInterface};var an="scrollspy",ln="bs.scrollspy",cn="."+ln,hn=g.fn[an],un={offset:10,method:"auto",target:""},fn={offset:"number",method:"string",target:"(string|element)"},dn={ACTIVATE:"activate"+cn,SCROLL:"scroll"+cn,LOAD_DATA_API:"load"+cn+".data-api"},gn="dropdown-item",_n="active",mn='[data-spy="scroll"]',pn=".nav, .list-group",vn=".nav-link",yn=".nav-item",En=".list-group-item",Cn=".dropdown",Tn=".dropdown-item",Sn=".dropdown-toggle",bn="offset",In="position",Dn=function(){function n(t,e){var n=this;this._element=t,this._scrollElement="BODY"===t.tagName?window:t,this._config=this._getConfig(e),this._selector=this._config.target+" "+vn+","+this._config.target+" "+En+","+this._config.target+" "+Tn,this._offsets=[],this._targets=[],this._activeTarget=null,this._scrollHeight=0,g(this._scrollElement).on(dn.SCROLL,function(t){return n._process(t)}),this.refresh(),this._process()}var t=n.prototype;return t.refresh=function(){var e=this,t=this._scrollElement===this._scrollElement.window?bn:In,o="auto"===this._config.method?t:this._config.method,r=o===In?this._getScrollTop():0;this._offsets=[],this._targets=[],this._scrollHeight=this._getScrollHeight(),[].slice.call(document.querySelectorAll(this._selector)).map(function(t){var e,n=_.getSelectorFromElement(t);if(n&&(e=document.querySelector(n)),e){var i=e.getBoundingClientRect();if(i.width||i.height)return[g(e)[o]().top+r,n]}return null}).filter(function(t){return t}).sort(function(t,e){return t[0]-e[0]}).forEach(function(t){e._offsets.push(t[0]),e._targets.push(t[1])})},t.dispose=function(){g.removeData(this._element,ln),g(this._scrollElement).off(cn),this._element=null,this._scrollElement=null,this._config=null,this._selector=null,this._offsets=null,this._targets=null,this._activeTarget=null,this._scrollHeight=null},t._getConfig=function(t){if("string"!=typeof(t=l({},un,"object"==typeof t&&t?t:{})).target){var e=g(t.target).attr("id");e||(e=_.getUID(an),g(t.target).attr("id",e)),t.target="#"+e}return _.typeCheckConfig(an,t,fn),t},t._getScrollTop=function(){return this._scrollElement===window?this._scrollElement.pageYOffset:this._scrollElement.scrollTop},t._getScrollHeight=function(){return this._scrollElement.scrollHeight||Math.max(document.body.scrollHeight,document.documentElement.scrollHeight)},t._getOffsetHeight=function(){return this._scrollElement===window?window.innerHeight:this._scrollElement.getBoundingClientRect().height},t._process=function(){var t=this._getScrollTop()+this._config.offset,e=this._getScrollHeight(),n=this._config.offset+e-this._getOffsetHeight();if(this._scrollHeight!==e&&this.refresh(),n<=t){var i=this._targets[this._targets.length-1];this._activeTarget!==i&&this._activate(i)}else{if(this._activeTarget&&t<this._offsets[0]&&0<this._offsets[0])return this._activeTarget=null,void this._clear();for(var o=this._offsets.length;o--;){this._activeTarget!==this._targets[o]&&t>=this._offsets[o]&&("undefined"==typeof this._offsets[o+1]||t<this._offsets[o+1])&&this._activate(this._targets[o])}}},t._activate=function(e){this._activeTarget=e,this._clear();var t=this._selector.split(",").map(function(t){return t+'[data-target="'+e+'"],'+t+'[href="'+e+'"]'}),n=g([].slice.call(document.querySelectorAll(t.join(","))));n.hasClass(gn)?(n.closest(Cn).find(Sn).addClass(_n),n.addClass(_n)):(n.addClass(_n),n.parents(pn).prev(vn+", "+En).addClass(_n),n.parents(pn).prev(yn).children(vn).addClass(_n)),g(this._scrollElement).trigger(dn.ACTIVATE,{relatedTarget:e})},t._clear=function(){[].slice.call(document.querySelectorAll(this._selector)).filter(function(t){return t.classList.contains(_n)}).forEach(function(t){return t.classList.remove(_n)})},n._jQueryInterface=function(e){return this.each(function(){var t=g(this).data(ln);if(t||(t=new n(this,"object"==typeof e&&e),g(this).data(ln,t)),"string"==typeof e){if("undefined"==typeof t[e])throw new TypeError('No method named "'+e+'"');t[e]()}})},s(n,null,[{key:"VERSION",get:function(){return"4.3.1"}},{key:"Default",get:function(){return un}}]),n}();g(window).on(dn.LOAD_DATA_API,function(){for(var t=[].slice.call(document.querySelectorAll(mn)),e=t.length;e--;){var n=g(t[e]);Dn._jQueryInterface.call(n,n.data())}}),g.fn[an]=Dn._jQueryInterface,g.fn[an].Constructor=Dn,g.fn[an].noConflict=function(){return g.fn[an]=hn,Dn._jQueryInterface};var wn="bs.tab",An="."+wn,Nn=g.fn.tab,On={HIDE:"hide"+An,HIDDEN:"hidden"+An,SHOW:"show"+An,SHOWN:"shown"+An,CLICK_DATA_API:"click"+An+".data-api"},kn="dropdown-menu",Pn="active",Ln="disabled",jn="fade",Hn="show",Rn=".dropdown",xn=".nav, .list-group",Fn=".active",Un="> li > .active",Wn='[data-toggle="tab"], [data-toggle="pill"], [data-toggle="list"]',qn=".dropdown-toggle",Mn="> .dropdown-menu .active",Kn=function(){function i(t){this._element=t}var t=i.prototype;return t.show=function(){var n=this;if(!(this._element.parentNode&&this._element.parentNode.nodeType===Node.ELEMENT_NODE&&g(this._element).hasClass(Pn)||g(this._element).hasClass(Ln))){var t,i,e=g(this._element).closest(xn)[0],o=_.getSelectorFromElement(this._element);if(e){var r="UL"===e.nodeName||"OL"===e.nodeName?Un:Fn;i=(i=g.makeArray(g(e).find(r)))[i.length-1]}var s=g.Event(On.HIDE,{relatedTarget:this._element}),a=g.Event(On.SHOW,{relatedTarget:i});if(i&&g(i).trigger(s),g(this._element).trigger(a),!a.isDefaultPrevented()&&!s.isDefaultPrevented()){o&&(t=document.querySelector(o)),this._activate(this._element,e);var l=function(){var t=g.Event(On.HIDDEN,{relatedTarget:n._element}),e=g.Event(On.SHOWN,{relatedTarget:i});g(i).trigger(t),g(n._element).trigger(e)};t?this._activate(t,t.parentNode,l):l()}}},t.dispose=function(){g.removeData(this._element,wn),this._element=null},t._activate=function(t,e,n){var i=this,o=(!e||"UL"!==e.nodeName&&"OL"!==e.nodeName?g(e).children(Fn):g(e).find(Un))[0],r=n&&o&&g(o).hasClass(jn),s=function(){return i._transitionComplete(t,o,n)};if(o&&r){var a=_.getTransitionDurationFromElement(o);g(o).removeClass(Hn).one(_.TRANSITION_END,s).emulateTransitionEnd(a)}else s()},t._transitionComplete=function(t,e,n){if(e){g(e).removeClass(Pn);var i=g(e.parentNode).find(Mn)[0];i&&g(i).removeClass(Pn),"tab"===e.getAttribute("role")&&e.setAttribute("aria-selected",!1)}if(g(t).addClass(Pn),"tab"===t.getAttribute("role")&&t.setAttribute("aria-selected",!0),_.reflow(t),t.classList.contains(jn)&&t.classList.add(Hn),t.parentNode&&g(t.parentNode).hasClass(kn)){var o=g(t).closest(Rn)[0];if(o){var r=[].slice.call(o.querySelectorAll(qn));g(r).addClass(Pn)}t.setAttribute("aria-expanded",!0)}n&&n()},i._jQueryInterface=function(n){return this.each(function(){var t=g(this),e=t.data(wn);if(e||(e=new i(this),t.data(wn,e)),"string"==typeof n){if("undefined"==typeof e[n])throw new TypeError('No method named "'+n+'"');e[n]()}})},s(i,null,[{key:"VERSION",get:function(){return"4.3.1"}}]),i}();g(document).on(On.CLICK_DATA_API,Wn,function(t){t.preventDefault(),Kn._jQueryInterface.call(g(this),"show")}),g.fn.tab=Kn._jQueryInterface,g.fn.tab.Constructor=Kn,g.fn.tab.noConflict=function(){return g.fn.tab=Nn,Kn._jQueryInterface};var Qn="toast",Bn="bs.toast",Vn="."+Bn,Yn=g.fn[Qn],zn={CLICK_DISMISS:"click.dismiss"+Vn,HIDE:"hide"+Vn,HIDDEN:"hidden"+Vn,SHOW:"show"+Vn,SHOWN:"shown"+Vn},Xn="fade",$n="hide",Gn="show",Jn="showing",Zn={animation:"boolean",autohide:"boolean",delay:"number"},ti={animation:!0,autohide:!0,delay:500},ei='[data-dismiss="toast"]',ni=function(){function i(t,e){this._element=t,this._config=this._getConfig(e),this._timeout=null,this._setListeners()}var t=i.prototype;return t.show=function(){var t=this;g(this._element).trigger(zn.SHOW),this._config.animation&&this._element.classList.add(Xn);var e=function(){t._element.classList.remove(Jn),t._element.classList.add(Gn),g(t._element).trigger(zn.SHOWN),t._config.autohide&&t.hide()};if(this._element.classList.remove($n),this._element.classList.add(Jn),this._config.animation){var n=_.getTransitionDurationFromElement(this._element);g(this._element).one(_.TRANSITION_END,e).emulateTransitionEnd(n)}else e()},t.hide=function(t){var e=this;this._element.classList.contains(Gn)&&(g(this._element).trigger(zn.HIDE),t?this._close():this._timeout=setTimeout(function(){e._close()},this._config.delay))},t.dispose=function(){clearTimeout(this._timeout),this._timeout=null,this._element.classList.contains(Gn)&&this._element.classList.remove(Gn),g(this._element).off(zn.CLICK_DISMISS),g.removeData(this._element,Bn),this._element=null,this._config=null},t._getConfig=function(t){return t=l({},ti,g(this._element).data(),"object"==typeof t&&t?t:{}),_.typeCheckConfig(Qn,t,this.constructor.DefaultType),t},t._setListeners=function(){var t=this;g(this._element).on(zn.CLICK_DISMISS,ei,function(){return t.hide(!0)})},t._close=function(){var t=this,e=function(){t._element.classList.add($n),g(t._element).trigger(zn.HIDDEN)};if(this._element.classList.remove(Gn),this._config.animation){var n=_.getTransitionDurationFromElement(this._element);g(this._element).one(_.TRANSITION_END,e).emulateTransitionEnd(n)}else e()},i._jQueryInterface=function(n){return this.each(function(){var t=g(this),e=t.data(Bn);if(e||(e=new i(this,"object"==typeof n&&n),t.data(Bn,e)),"string"==typeof n){if("undefined"==typeof e[n])throw new TypeError('No method named "'+n+'"');e[n](this)}})},s(i,null,[{key:"VERSION",get:function(){return"4.3.1"}},{key:"DefaultType",get:function(){return Zn}},{key:"Default",get:function(){return ti}}]),i}();g.fn[Qn]=ni._jQueryInterface,g.fn[Qn].Constructor=ni,g.fn[Qn].noConflict=function(){return g.fn[Qn]=Yn,ni._jQueryInterface},function(){if("undefined"==typeof g)throw new TypeError("Bootstrap's JavaScript requires jQuery. jQuery must be included before Bootstrap's JavaScript.");var t=g.fn.jquery.split(" ")[0].split(".");if(t[0]<2&&t[1]<9||1===t[0]&&9===t[1]&&t[2]<1||4<=t[0])throw new Error("Bootstrap's JavaScript requires at least jQuery v1.9.1 but less than v4.0.0")}(),t.Util=_,t.Alert=p,t.Button=P,t.Carousel=lt,t.Collapse=bt,t.Dropdown=Jt,t.Modal=ve,t.Popover=sn,t.Scrollspy=Dn,t.Tab=Kn,t.Toast=ni,t.Tooltip=Be,Object.defineProperty(t,"__esModule",{value:!0})});
+//# sourceMappingURL=bootstrap.min.js.map
\ No newline at end of file
diff --git a/UyTube_mobile/web/js/captura-comentario.js b/UyTube_mobile/web/js/captura-comentario.js
new file mode 100644
index 0000000000000000000000000000000000000000..006fedb7f392e8c8d66e7dfbfb2284719dceaa8c
--- /dev/null
+++ b/UyTube_mobile/web/js/captura-comentario.js
@@ -0,0 +1,2 @@
+var idComentario="";
+
diff --git a/UyTube_mobile/web/js/consultar-video.js b/UyTube_mobile/web/js/consultar-video.js
new file mode 100644
index 0000000000000000000000000000000000000000..3de6d056f909d4ee9afe57d4615a4416ba48974a
--- /dev/null
+++ b/UyTube_mobile/web/js/consultar-video.js
@@ -0,0 +1,179 @@
+/* 
+ * Código para los botones 
+ *  Me gusta, No me gusta, Comentar, Cancelar, Agregar Lista Reproduccion
+ */
+
+
+//Boton me gusta
+$("#btnLike").on('click',function(){
+    var idVideo = $("#video").attr("value");
+    $.post("/uytube/video-consultar",
+        {
+          accion: "like",
+          idVideo: idVideo
+        }, function(respuesta, status){
+        // Separa las dos cantidades recibidas
+        var likes = respuesta.split(":")[0];
+        var disLikes = respuesta.split(":")[1];
+        // muestra las cantidades 
+        $("#txtLike").text(likes);
+        $("#txtDisLike").text(disLikes);
+        
+        // Actualiza los textos de los botones
+        $("#txtMeGusta").text("TE GUSTA");
+        $("#btnLike").attr("disabled", "true");
+        $("#txtNoMeGusta").text("NO ME GUSTA");
+        $("#btnDisLike").removeAttr("disabled");
+    });
+});
+
+//boton no me gusta
+$("#btnDisLike").on('click',function(){
+    var idVideo = $("#video").attr("value");
+    $.post("/uytube/video-consultar",
+        {
+          accion: "disLike",
+          idVideo: idVideo
+        }, function(respuesta, status){
+        // Separa las dos cantidades recibidas
+        var likes = respuesta.split(":")[0];
+        var disLikes = respuesta.split(":")[1];
+        // muestra las cantidades 
+        $("#txtLike").text(likes);
+        $("#txtDisLike").text(disLikes);
+        
+        // Actualiza los textos de los botones
+        $("#txtNoMeGusta").text("NO TE GUSTA");
+        $("#btnDisLike").attr("disabled", "true");
+        $("#txtMeGusta").text("ME GUSTA");
+        $("#btnLike").removeAttr("disabled");
+    });
+});
+
+//Comentar video
+$("#btnComentar").on('click',function(){
+    var texto = $("#input_descripcion");
+    var idVideo = $("#video").attr("value");
+    if(texto.val().length <= 0 ){
+        alert("¡El campo comentario está vacío!");
+    }else{
+        idVideo = $("#video").attr("value");
+        $.post("/uytube/video-consultar",{
+            accion: "comentarVideo",
+            texto: texto.val(),
+            idVideo: idVideo
+            }, 
+            function(respuesta, status){
+                $("#input_descripcion").val('');
+                $("#seccion-comentarios").html(respuesta);
+        });
+    }    
+});
+
+$("#btnCancelar").on('click',function(){
+    $("#input_descripcion").val("");
+});
+
+//boton agregar a lista de reproduccion
+var agregarALista = function(){
+    //$("#agregarALista .close").click(); //Cierra el modal
+    //alert($("#defaultCheck1").value());
+    alert("Diste click");
+    // $.post("/uytube/video-consultar",
+    //     {
+    //       accion: "agregarALista" 
+    //     }, function(respuesta, status){
+        
+    // });
+};
+
+// Checkbox para agregar o quitar de la Lista de Reproduccion
+$(".checkLista").on('change', function(){
+    var id_video = $("#video").attr("value");
+    var id_lista = $(this).val();
+    if($(this).prop('checked') == true){  
+        $.post("/uytube/video-consultar",
+        {
+          accion: "agregarALista",
+          idVideo: id_video,
+          idLista: id_lista
+        }, function(respuesta, status){
+            if(respuesta != "ok"){
+                alert("No se ha podido agregar el video a la lista.")
+            }
+        });
+       
+    }else{
+        $.post("/uytube/video-consultar",
+        {
+          accion: "quitarDeLista",
+          idVideo: id_video,
+          idLista: id_lista
+        }, function(respuesta, status){
+            if(respuesta != "ok"){
+                alert("No se ha podido quitar el video de la lista.")
+            }
+        });
+    }
+});
+
+//boton agregar lista de reproduccion
+$("#btnListarValoraciones").on('click',function(){
+    // obtengo el id del video
+    var idVideo = $("#video").attr("value");
+    // mando una peticion post a esa ruta con los parametros entre {}, 
+    // y defino una funcion callback (ejecuta al recibir respuesta
+    $.post("/uytube/video-consultar",
+        {
+          accion: "listarValoraciones" ,
+            idVideo: idVideo
+        }, function(respuesta, status){
+            // esta variable contrendra el htm de las nuevas filas
+            var nuevasFilas = '';
+            // esta variable es un array con los pares (usuario:valoracion)
+            // cada par viene en la respuesta separado por punto y coma
+            var filasObtenidas = respuesta.split(";");
+            // itero sobre los elementos del array (el ultimo es vacio, por eso el -1)
+            for (var i = 0; i < filasObtenidas.length -1; i++){
+                // esta variable es un array en cuyo indice 0 esta el nickname de un usuario y en el 1 su valoracion
+                var fila = (filasObtenidas[i]).split(":");
+                // esta variable sera la fila procesada en esta iteracion, y contendra las dos celdas
+                var tr = '';
+                tr += '<tr>\n';
+                tr += '<td>' + fila[0] + '</td>\n';
+                tr += '<td>' + fila[1] + '</td>\n';
+                tr += '</tr>\n';
+                // concatena la nueva fila con las filas ya procesadas
+                nuevasFilas += tr;
+            }
+            // reemplaza el contenido de la etiqueta <body> con los nuevos datos
+           $("#tblValoraciones-bodyRows").html(nuevasFilas);
+    });
+});
+
+//Responeder comentarios, se dispara luego de la ventana modal
+var responderComentario = function(){    
+        $("#exampleModal .close").click(); //Cierra el modal
+        var texto= $('#txtResponder').val(); 
+        var idVideo = $("#video").attr("value");
+        
+        if(texto.length <= 0 ){
+            alert("¡El campo comentario está vacío!");
+        }else{
+            var idVideo = $("#video").attr("value"); 
+            console.log("texto: "+texto+", idVideo: "+idVideo+" idComentario: "+idComentario);         
+            $.post("/uytube/video-consultar",{
+                accion: "responderComentario",
+                texto: texto,
+                idVideo: idVideo,
+                idComentario: idComentario
+                }, 
+                function(respuesta, status){
+                    //$("#seccion-comentarios").remove();
+                    $("#seccion-comentarios").html(respuesta);
+                    $('#txtResponder').val('');
+                    idComentario = "";
+            });
+        }    
+    
+};
diff --git a/UyTube_mobile/web/js/funciones.js b/UyTube_mobile/web/js/funciones.js
new file mode 100644
index 0000000000000000000000000000000000000000..bb1d540340fc9b457c1f35732344cd62a08a5ebf
--- /dev/null
+++ b/UyTube_mobile/web/js/funciones.js
@@ -0,0 +1,44 @@
+
+// Muestra u oculta el menu y ajusta su posicion en altura
+$(".icon-menu1").on("click", function () {
+    $(".menu").toggleClass('abrir');
+    // screenHeight = $(window).height();
+    // altoHeader = parseFloat($(".header").css('height'));
+    // altoMenu = parseFloat($(".menu").css('height'));
+    // if(screenHeight < (altoHeader+altoMenu) ){
+    //     console.log('el alto de menu es superior a la pantalla');
+    //     $(".menu").css('height',(screenHeight-altoHeader));
+    // }else{
+    //    // $(".menu").css('height:350px');
+    //     console.log('el alto de menu es: '+ $(".menu").css('height:350px'));
+    // }
+    // console.log(" alto de pantalla: " + screenHeight+", alto del menu: "+altoMenu);
+});
+
+/*
+$(".icon-menu1").on("click", function(){
+    var posicion = $(".icon-menu1").offset().top;
+    $("html, body").animate({
+        scrollTop: posicion
+    }, 2000); 
+});
+*/
+
+
+// setInterval(function () {
+//     if ($(window).width() !== screenWidth || $(window).height() !== screenHeight) {
+//         screenHeight = 0;
+//         altoMenu = 0;
+//         screenHeight = $(window).height();
+//         altoHeader = parseFloat($(".header").css('height'));
+//         altoMenu = parseFloat($(".menu").css('height'));
+//         if(screenHeight < (altoHeader+altoMenu) ){
+//             console.log('el alto de menu es superior a la pantalla');
+//             $(".menu").css('height',(screenHeight-altoHeader));
+//         }else{
+//             $(".menu").css('height','350px');
+//             console.log('el alto de menu es: 350px');
+//         }
+//         console.log('ancho: ' + screenWidth + ", alto: " + screenHeight);
+//     }
+// }, 50);
\ No newline at end of file
diff --git a/UyTube_mobile/web/js/jquery-3.4.1.min.js b/UyTube_mobile/web/js/jquery-3.4.1.min.js
new file mode 100644
index 0000000000000000000000000000000000000000..a1c07fd803b5fc9c54f44e31123ae4fa11e134b0
--- /dev/null
+++ b/UyTube_mobile/web/js/jquery-3.4.1.min.js
@@ -0,0 +1,2 @@
+/*! jQuery v3.4.1 | (c) JS Foundation and other contributors | jquery.org/license */
+!function(e,t){"use strict";"object"==typeof module&&"object"==typeof module.exports?module.exports=e.document?t(e,!0):function(e){if(!e.document)throw new Error("jQuery requires a window with a document");return t(e)}:t(e)}("undefined"!=typeof window?window:this,function(C,e){"use strict";var t=[],E=C.document,r=Object.getPrototypeOf,s=t.slice,g=t.concat,u=t.push,i=t.indexOf,n={},o=n.toString,v=n.hasOwnProperty,a=v.toString,l=a.call(Object),y={},m=function(e){return"function"==typeof e&&"number"!=typeof e.nodeType},x=function(e){return null!=e&&e===e.window},c={type:!0,src:!0,nonce:!0,noModule:!0};function b(e,t,n){var r,i,o=(n=n||E).createElement("script");if(o.text=e,t)for(r in c)(i=t[r]||t.getAttribute&&t.getAttribute(r))&&o.setAttribute(r,i);n.head.appendChild(o).parentNode.removeChild(o)}function w(e){return null==e?e+"":"object"==typeof e||"function"==typeof e?n[o.call(e)]||"object":typeof e}var f="3.4.1",k=function(e,t){return new k.fn.init(e,t)},p=/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g;function d(e){var t=!!e&&"length"in e&&e.length,n=w(e);return!m(e)&&!x(e)&&("array"===n||0===t||"number"==typeof t&&0<t&&t-1 in e)}k.fn=k.prototype={jquery:f,constructor:k,length:0,toArray:function(){return s.call(this)},get:function(e){return null==e?s.call(this):e<0?this[e+this.length]:this[e]},pushStack:function(e){var t=k.merge(this.constructor(),e);return t.prevObject=this,t},each:function(e){return k.each(this,e)},map:function(n){return this.pushStack(k.map(this,function(e,t){return n.call(e,t,e)}))},slice:function(){return this.pushStack(s.apply(this,arguments))},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},eq:function(e){var t=this.length,n=+e+(e<0?t:0);return this.pushStack(0<=n&&n<t?[this[n]]:[])},end:function(){return this.prevObject||this.constructor()},push:u,sort:t.sort,splice:t.splice},k.extend=k.fn.extend=function(){var e,t,n,r,i,o,a=arguments[0]||{},s=1,u=arguments.length,l=!1;for("boolean"==typeof a&&(l=a,a=arguments[s]||{},s++),"object"==typeof a||m(a)||(a={}),s===u&&(a=this,s--);s<u;s++)if(null!=(e=arguments[s]))for(t in e)r=e[t],"__proto__"!==t&&a!==r&&(l&&r&&(k.isPlainObject(r)||(i=Array.isArray(r)))?(n=a[t],o=i&&!Array.isArray(n)?[]:i||k.isPlainObject(n)?n:{},i=!1,a[t]=k.extend(l,o,r)):void 0!==r&&(a[t]=r));return a},k.extend({expando:"jQuery"+(f+Math.random()).replace(/\D/g,""),isReady:!0,error:function(e){throw new Error(e)},noop:function(){},isPlainObject:function(e){var t,n;return!(!e||"[object Object]"!==o.call(e))&&(!(t=r(e))||"function"==typeof(n=v.call(t,"constructor")&&t.constructor)&&a.call(n)===l)},isEmptyObject:function(e){var t;for(t in e)return!1;return!0},globalEval:function(e,t){b(e,{nonce:t&&t.nonce})},each:function(e,t){var n,r=0;if(d(e)){for(n=e.length;r<n;r++)if(!1===t.call(e[r],r,e[r]))break}else for(r in e)if(!1===t.call(e[r],r,e[r]))break;return e},trim:function(e){return null==e?"":(e+"").replace(p,"")},makeArray:function(e,t){var n=t||[];return null!=e&&(d(Object(e))?k.merge(n,"string"==typeof e?[e]:e):u.call(n,e)),n},inArray:function(e,t,n){return null==t?-1:i.call(t,e,n)},merge:function(e,t){for(var n=+t.length,r=0,i=e.length;r<n;r++)e[i++]=t[r];return e.length=i,e},grep:function(e,t,n){for(var r=[],i=0,o=e.length,a=!n;i<o;i++)!t(e[i],i)!==a&&r.push(e[i]);return r},map:function(e,t,n){var r,i,o=0,a=[];if(d(e))for(r=e.length;o<r;o++)null!=(i=t(e[o],o,n))&&a.push(i);else for(o in e)null!=(i=t(e[o],o,n))&&a.push(i);return g.apply([],a)},guid:1,support:y}),"function"==typeof Symbol&&(k.fn[Symbol.iterator]=t[Symbol.iterator]),k.each("Boolean Number String Function Array Date RegExp Object Error Symbol".split(" "),function(e,t){n["[object "+t+"]"]=t.toLowerCase()});var h=function(n){var e,d,b,o,i,h,f,g,w,u,l,T,C,a,E,v,s,c,y,k="sizzle"+1*new Date,m=n.document,S=0,r=0,p=ue(),x=ue(),N=ue(),A=ue(),D=function(e,t){return e===t&&(l=!0),0},j={}.hasOwnProperty,t=[],q=t.pop,L=t.push,H=t.push,O=t.slice,P=function(e,t){for(var n=0,r=e.length;n<r;n++)if(e[n]===t)return n;return-1},R="checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped",M="[\\x20\\t\\r\\n\\f]",I="(?:\\\\.|[\\w-]|[^\0-\\xa0])+",W="\\["+M+"*("+I+")(?:"+M+"*([*^$|!~]?=)"+M+"*(?:'((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\"|("+I+"))|)"+M+"*\\]",$=":("+I+")(?:\\((('((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\")|((?:\\\\.|[^\\\\()[\\]]|"+W+")*)|.*)\\)|)",F=new RegExp(M+"+","g"),B=new RegExp("^"+M+"+|((?:^|[^\\\\])(?:\\\\.)*)"+M+"+$","g"),_=new RegExp("^"+M+"*,"+M+"*"),z=new RegExp("^"+M+"*([>+~]|"+M+")"+M+"*"),U=new RegExp(M+"|>"),X=new RegExp($),V=new RegExp("^"+I+"$"),G={ID:new RegExp("^#("+I+")"),CLASS:new RegExp("^\\.("+I+")"),TAG:new RegExp("^("+I+"|[*])"),ATTR:new RegExp("^"+W),PSEUDO:new RegExp("^"+$),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+M+"*(even|odd|(([+-]|)(\\d*)n|)"+M+"*(?:([+-]|)"+M+"*(\\d+)|))"+M+"*\\)|)","i"),bool:new RegExp("^(?:"+R+")$","i"),needsContext:new RegExp("^"+M+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+M+"*((?:-\\d)?\\d*)"+M+"*\\)|)(?=[^-]|$)","i")},Y=/HTML$/i,Q=/^(?:input|select|textarea|button)$/i,J=/^h\d$/i,K=/^[^{]+\{\s*\[native \w/,Z=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,ee=/[+~]/,te=new RegExp("\\\\([\\da-f]{1,6}"+M+"?|("+M+")|.)","ig"),ne=function(e,t,n){var r="0x"+t-65536;return r!=r||n?t:r<0?String.fromCharCode(r+65536):String.fromCharCode(r>>10|55296,1023&r|56320)},re=/([\0-\x1f\x7f]|^-?\d)|^-$|[^\0-\x1f\x7f-\uFFFF\w-]/g,ie=function(e,t){return t?"\0"===e?"\ufffd":e.slice(0,-1)+"\\"+e.charCodeAt(e.length-1).toString(16)+" ":"\\"+e},oe=function(){T()},ae=be(function(e){return!0===e.disabled&&"fieldset"===e.nodeName.toLowerCase()},{dir:"parentNode",next:"legend"});try{H.apply(t=O.call(m.childNodes),m.childNodes),t[m.childNodes.length].nodeType}catch(e){H={apply:t.length?function(e,t){L.apply(e,O.call(t))}:function(e,t){var n=e.length,r=0;while(e[n++]=t[r++]);e.length=n-1}}}function se(t,e,n,r){var i,o,a,s,u,l,c,f=e&&e.ownerDocument,p=e?e.nodeType:9;if(n=n||[],"string"!=typeof t||!t||1!==p&&9!==p&&11!==p)return n;if(!r&&((e?e.ownerDocument||e:m)!==C&&T(e),e=e||C,E)){if(11!==p&&(u=Z.exec(t)))if(i=u[1]){if(9===p){if(!(a=e.getElementById(i)))return n;if(a.id===i)return n.push(a),n}else if(f&&(a=f.getElementById(i))&&y(e,a)&&a.id===i)return n.push(a),n}else{if(u[2])return H.apply(n,e.getElementsByTagName(t)),n;if((i=u[3])&&d.getElementsByClassName&&e.getElementsByClassName)return H.apply(n,e.getElementsByClassName(i)),n}if(d.qsa&&!A[t+" "]&&(!v||!v.test(t))&&(1!==p||"object"!==e.nodeName.toLowerCase())){if(c=t,f=e,1===p&&U.test(t)){(s=e.getAttribute("id"))?s=s.replace(re,ie):e.setAttribute("id",s=k),o=(l=h(t)).length;while(o--)l[o]="#"+s+" "+xe(l[o]);c=l.join(","),f=ee.test(t)&&ye(e.parentNode)||e}try{return H.apply(n,f.querySelectorAll(c)),n}catch(e){A(t,!0)}finally{s===k&&e.removeAttribute("id")}}}return g(t.replace(B,"$1"),e,n,r)}function ue(){var r=[];return function e(t,n){return r.push(t+" ")>b.cacheLength&&delete e[r.shift()],e[t+" "]=n}}function le(e){return e[k]=!0,e}function ce(e){var t=C.createElement("fieldset");try{return!!e(t)}catch(e){return!1}finally{t.parentNode&&t.parentNode.removeChild(t),t=null}}function fe(e,t){var n=e.split("|"),r=n.length;while(r--)b.attrHandle[n[r]]=t}function pe(e,t){var n=t&&e,r=n&&1===e.nodeType&&1===t.nodeType&&e.sourceIndex-t.sourceIndex;if(r)return r;if(n)while(n=n.nextSibling)if(n===t)return-1;return e?1:-1}function de(t){return function(e){return"input"===e.nodeName.toLowerCase()&&e.type===t}}function he(n){return function(e){var t=e.nodeName.toLowerCase();return("input"===t||"button"===t)&&e.type===n}}function ge(t){return function(e){return"form"in e?e.parentNode&&!1===e.disabled?"label"in e?"label"in e.parentNode?e.parentNode.disabled===t:e.disabled===t:e.isDisabled===t||e.isDisabled!==!t&&ae(e)===t:e.disabled===t:"label"in e&&e.disabled===t}}function ve(a){return le(function(o){return o=+o,le(function(e,t){var n,r=a([],e.length,o),i=r.length;while(i--)e[n=r[i]]&&(e[n]=!(t[n]=e[n]))})})}function ye(e){return e&&"undefined"!=typeof e.getElementsByTagName&&e}for(e in d=se.support={},i=se.isXML=function(e){var t=e.namespaceURI,n=(e.ownerDocument||e).documentElement;return!Y.test(t||n&&n.nodeName||"HTML")},T=se.setDocument=function(e){var t,n,r=e?e.ownerDocument||e:m;return r!==C&&9===r.nodeType&&r.documentElement&&(a=(C=r).documentElement,E=!i(C),m!==C&&(n=C.defaultView)&&n.top!==n&&(n.addEventListener?n.addEventListener("unload",oe,!1):n.attachEvent&&n.attachEvent("onunload",oe)),d.attributes=ce(function(e){return e.className="i",!e.getAttribute("className")}),d.getElementsByTagName=ce(function(e){return e.appendChild(C.createComment("")),!e.getElementsByTagName("*").length}),d.getElementsByClassName=K.test(C.getElementsByClassName),d.getById=ce(function(e){return a.appendChild(e).id=k,!C.getElementsByName||!C.getElementsByName(k).length}),d.getById?(b.filter.ID=function(e){var t=e.replace(te,ne);return function(e){return e.getAttribute("id")===t}},b.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&E){var n=t.getElementById(e);return n?[n]:[]}}):(b.filter.ID=function(e){var n=e.replace(te,ne);return function(e){var t="undefined"!=typeof e.getAttributeNode&&e.getAttributeNode("id");return t&&t.value===n}},b.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&E){var n,r,i,o=t.getElementById(e);if(o){if((n=o.getAttributeNode("id"))&&n.value===e)return[o];i=t.getElementsByName(e),r=0;while(o=i[r++])if((n=o.getAttributeNode("id"))&&n.value===e)return[o]}return[]}}),b.find.TAG=d.getElementsByTagName?function(e,t){return"undefined"!=typeof t.getElementsByTagName?t.getElementsByTagName(e):d.qsa?t.querySelectorAll(e):void 0}:function(e,t){var n,r=[],i=0,o=t.getElementsByTagName(e);if("*"===e){while(n=o[i++])1===n.nodeType&&r.push(n);return r}return o},b.find.CLASS=d.getElementsByClassName&&function(e,t){if("undefined"!=typeof t.getElementsByClassName&&E)return t.getElementsByClassName(e)},s=[],v=[],(d.qsa=K.test(C.querySelectorAll))&&(ce(function(e){a.appendChild(e).innerHTML="<a id='"+k+"'></a><select id='"+k+"-\r\\' msallowcapture=''><option selected=''></option></select>",e.querySelectorAll("[msallowcapture^='']").length&&v.push("[*^$]="+M+"*(?:''|\"\")"),e.querySelectorAll("[selected]").length||v.push("\\["+M+"*(?:value|"+R+")"),e.querySelectorAll("[id~="+k+"-]").length||v.push("~="),e.querySelectorAll(":checked").length||v.push(":checked"),e.querySelectorAll("a#"+k+"+*").length||v.push(".#.+[+~]")}),ce(function(e){e.innerHTML="<a href='' disabled='disabled'></a><select disabled='disabled'><option/></select>";var t=C.createElement("input");t.setAttribute("type","hidden"),e.appendChild(t).setAttribute("name","D"),e.querySelectorAll("[name=d]").length&&v.push("name"+M+"*[*^$|!~]?="),2!==e.querySelectorAll(":enabled").length&&v.push(":enabled",":disabled"),a.appendChild(e).disabled=!0,2!==e.querySelectorAll(":disabled").length&&v.push(":enabled",":disabled"),e.querySelectorAll("*,:x"),v.push(",.*:")})),(d.matchesSelector=K.test(c=a.matches||a.webkitMatchesSelector||a.mozMatchesSelector||a.oMatchesSelector||a.msMatchesSelector))&&ce(function(e){d.disconnectedMatch=c.call(e,"*"),c.call(e,"[s!='']:x"),s.push("!=",$)}),v=v.length&&new RegExp(v.join("|")),s=s.length&&new RegExp(s.join("|")),t=K.test(a.compareDocumentPosition),y=t||K.test(a.contains)?function(e,t){var n=9===e.nodeType?e.documentElement:e,r=t&&t.parentNode;return e===r||!(!r||1!==r.nodeType||!(n.contains?n.contains(r):e.compareDocumentPosition&&16&e.compareDocumentPosition(r)))}:function(e,t){if(t)while(t=t.parentNode)if(t===e)return!0;return!1},D=t?function(e,t){if(e===t)return l=!0,0;var n=!e.compareDocumentPosition-!t.compareDocumentPosition;return n||(1&(n=(e.ownerDocument||e)===(t.ownerDocument||t)?e.compareDocumentPosition(t):1)||!d.sortDetached&&t.compareDocumentPosition(e)===n?e===C||e.ownerDocument===m&&y(m,e)?-1:t===C||t.ownerDocument===m&&y(m,t)?1:u?P(u,e)-P(u,t):0:4&n?-1:1)}:function(e,t){if(e===t)return l=!0,0;var n,r=0,i=e.parentNode,o=t.parentNode,a=[e],s=[t];if(!i||!o)return e===C?-1:t===C?1:i?-1:o?1:u?P(u,e)-P(u,t):0;if(i===o)return pe(e,t);n=e;while(n=n.parentNode)a.unshift(n);n=t;while(n=n.parentNode)s.unshift(n);while(a[r]===s[r])r++;return r?pe(a[r],s[r]):a[r]===m?-1:s[r]===m?1:0}),C},se.matches=function(e,t){return se(e,null,null,t)},se.matchesSelector=function(e,t){if((e.ownerDocument||e)!==C&&T(e),d.matchesSelector&&E&&!A[t+" "]&&(!s||!s.test(t))&&(!v||!v.test(t)))try{var n=c.call(e,t);if(n||d.disconnectedMatch||e.document&&11!==e.document.nodeType)return n}catch(e){A(t,!0)}return 0<se(t,C,null,[e]).length},se.contains=function(e,t){return(e.ownerDocument||e)!==C&&T(e),y(e,t)},se.attr=function(e,t){(e.ownerDocument||e)!==C&&T(e);var n=b.attrHandle[t.toLowerCase()],r=n&&j.call(b.attrHandle,t.toLowerCase())?n(e,t,!E):void 0;return void 0!==r?r:d.attributes||!E?e.getAttribute(t):(r=e.getAttributeNode(t))&&r.specified?r.value:null},se.escape=function(e){return(e+"").replace(re,ie)},se.error=function(e){throw new Error("Syntax error, unrecognized expression: "+e)},se.uniqueSort=function(e){var t,n=[],r=0,i=0;if(l=!d.detectDuplicates,u=!d.sortStable&&e.slice(0),e.sort(D),l){while(t=e[i++])t===e[i]&&(r=n.push(i));while(r--)e.splice(n[r],1)}return u=null,e},o=se.getText=function(e){var t,n="",r=0,i=e.nodeType;if(i){if(1===i||9===i||11===i){if("string"==typeof e.textContent)return e.textContent;for(e=e.firstChild;e;e=e.nextSibling)n+=o(e)}else if(3===i||4===i)return e.nodeValue}else while(t=e[r++])n+=o(t);return n},(b=se.selectors={cacheLength:50,createPseudo:le,match:G,attrHandle:{},find:{},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(e){return e[1]=e[1].replace(te,ne),e[3]=(e[3]||e[4]||e[5]||"").replace(te,ne),"~="===e[2]&&(e[3]=" "+e[3]+" "),e.slice(0,4)},CHILD:function(e){return e[1]=e[1].toLowerCase(),"nth"===e[1].slice(0,3)?(e[3]||se.error(e[0]),e[4]=+(e[4]?e[5]+(e[6]||1):2*("even"===e[3]||"odd"===e[3])),e[5]=+(e[7]+e[8]||"odd"===e[3])):e[3]&&se.error(e[0]),e},PSEUDO:function(e){var t,n=!e[6]&&e[2];return G.CHILD.test(e[0])?null:(e[3]?e[2]=e[4]||e[5]||"":n&&X.test(n)&&(t=h(n,!0))&&(t=n.indexOf(")",n.length-t)-n.length)&&(e[0]=e[0].slice(0,t),e[2]=n.slice(0,t)),e.slice(0,3))}},filter:{TAG:function(e){var t=e.replace(te,ne).toLowerCase();return"*"===e?function(){return!0}:function(e){return e.nodeName&&e.nodeName.toLowerCase()===t}},CLASS:function(e){var t=p[e+" "];return t||(t=new RegExp("(^|"+M+")"+e+"("+M+"|$)"))&&p(e,function(e){return t.test("string"==typeof e.className&&e.className||"undefined"!=typeof e.getAttribute&&e.getAttribute("class")||"")})},ATTR:function(n,r,i){return function(e){var t=se.attr(e,n);return null==t?"!="===r:!r||(t+="","="===r?t===i:"!="===r?t!==i:"^="===r?i&&0===t.indexOf(i):"*="===r?i&&-1<t.indexOf(i):"$="===r?i&&t.slice(-i.length)===i:"~="===r?-1<(" "+t.replace(F," ")+" ").indexOf(i):"|="===r&&(t===i||t.slice(0,i.length+1)===i+"-"))}},CHILD:function(h,e,t,g,v){var y="nth"!==h.slice(0,3),m="last"!==h.slice(-4),x="of-type"===e;return 1===g&&0===v?function(e){return!!e.parentNode}:function(e,t,n){var r,i,o,a,s,u,l=y!==m?"nextSibling":"previousSibling",c=e.parentNode,f=x&&e.nodeName.toLowerCase(),p=!n&&!x,d=!1;if(c){if(y){while(l){a=e;while(a=a[l])if(x?a.nodeName.toLowerCase()===f:1===a.nodeType)return!1;u=l="only"===h&&!u&&"nextSibling"}return!0}if(u=[m?c.firstChild:c.lastChild],m&&p){d=(s=(r=(i=(o=(a=c)[k]||(a[k]={}))[a.uniqueID]||(o[a.uniqueID]={}))[h]||[])[0]===S&&r[1])&&r[2],a=s&&c.childNodes[s];while(a=++s&&a&&a[l]||(d=s=0)||u.pop())if(1===a.nodeType&&++d&&a===e){i[h]=[S,s,d];break}}else if(p&&(d=s=(r=(i=(o=(a=e)[k]||(a[k]={}))[a.uniqueID]||(o[a.uniqueID]={}))[h]||[])[0]===S&&r[1]),!1===d)while(a=++s&&a&&a[l]||(d=s=0)||u.pop())if((x?a.nodeName.toLowerCase()===f:1===a.nodeType)&&++d&&(p&&((i=(o=a[k]||(a[k]={}))[a.uniqueID]||(o[a.uniqueID]={}))[h]=[S,d]),a===e))break;return(d-=v)===g||d%g==0&&0<=d/g}}},PSEUDO:function(e,o){var t,a=b.pseudos[e]||b.setFilters[e.toLowerCase()]||se.error("unsupported pseudo: "+e);return a[k]?a(o):1<a.length?(t=[e,e,"",o],b.setFilters.hasOwnProperty(e.toLowerCase())?le(function(e,t){var n,r=a(e,o),i=r.length;while(i--)e[n=P(e,r[i])]=!(t[n]=r[i])}):function(e){return a(e,0,t)}):a}},pseudos:{not:le(function(e){var r=[],i=[],s=f(e.replace(B,"$1"));return s[k]?le(function(e,t,n,r){var i,o=s(e,null,r,[]),a=e.length;while(a--)(i=o[a])&&(e[a]=!(t[a]=i))}):function(e,t,n){return r[0]=e,s(r,null,n,i),r[0]=null,!i.pop()}}),has:le(function(t){return function(e){return 0<se(t,e).length}}),contains:le(function(t){return t=t.replace(te,ne),function(e){return-1<(e.textContent||o(e)).indexOf(t)}}),lang:le(function(n){return V.test(n||"")||se.error("unsupported lang: "+n),n=n.replace(te,ne).toLowerCase(),function(e){var t;do{if(t=E?e.lang:e.getAttribute("xml:lang")||e.getAttribute("lang"))return(t=t.toLowerCase())===n||0===t.indexOf(n+"-")}while((e=e.parentNode)&&1===e.nodeType);return!1}}),target:function(e){var t=n.location&&n.location.hash;return t&&t.slice(1)===e.id},root:function(e){return e===a},focus:function(e){return e===C.activeElement&&(!C.hasFocus||C.hasFocus())&&!!(e.type||e.href||~e.tabIndex)},enabled:ge(!1),disabled:ge(!0),checked:function(e){var t=e.nodeName.toLowerCase();return"input"===t&&!!e.checked||"option"===t&&!!e.selected},selected:function(e){return e.parentNode&&e.parentNode.selectedIndex,!0===e.selected},empty:function(e){for(e=e.firstChild;e;e=e.nextSibling)if(e.nodeType<6)return!1;return!0},parent:function(e){return!b.pseudos.empty(e)},header:function(e){return J.test(e.nodeName)},input:function(e){return Q.test(e.nodeName)},button:function(e){var t=e.nodeName.toLowerCase();return"input"===t&&"button"===e.type||"button"===t},text:function(e){var t;return"input"===e.nodeName.toLowerCase()&&"text"===e.type&&(null==(t=e.getAttribute("type"))||"text"===t.toLowerCase())},first:ve(function(){return[0]}),last:ve(function(e,t){return[t-1]}),eq:ve(function(e,t,n){return[n<0?n+t:n]}),even:ve(function(e,t){for(var n=0;n<t;n+=2)e.push(n);return e}),odd:ve(function(e,t){for(var n=1;n<t;n+=2)e.push(n);return e}),lt:ve(function(e,t,n){for(var r=n<0?n+t:t<n?t:n;0<=--r;)e.push(r);return e}),gt:ve(function(e,t,n){for(var r=n<0?n+t:n;++r<t;)e.push(r);return e})}}).pseudos.nth=b.pseudos.eq,{radio:!0,checkbox:!0,file:!0,password:!0,image:!0})b.pseudos[e]=de(e);for(e in{submit:!0,reset:!0})b.pseudos[e]=he(e);function me(){}function xe(e){for(var t=0,n=e.length,r="";t<n;t++)r+=e[t].value;return r}function be(s,e,t){var u=e.dir,l=e.next,c=l||u,f=t&&"parentNode"===c,p=r++;return e.first?function(e,t,n){while(e=e[u])if(1===e.nodeType||f)return s(e,t,n);return!1}:function(e,t,n){var r,i,o,a=[S,p];if(n){while(e=e[u])if((1===e.nodeType||f)&&s(e,t,n))return!0}else while(e=e[u])if(1===e.nodeType||f)if(i=(o=e[k]||(e[k]={}))[e.uniqueID]||(o[e.uniqueID]={}),l&&l===e.nodeName.toLowerCase())e=e[u]||e;else{if((r=i[c])&&r[0]===S&&r[1]===p)return a[2]=r[2];if((i[c]=a)[2]=s(e,t,n))return!0}return!1}}function we(i){return 1<i.length?function(e,t,n){var r=i.length;while(r--)if(!i[r](e,t,n))return!1;return!0}:i[0]}function Te(e,t,n,r,i){for(var o,a=[],s=0,u=e.length,l=null!=t;s<u;s++)(o=e[s])&&(n&&!n(o,r,i)||(a.push(o),l&&t.push(s)));return a}function Ce(d,h,g,v,y,e){return v&&!v[k]&&(v=Ce(v)),y&&!y[k]&&(y=Ce(y,e)),le(function(e,t,n,r){var i,o,a,s=[],u=[],l=t.length,c=e||function(e,t,n){for(var r=0,i=t.length;r<i;r++)se(e,t[r],n);return n}(h||"*",n.nodeType?[n]:n,[]),f=!d||!e&&h?c:Te(c,s,d,n,r),p=g?y||(e?d:l||v)?[]:t:f;if(g&&g(f,p,n,r),v){i=Te(p,u),v(i,[],n,r),o=i.length;while(o--)(a=i[o])&&(p[u[o]]=!(f[u[o]]=a))}if(e){if(y||d){if(y){i=[],o=p.length;while(o--)(a=p[o])&&i.push(f[o]=a);y(null,p=[],i,r)}o=p.length;while(o--)(a=p[o])&&-1<(i=y?P(e,a):s[o])&&(e[i]=!(t[i]=a))}}else p=Te(p===t?p.splice(l,p.length):p),y?y(null,t,p,r):H.apply(t,p)})}function Ee(e){for(var i,t,n,r=e.length,o=b.relative[e[0].type],a=o||b.relative[" "],s=o?1:0,u=be(function(e){return e===i},a,!0),l=be(function(e){return-1<P(i,e)},a,!0),c=[function(e,t,n){var r=!o&&(n||t!==w)||((i=t).nodeType?u(e,t,n):l(e,t,n));return i=null,r}];s<r;s++)if(t=b.relative[e[s].type])c=[be(we(c),t)];else{if((t=b.filter[e[s].type].apply(null,e[s].matches))[k]){for(n=++s;n<r;n++)if(b.relative[e[n].type])break;return Ce(1<s&&we(c),1<s&&xe(e.slice(0,s-1).concat({value:" "===e[s-2].type?"*":""})).replace(B,"$1"),t,s<n&&Ee(e.slice(s,n)),n<r&&Ee(e=e.slice(n)),n<r&&xe(e))}c.push(t)}return we(c)}return me.prototype=b.filters=b.pseudos,b.setFilters=new me,h=se.tokenize=function(e,t){var n,r,i,o,a,s,u,l=x[e+" "];if(l)return t?0:l.slice(0);a=e,s=[],u=b.preFilter;while(a){for(o in n&&!(r=_.exec(a))||(r&&(a=a.slice(r[0].length)||a),s.push(i=[])),n=!1,(r=z.exec(a))&&(n=r.shift(),i.push({value:n,type:r[0].replace(B," ")}),a=a.slice(n.length)),b.filter)!(r=G[o].exec(a))||u[o]&&!(r=u[o](r))||(n=r.shift(),i.push({value:n,type:o,matches:r}),a=a.slice(n.length));if(!n)break}return t?a.length:a?se.error(e):x(e,s).slice(0)},f=se.compile=function(e,t){var n,v,y,m,x,r,i=[],o=[],a=N[e+" "];if(!a){t||(t=h(e)),n=t.length;while(n--)(a=Ee(t[n]))[k]?i.push(a):o.push(a);(a=N(e,(v=o,m=0<(y=i).length,x=0<v.length,r=function(e,t,n,r,i){var o,a,s,u=0,l="0",c=e&&[],f=[],p=w,d=e||x&&b.find.TAG("*",i),h=S+=null==p?1:Math.random()||.1,g=d.length;for(i&&(w=t===C||t||i);l!==g&&null!=(o=d[l]);l++){if(x&&o){a=0,t||o.ownerDocument===C||(T(o),n=!E);while(s=v[a++])if(s(o,t||C,n)){r.push(o);break}i&&(S=h)}m&&((o=!s&&o)&&u--,e&&c.push(o))}if(u+=l,m&&l!==u){a=0;while(s=y[a++])s(c,f,t,n);if(e){if(0<u)while(l--)c[l]||f[l]||(f[l]=q.call(r));f=Te(f)}H.apply(r,f),i&&!e&&0<f.length&&1<u+y.length&&se.uniqueSort(r)}return i&&(S=h,w=p),c},m?le(r):r))).selector=e}return a},g=se.select=function(e,t,n,r){var i,o,a,s,u,l="function"==typeof e&&e,c=!r&&h(e=l.selector||e);if(n=n||[],1===c.length){if(2<(o=c[0]=c[0].slice(0)).length&&"ID"===(a=o[0]).type&&9===t.nodeType&&E&&b.relative[o[1].type]){if(!(t=(b.find.ID(a.matches[0].replace(te,ne),t)||[])[0]))return n;l&&(t=t.parentNode),e=e.slice(o.shift().value.length)}i=G.needsContext.test(e)?0:o.length;while(i--){if(a=o[i],b.relative[s=a.type])break;if((u=b.find[s])&&(r=u(a.matches[0].replace(te,ne),ee.test(o[0].type)&&ye(t.parentNode)||t))){if(o.splice(i,1),!(e=r.length&&xe(o)))return H.apply(n,r),n;break}}}return(l||f(e,c))(r,t,!E,n,!t||ee.test(e)&&ye(t.parentNode)||t),n},d.sortStable=k.split("").sort(D).join("")===k,d.detectDuplicates=!!l,T(),d.sortDetached=ce(function(e){return 1&e.compareDocumentPosition(C.createElement("fieldset"))}),ce(function(e){return e.innerHTML="<a href='#'></a>","#"===e.firstChild.getAttribute("href")})||fe("type|href|height|width",function(e,t,n){if(!n)return e.getAttribute(t,"type"===t.toLowerCase()?1:2)}),d.attributes&&ce(function(e){return e.innerHTML="<input/>",e.firstChild.setAttribute("value",""),""===e.firstChild.getAttribute("value")})||fe("value",function(e,t,n){if(!n&&"input"===e.nodeName.toLowerCase())return e.defaultValue}),ce(function(e){return null==e.getAttribute("disabled")})||fe(R,function(e,t,n){var r;if(!n)return!0===e[t]?t.toLowerCase():(r=e.getAttributeNode(t))&&r.specified?r.value:null}),se}(C);k.find=h,k.expr=h.selectors,k.expr[":"]=k.expr.pseudos,k.uniqueSort=k.unique=h.uniqueSort,k.text=h.getText,k.isXMLDoc=h.isXML,k.contains=h.contains,k.escapeSelector=h.escape;var T=function(e,t,n){var r=[],i=void 0!==n;while((e=e[t])&&9!==e.nodeType)if(1===e.nodeType){if(i&&k(e).is(n))break;r.push(e)}return r},S=function(e,t){for(var n=[];e;e=e.nextSibling)1===e.nodeType&&e!==t&&n.push(e);return n},N=k.expr.match.needsContext;function A(e,t){return e.nodeName&&e.nodeName.toLowerCase()===t.toLowerCase()}var D=/^<([a-z][^\/\0>:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i;function j(e,n,r){return m(n)?k.grep(e,function(e,t){return!!n.call(e,t,e)!==r}):n.nodeType?k.grep(e,function(e){return e===n!==r}):"string"!=typeof n?k.grep(e,function(e){return-1<i.call(n,e)!==r}):k.filter(n,e,r)}k.filter=function(e,t,n){var r=t[0];return n&&(e=":not("+e+")"),1===t.length&&1===r.nodeType?k.find.matchesSelector(r,e)?[r]:[]:k.find.matches(e,k.grep(t,function(e){return 1===e.nodeType}))},k.fn.extend({find:function(e){var t,n,r=this.length,i=this;if("string"!=typeof e)return this.pushStack(k(e).filter(function(){for(t=0;t<r;t++)if(k.contains(i[t],this))return!0}));for(n=this.pushStack([]),t=0;t<r;t++)k.find(e,i[t],n);return 1<r?k.uniqueSort(n):n},filter:function(e){return this.pushStack(j(this,e||[],!1))},not:function(e){return this.pushStack(j(this,e||[],!0))},is:function(e){return!!j(this,"string"==typeof e&&N.test(e)?k(e):e||[],!1).length}});var q,L=/^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]+))$/;(k.fn.init=function(e,t,n){var r,i;if(!e)return this;if(n=n||q,"string"==typeof e){if(!(r="<"===e[0]&&">"===e[e.length-1]&&3<=e.length?[null,e,null]:L.exec(e))||!r[1]&&t)return!t||t.jquery?(t||n).find(e):this.constructor(t).find(e);if(r[1]){if(t=t instanceof k?t[0]:t,k.merge(this,k.parseHTML(r[1],t&&t.nodeType?t.ownerDocument||t:E,!0)),D.test(r[1])&&k.isPlainObject(t))for(r in t)m(this[r])?this[r](t[r]):this.attr(r,t[r]);return this}return(i=E.getElementById(r[2]))&&(this[0]=i,this.length=1),this}return e.nodeType?(this[0]=e,this.length=1,this):m(e)?void 0!==n.ready?n.ready(e):e(k):k.makeArray(e,this)}).prototype=k.fn,q=k(E);var H=/^(?:parents|prev(?:Until|All))/,O={children:!0,contents:!0,next:!0,prev:!0};function P(e,t){while((e=e[t])&&1!==e.nodeType);return e}k.fn.extend({has:function(e){var t=k(e,this),n=t.length;return this.filter(function(){for(var e=0;e<n;e++)if(k.contains(this,t[e]))return!0})},closest:function(e,t){var n,r=0,i=this.length,o=[],a="string"!=typeof e&&k(e);if(!N.test(e))for(;r<i;r++)for(n=this[r];n&&n!==t;n=n.parentNode)if(n.nodeType<11&&(a?-1<a.index(n):1===n.nodeType&&k.find.matchesSelector(n,e))){o.push(n);break}return this.pushStack(1<o.length?k.uniqueSort(o):o)},index:function(e){return e?"string"==typeof e?i.call(k(e),this[0]):i.call(this,e.jquery?e[0]:e):this[0]&&this[0].parentNode?this.first().prevAll().length:-1},add:function(e,t){return this.pushStack(k.uniqueSort(k.merge(this.get(),k(e,t))))},addBack:function(e){return this.add(null==e?this.prevObject:this.prevObject.filter(e))}}),k.each({parent:function(e){var t=e.parentNode;return t&&11!==t.nodeType?t:null},parents:function(e){return T(e,"parentNode")},parentsUntil:function(e,t,n){return T(e,"parentNode",n)},next:function(e){return P(e,"nextSibling")},prev:function(e){return P(e,"previousSibling")},nextAll:function(e){return T(e,"nextSibling")},prevAll:function(e){return T(e,"previousSibling")},nextUntil:function(e,t,n){return T(e,"nextSibling",n)},prevUntil:function(e,t,n){return T(e,"previousSibling",n)},siblings:function(e){return S((e.parentNode||{}).firstChild,e)},children:function(e){return S(e.firstChild)},contents:function(e){return"undefined"!=typeof e.contentDocument?e.contentDocument:(A(e,"template")&&(e=e.content||e),k.merge([],e.childNodes))}},function(r,i){k.fn[r]=function(e,t){var n=k.map(this,i,e);return"Until"!==r.slice(-5)&&(t=e),t&&"string"==typeof t&&(n=k.filter(t,n)),1<this.length&&(O[r]||k.uniqueSort(n),H.test(r)&&n.reverse()),this.pushStack(n)}});var R=/[^\x20\t\r\n\f]+/g;function M(e){return e}function I(e){throw e}function W(e,t,n,r){var i;try{e&&m(i=e.promise)?i.call(e).done(t).fail(n):e&&m(i=e.then)?i.call(e,t,n):t.apply(void 0,[e].slice(r))}catch(e){n.apply(void 0,[e])}}k.Callbacks=function(r){var e,n;r="string"==typeof r?(e=r,n={},k.each(e.match(R)||[],function(e,t){n[t]=!0}),n):k.extend({},r);var i,t,o,a,s=[],u=[],l=-1,c=function(){for(a=a||r.once,o=i=!0;u.length;l=-1){t=u.shift();while(++l<s.length)!1===s[l].apply(t[0],t[1])&&r.stopOnFalse&&(l=s.length,t=!1)}r.memory||(t=!1),i=!1,a&&(s=t?[]:"")},f={add:function(){return s&&(t&&!i&&(l=s.length-1,u.push(t)),function n(e){k.each(e,function(e,t){m(t)?r.unique&&f.has(t)||s.push(t):t&&t.length&&"string"!==w(t)&&n(t)})}(arguments),t&&!i&&c()),this},remove:function(){return k.each(arguments,function(e,t){var n;while(-1<(n=k.inArray(t,s,n)))s.splice(n,1),n<=l&&l--}),this},has:function(e){return e?-1<k.inArray(e,s):0<s.length},empty:function(){return s&&(s=[]),this},disable:function(){return a=u=[],s=t="",this},disabled:function(){return!s},lock:function(){return a=u=[],t||i||(s=t=""),this},locked:function(){return!!a},fireWith:function(e,t){return a||(t=[e,(t=t||[]).slice?t.slice():t],u.push(t),i||c()),this},fire:function(){return f.fireWith(this,arguments),this},fired:function(){return!!o}};return f},k.extend({Deferred:function(e){var o=[["notify","progress",k.Callbacks("memory"),k.Callbacks("memory"),2],["resolve","done",k.Callbacks("once memory"),k.Callbacks("once memory"),0,"resolved"],["reject","fail",k.Callbacks("once memory"),k.Callbacks("once memory"),1,"rejected"]],i="pending",a={state:function(){return i},always:function(){return s.done(arguments).fail(arguments),this},"catch":function(e){return a.then(null,e)},pipe:function(){var i=arguments;return k.Deferred(function(r){k.each(o,function(e,t){var n=m(i[t[4]])&&i[t[4]];s[t[1]](function(){var e=n&&n.apply(this,arguments);e&&m(e.promise)?e.promise().progress(r.notify).done(r.resolve).fail(r.reject):r[t[0]+"With"](this,n?[e]:arguments)})}),i=null}).promise()},then:function(t,n,r){var u=0;function l(i,o,a,s){return function(){var n=this,r=arguments,e=function(){var e,t;if(!(i<u)){if((e=a.apply(n,r))===o.promise())throw new TypeError("Thenable self-resolution");t=e&&("object"==typeof e||"function"==typeof e)&&e.then,m(t)?s?t.call(e,l(u,o,M,s),l(u,o,I,s)):(u++,t.call(e,l(u,o,M,s),l(u,o,I,s),l(u,o,M,o.notifyWith))):(a!==M&&(n=void 0,r=[e]),(s||o.resolveWith)(n,r))}},t=s?e:function(){try{e()}catch(e){k.Deferred.exceptionHook&&k.Deferred.exceptionHook(e,t.stackTrace),u<=i+1&&(a!==I&&(n=void 0,r=[e]),o.rejectWith(n,r))}};i?t():(k.Deferred.getStackHook&&(t.stackTrace=k.Deferred.getStackHook()),C.setTimeout(t))}}return k.Deferred(function(e){o[0][3].add(l(0,e,m(r)?r:M,e.notifyWith)),o[1][3].add(l(0,e,m(t)?t:M)),o[2][3].add(l(0,e,m(n)?n:I))}).promise()},promise:function(e){return null!=e?k.extend(e,a):a}},s={};return k.each(o,function(e,t){var n=t[2],r=t[5];a[t[1]]=n.add,r&&n.add(function(){i=r},o[3-e][2].disable,o[3-e][3].disable,o[0][2].lock,o[0][3].lock),n.add(t[3].fire),s[t[0]]=function(){return s[t[0]+"With"](this===s?void 0:this,arguments),this},s[t[0]+"With"]=n.fireWith}),a.promise(s),e&&e.call(s,s),s},when:function(e){var n=arguments.length,t=n,r=Array(t),i=s.call(arguments),o=k.Deferred(),a=function(t){return function(e){r[t]=this,i[t]=1<arguments.length?s.call(arguments):e,--n||o.resolveWith(r,i)}};if(n<=1&&(W(e,o.done(a(t)).resolve,o.reject,!n),"pending"===o.state()||m(i[t]&&i[t].then)))return o.then();while(t--)W(i[t],a(t),o.reject);return o.promise()}});var $=/^(Eval|Internal|Range|Reference|Syntax|Type|URI)Error$/;k.Deferred.exceptionHook=function(e,t){C.console&&C.console.warn&&e&&$.test(e.name)&&C.console.warn("jQuery.Deferred exception: "+e.message,e.stack,t)},k.readyException=function(e){C.setTimeout(function(){throw e})};var F=k.Deferred();function B(){E.removeEventListener("DOMContentLoaded",B),C.removeEventListener("load",B),k.ready()}k.fn.ready=function(e){return F.then(e)["catch"](function(e){k.readyException(e)}),this},k.extend({isReady:!1,readyWait:1,ready:function(e){(!0===e?--k.readyWait:k.isReady)||(k.isReady=!0)!==e&&0<--k.readyWait||F.resolveWith(E,[k])}}),k.ready.then=F.then,"complete"===E.readyState||"loading"!==E.readyState&&!E.documentElement.doScroll?C.setTimeout(k.ready):(E.addEventListener("DOMContentLoaded",B),C.addEventListener("load",B));var _=function(e,t,n,r,i,o,a){var s=0,u=e.length,l=null==n;if("object"===w(n))for(s in i=!0,n)_(e,t,s,n[s],!0,o,a);else if(void 0!==r&&(i=!0,m(r)||(a=!0),l&&(a?(t.call(e,r),t=null):(l=t,t=function(e,t,n){return l.call(k(e),n)})),t))for(;s<u;s++)t(e[s],n,a?r:r.call(e[s],s,t(e[s],n)));return i?e:l?t.call(e):u?t(e[0],n):o},z=/^-ms-/,U=/-([a-z])/g;function X(e,t){return t.toUpperCase()}function V(e){return e.replace(z,"ms-").replace(U,X)}var G=function(e){return 1===e.nodeType||9===e.nodeType||!+e.nodeType};function Y(){this.expando=k.expando+Y.uid++}Y.uid=1,Y.prototype={cache:function(e){var t=e[this.expando];return t||(t={},G(e)&&(e.nodeType?e[this.expando]=t:Object.defineProperty(e,this.expando,{value:t,configurable:!0}))),t},set:function(e,t,n){var r,i=this.cache(e);if("string"==typeof t)i[V(t)]=n;else for(r in t)i[V(r)]=t[r];return i},get:function(e,t){return void 0===t?this.cache(e):e[this.expando]&&e[this.expando][V(t)]},access:function(e,t,n){return void 0===t||t&&"string"==typeof t&&void 0===n?this.get(e,t):(this.set(e,t,n),void 0!==n?n:t)},remove:function(e,t){var n,r=e[this.expando];if(void 0!==r){if(void 0!==t){n=(t=Array.isArray(t)?t.map(V):(t=V(t))in r?[t]:t.match(R)||[]).length;while(n--)delete r[t[n]]}(void 0===t||k.isEmptyObject(r))&&(e.nodeType?e[this.expando]=void 0:delete e[this.expando])}},hasData:function(e){var t=e[this.expando];return void 0!==t&&!k.isEmptyObject(t)}};var Q=new Y,J=new Y,K=/^(?:\{[\w\W]*\}|\[[\w\W]*\])$/,Z=/[A-Z]/g;function ee(e,t,n){var r,i;if(void 0===n&&1===e.nodeType)if(r="data-"+t.replace(Z,"-$&").toLowerCase(),"string"==typeof(n=e.getAttribute(r))){try{n="true"===(i=n)||"false"!==i&&("null"===i?null:i===+i+""?+i:K.test(i)?JSON.parse(i):i)}catch(e){}J.set(e,t,n)}else n=void 0;return n}k.extend({hasData:function(e){return J.hasData(e)||Q.hasData(e)},data:function(e,t,n){return J.access(e,t,n)},removeData:function(e,t){J.remove(e,t)},_data:function(e,t,n){return Q.access(e,t,n)},_removeData:function(e,t){Q.remove(e,t)}}),k.fn.extend({data:function(n,e){var t,r,i,o=this[0],a=o&&o.attributes;if(void 0===n){if(this.length&&(i=J.get(o),1===o.nodeType&&!Q.get(o,"hasDataAttrs"))){t=a.length;while(t--)a[t]&&0===(r=a[t].name).indexOf("data-")&&(r=V(r.slice(5)),ee(o,r,i[r]));Q.set(o,"hasDataAttrs",!0)}return i}return"object"==typeof n?this.each(function(){J.set(this,n)}):_(this,function(e){var t;if(o&&void 0===e)return void 0!==(t=J.get(o,n))?t:void 0!==(t=ee(o,n))?t:void 0;this.each(function(){J.set(this,n,e)})},null,e,1<arguments.length,null,!0)},removeData:function(e){return this.each(function(){J.remove(this,e)})}}),k.extend({queue:function(e,t,n){var r;if(e)return t=(t||"fx")+"queue",r=Q.get(e,t),n&&(!r||Array.isArray(n)?r=Q.access(e,t,k.makeArray(n)):r.push(n)),r||[]},dequeue:function(e,t){t=t||"fx";var n=k.queue(e,t),r=n.length,i=n.shift(),o=k._queueHooks(e,t);"inprogress"===i&&(i=n.shift(),r--),i&&("fx"===t&&n.unshift("inprogress"),delete o.stop,i.call(e,function(){k.dequeue(e,t)},o)),!r&&o&&o.empty.fire()},_queueHooks:function(e,t){var n=t+"queueHooks";return Q.get(e,n)||Q.access(e,n,{empty:k.Callbacks("once memory").add(function(){Q.remove(e,[t+"queue",n])})})}}),k.fn.extend({queue:function(t,n){var e=2;return"string"!=typeof t&&(n=t,t="fx",e--),arguments.length<e?k.queue(this[0],t):void 0===n?this:this.each(function(){var e=k.queue(this,t,n);k._queueHooks(this,t),"fx"===t&&"inprogress"!==e[0]&&k.dequeue(this,t)})},dequeue:function(e){return this.each(function(){k.dequeue(this,e)})},clearQueue:function(e){return this.queue(e||"fx",[])},promise:function(e,t){var n,r=1,i=k.Deferred(),o=this,a=this.length,s=function(){--r||i.resolveWith(o,[o])};"string"!=typeof e&&(t=e,e=void 0),e=e||"fx";while(a--)(n=Q.get(o[a],e+"queueHooks"))&&n.empty&&(r++,n.empty.add(s));return s(),i.promise(t)}});var te=/[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/.source,ne=new RegExp("^(?:([+-])=|)("+te+")([a-z%]*)$","i"),re=["Top","Right","Bottom","Left"],ie=E.documentElement,oe=function(e){return k.contains(e.ownerDocument,e)},ae={composed:!0};ie.getRootNode&&(oe=function(e){return k.contains(e.ownerDocument,e)||e.getRootNode(ae)===e.ownerDocument});var se=function(e,t){return"none"===(e=t||e).style.display||""===e.style.display&&oe(e)&&"none"===k.css(e,"display")},ue=function(e,t,n,r){var i,o,a={};for(o in t)a[o]=e.style[o],e.style[o]=t[o];for(o in i=n.apply(e,r||[]),t)e.style[o]=a[o];return i};function le(e,t,n,r){var i,o,a=20,s=r?function(){return r.cur()}:function(){return k.css(e,t,"")},u=s(),l=n&&n[3]||(k.cssNumber[t]?"":"px"),c=e.nodeType&&(k.cssNumber[t]||"px"!==l&&+u)&&ne.exec(k.css(e,t));if(c&&c[3]!==l){u/=2,l=l||c[3],c=+u||1;while(a--)k.style(e,t,c+l),(1-o)*(1-(o=s()/u||.5))<=0&&(a=0),c/=o;c*=2,k.style(e,t,c+l),n=n||[]}return n&&(c=+c||+u||0,i=n[1]?c+(n[1]+1)*n[2]:+n[2],r&&(r.unit=l,r.start=c,r.end=i)),i}var ce={};function fe(e,t){for(var n,r,i,o,a,s,u,l=[],c=0,f=e.length;c<f;c++)(r=e[c]).style&&(n=r.style.display,t?("none"===n&&(l[c]=Q.get(r,"display")||null,l[c]||(r.style.display="")),""===r.style.display&&se(r)&&(l[c]=(u=a=o=void 0,a=(i=r).ownerDocument,s=i.nodeName,(u=ce[s])||(o=a.body.appendChild(a.createElement(s)),u=k.css(o,"display"),o.parentNode.removeChild(o),"none"===u&&(u="block"),ce[s]=u)))):"none"!==n&&(l[c]="none",Q.set(r,"display",n)));for(c=0;c<f;c++)null!=l[c]&&(e[c].style.display=l[c]);return e}k.fn.extend({show:function(){return fe(this,!0)},hide:function(){return fe(this)},toggle:function(e){return"boolean"==typeof e?e?this.show():this.hide():this.each(function(){se(this)?k(this).show():k(this).hide()})}});var pe=/^(?:checkbox|radio)$/i,de=/<([a-z][^\/\0>\x20\t\r\n\f]*)/i,he=/^$|^module$|\/(?:java|ecma)script/i,ge={option:[1,"<select multiple='multiple'>","</select>"],thead:[1,"<table>","</table>"],col:[2,"<table><colgroup>","</colgroup></table>"],tr:[2,"<table><tbody>","</tbody></table>"],td:[3,"<table><tbody><tr>","</tr></tbody></table>"],_default:[0,"",""]};function ve(e,t){var n;return n="undefined"!=typeof e.getElementsByTagName?e.getElementsByTagName(t||"*"):"undefined"!=typeof e.querySelectorAll?e.querySelectorAll(t||"*"):[],void 0===t||t&&A(e,t)?k.merge([e],n):n}function ye(e,t){for(var n=0,r=e.length;n<r;n++)Q.set(e[n],"globalEval",!t||Q.get(t[n],"globalEval"))}ge.optgroup=ge.option,ge.tbody=ge.tfoot=ge.colgroup=ge.caption=ge.thead,ge.th=ge.td;var me,xe,be=/<|&#?\w+;/;function we(e,t,n,r,i){for(var o,a,s,u,l,c,f=t.createDocumentFragment(),p=[],d=0,h=e.length;d<h;d++)if((o=e[d])||0===o)if("object"===w(o))k.merge(p,o.nodeType?[o]:o);else if(be.test(o)){a=a||f.appendChild(t.createElement("div")),s=(de.exec(o)||["",""])[1].toLowerCase(),u=ge[s]||ge._default,a.innerHTML=u[1]+k.htmlPrefilter(o)+u[2],c=u[0];while(c--)a=a.lastChild;k.merge(p,a.childNodes),(a=f.firstChild).textContent=""}else p.push(t.createTextNode(o));f.textContent="",d=0;while(o=p[d++])if(r&&-1<k.inArray(o,r))i&&i.push(o);else if(l=oe(o),a=ve(f.appendChild(o),"script"),l&&ye(a),n){c=0;while(o=a[c++])he.test(o.type||"")&&n.push(o)}return f}me=E.createDocumentFragment().appendChild(E.createElement("div")),(xe=E.createElement("input")).setAttribute("type","radio"),xe.setAttribute("checked","checked"),xe.setAttribute("name","t"),me.appendChild(xe),y.checkClone=me.cloneNode(!0).cloneNode(!0).lastChild.checked,me.innerHTML="<textarea>x</textarea>",y.noCloneChecked=!!me.cloneNode(!0).lastChild.defaultValue;var Te=/^key/,Ce=/^(?:mouse|pointer|contextmenu|drag|drop)|click/,Ee=/^([^.]*)(?:\.(.+)|)/;function ke(){return!0}function Se(){return!1}function Ne(e,t){return e===function(){try{return E.activeElement}catch(e){}}()==("focus"===t)}function Ae(e,t,n,r,i,o){var a,s;if("object"==typeof t){for(s in"string"!=typeof n&&(r=r||n,n=void 0),t)Ae(e,s,n,r,t[s],o);return e}if(null==r&&null==i?(i=n,r=n=void 0):null==i&&("string"==typeof n?(i=r,r=void 0):(i=r,r=n,n=void 0)),!1===i)i=Se;else if(!i)return e;return 1===o&&(a=i,(i=function(e){return k().off(e),a.apply(this,arguments)}).guid=a.guid||(a.guid=k.guid++)),e.each(function(){k.event.add(this,t,i,r,n)})}function De(e,i,o){o?(Q.set(e,i,!1),k.event.add(e,i,{namespace:!1,handler:function(e){var t,n,r=Q.get(this,i);if(1&e.isTrigger&&this[i]){if(r.length)(k.event.special[i]||{}).delegateType&&e.stopPropagation();else if(r=s.call(arguments),Q.set(this,i,r),t=o(this,i),this[i](),r!==(n=Q.get(this,i))||t?Q.set(this,i,!1):n={},r!==n)return e.stopImmediatePropagation(),e.preventDefault(),n.value}else r.length&&(Q.set(this,i,{value:k.event.trigger(k.extend(r[0],k.Event.prototype),r.slice(1),this)}),e.stopImmediatePropagation())}})):void 0===Q.get(e,i)&&k.event.add(e,i,ke)}k.event={global:{},add:function(t,e,n,r,i){var o,a,s,u,l,c,f,p,d,h,g,v=Q.get(t);if(v){n.handler&&(n=(o=n).handler,i=o.selector),i&&k.find.matchesSelector(ie,i),n.guid||(n.guid=k.guid++),(u=v.events)||(u=v.events={}),(a=v.handle)||(a=v.handle=function(e){return"undefined"!=typeof k&&k.event.triggered!==e.type?k.event.dispatch.apply(t,arguments):void 0}),l=(e=(e||"").match(R)||[""]).length;while(l--)d=g=(s=Ee.exec(e[l])||[])[1],h=(s[2]||"").split(".").sort(),d&&(f=k.event.special[d]||{},d=(i?f.delegateType:f.bindType)||d,f=k.event.special[d]||{},c=k.extend({type:d,origType:g,data:r,handler:n,guid:n.guid,selector:i,needsContext:i&&k.expr.match.needsContext.test(i),namespace:h.join(".")},o),(p=u[d])||((p=u[d]=[]).delegateCount=0,f.setup&&!1!==f.setup.call(t,r,h,a)||t.addEventListener&&t.addEventListener(d,a)),f.add&&(f.add.call(t,c),c.handler.guid||(c.handler.guid=n.guid)),i?p.splice(p.delegateCount++,0,c):p.push(c),k.event.global[d]=!0)}},remove:function(e,t,n,r,i){var o,a,s,u,l,c,f,p,d,h,g,v=Q.hasData(e)&&Q.get(e);if(v&&(u=v.events)){l=(t=(t||"").match(R)||[""]).length;while(l--)if(d=g=(s=Ee.exec(t[l])||[])[1],h=(s[2]||"").split(".").sort(),d){f=k.event.special[d]||{},p=u[d=(r?f.delegateType:f.bindType)||d]||[],s=s[2]&&new RegExp("(^|\\.)"+h.join("\\.(?:.*\\.|)")+"(\\.|$)"),a=o=p.length;while(o--)c=p[o],!i&&g!==c.origType||n&&n.guid!==c.guid||s&&!s.test(c.namespace)||r&&r!==c.selector&&("**"!==r||!c.selector)||(p.splice(o,1),c.selector&&p.delegateCount--,f.remove&&f.remove.call(e,c));a&&!p.length&&(f.teardown&&!1!==f.teardown.call(e,h,v.handle)||k.removeEvent(e,d,v.handle),delete u[d])}else for(d in u)k.event.remove(e,d+t[l],n,r,!0);k.isEmptyObject(u)&&Q.remove(e,"handle events")}},dispatch:function(e){var t,n,r,i,o,a,s=k.event.fix(e),u=new Array(arguments.length),l=(Q.get(this,"events")||{})[s.type]||[],c=k.event.special[s.type]||{};for(u[0]=s,t=1;t<arguments.length;t++)u[t]=arguments[t];if(s.delegateTarget=this,!c.preDispatch||!1!==c.preDispatch.call(this,s)){a=k.event.handlers.call(this,s,l),t=0;while((i=a[t++])&&!s.isPropagationStopped()){s.currentTarget=i.elem,n=0;while((o=i.handlers[n++])&&!s.isImmediatePropagationStopped())s.rnamespace&&!1!==o.namespace&&!s.rnamespace.test(o.namespace)||(s.handleObj=o,s.data=o.data,void 0!==(r=((k.event.special[o.origType]||{}).handle||o.handler).apply(i.elem,u))&&!1===(s.result=r)&&(s.preventDefault(),s.stopPropagation()))}return c.postDispatch&&c.postDispatch.call(this,s),s.result}},handlers:function(e,t){var n,r,i,o,a,s=[],u=t.delegateCount,l=e.target;if(u&&l.nodeType&&!("click"===e.type&&1<=e.button))for(;l!==this;l=l.parentNode||this)if(1===l.nodeType&&("click"!==e.type||!0!==l.disabled)){for(o=[],a={},n=0;n<u;n++)void 0===a[i=(r=t[n]).selector+" "]&&(a[i]=r.needsContext?-1<k(i,this).index(l):k.find(i,this,null,[l]).length),a[i]&&o.push(r);o.length&&s.push({elem:l,handlers:o})}return l=this,u<t.length&&s.push({elem:l,handlers:t.slice(u)}),s},addProp:function(t,e){Object.defineProperty(k.Event.prototype,t,{enumerable:!0,configurable:!0,get:m(e)?function(){if(this.originalEvent)return e(this.originalEvent)}:function(){if(this.originalEvent)return this.originalEvent[t]},set:function(e){Object.defineProperty(this,t,{enumerable:!0,configurable:!0,writable:!0,value:e})}})},fix:function(e){return e[k.expando]?e:new k.Event(e)},special:{load:{noBubble:!0},click:{setup:function(e){var t=this||e;return pe.test(t.type)&&t.click&&A(t,"input")&&De(t,"click",ke),!1},trigger:function(e){var t=this||e;return pe.test(t.type)&&t.click&&A(t,"input")&&De(t,"click"),!0},_default:function(e){var t=e.target;return pe.test(t.type)&&t.click&&A(t,"input")&&Q.get(t,"click")||A(t,"a")}},beforeunload:{postDispatch:function(e){void 0!==e.result&&e.originalEvent&&(e.originalEvent.returnValue=e.result)}}}},k.removeEvent=function(e,t,n){e.removeEventListener&&e.removeEventListener(t,n)},k.Event=function(e,t){if(!(this instanceof k.Event))return new k.Event(e,t);e&&e.type?(this.originalEvent=e,this.type=e.type,this.isDefaultPrevented=e.defaultPrevented||void 0===e.defaultPrevented&&!1===e.returnValue?ke:Se,this.target=e.target&&3===e.target.nodeType?e.target.parentNode:e.target,this.currentTarget=e.currentTarget,this.relatedTarget=e.relatedTarget):this.type=e,t&&k.extend(this,t),this.timeStamp=e&&e.timeStamp||Date.now(),this[k.expando]=!0},k.Event.prototype={constructor:k.Event,isDefaultPrevented:Se,isPropagationStopped:Se,isImmediatePropagationStopped:Se,isSimulated:!1,preventDefault:function(){var e=this.originalEvent;this.isDefaultPrevented=ke,e&&!this.isSimulated&&e.preventDefault()},stopPropagation:function(){var e=this.originalEvent;this.isPropagationStopped=ke,e&&!this.isSimulated&&e.stopPropagation()},stopImmediatePropagation:function(){var e=this.originalEvent;this.isImmediatePropagationStopped=ke,e&&!this.isSimulated&&e.stopImmediatePropagation(),this.stopPropagation()}},k.each({altKey:!0,bubbles:!0,cancelable:!0,changedTouches:!0,ctrlKey:!0,detail:!0,eventPhase:!0,metaKey:!0,pageX:!0,pageY:!0,shiftKey:!0,view:!0,"char":!0,code:!0,charCode:!0,key:!0,keyCode:!0,button:!0,buttons:!0,clientX:!0,clientY:!0,offsetX:!0,offsetY:!0,pointerId:!0,pointerType:!0,screenX:!0,screenY:!0,targetTouches:!0,toElement:!0,touches:!0,which:function(e){var t=e.button;return null==e.which&&Te.test(e.type)?null!=e.charCode?e.charCode:e.keyCode:!e.which&&void 0!==t&&Ce.test(e.type)?1&t?1:2&t?3:4&t?2:0:e.which}},k.event.addProp),k.each({focus:"focusin",blur:"focusout"},function(e,t){k.event.special[e]={setup:function(){return De(this,e,Ne),!1},trigger:function(){return De(this,e),!0},delegateType:t}}),k.each({mouseenter:"mouseover",mouseleave:"mouseout",pointerenter:"pointerover",pointerleave:"pointerout"},function(e,i){k.event.special[e]={delegateType:i,bindType:i,handle:function(e){var t,n=e.relatedTarget,r=e.handleObj;return n&&(n===this||k.contains(this,n))||(e.type=r.origType,t=r.handler.apply(this,arguments),e.type=i),t}}}),k.fn.extend({on:function(e,t,n,r){return Ae(this,e,t,n,r)},one:function(e,t,n,r){return Ae(this,e,t,n,r,1)},off:function(e,t,n){var r,i;if(e&&e.preventDefault&&e.handleObj)return r=e.handleObj,k(e.delegateTarget).off(r.namespace?r.origType+"."+r.namespace:r.origType,r.selector,r.handler),this;if("object"==typeof e){for(i in e)this.off(i,t,e[i]);return this}return!1!==t&&"function"!=typeof t||(n=t,t=void 0),!1===n&&(n=Se),this.each(function(){k.event.remove(this,e,n,t)})}});var je=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0>\x20\t\r\n\f]*)[^>]*)\/>/gi,qe=/<script|<style|<link/i,Le=/checked\s*(?:[^=]|=\s*.checked.)/i,He=/^\s*<!(?:\[CDATA\[|--)|(?:\]\]|--)>\s*$/g;function Oe(e,t){return A(e,"table")&&A(11!==t.nodeType?t:t.firstChild,"tr")&&k(e).children("tbody")[0]||e}function Pe(e){return e.type=(null!==e.getAttribute("type"))+"/"+e.type,e}function Re(e){return"true/"===(e.type||"").slice(0,5)?e.type=e.type.slice(5):e.removeAttribute("type"),e}function Me(e,t){var n,r,i,o,a,s,u,l;if(1===t.nodeType){if(Q.hasData(e)&&(o=Q.access(e),a=Q.set(t,o),l=o.events))for(i in delete a.handle,a.events={},l)for(n=0,r=l[i].length;n<r;n++)k.event.add(t,i,l[i][n]);J.hasData(e)&&(s=J.access(e),u=k.extend({},s),J.set(t,u))}}function Ie(n,r,i,o){r=g.apply([],r);var e,t,a,s,u,l,c=0,f=n.length,p=f-1,d=r[0],h=m(d);if(h||1<f&&"string"==typeof d&&!y.checkClone&&Le.test(d))return n.each(function(e){var t=n.eq(e);h&&(r[0]=d.call(this,e,t.html())),Ie(t,r,i,o)});if(f&&(t=(e=we(r,n[0].ownerDocument,!1,n,o)).firstChild,1===e.childNodes.length&&(e=t),t||o)){for(s=(a=k.map(ve(e,"script"),Pe)).length;c<f;c++)u=e,c!==p&&(u=k.clone(u,!0,!0),s&&k.merge(a,ve(u,"script"))),i.call(n[c],u,c);if(s)for(l=a[a.length-1].ownerDocument,k.map(a,Re),c=0;c<s;c++)u=a[c],he.test(u.type||"")&&!Q.access(u,"globalEval")&&k.contains(l,u)&&(u.src&&"module"!==(u.type||"").toLowerCase()?k._evalUrl&&!u.noModule&&k._evalUrl(u.src,{nonce:u.nonce||u.getAttribute("nonce")}):b(u.textContent.replace(He,""),u,l))}return n}function We(e,t,n){for(var r,i=t?k.filter(t,e):e,o=0;null!=(r=i[o]);o++)n||1!==r.nodeType||k.cleanData(ve(r)),r.parentNode&&(n&&oe(r)&&ye(ve(r,"script")),r.parentNode.removeChild(r));return e}k.extend({htmlPrefilter:function(e){return e.replace(je,"<$1></$2>")},clone:function(e,t,n){var r,i,o,a,s,u,l,c=e.cloneNode(!0),f=oe(e);if(!(y.noCloneChecked||1!==e.nodeType&&11!==e.nodeType||k.isXMLDoc(e)))for(a=ve(c),r=0,i=(o=ve(e)).length;r<i;r++)s=o[r],u=a[r],void 0,"input"===(l=u.nodeName.toLowerCase())&&pe.test(s.type)?u.checked=s.checked:"input"!==l&&"textarea"!==l||(u.defaultValue=s.defaultValue);if(t)if(n)for(o=o||ve(e),a=a||ve(c),r=0,i=o.length;r<i;r++)Me(o[r],a[r]);else Me(e,c);return 0<(a=ve(c,"script")).length&&ye(a,!f&&ve(e,"script")),c},cleanData:function(e){for(var t,n,r,i=k.event.special,o=0;void 0!==(n=e[o]);o++)if(G(n)){if(t=n[Q.expando]){if(t.events)for(r in t.events)i[r]?k.event.remove(n,r):k.removeEvent(n,r,t.handle);n[Q.expando]=void 0}n[J.expando]&&(n[J.expando]=void 0)}}}),k.fn.extend({detach:function(e){return We(this,e,!0)},remove:function(e){return We(this,e)},text:function(e){return _(this,function(e){return void 0===e?k.text(this):this.empty().each(function(){1!==this.nodeType&&11!==this.nodeType&&9!==this.nodeType||(this.textContent=e)})},null,e,arguments.length)},append:function(){return Ie(this,arguments,function(e){1!==this.nodeType&&11!==this.nodeType&&9!==this.nodeType||Oe(this,e).appendChild(e)})},prepend:function(){return Ie(this,arguments,function(e){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var t=Oe(this,e);t.insertBefore(e,t.firstChild)}})},before:function(){return Ie(this,arguments,function(e){this.parentNode&&this.parentNode.insertBefore(e,this)})},after:function(){return Ie(this,arguments,function(e){this.parentNode&&this.parentNode.insertBefore(e,this.nextSibling)})},empty:function(){for(var e,t=0;null!=(e=this[t]);t++)1===e.nodeType&&(k.cleanData(ve(e,!1)),e.textContent="");return this},clone:function(e,t){return e=null!=e&&e,t=null==t?e:t,this.map(function(){return k.clone(this,e,t)})},html:function(e){return _(this,function(e){var t=this[0]||{},n=0,r=this.length;if(void 0===e&&1===t.nodeType)return t.innerHTML;if("string"==typeof e&&!qe.test(e)&&!ge[(de.exec(e)||["",""])[1].toLowerCase()]){e=k.htmlPrefilter(e);try{for(;n<r;n++)1===(t=this[n]||{}).nodeType&&(k.cleanData(ve(t,!1)),t.innerHTML=e);t=0}catch(e){}}t&&this.empty().append(e)},null,e,arguments.length)},replaceWith:function(){var n=[];return Ie(this,arguments,function(e){var t=this.parentNode;k.inArray(this,n)<0&&(k.cleanData(ve(this)),t&&t.replaceChild(e,this))},n)}}),k.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(e,a){k.fn[e]=function(e){for(var t,n=[],r=k(e),i=r.length-1,o=0;o<=i;o++)t=o===i?this:this.clone(!0),k(r[o])[a](t),u.apply(n,t.get());return this.pushStack(n)}});var $e=new RegExp("^("+te+")(?!px)[a-z%]+$","i"),Fe=function(e){var t=e.ownerDocument.defaultView;return t&&t.opener||(t=C),t.getComputedStyle(e)},Be=new RegExp(re.join("|"),"i");function _e(e,t,n){var r,i,o,a,s=e.style;return(n=n||Fe(e))&&(""!==(a=n.getPropertyValue(t)||n[t])||oe(e)||(a=k.style(e,t)),!y.pixelBoxStyles()&&$e.test(a)&&Be.test(t)&&(r=s.width,i=s.minWidth,o=s.maxWidth,s.minWidth=s.maxWidth=s.width=a,a=n.width,s.width=r,s.minWidth=i,s.maxWidth=o)),void 0!==a?a+"":a}function ze(e,t){return{get:function(){if(!e())return(this.get=t).apply(this,arguments);delete this.get}}}!function(){function e(){if(u){s.style.cssText="position:absolute;left:-11111px;width:60px;margin-top:1px;padding:0;border:0",u.style.cssText="position:relative;display:block;box-sizing:border-box;overflow:scroll;margin:auto;border:1px;padding:1px;width:60%;top:1%",ie.appendChild(s).appendChild(u);var e=C.getComputedStyle(u);n="1%"!==e.top,a=12===t(e.marginLeft),u.style.right="60%",o=36===t(e.right),r=36===t(e.width),u.style.position="absolute",i=12===t(u.offsetWidth/3),ie.removeChild(s),u=null}}function t(e){return Math.round(parseFloat(e))}var n,r,i,o,a,s=E.createElement("div"),u=E.createElement("div");u.style&&(u.style.backgroundClip="content-box",u.cloneNode(!0).style.backgroundClip="",y.clearCloneStyle="content-box"===u.style.backgroundClip,k.extend(y,{boxSizingReliable:function(){return e(),r},pixelBoxStyles:function(){return e(),o},pixelPosition:function(){return e(),n},reliableMarginLeft:function(){return e(),a},scrollboxSize:function(){return e(),i}}))}();var Ue=["Webkit","Moz","ms"],Xe=E.createElement("div").style,Ve={};function Ge(e){var t=k.cssProps[e]||Ve[e];return t||(e in Xe?e:Ve[e]=function(e){var t=e[0].toUpperCase()+e.slice(1),n=Ue.length;while(n--)if((e=Ue[n]+t)in Xe)return e}(e)||e)}var Ye=/^(none|table(?!-c[ea]).+)/,Qe=/^--/,Je={position:"absolute",visibility:"hidden",display:"block"},Ke={letterSpacing:"0",fontWeight:"400"};function Ze(e,t,n){var r=ne.exec(t);return r?Math.max(0,r[2]-(n||0))+(r[3]||"px"):t}function et(e,t,n,r,i,o){var a="width"===t?1:0,s=0,u=0;if(n===(r?"border":"content"))return 0;for(;a<4;a+=2)"margin"===n&&(u+=k.css(e,n+re[a],!0,i)),r?("content"===n&&(u-=k.css(e,"padding"+re[a],!0,i)),"margin"!==n&&(u-=k.css(e,"border"+re[a]+"Width",!0,i))):(u+=k.css(e,"padding"+re[a],!0,i),"padding"!==n?u+=k.css(e,"border"+re[a]+"Width",!0,i):s+=k.css(e,"border"+re[a]+"Width",!0,i));return!r&&0<=o&&(u+=Math.max(0,Math.ceil(e["offset"+t[0].toUpperCase()+t.slice(1)]-o-u-s-.5))||0),u}function tt(e,t,n){var r=Fe(e),i=(!y.boxSizingReliable()||n)&&"border-box"===k.css(e,"boxSizing",!1,r),o=i,a=_e(e,t,r),s="offset"+t[0].toUpperCase()+t.slice(1);if($e.test(a)){if(!n)return a;a="auto"}return(!y.boxSizingReliable()&&i||"auto"===a||!parseFloat(a)&&"inline"===k.css(e,"display",!1,r))&&e.getClientRects().length&&(i="border-box"===k.css(e,"boxSizing",!1,r),(o=s in e)&&(a=e[s])),(a=parseFloat(a)||0)+et(e,t,n||(i?"border":"content"),o,r,a)+"px"}function nt(e,t,n,r,i){return new nt.prototype.init(e,t,n,r,i)}k.extend({cssHooks:{opacity:{get:function(e,t){if(t){var n=_e(e,"opacity");return""===n?"1":n}}}},cssNumber:{animationIterationCount:!0,columnCount:!0,fillOpacity:!0,flexGrow:!0,flexShrink:!0,fontWeight:!0,gridArea:!0,gridColumn:!0,gridColumnEnd:!0,gridColumnStart:!0,gridRow:!0,gridRowEnd:!0,gridRowStart:!0,lineHeight:!0,opacity:!0,order:!0,orphans:!0,widows:!0,zIndex:!0,zoom:!0},cssProps:{},style:function(e,t,n,r){if(e&&3!==e.nodeType&&8!==e.nodeType&&e.style){var i,o,a,s=V(t),u=Qe.test(t),l=e.style;if(u||(t=Ge(s)),a=k.cssHooks[t]||k.cssHooks[s],void 0===n)return a&&"get"in a&&void 0!==(i=a.get(e,!1,r))?i:l[t];"string"===(o=typeof n)&&(i=ne.exec(n))&&i[1]&&(n=le(e,t,i),o="number"),null!=n&&n==n&&("number"!==o||u||(n+=i&&i[3]||(k.cssNumber[s]?"":"px")),y.clearCloneStyle||""!==n||0!==t.indexOf("background")||(l[t]="inherit"),a&&"set"in a&&void 0===(n=a.set(e,n,r))||(u?l.setProperty(t,n):l[t]=n))}},css:function(e,t,n,r){var i,o,a,s=V(t);return Qe.test(t)||(t=Ge(s)),(a=k.cssHooks[t]||k.cssHooks[s])&&"get"in a&&(i=a.get(e,!0,n)),void 0===i&&(i=_e(e,t,r)),"normal"===i&&t in Ke&&(i=Ke[t]),""===n||n?(o=parseFloat(i),!0===n||isFinite(o)?o||0:i):i}}),k.each(["height","width"],function(e,u){k.cssHooks[u]={get:function(e,t,n){if(t)return!Ye.test(k.css(e,"display"))||e.getClientRects().length&&e.getBoundingClientRect().width?tt(e,u,n):ue(e,Je,function(){return tt(e,u,n)})},set:function(e,t,n){var r,i=Fe(e),o=!y.scrollboxSize()&&"absolute"===i.position,a=(o||n)&&"border-box"===k.css(e,"boxSizing",!1,i),s=n?et(e,u,n,a,i):0;return a&&o&&(s-=Math.ceil(e["offset"+u[0].toUpperCase()+u.slice(1)]-parseFloat(i[u])-et(e,u,"border",!1,i)-.5)),s&&(r=ne.exec(t))&&"px"!==(r[3]||"px")&&(e.style[u]=t,t=k.css(e,u)),Ze(0,t,s)}}}),k.cssHooks.marginLeft=ze(y.reliableMarginLeft,function(e,t){if(t)return(parseFloat(_e(e,"marginLeft"))||e.getBoundingClientRect().left-ue(e,{marginLeft:0},function(){return e.getBoundingClientRect().left}))+"px"}),k.each({margin:"",padding:"",border:"Width"},function(i,o){k.cssHooks[i+o]={expand:function(e){for(var t=0,n={},r="string"==typeof e?e.split(" "):[e];t<4;t++)n[i+re[t]+o]=r[t]||r[t-2]||r[0];return n}},"margin"!==i&&(k.cssHooks[i+o].set=Ze)}),k.fn.extend({css:function(e,t){return _(this,function(e,t,n){var r,i,o={},a=0;if(Array.isArray(t)){for(r=Fe(e),i=t.length;a<i;a++)o[t[a]]=k.css(e,t[a],!1,r);return o}return void 0!==n?k.style(e,t,n):k.css(e,t)},e,t,1<arguments.length)}}),((k.Tween=nt).prototype={constructor:nt,init:function(e,t,n,r,i,o){this.elem=e,this.prop=n,this.easing=i||k.easing._default,this.options=t,this.start=this.now=this.cur(),this.end=r,this.unit=o||(k.cssNumber[n]?"":"px")},cur:function(){var e=nt.propHooks[this.prop];return e&&e.get?e.get(this):nt.propHooks._default.get(this)},run:function(e){var t,n=nt.propHooks[this.prop];return this.options.duration?this.pos=t=k.easing[this.easing](e,this.options.duration*e,0,1,this.options.duration):this.pos=t=e,this.now=(this.end-this.start)*t+this.start,this.options.step&&this.options.step.call(this.elem,this.now,this),n&&n.set?n.set(this):nt.propHooks._default.set(this),this}}).init.prototype=nt.prototype,(nt.propHooks={_default:{get:function(e){var t;return 1!==e.elem.nodeType||null!=e.elem[e.prop]&&null==e.elem.style[e.prop]?e.elem[e.prop]:(t=k.css(e.elem,e.prop,""))&&"auto"!==t?t:0},set:function(e){k.fx.step[e.prop]?k.fx.step[e.prop](e):1!==e.elem.nodeType||!k.cssHooks[e.prop]&&null==e.elem.style[Ge(e.prop)]?e.elem[e.prop]=e.now:k.style(e.elem,e.prop,e.now+e.unit)}}}).scrollTop=nt.propHooks.scrollLeft={set:function(e){e.elem.nodeType&&e.elem.parentNode&&(e.elem[e.prop]=e.now)}},k.easing={linear:function(e){return e},swing:function(e){return.5-Math.cos(e*Math.PI)/2},_default:"swing"},k.fx=nt.prototype.init,k.fx.step={};var rt,it,ot,at,st=/^(?:toggle|show|hide)$/,ut=/queueHooks$/;function lt(){it&&(!1===E.hidden&&C.requestAnimationFrame?C.requestAnimationFrame(lt):C.setTimeout(lt,k.fx.interval),k.fx.tick())}function ct(){return C.setTimeout(function(){rt=void 0}),rt=Date.now()}function ft(e,t){var n,r=0,i={height:e};for(t=t?1:0;r<4;r+=2-t)i["margin"+(n=re[r])]=i["padding"+n]=e;return t&&(i.opacity=i.width=e),i}function pt(e,t,n){for(var r,i=(dt.tweeners[t]||[]).concat(dt.tweeners["*"]),o=0,a=i.length;o<a;o++)if(r=i[o].call(n,t,e))return r}function dt(o,e,t){var n,a,r=0,i=dt.prefilters.length,s=k.Deferred().always(function(){delete u.elem}),u=function(){if(a)return!1;for(var e=rt||ct(),t=Math.max(0,l.startTime+l.duration-e),n=1-(t/l.duration||0),r=0,i=l.tweens.length;r<i;r++)l.tweens[r].run(n);return s.notifyWith(o,[l,n,t]),n<1&&i?t:(i||s.notifyWith(o,[l,1,0]),s.resolveWith(o,[l]),!1)},l=s.promise({elem:o,props:k.extend({},e),opts:k.extend(!0,{specialEasing:{},easing:k.easing._default},t),originalProperties:e,originalOptions:t,startTime:rt||ct(),duration:t.duration,tweens:[],createTween:function(e,t){var n=k.Tween(o,l.opts,e,t,l.opts.specialEasing[e]||l.opts.easing);return l.tweens.push(n),n},stop:function(e){var t=0,n=e?l.tweens.length:0;if(a)return this;for(a=!0;t<n;t++)l.tweens[t].run(1);return e?(s.notifyWith(o,[l,1,0]),s.resolveWith(o,[l,e])):s.rejectWith(o,[l,e]),this}}),c=l.props;for(!function(e,t){var n,r,i,o,a;for(n in e)if(i=t[r=V(n)],o=e[n],Array.isArray(o)&&(i=o[1],o=e[n]=o[0]),n!==r&&(e[r]=o,delete e[n]),(a=k.cssHooks[r])&&"expand"in a)for(n in o=a.expand(o),delete e[r],o)n in e||(e[n]=o[n],t[n]=i);else t[r]=i}(c,l.opts.specialEasing);r<i;r++)if(n=dt.prefilters[r].call(l,o,c,l.opts))return m(n.stop)&&(k._queueHooks(l.elem,l.opts.queue).stop=n.stop.bind(n)),n;return k.map(c,pt,l),m(l.opts.start)&&l.opts.start.call(o,l),l.progress(l.opts.progress).done(l.opts.done,l.opts.complete).fail(l.opts.fail).always(l.opts.always),k.fx.timer(k.extend(u,{elem:o,anim:l,queue:l.opts.queue})),l}k.Animation=k.extend(dt,{tweeners:{"*":[function(e,t){var n=this.createTween(e,t);return le(n.elem,e,ne.exec(t),n),n}]},tweener:function(e,t){m(e)?(t=e,e=["*"]):e=e.match(R);for(var n,r=0,i=e.length;r<i;r++)n=e[r],dt.tweeners[n]=dt.tweeners[n]||[],dt.tweeners[n].unshift(t)},prefilters:[function(e,t,n){var r,i,o,a,s,u,l,c,f="width"in t||"height"in t,p=this,d={},h=e.style,g=e.nodeType&&se(e),v=Q.get(e,"fxshow");for(r in n.queue||(null==(a=k._queueHooks(e,"fx")).unqueued&&(a.unqueued=0,s=a.empty.fire,a.empty.fire=function(){a.unqueued||s()}),a.unqueued++,p.always(function(){p.always(function(){a.unqueued--,k.queue(e,"fx").length||a.empty.fire()})})),t)if(i=t[r],st.test(i)){if(delete t[r],o=o||"toggle"===i,i===(g?"hide":"show")){if("show"!==i||!v||void 0===v[r])continue;g=!0}d[r]=v&&v[r]||k.style(e,r)}if((u=!k.isEmptyObject(t))||!k.isEmptyObject(d))for(r in f&&1===e.nodeType&&(n.overflow=[h.overflow,h.overflowX,h.overflowY],null==(l=v&&v.display)&&(l=Q.get(e,"display")),"none"===(c=k.css(e,"display"))&&(l?c=l:(fe([e],!0),l=e.style.display||l,c=k.css(e,"display"),fe([e]))),("inline"===c||"inline-block"===c&&null!=l)&&"none"===k.css(e,"float")&&(u||(p.done(function(){h.display=l}),null==l&&(c=h.display,l="none"===c?"":c)),h.display="inline-block")),n.overflow&&(h.overflow="hidden",p.always(function(){h.overflow=n.overflow[0],h.overflowX=n.overflow[1],h.overflowY=n.overflow[2]})),u=!1,d)u||(v?"hidden"in v&&(g=v.hidden):v=Q.access(e,"fxshow",{display:l}),o&&(v.hidden=!g),g&&fe([e],!0),p.done(function(){for(r in g||fe([e]),Q.remove(e,"fxshow"),d)k.style(e,r,d[r])})),u=pt(g?v[r]:0,r,p),r in v||(v[r]=u.start,g&&(u.end=u.start,u.start=0))}],prefilter:function(e,t){t?dt.prefilters.unshift(e):dt.prefilters.push(e)}}),k.speed=function(e,t,n){var r=e&&"object"==typeof e?k.extend({},e):{complete:n||!n&&t||m(e)&&e,duration:e,easing:n&&t||t&&!m(t)&&t};return k.fx.off?r.duration=0:"number"!=typeof r.duration&&(r.duration in k.fx.speeds?r.duration=k.fx.speeds[r.duration]:r.duration=k.fx.speeds._default),null!=r.queue&&!0!==r.queue||(r.queue="fx"),r.old=r.complete,r.complete=function(){m(r.old)&&r.old.call(this),r.queue&&k.dequeue(this,r.queue)},r},k.fn.extend({fadeTo:function(e,t,n,r){return this.filter(se).css("opacity",0).show().end().animate({opacity:t},e,n,r)},animate:function(t,e,n,r){var i=k.isEmptyObject(t),o=k.speed(e,n,r),a=function(){var e=dt(this,k.extend({},t),o);(i||Q.get(this,"finish"))&&e.stop(!0)};return a.finish=a,i||!1===o.queue?this.each(a):this.queue(o.queue,a)},stop:function(i,e,o){var a=function(e){var t=e.stop;delete e.stop,t(o)};return"string"!=typeof i&&(o=e,e=i,i=void 0),e&&!1!==i&&this.queue(i||"fx",[]),this.each(function(){var e=!0,t=null!=i&&i+"queueHooks",n=k.timers,r=Q.get(this);if(t)r[t]&&r[t].stop&&a(r[t]);else for(t in r)r[t]&&r[t].stop&&ut.test(t)&&a(r[t]);for(t=n.length;t--;)n[t].elem!==this||null!=i&&n[t].queue!==i||(n[t].anim.stop(o),e=!1,n.splice(t,1));!e&&o||k.dequeue(this,i)})},finish:function(a){return!1!==a&&(a=a||"fx"),this.each(function(){var e,t=Q.get(this),n=t[a+"queue"],r=t[a+"queueHooks"],i=k.timers,o=n?n.length:0;for(t.finish=!0,k.queue(this,a,[]),r&&r.stop&&r.stop.call(this,!0),e=i.length;e--;)i[e].elem===this&&i[e].queue===a&&(i[e].anim.stop(!0),i.splice(e,1));for(e=0;e<o;e++)n[e]&&n[e].finish&&n[e].finish.call(this);delete t.finish})}}),k.each(["toggle","show","hide"],function(e,r){var i=k.fn[r];k.fn[r]=function(e,t,n){return null==e||"boolean"==typeof e?i.apply(this,arguments):this.animate(ft(r,!0),e,t,n)}}),k.each({slideDown:ft("show"),slideUp:ft("hide"),slideToggle:ft("toggle"),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"},fadeToggle:{opacity:"toggle"}},function(e,r){k.fn[e]=function(e,t,n){return this.animate(r,e,t,n)}}),k.timers=[],k.fx.tick=function(){var e,t=0,n=k.timers;for(rt=Date.now();t<n.length;t++)(e=n[t])()||n[t]!==e||n.splice(t--,1);n.length||k.fx.stop(),rt=void 0},k.fx.timer=function(e){k.timers.push(e),k.fx.start()},k.fx.interval=13,k.fx.start=function(){it||(it=!0,lt())},k.fx.stop=function(){it=null},k.fx.speeds={slow:600,fast:200,_default:400},k.fn.delay=function(r,e){return r=k.fx&&k.fx.speeds[r]||r,e=e||"fx",this.queue(e,function(e,t){var n=C.setTimeout(e,r);t.stop=function(){C.clearTimeout(n)}})},ot=E.createElement("input"),at=E.createElement("select").appendChild(E.createElement("option")),ot.type="checkbox",y.checkOn=""!==ot.value,y.optSelected=at.selected,(ot=E.createElement("input")).value="t",ot.type="radio",y.radioValue="t"===ot.value;var ht,gt=k.expr.attrHandle;k.fn.extend({attr:function(e,t){return _(this,k.attr,e,t,1<arguments.length)},removeAttr:function(e){return this.each(function(){k.removeAttr(this,e)})}}),k.extend({attr:function(e,t,n){var r,i,o=e.nodeType;if(3!==o&&8!==o&&2!==o)return"undefined"==typeof e.getAttribute?k.prop(e,t,n):(1===o&&k.isXMLDoc(e)||(i=k.attrHooks[t.toLowerCase()]||(k.expr.match.bool.test(t)?ht:void 0)),void 0!==n?null===n?void k.removeAttr(e,t):i&&"set"in i&&void 0!==(r=i.set(e,n,t))?r:(e.setAttribute(t,n+""),n):i&&"get"in i&&null!==(r=i.get(e,t))?r:null==(r=k.find.attr(e,t))?void 0:r)},attrHooks:{type:{set:function(e,t){if(!y.radioValue&&"radio"===t&&A(e,"input")){var n=e.value;return e.setAttribute("type",t),n&&(e.value=n),t}}}},removeAttr:function(e,t){var n,r=0,i=t&&t.match(R);if(i&&1===e.nodeType)while(n=i[r++])e.removeAttribute(n)}}),ht={set:function(e,t,n){return!1===t?k.removeAttr(e,n):e.setAttribute(n,n),n}},k.each(k.expr.match.bool.source.match(/\w+/g),function(e,t){var a=gt[t]||k.find.attr;gt[t]=function(e,t,n){var r,i,o=t.toLowerCase();return n||(i=gt[o],gt[o]=r,r=null!=a(e,t,n)?o:null,gt[o]=i),r}});var vt=/^(?:input|select|textarea|button)$/i,yt=/^(?:a|area)$/i;function mt(e){return(e.match(R)||[]).join(" ")}function xt(e){return e.getAttribute&&e.getAttribute("class")||""}function bt(e){return Array.isArray(e)?e:"string"==typeof e&&e.match(R)||[]}k.fn.extend({prop:function(e,t){return _(this,k.prop,e,t,1<arguments.length)},removeProp:function(e){return this.each(function(){delete this[k.propFix[e]||e]})}}),k.extend({prop:function(e,t,n){var r,i,o=e.nodeType;if(3!==o&&8!==o&&2!==o)return 1===o&&k.isXMLDoc(e)||(t=k.propFix[t]||t,i=k.propHooks[t]),void 0!==n?i&&"set"in i&&void 0!==(r=i.set(e,n,t))?r:e[t]=n:i&&"get"in i&&null!==(r=i.get(e,t))?r:e[t]},propHooks:{tabIndex:{get:function(e){var t=k.find.attr(e,"tabindex");return t?parseInt(t,10):vt.test(e.nodeName)||yt.test(e.nodeName)&&e.href?0:-1}}},propFix:{"for":"htmlFor","class":"className"}}),y.optSelected||(k.propHooks.selected={get:function(e){var t=e.parentNode;return t&&t.parentNode&&t.parentNode.selectedIndex,null},set:function(e){var t=e.parentNode;t&&(t.selectedIndex,t.parentNode&&t.parentNode.selectedIndex)}}),k.each(["tabIndex","readOnly","maxLength","cellSpacing","cellPadding","rowSpan","colSpan","useMap","frameBorder","contentEditable"],function(){k.propFix[this.toLowerCase()]=this}),k.fn.extend({addClass:function(t){var e,n,r,i,o,a,s,u=0;if(m(t))return this.each(function(e){k(this).addClass(t.call(this,e,xt(this)))});if((e=bt(t)).length)while(n=this[u++])if(i=xt(n),r=1===n.nodeType&&" "+mt(i)+" "){a=0;while(o=e[a++])r.indexOf(" "+o+" ")<0&&(r+=o+" ");i!==(s=mt(r))&&n.setAttribute("class",s)}return this},removeClass:function(t){var e,n,r,i,o,a,s,u=0;if(m(t))return this.each(function(e){k(this).removeClass(t.call(this,e,xt(this)))});if(!arguments.length)return this.attr("class","");if((e=bt(t)).length)while(n=this[u++])if(i=xt(n),r=1===n.nodeType&&" "+mt(i)+" "){a=0;while(o=e[a++])while(-1<r.indexOf(" "+o+" "))r=r.replace(" "+o+" "," ");i!==(s=mt(r))&&n.setAttribute("class",s)}return this},toggleClass:function(i,t){var o=typeof i,a="string"===o||Array.isArray(i);return"boolean"==typeof t&&a?t?this.addClass(i):this.removeClass(i):m(i)?this.each(function(e){k(this).toggleClass(i.call(this,e,xt(this),t),t)}):this.each(function(){var e,t,n,r;if(a){t=0,n=k(this),r=bt(i);while(e=r[t++])n.hasClass(e)?n.removeClass(e):n.addClass(e)}else void 0!==i&&"boolean"!==o||((e=xt(this))&&Q.set(this,"__className__",e),this.setAttribute&&this.setAttribute("class",e||!1===i?"":Q.get(this,"__className__")||""))})},hasClass:function(e){var t,n,r=0;t=" "+e+" ";while(n=this[r++])if(1===n.nodeType&&-1<(" "+mt(xt(n))+" ").indexOf(t))return!0;return!1}});var wt=/\r/g;k.fn.extend({val:function(n){var r,e,i,t=this[0];return arguments.length?(i=m(n),this.each(function(e){var t;1===this.nodeType&&(null==(t=i?n.call(this,e,k(this).val()):n)?t="":"number"==typeof t?t+="":Array.isArray(t)&&(t=k.map(t,function(e){return null==e?"":e+""})),(r=k.valHooks[this.type]||k.valHooks[this.nodeName.toLowerCase()])&&"set"in r&&void 0!==r.set(this,t,"value")||(this.value=t))})):t?(r=k.valHooks[t.type]||k.valHooks[t.nodeName.toLowerCase()])&&"get"in r&&void 0!==(e=r.get(t,"value"))?e:"string"==typeof(e=t.value)?e.replace(wt,""):null==e?"":e:void 0}}),k.extend({valHooks:{option:{get:function(e){var t=k.find.attr(e,"value");return null!=t?t:mt(k.text(e))}},select:{get:function(e){var t,n,r,i=e.options,o=e.selectedIndex,a="select-one"===e.type,s=a?null:[],u=a?o+1:i.length;for(r=o<0?u:a?o:0;r<u;r++)if(((n=i[r]).selected||r===o)&&!n.disabled&&(!n.parentNode.disabled||!A(n.parentNode,"optgroup"))){if(t=k(n).val(),a)return t;s.push(t)}return s},set:function(e,t){var n,r,i=e.options,o=k.makeArray(t),a=i.length;while(a--)((r=i[a]).selected=-1<k.inArray(k.valHooks.option.get(r),o))&&(n=!0);return n||(e.selectedIndex=-1),o}}}}),k.each(["radio","checkbox"],function(){k.valHooks[this]={set:function(e,t){if(Array.isArray(t))return e.checked=-1<k.inArray(k(e).val(),t)}},y.checkOn||(k.valHooks[this].get=function(e){return null===e.getAttribute("value")?"on":e.value})}),y.focusin="onfocusin"in C;var Tt=/^(?:focusinfocus|focusoutblur)$/,Ct=function(e){e.stopPropagation()};k.extend(k.event,{trigger:function(e,t,n,r){var i,o,a,s,u,l,c,f,p=[n||E],d=v.call(e,"type")?e.type:e,h=v.call(e,"namespace")?e.namespace.split("."):[];if(o=f=a=n=n||E,3!==n.nodeType&&8!==n.nodeType&&!Tt.test(d+k.event.triggered)&&(-1<d.indexOf(".")&&(d=(h=d.split(".")).shift(),h.sort()),u=d.indexOf(":")<0&&"on"+d,(e=e[k.expando]?e:new k.Event(d,"object"==typeof e&&e)).isTrigger=r?2:3,e.namespace=h.join("."),e.rnamespace=e.namespace?new RegExp("(^|\\.)"+h.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,e.result=void 0,e.target||(e.target=n),t=null==t?[e]:k.makeArray(t,[e]),c=k.event.special[d]||{},r||!c.trigger||!1!==c.trigger.apply(n,t))){if(!r&&!c.noBubble&&!x(n)){for(s=c.delegateType||d,Tt.test(s+d)||(o=o.parentNode);o;o=o.parentNode)p.push(o),a=o;a===(n.ownerDocument||E)&&p.push(a.defaultView||a.parentWindow||C)}i=0;while((o=p[i++])&&!e.isPropagationStopped())f=o,e.type=1<i?s:c.bindType||d,(l=(Q.get(o,"events")||{})[e.type]&&Q.get(o,"handle"))&&l.apply(o,t),(l=u&&o[u])&&l.apply&&G(o)&&(e.result=l.apply(o,t),!1===e.result&&e.preventDefault());return e.type=d,r||e.isDefaultPrevented()||c._default&&!1!==c._default.apply(p.pop(),t)||!G(n)||u&&m(n[d])&&!x(n)&&((a=n[u])&&(n[u]=null),k.event.triggered=d,e.isPropagationStopped()&&f.addEventListener(d,Ct),n[d](),e.isPropagationStopped()&&f.removeEventListener(d,Ct),k.event.triggered=void 0,a&&(n[u]=a)),e.result}},simulate:function(e,t,n){var r=k.extend(new k.Event,n,{type:e,isSimulated:!0});k.event.trigger(r,null,t)}}),k.fn.extend({trigger:function(e,t){return this.each(function(){k.event.trigger(e,t,this)})},triggerHandler:function(e,t){var n=this[0];if(n)return k.event.trigger(e,t,n,!0)}}),y.focusin||k.each({focus:"focusin",blur:"focusout"},function(n,r){var i=function(e){k.event.simulate(r,e.target,k.event.fix(e))};k.event.special[r]={setup:function(){var e=this.ownerDocument||this,t=Q.access(e,r);t||e.addEventListener(n,i,!0),Q.access(e,r,(t||0)+1)},teardown:function(){var e=this.ownerDocument||this,t=Q.access(e,r)-1;t?Q.access(e,r,t):(e.removeEventListener(n,i,!0),Q.remove(e,r))}}});var Et=C.location,kt=Date.now(),St=/\?/;k.parseXML=function(e){var t;if(!e||"string"!=typeof e)return null;try{t=(new C.DOMParser).parseFromString(e,"text/xml")}catch(e){t=void 0}return t&&!t.getElementsByTagName("parsererror").length||k.error("Invalid XML: "+e),t};var Nt=/\[\]$/,At=/\r?\n/g,Dt=/^(?:submit|button|image|reset|file)$/i,jt=/^(?:input|select|textarea|keygen)/i;function qt(n,e,r,i){var t;if(Array.isArray(e))k.each(e,function(e,t){r||Nt.test(n)?i(n,t):qt(n+"["+("object"==typeof t&&null!=t?e:"")+"]",t,r,i)});else if(r||"object"!==w(e))i(n,e);else for(t in e)qt(n+"["+t+"]",e[t],r,i)}k.param=function(e,t){var n,r=[],i=function(e,t){var n=m(t)?t():t;r[r.length]=encodeURIComponent(e)+"="+encodeURIComponent(null==n?"":n)};if(null==e)return"";if(Array.isArray(e)||e.jquery&&!k.isPlainObject(e))k.each(e,function(){i(this.name,this.value)});else for(n in e)qt(n,e[n],t,i);return r.join("&")},k.fn.extend({serialize:function(){return k.param(this.serializeArray())},serializeArray:function(){return this.map(function(){var e=k.prop(this,"elements");return e?k.makeArray(e):this}).filter(function(){var e=this.type;return this.name&&!k(this).is(":disabled")&&jt.test(this.nodeName)&&!Dt.test(e)&&(this.checked||!pe.test(e))}).map(function(e,t){var n=k(this).val();return null==n?null:Array.isArray(n)?k.map(n,function(e){return{name:t.name,value:e.replace(At,"\r\n")}}):{name:t.name,value:n.replace(At,"\r\n")}}).get()}});var Lt=/%20/g,Ht=/#.*$/,Ot=/([?&])_=[^&]*/,Pt=/^(.*?):[ \t]*([^\r\n]*)$/gm,Rt=/^(?:GET|HEAD)$/,Mt=/^\/\//,It={},Wt={},$t="*/".concat("*"),Ft=E.createElement("a");function Bt(o){return function(e,t){"string"!=typeof e&&(t=e,e="*");var n,r=0,i=e.toLowerCase().match(R)||[];if(m(t))while(n=i[r++])"+"===n[0]?(n=n.slice(1)||"*",(o[n]=o[n]||[]).unshift(t)):(o[n]=o[n]||[]).push(t)}}function _t(t,i,o,a){var s={},u=t===Wt;function l(e){var r;return s[e]=!0,k.each(t[e]||[],function(e,t){var n=t(i,o,a);return"string"!=typeof n||u||s[n]?u?!(r=n):void 0:(i.dataTypes.unshift(n),l(n),!1)}),r}return l(i.dataTypes[0])||!s["*"]&&l("*")}function zt(e,t){var n,r,i=k.ajaxSettings.flatOptions||{};for(n in t)void 0!==t[n]&&((i[n]?e:r||(r={}))[n]=t[n]);return r&&k.extend(!0,e,r),e}Ft.href=Et.href,k.extend({active:0,lastModified:{},etag:{},ajaxSettings:{url:Et.href,type:"GET",isLocal:/^(?:about|app|app-storage|.+-extension|file|res|widget):$/.test(Et.protocol),global:!0,processData:!0,async:!0,contentType:"application/x-www-form-urlencoded; charset=UTF-8",accepts:{"*":$t,text:"text/plain",html:"text/html",xml:"application/xml, text/xml",json:"application/json, text/javascript"},contents:{xml:/\bxml\b/,html:/\bhtml/,json:/\bjson\b/},responseFields:{xml:"responseXML",text:"responseText",json:"responseJSON"},converters:{"* text":String,"text html":!0,"text json":JSON.parse,"text xml":k.parseXML},flatOptions:{url:!0,context:!0}},ajaxSetup:function(e,t){return t?zt(zt(e,k.ajaxSettings),t):zt(k.ajaxSettings,e)},ajaxPrefilter:Bt(It),ajaxTransport:Bt(Wt),ajax:function(e,t){"object"==typeof e&&(t=e,e=void 0),t=t||{};var c,f,p,n,d,r,h,g,i,o,v=k.ajaxSetup({},t),y=v.context||v,m=v.context&&(y.nodeType||y.jquery)?k(y):k.event,x=k.Deferred(),b=k.Callbacks("once memory"),w=v.statusCode||{},a={},s={},u="canceled",T={readyState:0,getResponseHeader:function(e){var t;if(h){if(!n){n={};while(t=Pt.exec(p))n[t[1].toLowerCase()+" "]=(n[t[1].toLowerCase()+" "]||[]).concat(t[2])}t=n[e.toLowerCase()+" "]}return null==t?null:t.join(", ")},getAllResponseHeaders:function(){return h?p:null},setRequestHeader:function(e,t){return null==h&&(e=s[e.toLowerCase()]=s[e.toLowerCase()]||e,a[e]=t),this},overrideMimeType:function(e){return null==h&&(v.mimeType=e),this},statusCode:function(e){var t;if(e)if(h)T.always(e[T.status]);else for(t in e)w[t]=[w[t],e[t]];return this},abort:function(e){var t=e||u;return c&&c.abort(t),l(0,t),this}};if(x.promise(T),v.url=((e||v.url||Et.href)+"").replace(Mt,Et.protocol+"//"),v.type=t.method||t.type||v.method||v.type,v.dataTypes=(v.dataType||"*").toLowerCase().match(R)||[""],null==v.crossDomain){r=E.createElement("a");try{r.href=v.url,r.href=r.href,v.crossDomain=Ft.protocol+"//"+Ft.host!=r.protocol+"//"+r.host}catch(e){v.crossDomain=!0}}if(v.data&&v.processData&&"string"!=typeof v.data&&(v.data=k.param(v.data,v.traditional)),_t(It,v,t,T),h)return T;for(i in(g=k.event&&v.global)&&0==k.active++&&k.event.trigger("ajaxStart"),v.type=v.type.toUpperCase(),v.hasContent=!Rt.test(v.type),f=v.url.replace(Ht,""),v.hasContent?v.data&&v.processData&&0===(v.contentType||"").indexOf("application/x-www-form-urlencoded")&&(v.data=v.data.replace(Lt,"+")):(o=v.url.slice(f.length),v.data&&(v.processData||"string"==typeof v.data)&&(f+=(St.test(f)?"&":"?")+v.data,delete v.data),!1===v.cache&&(f=f.replace(Ot,"$1"),o=(St.test(f)?"&":"?")+"_="+kt+++o),v.url=f+o),v.ifModified&&(k.lastModified[f]&&T.setRequestHeader("If-Modified-Since",k.lastModified[f]),k.etag[f]&&T.setRequestHeader("If-None-Match",k.etag[f])),(v.data&&v.hasContent&&!1!==v.contentType||t.contentType)&&T.setRequestHeader("Content-Type",v.contentType),T.setRequestHeader("Accept",v.dataTypes[0]&&v.accepts[v.dataTypes[0]]?v.accepts[v.dataTypes[0]]+("*"!==v.dataTypes[0]?", "+$t+"; q=0.01":""):v.accepts["*"]),v.headers)T.setRequestHeader(i,v.headers[i]);if(v.beforeSend&&(!1===v.beforeSend.call(y,T,v)||h))return T.abort();if(u="abort",b.add(v.complete),T.done(v.success),T.fail(v.error),c=_t(Wt,v,t,T)){if(T.readyState=1,g&&m.trigger("ajaxSend",[T,v]),h)return T;v.async&&0<v.timeout&&(d=C.setTimeout(function(){T.abort("timeout")},v.timeout));try{h=!1,c.send(a,l)}catch(e){if(h)throw e;l(-1,e)}}else l(-1,"No Transport");function l(e,t,n,r){var i,o,a,s,u,l=t;h||(h=!0,d&&C.clearTimeout(d),c=void 0,p=r||"",T.readyState=0<e?4:0,i=200<=e&&e<300||304===e,n&&(s=function(e,t,n){var r,i,o,a,s=e.contents,u=e.dataTypes;while("*"===u[0])u.shift(),void 0===r&&(r=e.mimeType||t.getResponseHeader("Content-Type"));if(r)for(i in s)if(s[i]&&s[i].test(r)){u.unshift(i);break}if(u[0]in n)o=u[0];else{for(i in n){if(!u[0]||e.converters[i+" "+u[0]]){o=i;break}a||(a=i)}o=o||a}if(o)return o!==u[0]&&u.unshift(o),n[o]}(v,T,n)),s=function(e,t,n,r){var i,o,a,s,u,l={},c=e.dataTypes.slice();if(c[1])for(a in e.converters)l[a.toLowerCase()]=e.converters[a];o=c.shift();while(o)if(e.responseFields[o]&&(n[e.responseFields[o]]=t),!u&&r&&e.dataFilter&&(t=e.dataFilter(t,e.dataType)),u=o,o=c.shift())if("*"===o)o=u;else if("*"!==u&&u!==o){if(!(a=l[u+" "+o]||l["* "+o]))for(i in l)if((s=i.split(" "))[1]===o&&(a=l[u+" "+s[0]]||l["* "+s[0]])){!0===a?a=l[i]:!0!==l[i]&&(o=s[0],c.unshift(s[1]));break}if(!0!==a)if(a&&e["throws"])t=a(t);else try{t=a(t)}catch(e){return{state:"parsererror",error:a?e:"No conversion from "+u+" to "+o}}}return{state:"success",data:t}}(v,s,T,i),i?(v.ifModified&&((u=T.getResponseHeader("Last-Modified"))&&(k.lastModified[f]=u),(u=T.getResponseHeader("etag"))&&(k.etag[f]=u)),204===e||"HEAD"===v.type?l="nocontent":304===e?l="notmodified":(l=s.state,o=s.data,i=!(a=s.error))):(a=l,!e&&l||(l="error",e<0&&(e=0))),T.status=e,T.statusText=(t||l)+"",i?x.resolveWith(y,[o,l,T]):x.rejectWith(y,[T,l,a]),T.statusCode(w),w=void 0,g&&m.trigger(i?"ajaxSuccess":"ajaxError",[T,v,i?o:a]),b.fireWith(y,[T,l]),g&&(m.trigger("ajaxComplete",[T,v]),--k.active||k.event.trigger("ajaxStop")))}return T},getJSON:function(e,t,n){return k.get(e,t,n,"json")},getScript:function(e,t){return k.get(e,void 0,t,"script")}}),k.each(["get","post"],function(e,i){k[i]=function(e,t,n,r){return m(t)&&(r=r||n,n=t,t=void 0),k.ajax(k.extend({url:e,type:i,dataType:r,data:t,success:n},k.isPlainObject(e)&&e))}}),k._evalUrl=function(e,t){return k.ajax({url:e,type:"GET",dataType:"script",cache:!0,async:!1,global:!1,converters:{"text script":function(){}},dataFilter:function(e){k.globalEval(e,t)}})},k.fn.extend({wrapAll:function(e){var t;return this[0]&&(m(e)&&(e=e.call(this[0])),t=k(e,this[0].ownerDocument).eq(0).clone(!0),this[0].parentNode&&t.insertBefore(this[0]),t.map(function(){var e=this;while(e.firstElementChild)e=e.firstElementChild;return e}).append(this)),this},wrapInner:function(n){return m(n)?this.each(function(e){k(this).wrapInner(n.call(this,e))}):this.each(function(){var e=k(this),t=e.contents();t.length?t.wrapAll(n):e.append(n)})},wrap:function(t){var n=m(t);return this.each(function(e){k(this).wrapAll(n?t.call(this,e):t)})},unwrap:function(e){return this.parent(e).not("body").each(function(){k(this).replaceWith(this.childNodes)}),this}}),k.expr.pseudos.hidden=function(e){return!k.expr.pseudos.visible(e)},k.expr.pseudos.visible=function(e){return!!(e.offsetWidth||e.offsetHeight||e.getClientRects().length)},k.ajaxSettings.xhr=function(){try{return new C.XMLHttpRequest}catch(e){}};var Ut={0:200,1223:204},Xt=k.ajaxSettings.xhr();y.cors=!!Xt&&"withCredentials"in Xt,y.ajax=Xt=!!Xt,k.ajaxTransport(function(i){var o,a;if(y.cors||Xt&&!i.crossDomain)return{send:function(e,t){var n,r=i.xhr();if(r.open(i.type,i.url,i.async,i.username,i.password),i.xhrFields)for(n in i.xhrFields)r[n]=i.xhrFields[n];for(n in i.mimeType&&r.overrideMimeType&&r.overrideMimeType(i.mimeType),i.crossDomain||e["X-Requested-With"]||(e["X-Requested-With"]="XMLHttpRequest"),e)r.setRequestHeader(n,e[n]);o=function(e){return function(){o&&(o=a=r.onload=r.onerror=r.onabort=r.ontimeout=r.onreadystatechange=null,"abort"===e?r.abort():"error"===e?"number"!=typeof r.status?t(0,"error"):t(r.status,r.statusText):t(Ut[r.status]||r.status,r.statusText,"text"!==(r.responseType||"text")||"string"!=typeof r.responseText?{binary:r.response}:{text:r.responseText},r.getAllResponseHeaders()))}},r.onload=o(),a=r.onerror=r.ontimeout=o("error"),void 0!==r.onabort?r.onabort=a:r.onreadystatechange=function(){4===r.readyState&&C.setTimeout(function(){o&&a()})},o=o("abort");try{r.send(i.hasContent&&i.data||null)}catch(e){if(o)throw e}},abort:function(){o&&o()}}}),k.ajaxPrefilter(function(e){e.crossDomain&&(e.contents.script=!1)}),k.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/\b(?:java|ecma)script\b/},converters:{"text script":function(e){return k.globalEval(e),e}}}),k.ajaxPrefilter("script",function(e){void 0===e.cache&&(e.cache=!1),e.crossDomain&&(e.type="GET")}),k.ajaxTransport("script",function(n){var r,i;if(n.crossDomain||n.scriptAttrs)return{send:function(e,t){r=k("<script>").attr(n.scriptAttrs||{}).prop({charset:n.scriptCharset,src:n.url}).on("load error",i=function(e){r.remove(),i=null,e&&t("error"===e.type?404:200,e.type)}),E.head.appendChild(r[0])},abort:function(){i&&i()}}});var Vt,Gt=[],Yt=/(=)\?(?=&|$)|\?\?/;k.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var e=Gt.pop()||k.expando+"_"+kt++;return this[e]=!0,e}}),k.ajaxPrefilter("json jsonp",function(e,t,n){var r,i,o,a=!1!==e.jsonp&&(Yt.test(e.url)?"url":"string"==typeof e.data&&0===(e.contentType||"").indexOf("application/x-www-form-urlencoded")&&Yt.test(e.data)&&"data");if(a||"jsonp"===e.dataTypes[0])return r=e.jsonpCallback=m(e.jsonpCallback)?e.jsonpCallback():e.jsonpCallback,a?e[a]=e[a].replace(Yt,"$1"+r):!1!==e.jsonp&&(e.url+=(St.test(e.url)?"&":"?")+e.jsonp+"="+r),e.converters["script json"]=function(){return o||k.error(r+" was not called"),o[0]},e.dataTypes[0]="json",i=C[r],C[r]=function(){o=arguments},n.always(function(){void 0===i?k(C).removeProp(r):C[r]=i,e[r]&&(e.jsonpCallback=t.jsonpCallback,Gt.push(r)),o&&m(i)&&i(o[0]),o=i=void 0}),"script"}),y.createHTMLDocument=((Vt=E.implementation.createHTMLDocument("").body).innerHTML="<form></form><form></form>",2===Vt.childNodes.length),k.parseHTML=function(e,t,n){return"string"!=typeof e?[]:("boolean"==typeof t&&(n=t,t=!1),t||(y.createHTMLDocument?((r=(t=E.implementation.createHTMLDocument("")).createElement("base")).href=E.location.href,t.head.appendChild(r)):t=E),o=!n&&[],(i=D.exec(e))?[t.createElement(i[1])]:(i=we([e],t,o),o&&o.length&&k(o).remove(),k.merge([],i.childNodes)));var r,i,o},k.fn.load=function(e,t,n){var r,i,o,a=this,s=e.indexOf(" ");return-1<s&&(r=mt(e.slice(s)),e=e.slice(0,s)),m(t)?(n=t,t=void 0):t&&"object"==typeof t&&(i="POST"),0<a.length&&k.ajax({url:e,type:i||"GET",dataType:"html",data:t}).done(function(e){o=arguments,a.html(r?k("<div>").append(k.parseHTML(e)).find(r):e)}).always(n&&function(e,t){a.each(function(){n.apply(this,o||[e.responseText,t,e])})}),this},k.each(["ajaxStart","ajaxStop","ajaxComplete","ajaxError","ajaxSuccess","ajaxSend"],function(e,t){k.fn[t]=function(e){return this.on(t,e)}}),k.expr.pseudos.animated=function(t){return k.grep(k.timers,function(e){return t===e.elem}).length},k.offset={setOffset:function(e,t,n){var r,i,o,a,s,u,l=k.css(e,"position"),c=k(e),f={};"static"===l&&(e.style.position="relative"),s=c.offset(),o=k.css(e,"top"),u=k.css(e,"left"),("absolute"===l||"fixed"===l)&&-1<(o+u).indexOf("auto")?(a=(r=c.position()).top,i=r.left):(a=parseFloat(o)||0,i=parseFloat(u)||0),m(t)&&(t=t.call(e,n,k.extend({},s))),null!=t.top&&(f.top=t.top-s.top+a),null!=t.left&&(f.left=t.left-s.left+i),"using"in t?t.using.call(e,f):c.css(f)}},k.fn.extend({offset:function(t){if(arguments.length)return void 0===t?this:this.each(function(e){k.offset.setOffset(this,t,e)});var e,n,r=this[0];return r?r.getClientRects().length?(e=r.getBoundingClientRect(),n=r.ownerDocument.defaultView,{top:e.top+n.pageYOffset,left:e.left+n.pageXOffset}):{top:0,left:0}:void 0},position:function(){if(this[0]){var e,t,n,r=this[0],i={top:0,left:0};if("fixed"===k.css(r,"position"))t=r.getBoundingClientRect();else{t=this.offset(),n=r.ownerDocument,e=r.offsetParent||n.documentElement;while(e&&(e===n.body||e===n.documentElement)&&"static"===k.css(e,"position"))e=e.parentNode;e&&e!==r&&1===e.nodeType&&((i=k(e).offset()).top+=k.css(e,"borderTopWidth",!0),i.left+=k.css(e,"borderLeftWidth",!0))}return{top:t.top-i.top-k.css(r,"marginTop",!0),left:t.left-i.left-k.css(r,"marginLeft",!0)}}},offsetParent:function(){return this.map(function(){var e=this.offsetParent;while(e&&"static"===k.css(e,"position"))e=e.offsetParent;return e||ie})}}),k.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(t,i){var o="pageYOffset"===i;k.fn[t]=function(e){return _(this,function(e,t,n){var r;if(x(e)?r=e:9===e.nodeType&&(r=e.defaultView),void 0===n)return r?r[i]:e[t];r?r.scrollTo(o?r.pageXOffset:n,o?n:r.pageYOffset):e[t]=n},t,e,arguments.length)}}),k.each(["top","left"],function(e,n){k.cssHooks[n]=ze(y.pixelPosition,function(e,t){if(t)return t=_e(e,n),$e.test(t)?k(e).position()[n]+"px":t})}),k.each({Height:"height",Width:"width"},function(a,s){k.each({padding:"inner"+a,content:s,"":"outer"+a},function(r,o){k.fn[o]=function(e,t){var n=arguments.length&&(r||"boolean"!=typeof e),i=r||(!0===e||!0===t?"margin":"border");return _(this,function(e,t,n){var r;return x(e)?0===o.indexOf("outer")?e["inner"+a]:e.document.documentElement["client"+a]:9===e.nodeType?(r=e.documentElement,Math.max(e.body["scroll"+a],r["scroll"+a],e.body["offset"+a],r["offset"+a],r["client"+a])):void 0===n?k.css(e,t,i):k.style(e,t,n,i)},s,n?e:void 0,n)}})}),k.each("blur focus focusin focusout resize scroll click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup contextmenu".split(" "),function(e,n){k.fn[n]=function(e,t){return 0<arguments.length?this.on(n,null,e,t):this.trigger(n)}}),k.fn.extend({hover:function(e,t){return this.mouseenter(e).mouseleave(t||e)}}),k.fn.extend({bind:function(e,t,n){return this.on(e,null,t,n)},unbind:function(e,t){return this.off(e,null,t)},delegate:function(e,t,n,r){return this.on(t,e,n,r)},undelegate:function(e,t,n){return 1===arguments.length?this.off(e,"**"):this.off(t,e||"**",n)}}),k.proxy=function(e,t){var n,r,i;if("string"==typeof t&&(n=e[t],t=e,e=n),m(e))return r=s.call(arguments,2),(i=function(){return e.apply(t||this,r.concat(s.call(arguments)))}).guid=e.guid=e.guid||k.guid++,i},k.holdReady=function(e){e?k.readyWait++:k.ready(!0)},k.isArray=Array.isArray,k.parseJSON=JSON.parse,k.nodeName=A,k.isFunction=m,k.isWindow=x,k.camelCase=V,k.type=w,k.now=Date.now,k.isNumeric=function(e){var t=k.type(e);return("number"===t||"string"===t)&&!isNaN(e-parseFloat(e))},"function"==typeof define&&define.amd&&define("jquery",[],function(){return k});var Qt=C.jQuery,Jt=C.$;return k.noConflict=function(e){return C.$===k&&(C.$=Jt),e&&C.jQuery===k&&(C.jQuery=Qt),k},e||(C.jQuery=C.$=k),k});
diff --git a/UyTube_mobile/web/js/jquery-3.4.1.min_1.js b/UyTube_mobile/web/js/jquery-3.4.1.min_1.js
new file mode 100644
index 0000000000000000000000000000000000000000..a1c07fd803b5fc9c54f44e31123ae4fa11e134b0
--- /dev/null
+++ b/UyTube_mobile/web/js/jquery-3.4.1.min_1.js
@@ -0,0 +1,2 @@
+/*! jQuery v3.4.1 | (c) JS Foundation and other contributors | jquery.org/license */
+!function(e,t){"use strict";"object"==typeof module&&"object"==typeof module.exports?module.exports=e.document?t(e,!0):function(e){if(!e.document)throw new Error("jQuery requires a window with a document");return t(e)}:t(e)}("undefined"!=typeof window?window:this,function(C,e){"use strict";var t=[],E=C.document,r=Object.getPrototypeOf,s=t.slice,g=t.concat,u=t.push,i=t.indexOf,n={},o=n.toString,v=n.hasOwnProperty,a=v.toString,l=a.call(Object),y={},m=function(e){return"function"==typeof e&&"number"!=typeof e.nodeType},x=function(e){return null!=e&&e===e.window},c={type:!0,src:!0,nonce:!0,noModule:!0};function b(e,t,n){var r,i,o=(n=n||E).createElement("script");if(o.text=e,t)for(r in c)(i=t[r]||t.getAttribute&&t.getAttribute(r))&&o.setAttribute(r,i);n.head.appendChild(o).parentNode.removeChild(o)}function w(e){return null==e?e+"":"object"==typeof e||"function"==typeof e?n[o.call(e)]||"object":typeof e}var f="3.4.1",k=function(e,t){return new k.fn.init(e,t)},p=/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g;function d(e){var t=!!e&&"length"in e&&e.length,n=w(e);return!m(e)&&!x(e)&&("array"===n||0===t||"number"==typeof t&&0<t&&t-1 in e)}k.fn=k.prototype={jquery:f,constructor:k,length:0,toArray:function(){return s.call(this)},get:function(e){return null==e?s.call(this):e<0?this[e+this.length]:this[e]},pushStack:function(e){var t=k.merge(this.constructor(),e);return t.prevObject=this,t},each:function(e){return k.each(this,e)},map:function(n){return this.pushStack(k.map(this,function(e,t){return n.call(e,t,e)}))},slice:function(){return this.pushStack(s.apply(this,arguments))},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},eq:function(e){var t=this.length,n=+e+(e<0?t:0);return this.pushStack(0<=n&&n<t?[this[n]]:[])},end:function(){return this.prevObject||this.constructor()},push:u,sort:t.sort,splice:t.splice},k.extend=k.fn.extend=function(){var e,t,n,r,i,o,a=arguments[0]||{},s=1,u=arguments.length,l=!1;for("boolean"==typeof a&&(l=a,a=arguments[s]||{},s++),"object"==typeof a||m(a)||(a={}),s===u&&(a=this,s--);s<u;s++)if(null!=(e=arguments[s]))for(t in e)r=e[t],"__proto__"!==t&&a!==r&&(l&&r&&(k.isPlainObject(r)||(i=Array.isArray(r)))?(n=a[t],o=i&&!Array.isArray(n)?[]:i||k.isPlainObject(n)?n:{},i=!1,a[t]=k.extend(l,o,r)):void 0!==r&&(a[t]=r));return a},k.extend({expando:"jQuery"+(f+Math.random()).replace(/\D/g,""),isReady:!0,error:function(e){throw new Error(e)},noop:function(){},isPlainObject:function(e){var t,n;return!(!e||"[object Object]"!==o.call(e))&&(!(t=r(e))||"function"==typeof(n=v.call(t,"constructor")&&t.constructor)&&a.call(n)===l)},isEmptyObject:function(e){var t;for(t in e)return!1;return!0},globalEval:function(e,t){b(e,{nonce:t&&t.nonce})},each:function(e,t){var n,r=0;if(d(e)){for(n=e.length;r<n;r++)if(!1===t.call(e[r],r,e[r]))break}else for(r in e)if(!1===t.call(e[r],r,e[r]))break;return e},trim:function(e){return null==e?"":(e+"").replace(p,"")},makeArray:function(e,t){var n=t||[];return null!=e&&(d(Object(e))?k.merge(n,"string"==typeof e?[e]:e):u.call(n,e)),n},inArray:function(e,t,n){return null==t?-1:i.call(t,e,n)},merge:function(e,t){for(var n=+t.length,r=0,i=e.length;r<n;r++)e[i++]=t[r];return e.length=i,e},grep:function(e,t,n){for(var r=[],i=0,o=e.length,a=!n;i<o;i++)!t(e[i],i)!==a&&r.push(e[i]);return r},map:function(e,t,n){var r,i,o=0,a=[];if(d(e))for(r=e.length;o<r;o++)null!=(i=t(e[o],o,n))&&a.push(i);else for(o in e)null!=(i=t(e[o],o,n))&&a.push(i);return g.apply([],a)},guid:1,support:y}),"function"==typeof Symbol&&(k.fn[Symbol.iterator]=t[Symbol.iterator]),k.each("Boolean Number String Function Array Date RegExp Object Error Symbol".split(" "),function(e,t){n["[object "+t+"]"]=t.toLowerCase()});var h=function(n){var e,d,b,o,i,h,f,g,w,u,l,T,C,a,E,v,s,c,y,k="sizzle"+1*new Date,m=n.document,S=0,r=0,p=ue(),x=ue(),N=ue(),A=ue(),D=function(e,t){return e===t&&(l=!0),0},j={}.hasOwnProperty,t=[],q=t.pop,L=t.push,H=t.push,O=t.slice,P=function(e,t){for(var n=0,r=e.length;n<r;n++)if(e[n]===t)return n;return-1},R="checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped",M="[\\x20\\t\\r\\n\\f]",I="(?:\\\\.|[\\w-]|[^\0-\\xa0])+",W="\\["+M+"*("+I+")(?:"+M+"*([*^$|!~]?=)"+M+"*(?:'((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\"|("+I+"))|)"+M+"*\\]",$=":("+I+")(?:\\((('((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\")|((?:\\\\.|[^\\\\()[\\]]|"+W+")*)|.*)\\)|)",F=new RegExp(M+"+","g"),B=new RegExp("^"+M+"+|((?:^|[^\\\\])(?:\\\\.)*)"+M+"+$","g"),_=new RegExp("^"+M+"*,"+M+"*"),z=new RegExp("^"+M+"*([>+~]|"+M+")"+M+"*"),U=new RegExp(M+"|>"),X=new RegExp($),V=new RegExp("^"+I+"$"),G={ID:new RegExp("^#("+I+")"),CLASS:new RegExp("^\\.("+I+")"),TAG:new RegExp("^("+I+"|[*])"),ATTR:new RegExp("^"+W),PSEUDO:new RegExp("^"+$),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+M+"*(even|odd|(([+-]|)(\\d*)n|)"+M+"*(?:([+-]|)"+M+"*(\\d+)|))"+M+"*\\)|)","i"),bool:new RegExp("^(?:"+R+")$","i"),needsContext:new RegExp("^"+M+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+M+"*((?:-\\d)?\\d*)"+M+"*\\)|)(?=[^-]|$)","i")},Y=/HTML$/i,Q=/^(?:input|select|textarea|button)$/i,J=/^h\d$/i,K=/^[^{]+\{\s*\[native \w/,Z=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,ee=/[+~]/,te=new RegExp("\\\\([\\da-f]{1,6}"+M+"?|("+M+")|.)","ig"),ne=function(e,t,n){var r="0x"+t-65536;return r!=r||n?t:r<0?String.fromCharCode(r+65536):String.fromCharCode(r>>10|55296,1023&r|56320)},re=/([\0-\x1f\x7f]|^-?\d)|^-$|[^\0-\x1f\x7f-\uFFFF\w-]/g,ie=function(e,t){return t?"\0"===e?"\ufffd":e.slice(0,-1)+"\\"+e.charCodeAt(e.length-1).toString(16)+" ":"\\"+e},oe=function(){T()},ae=be(function(e){return!0===e.disabled&&"fieldset"===e.nodeName.toLowerCase()},{dir:"parentNode",next:"legend"});try{H.apply(t=O.call(m.childNodes),m.childNodes),t[m.childNodes.length].nodeType}catch(e){H={apply:t.length?function(e,t){L.apply(e,O.call(t))}:function(e,t){var n=e.length,r=0;while(e[n++]=t[r++]);e.length=n-1}}}function se(t,e,n,r){var i,o,a,s,u,l,c,f=e&&e.ownerDocument,p=e?e.nodeType:9;if(n=n||[],"string"!=typeof t||!t||1!==p&&9!==p&&11!==p)return n;if(!r&&((e?e.ownerDocument||e:m)!==C&&T(e),e=e||C,E)){if(11!==p&&(u=Z.exec(t)))if(i=u[1]){if(9===p){if(!(a=e.getElementById(i)))return n;if(a.id===i)return n.push(a),n}else if(f&&(a=f.getElementById(i))&&y(e,a)&&a.id===i)return n.push(a),n}else{if(u[2])return H.apply(n,e.getElementsByTagName(t)),n;if((i=u[3])&&d.getElementsByClassName&&e.getElementsByClassName)return H.apply(n,e.getElementsByClassName(i)),n}if(d.qsa&&!A[t+" "]&&(!v||!v.test(t))&&(1!==p||"object"!==e.nodeName.toLowerCase())){if(c=t,f=e,1===p&&U.test(t)){(s=e.getAttribute("id"))?s=s.replace(re,ie):e.setAttribute("id",s=k),o=(l=h(t)).length;while(o--)l[o]="#"+s+" "+xe(l[o]);c=l.join(","),f=ee.test(t)&&ye(e.parentNode)||e}try{return H.apply(n,f.querySelectorAll(c)),n}catch(e){A(t,!0)}finally{s===k&&e.removeAttribute("id")}}}return g(t.replace(B,"$1"),e,n,r)}function ue(){var r=[];return function e(t,n){return r.push(t+" ")>b.cacheLength&&delete e[r.shift()],e[t+" "]=n}}function le(e){return e[k]=!0,e}function ce(e){var t=C.createElement("fieldset");try{return!!e(t)}catch(e){return!1}finally{t.parentNode&&t.parentNode.removeChild(t),t=null}}function fe(e,t){var n=e.split("|"),r=n.length;while(r--)b.attrHandle[n[r]]=t}function pe(e,t){var n=t&&e,r=n&&1===e.nodeType&&1===t.nodeType&&e.sourceIndex-t.sourceIndex;if(r)return r;if(n)while(n=n.nextSibling)if(n===t)return-1;return e?1:-1}function de(t){return function(e){return"input"===e.nodeName.toLowerCase()&&e.type===t}}function he(n){return function(e){var t=e.nodeName.toLowerCase();return("input"===t||"button"===t)&&e.type===n}}function ge(t){return function(e){return"form"in e?e.parentNode&&!1===e.disabled?"label"in e?"label"in e.parentNode?e.parentNode.disabled===t:e.disabled===t:e.isDisabled===t||e.isDisabled!==!t&&ae(e)===t:e.disabled===t:"label"in e&&e.disabled===t}}function ve(a){return le(function(o){return o=+o,le(function(e,t){var n,r=a([],e.length,o),i=r.length;while(i--)e[n=r[i]]&&(e[n]=!(t[n]=e[n]))})})}function ye(e){return e&&"undefined"!=typeof e.getElementsByTagName&&e}for(e in d=se.support={},i=se.isXML=function(e){var t=e.namespaceURI,n=(e.ownerDocument||e).documentElement;return!Y.test(t||n&&n.nodeName||"HTML")},T=se.setDocument=function(e){var t,n,r=e?e.ownerDocument||e:m;return r!==C&&9===r.nodeType&&r.documentElement&&(a=(C=r).documentElement,E=!i(C),m!==C&&(n=C.defaultView)&&n.top!==n&&(n.addEventListener?n.addEventListener("unload",oe,!1):n.attachEvent&&n.attachEvent("onunload",oe)),d.attributes=ce(function(e){return e.className="i",!e.getAttribute("className")}),d.getElementsByTagName=ce(function(e){return e.appendChild(C.createComment("")),!e.getElementsByTagName("*").length}),d.getElementsByClassName=K.test(C.getElementsByClassName),d.getById=ce(function(e){return a.appendChild(e).id=k,!C.getElementsByName||!C.getElementsByName(k).length}),d.getById?(b.filter.ID=function(e){var t=e.replace(te,ne);return function(e){return e.getAttribute("id")===t}},b.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&E){var n=t.getElementById(e);return n?[n]:[]}}):(b.filter.ID=function(e){var n=e.replace(te,ne);return function(e){var t="undefined"!=typeof e.getAttributeNode&&e.getAttributeNode("id");return t&&t.value===n}},b.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&E){var n,r,i,o=t.getElementById(e);if(o){if((n=o.getAttributeNode("id"))&&n.value===e)return[o];i=t.getElementsByName(e),r=0;while(o=i[r++])if((n=o.getAttributeNode("id"))&&n.value===e)return[o]}return[]}}),b.find.TAG=d.getElementsByTagName?function(e,t){return"undefined"!=typeof t.getElementsByTagName?t.getElementsByTagName(e):d.qsa?t.querySelectorAll(e):void 0}:function(e,t){var n,r=[],i=0,o=t.getElementsByTagName(e);if("*"===e){while(n=o[i++])1===n.nodeType&&r.push(n);return r}return o},b.find.CLASS=d.getElementsByClassName&&function(e,t){if("undefined"!=typeof t.getElementsByClassName&&E)return t.getElementsByClassName(e)},s=[],v=[],(d.qsa=K.test(C.querySelectorAll))&&(ce(function(e){a.appendChild(e).innerHTML="<a id='"+k+"'></a><select id='"+k+"-\r\\' msallowcapture=''><option selected=''></option></select>",e.querySelectorAll("[msallowcapture^='']").length&&v.push("[*^$]="+M+"*(?:''|\"\")"),e.querySelectorAll("[selected]").length||v.push("\\["+M+"*(?:value|"+R+")"),e.querySelectorAll("[id~="+k+"-]").length||v.push("~="),e.querySelectorAll(":checked").length||v.push(":checked"),e.querySelectorAll("a#"+k+"+*").length||v.push(".#.+[+~]")}),ce(function(e){e.innerHTML="<a href='' disabled='disabled'></a><select disabled='disabled'><option/></select>";var t=C.createElement("input");t.setAttribute("type","hidden"),e.appendChild(t).setAttribute("name","D"),e.querySelectorAll("[name=d]").length&&v.push("name"+M+"*[*^$|!~]?="),2!==e.querySelectorAll(":enabled").length&&v.push(":enabled",":disabled"),a.appendChild(e).disabled=!0,2!==e.querySelectorAll(":disabled").length&&v.push(":enabled",":disabled"),e.querySelectorAll("*,:x"),v.push(",.*:")})),(d.matchesSelector=K.test(c=a.matches||a.webkitMatchesSelector||a.mozMatchesSelector||a.oMatchesSelector||a.msMatchesSelector))&&ce(function(e){d.disconnectedMatch=c.call(e,"*"),c.call(e,"[s!='']:x"),s.push("!=",$)}),v=v.length&&new RegExp(v.join("|")),s=s.length&&new RegExp(s.join("|")),t=K.test(a.compareDocumentPosition),y=t||K.test(a.contains)?function(e,t){var n=9===e.nodeType?e.documentElement:e,r=t&&t.parentNode;return e===r||!(!r||1!==r.nodeType||!(n.contains?n.contains(r):e.compareDocumentPosition&&16&e.compareDocumentPosition(r)))}:function(e,t){if(t)while(t=t.parentNode)if(t===e)return!0;return!1},D=t?function(e,t){if(e===t)return l=!0,0;var n=!e.compareDocumentPosition-!t.compareDocumentPosition;return n||(1&(n=(e.ownerDocument||e)===(t.ownerDocument||t)?e.compareDocumentPosition(t):1)||!d.sortDetached&&t.compareDocumentPosition(e)===n?e===C||e.ownerDocument===m&&y(m,e)?-1:t===C||t.ownerDocument===m&&y(m,t)?1:u?P(u,e)-P(u,t):0:4&n?-1:1)}:function(e,t){if(e===t)return l=!0,0;var n,r=0,i=e.parentNode,o=t.parentNode,a=[e],s=[t];if(!i||!o)return e===C?-1:t===C?1:i?-1:o?1:u?P(u,e)-P(u,t):0;if(i===o)return pe(e,t);n=e;while(n=n.parentNode)a.unshift(n);n=t;while(n=n.parentNode)s.unshift(n);while(a[r]===s[r])r++;return r?pe(a[r],s[r]):a[r]===m?-1:s[r]===m?1:0}),C},se.matches=function(e,t){return se(e,null,null,t)},se.matchesSelector=function(e,t){if((e.ownerDocument||e)!==C&&T(e),d.matchesSelector&&E&&!A[t+" "]&&(!s||!s.test(t))&&(!v||!v.test(t)))try{var n=c.call(e,t);if(n||d.disconnectedMatch||e.document&&11!==e.document.nodeType)return n}catch(e){A(t,!0)}return 0<se(t,C,null,[e]).length},se.contains=function(e,t){return(e.ownerDocument||e)!==C&&T(e),y(e,t)},se.attr=function(e,t){(e.ownerDocument||e)!==C&&T(e);var n=b.attrHandle[t.toLowerCase()],r=n&&j.call(b.attrHandle,t.toLowerCase())?n(e,t,!E):void 0;return void 0!==r?r:d.attributes||!E?e.getAttribute(t):(r=e.getAttributeNode(t))&&r.specified?r.value:null},se.escape=function(e){return(e+"").replace(re,ie)},se.error=function(e){throw new Error("Syntax error, unrecognized expression: "+e)},se.uniqueSort=function(e){var t,n=[],r=0,i=0;if(l=!d.detectDuplicates,u=!d.sortStable&&e.slice(0),e.sort(D),l){while(t=e[i++])t===e[i]&&(r=n.push(i));while(r--)e.splice(n[r],1)}return u=null,e},o=se.getText=function(e){var t,n="",r=0,i=e.nodeType;if(i){if(1===i||9===i||11===i){if("string"==typeof e.textContent)return e.textContent;for(e=e.firstChild;e;e=e.nextSibling)n+=o(e)}else if(3===i||4===i)return e.nodeValue}else while(t=e[r++])n+=o(t);return n},(b=se.selectors={cacheLength:50,createPseudo:le,match:G,attrHandle:{},find:{},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(e){return e[1]=e[1].replace(te,ne),e[3]=(e[3]||e[4]||e[5]||"").replace(te,ne),"~="===e[2]&&(e[3]=" "+e[3]+" "),e.slice(0,4)},CHILD:function(e){return e[1]=e[1].toLowerCase(),"nth"===e[1].slice(0,3)?(e[3]||se.error(e[0]),e[4]=+(e[4]?e[5]+(e[6]||1):2*("even"===e[3]||"odd"===e[3])),e[5]=+(e[7]+e[8]||"odd"===e[3])):e[3]&&se.error(e[0]),e},PSEUDO:function(e){var t,n=!e[6]&&e[2];return G.CHILD.test(e[0])?null:(e[3]?e[2]=e[4]||e[5]||"":n&&X.test(n)&&(t=h(n,!0))&&(t=n.indexOf(")",n.length-t)-n.length)&&(e[0]=e[0].slice(0,t),e[2]=n.slice(0,t)),e.slice(0,3))}},filter:{TAG:function(e){var t=e.replace(te,ne).toLowerCase();return"*"===e?function(){return!0}:function(e){return e.nodeName&&e.nodeName.toLowerCase()===t}},CLASS:function(e){var t=p[e+" "];return t||(t=new RegExp("(^|"+M+")"+e+"("+M+"|$)"))&&p(e,function(e){return t.test("string"==typeof e.className&&e.className||"undefined"!=typeof e.getAttribute&&e.getAttribute("class")||"")})},ATTR:function(n,r,i){return function(e){var t=se.attr(e,n);return null==t?"!="===r:!r||(t+="","="===r?t===i:"!="===r?t!==i:"^="===r?i&&0===t.indexOf(i):"*="===r?i&&-1<t.indexOf(i):"$="===r?i&&t.slice(-i.length)===i:"~="===r?-1<(" "+t.replace(F," ")+" ").indexOf(i):"|="===r&&(t===i||t.slice(0,i.length+1)===i+"-"))}},CHILD:function(h,e,t,g,v){var y="nth"!==h.slice(0,3),m="last"!==h.slice(-4),x="of-type"===e;return 1===g&&0===v?function(e){return!!e.parentNode}:function(e,t,n){var r,i,o,a,s,u,l=y!==m?"nextSibling":"previousSibling",c=e.parentNode,f=x&&e.nodeName.toLowerCase(),p=!n&&!x,d=!1;if(c){if(y){while(l){a=e;while(a=a[l])if(x?a.nodeName.toLowerCase()===f:1===a.nodeType)return!1;u=l="only"===h&&!u&&"nextSibling"}return!0}if(u=[m?c.firstChild:c.lastChild],m&&p){d=(s=(r=(i=(o=(a=c)[k]||(a[k]={}))[a.uniqueID]||(o[a.uniqueID]={}))[h]||[])[0]===S&&r[1])&&r[2],a=s&&c.childNodes[s];while(a=++s&&a&&a[l]||(d=s=0)||u.pop())if(1===a.nodeType&&++d&&a===e){i[h]=[S,s,d];break}}else if(p&&(d=s=(r=(i=(o=(a=e)[k]||(a[k]={}))[a.uniqueID]||(o[a.uniqueID]={}))[h]||[])[0]===S&&r[1]),!1===d)while(a=++s&&a&&a[l]||(d=s=0)||u.pop())if((x?a.nodeName.toLowerCase()===f:1===a.nodeType)&&++d&&(p&&((i=(o=a[k]||(a[k]={}))[a.uniqueID]||(o[a.uniqueID]={}))[h]=[S,d]),a===e))break;return(d-=v)===g||d%g==0&&0<=d/g}}},PSEUDO:function(e,o){var t,a=b.pseudos[e]||b.setFilters[e.toLowerCase()]||se.error("unsupported pseudo: "+e);return a[k]?a(o):1<a.length?(t=[e,e,"",o],b.setFilters.hasOwnProperty(e.toLowerCase())?le(function(e,t){var n,r=a(e,o),i=r.length;while(i--)e[n=P(e,r[i])]=!(t[n]=r[i])}):function(e){return a(e,0,t)}):a}},pseudos:{not:le(function(e){var r=[],i=[],s=f(e.replace(B,"$1"));return s[k]?le(function(e,t,n,r){var i,o=s(e,null,r,[]),a=e.length;while(a--)(i=o[a])&&(e[a]=!(t[a]=i))}):function(e,t,n){return r[0]=e,s(r,null,n,i),r[0]=null,!i.pop()}}),has:le(function(t){return function(e){return 0<se(t,e).length}}),contains:le(function(t){return t=t.replace(te,ne),function(e){return-1<(e.textContent||o(e)).indexOf(t)}}),lang:le(function(n){return V.test(n||"")||se.error("unsupported lang: "+n),n=n.replace(te,ne).toLowerCase(),function(e){var t;do{if(t=E?e.lang:e.getAttribute("xml:lang")||e.getAttribute("lang"))return(t=t.toLowerCase())===n||0===t.indexOf(n+"-")}while((e=e.parentNode)&&1===e.nodeType);return!1}}),target:function(e){var t=n.location&&n.location.hash;return t&&t.slice(1)===e.id},root:function(e){return e===a},focus:function(e){return e===C.activeElement&&(!C.hasFocus||C.hasFocus())&&!!(e.type||e.href||~e.tabIndex)},enabled:ge(!1),disabled:ge(!0),checked:function(e){var t=e.nodeName.toLowerCase();return"input"===t&&!!e.checked||"option"===t&&!!e.selected},selected:function(e){return e.parentNode&&e.parentNode.selectedIndex,!0===e.selected},empty:function(e){for(e=e.firstChild;e;e=e.nextSibling)if(e.nodeType<6)return!1;return!0},parent:function(e){return!b.pseudos.empty(e)},header:function(e){return J.test(e.nodeName)},input:function(e){return Q.test(e.nodeName)},button:function(e){var t=e.nodeName.toLowerCase();return"input"===t&&"button"===e.type||"button"===t},text:function(e){var t;return"input"===e.nodeName.toLowerCase()&&"text"===e.type&&(null==(t=e.getAttribute("type"))||"text"===t.toLowerCase())},first:ve(function(){return[0]}),last:ve(function(e,t){return[t-1]}),eq:ve(function(e,t,n){return[n<0?n+t:n]}),even:ve(function(e,t){for(var n=0;n<t;n+=2)e.push(n);return e}),odd:ve(function(e,t){for(var n=1;n<t;n+=2)e.push(n);return e}),lt:ve(function(e,t,n){for(var r=n<0?n+t:t<n?t:n;0<=--r;)e.push(r);return e}),gt:ve(function(e,t,n){for(var r=n<0?n+t:n;++r<t;)e.push(r);return e})}}).pseudos.nth=b.pseudos.eq,{radio:!0,checkbox:!0,file:!0,password:!0,image:!0})b.pseudos[e]=de(e);for(e in{submit:!0,reset:!0})b.pseudos[e]=he(e);function me(){}function xe(e){for(var t=0,n=e.length,r="";t<n;t++)r+=e[t].value;return r}function be(s,e,t){var u=e.dir,l=e.next,c=l||u,f=t&&"parentNode"===c,p=r++;return e.first?function(e,t,n){while(e=e[u])if(1===e.nodeType||f)return s(e,t,n);return!1}:function(e,t,n){var r,i,o,a=[S,p];if(n){while(e=e[u])if((1===e.nodeType||f)&&s(e,t,n))return!0}else while(e=e[u])if(1===e.nodeType||f)if(i=(o=e[k]||(e[k]={}))[e.uniqueID]||(o[e.uniqueID]={}),l&&l===e.nodeName.toLowerCase())e=e[u]||e;else{if((r=i[c])&&r[0]===S&&r[1]===p)return a[2]=r[2];if((i[c]=a)[2]=s(e,t,n))return!0}return!1}}function we(i){return 1<i.length?function(e,t,n){var r=i.length;while(r--)if(!i[r](e,t,n))return!1;return!0}:i[0]}function Te(e,t,n,r,i){for(var o,a=[],s=0,u=e.length,l=null!=t;s<u;s++)(o=e[s])&&(n&&!n(o,r,i)||(a.push(o),l&&t.push(s)));return a}function Ce(d,h,g,v,y,e){return v&&!v[k]&&(v=Ce(v)),y&&!y[k]&&(y=Ce(y,e)),le(function(e,t,n,r){var i,o,a,s=[],u=[],l=t.length,c=e||function(e,t,n){for(var r=0,i=t.length;r<i;r++)se(e,t[r],n);return n}(h||"*",n.nodeType?[n]:n,[]),f=!d||!e&&h?c:Te(c,s,d,n,r),p=g?y||(e?d:l||v)?[]:t:f;if(g&&g(f,p,n,r),v){i=Te(p,u),v(i,[],n,r),o=i.length;while(o--)(a=i[o])&&(p[u[o]]=!(f[u[o]]=a))}if(e){if(y||d){if(y){i=[],o=p.length;while(o--)(a=p[o])&&i.push(f[o]=a);y(null,p=[],i,r)}o=p.length;while(o--)(a=p[o])&&-1<(i=y?P(e,a):s[o])&&(e[i]=!(t[i]=a))}}else p=Te(p===t?p.splice(l,p.length):p),y?y(null,t,p,r):H.apply(t,p)})}function Ee(e){for(var i,t,n,r=e.length,o=b.relative[e[0].type],a=o||b.relative[" "],s=o?1:0,u=be(function(e){return e===i},a,!0),l=be(function(e){return-1<P(i,e)},a,!0),c=[function(e,t,n){var r=!o&&(n||t!==w)||((i=t).nodeType?u(e,t,n):l(e,t,n));return i=null,r}];s<r;s++)if(t=b.relative[e[s].type])c=[be(we(c),t)];else{if((t=b.filter[e[s].type].apply(null,e[s].matches))[k]){for(n=++s;n<r;n++)if(b.relative[e[n].type])break;return Ce(1<s&&we(c),1<s&&xe(e.slice(0,s-1).concat({value:" "===e[s-2].type?"*":""})).replace(B,"$1"),t,s<n&&Ee(e.slice(s,n)),n<r&&Ee(e=e.slice(n)),n<r&&xe(e))}c.push(t)}return we(c)}return me.prototype=b.filters=b.pseudos,b.setFilters=new me,h=se.tokenize=function(e,t){var n,r,i,o,a,s,u,l=x[e+" "];if(l)return t?0:l.slice(0);a=e,s=[],u=b.preFilter;while(a){for(o in n&&!(r=_.exec(a))||(r&&(a=a.slice(r[0].length)||a),s.push(i=[])),n=!1,(r=z.exec(a))&&(n=r.shift(),i.push({value:n,type:r[0].replace(B," ")}),a=a.slice(n.length)),b.filter)!(r=G[o].exec(a))||u[o]&&!(r=u[o](r))||(n=r.shift(),i.push({value:n,type:o,matches:r}),a=a.slice(n.length));if(!n)break}return t?a.length:a?se.error(e):x(e,s).slice(0)},f=se.compile=function(e,t){var n,v,y,m,x,r,i=[],o=[],a=N[e+" "];if(!a){t||(t=h(e)),n=t.length;while(n--)(a=Ee(t[n]))[k]?i.push(a):o.push(a);(a=N(e,(v=o,m=0<(y=i).length,x=0<v.length,r=function(e,t,n,r,i){var o,a,s,u=0,l="0",c=e&&[],f=[],p=w,d=e||x&&b.find.TAG("*",i),h=S+=null==p?1:Math.random()||.1,g=d.length;for(i&&(w=t===C||t||i);l!==g&&null!=(o=d[l]);l++){if(x&&o){a=0,t||o.ownerDocument===C||(T(o),n=!E);while(s=v[a++])if(s(o,t||C,n)){r.push(o);break}i&&(S=h)}m&&((o=!s&&o)&&u--,e&&c.push(o))}if(u+=l,m&&l!==u){a=0;while(s=y[a++])s(c,f,t,n);if(e){if(0<u)while(l--)c[l]||f[l]||(f[l]=q.call(r));f=Te(f)}H.apply(r,f),i&&!e&&0<f.length&&1<u+y.length&&se.uniqueSort(r)}return i&&(S=h,w=p),c},m?le(r):r))).selector=e}return a},g=se.select=function(e,t,n,r){var i,o,a,s,u,l="function"==typeof e&&e,c=!r&&h(e=l.selector||e);if(n=n||[],1===c.length){if(2<(o=c[0]=c[0].slice(0)).length&&"ID"===(a=o[0]).type&&9===t.nodeType&&E&&b.relative[o[1].type]){if(!(t=(b.find.ID(a.matches[0].replace(te,ne),t)||[])[0]))return n;l&&(t=t.parentNode),e=e.slice(o.shift().value.length)}i=G.needsContext.test(e)?0:o.length;while(i--){if(a=o[i],b.relative[s=a.type])break;if((u=b.find[s])&&(r=u(a.matches[0].replace(te,ne),ee.test(o[0].type)&&ye(t.parentNode)||t))){if(o.splice(i,1),!(e=r.length&&xe(o)))return H.apply(n,r),n;break}}}return(l||f(e,c))(r,t,!E,n,!t||ee.test(e)&&ye(t.parentNode)||t),n},d.sortStable=k.split("").sort(D).join("")===k,d.detectDuplicates=!!l,T(),d.sortDetached=ce(function(e){return 1&e.compareDocumentPosition(C.createElement("fieldset"))}),ce(function(e){return e.innerHTML="<a href='#'></a>","#"===e.firstChild.getAttribute("href")})||fe("type|href|height|width",function(e,t,n){if(!n)return e.getAttribute(t,"type"===t.toLowerCase()?1:2)}),d.attributes&&ce(function(e){return e.innerHTML="<input/>",e.firstChild.setAttribute("value",""),""===e.firstChild.getAttribute("value")})||fe("value",function(e,t,n){if(!n&&"input"===e.nodeName.toLowerCase())return e.defaultValue}),ce(function(e){return null==e.getAttribute("disabled")})||fe(R,function(e,t,n){var r;if(!n)return!0===e[t]?t.toLowerCase():(r=e.getAttributeNode(t))&&r.specified?r.value:null}),se}(C);k.find=h,k.expr=h.selectors,k.expr[":"]=k.expr.pseudos,k.uniqueSort=k.unique=h.uniqueSort,k.text=h.getText,k.isXMLDoc=h.isXML,k.contains=h.contains,k.escapeSelector=h.escape;var T=function(e,t,n){var r=[],i=void 0!==n;while((e=e[t])&&9!==e.nodeType)if(1===e.nodeType){if(i&&k(e).is(n))break;r.push(e)}return r},S=function(e,t){for(var n=[];e;e=e.nextSibling)1===e.nodeType&&e!==t&&n.push(e);return n},N=k.expr.match.needsContext;function A(e,t){return e.nodeName&&e.nodeName.toLowerCase()===t.toLowerCase()}var D=/^<([a-z][^\/\0>:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i;function j(e,n,r){return m(n)?k.grep(e,function(e,t){return!!n.call(e,t,e)!==r}):n.nodeType?k.grep(e,function(e){return e===n!==r}):"string"!=typeof n?k.grep(e,function(e){return-1<i.call(n,e)!==r}):k.filter(n,e,r)}k.filter=function(e,t,n){var r=t[0];return n&&(e=":not("+e+")"),1===t.length&&1===r.nodeType?k.find.matchesSelector(r,e)?[r]:[]:k.find.matches(e,k.grep(t,function(e){return 1===e.nodeType}))},k.fn.extend({find:function(e){var t,n,r=this.length,i=this;if("string"!=typeof e)return this.pushStack(k(e).filter(function(){for(t=0;t<r;t++)if(k.contains(i[t],this))return!0}));for(n=this.pushStack([]),t=0;t<r;t++)k.find(e,i[t],n);return 1<r?k.uniqueSort(n):n},filter:function(e){return this.pushStack(j(this,e||[],!1))},not:function(e){return this.pushStack(j(this,e||[],!0))},is:function(e){return!!j(this,"string"==typeof e&&N.test(e)?k(e):e||[],!1).length}});var q,L=/^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]+))$/;(k.fn.init=function(e,t,n){var r,i;if(!e)return this;if(n=n||q,"string"==typeof e){if(!(r="<"===e[0]&&">"===e[e.length-1]&&3<=e.length?[null,e,null]:L.exec(e))||!r[1]&&t)return!t||t.jquery?(t||n).find(e):this.constructor(t).find(e);if(r[1]){if(t=t instanceof k?t[0]:t,k.merge(this,k.parseHTML(r[1],t&&t.nodeType?t.ownerDocument||t:E,!0)),D.test(r[1])&&k.isPlainObject(t))for(r in t)m(this[r])?this[r](t[r]):this.attr(r,t[r]);return this}return(i=E.getElementById(r[2]))&&(this[0]=i,this.length=1),this}return e.nodeType?(this[0]=e,this.length=1,this):m(e)?void 0!==n.ready?n.ready(e):e(k):k.makeArray(e,this)}).prototype=k.fn,q=k(E);var H=/^(?:parents|prev(?:Until|All))/,O={children:!0,contents:!0,next:!0,prev:!0};function P(e,t){while((e=e[t])&&1!==e.nodeType);return e}k.fn.extend({has:function(e){var t=k(e,this),n=t.length;return this.filter(function(){for(var e=0;e<n;e++)if(k.contains(this,t[e]))return!0})},closest:function(e,t){var n,r=0,i=this.length,o=[],a="string"!=typeof e&&k(e);if(!N.test(e))for(;r<i;r++)for(n=this[r];n&&n!==t;n=n.parentNode)if(n.nodeType<11&&(a?-1<a.index(n):1===n.nodeType&&k.find.matchesSelector(n,e))){o.push(n);break}return this.pushStack(1<o.length?k.uniqueSort(o):o)},index:function(e){return e?"string"==typeof e?i.call(k(e),this[0]):i.call(this,e.jquery?e[0]:e):this[0]&&this[0].parentNode?this.first().prevAll().length:-1},add:function(e,t){return this.pushStack(k.uniqueSort(k.merge(this.get(),k(e,t))))},addBack:function(e){return this.add(null==e?this.prevObject:this.prevObject.filter(e))}}),k.each({parent:function(e){var t=e.parentNode;return t&&11!==t.nodeType?t:null},parents:function(e){return T(e,"parentNode")},parentsUntil:function(e,t,n){return T(e,"parentNode",n)},next:function(e){return P(e,"nextSibling")},prev:function(e){return P(e,"previousSibling")},nextAll:function(e){return T(e,"nextSibling")},prevAll:function(e){return T(e,"previousSibling")},nextUntil:function(e,t,n){return T(e,"nextSibling",n)},prevUntil:function(e,t,n){return T(e,"previousSibling",n)},siblings:function(e){return S((e.parentNode||{}).firstChild,e)},children:function(e){return S(e.firstChild)},contents:function(e){return"undefined"!=typeof e.contentDocument?e.contentDocument:(A(e,"template")&&(e=e.content||e),k.merge([],e.childNodes))}},function(r,i){k.fn[r]=function(e,t){var n=k.map(this,i,e);return"Until"!==r.slice(-5)&&(t=e),t&&"string"==typeof t&&(n=k.filter(t,n)),1<this.length&&(O[r]||k.uniqueSort(n),H.test(r)&&n.reverse()),this.pushStack(n)}});var R=/[^\x20\t\r\n\f]+/g;function M(e){return e}function I(e){throw e}function W(e,t,n,r){var i;try{e&&m(i=e.promise)?i.call(e).done(t).fail(n):e&&m(i=e.then)?i.call(e,t,n):t.apply(void 0,[e].slice(r))}catch(e){n.apply(void 0,[e])}}k.Callbacks=function(r){var e,n;r="string"==typeof r?(e=r,n={},k.each(e.match(R)||[],function(e,t){n[t]=!0}),n):k.extend({},r);var i,t,o,a,s=[],u=[],l=-1,c=function(){for(a=a||r.once,o=i=!0;u.length;l=-1){t=u.shift();while(++l<s.length)!1===s[l].apply(t[0],t[1])&&r.stopOnFalse&&(l=s.length,t=!1)}r.memory||(t=!1),i=!1,a&&(s=t?[]:"")},f={add:function(){return s&&(t&&!i&&(l=s.length-1,u.push(t)),function n(e){k.each(e,function(e,t){m(t)?r.unique&&f.has(t)||s.push(t):t&&t.length&&"string"!==w(t)&&n(t)})}(arguments),t&&!i&&c()),this},remove:function(){return k.each(arguments,function(e,t){var n;while(-1<(n=k.inArray(t,s,n)))s.splice(n,1),n<=l&&l--}),this},has:function(e){return e?-1<k.inArray(e,s):0<s.length},empty:function(){return s&&(s=[]),this},disable:function(){return a=u=[],s=t="",this},disabled:function(){return!s},lock:function(){return a=u=[],t||i||(s=t=""),this},locked:function(){return!!a},fireWith:function(e,t){return a||(t=[e,(t=t||[]).slice?t.slice():t],u.push(t),i||c()),this},fire:function(){return f.fireWith(this,arguments),this},fired:function(){return!!o}};return f},k.extend({Deferred:function(e){var o=[["notify","progress",k.Callbacks("memory"),k.Callbacks("memory"),2],["resolve","done",k.Callbacks("once memory"),k.Callbacks("once memory"),0,"resolved"],["reject","fail",k.Callbacks("once memory"),k.Callbacks("once memory"),1,"rejected"]],i="pending",a={state:function(){return i},always:function(){return s.done(arguments).fail(arguments),this},"catch":function(e){return a.then(null,e)},pipe:function(){var i=arguments;return k.Deferred(function(r){k.each(o,function(e,t){var n=m(i[t[4]])&&i[t[4]];s[t[1]](function(){var e=n&&n.apply(this,arguments);e&&m(e.promise)?e.promise().progress(r.notify).done(r.resolve).fail(r.reject):r[t[0]+"With"](this,n?[e]:arguments)})}),i=null}).promise()},then:function(t,n,r){var u=0;function l(i,o,a,s){return function(){var n=this,r=arguments,e=function(){var e,t;if(!(i<u)){if((e=a.apply(n,r))===o.promise())throw new TypeError("Thenable self-resolution");t=e&&("object"==typeof e||"function"==typeof e)&&e.then,m(t)?s?t.call(e,l(u,o,M,s),l(u,o,I,s)):(u++,t.call(e,l(u,o,M,s),l(u,o,I,s),l(u,o,M,o.notifyWith))):(a!==M&&(n=void 0,r=[e]),(s||o.resolveWith)(n,r))}},t=s?e:function(){try{e()}catch(e){k.Deferred.exceptionHook&&k.Deferred.exceptionHook(e,t.stackTrace),u<=i+1&&(a!==I&&(n=void 0,r=[e]),o.rejectWith(n,r))}};i?t():(k.Deferred.getStackHook&&(t.stackTrace=k.Deferred.getStackHook()),C.setTimeout(t))}}return k.Deferred(function(e){o[0][3].add(l(0,e,m(r)?r:M,e.notifyWith)),o[1][3].add(l(0,e,m(t)?t:M)),o[2][3].add(l(0,e,m(n)?n:I))}).promise()},promise:function(e){return null!=e?k.extend(e,a):a}},s={};return k.each(o,function(e,t){var n=t[2],r=t[5];a[t[1]]=n.add,r&&n.add(function(){i=r},o[3-e][2].disable,o[3-e][3].disable,o[0][2].lock,o[0][3].lock),n.add(t[3].fire),s[t[0]]=function(){return s[t[0]+"With"](this===s?void 0:this,arguments),this},s[t[0]+"With"]=n.fireWith}),a.promise(s),e&&e.call(s,s),s},when:function(e){var n=arguments.length,t=n,r=Array(t),i=s.call(arguments),o=k.Deferred(),a=function(t){return function(e){r[t]=this,i[t]=1<arguments.length?s.call(arguments):e,--n||o.resolveWith(r,i)}};if(n<=1&&(W(e,o.done(a(t)).resolve,o.reject,!n),"pending"===o.state()||m(i[t]&&i[t].then)))return o.then();while(t--)W(i[t],a(t),o.reject);return o.promise()}});var $=/^(Eval|Internal|Range|Reference|Syntax|Type|URI)Error$/;k.Deferred.exceptionHook=function(e,t){C.console&&C.console.warn&&e&&$.test(e.name)&&C.console.warn("jQuery.Deferred exception: "+e.message,e.stack,t)},k.readyException=function(e){C.setTimeout(function(){throw e})};var F=k.Deferred();function B(){E.removeEventListener("DOMContentLoaded",B),C.removeEventListener("load",B),k.ready()}k.fn.ready=function(e){return F.then(e)["catch"](function(e){k.readyException(e)}),this},k.extend({isReady:!1,readyWait:1,ready:function(e){(!0===e?--k.readyWait:k.isReady)||(k.isReady=!0)!==e&&0<--k.readyWait||F.resolveWith(E,[k])}}),k.ready.then=F.then,"complete"===E.readyState||"loading"!==E.readyState&&!E.documentElement.doScroll?C.setTimeout(k.ready):(E.addEventListener("DOMContentLoaded",B),C.addEventListener("load",B));var _=function(e,t,n,r,i,o,a){var s=0,u=e.length,l=null==n;if("object"===w(n))for(s in i=!0,n)_(e,t,s,n[s],!0,o,a);else if(void 0!==r&&(i=!0,m(r)||(a=!0),l&&(a?(t.call(e,r),t=null):(l=t,t=function(e,t,n){return l.call(k(e),n)})),t))for(;s<u;s++)t(e[s],n,a?r:r.call(e[s],s,t(e[s],n)));return i?e:l?t.call(e):u?t(e[0],n):o},z=/^-ms-/,U=/-([a-z])/g;function X(e,t){return t.toUpperCase()}function V(e){return e.replace(z,"ms-").replace(U,X)}var G=function(e){return 1===e.nodeType||9===e.nodeType||!+e.nodeType};function Y(){this.expando=k.expando+Y.uid++}Y.uid=1,Y.prototype={cache:function(e){var t=e[this.expando];return t||(t={},G(e)&&(e.nodeType?e[this.expando]=t:Object.defineProperty(e,this.expando,{value:t,configurable:!0}))),t},set:function(e,t,n){var r,i=this.cache(e);if("string"==typeof t)i[V(t)]=n;else for(r in t)i[V(r)]=t[r];return i},get:function(e,t){return void 0===t?this.cache(e):e[this.expando]&&e[this.expando][V(t)]},access:function(e,t,n){return void 0===t||t&&"string"==typeof t&&void 0===n?this.get(e,t):(this.set(e,t,n),void 0!==n?n:t)},remove:function(e,t){var n,r=e[this.expando];if(void 0!==r){if(void 0!==t){n=(t=Array.isArray(t)?t.map(V):(t=V(t))in r?[t]:t.match(R)||[]).length;while(n--)delete r[t[n]]}(void 0===t||k.isEmptyObject(r))&&(e.nodeType?e[this.expando]=void 0:delete e[this.expando])}},hasData:function(e){var t=e[this.expando];return void 0!==t&&!k.isEmptyObject(t)}};var Q=new Y,J=new Y,K=/^(?:\{[\w\W]*\}|\[[\w\W]*\])$/,Z=/[A-Z]/g;function ee(e,t,n){var r,i;if(void 0===n&&1===e.nodeType)if(r="data-"+t.replace(Z,"-$&").toLowerCase(),"string"==typeof(n=e.getAttribute(r))){try{n="true"===(i=n)||"false"!==i&&("null"===i?null:i===+i+""?+i:K.test(i)?JSON.parse(i):i)}catch(e){}J.set(e,t,n)}else n=void 0;return n}k.extend({hasData:function(e){return J.hasData(e)||Q.hasData(e)},data:function(e,t,n){return J.access(e,t,n)},removeData:function(e,t){J.remove(e,t)},_data:function(e,t,n){return Q.access(e,t,n)},_removeData:function(e,t){Q.remove(e,t)}}),k.fn.extend({data:function(n,e){var t,r,i,o=this[0],a=o&&o.attributes;if(void 0===n){if(this.length&&(i=J.get(o),1===o.nodeType&&!Q.get(o,"hasDataAttrs"))){t=a.length;while(t--)a[t]&&0===(r=a[t].name).indexOf("data-")&&(r=V(r.slice(5)),ee(o,r,i[r]));Q.set(o,"hasDataAttrs",!0)}return i}return"object"==typeof n?this.each(function(){J.set(this,n)}):_(this,function(e){var t;if(o&&void 0===e)return void 0!==(t=J.get(o,n))?t:void 0!==(t=ee(o,n))?t:void 0;this.each(function(){J.set(this,n,e)})},null,e,1<arguments.length,null,!0)},removeData:function(e){return this.each(function(){J.remove(this,e)})}}),k.extend({queue:function(e,t,n){var r;if(e)return t=(t||"fx")+"queue",r=Q.get(e,t),n&&(!r||Array.isArray(n)?r=Q.access(e,t,k.makeArray(n)):r.push(n)),r||[]},dequeue:function(e,t){t=t||"fx";var n=k.queue(e,t),r=n.length,i=n.shift(),o=k._queueHooks(e,t);"inprogress"===i&&(i=n.shift(),r--),i&&("fx"===t&&n.unshift("inprogress"),delete o.stop,i.call(e,function(){k.dequeue(e,t)},o)),!r&&o&&o.empty.fire()},_queueHooks:function(e,t){var n=t+"queueHooks";return Q.get(e,n)||Q.access(e,n,{empty:k.Callbacks("once memory").add(function(){Q.remove(e,[t+"queue",n])})})}}),k.fn.extend({queue:function(t,n){var e=2;return"string"!=typeof t&&(n=t,t="fx",e--),arguments.length<e?k.queue(this[0],t):void 0===n?this:this.each(function(){var e=k.queue(this,t,n);k._queueHooks(this,t),"fx"===t&&"inprogress"!==e[0]&&k.dequeue(this,t)})},dequeue:function(e){return this.each(function(){k.dequeue(this,e)})},clearQueue:function(e){return this.queue(e||"fx",[])},promise:function(e,t){var n,r=1,i=k.Deferred(),o=this,a=this.length,s=function(){--r||i.resolveWith(o,[o])};"string"!=typeof e&&(t=e,e=void 0),e=e||"fx";while(a--)(n=Q.get(o[a],e+"queueHooks"))&&n.empty&&(r++,n.empty.add(s));return s(),i.promise(t)}});var te=/[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/.source,ne=new RegExp("^(?:([+-])=|)("+te+")([a-z%]*)$","i"),re=["Top","Right","Bottom","Left"],ie=E.documentElement,oe=function(e){return k.contains(e.ownerDocument,e)},ae={composed:!0};ie.getRootNode&&(oe=function(e){return k.contains(e.ownerDocument,e)||e.getRootNode(ae)===e.ownerDocument});var se=function(e,t){return"none"===(e=t||e).style.display||""===e.style.display&&oe(e)&&"none"===k.css(e,"display")},ue=function(e,t,n,r){var i,o,a={};for(o in t)a[o]=e.style[o],e.style[o]=t[o];for(o in i=n.apply(e,r||[]),t)e.style[o]=a[o];return i};function le(e,t,n,r){var i,o,a=20,s=r?function(){return r.cur()}:function(){return k.css(e,t,"")},u=s(),l=n&&n[3]||(k.cssNumber[t]?"":"px"),c=e.nodeType&&(k.cssNumber[t]||"px"!==l&&+u)&&ne.exec(k.css(e,t));if(c&&c[3]!==l){u/=2,l=l||c[3],c=+u||1;while(a--)k.style(e,t,c+l),(1-o)*(1-(o=s()/u||.5))<=0&&(a=0),c/=o;c*=2,k.style(e,t,c+l),n=n||[]}return n&&(c=+c||+u||0,i=n[1]?c+(n[1]+1)*n[2]:+n[2],r&&(r.unit=l,r.start=c,r.end=i)),i}var ce={};function fe(e,t){for(var n,r,i,o,a,s,u,l=[],c=0,f=e.length;c<f;c++)(r=e[c]).style&&(n=r.style.display,t?("none"===n&&(l[c]=Q.get(r,"display")||null,l[c]||(r.style.display="")),""===r.style.display&&se(r)&&(l[c]=(u=a=o=void 0,a=(i=r).ownerDocument,s=i.nodeName,(u=ce[s])||(o=a.body.appendChild(a.createElement(s)),u=k.css(o,"display"),o.parentNode.removeChild(o),"none"===u&&(u="block"),ce[s]=u)))):"none"!==n&&(l[c]="none",Q.set(r,"display",n)));for(c=0;c<f;c++)null!=l[c]&&(e[c].style.display=l[c]);return e}k.fn.extend({show:function(){return fe(this,!0)},hide:function(){return fe(this)},toggle:function(e){return"boolean"==typeof e?e?this.show():this.hide():this.each(function(){se(this)?k(this).show():k(this).hide()})}});var pe=/^(?:checkbox|radio)$/i,de=/<([a-z][^\/\0>\x20\t\r\n\f]*)/i,he=/^$|^module$|\/(?:java|ecma)script/i,ge={option:[1,"<select multiple='multiple'>","</select>"],thead:[1,"<table>","</table>"],col:[2,"<table><colgroup>","</colgroup></table>"],tr:[2,"<table><tbody>","</tbody></table>"],td:[3,"<table><tbody><tr>","</tr></tbody></table>"],_default:[0,"",""]};function ve(e,t){var n;return n="undefined"!=typeof e.getElementsByTagName?e.getElementsByTagName(t||"*"):"undefined"!=typeof e.querySelectorAll?e.querySelectorAll(t||"*"):[],void 0===t||t&&A(e,t)?k.merge([e],n):n}function ye(e,t){for(var n=0,r=e.length;n<r;n++)Q.set(e[n],"globalEval",!t||Q.get(t[n],"globalEval"))}ge.optgroup=ge.option,ge.tbody=ge.tfoot=ge.colgroup=ge.caption=ge.thead,ge.th=ge.td;var me,xe,be=/<|&#?\w+;/;function we(e,t,n,r,i){for(var o,a,s,u,l,c,f=t.createDocumentFragment(),p=[],d=0,h=e.length;d<h;d++)if((o=e[d])||0===o)if("object"===w(o))k.merge(p,o.nodeType?[o]:o);else if(be.test(o)){a=a||f.appendChild(t.createElement("div")),s=(de.exec(o)||["",""])[1].toLowerCase(),u=ge[s]||ge._default,a.innerHTML=u[1]+k.htmlPrefilter(o)+u[2],c=u[0];while(c--)a=a.lastChild;k.merge(p,a.childNodes),(a=f.firstChild).textContent=""}else p.push(t.createTextNode(o));f.textContent="",d=0;while(o=p[d++])if(r&&-1<k.inArray(o,r))i&&i.push(o);else if(l=oe(o),a=ve(f.appendChild(o),"script"),l&&ye(a),n){c=0;while(o=a[c++])he.test(o.type||"")&&n.push(o)}return f}me=E.createDocumentFragment().appendChild(E.createElement("div")),(xe=E.createElement("input")).setAttribute("type","radio"),xe.setAttribute("checked","checked"),xe.setAttribute("name","t"),me.appendChild(xe),y.checkClone=me.cloneNode(!0).cloneNode(!0).lastChild.checked,me.innerHTML="<textarea>x</textarea>",y.noCloneChecked=!!me.cloneNode(!0).lastChild.defaultValue;var Te=/^key/,Ce=/^(?:mouse|pointer|contextmenu|drag|drop)|click/,Ee=/^([^.]*)(?:\.(.+)|)/;function ke(){return!0}function Se(){return!1}function Ne(e,t){return e===function(){try{return E.activeElement}catch(e){}}()==("focus"===t)}function Ae(e,t,n,r,i,o){var a,s;if("object"==typeof t){for(s in"string"!=typeof n&&(r=r||n,n=void 0),t)Ae(e,s,n,r,t[s],o);return e}if(null==r&&null==i?(i=n,r=n=void 0):null==i&&("string"==typeof n?(i=r,r=void 0):(i=r,r=n,n=void 0)),!1===i)i=Se;else if(!i)return e;return 1===o&&(a=i,(i=function(e){return k().off(e),a.apply(this,arguments)}).guid=a.guid||(a.guid=k.guid++)),e.each(function(){k.event.add(this,t,i,r,n)})}function De(e,i,o){o?(Q.set(e,i,!1),k.event.add(e,i,{namespace:!1,handler:function(e){var t,n,r=Q.get(this,i);if(1&e.isTrigger&&this[i]){if(r.length)(k.event.special[i]||{}).delegateType&&e.stopPropagation();else if(r=s.call(arguments),Q.set(this,i,r),t=o(this,i),this[i](),r!==(n=Q.get(this,i))||t?Q.set(this,i,!1):n={},r!==n)return e.stopImmediatePropagation(),e.preventDefault(),n.value}else r.length&&(Q.set(this,i,{value:k.event.trigger(k.extend(r[0],k.Event.prototype),r.slice(1),this)}),e.stopImmediatePropagation())}})):void 0===Q.get(e,i)&&k.event.add(e,i,ke)}k.event={global:{},add:function(t,e,n,r,i){var o,a,s,u,l,c,f,p,d,h,g,v=Q.get(t);if(v){n.handler&&(n=(o=n).handler,i=o.selector),i&&k.find.matchesSelector(ie,i),n.guid||(n.guid=k.guid++),(u=v.events)||(u=v.events={}),(a=v.handle)||(a=v.handle=function(e){return"undefined"!=typeof k&&k.event.triggered!==e.type?k.event.dispatch.apply(t,arguments):void 0}),l=(e=(e||"").match(R)||[""]).length;while(l--)d=g=(s=Ee.exec(e[l])||[])[1],h=(s[2]||"").split(".").sort(),d&&(f=k.event.special[d]||{},d=(i?f.delegateType:f.bindType)||d,f=k.event.special[d]||{},c=k.extend({type:d,origType:g,data:r,handler:n,guid:n.guid,selector:i,needsContext:i&&k.expr.match.needsContext.test(i),namespace:h.join(".")},o),(p=u[d])||((p=u[d]=[]).delegateCount=0,f.setup&&!1!==f.setup.call(t,r,h,a)||t.addEventListener&&t.addEventListener(d,a)),f.add&&(f.add.call(t,c),c.handler.guid||(c.handler.guid=n.guid)),i?p.splice(p.delegateCount++,0,c):p.push(c),k.event.global[d]=!0)}},remove:function(e,t,n,r,i){var o,a,s,u,l,c,f,p,d,h,g,v=Q.hasData(e)&&Q.get(e);if(v&&(u=v.events)){l=(t=(t||"").match(R)||[""]).length;while(l--)if(d=g=(s=Ee.exec(t[l])||[])[1],h=(s[2]||"").split(".").sort(),d){f=k.event.special[d]||{},p=u[d=(r?f.delegateType:f.bindType)||d]||[],s=s[2]&&new RegExp("(^|\\.)"+h.join("\\.(?:.*\\.|)")+"(\\.|$)"),a=o=p.length;while(o--)c=p[o],!i&&g!==c.origType||n&&n.guid!==c.guid||s&&!s.test(c.namespace)||r&&r!==c.selector&&("**"!==r||!c.selector)||(p.splice(o,1),c.selector&&p.delegateCount--,f.remove&&f.remove.call(e,c));a&&!p.length&&(f.teardown&&!1!==f.teardown.call(e,h,v.handle)||k.removeEvent(e,d,v.handle),delete u[d])}else for(d in u)k.event.remove(e,d+t[l],n,r,!0);k.isEmptyObject(u)&&Q.remove(e,"handle events")}},dispatch:function(e){var t,n,r,i,o,a,s=k.event.fix(e),u=new Array(arguments.length),l=(Q.get(this,"events")||{})[s.type]||[],c=k.event.special[s.type]||{};for(u[0]=s,t=1;t<arguments.length;t++)u[t]=arguments[t];if(s.delegateTarget=this,!c.preDispatch||!1!==c.preDispatch.call(this,s)){a=k.event.handlers.call(this,s,l),t=0;while((i=a[t++])&&!s.isPropagationStopped()){s.currentTarget=i.elem,n=0;while((o=i.handlers[n++])&&!s.isImmediatePropagationStopped())s.rnamespace&&!1!==o.namespace&&!s.rnamespace.test(o.namespace)||(s.handleObj=o,s.data=o.data,void 0!==(r=((k.event.special[o.origType]||{}).handle||o.handler).apply(i.elem,u))&&!1===(s.result=r)&&(s.preventDefault(),s.stopPropagation()))}return c.postDispatch&&c.postDispatch.call(this,s),s.result}},handlers:function(e,t){var n,r,i,o,a,s=[],u=t.delegateCount,l=e.target;if(u&&l.nodeType&&!("click"===e.type&&1<=e.button))for(;l!==this;l=l.parentNode||this)if(1===l.nodeType&&("click"!==e.type||!0!==l.disabled)){for(o=[],a={},n=0;n<u;n++)void 0===a[i=(r=t[n]).selector+" "]&&(a[i]=r.needsContext?-1<k(i,this).index(l):k.find(i,this,null,[l]).length),a[i]&&o.push(r);o.length&&s.push({elem:l,handlers:o})}return l=this,u<t.length&&s.push({elem:l,handlers:t.slice(u)}),s},addProp:function(t,e){Object.defineProperty(k.Event.prototype,t,{enumerable:!0,configurable:!0,get:m(e)?function(){if(this.originalEvent)return e(this.originalEvent)}:function(){if(this.originalEvent)return this.originalEvent[t]},set:function(e){Object.defineProperty(this,t,{enumerable:!0,configurable:!0,writable:!0,value:e})}})},fix:function(e){return e[k.expando]?e:new k.Event(e)},special:{load:{noBubble:!0},click:{setup:function(e){var t=this||e;return pe.test(t.type)&&t.click&&A(t,"input")&&De(t,"click",ke),!1},trigger:function(e){var t=this||e;return pe.test(t.type)&&t.click&&A(t,"input")&&De(t,"click"),!0},_default:function(e){var t=e.target;return pe.test(t.type)&&t.click&&A(t,"input")&&Q.get(t,"click")||A(t,"a")}},beforeunload:{postDispatch:function(e){void 0!==e.result&&e.originalEvent&&(e.originalEvent.returnValue=e.result)}}}},k.removeEvent=function(e,t,n){e.removeEventListener&&e.removeEventListener(t,n)},k.Event=function(e,t){if(!(this instanceof k.Event))return new k.Event(e,t);e&&e.type?(this.originalEvent=e,this.type=e.type,this.isDefaultPrevented=e.defaultPrevented||void 0===e.defaultPrevented&&!1===e.returnValue?ke:Se,this.target=e.target&&3===e.target.nodeType?e.target.parentNode:e.target,this.currentTarget=e.currentTarget,this.relatedTarget=e.relatedTarget):this.type=e,t&&k.extend(this,t),this.timeStamp=e&&e.timeStamp||Date.now(),this[k.expando]=!0},k.Event.prototype={constructor:k.Event,isDefaultPrevented:Se,isPropagationStopped:Se,isImmediatePropagationStopped:Se,isSimulated:!1,preventDefault:function(){var e=this.originalEvent;this.isDefaultPrevented=ke,e&&!this.isSimulated&&e.preventDefault()},stopPropagation:function(){var e=this.originalEvent;this.isPropagationStopped=ke,e&&!this.isSimulated&&e.stopPropagation()},stopImmediatePropagation:function(){var e=this.originalEvent;this.isImmediatePropagationStopped=ke,e&&!this.isSimulated&&e.stopImmediatePropagation(),this.stopPropagation()}},k.each({altKey:!0,bubbles:!0,cancelable:!0,changedTouches:!0,ctrlKey:!0,detail:!0,eventPhase:!0,metaKey:!0,pageX:!0,pageY:!0,shiftKey:!0,view:!0,"char":!0,code:!0,charCode:!0,key:!0,keyCode:!0,button:!0,buttons:!0,clientX:!0,clientY:!0,offsetX:!0,offsetY:!0,pointerId:!0,pointerType:!0,screenX:!0,screenY:!0,targetTouches:!0,toElement:!0,touches:!0,which:function(e){var t=e.button;return null==e.which&&Te.test(e.type)?null!=e.charCode?e.charCode:e.keyCode:!e.which&&void 0!==t&&Ce.test(e.type)?1&t?1:2&t?3:4&t?2:0:e.which}},k.event.addProp),k.each({focus:"focusin",blur:"focusout"},function(e,t){k.event.special[e]={setup:function(){return De(this,e,Ne),!1},trigger:function(){return De(this,e),!0},delegateType:t}}),k.each({mouseenter:"mouseover",mouseleave:"mouseout",pointerenter:"pointerover",pointerleave:"pointerout"},function(e,i){k.event.special[e]={delegateType:i,bindType:i,handle:function(e){var t,n=e.relatedTarget,r=e.handleObj;return n&&(n===this||k.contains(this,n))||(e.type=r.origType,t=r.handler.apply(this,arguments),e.type=i),t}}}),k.fn.extend({on:function(e,t,n,r){return Ae(this,e,t,n,r)},one:function(e,t,n,r){return Ae(this,e,t,n,r,1)},off:function(e,t,n){var r,i;if(e&&e.preventDefault&&e.handleObj)return r=e.handleObj,k(e.delegateTarget).off(r.namespace?r.origType+"."+r.namespace:r.origType,r.selector,r.handler),this;if("object"==typeof e){for(i in e)this.off(i,t,e[i]);return this}return!1!==t&&"function"!=typeof t||(n=t,t=void 0),!1===n&&(n=Se),this.each(function(){k.event.remove(this,e,n,t)})}});var je=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0>\x20\t\r\n\f]*)[^>]*)\/>/gi,qe=/<script|<style|<link/i,Le=/checked\s*(?:[^=]|=\s*.checked.)/i,He=/^\s*<!(?:\[CDATA\[|--)|(?:\]\]|--)>\s*$/g;function Oe(e,t){return A(e,"table")&&A(11!==t.nodeType?t:t.firstChild,"tr")&&k(e).children("tbody")[0]||e}function Pe(e){return e.type=(null!==e.getAttribute("type"))+"/"+e.type,e}function Re(e){return"true/"===(e.type||"").slice(0,5)?e.type=e.type.slice(5):e.removeAttribute("type"),e}function Me(e,t){var n,r,i,o,a,s,u,l;if(1===t.nodeType){if(Q.hasData(e)&&(o=Q.access(e),a=Q.set(t,o),l=o.events))for(i in delete a.handle,a.events={},l)for(n=0,r=l[i].length;n<r;n++)k.event.add(t,i,l[i][n]);J.hasData(e)&&(s=J.access(e),u=k.extend({},s),J.set(t,u))}}function Ie(n,r,i,o){r=g.apply([],r);var e,t,a,s,u,l,c=0,f=n.length,p=f-1,d=r[0],h=m(d);if(h||1<f&&"string"==typeof d&&!y.checkClone&&Le.test(d))return n.each(function(e){var t=n.eq(e);h&&(r[0]=d.call(this,e,t.html())),Ie(t,r,i,o)});if(f&&(t=(e=we(r,n[0].ownerDocument,!1,n,o)).firstChild,1===e.childNodes.length&&(e=t),t||o)){for(s=(a=k.map(ve(e,"script"),Pe)).length;c<f;c++)u=e,c!==p&&(u=k.clone(u,!0,!0),s&&k.merge(a,ve(u,"script"))),i.call(n[c],u,c);if(s)for(l=a[a.length-1].ownerDocument,k.map(a,Re),c=0;c<s;c++)u=a[c],he.test(u.type||"")&&!Q.access(u,"globalEval")&&k.contains(l,u)&&(u.src&&"module"!==(u.type||"").toLowerCase()?k._evalUrl&&!u.noModule&&k._evalUrl(u.src,{nonce:u.nonce||u.getAttribute("nonce")}):b(u.textContent.replace(He,""),u,l))}return n}function We(e,t,n){for(var r,i=t?k.filter(t,e):e,o=0;null!=(r=i[o]);o++)n||1!==r.nodeType||k.cleanData(ve(r)),r.parentNode&&(n&&oe(r)&&ye(ve(r,"script")),r.parentNode.removeChild(r));return e}k.extend({htmlPrefilter:function(e){return e.replace(je,"<$1></$2>")},clone:function(e,t,n){var r,i,o,a,s,u,l,c=e.cloneNode(!0),f=oe(e);if(!(y.noCloneChecked||1!==e.nodeType&&11!==e.nodeType||k.isXMLDoc(e)))for(a=ve(c),r=0,i=(o=ve(e)).length;r<i;r++)s=o[r],u=a[r],void 0,"input"===(l=u.nodeName.toLowerCase())&&pe.test(s.type)?u.checked=s.checked:"input"!==l&&"textarea"!==l||(u.defaultValue=s.defaultValue);if(t)if(n)for(o=o||ve(e),a=a||ve(c),r=0,i=o.length;r<i;r++)Me(o[r],a[r]);else Me(e,c);return 0<(a=ve(c,"script")).length&&ye(a,!f&&ve(e,"script")),c},cleanData:function(e){for(var t,n,r,i=k.event.special,o=0;void 0!==(n=e[o]);o++)if(G(n)){if(t=n[Q.expando]){if(t.events)for(r in t.events)i[r]?k.event.remove(n,r):k.removeEvent(n,r,t.handle);n[Q.expando]=void 0}n[J.expando]&&(n[J.expando]=void 0)}}}),k.fn.extend({detach:function(e){return We(this,e,!0)},remove:function(e){return We(this,e)},text:function(e){return _(this,function(e){return void 0===e?k.text(this):this.empty().each(function(){1!==this.nodeType&&11!==this.nodeType&&9!==this.nodeType||(this.textContent=e)})},null,e,arguments.length)},append:function(){return Ie(this,arguments,function(e){1!==this.nodeType&&11!==this.nodeType&&9!==this.nodeType||Oe(this,e).appendChild(e)})},prepend:function(){return Ie(this,arguments,function(e){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var t=Oe(this,e);t.insertBefore(e,t.firstChild)}})},before:function(){return Ie(this,arguments,function(e){this.parentNode&&this.parentNode.insertBefore(e,this)})},after:function(){return Ie(this,arguments,function(e){this.parentNode&&this.parentNode.insertBefore(e,this.nextSibling)})},empty:function(){for(var e,t=0;null!=(e=this[t]);t++)1===e.nodeType&&(k.cleanData(ve(e,!1)),e.textContent="");return this},clone:function(e,t){return e=null!=e&&e,t=null==t?e:t,this.map(function(){return k.clone(this,e,t)})},html:function(e){return _(this,function(e){var t=this[0]||{},n=0,r=this.length;if(void 0===e&&1===t.nodeType)return t.innerHTML;if("string"==typeof e&&!qe.test(e)&&!ge[(de.exec(e)||["",""])[1].toLowerCase()]){e=k.htmlPrefilter(e);try{for(;n<r;n++)1===(t=this[n]||{}).nodeType&&(k.cleanData(ve(t,!1)),t.innerHTML=e);t=0}catch(e){}}t&&this.empty().append(e)},null,e,arguments.length)},replaceWith:function(){var n=[];return Ie(this,arguments,function(e){var t=this.parentNode;k.inArray(this,n)<0&&(k.cleanData(ve(this)),t&&t.replaceChild(e,this))},n)}}),k.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(e,a){k.fn[e]=function(e){for(var t,n=[],r=k(e),i=r.length-1,o=0;o<=i;o++)t=o===i?this:this.clone(!0),k(r[o])[a](t),u.apply(n,t.get());return this.pushStack(n)}});var $e=new RegExp("^("+te+")(?!px)[a-z%]+$","i"),Fe=function(e){var t=e.ownerDocument.defaultView;return t&&t.opener||(t=C),t.getComputedStyle(e)},Be=new RegExp(re.join("|"),"i");function _e(e,t,n){var r,i,o,a,s=e.style;return(n=n||Fe(e))&&(""!==(a=n.getPropertyValue(t)||n[t])||oe(e)||(a=k.style(e,t)),!y.pixelBoxStyles()&&$e.test(a)&&Be.test(t)&&(r=s.width,i=s.minWidth,o=s.maxWidth,s.minWidth=s.maxWidth=s.width=a,a=n.width,s.width=r,s.minWidth=i,s.maxWidth=o)),void 0!==a?a+"":a}function ze(e,t){return{get:function(){if(!e())return(this.get=t).apply(this,arguments);delete this.get}}}!function(){function e(){if(u){s.style.cssText="position:absolute;left:-11111px;width:60px;margin-top:1px;padding:0;border:0",u.style.cssText="position:relative;display:block;box-sizing:border-box;overflow:scroll;margin:auto;border:1px;padding:1px;width:60%;top:1%",ie.appendChild(s).appendChild(u);var e=C.getComputedStyle(u);n="1%"!==e.top,a=12===t(e.marginLeft),u.style.right="60%",o=36===t(e.right),r=36===t(e.width),u.style.position="absolute",i=12===t(u.offsetWidth/3),ie.removeChild(s),u=null}}function t(e){return Math.round(parseFloat(e))}var n,r,i,o,a,s=E.createElement("div"),u=E.createElement("div");u.style&&(u.style.backgroundClip="content-box",u.cloneNode(!0).style.backgroundClip="",y.clearCloneStyle="content-box"===u.style.backgroundClip,k.extend(y,{boxSizingReliable:function(){return e(),r},pixelBoxStyles:function(){return e(),o},pixelPosition:function(){return e(),n},reliableMarginLeft:function(){return e(),a},scrollboxSize:function(){return e(),i}}))}();var Ue=["Webkit","Moz","ms"],Xe=E.createElement("div").style,Ve={};function Ge(e){var t=k.cssProps[e]||Ve[e];return t||(e in Xe?e:Ve[e]=function(e){var t=e[0].toUpperCase()+e.slice(1),n=Ue.length;while(n--)if((e=Ue[n]+t)in Xe)return e}(e)||e)}var Ye=/^(none|table(?!-c[ea]).+)/,Qe=/^--/,Je={position:"absolute",visibility:"hidden",display:"block"},Ke={letterSpacing:"0",fontWeight:"400"};function Ze(e,t,n){var r=ne.exec(t);return r?Math.max(0,r[2]-(n||0))+(r[3]||"px"):t}function et(e,t,n,r,i,o){var a="width"===t?1:0,s=0,u=0;if(n===(r?"border":"content"))return 0;for(;a<4;a+=2)"margin"===n&&(u+=k.css(e,n+re[a],!0,i)),r?("content"===n&&(u-=k.css(e,"padding"+re[a],!0,i)),"margin"!==n&&(u-=k.css(e,"border"+re[a]+"Width",!0,i))):(u+=k.css(e,"padding"+re[a],!0,i),"padding"!==n?u+=k.css(e,"border"+re[a]+"Width",!0,i):s+=k.css(e,"border"+re[a]+"Width",!0,i));return!r&&0<=o&&(u+=Math.max(0,Math.ceil(e["offset"+t[0].toUpperCase()+t.slice(1)]-o-u-s-.5))||0),u}function tt(e,t,n){var r=Fe(e),i=(!y.boxSizingReliable()||n)&&"border-box"===k.css(e,"boxSizing",!1,r),o=i,a=_e(e,t,r),s="offset"+t[0].toUpperCase()+t.slice(1);if($e.test(a)){if(!n)return a;a="auto"}return(!y.boxSizingReliable()&&i||"auto"===a||!parseFloat(a)&&"inline"===k.css(e,"display",!1,r))&&e.getClientRects().length&&(i="border-box"===k.css(e,"boxSizing",!1,r),(o=s in e)&&(a=e[s])),(a=parseFloat(a)||0)+et(e,t,n||(i?"border":"content"),o,r,a)+"px"}function nt(e,t,n,r,i){return new nt.prototype.init(e,t,n,r,i)}k.extend({cssHooks:{opacity:{get:function(e,t){if(t){var n=_e(e,"opacity");return""===n?"1":n}}}},cssNumber:{animationIterationCount:!0,columnCount:!0,fillOpacity:!0,flexGrow:!0,flexShrink:!0,fontWeight:!0,gridArea:!0,gridColumn:!0,gridColumnEnd:!0,gridColumnStart:!0,gridRow:!0,gridRowEnd:!0,gridRowStart:!0,lineHeight:!0,opacity:!0,order:!0,orphans:!0,widows:!0,zIndex:!0,zoom:!0},cssProps:{},style:function(e,t,n,r){if(e&&3!==e.nodeType&&8!==e.nodeType&&e.style){var i,o,a,s=V(t),u=Qe.test(t),l=e.style;if(u||(t=Ge(s)),a=k.cssHooks[t]||k.cssHooks[s],void 0===n)return a&&"get"in a&&void 0!==(i=a.get(e,!1,r))?i:l[t];"string"===(o=typeof n)&&(i=ne.exec(n))&&i[1]&&(n=le(e,t,i),o="number"),null!=n&&n==n&&("number"!==o||u||(n+=i&&i[3]||(k.cssNumber[s]?"":"px")),y.clearCloneStyle||""!==n||0!==t.indexOf("background")||(l[t]="inherit"),a&&"set"in a&&void 0===(n=a.set(e,n,r))||(u?l.setProperty(t,n):l[t]=n))}},css:function(e,t,n,r){var i,o,a,s=V(t);return Qe.test(t)||(t=Ge(s)),(a=k.cssHooks[t]||k.cssHooks[s])&&"get"in a&&(i=a.get(e,!0,n)),void 0===i&&(i=_e(e,t,r)),"normal"===i&&t in Ke&&(i=Ke[t]),""===n||n?(o=parseFloat(i),!0===n||isFinite(o)?o||0:i):i}}),k.each(["height","width"],function(e,u){k.cssHooks[u]={get:function(e,t,n){if(t)return!Ye.test(k.css(e,"display"))||e.getClientRects().length&&e.getBoundingClientRect().width?tt(e,u,n):ue(e,Je,function(){return tt(e,u,n)})},set:function(e,t,n){var r,i=Fe(e),o=!y.scrollboxSize()&&"absolute"===i.position,a=(o||n)&&"border-box"===k.css(e,"boxSizing",!1,i),s=n?et(e,u,n,a,i):0;return a&&o&&(s-=Math.ceil(e["offset"+u[0].toUpperCase()+u.slice(1)]-parseFloat(i[u])-et(e,u,"border",!1,i)-.5)),s&&(r=ne.exec(t))&&"px"!==(r[3]||"px")&&(e.style[u]=t,t=k.css(e,u)),Ze(0,t,s)}}}),k.cssHooks.marginLeft=ze(y.reliableMarginLeft,function(e,t){if(t)return(parseFloat(_e(e,"marginLeft"))||e.getBoundingClientRect().left-ue(e,{marginLeft:0},function(){return e.getBoundingClientRect().left}))+"px"}),k.each({margin:"",padding:"",border:"Width"},function(i,o){k.cssHooks[i+o]={expand:function(e){for(var t=0,n={},r="string"==typeof e?e.split(" "):[e];t<4;t++)n[i+re[t]+o]=r[t]||r[t-2]||r[0];return n}},"margin"!==i&&(k.cssHooks[i+o].set=Ze)}),k.fn.extend({css:function(e,t){return _(this,function(e,t,n){var r,i,o={},a=0;if(Array.isArray(t)){for(r=Fe(e),i=t.length;a<i;a++)o[t[a]]=k.css(e,t[a],!1,r);return o}return void 0!==n?k.style(e,t,n):k.css(e,t)},e,t,1<arguments.length)}}),((k.Tween=nt).prototype={constructor:nt,init:function(e,t,n,r,i,o){this.elem=e,this.prop=n,this.easing=i||k.easing._default,this.options=t,this.start=this.now=this.cur(),this.end=r,this.unit=o||(k.cssNumber[n]?"":"px")},cur:function(){var e=nt.propHooks[this.prop];return e&&e.get?e.get(this):nt.propHooks._default.get(this)},run:function(e){var t,n=nt.propHooks[this.prop];return this.options.duration?this.pos=t=k.easing[this.easing](e,this.options.duration*e,0,1,this.options.duration):this.pos=t=e,this.now=(this.end-this.start)*t+this.start,this.options.step&&this.options.step.call(this.elem,this.now,this),n&&n.set?n.set(this):nt.propHooks._default.set(this),this}}).init.prototype=nt.prototype,(nt.propHooks={_default:{get:function(e){var t;return 1!==e.elem.nodeType||null!=e.elem[e.prop]&&null==e.elem.style[e.prop]?e.elem[e.prop]:(t=k.css(e.elem,e.prop,""))&&"auto"!==t?t:0},set:function(e){k.fx.step[e.prop]?k.fx.step[e.prop](e):1!==e.elem.nodeType||!k.cssHooks[e.prop]&&null==e.elem.style[Ge(e.prop)]?e.elem[e.prop]=e.now:k.style(e.elem,e.prop,e.now+e.unit)}}}).scrollTop=nt.propHooks.scrollLeft={set:function(e){e.elem.nodeType&&e.elem.parentNode&&(e.elem[e.prop]=e.now)}},k.easing={linear:function(e){return e},swing:function(e){return.5-Math.cos(e*Math.PI)/2},_default:"swing"},k.fx=nt.prototype.init,k.fx.step={};var rt,it,ot,at,st=/^(?:toggle|show|hide)$/,ut=/queueHooks$/;function lt(){it&&(!1===E.hidden&&C.requestAnimationFrame?C.requestAnimationFrame(lt):C.setTimeout(lt,k.fx.interval),k.fx.tick())}function ct(){return C.setTimeout(function(){rt=void 0}),rt=Date.now()}function ft(e,t){var n,r=0,i={height:e};for(t=t?1:0;r<4;r+=2-t)i["margin"+(n=re[r])]=i["padding"+n]=e;return t&&(i.opacity=i.width=e),i}function pt(e,t,n){for(var r,i=(dt.tweeners[t]||[]).concat(dt.tweeners["*"]),o=0,a=i.length;o<a;o++)if(r=i[o].call(n,t,e))return r}function dt(o,e,t){var n,a,r=0,i=dt.prefilters.length,s=k.Deferred().always(function(){delete u.elem}),u=function(){if(a)return!1;for(var e=rt||ct(),t=Math.max(0,l.startTime+l.duration-e),n=1-(t/l.duration||0),r=0,i=l.tweens.length;r<i;r++)l.tweens[r].run(n);return s.notifyWith(o,[l,n,t]),n<1&&i?t:(i||s.notifyWith(o,[l,1,0]),s.resolveWith(o,[l]),!1)},l=s.promise({elem:o,props:k.extend({},e),opts:k.extend(!0,{specialEasing:{},easing:k.easing._default},t),originalProperties:e,originalOptions:t,startTime:rt||ct(),duration:t.duration,tweens:[],createTween:function(e,t){var n=k.Tween(o,l.opts,e,t,l.opts.specialEasing[e]||l.opts.easing);return l.tweens.push(n),n},stop:function(e){var t=0,n=e?l.tweens.length:0;if(a)return this;for(a=!0;t<n;t++)l.tweens[t].run(1);return e?(s.notifyWith(o,[l,1,0]),s.resolveWith(o,[l,e])):s.rejectWith(o,[l,e]),this}}),c=l.props;for(!function(e,t){var n,r,i,o,a;for(n in e)if(i=t[r=V(n)],o=e[n],Array.isArray(o)&&(i=o[1],o=e[n]=o[0]),n!==r&&(e[r]=o,delete e[n]),(a=k.cssHooks[r])&&"expand"in a)for(n in o=a.expand(o),delete e[r],o)n in e||(e[n]=o[n],t[n]=i);else t[r]=i}(c,l.opts.specialEasing);r<i;r++)if(n=dt.prefilters[r].call(l,o,c,l.opts))return m(n.stop)&&(k._queueHooks(l.elem,l.opts.queue).stop=n.stop.bind(n)),n;return k.map(c,pt,l),m(l.opts.start)&&l.opts.start.call(o,l),l.progress(l.opts.progress).done(l.opts.done,l.opts.complete).fail(l.opts.fail).always(l.opts.always),k.fx.timer(k.extend(u,{elem:o,anim:l,queue:l.opts.queue})),l}k.Animation=k.extend(dt,{tweeners:{"*":[function(e,t){var n=this.createTween(e,t);return le(n.elem,e,ne.exec(t),n),n}]},tweener:function(e,t){m(e)?(t=e,e=["*"]):e=e.match(R);for(var n,r=0,i=e.length;r<i;r++)n=e[r],dt.tweeners[n]=dt.tweeners[n]||[],dt.tweeners[n].unshift(t)},prefilters:[function(e,t,n){var r,i,o,a,s,u,l,c,f="width"in t||"height"in t,p=this,d={},h=e.style,g=e.nodeType&&se(e),v=Q.get(e,"fxshow");for(r in n.queue||(null==(a=k._queueHooks(e,"fx")).unqueued&&(a.unqueued=0,s=a.empty.fire,a.empty.fire=function(){a.unqueued||s()}),a.unqueued++,p.always(function(){p.always(function(){a.unqueued--,k.queue(e,"fx").length||a.empty.fire()})})),t)if(i=t[r],st.test(i)){if(delete t[r],o=o||"toggle"===i,i===(g?"hide":"show")){if("show"!==i||!v||void 0===v[r])continue;g=!0}d[r]=v&&v[r]||k.style(e,r)}if((u=!k.isEmptyObject(t))||!k.isEmptyObject(d))for(r in f&&1===e.nodeType&&(n.overflow=[h.overflow,h.overflowX,h.overflowY],null==(l=v&&v.display)&&(l=Q.get(e,"display")),"none"===(c=k.css(e,"display"))&&(l?c=l:(fe([e],!0),l=e.style.display||l,c=k.css(e,"display"),fe([e]))),("inline"===c||"inline-block"===c&&null!=l)&&"none"===k.css(e,"float")&&(u||(p.done(function(){h.display=l}),null==l&&(c=h.display,l="none"===c?"":c)),h.display="inline-block")),n.overflow&&(h.overflow="hidden",p.always(function(){h.overflow=n.overflow[0],h.overflowX=n.overflow[1],h.overflowY=n.overflow[2]})),u=!1,d)u||(v?"hidden"in v&&(g=v.hidden):v=Q.access(e,"fxshow",{display:l}),o&&(v.hidden=!g),g&&fe([e],!0),p.done(function(){for(r in g||fe([e]),Q.remove(e,"fxshow"),d)k.style(e,r,d[r])})),u=pt(g?v[r]:0,r,p),r in v||(v[r]=u.start,g&&(u.end=u.start,u.start=0))}],prefilter:function(e,t){t?dt.prefilters.unshift(e):dt.prefilters.push(e)}}),k.speed=function(e,t,n){var r=e&&"object"==typeof e?k.extend({},e):{complete:n||!n&&t||m(e)&&e,duration:e,easing:n&&t||t&&!m(t)&&t};return k.fx.off?r.duration=0:"number"!=typeof r.duration&&(r.duration in k.fx.speeds?r.duration=k.fx.speeds[r.duration]:r.duration=k.fx.speeds._default),null!=r.queue&&!0!==r.queue||(r.queue="fx"),r.old=r.complete,r.complete=function(){m(r.old)&&r.old.call(this),r.queue&&k.dequeue(this,r.queue)},r},k.fn.extend({fadeTo:function(e,t,n,r){return this.filter(se).css("opacity",0).show().end().animate({opacity:t},e,n,r)},animate:function(t,e,n,r){var i=k.isEmptyObject(t),o=k.speed(e,n,r),a=function(){var e=dt(this,k.extend({},t),o);(i||Q.get(this,"finish"))&&e.stop(!0)};return a.finish=a,i||!1===o.queue?this.each(a):this.queue(o.queue,a)},stop:function(i,e,o){var a=function(e){var t=e.stop;delete e.stop,t(o)};return"string"!=typeof i&&(o=e,e=i,i=void 0),e&&!1!==i&&this.queue(i||"fx",[]),this.each(function(){var e=!0,t=null!=i&&i+"queueHooks",n=k.timers,r=Q.get(this);if(t)r[t]&&r[t].stop&&a(r[t]);else for(t in r)r[t]&&r[t].stop&&ut.test(t)&&a(r[t]);for(t=n.length;t--;)n[t].elem!==this||null!=i&&n[t].queue!==i||(n[t].anim.stop(o),e=!1,n.splice(t,1));!e&&o||k.dequeue(this,i)})},finish:function(a){return!1!==a&&(a=a||"fx"),this.each(function(){var e,t=Q.get(this),n=t[a+"queue"],r=t[a+"queueHooks"],i=k.timers,o=n?n.length:0;for(t.finish=!0,k.queue(this,a,[]),r&&r.stop&&r.stop.call(this,!0),e=i.length;e--;)i[e].elem===this&&i[e].queue===a&&(i[e].anim.stop(!0),i.splice(e,1));for(e=0;e<o;e++)n[e]&&n[e].finish&&n[e].finish.call(this);delete t.finish})}}),k.each(["toggle","show","hide"],function(e,r){var i=k.fn[r];k.fn[r]=function(e,t,n){return null==e||"boolean"==typeof e?i.apply(this,arguments):this.animate(ft(r,!0),e,t,n)}}),k.each({slideDown:ft("show"),slideUp:ft("hide"),slideToggle:ft("toggle"),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"},fadeToggle:{opacity:"toggle"}},function(e,r){k.fn[e]=function(e,t,n){return this.animate(r,e,t,n)}}),k.timers=[],k.fx.tick=function(){var e,t=0,n=k.timers;for(rt=Date.now();t<n.length;t++)(e=n[t])()||n[t]!==e||n.splice(t--,1);n.length||k.fx.stop(),rt=void 0},k.fx.timer=function(e){k.timers.push(e),k.fx.start()},k.fx.interval=13,k.fx.start=function(){it||(it=!0,lt())},k.fx.stop=function(){it=null},k.fx.speeds={slow:600,fast:200,_default:400},k.fn.delay=function(r,e){return r=k.fx&&k.fx.speeds[r]||r,e=e||"fx",this.queue(e,function(e,t){var n=C.setTimeout(e,r);t.stop=function(){C.clearTimeout(n)}})},ot=E.createElement("input"),at=E.createElement("select").appendChild(E.createElement("option")),ot.type="checkbox",y.checkOn=""!==ot.value,y.optSelected=at.selected,(ot=E.createElement("input")).value="t",ot.type="radio",y.radioValue="t"===ot.value;var ht,gt=k.expr.attrHandle;k.fn.extend({attr:function(e,t){return _(this,k.attr,e,t,1<arguments.length)},removeAttr:function(e){return this.each(function(){k.removeAttr(this,e)})}}),k.extend({attr:function(e,t,n){var r,i,o=e.nodeType;if(3!==o&&8!==o&&2!==o)return"undefined"==typeof e.getAttribute?k.prop(e,t,n):(1===o&&k.isXMLDoc(e)||(i=k.attrHooks[t.toLowerCase()]||(k.expr.match.bool.test(t)?ht:void 0)),void 0!==n?null===n?void k.removeAttr(e,t):i&&"set"in i&&void 0!==(r=i.set(e,n,t))?r:(e.setAttribute(t,n+""),n):i&&"get"in i&&null!==(r=i.get(e,t))?r:null==(r=k.find.attr(e,t))?void 0:r)},attrHooks:{type:{set:function(e,t){if(!y.radioValue&&"radio"===t&&A(e,"input")){var n=e.value;return e.setAttribute("type",t),n&&(e.value=n),t}}}},removeAttr:function(e,t){var n,r=0,i=t&&t.match(R);if(i&&1===e.nodeType)while(n=i[r++])e.removeAttribute(n)}}),ht={set:function(e,t,n){return!1===t?k.removeAttr(e,n):e.setAttribute(n,n),n}},k.each(k.expr.match.bool.source.match(/\w+/g),function(e,t){var a=gt[t]||k.find.attr;gt[t]=function(e,t,n){var r,i,o=t.toLowerCase();return n||(i=gt[o],gt[o]=r,r=null!=a(e,t,n)?o:null,gt[o]=i),r}});var vt=/^(?:input|select|textarea|button)$/i,yt=/^(?:a|area)$/i;function mt(e){return(e.match(R)||[]).join(" ")}function xt(e){return e.getAttribute&&e.getAttribute("class")||""}function bt(e){return Array.isArray(e)?e:"string"==typeof e&&e.match(R)||[]}k.fn.extend({prop:function(e,t){return _(this,k.prop,e,t,1<arguments.length)},removeProp:function(e){return this.each(function(){delete this[k.propFix[e]||e]})}}),k.extend({prop:function(e,t,n){var r,i,o=e.nodeType;if(3!==o&&8!==o&&2!==o)return 1===o&&k.isXMLDoc(e)||(t=k.propFix[t]||t,i=k.propHooks[t]),void 0!==n?i&&"set"in i&&void 0!==(r=i.set(e,n,t))?r:e[t]=n:i&&"get"in i&&null!==(r=i.get(e,t))?r:e[t]},propHooks:{tabIndex:{get:function(e){var t=k.find.attr(e,"tabindex");return t?parseInt(t,10):vt.test(e.nodeName)||yt.test(e.nodeName)&&e.href?0:-1}}},propFix:{"for":"htmlFor","class":"className"}}),y.optSelected||(k.propHooks.selected={get:function(e){var t=e.parentNode;return t&&t.parentNode&&t.parentNode.selectedIndex,null},set:function(e){var t=e.parentNode;t&&(t.selectedIndex,t.parentNode&&t.parentNode.selectedIndex)}}),k.each(["tabIndex","readOnly","maxLength","cellSpacing","cellPadding","rowSpan","colSpan","useMap","frameBorder","contentEditable"],function(){k.propFix[this.toLowerCase()]=this}),k.fn.extend({addClass:function(t){var e,n,r,i,o,a,s,u=0;if(m(t))return this.each(function(e){k(this).addClass(t.call(this,e,xt(this)))});if((e=bt(t)).length)while(n=this[u++])if(i=xt(n),r=1===n.nodeType&&" "+mt(i)+" "){a=0;while(o=e[a++])r.indexOf(" "+o+" ")<0&&(r+=o+" ");i!==(s=mt(r))&&n.setAttribute("class",s)}return this},removeClass:function(t){var e,n,r,i,o,a,s,u=0;if(m(t))return this.each(function(e){k(this).removeClass(t.call(this,e,xt(this)))});if(!arguments.length)return this.attr("class","");if((e=bt(t)).length)while(n=this[u++])if(i=xt(n),r=1===n.nodeType&&" "+mt(i)+" "){a=0;while(o=e[a++])while(-1<r.indexOf(" "+o+" "))r=r.replace(" "+o+" "," ");i!==(s=mt(r))&&n.setAttribute("class",s)}return this},toggleClass:function(i,t){var o=typeof i,a="string"===o||Array.isArray(i);return"boolean"==typeof t&&a?t?this.addClass(i):this.removeClass(i):m(i)?this.each(function(e){k(this).toggleClass(i.call(this,e,xt(this),t),t)}):this.each(function(){var e,t,n,r;if(a){t=0,n=k(this),r=bt(i);while(e=r[t++])n.hasClass(e)?n.removeClass(e):n.addClass(e)}else void 0!==i&&"boolean"!==o||((e=xt(this))&&Q.set(this,"__className__",e),this.setAttribute&&this.setAttribute("class",e||!1===i?"":Q.get(this,"__className__")||""))})},hasClass:function(e){var t,n,r=0;t=" "+e+" ";while(n=this[r++])if(1===n.nodeType&&-1<(" "+mt(xt(n))+" ").indexOf(t))return!0;return!1}});var wt=/\r/g;k.fn.extend({val:function(n){var r,e,i,t=this[0];return arguments.length?(i=m(n),this.each(function(e){var t;1===this.nodeType&&(null==(t=i?n.call(this,e,k(this).val()):n)?t="":"number"==typeof t?t+="":Array.isArray(t)&&(t=k.map(t,function(e){return null==e?"":e+""})),(r=k.valHooks[this.type]||k.valHooks[this.nodeName.toLowerCase()])&&"set"in r&&void 0!==r.set(this,t,"value")||(this.value=t))})):t?(r=k.valHooks[t.type]||k.valHooks[t.nodeName.toLowerCase()])&&"get"in r&&void 0!==(e=r.get(t,"value"))?e:"string"==typeof(e=t.value)?e.replace(wt,""):null==e?"":e:void 0}}),k.extend({valHooks:{option:{get:function(e){var t=k.find.attr(e,"value");return null!=t?t:mt(k.text(e))}},select:{get:function(e){var t,n,r,i=e.options,o=e.selectedIndex,a="select-one"===e.type,s=a?null:[],u=a?o+1:i.length;for(r=o<0?u:a?o:0;r<u;r++)if(((n=i[r]).selected||r===o)&&!n.disabled&&(!n.parentNode.disabled||!A(n.parentNode,"optgroup"))){if(t=k(n).val(),a)return t;s.push(t)}return s},set:function(e,t){var n,r,i=e.options,o=k.makeArray(t),a=i.length;while(a--)((r=i[a]).selected=-1<k.inArray(k.valHooks.option.get(r),o))&&(n=!0);return n||(e.selectedIndex=-1),o}}}}),k.each(["radio","checkbox"],function(){k.valHooks[this]={set:function(e,t){if(Array.isArray(t))return e.checked=-1<k.inArray(k(e).val(),t)}},y.checkOn||(k.valHooks[this].get=function(e){return null===e.getAttribute("value")?"on":e.value})}),y.focusin="onfocusin"in C;var Tt=/^(?:focusinfocus|focusoutblur)$/,Ct=function(e){e.stopPropagation()};k.extend(k.event,{trigger:function(e,t,n,r){var i,o,a,s,u,l,c,f,p=[n||E],d=v.call(e,"type")?e.type:e,h=v.call(e,"namespace")?e.namespace.split("."):[];if(o=f=a=n=n||E,3!==n.nodeType&&8!==n.nodeType&&!Tt.test(d+k.event.triggered)&&(-1<d.indexOf(".")&&(d=(h=d.split(".")).shift(),h.sort()),u=d.indexOf(":")<0&&"on"+d,(e=e[k.expando]?e:new k.Event(d,"object"==typeof e&&e)).isTrigger=r?2:3,e.namespace=h.join("."),e.rnamespace=e.namespace?new RegExp("(^|\\.)"+h.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,e.result=void 0,e.target||(e.target=n),t=null==t?[e]:k.makeArray(t,[e]),c=k.event.special[d]||{},r||!c.trigger||!1!==c.trigger.apply(n,t))){if(!r&&!c.noBubble&&!x(n)){for(s=c.delegateType||d,Tt.test(s+d)||(o=o.parentNode);o;o=o.parentNode)p.push(o),a=o;a===(n.ownerDocument||E)&&p.push(a.defaultView||a.parentWindow||C)}i=0;while((o=p[i++])&&!e.isPropagationStopped())f=o,e.type=1<i?s:c.bindType||d,(l=(Q.get(o,"events")||{})[e.type]&&Q.get(o,"handle"))&&l.apply(o,t),(l=u&&o[u])&&l.apply&&G(o)&&(e.result=l.apply(o,t),!1===e.result&&e.preventDefault());return e.type=d,r||e.isDefaultPrevented()||c._default&&!1!==c._default.apply(p.pop(),t)||!G(n)||u&&m(n[d])&&!x(n)&&((a=n[u])&&(n[u]=null),k.event.triggered=d,e.isPropagationStopped()&&f.addEventListener(d,Ct),n[d](),e.isPropagationStopped()&&f.removeEventListener(d,Ct),k.event.triggered=void 0,a&&(n[u]=a)),e.result}},simulate:function(e,t,n){var r=k.extend(new k.Event,n,{type:e,isSimulated:!0});k.event.trigger(r,null,t)}}),k.fn.extend({trigger:function(e,t){return this.each(function(){k.event.trigger(e,t,this)})},triggerHandler:function(e,t){var n=this[0];if(n)return k.event.trigger(e,t,n,!0)}}),y.focusin||k.each({focus:"focusin",blur:"focusout"},function(n,r){var i=function(e){k.event.simulate(r,e.target,k.event.fix(e))};k.event.special[r]={setup:function(){var e=this.ownerDocument||this,t=Q.access(e,r);t||e.addEventListener(n,i,!0),Q.access(e,r,(t||0)+1)},teardown:function(){var e=this.ownerDocument||this,t=Q.access(e,r)-1;t?Q.access(e,r,t):(e.removeEventListener(n,i,!0),Q.remove(e,r))}}});var Et=C.location,kt=Date.now(),St=/\?/;k.parseXML=function(e){var t;if(!e||"string"!=typeof e)return null;try{t=(new C.DOMParser).parseFromString(e,"text/xml")}catch(e){t=void 0}return t&&!t.getElementsByTagName("parsererror").length||k.error("Invalid XML: "+e),t};var Nt=/\[\]$/,At=/\r?\n/g,Dt=/^(?:submit|button|image|reset|file)$/i,jt=/^(?:input|select|textarea|keygen)/i;function qt(n,e,r,i){var t;if(Array.isArray(e))k.each(e,function(e,t){r||Nt.test(n)?i(n,t):qt(n+"["+("object"==typeof t&&null!=t?e:"")+"]",t,r,i)});else if(r||"object"!==w(e))i(n,e);else for(t in e)qt(n+"["+t+"]",e[t],r,i)}k.param=function(e,t){var n,r=[],i=function(e,t){var n=m(t)?t():t;r[r.length]=encodeURIComponent(e)+"="+encodeURIComponent(null==n?"":n)};if(null==e)return"";if(Array.isArray(e)||e.jquery&&!k.isPlainObject(e))k.each(e,function(){i(this.name,this.value)});else for(n in e)qt(n,e[n],t,i);return r.join("&")},k.fn.extend({serialize:function(){return k.param(this.serializeArray())},serializeArray:function(){return this.map(function(){var e=k.prop(this,"elements");return e?k.makeArray(e):this}).filter(function(){var e=this.type;return this.name&&!k(this).is(":disabled")&&jt.test(this.nodeName)&&!Dt.test(e)&&(this.checked||!pe.test(e))}).map(function(e,t){var n=k(this).val();return null==n?null:Array.isArray(n)?k.map(n,function(e){return{name:t.name,value:e.replace(At,"\r\n")}}):{name:t.name,value:n.replace(At,"\r\n")}}).get()}});var Lt=/%20/g,Ht=/#.*$/,Ot=/([?&])_=[^&]*/,Pt=/^(.*?):[ \t]*([^\r\n]*)$/gm,Rt=/^(?:GET|HEAD)$/,Mt=/^\/\//,It={},Wt={},$t="*/".concat("*"),Ft=E.createElement("a");function Bt(o){return function(e,t){"string"!=typeof e&&(t=e,e="*");var n,r=0,i=e.toLowerCase().match(R)||[];if(m(t))while(n=i[r++])"+"===n[0]?(n=n.slice(1)||"*",(o[n]=o[n]||[]).unshift(t)):(o[n]=o[n]||[]).push(t)}}function _t(t,i,o,a){var s={},u=t===Wt;function l(e){var r;return s[e]=!0,k.each(t[e]||[],function(e,t){var n=t(i,o,a);return"string"!=typeof n||u||s[n]?u?!(r=n):void 0:(i.dataTypes.unshift(n),l(n),!1)}),r}return l(i.dataTypes[0])||!s["*"]&&l("*")}function zt(e,t){var n,r,i=k.ajaxSettings.flatOptions||{};for(n in t)void 0!==t[n]&&((i[n]?e:r||(r={}))[n]=t[n]);return r&&k.extend(!0,e,r),e}Ft.href=Et.href,k.extend({active:0,lastModified:{},etag:{},ajaxSettings:{url:Et.href,type:"GET",isLocal:/^(?:about|app|app-storage|.+-extension|file|res|widget):$/.test(Et.protocol),global:!0,processData:!0,async:!0,contentType:"application/x-www-form-urlencoded; charset=UTF-8",accepts:{"*":$t,text:"text/plain",html:"text/html",xml:"application/xml, text/xml",json:"application/json, text/javascript"},contents:{xml:/\bxml\b/,html:/\bhtml/,json:/\bjson\b/},responseFields:{xml:"responseXML",text:"responseText",json:"responseJSON"},converters:{"* text":String,"text html":!0,"text json":JSON.parse,"text xml":k.parseXML},flatOptions:{url:!0,context:!0}},ajaxSetup:function(e,t){return t?zt(zt(e,k.ajaxSettings),t):zt(k.ajaxSettings,e)},ajaxPrefilter:Bt(It),ajaxTransport:Bt(Wt),ajax:function(e,t){"object"==typeof e&&(t=e,e=void 0),t=t||{};var c,f,p,n,d,r,h,g,i,o,v=k.ajaxSetup({},t),y=v.context||v,m=v.context&&(y.nodeType||y.jquery)?k(y):k.event,x=k.Deferred(),b=k.Callbacks("once memory"),w=v.statusCode||{},a={},s={},u="canceled",T={readyState:0,getResponseHeader:function(e){var t;if(h){if(!n){n={};while(t=Pt.exec(p))n[t[1].toLowerCase()+" "]=(n[t[1].toLowerCase()+" "]||[]).concat(t[2])}t=n[e.toLowerCase()+" "]}return null==t?null:t.join(", ")},getAllResponseHeaders:function(){return h?p:null},setRequestHeader:function(e,t){return null==h&&(e=s[e.toLowerCase()]=s[e.toLowerCase()]||e,a[e]=t),this},overrideMimeType:function(e){return null==h&&(v.mimeType=e),this},statusCode:function(e){var t;if(e)if(h)T.always(e[T.status]);else for(t in e)w[t]=[w[t],e[t]];return this},abort:function(e){var t=e||u;return c&&c.abort(t),l(0,t),this}};if(x.promise(T),v.url=((e||v.url||Et.href)+"").replace(Mt,Et.protocol+"//"),v.type=t.method||t.type||v.method||v.type,v.dataTypes=(v.dataType||"*").toLowerCase().match(R)||[""],null==v.crossDomain){r=E.createElement("a");try{r.href=v.url,r.href=r.href,v.crossDomain=Ft.protocol+"//"+Ft.host!=r.protocol+"//"+r.host}catch(e){v.crossDomain=!0}}if(v.data&&v.processData&&"string"!=typeof v.data&&(v.data=k.param(v.data,v.traditional)),_t(It,v,t,T),h)return T;for(i in(g=k.event&&v.global)&&0==k.active++&&k.event.trigger("ajaxStart"),v.type=v.type.toUpperCase(),v.hasContent=!Rt.test(v.type),f=v.url.replace(Ht,""),v.hasContent?v.data&&v.processData&&0===(v.contentType||"").indexOf("application/x-www-form-urlencoded")&&(v.data=v.data.replace(Lt,"+")):(o=v.url.slice(f.length),v.data&&(v.processData||"string"==typeof v.data)&&(f+=(St.test(f)?"&":"?")+v.data,delete v.data),!1===v.cache&&(f=f.replace(Ot,"$1"),o=(St.test(f)?"&":"?")+"_="+kt+++o),v.url=f+o),v.ifModified&&(k.lastModified[f]&&T.setRequestHeader("If-Modified-Since",k.lastModified[f]),k.etag[f]&&T.setRequestHeader("If-None-Match",k.etag[f])),(v.data&&v.hasContent&&!1!==v.contentType||t.contentType)&&T.setRequestHeader("Content-Type",v.contentType),T.setRequestHeader("Accept",v.dataTypes[0]&&v.accepts[v.dataTypes[0]]?v.accepts[v.dataTypes[0]]+("*"!==v.dataTypes[0]?", "+$t+"; q=0.01":""):v.accepts["*"]),v.headers)T.setRequestHeader(i,v.headers[i]);if(v.beforeSend&&(!1===v.beforeSend.call(y,T,v)||h))return T.abort();if(u="abort",b.add(v.complete),T.done(v.success),T.fail(v.error),c=_t(Wt,v,t,T)){if(T.readyState=1,g&&m.trigger("ajaxSend",[T,v]),h)return T;v.async&&0<v.timeout&&(d=C.setTimeout(function(){T.abort("timeout")},v.timeout));try{h=!1,c.send(a,l)}catch(e){if(h)throw e;l(-1,e)}}else l(-1,"No Transport");function l(e,t,n,r){var i,o,a,s,u,l=t;h||(h=!0,d&&C.clearTimeout(d),c=void 0,p=r||"",T.readyState=0<e?4:0,i=200<=e&&e<300||304===e,n&&(s=function(e,t,n){var r,i,o,a,s=e.contents,u=e.dataTypes;while("*"===u[0])u.shift(),void 0===r&&(r=e.mimeType||t.getResponseHeader("Content-Type"));if(r)for(i in s)if(s[i]&&s[i].test(r)){u.unshift(i);break}if(u[0]in n)o=u[0];else{for(i in n){if(!u[0]||e.converters[i+" "+u[0]]){o=i;break}a||(a=i)}o=o||a}if(o)return o!==u[0]&&u.unshift(o),n[o]}(v,T,n)),s=function(e,t,n,r){var i,o,a,s,u,l={},c=e.dataTypes.slice();if(c[1])for(a in e.converters)l[a.toLowerCase()]=e.converters[a];o=c.shift();while(o)if(e.responseFields[o]&&(n[e.responseFields[o]]=t),!u&&r&&e.dataFilter&&(t=e.dataFilter(t,e.dataType)),u=o,o=c.shift())if("*"===o)o=u;else if("*"!==u&&u!==o){if(!(a=l[u+" "+o]||l["* "+o]))for(i in l)if((s=i.split(" "))[1]===o&&(a=l[u+" "+s[0]]||l["* "+s[0]])){!0===a?a=l[i]:!0!==l[i]&&(o=s[0],c.unshift(s[1]));break}if(!0!==a)if(a&&e["throws"])t=a(t);else try{t=a(t)}catch(e){return{state:"parsererror",error:a?e:"No conversion from "+u+" to "+o}}}return{state:"success",data:t}}(v,s,T,i),i?(v.ifModified&&((u=T.getResponseHeader("Last-Modified"))&&(k.lastModified[f]=u),(u=T.getResponseHeader("etag"))&&(k.etag[f]=u)),204===e||"HEAD"===v.type?l="nocontent":304===e?l="notmodified":(l=s.state,o=s.data,i=!(a=s.error))):(a=l,!e&&l||(l="error",e<0&&(e=0))),T.status=e,T.statusText=(t||l)+"",i?x.resolveWith(y,[o,l,T]):x.rejectWith(y,[T,l,a]),T.statusCode(w),w=void 0,g&&m.trigger(i?"ajaxSuccess":"ajaxError",[T,v,i?o:a]),b.fireWith(y,[T,l]),g&&(m.trigger("ajaxComplete",[T,v]),--k.active||k.event.trigger("ajaxStop")))}return T},getJSON:function(e,t,n){return k.get(e,t,n,"json")},getScript:function(e,t){return k.get(e,void 0,t,"script")}}),k.each(["get","post"],function(e,i){k[i]=function(e,t,n,r){return m(t)&&(r=r||n,n=t,t=void 0),k.ajax(k.extend({url:e,type:i,dataType:r,data:t,success:n},k.isPlainObject(e)&&e))}}),k._evalUrl=function(e,t){return k.ajax({url:e,type:"GET",dataType:"script",cache:!0,async:!1,global:!1,converters:{"text script":function(){}},dataFilter:function(e){k.globalEval(e,t)}})},k.fn.extend({wrapAll:function(e){var t;return this[0]&&(m(e)&&(e=e.call(this[0])),t=k(e,this[0].ownerDocument).eq(0).clone(!0),this[0].parentNode&&t.insertBefore(this[0]),t.map(function(){var e=this;while(e.firstElementChild)e=e.firstElementChild;return e}).append(this)),this},wrapInner:function(n){return m(n)?this.each(function(e){k(this).wrapInner(n.call(this,e))}):this.each(function(){var e=k(this),t=e.contents();t.length?t.wrapAll(n):e.append(n)})},wrap:function(t){var n=m(t);return this.each(function(e){k(this).wrapAll(n?t.call(this,e):t)})},unwrap:function(e){return this.parent(e).not("body").each(function(){k(this).replaceWith(this.childNodes)}),this}}),k.expr.pseudos.hidden=function(e){return!k.expr.pseudos.visible(e)},k.expr.pseudos.visible=function(e){return!!(e.offsetWidth||e.offsetHeight||e.getClientRects().length)},k.ajaxSettings.xhr=function(){try{return new C.XMLHttpRequest}catch(e){}};var Ut={0:200,1223:204},Xt=k.ajaxSettings.xhr();y.cors=!!Xt&&"withCredentials"in Xt,y.ajax=Xt=!!Xt,k.ajaxTransport(function(i){var o,a;if(y.cors||Xt&&!i.crossDomain)return{send:function(e,t){var n,r=i.xhr();if(r.open(i.type,i.url,i.async,i.username,i.password),i.xhrFields)for(n in i.xhrFields)r[n]=i.xhrFields[n];for(n in i.mimeType&&r.overrideMimeType&&r.overrideMimeType(i.mimeType),i.crossDomain||e["X-Requested-With"]||(e["X-Requested-With"]="XMLHttpRequest"),e)r.setRequestHeader(n,e[n]);o=function(e){return function(){o&&(o=a=r.onload=r.onerror=r.onabort=r.ontimeout=r.onreadystatechange=null,"abort"===e?r.abort():"error"===e?"number"!=typeof r.status?t(0,"error"):t(r.status,r.statusText):t(Ut[r.status]||r.status,r.statusText,"text"!==(r.responseType||"text")||"string"!=typeof r.responseText?{binary:r.response}:{text:r.responseText},r.getAllResponseHeaders()))}},r.onload=o(),a=r.onerror=r.ontimeout=o("error"),void 0!==r.onabort?r.onabort=a:r.onreadystatechange=function(){4===r.readyState&&C.setTimeout(function(){o&&a()})},o=o("abort");try{r.send(i.hasContent&&i.data||null)}catch(e){if(o)throw e}},abort:function(){o&&o()}}}),k.ajaxPrefilter(function(e){e.crossDomain&&(e.contents.script=!1)}),k.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/\b(?:java|ecma)script\b/},converters:{"text script":function(e){return k.globalEval(e),e}}}),k.ajaxPrefilter("script",function(e){void 0===e.cache&&(e.cache=!1),e.crossDomain&&(e.type="GET")}),k.ajaxTransport("script",function(n){var r,i;if(n.crossDomain||n.scriptAttrs)return{send:function(e,t){r=k("<script>").attr(n.scriptAttrs||{}).prop({charset:n.scriptCharset,src:n.url}).on("load error",i=function(e){r.remove(),i=null,e&&t("error"===e.type?404:200,e.type)}),E.head.appendChild(r[0])},abort:function(){i&&i()}}});var Vt,Gt=[],Yt=/(=)\?(?=&|$)|\?\?/;k.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var e=Gt.pop()||k.expando+"_"+kt++;return this[e]=!0,e}}),k.ajaxPrefilter("json jsonp",function(e,t,n){var r,i,o,a=!1!==e.jsonp&&(Yt.test(e.url)?"url":"string"==typeof e.data&&0===(e.contentType||"").indexOf("application/x-www-form-urlencoded")&&Yt.test(e.data)&&"data");if(a||"jsonp"===e.dataTypes[0])return r=e.jsonpCallback=m(e.jsonpCallback)?e.jsonpCallback():e.jsonpCallback,a?e[a]=e[a].replace(Yt,"$1"+r):!1!==e.jsonp&&(e.url+=(St.test(e.url)?"&":"?")+e.jsonp+"="+r),e.converters["script json"]=function(){return o||k.error(r+" was not called"),o[0]},e.dataTypes[0]="json",i=C[r],C[r]=function(){o=arguments},n.always(function(){void 0===i?k(C).removeProp(r):C[r]=i,e[r]&&(e.jsonpCallback=t.jsonpCallback,Gt.push(r)),o&&m(i)&&i(o[0]),o=i=void 0}),"script"}),y.createHTMLDocument=((Vt=E.implementation.createHTMLDocument("").body).innerHTML="<form></form><form></form>",2===Vt.childNodes.length),k.parseHTML=function(e,t,n){return"string"!=typeof e?[]:("boolean"==typeof t&&(n=t,t=!1),t||(y.createHTMLDocument?((r=(t=E.implementation.createHTMLDocument("")).createElement("base")).href=E.location.href,t.head.appendChild(r)):t=E),o=!n&&[],(i=D.exec(e))?[t.createElement(i[1])]:(i=we([e],t,o),o&&o.length&&k(o).remove(),k.merge([],i.childNodes)));var r,i,o},k.fn.load=function(e,t,n){var r,i,o,a=this,s=e.indexOf(" ");return-1<s&&(r=mt(e.slice(s)),e=e.slice(0,s)),m(t)?(n=t,t=void 0):t&&"object"==typeof t&&(i="POST"),0<a.length&&k.ajax({url:e,type:i||"GET",dataType:"html",data:t}).done(function(e){o=arguments,a.html(r?k("<div>").append(k.parseHTML(e)).find(r):e)}).always(n&&function(e,t){a.each(function(){n.apply(this,o||[e.responseText,t,e])})}),this},k.each(["ajaxStart","ajaxStop","ajaxComplete","ajaxError","ajaxSuccess","ajaxSend"],function(e,t){k.fn[t]=function(e){return this.on(t,e)}}),k.expr.pseudos.animated=function(t){return k.grep(k.timers,function(e){return t===e.elem}).length},k.offset={setOffset:function(e,t,n){var r,i,o,a,s,u,l=k.css(e,"position"),c=k(e),f={};"static"===l&&(e.style.position="relative"),s=c.offset(),o=k.css(e,"top"),u=k.css(e,"left"),("absolute"===l||"fixed"===l)&&-1<(o+u).indexOf("auto")?(a=(r=c.position()).top,i=r.left):(a=parseFloat(o)||0,i=parseFloat(u)||0),m(t)&&(t=t.call(e,n,k.extend({},s))),null!=t.top&&(f.top=t.top-s.top+a),null!=t.left&&(f.left=t.left-s.left+i),"using"in t?t.using.call(e,f):c.css(f)}},k.fn.extend({offset:function(t){if(arguments.length)return void 0===t?this:this.each(function(e){k.offset.setOffset(this,t,e)});var e,n,r=this[0];return r?r.getClientRects().length?(e=r.getBoundingClientRect(),n=r.ownerDocument.defaultView,{top:e.top+n.pageYOffset,left:e.left+n.pageXOffset}):{top:0,left:0}:void 0},position:function(){if(this[0]){var e,t,n,r=this[0],i={top:0,left:0};if("fixed"===k.css(r,"position"))t=r.getBoundingClientRect();else{t=this.offset(),n=r.ownerDocument,e=r.offsetParent||n.documentElement;while(e&&(e===n.body||e===n.documentElement)&&"static"===k.css(e,"position"))e=e.parentNode;e&&e!==r&&1===e.nodeType&&((i=k(e).offset()).top+=k.css(e,"borderTopWidth",!0),i.left+=k.css(e,"borderLeftWidth",!0))}return{top:t.top-i.top-k.css(r,"marginTop",!0),left:t.left-i.left-k.css(r,"marginLeft",!0)}}},offsetParent:function(){return this.map(function(){var e=this.offsetParent;while(e&&"static"===k.css(e,"position"))e=e.offsetParent;return e||ie})}}),k.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(t,i){var o="pageYOffset"===i;k.fn[t]=function(e){return _(this,function(e,t,n){var r;if(x(e)?r=e:9===e.nodeType&&(r=e.defaultView),void 0===n)return r?r[i]:e[t];r?r.scrollTo(o?r.pageXOffset:n,o?n:r.pageYOffset):e[t]=n},t,e,arguments.length)}}),k.each(["top","left"],function(e,n){k.cssHooks[n]=ze(y.pixelPosition,function(e,t){if(t)return t=_e(e,n),$e.test(t)?k(e).position()[n]+"px":t})}),k.each({Height:"height",Width:"width"},function(a,s){k.each({padding:"inner"+a,content:s,"":"outer"+a},function(r,o){k.fn[o]=function(e,t){var n=arguments.length&&(r||"boolean"!=typeof e),i=r||(!0===e||!0===t?"margin":"border");return _(this,function(e,t,n){var r;return x(e)?0===o.indexOf("outer")?e["inner"+a]:e.document.documentElement["client"+a]:9===e.nodeType?(r=e.documentElement,Math.max(e.body["scroll"+a],r["scroll"+a],e.body["offset"+a],r["offset"+a],r["client"+a])):void 0===n?k.css(e,t,i):k.style(e,t,n,i)},s,n?e:void 0,n)}})}),k.each("blur focus focusin focusout resize scroll click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup contextmenu".split(" "),function(e,n){k.fn[n]=function(e,t){return 0<arguments.length?this.on(n,null,e,t):this.trigger(n)}}),k.fn.extend({hover:function(e,t){return this.mouseenter(e).mouseleave(t||e)}}),k.fn.extend({bind:function(e,t,n){return this.on(e,null,t,n)},unbind:function(e,t){return this.off(e,null,t)},delegate:function(e,t,n,r){return this.on(t,e,n,r)},undelegate:function(e,t,n){return 1===arguments.length?this.off(e,"**"):this.off(t,e||"**",n)}}),k.proxy=function(e,t){var n,r,i;if("string"==typeof t&&(n=e[t],t=e,e=n),m(e))return r=s.call(arguments,2),(i=function(){return e.apply(t||this,r.concat(s.call(arguments)))}).guid=e.guid=e.guid||k.guid++,i},k.holdReady=function(e){e?k.readyWait++:k.ready(!0)},k.isArray=Array.isArray,k.parseJSON=JSON.parse,k.nodeName=A,k.isFunction=m,k.isWindow=x,k.camelCase=V,k.type=w,k.now=Date.now,k.isNumeric=function(e){var t=k.type(e);return("number"===t||"string"===t)&&!isNaN(e-parseFloat(e))},"function"==typeof define&&define.amd&&define("jquery",[],function(){return k});var Qt=C.jQuery,Jt=C.$;return k.noConflict=function(e){return C.$===k&&(C.$=Jt),e&&C.jQuery===k&&(C.jQuery=Qt),k},e||(C.jQuery=C.$=k),k});