├── .c9 ├── .nakignore ├── metadata │ ├── environment │ │ ├── .c9 │ │ │ └── runners │ │ │ │ └── Meteor.run │ │ ├── README.md │ │ ├── backup_mongo.txt │ │ ├── client │ │ │ ├── main.css │ │ │ ├── main.html │ │ │ ├── stylesheets │ │ │ │ ├── bootstrap.css │ │ │ │ └── style.css │ │ │ └── templates │ │ │ │ ├── admin │ │ │ │ ├── admin.html │ │ │ │ └── admin.js │ │ │ │ ├── application │ │ │ │ ├── carrusel.html │ │ │ │ ├── carrusel.js │ │ │ │ ├── eqcss.js │ │ │ │ ├── footer.html │ │ │ │ ├── googleClassroom.js │ │ │ │ ├── header.html │ │ │ │ ├── header.js │ │ │ │ ├── index.css │ │ │ │ ├── index.html │ │ │ │ ├── index.js │ │ │ │ ├── index2.html │ │ │ │ ├── layout.html │ │ │ │ ├── login.html │ │ │ │ ├── login.js │ │ │ │ ├── register.html │ │ │ │ └── register.js │ │ │ │ ├── cardsList │ │ │ │ └── cardsList.html │ │ │ │ ├── chromesList │ │ │ │ └── chromesList.js │ │ │ │ ├── classes │ │ │ │ ├── classes_modals.html │ │ │ │ ├── classes_modals.js │ │ │ │ ├── classes_page.html │ │ │ │ ├── classes_page.js │ │ │ │ ├── gcCourses.js │ │ │ │ └── googleClassroom.js │ │ │ │ ├── gamification │ │ │ │ ├── grid.html │ │ │ │ ├── hexbadges.css │ │ │ │ ├── hexmap.css │ │ │ │ ├── missiongrid.css │ │ │ │ ├── missiongrid.html │ │ │ │ ├── missiongrid.js │ │ │ │ ├── missions.html │ │ │ │ └── missions.js │ │ │ │ ├── groups │ │ │ │ └── groupPage.js │ │ │ │ ├── images │ │ │ │ ├── images.html │ │ │ │ └── images.js │ │ │ │ ├── myBreadcrumb │ │ │ │ ├── myBreadcrumb.css │ │ │ │ ├── myBreadcrumb.html │ │ │ │ └── myBreadcrumb.js │ │ │ │ ├── myNav │ │ │ │ ├── myNav.html │ │ │ │ └── myNav.js │ │ │ │ ├── notifications │ │ │ │ ├── notifications.html │ │ │ │ └── notifications.js │ │ │ │ ├── parameters │ │ │ │ ├── parametersList.html │ │ │ │ └── parametersList.js │ │ │ │ ├── settingsPage │ │ │ │ └── settingsPage.html │ │ │ │ ├── store │ │ │ │ └── store.html │ │ │ │ ├── student │ │ │ │ ├── inventory.css │ │ │ │ ├── inventory.html │ │ │ │ ├── inventory.js │ │ │ │ ├── profile.css │ │ │ │ ├── profile.html │ │ │ │ ├── profile.js │ │ │ │ ├── student.html │ │ │ │ ├── studentData.html │ │ │ │ ├── studentData.js │ │ │ │ ├── studentPage.html │ │ │ │ ├── studentPage.js │ │ │ │ ├── studentPage.js2 │ │ │ │ ├── studentPageB.html │ │ │ │ ├── studentProfile.css │ │ │ │ ├── studentProfile.html │ │ │ │ ├── studentProfile.js │ │ │ │ └── student_modals.js │ │ │ │ ├── students │ │ │ │ ├── allModal.js │ │ │ │ ├── cardsModal.html │ │ │ │ ├── cardsModal.js │ │ │ │ ├── groupModal.js │ │ │ │ ├── storeModal.html │ │ │ │ ├── storeModal.js │ │ │ │ ├── studentsMainPage.html │ │ │ │ ├── studentsPage.html │ │ │ │ ├── studentsPage.js │ │ │ │ └── students_modals.js │ │ │ │ └── tools │ │ │ │ ├── randomPage.html │ │ │ │ └── randomPage.js │ │ ├── dropDatabase.txt │ │ ├── dropmlab.sh │ │ ├── iniciar.txt │ │ ├── init.sh │ │ ├── initaws.sh │ │ ├── install_mongo.txt │ │ ├── lib │ │ │ ├── collections │ │ │ │ ├── alumnes.js │ │ │ │ ├── badges.js │ │ │ │ ├── cards.js │ │ │ │ ├── chalPoints.js │ │ │ │ ├── chalXP.js │ │ │ │ ├── challenges.js │ │ │ │ ├── chalmissions.js │ │ │ │ ├── chatClass.js │ │ │ │ ├── chatTeachers.js │ │ │ │ ├── chromes.js │ │ │ │ ├── classes.js │ │ │ │ ├── convictions.js │ │ │ │ ├── diary.js │ │ │ │ ├── groups.js │ │ │ │ ├── images.js │ │ │ │ ├── levels.js │ │ │ │ ├── notifications.js │ │ │ │ ├── store.js │ │ │ │ └── students.js │ │ │ └── router.js │ │ ├── manual_ github.txt │ │ ├── missiongrid.css │ │ ├── missiongrid.js │ │ ├── myssh.sh │ │ ├── scriptc9.sh │ │ ├── server │ │ │ ├── main.js │ │ │ └── publications.js │ │ └── trucosmongo.txt │ ├── tab18 │ ├── tab19 │ ├── tab2 │ ├── tab20 │ ├── tab28 │ └── workspace │ │ ├── .gitignore │ │ ├── README.md │ │ ├── backup_mongo.txt │ │ ├── chart.js.txt │ │ ├── client │ │ ├── helpers │ │ │ └── config.js │ │ ├── main.css │ │ ├── main.html │ │ ├── main.js │ │ ├── stylesheets │ │ │ ├── agency.css │ │ │ ├── agency.old │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.css.336 │ │ │ ├── bootstrap.min │ │ │ ├── bootstrap.min.cerulean │ │ │ ├── bootstrap.min.css │ │ │ ├── bootstrap.min.css.2 │ │ │ ├── bootstrap.min.old │ │ │ ├── bootstrap.old │ │ │ ├── cards │ │ │ │ ├── cards.css │ │ │ │ └── cards.html │ │ │ ├── chatClass.css │ │ │ └── style.css │ │ └── templates │ │ │ ├── admin │ │ │ ├── admin.html │ │ │ ├── admin.js │ │ │ └── cardsList.html │ │ │ ├── adventureModal │ │ │ └── adventureModal.html │ │ │ ├── application │ │ │ ├── Untitled │ │ │ ├── accessDenied.html │ │ │ ├── carousel.css │ │ │ ├── carruse_old.html │ │ │ ├── carruse_oldl.html │ │ │ ├── carrusel.html │ │ │ ├── carrusel.js │ │ │ ├── drive.js │ │ │ ├── footer.html │ │ │ ├── header.html │ │ │ ├── header.js │ │ │ ├── index.css │ │ │ ├── index.html │ │ │ ├── index.js │ │ │ ├── index2.html │ │ │ ├── layout.html │ │ │ ├── login.html │ │ │ ├── login.js │ │ │ ├── notfound.html │ │ │ ├── register.html │ │ │ └── register.js │ │ │ ├── badges │ │ │ ├── badgesList.html │ │ │ └── badgesList.js │ │ │ ├── behaviours │ │ │ ├── behavioursList.html │ │ │ └── behavioursList.js │ │ │ ├── cards │ │ │ └── eventsList.html │ │ │ ├── cardsList │ │ │ ├── cardsList.html │ │ │ └── cardsList.js │ │ │ ├── challenges │ │ │ ├── challenges.html │ │ │ ├── challenges.js │ │ │ ├── notes.html │ │ │ └── notes.js │ │ │ ├── chat │ │ │ ├── chat.html │ │ │ ├── chat.js │ │ │ ├── chatClass.html │ │ │ └── chatTeachers.html │ │ │ ├── chatClass │ │ │ ├── chatClass.css │ │ │ ├── chatClass.html │ │ │ ├── chatClass.js │ │ │ ├── eventsList.1.html │ │ │ └── eventsList.1.js │ │ │ ├── chromesList │ │ │ ├── chromesList.html │ │ │ └── chromesList.js │ │ │ ├── classes │ │ │ ├── classes_modals.html │ │ │ ├── classes_modals.js │ │ │ ├── classes_page.html │ │ │ ├── classes_page.js │ │ │ ├── gcCourses.html │ │ │ ├── gcCourses.js │ │ │ ├── googleClassroom.html │ │ │ ├── googleClassroom.js │ │ │ └── groupProfile.html │ │ │ ├── convictions │ │ │ ├── convictionsList.html │ │ │ └── convictionsList.js │ │ │ ├── events │ │ │ ├── cardsList.html │ │ │ ├── cardsList.js │ │ │ ├── eventsList.html │ │ │ └── eventsList.js │ │ │ ├── eventsList │ │ │ ├── eventsList.html │ │ │ └── eventsList.js │ │ │ ├── gamification │ │ │ ├── adventure.html │ │ │ ├── adventure.js │ │ │ ├── components.html │ │ │ ├── components.js │ │ │ ├── createFolder.html │ │ │ ├── createFolder.js │ │ │ ├── dinamics.html │ │ │ ├── dinamics.js │ │ │ ├── gamification.html │ │ │ ├── gamification.js │ │ │ ├── gcTasks.html │ │ │ ├── gcTasks.js │ │ │ ├── googleClassroom.html │ │ │ ├── googleClassroom.js │ │ │ ├── mechanics.html │ │ │ ├── mechanics.js │ │ │ ├── missions.html │ │ │ ├── missions.js │ │ │ ├── notes.html │ │ │ ├── notes.js │ │ │ ├── storytelling.2.html │ │ │ ├── storytelling.html │ │ │ └── storytelling.js │ │ │ ├── groups │ │ │ ├── groupPage.html │ │ │ ├── groupPage.js │ │ │ ├── groupProfile.js │ │ │ ├── profile.html │ │ │ └── profile.js │ │ │ ├── images │ │ │ ├── images.html │ │ │ └── images.js │ │ │ ├── includes │ │ │ ├── access_denied.html │ │ │ ├── loading.html │ │ │ ├── mcg.css │ │ │ └── mcg.html │ │ │ ├── levels │ │ │ ├── levelsPage.html │ │ │ └── levelsPage.js │ │ │ ├── myAdventure │ │ │ ├── myAdventure.html │ │ │ ├── myAdventure.js │ │ │ └── statisticsPage.js │ │ │ ├── myBreadcrumb │ │ │ ├── myBreadcrumb.html │ │ │ └── myBreadcrumb.js │ │ │ ├── myNav │ │ │ ├── googleClassroom.html │ │ │ ├── googleClassroom.js │ │ │ ├── myNav.html │ │ │ └── myNav.js │ │ │ ├── notifications │ │ │ ├── cardsList.html │ │ │ ├── notifications.html │ │ │ └── notifications.js │ │ │ ├── parameters │ │ │ ├── parametersList.html │ │ │ └── parametersList.js │ │ │ ├── projects │ │ │ └── projects.html │ │ │ ├── quotes │ │ │ ├── quotesList.html │ │ │ └── quotesList.js │ │ │ ├── ramdom │ │ │ ├── conviction.html │ │ │ ├── conviction.js │ │ │ ├── randomPage.html │ │ │ └── randomPage.js │ │ │ ├── settingsPage │ │ │ ├── settingsPage.html │ │ │ └── settingsPage.js │ │ │ ├── statistics │ │ │ ├── statisticsPage.html │ │ │ └── statisticsPage.js │ │ │ ├── store │ │ │ ├── store.html │ │ │ └── store.js │ │ │ ├── student │ │ │ ├── profile.css │ │ │ ├── profile.html │ │ │ ├── profile.js │ │ │ ├── studentPage.html │ │ │ ├── studentPage.js │ │ │ ├── studentPageB.html │ │ │ ├── student_modals.html │ │ │ └── student_modals.js │ │ │ ├── students │ │ │ ├── allModal.html │ │ │ ├── allModal.js │ │ │ ├── badgeModal.html │ │ │ ├── badgeModal.js │ │ │ ├── cardsModal.html │ │ │ ├── cardsModal.js │ │ │ ├── groupModal.html │ │ │ ├── groupModal.js │ │ │ ├── groupsPage.html │ │ │ ├── groupsPage.js │ │ │ ├── hpModal.html │ │ │ ├── messageModal.html │ │ │ ├── messageModal.js │ │ │ ├── pokemon │ │ │ │ ├── pokemon.css │ │ │ │ ├── pokemon.html │ │ │ │ └── pokemon.js │ │ │ ├── storeModal.html │ │ │ ├── storeModal.js │ │ │ ├── studentsMainPage.html │ │ │ ├── studentsMainPage.js │ │ │ ├── studentsPage.html │ │ │ ├── studentsPage.js │ │ │ ├── students_modals.html │ │ │ ├── students_modals.js │ │ │ ├── xpModal.html │ │ │ └── xpModal.js │ │ │ ├── teachers │ │ │ ├── teachers.html │ │ │ └── teachers.js │ │ │ └── tools │ │ │ ├── randomPage.html │ │ │ ├── randomPage.js │ │ │ └── tools.html │ │ ├── dropDatabase.txt │ │ ├── gitignore.sh │ │ ├── iniciar.txt │ │ ├── init.sh │ │ ├── lib │ │ ├── collections │ │ │ ├── alumnes.js │ │ │ ├── badges.js │ │ │ ├── behaviours.js │ │ │ ├── behavioursLog.1.js │ │ │ ├── behavioursLog.js │ │ │ ├── cards.js │ │ │ ├── chalPoints.js │ │ │ ├── chalXP.js │ │ │ ├── challenges.js │ │ │ ├── chalmissions.js │ │ │ ├── chatClass.js │ │ │ ├── chatTeachers.js │ │ │ ├── chromes.js │ │ │ ├── classes.js │ │ │ ├── classesGenre.js │ │ │ ├── convictions.js │ │ │ ├── diary.js │ │ │ ├── groups.js │ │ │ ├── images.js │ │ │ ├── levels.js │ │ │ ├── mcgParameters.js │ │ │ ├── notebook.js │ │ │ ├── notebookWork.js │ │ │ ├── notifications.js │ │ │ ├── quotes.js │ │ │ ├── randomEvents.js │ │ │ ├── store.js │ │ │ ├── students.js │ │ │ ├── tasks.js │ │ │ └── users.js │ │ ├── i18n │ │ │ ├── ca.i18n.json │ │ │ ├── en.i18n.json │ │ │ └── es.i18n.json │ │ └── router.js │ │ ├── manual_ github.txt │ │ ├── myssh2.sh │ │ ├── package-lock.json │ │ ├── public │ │ └── images │ │ │ ├── @mcg.png │ │ │ ├── @mcg2.png │ │ │ ├── @mcgnb.png │ │ │ ├── add_user_128.png │ │ │ ├── add_user_64.png │ │ │ ├── clases.png │ │ │ ├── image1.png │ │ │ ├── image10.png │ │ │ ├── image11.png │ │ │ ├── image12.png │ │ │ ├── image13.png │ │ │ ├── image14.png │ │ │ ├── image2.png │ │ │ ├── image3.png │ │ │ ├── image4.png │ │ │ ├── image5.png │ │ │ ├── image6.png │ │ │ ├── image7.png │ │ │ ├── image8.png │ │ │ ├── image9.png │ │ │ ├── mcg.png │ │ │ ├── random.png │ │ │ ├── student.png │ │ │ ├── teacher.png │ │ │ ├── user_128.png │ │ │ ├── user_64.png │ │ │ ├── user_group_128.png │ │ │ └── user_group_64.png │ │ └── server │ │ ├── main.js │ │ └── publications.js ├── out_of_memory ├── project.settings └── runners │ └── Meteor.run ├── .deploy ├── mup.copia ├── mup.js └── settings.json ├── .deploy2 ├── mup.js └── settings.json ├── .gitignore ├── .idea ├── MyClassGameApp.iml ├── codeStyles │ └── Project.xml ├── mcgApp.iml ├── modules.xml ├── vcs.xml └── workspace.xml ├── .meteor ├── .finished-upgraders ├── .gitignore ├── .id ├── cordova-plugins ├── packages ├── platforms ├── release └── versions ├── @mcgnb.png ├── COPYING ├── README.md ├── android.sh ├── android.txt ├── aws.pem ├── backup.sh ├── backup_mongo.txt ├── build └── config.gypi ├── chart.js.txt ├── client ├── bootstrap3 │ ├── custom-mixins.import.less │ ├── custom-variables.import.less │ ├── mixins.import.less │ └── variables.import.less ├── helpers │ └── config.js ├── main.css ├── main.html ├── main.js ├── stylesheets │ ├── agency.css │ ├── bootstrap.css │ ├── bootstrap.min.css │ ├── bootstrap.min.css.2 │ ├── bootstrap.min.css.3 │ ├── cards │ │ ├── cards.css │ │ └── cards.html │ ├── chatClass.css │ ├── fas │ │ ├── LICENSE.txt │ │ ├── css │ │ │ ├── all.css │ │ │ ├── all.min.css │ │ │ ├── brands.css │ │ │ ├── brands.min.css │ │ │ ├── fontawesome.css │ │ │ ├── fontawesome.min.css │ │ │ ├── regular.css │ │ │ ├── regular.min.css │ │ │ ├── solid.css │ │ │ ├── solid.min.css │ │ │ ├── svg-with-js.css │ │ │ ├── svg-with-js.min.css │ │ │ ├── v4-shims.css │ │ │ └── v4-shims.min.css │ │ ├── js │ │ │ ├── all.js │ │ │ ├── all.min.js │ │ │ ├── brands.js │ │ │ ├── brands.min.js │ │ │ ├── fontawesome.js │ │ │ ├── fontawesome.min.js │ │ │ ├── regular.js │ │ │ ├── regular.min.js │ │ │ ├── solid.js │ │ │ ├── solid.min.js │ │ │ ├── v4-shims.js │ │ │ └── v4-shims.min.js │ │ ├── less │ │ │ ├── _animated.less │ │ │ ├── _bordered-pulled.less │ │ │ ├── _core.less │ │ │ ├── _fixed-width.less │ │ │ ├── _icons.less │ │ │ ├── _larger.less │ │ │ ├── _list.less │ │ │ ├── _mixins.less │ │ │ ├── _rotated-flipped.less │ │ │ ├── _screen-reader.less │ │ │ ├── _shims.less │ │ │ ├── _stacked.less │ │ │ ├── _variables.less │ │ │ ├── brands.less │ │ │ ├── fontawesome.less │ │ │ ├── regular.less │ │ │ ├── solid.less │ │ │ └── v4-shims.less │ │ ├── metadata │ │ │ ├── categories.yml │ │ │ ├── icons.json │ │ │ ├── icons.yml │ │ │ ├── shims.json │ │ │ ├── shims.yml │ │ │ └── sponsors.yml │ │ ├── scss │ │ │ ├── _animated.scss │ │ │ ├── _bordered-pulled.scss │ │ │ ├── _core.scss │ │ │ ├── _fixed-width.scss │ │ │ ├── _icons.scss │ │ │ ├── _larger.scss │ │ │ ├── _list.scss │ │ │ ├── _mixins.scss │ │ │ ├── _rotated-flipped.scss │ │ │ ├── _screen-reader.scss │ │ │ ├── _shims.scss │ │ │ ├── _stacked.scss │ │ │ ├── _variables.scss │ │ │ ├── brands.scss │ │ │ ├── fontawesome.scss │ │ │ ├── regular.scss │ │ │ ├── solid.scss │ │ │ └── v4-shims.scss │ │ ├── sprites │ │ │ ├── brands.svg │ │ │ ├── regular.svg │ │ │ └── solid.svg │ │ ├── svgs │ │ │ ├── brands │ │ │ │ ├── 500px.svg │ │ │ │ ├── accessible-icon.svg │ │ │ │ ├── accusoft.svg │ │ │ │ ├── acquisitions-incorporated.svg │ │ │ │ ├── adn.svg │ │ │ │ ├── adobe.svg │ │ │ │ ├── adversal.svg │ │ │ │ ├── affiliatetheme.svg │ │ │ │ ├── airbnb.svg │ │ │ │ ├── algolia.svg │ │ │ │ ├── alipay.svg │ │ │ │ ├── amazon-pay.svg │ │ │ │ ├── amazon.svg │ │ │ │ ├── amilia.svg │ │ │ │ ├── android.svg │ │ │ │ ├── angellist.svg │ │ │ │ ├── angrycreative.svg │ │ │ │ ├── angular.svg │ │ │ │ ├── app-store-ios.svg │ │ │ │ ├── app-store.svg │ │ │ │ ├── apper.svg │ │ │ │ ├── apple-pay.svg │ │ │ │ ├── apple.svg │ │ │ │ ├── artstation.svg │ │ │ │ ├── asymmetrik.svg │ │ │ │ ├── atlassian.svg │ │ │ │ ├── audible.svg │ │ │ │ ├── autoprefixer.svg │ │ │ │ ├── avianex.svg │ │ │ │ ├── aviato.svg │ │ │ │ ├── aws.svg │ │ │ │ ├── bandcamp.svg │ │ │ │ ├── battle-net.svg │ │ │ │ ├── behance-square.svg │ │ │ │ ├── behance.svg │ │ │ │ ├── bimobject.svg │ │ │ │ ├── bitbucket.svg │ │ │ │ ├── bitcoin.svg │ │ │ │ ├── bity.svg │ │ │ │ ├── black-tie.svg │ │ │ │ ├── blackberry.svg │ │ │ │ ├── blogger-b.svg │ │ │ │ ├── blogger.svg │ │ │ │ ├── bluetooth-b.svg │ │ │ │ ├── bluetooth.svg │ │ │ │ ├── bootstrap.svg │ │ │ │ ├── btc.svg │ │ │ │ ├── buffer.svg │ │ │ │ ├── buromobelexperte.svg │ │ │ │ ├── buysellads.svg │ │ │ │ ├── canadian-maple-leaf.svg │ │ │ │ ├── cc-amazon-pay.svg │ │ │ │ ├── cc-amex.svg │ │ │ │ ├── cc-apple-pay.svg │ │ │ │ ├── cc-diners-club.svg │ │ │ │ ├── cc-discover.svg │ │ │ │ ├── cc-jcb.svg │ │ │ │ ├── cc-mastercard.svg │ │ │ │ ├── cc-paypal.svg │ │ │ │ ├── cc-stripe.svg │ │ │ │ ├── cc-visa.svg │ │ │ │ ├── centercode.svg │ │ │ │ ├── centos.svg │ │ │ │ ├── chrome.svg │ │ │ │ ├── chromecast.svg │ │ │ │ ├── cloudscale.svg │ │ │ │ ├── cloudsmith.svg │ │ │ │ ├── cloudversify.svg │ │ │ │ ├── codepen.svg │ │ │ │ ├── codiepie.svg │ │ │ │ ├── confluence.svg │ │ │ │ ├── connectdevelop.svg │ │ │ │ ├── contao.svg │ │ │ │ ├── cpanel.svg │ │ │ │ ├── creative-commons-by.svg │ │ │ │ ├── creative-commons-nc-eu.svg │ │ │ │ ├── creative-commons-nc-jp.svg │ │ │ │ ├── creative-commons-nc.svg │ │ │ │ ├── creative-commons-nd.svg │ │ │ │ ├── creative-commons-pd-alt.svg │ │ │ │ ├── creative-commons-pd.svg │ │ │ │ ├── creative-commons-remix.svg │ │ │ │ ├── creative-commons-sa.svg │ │ │ │ ├── creative-commons-sampling-plus.svg │ │ │ │ ├── creative-commons-sampling.svg │ │ │ │ ├── creative-commons-share.svg │ │ │ │ ├── creative-commons-zero.svg │ │ │ │ ├── creative-commons.svg │ │ │ │ ├── critical-role.svg │ │ │ │ ├── css3-alt.svg │ │ │ │ ├── css3.svg │ │ │ │ ├── cuttlefish.svg │ │ │ │ ├── d-and-d-beyond.svg │ │ │ │ ├── d-and-d.svg │ │ │ │ ├── dashcube.svg │ │ │ │ ├── delicious.svg │ │ │ │ ├── deploydog.svg │ │ │ │ ├── deskpro.svg │ │ │ │ ├── dev.svg │ │ │ │ ├── deviantart.svg │ │ │ │ ├── dhl.svg │ │ │ │ ├── diaspora.svg │ │ │ │ ├── digg.svg │ │ │ │ ├── digital-ocean.svg │ │ │ │ ├── discord.svg │ │ │ │ ├── discourse.svg │ │ │ │ ├── dochub.svg │ │ │ │ ├── docker.svg │ │ │ │ ├── draft2digital.svg │ │ │ │ ├── dribbble-square.svg │ │ │ │ ├── dribbble.svg │ │ │ │ ├── dropbox.svg │ │ │ │ ├── drupal.svg │ │ │ │ ├── dyalog.svg │ │ │ │ ├── earlybirds.svg │ │ │ │ ├── ebay.svg │ │ │ │ ├── edge.svg │ │ │ │ ├── elementor.svg │ │ │ │ ├── ello.svg │ │ │ │ ├── ember.svg │ │ │ │ ├── empire.svg │ │ │ │ ├── envira.svg │ │ │ │ ├── erlang.svg │ │ │ │ ├── ethereum.svg │ │ │ │ ├── etsy.svg │ │ │ │ ├── evernote.svg │ │ │ │ ├── expeditedssl.svg │ │ │ │ ├── facebook-f.svg │ │ │ │ ├── facebook-messenger.svg │ │ │ │ ├── facebook-square.svg │ │ │ │ ├── facebook.svg │ │ │ │ ├── fantasy-flight-games.svg │ │ │ │ ├── fedex.svg │ │ │ │ ├── fedora.svg │ │ │ │ ├── figma.svg │ │ │ │ ├── firefox.svg │ │ │ │ ├── first-order-alt.svg │ │ │ │ ├── first-order.svg │ │ │ │ ├── firstdraft.svg │ │ │ │ ├── flickr.svg │ │ │ │ ├── flipboard.svg │ │ │ │ ├── fly.svg │ │ │ │ ├── font-awesome-alt.svg │ │ │ │ ├── font-awesome-flag.svg │ │ │ │ ├── font-awesome-logo-full.svg │ │ │ │ ├── font-awesome.svg │ │ │ │ ├── fonticons-fi.svg │ │ │ │ ├── fonticons.svg │ │ │ │ ├── fort-awesome-alt.svg │ │ │ │ ├── fort-awesome.svg │ │ │ │ ├── forumbee.svg │ │ │ │ ├── foursquare.svg │ │ │ │ ├── free-code-camp.svg │ │ │ │ ├── freebsd.svg │ │ │ │ ├── fulcrum.svg │ │ │ │ ├── galactic-republic.svg │ │ │ │ ├── galactic-senate.svg │ │ │ │ ├── get-pocket.svg │ │ │ │ ├── gg-circle.svg │ │ │ │ ├── gg.svg │ │ │ │ ├── git-alt.svg │ │ │ │ ├── git-square.svg │ │ │ │ ├── git.svg │ │ │ │ ├── github-alt.svg │ │ │ │ ├── github-square.svg │ │ │ │ ├── github.svg │ │ │ │ ├── gitkraken.svg │ │ │ │ ├── gitlab.svg │ │ │ │ ├── gitter.svg │ │ │ │ ├── glide-g.svg │ │ │ │ ├── glide.svg │ │ │ │ ├── gofore.svg │ │ │ │ ├── goodreads-g.svg │ │ │ │ ├── goodreads.svg │ │ │ │ ├── google-drive.svg │ │ │ │ ├── google-play.svg │ │ │ │ ├── google-plus-g.svg │ │ │ │ ├── google-plus-square.svg │ │ │ │ ├── google-plus.svg │ │ │ │ ├── google-wallet.svg │ │ │ │ ├── google.svg │ │ │ │ ├── gratipay.svg │ │ │ │ ├── grav.svg │ │ │ │ ├── gripfire.svg │ │ │ │ ├── grunt.svg │ │ │ │ ├── gulp.svg │ │ │ │ ├── hacker-news-square.svg │ │ │ │ ├── hacker-news.svg │ │ │ │ ├── hackerrank.svg │ │ │ │ ├── hips.svg │ │ │ │ ├── hire-a-helper.svg │ │ │ │ ├── hooli.svg │ │ │ │ ├── hornbill.svg │ │ │ │ ├── hotjar.svg │ │ │ │ ├── houzz.svg │ │ │ │ ├── html5.svg │ │ │ │ ├── hubspot.svg │ │ │ │ ├── imdb.svg │ │ │ │ ├── instagram.svg │ │ │ │ ├── intercom.svg │ │ │ │ ├── internet-explorer.svg │ │ │ │ ├── invision.svg │ │ │ │ ├── ioxhost.svg │ │ │ │ ├── itch-io.svg │ │ │ │ ├── itunes-note.svg │ │ │ │ ├── itunes.svg │ │ │ │ ├── java.svg │ │ │ │ ├── jedi-order.svg │ │ │ │ ├── jenkins.svg │ │ │ │ ├── jira.svg │ │ │ │ ├── joget.svg │ │ │ │ ├── joomla.svg │ │ │ │ ├── js-square.svg │ │ │ │ ├── js.svg │ │ │ │ ├── jsfiddle.svg │ │ │ │ ├── kaggle.svg │ │ │ │ ├── keybase.svg │ │ │ │ ├── keycdn.svg │ │ │ │ ├── kickstarter-k.svg │ │ │ │ ├── kickstarter.svg │ │ │ │ ├── korvue.svg │ │ │ │ ├── laravel.svg │ │ │ │ ├── lastfm-square.svg │ │ │ │ ├── lastfm.svg │ │ │ │ ├── leanpub.svg │ │ │ │ ├── less.svg │ │ │ │ ├── line.svg │ │ │ │ ├── linkedin-in.svg │ │ │ │ ├── linkedin.svg │ │ │ │ ├── linode.svg │ │ │ │ ├── linux.svg │ │ │ │ ├── lyft.svg │ │ │ │ ├── magento.svg │ │ │ │ ├── mailchimp.svg │ │ │ │ ├── mandalorian.svg │ │ │ │ ├── markdown.svg │ │ │ │ ├── mastodon.svg │ │ │ │ ├── maxcdn.svg │ │ │ │ ├── medapps.svg │ │ │ │ ├── medium-m.svg │ │ │ │ ├── medium.svg │ │ │ │ ├── medrt.svg │ │ │ │ ├── meetup.svg │ │ │ │ ├── megaport.svg │ │ │ │ ├── mendeley.svg │ │ │ │ ├── microsoft.svg │ │ │ │ ├── mix.svg │ │ │ │ ├── mixcloud.svg │ │ │ │ ├── mizuni.svg │ │ │ │ ├── modx.svg │ │ │ │ ├── monero.svg │ │ │ │ ├── napster.svg │ │ │ │ ├── neos.svg │ │ │ │ ├── nimblr.svg │ │ │ │ ├── node-js.svg │ │ │ │ ├── node.svg │ │ │ │ ├── npm.svg │ │ │ │ ├── ns8.svg │ │ │ │ ├── nutritionix.svg │ │ │ │ ├── odnoklassniki-square.svg │ │ │ │ ├── odnoklassniki.svg │ │ │ │ ├── old-republic.svg │ │ │ │ ├── opencart.svg │ │ │ │ ├── openid.svg │ │ │ │ ├── opera.svg │ │ │ │ ├── optin-monster.svg │ │ │ │ ├── osi.svg │ │ │ │ ├── page4.svg │ │ │ │ ├── pagelines.svg │ │ │ │ ├── palfed.svg │ │ │ │ ├── patreon.svg │ │ │ │ ├── paypal.svg │ │ │ │ ├── penny-arcade.svg │ │ │ │ ├── periscope.svg │ │ │ │ ├── phabricator.svg │ │ │ │ ├── phoenix-framework.svg │ │ │ │ ├── phoenix-squadron.svg │ │ │ │ ├── php.svg │ │ │ │ ├── pied-piper-alt.svg │ │ │ │ ├── pied-piper-hat.svg │ │ │ │ ├── pied-piper-pp.svg │ │ │ │ ├── pied-piper.svg │ │ │ │ ├── pinterest-p.svg │ │ │ │ ├── pinterest-square.svg │ │ │ │ ├── pinterest.svg │ │ │ │ ├── playstation.svg │ │ │ │ ├── product-hunt.svg │ │ │ │ ├── pushed.svg │ │ │ │ ├── python.svg │ │ │ │ ├── qq.svg │ │ │ │ ├── quinscape.svg │ │ │ │ ├── quora.svg │ │ │ │ ├── r-project.svg │ │ │ │ ├── raspberry-pi.svg │ │ │ │ ├── ravelry.svg │ │ │ │ ├── react.svg │ │ │ │ ├── reacteurope.svg │ │ │ │ ├── readme.svg │ │ │ │ ├── rebel.svg │ │ │ │ ├── red-river.svg │ │ │ │ ├── reddit-alien.svg │ │ │ │ ├── reddit-square.svg │ │ │ │ ├── reddit.svg │ │ │ │ ├── redhat.svg │ │ │ │ ├── renren.svg │ │ │ │ ├── replyd.svg │ │ │ │ ├── researchgate.svg │ │ │ │ ├── resolving.svg │ │ │ │ ├── rev.svg │ │ │ │ ├── rocketchat.svg │ │ │ │ ├── rockrms.svg │ │ │ │ ├── safari.svg │ │ │ │ ├── salesforce.svg │ │ │ │ ├── sass.svg │ │ │ │ ├── schlix.svg │ │ │ │ ├── scribd.svg │ │ │ │ ├── searchengin.svg │ │ │ │ ├── sellcast.svg │ │ │ │ ├── sellsy.svg │ │ │ │ ├── servicestack.svg │ │ │ │ ├── shirtsinbulk.svg │ │ │ │ ├── shopware.svg │ │ │ │ ├── simplybuilt.svg │ │ │ │ ├── sistrix.svg │ │ │ │ ├── sith.svg │ │ │ │ ├── sketch.svg │ │ │ │ ├── skyatlas.svg │ │ │ │ ├── skype.svg │ │ │ │ ├── slack-hash.svg │ │ │ │ ├── slack.svg │ │ │ │ ├── slideshare.svg │ │ │ │ ├── snapchat-ghost.svg │ │ │ │ ├── snapchat-square.svg │ │ │ │ ├── snapchat.svg │ │ │ │ ├── soundcloud.svg │ │ │ │ ├── sourcetree.svg │ │ │ │ ├── speakap.svg │ │ │ │ ├── speaker-deck.svg │ │ │ │ ├── spotify.svg │ │ │ │ ├── squarespace.svg │ │ │ │ ├── stack-exchange.svg │ │ │ │ ├── stack-overflow.svg │ │ │ │ ├── stackpath.svg │ │ │ │ ├── staylinked.svg │ │ │ │ ├── steam-square.svg │ │ │ │ ├── steam-symbol.svg │ │ │ │ ├── steam.svg │ │ │ │ ├── sticker-mule.svg │ │ │ │ ├── strava.svg │ │ │ │ ├── stripe-s.svg │ │ │ │ ├── stripe.svg │ │ │ │ ├── studiovinari.svg │ │ │ │ ├── stumbleupon-circle.svg │ │ │ │ ├── stumbleupon.svg │ │ │ │ ├── superpowers.svg │ │ │ │ ├── supple.svg │ │ │ │ ├── suse.svg │ │ │ │ ├── symfony.svg │ │ │ │ ├── teamspeak.svg │ │ │ │ ├── telegram-plane.svg │ │ │ │ ├── telegram.svg │ │ │ │ ├── tencent-weibo.svg │ │ │ │ ├── the-red-yeti.svg │ │ │ │ ├── themeco.svg │ │ │ │ ├── themeisle.svg │ │ │ │ ├── think-peaks.svg │ │ │ │ ├── trade-federation.svg │ │ │ │ ├── trello.svg │ │ │ │ ├── tripadvisor.svg │ │ │ │ ├── tumblr-square.svg │ │ │ │ ├── tumblr.svg │ │ │ │ ├── twitch.svg │ │ │ │ ├── twitter-square.svg │ │ │ │ ├── twitter.svg │ │ │ │ ├── typo3.svg │ │ │ │ ├── uber.svg │ │ │ │ ├── ubuntu.svg │ │ │ │ ├── uikit.svg │ │ │ │ ├── uniregistry.svg │ │ │ │ ├── untappd.svg │ │ │ │ ├── ups.svg │ │ │ │ ├── usb.svg │ │ │ │ ├── usps.svg │ │ │ │ ├── ussunnah.svg │ │ │ │ ├── vaadin.svg │ │ │ │ ├── viacoin.svg │ │ │ │ ├── viadeo-square.svg │ │ │ │ ├── viadeo.svg │ │ │ │ ├── viber.svg │ │ │ │ ├── vimeo-square.svg │ │ │ │ ├── vimeo-v.svg │ │ │ │ ├── vimeo.svg │ │ │ │ ├── vine.svg │ │ │ │ ├── vk.svg │ │ │ │ ├── vnv.svg │ │ │ │ ├── vuejs.svg │ │ │ │ ├── waze.svg │ │ │ │ ├── weebly.svg │ │ │ │ ├── weibo.svg │ │ │ │ ├── weixin.svg │ │ │ │ ├── whatsapp-square.svg │ │ │ │ ├── whatsapp.svg │ │ │ │ ├── whmcs.svg │ │ │ │ ├── wikipedia-w.svg │ │ │ │ ├── windows.svg │ │ │ │ ├── wix.svg │ │ │ │ ├── wizards-of-the-coast.svg │ │ │ │ ├── wolf-pack-battalion.svg │ │ │ │ ├── wordpress-simple.svg │ │ │ │ ├── wordpress.svg │ │ │ │ ├── wpbeginner.svg │ │ │ │ ├── wpexplorer.svg │ │ │ │ ├── wpforms.svg │ │ │ │ ├── wpressr.svg │ │ │ │ ├── xbox.svg │ │ │ │ ├── xing-square.svg │ │ │ │ ├── xing.svg │ │ │ │ ├── y-combinator.svg │ │ │ │ ├── yahoo.svg │ │ │ │ ├── yammer.svg │ │ │ │ ├── yandex-international.svg │ │ │ │ ├── yandex.svg │ │ │ │ ├── yarn.svg │ │ │ │ ├── yelp.svg │ │ │ │ ├── yoast.svg │ │ │ │ ├── youtube-square.svg │ │ │ │ ├── youtube.svg │ │ │ │ └── zhihu.svg │ │ │ ├── regular │ │ │ │ ├── address-book.svg │ │ │ │ ├── address-card.svg │ │ │ │ ├── angry.svg │ │ │ │ ├── arrow-alt-circle-down.svg │ │ │ │ ├── arrow-alt-circle-left.svg │ │ │ │ ├── arrow-alt-circle-right.svg │ │ │ │ ├── arrow-alt-circle-up.svg │ │ │ │ ├── bell-slash.svg │ │ │ │ ├── bell.svg │ │ │ │ ├── bookmark.svg │ │ │ │ ├── building.svg │ │ │ │ ├── calendar-alt.svg │ │ │ │ ├── calendar-check.svg │ │ │ │ ├── calendar-minus.svg │ │ │ │ ├── calendar-plus.svg │ │ │ │ ├── calendar-times.svg │ │ │ │ ├── calendar.svg │ │ │ │ ├── caret-square-down.svg │ │ │ │ ├── caret-square-left.svg │ │ │ │ ├── caret-square-right.svg │ │ │ │ ├── caret-square-up.svg │ │ │ │ ├── chart-bar.svg │ │ │ │ ├── check-circle.svg │ │ │ │ ├── check-square.svg │ │ │ │ ├── circle.svg │ │ │ │ ├── clipboard.svg │ │ │ │ ├── clock.svg │ │ │ │ ├── clone.svg │ │ │ │ ├── closed-captioning.svg │ │ │ │ ├── comment-alt.svg │ │ │ │ ├── comment-dots.svg │ │ │ │ ├── comment.svg │ │ │ │ ├── comments.svg │ │ │ │ ├── compass.svg │ │ │ │ ├── copy.svg │ │ │ │ ├── copyright.svg │ │ │ │ ├── credit-card.svg │ │ │ │ ├── dizzy.svg │ │ │ │ ├── dot-circle.svg │ │ │ │ ├── edit.svg │ │ │ │ ├── envelope-open.svg │ │ │ │ ├── envelope.svg │ │ │ │ ├── eye-slash.svg │ │ │ │ ├── eye.svg │ │ │ │ ├── file-alt.svg │ │ │ │ ├── file-archive.svg │ │ │ │ ├── file-audio.svg │ │ │ │ ├── file-code.svg │ │ │ │ ├── file-excel.svg │ │ │ │ ├── file-image.svg │ │ │ │ ├── file-pdf.svg │ │ │ │ ├── file-powerpoint.svg │ │ │ │ ├── file-video.svg │ │ │ │ ├── file-word.svg │ │ │ │ ├── file.svg │ │ │ │ ├── flag.svg │ │ │ │ ├── flushed.svg │ │ │ │ ├── folder-open.svg │ │ │ │ ├── folder.svg │ │ │ │ ├── font-awesome-logo-full.svg │ │ │ │ ├── frown-open.svg │ │ │ │ ├── frown.svg │ │ │ │ ├── futbol.svg │ │ │ │ ├── gem.svg │ │ │ │ ├── grimace.svg │ │ │ │ ├── grin-alt.svg │ │ │ │ ├── grin-beam-sweat.svg │ │ │ │ ├── grin-beam.svg │ │ │ │ ├── grin-hearts.svg │ │ │ │ ├── grin-squint-tears.svg │ │ │ │ ├── grin-squint.svg │ │ │ │ ├── grin-stars.svg │ │ │ │ ├── grin-tears.svg │ │ │ │ ├── grin-tongue-squint.svg │ │ │ │ ├── grin-tongue-wink.svg │ │ │ │ ├── grin-tongue.svg │ │ │ │ ├── grin-wink.svg │ │ │ │ ├── grin.svg │ │ │ │ ├── hand-lizard.svg │ │ │ │ ├── hand-paper.svg │ │ │ │ ├── hand-peace.svg │ │ │ │ ├── hand-point-down.svg │ │ │ │ ├── hand-point-left.svg │ │ │ │ ├── hand-point-right.svg │ │ │ │ ├── hand-point-up.svg │ │ │ │ ├── hand-pointer.svg │ │ │ │ ├── hand-rock.svg │ │ │ │ ├── hand-scissors.svg │ │ │ │ ├── hand-spock.svg │ │ │ │ ├── handshake.svg │ │ │ │ ├── hdd.svg │ │ │ │ ├── heart.svg │ │ │ │ ├── hospital.svg │ │ │ │ ├── hourglass.svg │ │ │ │ ├── id-badge.svg │ │ │ │ ├── id-card.svg │ │ │ │ ├── image.svg │ │ │ │ ├── images.svg │ │ │ │ ├── keyboard.svg │ │ │ │ ├── kiss-beam.svg │ │ │ │ ├── kiss-wink-heart.svg │ │ │ │ ├── kiss.svg │ │ │ │ ├── laugh-beam.svg │ │ │ │ ├── laugh-squint.svg │ │ │ │ ├── laugh-wink.svg │ │ │ │ ├── laugh.svg │ │ │ │ ├── lemon.svg │ │ │ │ ├── life-ring.svg │ │ │ │ ├── lightbulb.svg │ │ │ │ ├── list-alt.svg │ │ │ │ ├── map.svg │ │ │ │ ├── meh-blank.svg │ │ │ │ ├── meh-rolling-eyes.svg │ │ │ │ ├── meh.svg │ │ │ │ ├── minus-square.svg │ │ │ │ ├── money-bill-alt.svg │ │ │ │ ├── moon.svg │ │ │ │ ├── newspaper.svg │ │ │ │ ├── object-group.svg │ │ │ │ ├── object-ungroup.svg │ │ │ │ ├── paper-plane.svg │ │ │ │ ├── pause-circle.svg │ │ │ │ ├── play-circle.svg │ │ │ │ ├── plus-square.svg │ │ │ │ ├── question-circle.svg │ │ │ │ ├── registered.svg │ │ │ │ ├── sad-cry.svg │ │ │ │ ├── sad-tear.svg │ │ │ │ ├── save.svg │ │ │ │ ├── share-square.svg │ │ │ │ ├── smile-beam.svg │ │ │ │ ├── smile-wink.svg │ │ │ │ ├── smile.svg │ │ │ │ ├── snowflake.svg │ │ │ │ ├── square.svg │ │ │ │ ├── star-half.svg │ │ │ │ ├── star.svg │ │ │ │ ├── sticky-note.svg │ │ │ │ ├── stop-circle.svg │ │ │ │ ├── sun.svg │ │ │ │ ├── surprise.svg │ │ │ │ ├── thumbs-down.svg │ │ │ │ ├── thumbs-up.svg │ │ │ │ ├── times-circle.svg │ │ │ │ ├── tired.svg │ │ │ │ ├── trash-alt.svg │ │ │ │ ├── user-circle.svg │ │ │ │ ├── user.svg │ │ │ │ ├── window-close.svg │ │ │ │ ├── window-maximize.svg │ │ │ │ ├── window-minimize.svg │ │ │ │ └── window-restore.svg │ │ │ └── solid │ │ │ │ ├── ad.svg │ │ │ │ ├── address-book.svg │ │ │ │ ├── address-card.svg │ │ │ │ ├── adjust.svg │ │ │ │ ├── air-freshener.svg │ │ │ │ ├── align-center.svg │ │ │ │ ├── align-justify.svg │ │ │ │ ├── align-left.svg │ │ │ │ ├── align-right.svg │ │ │ │ ├── allergies.svg │ │ │ │ ├── ambulance.svg │ │ │ │ ├── american-sign-language-interpreting.svg │ │ │ │ ├── anchor.svg │ │ │ │ ├── angle-double-down.svg │ │ │ │ ├── angle-double-left.svg │ │ │ │ ├── angle-double-right.svg │ │ │ │ ├── angle-double-up.svg │ │ │ │ ├── angle-down.svg │ │ │ │ ├── angle-left.svg │ │ │ │ ├── angle-right.svg │ │ │ │ ├── angle-up.svg │ │ │ │ ├── angry.svg │ │ │ │ ├── ankh.svg │ │ │ │ ├── apple-alt.svg │ │ │ │ ├── archive.svg │ │ │ │ ├── archway.svg │ │ │ │ ├── arrow-alt-circle-down.svg │ │ │ │ ├── arrow-alt-circle-left.svg │ │ │ │ ├── arrow-alt-circle-right.svg │ │ │ │ ├── arrow-alt-circle-up.svg │ │ │ │ ├── arrow-circle-down.svg │ │ │ │ ├── arrow-circle-left.svg │ │ │ │ ├── arrow-circle-right.svg │ │ │ │ ├── arrow-circle-up.svg │ │ │ │ ├── arrow-down.svg │ │ │ │ ├── arrow-left.svg │ │ │ │ ├── arrow-right.svg │ │ │ │ ├── arrow-up.svg │ │ │ │ ├── arrows-alt-h.svg │ │ │ │ ├── arrows-alt-v.svg │ │ │ │ ├── arrows-alt.svg │ │ │ │ ├── assistive-listening-systems.svg │ │ │ │ ├── asterisk.svg │ │ │ │ ├── at.svg │ │ │ │ ├── atlas.svg │ │ │ │ ├── atom.svg │ │ │ │ ├── audio-description.svg │ │ │ │ ├── award.svg │ │ │ │ ├── baby-carriage.svg │ │ │ │ ├── baby.svg │ │ │ │ ├── backspace.svg │ │ │ │ ├── backward.svg │ │ │ │ ├── bacon.svg │ │ │ │ ├── balance-scale-left.svg │ │ │ │ ├── balance-scale-right.svg │ │ │ │ ├── balance-scale.svg │ │ │ │ ├── ban.svg │ │ │ │ ├── band-aid.svg │ │ │ │ ├── barcode.svg │ │ │ │ ├── bars.svg │ │ │ │ ├── baseball-ball.svg │ │ │ │ ├── basketball-ball.svg │ │ │ │ ├── bath.svg │ │ │ │ ├── battery-empty.svg │ │ │ │ ├── battery-full.svg │ │ │ │ ├── battery-half.svg │ │ │ │ ├── battery-quarter.svg │ │ │ │ ├── battery-three-quarters.svg │ │ │ │ ├── bed.svg │ │ │ │ ├── beer.svg │ │ │ │ ├── bell-slash.svg │ │ │ │ ├── bell.svg │ │ │ │ ├── bezier-curve.svg │ │ │ │ ├── bible.svg │ │ │ │ ├── bicycle.svg │ │ │ │ ├── biking.svg │ │ │ │ ├── binoculars.svg │ │ │ │ ├── biohazard.svg │ │ │ │ ├── birthday-cake.svg │ │ │ │ ├── blender-phone.svg │ │ │ │ ├── blender.svg │ │ │ │ ├── blind.svg │ │ │ │ ├── blog.svg │ │ │ │ ├── bold.svg │ │ │ │ ├── bolt.svg │ │ │ │ ├── bomb.svg │ │ │ │ ├── bone.svg │ │ │ │ ├── bong.svg │ │ │ │ ├── book-dead.svg │ │ │ │ ├── book-medical.svg │ │ │ │ ├── book-open.svg │ │ │ │ ├── book-reader.svg │ │ │ │ ├── book.svg │ │ │ │ ├── bookmark.svg │ │ │ │ ├── border-all.svg │ │ │ │ ├── border-none.svg │ │ │ │ ├── border-style.svg │ │ │ │ ├── bowling-ball.svg │ │ │ │ ├── box-open.svg │ │ │ │ ├── box.svg │ │ │ │ ├── boxes.svg │ │ │ │ ├── braille.svg │ │ │ │ ├── brain.svg │ │ │ │ ├── bread-slice.svg │ │ │ │ ├── briefcase-medical.svg │ │ │ │ ├── briefcase.svg │ │ │ │ ├── broadcast-tower.svg │ │ │ │ ├── broom.svg │ │ │ │ ├── brush.svg │ │ │ │ ├── bug.svg │ │ │ │ ├── building.svg │ │ │ │ ├── bullhorn.svg │ │ │ │ ├── bullseye.svg │ │ │ │ ├── burn.svg │ │ │ │ ├── bus-alt.svg │ │ │ │ ├── bus.svg │ │ │ │ ├── business-time.svg │ │ │ │ ├── calculator.svg │ │ │ │ ├── calendar-alt.svg │ │ │ │ ├── calendar-check.svg │ │ │ │ ├── calendar-day.svg │ │ │ │ ├── calendar-minus.svg │ │ │ │ ├── calendar-plus.svg │ │ │ │ ├── calendar-times.svg │ │ │ │ ├── calendar-week.svg │ │ │ │ ├── calendar.svg │ │ │ │ ├── camera-retro.svg │ │ │ │ ├── camera.svg │ │ │ │ ├── campground.svg │ │ │ │ ├── candy-cane.svg │ │ │ │ ├── cannabis.svg │ │ │ │ ├── capsules.svg │ │ │ │ ├── car-alt.svg │ │ │ │ ├── car-battery.svg │ │ │ │ ├── car-crash.svg │ │ │ │ ├── car-side.svg │ │ │ │ ├── car.svg │ │ │ │ ├── caret-down.svg │ │ │ │ ├── caret-left.svg │ │ │ │ ├── caret-right.svg │ │ │ │ ├── caret-square-down.svg │ │ │ │ ├── caret-square-left.svg │ │ │ │ ├── caret-square-right.svg │ │ │ │ ├── caret-square-up.svg │ │ │ │ ├── caret-up.svg │ │ │ │ ├── carrot.svg │ │ │ │ ├── cart-arrow-down.svg │ │ │ │ ├── cart-plus.svg │ │ │ │ ├── cash-register.svg │ │ │ │ ├── cat.svg │ │ │ │ ├── certificate.svg │ │ │ │ ├── chair.svg │ │ │ │ ├── chalkboard-teacher.svg │ │ │ │ ├── chalkboard.svg │ │ │ │ ├── charging-station.svg │ │ │ │ ├── chart-area.svg │ │ │ │ ├── chart-bar.svg │ │ │ │ ├── chart-line.svg │ │ │ │ ├── chart-pie.svg │ │ │ │ ├── check-circle.svg │ │ │ │ ├── check-double.svg │ │ │ │ ├── check-square.svg │ │ │ │ ├── check.svg │ │ │ │ ├── cheese.svg │ │ │ │ ├── chess-bishop.svg │ │ │ │ ├── chess-board.svg │ │ │ │ ├── chess-king.svg │ │ │ │ ├── chess-knight.svg │ │ │ │ ├── chess-pawn.svg │ │ │ │ ├── chess-queen.svg │ │ │ │ ├── chess-rook.svg │ │ │ │ ├── chess.svg │ │ │ │ ├── chevron-circle-down.svg │ │ │ │ ├── chevron-circle-left.svg │ │ │ │ ├── chevron-circle-right.svg │ │ │ │ ├── chevron-circle-up.svg │ │ │ │ ├── chevron-down.svg │ │ │ │ ├── chevron-left.svg │ │ │ │ ├── chevron-right.svg │ │ │ │ ├── chevron-up.svg │ │ │ │ ├── child.svg │ │ │ │ ├── church.svg │ │ │ │ ├── circle-notch.svg │ │ │ │ ├── circle.svg │ │ │ │ ├── city.svg │ │ │ │ ├── clinic-medical.svg │ │ │ │ ├── clipboard-check.svg │ │ │ │ ├── clipboard-list.svg │ │ │ │ ├── clipboard.svg │ │ │ │ ├── clock.svg │ │ │ │ ├── clone.svg │ │ │ │ ├── closed-captioning.svg │ │ │ │ ├── cloud-download-alt.svg │ │ │ │ ├── cloud-meatball.svg │ │ │ │ ├── cloud-moon-rain.svg │ │ │ │ ├── cloud-moon.svg │ │ │ │ ├── cloud-rain.svg │ │ │ │ ├── cloud-showers-heavy.svg │ │ │ │ ├── cloud-sun-rain.svg │ │ │ │ ├── cloud-sun.svg │ │ │ │ ├── cloud-upload-alt.svg │ │ │ │ ├── cloud.svg │ │ │ │ ├── cocktail.svg │ │ │ │ ├── code-branch.svg │ │ │ │ ├── code.svg │ │ │ │ ├── coffee.svg │ │ │ │ ├── cog.svg │ │ │ │ ├── cogs.svg │ │ │ │ ├── coins.svg │ │ │ │ ├── columns.svg │ │ │ │ ├── comment-alt.svg │ │ │ │ ├── comment-dollar.svg │ │ │ │ ├── comment-dots.svg │ │ │ │ ├── comment-medical.svg │ │ │ │ ├── comment-slash.svg │ │ │ │ ├── comment.svg │ │ │ │ ├── comments-dollar.svg │ │ │ │ ├── comments.svg │ │ │ │ ├── compact-disc.svg │ │ │ │ ├── compass.svg │ │ │ │ ├── compress-arrows-alt.svg │ │ │ │ ├── compress.svg │ │ │ │ ├── concierge-bell.svg │ │ │ │ ├── cookie-bite.svg │ │ │ │ ├── cookie.svg │ │ │ │ ├── copy.svg │ │ │ │ ├── copyright.svg │ │ │ │ ├── couch.svg │ │ │ │ ├── credit-card.svg │ │ │ │ ├── crop-alt.svg │ │ │ │ ├── crop.svg │ │ │ │ ├── cross.svg │ │ │ │ ├── crosshairs.svg │ │ │ │ ├── crow.svg │ │ │ │ ├── crown.svg │ │ │ │ ├── crutch.svg │ │ │ │ ├── cube.svg │ │ │ │ ├── cubes.svg │ │ │ │ ├── cut.svg │ │ │ │ ├── database.svg │ │ │ │ ├── deaf.svg │ │ │ │ ├── democrat.svg │ │ │ │ ├── desktop.svg │ │ │ │ ├── dharmachakra.svg │ │ │ │ ├── diagnoses.svg │ │ │ │ ├── dice-d20.svg │ │ │ │ ├── dice-d6.svg │ │ │ │ ├── dice-five.svg │ │ │ │ ├── dice-four.svg │ │ │ │ ├── dice-one.svg │ │ │ │ ├── dice-six.svg │ │ │ │ ├── dice-three.svg │ │ │ │ ├── dice-two.svg │ │ │ │ ├── dice.svg │ │ │ │ ├── digital-tachograph.svg │ │ │ │ ├── directions.svg │ │ │ │ ├── divide.svg │ │ │ │ ├── dizzy.svg │ │ │ │ ├── dna.svg │ │ │ │ ├── dog.svg │ │ │ │ ├── dollar-sign.svg │ │ │ │ ├── dolly-flatbed.svg │ │ │ │ ├── dolly.svg │ │ │ │ ├── donate.svg │ │ │ │ ├── door-closed.svg │ │ │ │ ├── door-open.svg │ │ │ │ ├── dot-circle.svg │ │ │ │ ├── dove.svg │ │ │ │ ├── download.svg │ │ │ │ ├── drafting-compass.svg │ │ │ │ ├── dragon.svg │ │ │ │ ├── draw-polygon.svg │ │ │ │ ├── drum-steelpan.svg │ │ │ │ ├── drum.svg │ │ │ │ ├── drumstick-bite.svg │ │ │ │ ├── dumbbell.svg │ │ │ │ ├── dumpster-fire.svg │ │ │ │ ├── dumpster.svg │ │ │ │ ├── dungeon.svg │ │ │ │ ├── edit.svg │ │ │ │ ├── egg.svg │ │ │ │ ├── eject.svg │ │ │ │ ├── ellipsis-h.svg │ │ │ │ ├── ellipsis-v.svg │ │ │ │ ├── envelope-open-text.svg │ │ │ │ ├── envelope-open.svg │ │ │ │ ├── envelope-square.svg │ │ │ │ ├── envelope.svg │ │ │ │ ├── equals.svg │ │ │ │ ├── eraser.svg │ │ │ │ ├── ethernet.svg │ │ │ │ ├── euro-sign.svg │ │ │ │ ├── exchange-alt.svg │ │ │ │ ├── exclamation-circle.svg │ │ │ │ ├── exclamation-triangle.svg │ │ │ │ ├── exclamation.svg │ │ │ │ ├── expand-arrows-alt.svg │ │ │ │ ├── expand.svg │ │ │ │ ├── external-link-alt.svg │ │ │ │ ├── external-link-square-alt.svg │ │ │ │ ├── eye-dropper.svg │ │ │ │ ├── eye-slash.svg │ │ │ │ ├── eye.svg │ │ │ │ ├── fan.svg │ │ │ │ ├── fast-backward.svg │ │ │ │ ├── fast-forward.svg │ │ │ │ ├── fax.svg │ │ │ │ ├── feather-alt.svg │ │ │ │ ├── feather.svg │ │ │ │ ├── female.svg │ │ │ │ ├── fighter-jet.svg │ │ │ │ ├── file-alt.svg │ │ │ │ ├── file-archive.svg │ │ │ │ ├── file-audio.svg │ │ │ │ ├── file-code.svg │ │ │ │ ├── file-contract.svg │ │ │ │ ├── file-csv.svg │ │ │ │ ├── file-download.svg │ │ │ │ ├── file-excel.svg │ │ │ │ ├── file-export.svg │ │ │ │ ├── file-image.svg │ │ │ │ ├── file-import.svg │ │ │ │ ├── file-invoice-dollar.svg │ │ │ │ ├── file-invoice.svg │ │ │ │ ├── file-medical-alt.svg │ │ │ │ ├── file-medical.svg │ │ │ │ ├── file-pdf.svg │ │ │ │ ├── file-powerpoint.svg │ │ │ │ ├── file-prescription.svg │ │ │ │ ├── file-signature.svg │ │ │ │ ├── file-upload.svg │ │ │ │ ├── file-video.svg │ │ │ │ ├── file-word.svg │ │ │ │ ├── file.svg │ │ │ │ ├── fill-drip.svg │ │ │ │ ├── fill.svg │ │ │ │ ├── film.svg │ │ │ │ ├── filter.svg │ │ │ │ ├── fingerprint.svg │ │ │ │ ├── fire-alt.svg │ │ │ │ ├── fire-extinguisher.svg │ │ │ │ ├── fire.svg │ │ │ │ ├── first-aid.svg │ │ │ │ ├── fish.svg │ │ │ │ ├── fist-raised.svg │ │ │ │ ├── flag-checkered.svg │ │ │ │ ├── flag-usa.svg │ │ │ │ ├── flag.svg │ │ │ │ ├── flask.svg │ │ │ │ ├── flushed.svg │ │ │ │ ├── folder-minus.svg │ │ │ │ ├── folder-open.svg │ │ │ │ ├── folder-plus.svg │ │ │ │ ├── folder.svg │ │ │ │ ├── font-awesome-logo-full.svg │ │ │ │ ├── font.svg │ │ │ │ ├── football-ball.svg │ │ │ │ ├── forward.svg │ │ │ │ ├── frog.svg │ │ │ │ ├── frown-open.svg │ │ │ │ ├── frown.svg │ │ │ │ ├── funnel-dollar.svg │ │ │ │ ├── futbol.svg │ │ │ │ ├── gamepad.svg │ │ │ │ ├── gas-pump.svg │ │ │ │ ├── gavel.svg │ │ │ │ ├── gem.svg │ │ │ │ ├── genderless.svg │ │ │ │ ├── ghost.svg │ │ │ │ ├── gift.svg │ │ │ │ ├── gifts.svg │ │ │ │ ├── glass-cheers.svg │ │ │ │ ├── glass-martini-alt.svg │ │ │ │ ├── glass-martini.svg │ │ │ │ ├── glass-whiskey.svg │ │ │ │ ├── glasses.svg │ │ │ │ ├── globe-africa.svg │ │ │ │ ├── globe-americas.svg │ │ │ │ ├── globe-asia.svg │ │ │ │ ├── globe-europe.svg │ │ │ │ ├── globe.svg │ │ │ │ ├── golf-ball.svg │ │ │ │ ├── gopuram.svg │ │ │ │ ├── graduation-cap.svg │ │ │ │ ├── greater-than-equal.svg │ │ │ │ ├── greater-than.svg │ │ │ │ ├── grimace.svg │ │ │ │ ├── grin-alt.svg │ │ │ │ ├── grin-beam-sweat.svg │ │ │ │ ├── grin-beam.svg │ │ │ │ ├── grin-hearts.svg │ │ │ │ ├── grin-squint-tears.svg │ │ │ │ ├── grin-squint.svg │ │ │ │ ├── grin-stars.svg │ │ │ │ ├── grin-tears.svg │ │ │ │ ├── grin-tongue-squint.svg │ │ │ │ ├── grin-tongue-wink.svg │ │ │ │ ├── grin-tongue.svg │ │ │ │ ├── grin-wink.svg │ │ │ │ ├── grin.svg │ │ │ │ ├── grip-horizontal.svg │ │ │ │ ├── grip-lines-vertical.svg │ │ │ │ ├── grip-lines.svg │ │ │ │ ├── grip-vertical.svg │ │ │ │ ├── guitar.svg │ │ │ │ ├── h-square.svg │ │ │ │ ├── hamburger.svg │ │ │ │ ├── hammer.svg │ │ │ │ ├── hamsa.svg │ │ │ │ ├── hand-holding-heart.svg │ │ │ │ ├── hand-holding-usd.svg │ │ │ │ ├── hand-holding.svg │ │ │ │ ├── hand-lizard.svg │ │ │ │ ├── hand-middle-finger.svg │ │ │ │ ├── hand-paper.svg │ │ │ │ ├── hand-peace.svg │ │ │ │ ├── hand-point-down.svg │ │ │ │ ├── hand-point-left.svg │ │ │ │ ├── hand-point-right.svg │ │ │ │ ├── hand-point-up.svg │ │ │ │ ├── hand-pointer.svg │ │ │ │ ├── hand-rock.svg │ │ │ │ ├── hand-scissors.svg │ │ │ │ ├── hand-spock.svg │ │ │ │ ├── hands-helping.svg │ │ │ │ ├── hands.svg │ │ │ │ ├── handshake.svg │ │ │ │ ├── hanukiah.svg │ │ │ │ ├── hard-hat.svg │ │ │ │ ├── hashtag.svg │ │ │ │ ├── hat-wizard.svg │ │ │ │ ├── haykal.svg │ │ │ │ ├── hdd.svg │ │ │ │ ├── heading.svg │ │ │ │ ├── headphones-alt.svg │ │ │ │ ├── headphones.svg │ │ │ │ ├── headset.svg │ │ │ │ ├── heart-broken.svg │ │ │ │ ├── heart.svg │ │ │ │ ├── heartbeat.svg │ │ │ │ ├── helicopter.svg │ │ │ │ ├── highlighter.svg │ │ │ │ ├── hiking.svg │ │ │ │ ├── hippo.svg │ │ │ │ ├── history.svg │ │ │ │ ├── hockey-puck.svg │ │ │ │ ├── holly-berry.svg │ │ │ │ ├── home.svg │ │ │ │ ├── horse-head.svg │ │ │ │ ├── horse.svg │ │ │ │ ├── hospital-alt.svg │ │ │ │ ├── hospital-symbol.svg │ │ │ │ ├── hospital.svg │ │ │ │ ├── hot-tub.svg │ │ │ │ ├── hotdog.svg │ │ │ │ ├── hotel.svg │ │ │ │ ├── hourglass-end.svg │ │ │ │ ├── hourglass-half.svg │ │ │ │ ├── hourglass-start.svg │ │ │ │ ├── hourglass.svg │ │ │ │ ├── house-damage.svg │ │ │ │ ├── hryvnia.svg │ │ │ │ ├── i-cursor.svg │ │ │ │ ├── ice-cream.svg │ │ │ │ ├── icicles.svg │ │ │ │ ├── icons.svg │ │ │ │ ├── id-badge.svg │ │ │ │ ├── id-card-alt.svg │ │ │ │ ├── id-card.svg │ │ │ │ ├── igloo.svg │ │ │ │ ├── image.svg │ │ │ │ ├── images.svg │ │ │ │ ├── inbox.svg │ │ │ │ ├── indent.svg │ │ │ │ ├── industry.svg │ │ │ │ ├── infinity.svg │ │ │ │ ├── info-circle.svg │ │ │ │ ├── info.svg │ │ │ │ ├── italic.svg │ │ │ │ ├── jedi.svg │ │ │ │ ├── joint.svg │ │ │ │ ├── journal-whills.svg │ │ │ │ ├── kaaba.svg │ │ │ │ ├── key.svg │ │ │ │ ├── keyboard.svg │ │ │ │ ├── khanda.svg │ │ │ │ ├── kiss-beam.svg │ │ │ │ ├── kiss-wink-heart.svg │ │ │ │ ├── kiss.svg │ │ │ │ ├── kiwi-bird.svg │ │ │ │ ├── landmark.svg │ │ │ │ ├── language.svg │ │ │ │ ├── laptop-code.svg │ │ │ │ ├── laptop-medical.svg │ │ │ │ ├── laptop.svg │ │ │ │ ├── laugh-beam.svg │ │ │ │ ├── laugh-squint.svg │ │ │ │ ├── laugh-wink.svg │ │ │ │ ├── laugh.svg │ │ │ │ ├── layer-group.svg │ │ │ │ ├── leaf.svg │ │ │ │ ├── lemon.svg │ │ │ │ ├── less-than-equal.svg │ │ │ │ ├── less-than.svg │ │ │ │ ├── level-down-alt.svg │ │ │ │ ├── level-up-alt.svg │ │ │ │ ├── life-ring.svg │ │ │ │ ├── lightbulb.svg │ │ │ │ ├── link.svg │ │ │ │ ├── lira-sign.svg │ │ │ │ ├── list-alt.svg │ │ │ │ ├── list-ol.svg │ │ │ │ ├── list-ul.svg │ │ │ │ ├── list.svg │ │ │ │ ├── location-arrow.svg │ │ │ │ ├── lock-open.svg │ │ │ │ ├── lock.svg │ │ │ │ ├── long-arrow-alt-down.svg │ │ │ │ ├── long-arrow-alt-left.svg │ │ │ │ ├── long-arrow-alt-right.svg │ │ │ │ ├── long-arrow-alt-up.svg │ │ │ │ ├── low-vision.svg │ │ │ │ ├── luggage-cart.svg │ │ │ │ ├── magic.svg │ │ │ │ ├── magnet.svg │ │ │ │ ├── mail-bulk.svg │ │ │ │ ├── male.svg │ │ │ │ ├── map-marked-alt.svg │ │ │ │ ├── map-marked.svg │ │ │ │ ├── map-marker-alt.svg │ │ │ │ ├── map-marker.svg │ │ │ │ ├── map-pin.svg │ │ │ │ ├── map-signs.svg │ │ │ │ ├── map.svg │ │ │ │ ├── marker.svg │ │ │ │ ├── mars-double.svg │ │ │ │ ├── mars-stroke-h.svg │ │ │ │ ├── mars-stroke-v.svg │ │ │ │ ├── mars-stroke.svg │ │ │ │ ├── mars.svg │ │ │ │ ├── mask.svg │ │ │ │ ├── medal.svg │ │ │ │ ├── medkit.svg │ │ │ │ ├── meh-blank.svg │ │ │ │ ├── meh-rolling-eyes.svg │ │ │ │ ├── meh.svg │ │ │ │ ├── memory.svg │ │ │ │ ├── menorah.svg │ │ │ │ ├── mercury.svg │ │ │ │ ├── meteor.svg │ │ │ │ ├── microchip.svg │ │ │ │ ├── microphone-alt-slash.svg │ │ │ │ ├── microphone-alt.svg │ │ │ │ ├── microphone-slash.svg │ │ │ │ ├── microphone.svg │ │ │ │ ├── microscope.svg │ │ │ │ ├── minus-circle.svg │ │ │ │ ├── minus-square.svg │ │ │ │ ├── minus.svg │ │ │ │ ├── mitten.svg │ │ │ │ ├── mobile-alt.svg │ │ │ │ ├── mobile.svg │ │ │ │ ├── money-bill-alt.svg │ │ │ │ ├── money-bill-wave-alt.svg │ │ │ │ ├── money-bill-wave.svg │ │ │ │ ├── money-bill.svg │ │ │ │ ├── money-check-alt.svg │ │ │ │ ├── money-check.svg │ │ │ │ ├── monument.svg │ │ │ │ ├── moon.svg │ │ │ │ ├── mortar-pestle.svg │ │ │ │ ├── mosque.svg │ │ │ │ ├── motorcycle.svg │ │ │ │ ├── mountain.svg │ │ │ │ ├── mouse-pointer.svg │ │ │ │ ├── mug-hot.svg │ │ │ │ ├── music.svg │ │ │ │ ├── network-wired.svg │ │ │ │ ├── neuter.svg │ │ │ │ ├── newspaper.svg │ │ │ │ ├── not-equal.svg │ │ │ │ ├── notes-medical.svg │ │ │ │ ├── object-group.svg │ │ │ │ ├── object-ungroup.svg │ │ │ │ ├── oil-can.svg │ │ │ │ ├── om.svg │ │ │ │ ├── otter.svg │ │ │ │ ├── outdent.svg │ │ │ │ ├── pager.svg │ │ │ │ ├── paint-brush.svg │ │ │ │ ├── paint-roller.svg │ │ │ │ ├── palette.svg │ │ │ │ ├── pallet.svg │ │ │ │ ├── paper-plane.svg │ │ │ │ ├── paperclip.svg │ │ │ │ ├── parachute-box.svg │ │ │ │ ├── paragraph.svg │ │ │ │ ├── parking.svg │ │ │ │ ├── passport.svg │ │ │ │ ├── pastafarianism.svg │ │ │ │ ├── paste.svg │ │ │ │ ├── pause-circle.svg │ │ │ │ ├── pause.svg │ │ │ │ ├── paw.svg │ │ │ │ ├── peace.svg │ │ │ │ ├── pen-alt.svg │ │ │ │ ├── pen-fancy.svg │ │ │ │ ├── pen-nib.svg │ │ │ │ ├── pen-square.svg │ │ │ │ ├── pen.svg │ │ │ │ ├── pencil-alt.svg │ │ │ │ ├── pencil-ruler.svg │ │ │ │ ├── people-carry.svg │ │ │ │ ├── pepper-hot.svg │ │ │ │ ├── percent.svg │ │ │ │ ├── percentage.svg │ │ │ │ ├── person-booth.svg │ │ │ │ ├── phone-alt.svg │ │ │ │ ├── phone-slash.svg │ │ │ │ ├── phone-square-alt.svg │ │ │ │ ├── phone-square.svg │ │ │ │ ├── phone-volume.svg │ │ │ │ ├── phone.svg │ │ │ │ ├── photo-video.svg │ │ │ │ ├── piggy-bank.svg │ │ │ │ ├── pills.svg │ │ │ │ ├── pizza-slice.svg │ │ │ │ ├── place-of-worship.svg │ │ │ │ ├── plane-arrival.svg │ │ │ │ ├── plane-departure.svg │ │ │ │ ├── plane.svg │ │ │ │ ├── play-circle.svg │ │ │ │ ├── play.svg │ │ │ │ ├── plug.svg │ │ │ │ ├── plus-circle.svg │ │ │ │ ├── plus-square.svg │ │ │ │ ├── plus.svg │ │ │ │ ├── podcast.svg │ │ │ │ ├── poll-h.svg │ │ │ │ ├── poll.svg │ │ │ │ ├── poo-storm.svg │ │ │ │ ├── poo.svg │ │ │ │ ├── poop.svg │ │ │ │ ├── portrait.svg │ │ │ │ ├── pound-sign.svg │ │ │ │ ├── power-off.svg │ │ │ │ ├── pray.svg │ │ │ │ ├── praying-hands.svg │ │ │ │ ├── prescription-bottle-alt.svg │ │ │ │ ├── prescription-bottle.svg │ │ │ │ ├── prescription.svg │ │ │ │ ├── print.svg │ │ │ │ ├── procedures.svg │ │ │ │ ├── project-diagram.svg │ │ │ │ ├── puzzle-piece.svg │ │ │ │ ├── qrcode.svg │ │ │ │ ├── question-circle.svg │ │ │ │ ├── question.svg │ │ │ │ ├── quidditch.svg │ │ │ │ ├── quote-left.svg │ │ │ │ ├── quote-right.svg │ │ │ │ ├── quran.svg │ │ │ │ ├── radiation-alt.svg │ │ │ │ ├── radiation.svg │ │ │ │ ├── rainbow.svg │ │ │ │ ├── random.svg │ │ │ │ ├── receipt.svg │ │ │ │ ├── recycle.svg │ │ │ │ ├── redo-alt.svg │ │ │ │ ├── redo.svg │ │ │ │ ├── registered.svg │ │ │ │ ├── remove-format.svg │ │ │ │ ├── reply-all.svg │ │ │ │ ├── reply.svg │ │ │ │ ├── republican.svg │ │ │ │ ├── restroom.svg │ │ │ │ ├── retweet.svg │ │ │ │ ├── ribbon.svg │ │ │ │ ├── ring.svg │ │ │ │ ├── road.svg │ │ │ │ ├── robot.svg │ │ │ │ ├── rocket.svg │ │ │ │ ├── route.svg │ │ │ │ ├── rss-square.svg │ │ │ │ ├── rss.svg │ │ │ │ ├── ruble-sign.svg │ │ │ │ ├── ruler-combined.svg │ │ │ │ ├── ruler-horizontal.svg │ │ │ │ ├── ruler-vertical.svg │ │ │ │ ├── ruler.svg │ │ │ │ ├── running.svg │ │ │ │ ├── rupee-sign.svg │ │ │ │ ├── sad-cry.svg │ │ │ │ ├── sad-tear.svg │ │ │ │ ├── satellite-dish.svg │ │ │ │ ├── satellite.svg │ │ │ │ ├── save.svg │ │ │ │ ├── school.svg │ │ │ │ ├── screwdriver.svg │ │ │ │ ├── scroll.svg │ │ │ │ ├── sd-card.svg │ │ │ │ ├── search-dollar.svg │ │ │ │ ├── search-location.svg │ │ │ │ ├── search-minus.svg │ │ │ │ ├── search-plus.svg │ │ │ │ ├── search.svg │ │ │ │ ├── seedling.svg │ │ │ │ ├── server.svg │ │ │ │ ├── shapes.svg │ │ │ │ ├── share-alt-square.svg │ │ │ │ ├── share-alt.svg │ │ │ │ ├── share-square.svg │ │ │ │ ├── share.svg │ │ │ │ ├── shekel-sign.svg │ │ │ │ ├── shield-alt.svg │ │ │ │ ├── ship.svg │ │ │ │ ├── shipping-fast.svg │ │ │ │ ├── shoe-prints.svg │ │ │ │ ├── shopping-bag.svg │ │ │ │ ├── shopping-basket.svg │ │ │ │ ├── shopping-cart.svg │ │ │ │ ├── shower.svg │ │ │ │ ├── shuttle-van.svg │ │ │ │ ├── sign-in-alt.svg │ │ │ │ ├── sign-language.svg │ │ │ │ ├── sign-out-alt.svg │ │ │ │ ├── sign.svg │ │ │ │ ├── signal.svg │ │ │ │ ├── signature.svg │ │ │ │ ├── sim-card.svg │ │ │ │ ├── sitemap.svg │ │ │ │ ├── skating.svg │ │ │ │ ├── skiing-nordic.svg │ │ │ │ ├── skiing.svg │ │ │ │ ├── skull-crossbones.svg │ │ │ │ ├── skull.svg │ │ │ │ ├── slash.svg │ │ │ │ ├── sleigh.svg │ │ │ │ ├── sliders-h.svg │ │ │ │ ├── smile-beam.svg │ │ │ │ ├── smile-wink.svg │ │ │ │ ├── smile.svg │ │ │ │ ├── smog.svg │ │ │ │ ├── smoking-ban.svg │ │ │ │ ├── smoking.svg │ │ │ │ ├── sms.svg │ │ │ │ ├── snowboarding.svg │ │ │ │ ├── snowflake.svg │ │ │ │ ├── snowman.svg │ │ │ │ ├── snowplow.svg │ │ │ │ ├── socks.svg │ │ │ │ ├── solar-panel.svg │ │ │ │ ├── sort-alpha-down-alt.svg │ │ │ │ ├── sort-alpha-down.svg │ │ │ │ ├── sort-alpha-up-alt.svg │ │ │ │ ├── sort-alpha-up.svg │ │ │ │ ├── sort-amount-down-alt.svg │ │ │ │ ├── sort-amount-down.svg │ │ │ │ ├── sort-amount-up-alt.svg │ │ │ │ ├── sort-amount-up.svg │ │ │ │ ├── sort-down.svg │ │ │ │ ├── sort-numeric-down-alt.svg │ │ │ │ ├── sort-numeric-down.svg │ │ │ │ ├── sort-numeric-up-alt.svg │ │ │ │ ├── sort-numeric-up.svg │ │ │ │ ├── sort-up.svg │ │ │ │ ├── sort.svg │ │ │ │ ├── spa.svg │ │ │ │ ├── space-shuttle.svg │ │ │ │ ├── spell-check.svg │ │ │ │ ├── spider.svg │ │ │ │ ├── spinner.svg │ │ │ │ ├── splotch.svg │ │ │ │ ├── spray-can.svg │ │ │ │ ├── square-full.svg │ │ │ │ ├── square-root-alt.svg │ │ │ │ ├── square.svg │ │ │ │ ├── stamp.svg │ │ │ │ ├── star-and-crescent.svg │ │ │ │ ├── star-half-alt.svg │ │ │ │ ├── star-half.svg │ │ │ │ ├── star-of-david.svg │ │ │ │ ├── star-of-life.svg │ │ │ │ ├── star.svg │ │ │ │ ├── step-backward.svg │ │ │ │ ├── step-forward.svg │ │ │ │ ├── stethoscope.svg │ │ │ │ ├── sticky-note.svg │ │ │ │ ├── stop-circle.svg │ │ │ │ ├── stop.svg │ │ │ │ ├── stopwatch.svg │ │ │ │ ├── store-alt.svg │ │ │ │ ├── store.svg │ │ │ │ ├── stream.svg │ │ │ │ ├── street-view.svg │ │ │ │ ├── strikethrough.svg │ │ │ │ ├── stroopwafel.svg │ │ │ │ ├── subscript.svg │ │ │ │ ├── subway.svg │ │ │ │ ├── suitcase-rolling.svg │ │ │ │ ├── suitcase.svg │ │ │ │ ├── sun.svg │ │ │ │ ├── superscript.svg │ │ │ │ ├── surprise.svg │ │ │ │ ├── swatchbook.svg │ │ │ │ ├── swimmer.svg │ │ │ │ ├── swimming-pool.svg │ │ │ │ ├── synagogue.svg │ │ │ │ ├── sync-alt.svg │ │ │ │ ├── sync.svg │ │ │ │ ├── syringe.svg │ │ │ │ ├── table-tennis.svg │ │ │ │ ├── table.svg │ │ │ │ ├── tablet-alt.svg │ │ │ │ ├── tablet.svg │ │ │ │ ├── tablets.svg │ │ │ │ ├── tachometer-alt.svg │ │ │ │ ├── tag.svg │ │ │ │ ├── tags.svg │ │ │ │ ├── tape.svg │ │ │ │ ├── tasks.svg │ │ │ │ ├── taxi.svg │ │ │ │ ├── teeth-open.svg │ │ │ │ ├── teeth.svg │ │ │ │ ├── temperature-high.svg │ │ │ │ ├── temperature-low.svg │ │ │ │ ├── tenge.svg │ │ │ │ ├── terminal.svg │ │ │ │ ├── text-height.svg │ │ │ │ ├── text-width.svg │ │ │ │ ├── th-large.svg │ │ │ │ ├── th-list.svg │ │ │ │ ├── th.svg │ │ │ │ ├── theater-masks.svg │ │ │ │ ├── thermometer-empty.svg │ │ │ │ ├── thermometer-full.svg │ │ │ │ ├── thermometer-half.svg │ │ │ │ ├── thermometer-quarter.svg │ │ │ │ ├── thermometer-three-quarters.svg │ │ │ │ ├── thermometer.svg │ │ │ │ ├── thumbs-down.svg │ │ │ │ ├── thumbs-up.svg │ │ │ │ ├── thumbtack.svg │ │ │ │ ├── ticket-alt.svg │ │ │ │ ├── times-circle.svg │ │ │ │ ├── times.svg │ │ │ │ ├── tint-slash.svg │ │ │ │ ├── tint.svg │ │ │ │ ├── tired.svg │ │ │ │ ├── toggle-off.svg │ │ │ │ ├── toggle-on.svg │ │ │ │ ├── toilet-paper.svg │ │ │ │ ├── toilet.svg │ │ │ │ ├── toolbox.svg │ │ │ │ ├── tools.svg │ │ │ │ ├── tooth.svg │ │ │ │ ├── torah.svg │ │ │ │ ├── torii-gate.svg │ │ │ │ ├── tractor.svg │ │ │ │ ├── trademark.svg │ │ │ │ ├── traffic-light.svg │ │ │ │ ├── train.svg │ │ │ │ ├── tram.svg │ │ │ │ ├── transgender-alt.svg │ │ │ │ ├── transgender.svg │ │ │ │ ├── trash-alt.svg │ │ │ │ ├── trash-restore-alt.svg │ │ │ │ ├── trash-restore.svg │ │ │ │ ├── trash.svg │ │ │ │ ├── tree.svg │ │ │ │ ├── trophy.svg │ │ │ │ ├── truck-loading.svg │ │ │ │ ├── truck-monster.svg │ │ │ │ ├── truck-moving.svg │ │ │ │ ├── truck-pickup.svg │ │ │ │ ├── truck.svg │ │ │ │ ├── tshirt.svg │ │ │ │ ├── tty.svg │ │ │ │ ├── tv.svg │ │ │ │ ├── umbrella-beach.svg │ │ │ │ ├── umbrella.svg │ │ │ │ ├── underline.svg │ │ │ │ ├── undo-alt.svg │ │ │ │ ├── undo.svg │ │ │ │ ├── universal-access.svg │ │ │ │ ├── university.svg │ │ │ │ ├── unlink.svg │ │ │ │ ├── unlock-alt.svg │ │ │ │ ├── unlock.svg │ │ │ │ ├── upload.svg │ │ │ │ ├── user-alt-slash.svg │ │ │ │ ├── user-alt.svg │ │ │ │ ├── user-astronaut.svg │ │ │ │ ├── user-check.svg │ │ │ │ ├── user-circle.svg │ │ │ │ ├── user-clock.svg │ │ │ │ ├── user-cog.svg │ │ │ │ ├── user-edit.svg │ │ │ │ ├── user-friends.svg │ │ │ │ ├── user-graduate.svg │ │ │ │ ├── user-injured.svg │ │ │ │ ├── user-lock.svg │ │ │ │ ├── user-md.svg │ │ │ │ ├── user-minus.svg │ │ │ │ ├── user-ninja.svg │ │ │ │ ├── user-nurse.svg │ │ │ │ ├── user-plus.svg │ │ │ │ ├── user-secret.svg │ │ │ │ ├── user-shield.svg │ │ │ │ ├── user-slash.svg │ │ │ │ ├── user-tag.svg │ │ │ │ ├── user-tie.svg │ │ │ │ ├── user-times.svg │ │ │ │ ├── user.svg │ │ │ │ ├── users-cog.svg │ │ │ │ ├── users.svg │ │ │ │ ├── utensil-spoon.svg │ │ │ │ ├── utensils.svg │ │ │ │ ├── vector-square.svg │ │ │ │ ├── venus-double.svg │ │ │ │ ├── venus-mars.svg │ │ │ │ ├── venus.svg │ │ │ │ ├── vial.svg │ │ │ │ ├── vials.svg │ │ │ │ ├── video-slash.svg │ │ │ │ ├── video.svg │ │ │ │ ├── vihara.svg │ │ │ │ ├── voicemail.svg │ │ │ │ ├── volleyball-ball.svg │ │ │ │ ├── volume-down.svg │ │ │ │ ├── volume-mute.svg │ │ │ │ ├── volume-off.svg │ │ │ │ ├── volume-up.svg │ │ │ │ ├── vote-yea.svg │ │ │ │ ├── vr-cardboard.svg │ │ │ │ ├── walking.svg │ │ │ │ ├── wallet.svg │ │ │ │ ├── warehouse.svg │ │ │ │ ├── water.svg │ │ │ │ ├── wave-square.svg │ │ │ │ ├── weight-hanging.svg │ │ │ │ ├── weight.svg │ │ │ │ ├── wheelchair.svg │ │ │ │ ├── wifi.svg │ │ │ │ ├── wind.svg │ │ │ │ ├── window-close.svg │ │ │ │ ├── window-maximize.svg │ │ │ │ ├── window-minimize.svg │ │ │ │ ├── window-restore.svg │ │ │ │ ├── wine-bottle.svg │ │ │ │ ├── wine-glass-alt.svg │ │ │ │ ├── wine-glass.svg │ │ │ │ ├── won-sign.svg │ │ │ │ ├── wrench.svg │ │ │ │ ├── x-ray.svg │ │ │ │ ├── yen-sign.svg │ │ │ │ └── yin-yang.svg │ │ └── webfonts │ │ │ ├── fa-brands-400.eot │ │ │ ├── fa-brands-400.svg │ │ │ ├── fa-brands-400.ttf │ │ │ ├── fa-brands-400.woff │ │ │ ├── fa-brands-400.woff2 │ │ │ ├── fa-regular-400.eot │ │ │ ├── fa-regular-400.svg │ │ │ ├── fa-regular-400.ttf │ │ │ ├── fa-regular-400.woff │ │ │ ├── fa-regular-400.woff2 │ │ │ ├── fa-solid-900.eot │ │ │ ├── fa-solid-900.svg │ │ │ ├── fa-solid-900.ttf │ │ │ ├── fa-solid-900.woff │ │ │ └── fa-solid-900.woff2 │ └── style.css └── templates │ ├── adventure │ ├── adventure │ │ ├── adventure.css │ │ ├── adventure.html │ │ └── adventure.js │ ├── missions │ │ ├── createFolder.html │ │ ├── createFolder.js │ │ ├── gcTasks.html │ │ ├── gcTasks.js │ │ ├── hexbadge.html │ │ ├── hexbadges.css │ │ ├── hexgrid.html │ │ ├── hexmap.css │ │ ├── maps │ │ │ ├── mcgmap.css │ │ │ ├── mcgmap.html │ │ │ └── mcgmap.js │ │ ├── missionCards │ │ │ ├── missionBadge.css │ │ │ ├── missionBadge.html │ │ │ ├── missionCard.css │ │ │ ├── missionCard.html │ │ │ ├── missionCard2.css │ │ │ ├── missionCard2.html │ │ │ └── missionCard2.js │ │ ├── missiongrid.css │ │ ├── missiongrid.css2 │ │ ├── missiongrid.html │ │ ├── missiongrid.js │ │ ├── missions.css │ │ ├── missions.html │ │ ├── missions.js │ │ ├── newTaskModal.html │ │ ├── newTaskModal.js │ │ ├── notes.html │ │ ├── notes.js │ │ ├── scheduler.css │ │ ├── scheduler.html │ │ ├── scheduler.js │ │ ├── taskCards │ │ │ ├── taskBadge.css │ │ │ ├── taskBadge.html │ │ │ ├── taskCard.css │ │ │ ├── taskCard.html │ │ │ └── taskCard.js │ │ ├── taskModal.html │ │ └── taskModal.js │ ├── myAdventure.html │ ├── myAdventure.js │ ├── myMissions.html │ └── myMissions.js │ ├── adventureModal │ └── adventureModal.html │ ├── application │ ├── carruse_old.html │ ├── carrusel.html │ ├── carrusel.js │ ├── drive.js │ ├── footer.html │ ├── header.html │ ├── header.js │ ├── index.css │ ├── index.html │ ├── index.js │ ├── index2.html │ ├── layout.html │ ├── layout.js │ ├── leftNav.css │ ├── leftNav.html │ ├── leftNav.js │ ├── login.css │ ├── login.html │ ├── login.js │ ├── mycarrusel.html │ ├── notfound.html │ ├── notifyModal.html │ ├── register.html │ ├── register.js │ ├── signin.css │ ├── signin.html │ └── signin.js │ ├── battle │ ├── battle.css │ ├── battle.html │ ├── battle.js │ ├── battle2.html │ ├── quizBattle.css │ ├── quizBattle.html │ ├── quizBattle.js │ └── quizBattle2.html │ ├── chat │ ├── chat.css │ ├── chat.html │ ├── chat.js │ ├── chatClass.html │ ├── chatClass.js │ ├── chatClassOld.html │ ├── chatClassOld.js │ ├── chatTeachers.html │ └── chatTeachers.js │ ├── classes │ ├── classes_modals.css │ ├── classes_modals.html │ ├── classes_modals.js │ ├── classes_page.html │ ├── classes_page.js │ ├── gcCourses.html │ ├── gcCourses.js │ └── googleClassroom.js2 │ ├── gamification │ ├── elements.html │ ├── gamification.css │ ├── gamification.html.old │ ├── myComponents │ │ ├── badges │ │ │ ├── badgeCard.css │ │ │ ├── badgeCard.html │ │ │ ├── badgeCard.js │ │ │ ├── badgesList.html │ │ │ └── badgesList.js │ │ ├── behaviours │ │ │ ├── behaviourCard.css │ │ │ ├── behaviourCard.html │ │ │ ├── behaviourCard.js │ │ │ ├── behaviourType.css │ │ │ ├── behaviourType.html │ │ │ ├── behaviourType.js │ │ │ ├── behavioursList.html │ │ │ └── behavioursList.js │ │ ├── cardsList │ │ │ ├── cardCard.css │ │ │ ├── cardCard.html │ │ │ ├── cardCard.js │ │ │ ├── cardsList.html │ │ │ ├── cardsList.js │ │ │ ├── newpowercard.html │ │ │ ├── newpowercard.js │ │ │ ├── powercard.css │ │ │ ├── powercard.html │ │ │ └── powercard.js │ │ ├── chromesList │ │ │ ├── chromeCard.css │ │ │ ├── chromeCard.html │ │ │ ├── chromeCard.js │ │ │ ├── chromesList.html │ │ │ ├── chromesList.js │ │ │ ├── collectionableCard.css │ │ │ ├── collectionableCard.html │ │ │ ├── collectionableCard.js │ │ │ ├── mybadges.css │ │ │ ├── newCollectionableCard.html │ │ │ └── newCollectionableCard.js │ │ ├── componentCard.css │ │ ├── components.html │ │ ├── components.js │ │ ├── convictions │ │ │ ├── convictionCard.css │ │ │ ├── convictionCard.html │ │ │ ├── convictionCard.js │ │ │ ├── convictionsList.html │ │ │ └── convictionsList.js │ │ ├── elementCard.css │ │ ├── eventsList │ │ │ ├── eventCard.css │ │ │ ├── eventCard.html │ │ │ ├── eventCard.js │ │ │ ├── eventsList.html │ │ │ └── eventsList.js │ │ ├── levels │ │ │ ├── levelsPage.html │ │ │ └── levelsPage.js │ │ ├── quotes │ │ │ ├── quoteCard.css │ │ │ ├── quoteCard.html │ │ │ ├── quoteCard.js │ │ │ ├── quotesList.html │ │ │ └── quotesList.js │ │ ├── shareModal.css │ │ ├── shareModal.html │ │ ├── shareModal.js │ │ ├── store │ │ │ ├── itemCard.css │ │ │ ├── itemCard.html │ │ │ ├── itemCard.js │ │ │ ├── store.html │ │ │ └── store.js │ │ └── villains │ │ │ ├── villainModal.html │ │ │ ├── villainModal.js │ │ │ ├── villainsPage.css │ │ │ ├── villainsPage.html │ │ │ └── villainsPage.js │ └── svg │ │ ├── CartasMathmentalRoyale.svg │ │ ├── bg.js │ │ ├── brands.svg │ │ ├── estilos.css │ │ ├── sprite.html2 │ │ ├── superhero.svg │ │ ├── superhero2.svg │ │ └── web.html2 │ ├── groups │ ├── groupPage.html │ ├── groupPage.js │ ├── groupProfile.html │ └── groupProfile.js │ ├── images │ ├── images.css │ ├── images.html │ └── images.js │ ├── includes │ ├── access_denied.html │ ├── loading.html │ ├── mcg.css │ └── mcg.html │ ├── myBreadcrumb │ ├── myBreadcrumb.css2 │ ├── myBreadcrumb.html2 │ └── myBreadcrumb.js2 │ ├── myNav │ ├── myNav.html │ └── myNav.js │ ├── notifications │ ├── notifications.css │ ├── notifications.html │ └── notifications.js │ ├── projects │ ├── projects.html │ └── projects.js │ ├── questions │ ├── newQuestionModal.css │ ├── newQuestionModal.html │ ├── newQuestionModal.js │ ├── newQuizModal.html │ ├── newQuizModal.js │ ├── questionCard.css │ ├── questionCard.html │ ├── questionCard.js │ ├── questionModal.css │ ├── questionModal.html │ ├── questionModal.js │ ├── questions.css │ ├── questions.html │ ├── questions.js │ ├── quizCard.css │ ├── quizCard.html │ ├── quizCard.js │ ├── quizTemplate.css │ ├── quizTemplate.html │ └── quizTemplate.js │ ├── settingsPage │ ├── admin │ │ ├── admin.html │ │ └── admin.js │ ├── import_export │ │ ├── import_export.css │ │ ├── import_export.html │ │ └── import_export.js │ ├── parameters │ │ ├── parametersList.css │ │ ├── parametersList.html │ │ └── parametersList.js │ ├── printer │ │ ├── studentsPrint.html │ │ └── studentsPrint.js │ ├── settingsPage.html │ ├── settingsPage.js │ └── teachers │ │ ├── teachers.html │ │ └── teachers.js │ ├── statistics │ ├── statisticsPage.css │ ├── statisticsPage.html │ └── statisticsPage.js │ ├── student │ ├── chatWithTeacher.html │ ├── chatWithTeacher.js │ ├── profile.css │ ├── profile.html │ ├── profile.js │ ├── studentPage.html │ ├── studentPage.js │ ├── studentProfile.css │ ├── studentProfile.html │ ├── studentProfile.js │ ├── student_modals.html │ └── student_modals.js │ ├── students │ ├── allModal.html │ ├── allModal.js │ ├── badgeModal.html │ ├── badgeModal.js │ ├── cardsModal.html │ ├── cardsModal.js │ ├── chromesModal.html │ ├── chromesModal.js │ ├── coinsModal.html │ ├── coinsModal.js │ ├── groupModal.html │ ├── groupModal.js │ ├── groupsPage.html │ ├── groupsPage.js │ ├── hpModal.html │ ├── hpModal.js │ ├── messageModal.html │ ├── messageModal.js │ ├── storeModal.html │ ├── storeModal.js │ ├── studentsMainPage.html │ ├── studentsMainPage.js │ ├── studentsPage.css │ ├── studentsPage.html │ ├── studentsPage.js │ ├── students_modals.html │ ├── students_modals.js │ ├── xpModal.html │ └── xpModal.js │ ├── tools │ ├── carrousel.css │ ├── conviction.html │ ├── conviction.js │ ├── dessign │ │ ├── components.html │ │ ├── components.js │ │ ├── dessign.html │ │ ├── dinamics.html │ │ ├── dinamics.js │ │ ├── mechanics.html │ │ ├── mechanics.js │ │ ├── storytelling.html │ │ └── storytelling.js │ ├── importfromclass │ │ └── importfromclass.html │ ├── randomCarousel.html │ ├── randomCarousel.js │ ├── randomPage.html │ ├── randomPage.js │ └── tools.html │ ├── view │ ├── adventureView.html │ ├── gamificationView.html │ ├── gamificationView.js │ ├── leftNavView.css │ ├── leftNavView.html │ ├── leftNavView.js │ ├── studentsView.html │ ├── studentsView.js │ ├── toolsView.html │ ├── view.css │ ├── view.html │ └── view.js │ └── visibleClasses │ ├── visibleClasses.css │ ├── visibleClasses.html │ └── visibleClasses.js ├── deleteCommit.txt ├── deploy.txt ├── dropDatabase.txt ├── dropmlab.sh ├── freenom_myclassgame.tk.tar.gz ├── gitignore.sh ├── images ├── android_hdpi.icon.png ├── android_mdpi.icon.png ├── android_mdpi_portrait.splash.png ├── android_xhdpi.icon.png ├── android_xxhdpi.icon.png ├── android_xxxhdpi.icon.png ├── mcg.png ├── mcg_ico (copia).png ├── mcg_ico.png └── mcg_splash.png ├── iniciar.txt ├── initaws.sh ├── install_mongo.txt ├── lib ├── collections │ ├── alumnes.js │ ├── badges.js │ ├── behaviours.js │ ├── behavioursLog.js │ ├── cards.js │ ├── chalPoints.js │ ├── chalXP.js │ ├── challenges.js │ ├── chalmissions.js │ ├── chatClass.js │ ├── chatStudentTeacher.js │ ├── chatTeachers.js │ ├── chromes.js │ ├── classes.js │ ├── convictions.js │ ├── diary.js │ ├── groups.js │ ├── images.js │ ├── levels.js │ ├── mcgParameters.js │ ├── notebook.js │ ├── notebookWork.js │ ├── notifications.js │ ├── questions.js │ ├── quizzes.js │ ├── quotes.js │ ├── randomEvents.js │ ├── store.js │ ├── students.js │ ├── tasks.js │ ├── users.js │ └── villains.js ├── i18n │ ├── ca-VA.i18n.json │ ├── ca.i18n.json │ ├── el.i18n.json │ ├── en.i18n.json │ ├── es-AS.i18n.json │ ├── es.i18n.json │ ├── eu.i18n.json │ ├── gl.i18n.json │ ├── pt.i18n.json │ └── ro.i18n.json └── router.js ├── manual_ github.txt ├── mcg.png ├── mlab.txt ├── mobile-config.js ├── mobile-config.js.old ├── mup_mongodb_backup.txt ├── mygit.sh ├── myssh2.sh ├── nohup.out ├── package-lock.json ├── package.json ├── public ├── .well-known │ └── assetlinks.json ├── images │ ├── @mcg.png │ ├── @mcg2.png │ ├── @mcgnb.png │ ├── AppleAndroid.png │ ├── SIMOEDU23.jpg │ ├── alberto.jpeg │ ├── alberto.jpg │ ├── alvaro.jpeg │ ├── alvaro.jpg │ ├── andrea.jpg │ ├── angry.png │ ├── angry2.png │ ├── btn_google_signin_dark_normal_web.png │ ├── buttons-150235.png │ ├── clases.png │ ├── comportamientos.png │ ├── erasmus.png │ ├── estudiantes.png │ ├── fernando.jpg │ ├── finalista.PNG │ ├── gamiright.png │ ├── github.png │ ├── gofundme-donate-button.png │ ├── google.png │ ├── green.png │ ├── inaki.jpg │ ├── jesus.jpeg │ ├── jesus.jpg │ ├── juanin.jpeg │ ├── juanin.jpg │ ├── juanjose.jpg │ ├── juantoman.jpg │ ├── juantoman2.jpg │ ├── jujo.jpg │ ├── learnUp.jpg │ ├── mcg.png │ ├── mcg_ico.png │ ├── mcgpet │ │ ├── MCG_blue.gif │ │ ├── MCG_green.gif │ │ ├── MCG_red.gif │ │ └── MCG_yellow.gif │ ├── medal-bronze.png │ ├── medal-gold.png │ ├── medal-silver.png │ ├── orange.png │ ├── parent.png │ ├── paypaldonar.png │ ├── random.png │ ├── red.png │ ├── stored.png │ ├── student.png │ ├── student2.png │ ├── swords.png │ ├── teacher.png │ ├── teacher2.png │ └── topsecret.png ├── manifest.json ├── mcgapi │ ├── badgeAPI.html │ ├── badgeAPI.js │ ├── collectionableAPI.html │ ├── collectionableAPI.js │ ├── genially │ │ ├── g1.html │ │ ├── g2.html │ │ ├── g3.html │ │ ├── genially.html │ │ ├── green_check.png │ │ ├── mcgBadge.css │ │ ├── mcgBadge.html │ │ ├── mcgBadge.js │ │ ├── mcggen.css │ │ ├── mcglogin.css │ │ ├── mcglogin.js │ │ ├── package │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── dist │ │ │ │ ├── sweetalert2.all.js │ │ │ │ ├── sweetalert2.all.min.js │ │ │ │ ├── sweetalert2.css │ │ │ │ ├── sweetalert2.js │ │ │ │ ├── sweetalert2.min.css │ │ │ │ └── sweetalert2.min.js │ │ │ ├── package.json │ │ │ ├── src │ │ │ │ ├── SweetAlert.js │ │ │ │ ├── buttons-handlers.js │ │ │ │ ├── constants.js │ │ │ │ ├── globalState.js │ │ │ │ ├── instanceMethods.js │ │ │ │ ├── instanceMethods │ │ │ │ │ ├── _destroy.js │ │ │ │ │ ├── close.js │ │ │ │ │ ├── enable-disable-elements.js │ │ │ │ │ ├── getInput.js │ │ │ │ │ ├── hideLoading.js │ │ │ │ │ ├── progress-steps.js │ │ │ │ │ ├── update.js │ │ │ │ │ └── validation-message.js │ │ │ │ ├── keydown-handler.js │ │ │ │ ├── popup-click-handler.js │ │ │ │ ├── privateMethods.js │ │ │ │ ├── privateProps.js │ │ │ │ ├── scss │ │ │ │ │ ├── _animations.scss │ │ │ │ │ ├── _body.scss │ │ │ │ │ ├── _core.scss │ │ │ │ │ ├── _mixins.scss │ │ │ │ │ ├── _theming.scss │ │ │ │ │ ├── _toasts-animations.scss │ │ │ │ │ ├── _toasts-body.scss │ │ │ │ │ └── _toasts.scss │ │ │ │ ├── staticMethods.js │ │ │ │ ├── staticMethods │ │ │ │ │ ├── argsToParams.js │ │ │ │ │ ├── bindClickHandler.js │ │ │ │ │ ├── dom.js │ │ │ │ │ ├── fire.js │ │ │ │ │ ├── mixin.js │ │ │ │ │ ├── showLoading.js │ │ │ │ │ └── timer.js │ │ │ │ ├── sweetalert2.js │ │ │ │ ├── sweetalert2.scss │ │ │ │ ├── types.js │ │ │ │ ├── utils │ │ │ │ │ ├── DismissReason.js │ │ │ │ │ ├── Timer.js │ │ │ │ │ ├── aria.js │ │ │ │ │ ├── classes.js │ │ │ │ │ ├── defaultInputValidators.js │ │ │ │ │ ├── dom │ │ │ │ │ │ ├── animationEndEvent.js │ │ │ │ │ │ ├── domUtils.js │ │ │ │ │ │ ├── getters.js │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── init.js │ │ │ │ │ │ ├── inputUtils.js │ │ │ │ │ │ ├── measureScrollbar.js │ │ │ │ │ │ ├── parseHtmlToContainer.js │ │ │ │ │ │ └── renderers │ │ │ │ │ │ │ ├── render.js │ │ │ │ │ │ │ ├── renderActions.js │ │ │ │ │ │ │ ├── renderCloseButton.js │ │ │ │ │ │ │ ├── renderContainer.js │ │ │ │ │ │ │ ├── renderContent.js │ │ │ │ │ │ │ ├── renderFooter.js │ │ │ │ │ │ │ ├── renderIcon.js │ │ │ │ │ │ │ ├── renderImage.js │ │ │ │ │ │ │ ├── renderInput.js │ │ │ │ │ │ │ ├── renderPopup.js │ │ │ │ │ │ │ ├── renderProgressSteps.js │ │ │ │ │ │ │ └── renderTitle.js │ │ │ │ │ ├── getTemplateParams.js │ │ │ │ │ ├── iosFix.js │ │ │ │ │ ├── isNodeEnv.js │ │ │ │ │ ├── openPopup.js │ │ │ │ │ ├── params.js │ │ │ │ │ ├── scrollbarFix.js │ │ │ │ │ ├── setParameters.js │ │ │ │ │ └── utils.js │ │ │ │ └── variables.scss │ │ │ ├── sweetalert2.all.min.js │ │ │ └── sweetalert2.d.ts │ │ ├── prova.js │ │ ├── sa.js │ │ ├── sweetalert2.all.min.js │ │ ├── sweetalert2.min.css │ │ └── sweetalert2.min.js │ ├── itemAPI.html │ ├── itemAPI.js │ ├── mcgAPI.css │ ├── powerAPI.html │ └── powerAPI.js ├── privacy │ ├── privacidad.html │ ├── privacitat.html │ ├── privacy.css │ └── privacy.html ├── proves │ └── vs.html ├── sound │ ├── level-up-retro-video-game-soundroll.mp3 │ ├── money.mp3 │ ├── ruleta.mp3 │ └── video-game-points-lost-retro-glitchedtones.mp3 ├── svg │ ├── CartaAzul.svg │ └── superhero.svg └── sw.js ├── pull.sh ├── release.txt ├── resources ├── icons │ └── mcg.png └── splash │ └── mcg.png ├── restore.sh ├── scriptc9.sh ├── server ├── main.js ├── publications.js ├── publications.js.old └── publications.js2 ├── static-assets.json └── trucosmongo.txt /.c9/.nakignore: -------------------------------------------------------------------------------- 1 | *~backup-* 2 | .c9revisions 3 | .c9 4 | .git 5 | .svn 6 | .DS_Store 7 | .bzr 8 | .cdv 9 | ~.dep 10 | ~.dot 11 | ~.nib 12 | ~.plst 13 | .hg 14 | .pc 15 | *.min.js 16 | .nakignore 17 | /dev 18 | -------------------------------------------------------------------------------- /.c9/metadata/environment/README.md: -------------------------------------------------------------------------------- 1 | {"filter":false,"title":"README.md","tooltip":"/README.md","undoManager":{"mark":-1,"position":-1,"stack":[]},"ace":{"folds":[],"scrolltop":0,"scrollleft":0,"selection":{"start":{"row":13,"column":6},"end":{"row":13,"column":29},"isBackwards":true},"options":{"guessTabSize":true,"useWrapMode":false,"wrapToView":true},"firstLineState":0},"timestamp":1559633941000,"hash":"2f449b6057f4ea77fb08c6a48acd253bb1e39155"} -------------------------------------------------------------------------------- /.c9/metadata/environment/dropmlab.sh: -------------------------------------------------------------------------------- 1 | {"filter":false,"title":"dropmlab.sh","tooltip":"/dropmlab.sh","undoManager":{"mark":-1,"position":-1,"stack":[]},"ace":{"folds":[],"scrolltop":0,"scrollleft":0,"selection":{"start":{"row":0,"column":0},"end":{"row":0,"column":0},"isBackwards":false},"options":{"guessTabSize":true,"useWrapMode":false,"wrapToView":true},"firstLineState":0},"timestamp":1571153140844,"hash":"759ddae6623d98023c70d0252a5776118946176d"} -------------------------------------------------------------------------------- /.c9/metadata/environment/init.sh: -------------------------------------------------------------------------------- 1 | {"filter":false,"title":"init.sh","tooltip":"/init.sh","undoManager":{"mark":-1,"position":-1,"stack":[]},"ace":{"folds":[],"scrolltop":0,"scrollleft":0,"selection":{"start":{"row":4,"column":0},"end":{"row":4,"column":39},"isBackwards":true},"options":{"guessTabSize":true,"useWrapMode":false,"wrapToView":true},"firstLineState":0},"timestamp":1562133351899,"hash":"e6bbe4aea9785cbf4204429dae9dc01299362a65"} -------------------------------------------------------------------------------- /.c9/metadata/environment/myssh.sh: -------------------------------------------------------------------------------- 1 | {"filter":false,"title":"myssh.sh","tooltip":"/myssh.sh","undoManager":{"mark":-1,"position":-1,"stack":[]},"ace":{"folds":[],"scrolltop":0,"scrollleft":0,"selection":{"start":{"row":0,"column":33},"end":{"row":0,"column":33},"isBackwards":false},"options":{"guessTabSize":true,"useWrapMode":false,"wrapToView":true},"firstLineState":0},"timestamp":1569065045524,"hash":"6e27320a4cdd6934313853458afd22f9af35f3e5"} -------------------------------------------------------------------------------- /.c9/metadata/tab19: -------------------------------------------------------------------------------- 1 | {"filter":false,"title":"bash - \"ubuntu@juantoman-mcg1819-6202696: ~/workspace\" ","tooltip":"bash - \"ubuntu@juantoman-mcg1819-6202696: ~/workspace\" ","undoManager":{"mark":-1,"position":-1,"stack":[]},"terminal":{"id":"juantoman@mcg1819_730","cwd":"","width":1136,"height":221,"scrollTop":2585},"timestamp":1558881901048,"hash":"da39a3ee5e6b4b0d3255bfef95601890afd80709"} -------------------------------------------------------------------------------- /.c9/metadata/tab20: -------------------------------------------------------------------------------- 1 | {"changed":false,"filter":false,"title":"bash - \"ip-172-31-80-11\" ","tooltip":"bash - \"ip-172-31-80-11\" ","value":"","undoManager":{"mark":-1,"position":-1,"stack":[]},"terminal":{"id":"cloud9_terminal_72","cwd":"","width":1206,"height":200,"scrollTop":413.5}} -------------------------------------------------------------------------------- /.c9/metadata/tab28: -------------------------------------------------------------------------------- 1 | {"filter":false,"title":"bash - \"juantoman-mcg1819-6202696\" ","tooltip":"bash - \"juantoman-mcg1819-6202696\" ","undoManager":{"mark":-1,"position":-1,"stack":[]},"terminal":{"id":"juantoman@mcg1819_256","cwd":"","width":1619,"height":214,"scrollTop":8720},"timestamp":1554819490301,"hash":"da39a3ee5e6b4b0d3255bfef95601890afd80709"} -------------------------------------------------------------------------------- /.c9/metadata/workspace/client/main.js: -------------------------------------------------------------------------------- 1 | {"filter":false,"title":"main.js","tooltip":"/client/main.js","undoManager":{"mark":-1,"position":-1,"stack":[]},"ace":{"folds":[],"scrolltop":0,"scrollleft":0,"selection":{"start":{"row":0,"column":0},"end":{"row":0,"column":0},"isBackwards":false},"options":{"guessTabSize":true,"useWrapMode":false,"wrapToView":true},"firstLineState":0},"timestamp":1538381959683,"hash":"da39a3ee5e6b4b0d3255bfef95601890afd80709"} -------------------------------------------------------------------------------- /.c9/metadata/workspace/init.sh: -------------------------------------------------------------------------------- 1 | {"filter":false,"title":"init.sh","tooltip":"/init.sh","undoManager":{"mark":-1,"position":-1,"stack":[]},"ace":{"folds":[],"scrolltop":0,"scrollleft":0,"selection":{"start":{"row":0,"column":0},"end":{"row":0,"column":0},"isBackwards":false},"options":{"guessTabSize":true,"useWrapMode":false,"wrapToView":true},"firstLineState":0},"timestamp":1553527570095,"hash":"e6bbe4aea9785cbf4204429dae9dc01299362a65"} -------------------------------------------------------------------------------- /.c9/metadata/workspace/public/images/@mcg.png: -------------------------------------------------------------------------------- 1 | {"filter":false,"title":"@mcg.png","tooltip":"/public/images/@mcg.png","undoManager":{"mark":-1,"position":-1,"stack":[]},"imgeditor":{},"timestamp":1560327319331,"hash":"da39a3ee5e6b4b0d3255bfef95601890afd80709"} -------------------------------------------------------------------------------- /.c9/metadata/workspace/public/images/@mcg2.png: -------------------------------------------------------------------------------- 1 | {"filter":false,"title":"@mcg2.png","tooltip":"/public/images/@mcg2.png","undoManager":{"mark":-1,"position":-1,"stack":[]},"imgeditor":{},"timestamp":1559909263609,"hash":"da39a3ee5e6b4b0d3255bfef95601890afd80709"} -------------------------------------------------------------------------------- /.c9/metadata/workspace/public/images/@mcgnb.png: -------------------------------------------------------------------------------- 1 | {"filter":false,"title":"@mcgnb.png","tooltip":"/public/images/@mcgnb.png","undoManager":{"mark":-1,"position":-1,"stack":[]},"imgeditor":{},"timestamp":1560327311661,"hash":"da39a3ee5e6b4b0d3255bfef95601890afd80709"} -------------------------------------------------------------------------------- /.c9/metadata/workspace/public/images/add_user_128.png: -------------------------------------------------------------------------------- 1 | {"filter":false,"title":"add_user_128.png","tooltip":"/public/images/add_user_128.png","undoManager":{"mark":-1,"position":-1,"stack":[]},"imgeditor":{},"timestamp":1541493138252,"hash":"da39a3ee5e6b4b0d3255bfef95601890afd80709"} -------------------------------------------------------------------------------- /.c9/metadata/workspace/public/images/add_user_64.png: -------------------------------------------------------------------------------- 1 | {"filter":false,"title":"add_user_64.png","tooltip":"/public/images/add_user_64.png","undoManager":{"mark":-1,"position":-1,"stack":[]},"imgeditor":{},"timestamp":1541493136733,"hash":"da39a3ee5e6b4b0d3255bfef95601890afd80709"} -------------------------------------------------------------------------------- /.c9/metadata/workspace/public/images/clases.png: -------------------------------------------------------------------------------- 1 | {"filter":false,"title":"clases.png","tooltip":"/public/images/clases.png","undoManager":{"mark":-1,"position":-1,"stack":[]},"imgeditor":{},"timestamp":1541493140481,"hash":"da39a3ee5e6b4b0d3255bfef95601890afd80709"} -------------------------------------------------------------------------------- /.c9/metadata/workspace/public/images/image1.png: -------------------------------------------------------------------------------- 1 | {"filter":false,"title":"image1.png","tooltip":"/public/images/image1.png","undoManager":{"mark":-1,"position":-1,"stack":[]},"imgeditor":{},"timestamp":1541493079761,"hash":"da39a3ee5e6b4b0d3255bfef95601890afd80709"} -------------------------------------------------------------------------------- /.c9/metadata/workspace/public/images/image10.png: -------------------------------------------------------------------------------- 1 | {"filter":false,"title":"image10.png","tooltip":"/public/images/image10.png","undoManager":{"mark":-1,"position":-1,"stack":[]},"imgeditor":{},"timestamp":1541493096357,"hash":"da39a3ee5e6b4b0d3255bfef95601890afd80709"} -------------------------------------------------------------------------------- /.c9/metadata/workspace/public/images/image11.png: -------------------------------------------------------------------------------- 1 | {"filter":false,"title":"image11.png","tooltip":"/public/images/image11.png","undoManager":{"mark":-1,"position":-1,"stack":[]},"imgeditor":{},"timestamp":1541493097412,"hash":"da39a3ee5e6b4b0d3255bfef95601890afd80709"} -------------------------------------------------------------------------------- /.c9/metadata/workspace/public/images/image12.png: -------------------------------------------------------------------------------- 1 | {"filter":false,"title":"image12.png","tooltip":"/public/images/image12.png","undoManager":{"mark":-1,"position":-1,"stack":[]},"imgeditor":{},"timestamp":1541493098749,"hash":"da39a3ee5e6b4b0d3255bfef95601890afd80709"} -------------------------------------------------------------------------------- /.c9/metadata/workspace/public/images/image13.png: -------------------------------------------------------------------------------- 1 | {"filter":false,"title":"image13.png","tooltip":"/public/images/image13.png","undoManager":{"mark":-1,"position":-1,"stack":[]},"imgeditor":{},"timestamp":1541493099507,"hash":"da39a3ee5e6b4b0d3255bfef95601890afd80709"} -------------------------------------------------------------------------------- /.c9/metadata/workspace/public/images/image14.png: -------------------------------------------------------------------------------- 1 | {"filter":false,"title":"image14.png","tooltip":"/public/images/image14.png","undoManager":{"mark":-1,"position":-1,"stack":[]},"imgeditor":{},"timestamp":1541493100696,"hash":"da39a3ee5e6b4b0d3255bfef95601890afd80709"} -------------------------------------------------------------------------------- /.c9/metadata/workspace/public/images/image2.png: -------------------------------------------------------------------------------- 1 | {"filter":false,"title":"image2.png","tooltip":"/public/images/image2.png","undoManager":{"mark":-1,"position":-1,"stack":[]},"imgeditor":{},"timestamp":1541493086075,"hash":"da39a3ee5e6b4b0d3255bfef95601890afd80709"} -------------------------------------------------------------------------------- /.c9/metadata/workspace/public/images/image3.png: -------------------------------------------------------------------------------- 1 | {"filter":false,"title":"image3.png","tooltip":"/public/images/image3.png","undoManager":{"mark":-1,"position":-1,"stack":[]},"imgeditor":{},"timestamp":1541493088144,"hash":"da39a3ee5e6b4b0d3255bfef95601890afd80709"} -------------------------------------------------------------------------------- /.c9/metadata/workspace/public/images/image4.png: -------------------------------------------------------------------------------- 1 | {"filter":false,"title":"image4.png","tooltip":"/public/images/image4.png","undoManager":{"mark":-1,"position":-1,"stack":[]},"imgeditor":{},"timestamp":1541493088979,"hash":"da39a3ee5e6b4b0d3255bfef95601890afd80709"} -------------------------------------------------------------------------------- /.c9/metadata/workspace/public/images/image5.png: -------------------------------------------------------------------------------- 1 | {"filter":false,"title":"image5.png","tooltip":"/public/images/image5.png","undoManager":{"mark":-1,"position":-1,"stack":[]},"imgeditor":{},"timestamp":1541493090329,"hash":"da39a3ee5e6b4b0d3255bfef95601890afd80709"} -------------------------------------------------------------------------------- /.c9/metadata/workspace/public/images/image6.png: -------------------------------------------------------------------------------- 1 | {"filter":false,"title":"image6.png","tooltip":"/public/images/image6.png","undoManager":{"mark":-1,"position":-1,"stack":[]},"imgeditor":{},"timestamp":1541493091933,"hash":"da39a3ee5e6b4b0d3255bfef95601890afd80709"} -------------------------------------------------------------------------------- /.c9/metadata/workspace/public/images/image7.png: -------------------------------------------------------------------------------- 1 | {"filter":false,"title":"image7.png","tooltip":"/public/images/image7.png","undoManager":{"mark":-1,"position":-1,"stack":[]},"imgeditor":{},"timestamp":1541493093371,"hash":"da39a3ee5e6b4b0d3255bfef95601890afd80709"} -------------------------------------------------------------------------------- /.c9/metadata/workspace/public/images/image8.png: -------------------------------------------------------------------------------- 1 | {"filter":false,"title":"image8.png","tooltip":"/public/images/image8.png","undoManager":{"mark":-1,"position":-1,"stack":[]},"imgeditor":{},"timestamp":1541493094413,"hash":"da39a3ee5e6b4b0d3255bfef95601890afd80709"} -------------------------------------------------------------------------------- /.c9/metadata/workspace/public/images/image9.png: -------------------------------------------------------------------------------- 1 | {"filter":false,"title":"image9.png","tooltip":"/public/images/image9.png","undoManager":{"mark":-1,"position":-1,"stack":[]},"imgeditor":{},"timestamp":1541493095349,"hash":"da39a3ee5e6b4b0d3255bfef95601890afd80709"} -------------------------------------------------------------------------------- /.c9/metadata/workspace/public/images/mcg.png: -------------------------------------------------------------------------------- 1 | {"filter":false,"title":"mcg.png","tooltip":"/public/images/mcg.png","undoManager":{"mark":-1,"position":-1,"stack":[]},"imgeditor":{},"timestamp":1541493101546,"hash":"da39a3ee5e6b4b0d3255bfef95601890afd80709"} -------------------------------------------------------------------------------- /.c9/metadata/workspace/public/images/random.png: -------------------------------------------------------------------------------- 1 | {"filter":false,"title":"random.png","tooltip":"/public/images/random.png","undoManager":{"mark":-1,"position":-1,"stack":[]},"imgeditor":{},"timestamp":1541493103314,"hash":"da39a3ee5e6b4b0d3255bfef95601890afd80709"} -------------------------------------------------------------------------------- /.c9/metadata/workspace/public/images/student.png: -------------------------------------------------------------------------------- 1 | {"filter":false,"title":"student.png","tooltip":"/public/images/student.png","undoManager":{"mark":-1,"position":-1,"stack":[]},"imgeditor":{},"timestamp":1548683297686,"hash":"da39a3ee5e6b4b0d3255bfef95601890afd80709"} -------------------------------------------------------------------------------- /.c9/metadata/workspace/public/images/teacher.png: -------------------------------------------------------------------------------- 1 | {"filter":false,"title":"teacher.png","tooltip":"/public/images/teacher.png","undoManager":{"mark":-1,"position":-1,"stack":[]},"imgeditor":{},"timestamp":1541493109464,"hash":"da39a3ee5e6b4b0d3255bfef95601890afd80709"} -------------------------------------------------------------------------------- /.c9/metadata/workspace/public/images/user_128.png: -------------------------------------------------------------------------------- 1 | {"filter":false,"title":"user_128.png","tooltip":"/public/images/user_128.png","undoManager":{"mark":-1,"position":-1,"stack":[]},"imgeditor":{},"timestamp":1541493112283,"hash":"da39a3ee5e6b4b0d3255bfef95601890afd80709"} -------------------------------------------------------------------------------- /.c9/metadata/workspace/public/images/user_64.png: -------------------------------------------------------------------------------- 1 | {"filter":false,"title":"user_64.png","tooltip":"/public/images/user_64.png","undoManager":{"mark":-1,"position":-1,"stack":[]},"imgeditor":{},"timestamp":1541493111081,"hash":"da39a3ee5e6b4b0d3255bfef95601890afd80709"} -------------------------------------------------------------------------------- /.c9/metadata/workspace/public/images/user_group_128.png: -------------------------------------------------------------------------------- 1 | {"filter":false,"title":"user_group_128.png","tooltip":"/public/images/user_group_128.png","undoManager":{"mark":-1,"position":-1,"stack":[]},"imgeditor":{},"timestamp":1541493114946,"hash":"da39a3ee5e6b4b0d3255bfef95601890afd80709"} -------------------------------------------------------------------------------- /.c9/metadata/workspace/public/images/user_group_64.png: -------------------------------------------------------------------------------- 1 | {"filter":false,"title":"user_group_64.png","tooltip":"/public/images/user_group_64.png","undoManager":{"mark":-1,"position":-1,"stack":[]},"imgeditor":{},"timestamp":1541493113057,"hash":"da39a3ee5e6b4b0d3255bfef95601890afd80709"} -------------------------------------------------------------------------------- /.c9/out_of_memory: -------------------------------------------------------------------------------- 1 | 1561795661514 -------------------------------------------------------------------------------- /.deploy/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "public": { 3 | 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /.deploy2/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "public": { 3 | 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | init.sh 3 | mup.js -------------------------------------------------------------------------------- /.idea/MyClassGameApp.iml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /.idea/mcgApp.iml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /.meteor/.gitignore: -------------------------------------------------------------------------------- 1 | local 2 | -------------------------------------------------------------------------------- /.meteor/.id: -------------------------------------------------------------------------------- 1 | # This file contains a token that is unique to your project. 2 | # Check it into your repository along with the rest of this directory. 3 | # It can be used for purposes such as: 4 | # - ensuring you don't accidentally deploy one app on top of another 5 | # - providing package authors with aggregated statistics 6 | 7 | 2ai41sqggjxsfrfznm 8 | -------------------------------------------------------------------------------- /.meteor/cordova-plugins: -------------------------------------------------------------------------------- 1 | cordova-plugin-splashscreen@4.1.0 2 | cordova-plugin-statusbar@2.3.0 3 | cordova-plugin-whitelist@1.3.4 4 | -------------------------------------------------------------------------------- /.meteor/platforms: -------------------------------------------------------------------------------- 1 | android 2 | browser 3 | server 4 | -------------------------------------------------------------------------------- /.meteor/release: -------------------------------------------------------------------------------- 1 | METEOR@1.6.1.4 2 | -------------------------------------------------------------------------------- /@mcgnb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juantoman/MyClassGame/6a395c1020b682ccfd6577ea74758897e72de86f/@mcgnb.png -------------------------------------------------------------------------------- /android.sh: -------------------------------------------------------------------------------- 1 | export JAVA_HOME=/usr/lib/jvm/java-8-openjdk-amd64 2 | export ANDROID_HOME="$HOME/Android/Sdk" 3 | export PATH=$PATH:$ANDROID_HOME/tools:$ANDROID_HOME/platform-tools:$JAVA_HOME/bin:/opt/gradle/gradle-5.0/bin -------------------------------------------------------------------------------- /backup.sh: -------------------------------------------------------------------------------- 1 | mongodump -h 127.0.0.1 --port 3001 -d meteor 2 | mongorestore -h ds247270.mlab.com:47270 -d mcg -u mcg dump/meteor -------------------------------------------------------------------------------- /chart.js.txt: -------------------------------------------------------------------------------- 1 | meteor npm i 2 | meteor npm i chart.js --save -------------------------------------------------------------------------------- /client/bootstrap3/custom-mixins.import.less: -------------------------------------------------------------------------------- 1 | /* Define here your custom Bootstrap mixins */ 2 | -------------------------------------------------------------------------------- /client/bootstrap3/custom-variables.import.less: -------------------------------------------------------------------------------- 1 | /* Define here your custom Bootstrap variables */ 2 | -------------------------------------------------------------------------------- /client/main.css: -------------------------------------------------------------------------------- 1 | /* CSS declarations go here */ 2 | -------------------------------------------------------------------------------- /client/stylesheets/fas/less/_animated.less: -------------------------------------------------------------------------------- 1 | // Animated Icons 2 | // -------------------------- 3 | 4 | .@{fa-css-prefix}-spin { 5 | animation: fa-spin 2s infinite linear; 6 | } 7 | 8 | .@{fa-css-prefix}-pulse { 9 | animation: fa-spin 1s infinite steps(8); 10 | } 11 | 12 | @keyframes fa-spin { 13 | 0% { 14 | transform: rotate(0deg); 15 | } 16 | 100% { 17 | transform: rotate(360deg); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /client/stylesheets/fas/less/_core.less: -------------------------------------------------------------------------------- 1 | // Base Class Definition 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix}, .fas, .far, .fal, .fab { 5 | -moz-osx-font-smoothing: grayscale; 6 | -webkit-font-smoothing: antialiased; 7 | display: inline-block; 8 | font-style: normal; 9 | font-variant: normal; 10 | text-rendering: auto; 11 | line-height: 1; 12 | } 13 | -------------------------------------------------------------------------------- /client/stylesheets/fas/less/_fixed-width.less: -------------------------------------------------------------------------------- 1 | // Fixed Width Icons 2 | // ------------------------- 3 | .@{fa-css-prefix}-fw { 4 | text-align: center; 5 | width: (20em / 16); 6 | } 7 | -------------------------------------------------------------------------------- /client/stylesheets/fas/less/_screen-reader.less: -------------------------------------------------------------------------------- 1 | // Screen Readers 2 | // ------------------------- 3 | 4 | .sr-only { .sr-only(); } 5 | .sr-only-focusable { .sr-only-focusable(); } 6 | -------------------------------------------------------------------------------- /client/stylesheets/fas/less/v4-shims.less: -------------------------------------------------------------------------------- 1 | /*! 2 | * Font Awesome Free 5.9.0 by @fontawesome - https://fontawesome.com 3 | * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) 4 | */ 5 | @import '_variables.less'; 6 | @import '_shims.less'; 7 | -------------------------------------------------------------------------------- /client/stylesheets/fas/scss/_animated.scss: -------------------------------------------------------------------------------- 1 | // Animated Icons 2 | // -------------------------- 3 | 4 | .#{$fa-css-prefix}-spin { 5 | animation: fa-spin 2s infinite linear; 6 | } 7 | 8 | .#{$fa-css-prefix}-pulse { 9 | animation: fa-spin 1s infinite steps(8); 10 | } 11 | 12 | @keyframes fa-spin { 13 | 0% { 14 | transform: rotate(0deg); 15 | } 16 | 17 | 100% { 18 | transform: rotate(360deg); 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /client/stylesheets/fas/scss/_fixed-width.scss: -------------------------------------------------------------------------------- 1 | // Fixed Width Icons 2 | // ------------------------- 3 | .#{$fa-css-prefix}-fw { 4 | text-align: center; 5 | width: $fa-fw-width; 6 | } 7 | -------------------------------------------------------------------------------- /client/stylesheets/fas/scss/_screen-reader.scss: -------------------------------------------------------------------------------- 1 | // Screen Readers 2 | // ------------------------- 3 | 4 | .sr-only { @include sr-only; } 5 | .sr-only-focusable { @include sr-only-focusable; } 6 | -------------------------------------------------------------------------------- /client/stylesheets/fas/scss/v4-shims.scss: -------------------------------------------------------------------------------- 1 | /*! 2 | * Font Awesome Free 5.9.0 by @fontawesome - https://fontawesome.com 3 | * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) 4 | */ 5 | @import 'variables'; 6 | @import 'shims'; 7 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/brands/adn.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/brands/adobe.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/brands/angular.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/brands/artstation.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/brands/atlassian.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/brands/autoprefixer.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/brands/bandcamp.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/brands/bitbucket.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/brands/black-tie.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/brands/bluetooth-b.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/brands/bluetooth.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/brands/buysellads.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/brands/cloudsmith.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/brands/creative-commons-nd.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/brands/css3-alt.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/brands/css3.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/brands/cuttlefish.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/brands/dashcube.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/brands/deviantart.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/brands/digg.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/brands/digital-ocean.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/brands/discourse.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/brands/dochub.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/brands/dropbox.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/brands/dyalog.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/brands/elementor.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/brands/envira.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/brands/ethereum.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/brands/facebook-f.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/brands/facebook-square.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/brands/facebook.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/brands/figma.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/brands/firstdraft.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/brands/flickr.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/brands/flipboard.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/brands/fulcrum.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/brands/gg.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/brands/gitlab.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/brands/gitter.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/brands/google-drive.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/brands/google-play.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/brands/google.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/brands/gratipay.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/brands/hacker-news-square.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/brands/hacker-news.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/brands/hotjar.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/brands/houzz.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/brands/html5.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/brands/jira.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/brands/kaggle.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/brands/kickstarter-k.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/brands/korvue.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/brands/linkedin-in.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/brands/magento.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/brands/markdown.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/brands/maxcdn.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/brands/microsoft.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/brands/mix.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/brands/modx.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/brands/monero.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/brands/npm.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/brands/openid.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/brands/patreon.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/brands/pied-piper.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/brands/product-hunt.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/brands/rockrms.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/brands/servicestack.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/brands/sistrix.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/brands/sourcetree.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/brands/stack-exchange.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/brands/stack-overflow.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/brands/strava.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/brands/stripe-s.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/brands/telegram-plane.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/brands/telegram.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/brands/think-peaks.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/brands/twitch.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/brands/typo3.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/brands/uikit.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/brands/viacoin.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/brands/vuejs.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/brands/windows.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/brands/y-combinator.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/brands/yahoo.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/brands/yandex-international.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/brands/yandex.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/regular/arrow-alt-circle-down.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/regular/arrow-alt-circle-left.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/regular/arrow-alt-circle-up.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/regular/bookmark.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/regular/calendar.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/regular/caret-square-down.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/regular/caret-square-left.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/regular/caret-square-right.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/regular/caret-square-up.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/regular/circle.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/regular/comment-alt.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/regular/dot-circle.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/regular/file.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/regular/folder-open.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/regular/folder.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/regular/meh-blank.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/regular/minus-square.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/regular/play-circle.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/regular/square.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/regular/star-half.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/regular/sticky-note.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/regular/stop-circle.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/regular/window-maximize.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/regular/window-minimize.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/regular/window-restore.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/adjust.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/angle-down.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/angle-left.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/angle-right.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/angle-up.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/archive.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/arrow-alt-circle-down.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/arrow-alt-circle-left.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/arrow-alt-circle-right.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/arrow-alt-circle-up.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/arrow-down.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/arrow-left.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/arrow-right.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/arrow-up.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/backward.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/ban.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/battery-empty.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/battery-full.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/battery-half.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/battery-quarter.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/battery-three-quarters.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/bed.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/bold.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/bolt.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/bookmark.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/border-all.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/bowling-ball.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/box.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/bread-slice.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/briefcase.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/brush.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/burn.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/calendar.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/caret-down.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/caret-left.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/caret-right.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/caret-square-down.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/caret-square-left.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/caret-square-right.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/caret-square-up.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/caret-up.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/chalkboard.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/chart-area.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/check.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/cheese.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/chess-king.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/chevron-circle-down.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/chevron-circle-left.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/chevron-circle-right.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/chevron-circle-up.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/chevron-down.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/chevron-left.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/chevron-right.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/chevron-up.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/circle.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/clipboard.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/clock.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/clone.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/cloud.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/coffee.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/columns.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/comment-alt.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/comment.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/compact-disc.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/concierge-bell.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/crop-alt.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/cross.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/cube.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/desktop.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/dice-one.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/dice-two.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/divide.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/door-closed.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/dot-circle.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/egg.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/eject.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/ellipsis-h.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/ellipsis-v.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/equals.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/ethernet.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/exclamation.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/fast-backward.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/fast-forward.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/file.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/filter.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/fire.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/flask.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/folder-minus.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/folder.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/forward.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/gem.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/genderless.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/glass-martini-alt.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/glass-martini.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/glass-whiskey.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/greater-than.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/grip-lines-vertical.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/grip-lines.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/hand-holding.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/hard-hat.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/heart-broken.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/heart.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/hockey-puck.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/hospital-symbol.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/ice-cream.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/icicles.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/inbox.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/industry.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/info.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/italic.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/laptop.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/less-than.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/level-down-alt.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/level-up-alt.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/location-arrow.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/lock-open.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/lock.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/long-arrow-alt-down.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/long-arrow-alt-left.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/long-arrow-alt-right.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/long-arrow-alt-up.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/male.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/map-marker-alt.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/map-marker.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/map.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/mars.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/meh-blank.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/meh.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/minus-circle.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/minus-square.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/minus.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/mitten.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/mobile-alt.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/mobile.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/moon.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/mountain.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/mouse-pointer.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/music.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/neuter.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/pager.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/paper-plane.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/paragraph.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/parking.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/pause-circle.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/pause.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/pen.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/phone-alt.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/phone.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/play-circle.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/play.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/plus-circle.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/plus-square.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/plus.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/prescription-bottle.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/qrcode.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/reply.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/screwdriver.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/scroll.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/sd-card.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/seedling.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/share.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/shield-alt.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/sign.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/sim-card.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/slash.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/sort-down.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/sort-up.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/sort.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/square-full.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/square.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/star-half.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/star.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/step-backward.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/step-forward.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/sticky-note.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/stop-circle.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/stop.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/store-alt.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/stream.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/suitcase.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/surprise.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/table.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/tablet-alt.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/tablet.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/tag.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/tape.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/tenge.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/tint.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/toggle-on.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/trash.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/tshirt.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/tv.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/unlock.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/user-alt.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/user-tie.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/user.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/utensil-spoon.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/vial.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/video.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/voicemail.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/volume-off.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/wallet.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/wave-square.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/window-maximize.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/window-minimize.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/window-restore.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/wine-glass-alt.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/svgs/solid/wine-glass.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/fas/webfonts/fa-brands-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juantoman/MyClassGame/6a395c1020b682ccfd6577ea74758897e72de86f/client/stylesheets/fas/webfonts/fa-brands-400.eot -------------------------------------------------------------------------------- /client/stylesheets/fas/webfonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juantoman/MyClassGame/6a395c1020b682ccfd6577ea74758897e72de86f/client/stylesheets/fas/webfonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /client/stylesheets/fas/webfonts/fa-brands-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juantoman/MyClassGame/6a395c1020b682ccfd6577ea74758897e72de86f/client/stylesheets/fas/webfonts/fa-brands-400.woff -------------------------------------------------------------------------------- /client/stylesheets/fas/webfonts/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juantoman/MyClassGame/6a395c1020b682ccfd6577ea74758897e72de86f/client/stylesheets/fas/webfonts/fa-brands-400.woff2 -------------------------------------------------------------------------------- /client/stylesheets/fas/webfonts/fa-regular-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juantoman/MyClassGame/6a395c1020b682ccfd6577ea74758897e72de86f/client/stylesheets/fas/webfonts/fa-regular-400.eot -------------------------------------------------------------------------------- /client/stylesheets/fas/webfonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juantoman/MyClassGame/6a395c1020b682ccfd6577ea74758897e72de86f/client/stylesheets/fas/webfonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /client/stylesheets/fas/webfonts/fa-regular-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juantoman/MyClassGame/6a395c1020b682ccfd6577ea74758897e72de86f/client/stylesheets/fas/webfonts/fa-regular-400.woff -------------------------------------------------------------------------------- /client/stylesheets/fas/webfonts/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juantoman/MyClassGame/6a395c1020b682ccfd6577ea74758897e72de86f/client/stylesheets/fas/webfonts/fa-regular-400.woff2 -------------------------------------------------------------------------------- /client/stylesheets/fas/webfonts/fa-solid-900.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juantoman/MyClassGame/6a395c1020b682ccfd6577ea74758897e72de86f/client/stylesheets/fas/webfonts/fa-solid-900.eot -------------------------------------------------------------------------------- /client/stylesheets/fas/webfonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juantoman/MyClassGame/6a395c1020b682ccfd6577ea74758897e72de86f/client/stylesheets/fas/webfonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /client/stylesheets/fas/webfonts/fa-solid-900.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juantoman/MyClassGame/6a395c1020b682ccfd6577ea74758897e72de86f/client/stylesheets/fas/webfonts/fa-solid-900.woff -------------------------------------------------------------------------------- /client/stylesheets/fas/webfonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juantoman/MyClassGame/6a395c1020b682ccfd6577ea74758897e72de86f/client/stylesheets/fas/webfonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /client/templates/adventure/missions/createFolder.html: -------------------------------------------------------------------------------- 1 | 6 | -------------------------------------------------------------------------------- /client/templates/adventure/missions/gcTasks.html: -------------------------------------------------------------------------------- 1 | 10 | -------------------------------------------------------------------------------- /client/templates/adventure/missions/hexbadge.html: -------------------------------------------------------------------------------- 1 | 14 | -------------------------------------------------------------------------------- /client/templates/adventure/missions/missionCards/missionBadge.html: -------------------------------------------------------------------------------- 1 | 8 | -------------------------------------------------------------------------------- /client/templates/adventure/missions/missiongrid.js: -------------------------------------------------------------------------------- 1 | Template.missiongrid.helpers({ 2 | challenge: function() { 3 | return challenges.find({classId: Session.get('classId')}, {sort: {order: 1}}); 4 | }, 5 | chalMissions: function(id) { 6 | return chalMissions.find({classId: Session.get('classId'), missionId: id}, {sort: {order: 1}}); 7 | } 8 | }); -------------------------------------------------------------------------------- /client/templates/adventure/missions/taskCards/taskBadge.html: -------------------------------------------------------------------------------- 1 | 7 | -------------------------------------------------------------------------------- /client/templates/adventure/myAdventure.js: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /client/templates/application/index.html: -------------------------------------------------------------------------------- 1 | 12 | -------------------------------------------------------------------------------- /client/templates/application/layout.js: -------------------------------------------------------------------------------- 1 | Template.layout.helpers({ 2 | 'routeView': function() { 3 | r=Router.current().route.getName(); 4 | if (r=="view" || r=="visibleClasses") { 5 | return true; 6 | } else { 7 | return false; 8 | } 9 | } 10 | }); 11 | -------------------------------------------------------------------------------- /client/templates/application/login.css: -------------------------------------------------------------------------------- 1 | .jumbowarning { 2 | background-color: #FCF3CF !important; 3 | color: #154360 !important; 4 | } 5 | -------------------------------------------------------------------------------- /client/templates/application/notfound.html: -------------------------------------------------------------------------------- 1 | 7 | -------------------------------------------------------------------------------- /client/templates/chat/chat.js: -------------------------------------------------------------------------------- 1 | Template.chat.onRendered(function() { 2 | $("#chatTeachers").scrollTo(0,500); 3 | }); 4 | Template.chat.helpers({ 5 | teacher: function() { 6 | if (Session.get('userType')=="teacher") { 7 | return true; 8 | } else { 9 | return false; 10 | }; 11 | } 12 | }); -------------------------------------------------------------------------------- /client/templates/classes/classes_modals.css: -------------------------------------------------------------------------------- 1 | .userTypeModalForm h3{ 2 | font-size: 2rem; 3 | } 4 | 5 | .userTypeModalForm label{ 6 | font-size: 10vw !important; 7 | margin: 2vw 0; 8 | } 9 | -------------------------------------------------------------------------------- /client/templates/gamification/elements.html: -------------------------------------------------------------------------------- 1 | 11 | -------------------------------------------------------------------------------- /client/templates/gamification/gamification.css: -------------------------------------------------------------------------------- 1 | .settingsMenu { 2 | background-color:rgb(209, 235, 252,0.8) !important; 3 | margin-bottom:20px; 4 | } 5 | -------------------------------------------------------------------------------- /client/templates/gamification/myComponents/behaviours/behaviourType.js: -------------------------------------------------------------------------------- 1 | Template.behaviourTypeTemplate.helpers({ 2 | XPisChecked: function() { 3 | if (this.positive) { 4 | return "checked"; 5 | } else { 6 | return "" 7 | } 8 | } 9 | }); 10 | -------------------------------------------------------------------------------- /client/templates/gamification/myComponents/shareModal.css: -------------------------------------------------------------------------------- 1 | #qrcode img{ 2 | margin: 0 auto; 3 | } -------------------------------------------------------------------------------- /client/templates/includes/access_denied.html: -------------------------------------------------------------------------------- 1 | 7 | -------------------------------------------------------------------------------- /client/templates/includes/loading.html: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /client/templates/includes/mcg.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/templates/questions/quizTemplate.css: -------------------------------------------------------------------------------- 1 | #accordionQuestions .panel-heading { 2 | background-color: LightSkyBlue; 3 | 4 | } 5 | #accordionQuestions .panel-body { 6 | border: 1px solid LightSkyBlue !important; 7 | background-color: #F5F5FF; 8 | } 9 | -------------------------------------------------------------------------------- /client/templates/settingsPage/settingsPage.js: -------------------------------------------------------------------------------- 1 | /* 2 | Template.settingsPage.helpers({ 3 | randomEvents: function() { 4 | return randomEvents.find({classId: Session.get('classId')}); 5 | } 6 | }); 7 | */ 8 | Template.settingsPage.events({ 9 | 'click .allUsers': function(event) { 10 | Meteor.subscribe('allUsers'); 11 | } 12 | }); 13 | -------------------------------------------------------------------------------- /client/templates/statistics/statisticsPage.css: -------------------------------------------------------------------------------- 1 | .table-responsive .table > tbody > tr:nth-child(2n) > td, .table-responsive .table > tbody > tr:nth-child(2n) > th { 2 | background-color: rgba(0, 100, 150, .2); 3 | } 4 | 5 | .table-responsive tr:hover td { 6 | background-color: rgba(0, 100, 150 , .3) !important; 7 | } 8 | 9 | #historytable { 10 | height:80vh; 11 | } -------------------------------------------------------------------------------- /client/templates/student/studentPage.html: -------------------------------------------------------------------------------- 1 | 10 | -------------------------------------------------------------------------------- /client/templates/student/studentPage.js: -------------------------------------------------------------------------------- 1 | Template.studentPage.helpers({ 2 | student: function() { 3 | return students.findOne({ _id: Session.get('studentId') } ); 4 | } 5 | }); 6 | -------------------------------------------------------------------------------- /client/templates/students/messageModal.js: -------------------------------------------------------------------------------- 1 | Template.messageModal.helpers({ 2 | classId: function() { 3 | return Session.get('classId').substring(0,6); 4 | } 5 | }); 6 | -------------------------------------------------------------------------------- /client/templates/view/adventureView.html: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /client/templates/view/leftNavView.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juantoman/MyClassGame/6a395c1020b682ccfd6577ea74758897e72de86f/client/templates/view/leftNavView.css -------------------------------------------------------------------------------- /client/templates/view/toolsView.html: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /client/templates/visibleClasses/visibleClasses.css: -------------------------------------------------------------------------------- 1 | .btn-visibleClass { 2 | position:relative; 3 | margin:5px auto; 4 | } 5 | 6 | .ncopies { 7 | position:absolute; 8 | background-color: limegreen !important; 9 | bottom: 20px; 10 | right: 20px; 11 | } -------------------------------------------------------------------------------- /deleteCommit.txt: -------------------------------------------------------------------------------- 1 | https://stackoverflow.com/questions/448919/how-can-i-remove-a-commit-on-github 2 | 3 | git reset --hard 71c27777543ccfcb0376dcdd8f6777df055ef479 4 | git push --force -------------------------------------------------------------------------------- /deploy.txt: -------------------------------------------------------------------------------- 1 | #Deploy app 2 | meteor build MCG --server http://myclassgame.iestacio.com 3 | #En en directori MCG/android/project/build/outputs/apk estan els apk 4 | #Configurar servidor para iniciar 5 | MONGO_URL=mongodb://127.0.0.1:27017/meteor 6 | meteor --mobile-server 5.189.163.221:3301 --port 3301 7 | -------------------------------------------------------------------------------- /dropDatabase.txt: -------------------------------------------------------------------------------- 1 | db.dropDatabase(); -------------------------------------------------------------------------------- /dropmlab.sh: -------------------------------------------------------------------------------- 1 | mongo ds247270.mlab.com:47270/mcg -u mcg < dropDatabase.js -------------------------------------------------------------------------------- /freenom_myclassgame.tk.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juantoman/MyClassGame/6a395c1020b682ccfd6577ea74758897e72de86f/freenom_myclassgame.tk.tar.gz -------------------------------------------------------------------------------- /gitignore.sh: -------------------------------------------------------------------------------- 1 | git rm --cached [path] 2 | git update-index --assume-unchanged [path] 3 | git config --global core.excludesfile '.gitignore' -------------------------------------------------------------------------------- /images/android_hdpi.icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juantoman/MyClassGame/6a395c1020b682ccfd6577ea74758897e72de86f/images/android_hdpi.icon.png -------------------------------------------------------------------------------- /images/android_mdpi.icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juantoman/MyClassGame/6a395c1020b682ccfd6577ea74758897e72de86f/images/android_mdpi.icon.png -------------------------------------------------------------------------------- /images/android_mdpi_portrait.splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juantoman/MyClassGame/6a395c1020b682ccfd6577ea74758897e72de86f/images/android_mdpi_portrait.splash.png -------------------------------------------------------------------------------- /images/android_xhdpi.icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juantoman/MyClassGame/6a395c1020b682ccfd6577ea74758897e72de86f/images/android_xhdpi.icon.png -------------------------------------------------------------------------------- /images/android_xxhdpi.icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juantoman/MyClassGame/6a395c1020b682ccfd6577ea74758897e72de86f/images/android_xxhdpi.icon.png -------------------------------------------------------------------------------- /images/android_xxxhdpi.icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juantoman/MyClassGame/6a395c1020b682ccfd6577ea74758897e72de86f/images/android_xxxhdpi.icon.png -------------------------------------------------------------------------------- /images/mcg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juantoman/MyClassGame/6a395c1020b682ccfd6577ea74758897e72de86f/images/mcg.png -------------------------------------------------------------------------------- /images/mcg_ico (copia).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juantoman/MyClassGame/6a395c1020b682ccfd6577ea74758897e72de86f/images/mcg_ico (copia).png -------------------------------------------------------------------------------- /images/mcg_ico.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juantoman/MyClassGame/6a395c1020b682ccfd6577ea74758897e72de86f/images/mcg_ico.png -------------------------------------------------------------------------------- /images/mcg_splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juantoman/MyClassGame/6a395c1020b682ccfd6577ea74758897e72de86f/images/mcg_splash.png -------------------------------------------------------------------------------- /initaws.sh: -------------------------------------------------------------------------------- 1 | export ROOT_URL=https://9a4509e998894cce9dc43fc4271ea9e2.vfs.cloud9.us-east-1.amazonaws.com/ 2 | meteor --port $IP:$PORT -------------------------------------------------------------------------------- /lib/collections/chalPoints.js: -------------------------------------------------------------------------------- 1 | chalPoints = new Mongo.Collection('chalPoints'); 2 | 3 | Meteor.methods({ 4 | chalInsertPoints: function(chal) { 5 | //console.log(chal); 6 | var Id = chalPoints.insert(chal); 7 | }, 8 | chalUpdatePoints: function(studentId, chalId, chalCP) { 9 | var Id = chalPoints.update( { studentId: studentId, chalId: chalId }, { $set: { chalCP: chalCP } } ); 10 | } 11 | }); 12 | -------------------------------------------------------------------------------- /lib/collections/chatClass.js: -------------------------------------------------------------------------------- 1 | chatClass = new Mongo.Collection('chatClass'); 2 | 3 | Meteor.methods({ 4 | messageInsert: function(message) { 5 | var id = chatClass.insert(message); 6 | }, 7 | messageRemove: function(message) { 8 | var id = chatClass.remove({'_id':message}); 9 | } 10 | }); 11 | -------------------------------------------------------------------------------- /lib/collections/chatTeachers.js: -------------------------------------------------------------------------------- 1 | chatTeachers = new Mongo.Collection('chatTeachers'); 2 | 3 | Meteor.methods({ 4 | messageTeacherInsert: function(message) { 5 | var id = chatTeachers.insert(message); 6 | } 7 | }); 8 | -------------------------------------------------------------------------------- /lib/collections/diary.js: -------------------------------------------------------------------------------- 1 | diary = new Mongo.Collection('diary'); 2 | 3 | Meteor.methods({ 4 | diaryInsert: function(diaryInput) { 5 | var diaryId = diary.insert(diaryInput); 6 | }, 7 | diaryValidation: function(diaryId) { 8 | var diaryId = diary.update({ _id: diaryId },{$set:{validated:true}}); 9 | } 10 | }); 11 | -------------------------------------------------------------------------------- /lib/collections/images.js: -------------------------------------------------------------------------------- 1 | images = new Mongo.Collection('images'); 2 | 3 | Meteor.methods({ 4 | imageInsert: function(image) { 5 | return images.insert(image); 6 | }, 7 | imageDelete: function(imageId) { 8 | var Id = images.remove({ _id: imageId }); 9 | } 10 | }); 11 | -------------------------------------------------------------------------------- /lib/collections/notebookWork.js: -------------------------------------------------------------------------------- 1 | notebookWork = new Mongo.Collection('notebookWork'); 2 | 3 | Meteor.methods({ 4 | notebookWorkInsert: function(notebookWorkInput) { 5 | var notebookId = notebookWork.insert(notebookWorkInput); 6 | }, 7 | validatedWork: function(notebookId,validated) { 8 | var notebookId = notebookWork.update({ notebookId: notebookId },{$set:{validated:validated}}, {multi: true}); 9 | } 10 | }); 11 | -------------------------------------------------------------------------------- /mcg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juantoman/MyClassGame/6a395c1020b682ccfd6577ea74758897e72de86f/mcg.png -------------------------------------------------------------------------------- /mlab.txt: -------------------------------------------------------------------------------- 1 | mongo ds247270.mlab.com:47270/mcg -u mcg 2 | show collections; 3 | db.dropDatabase(); -------------------------------------------------------------------------------- /mygit.sh: -------------------------------------------------------------------------------- 1 | git add . 2 | git commit -m "$1" 3 | #git pull 4 | git push -u origin master 5 | -------------------------------------------------------------------------------- /myssh2.sh: -------------------------------------------------------------------------------- 1 | ssh juantoman@46.105.27.211 -------------------------------------------------------------------------------- /public/images/@mcg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juantoman/MyClassGame/6a395c1020b682ccfd6577ea74758897e72de86f/public/images/@mcg.png -------------------------------------------------------------------------------- /public/images/@mcg2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juantoman/MyClassGame/6a395c1020b682ccfd6577ea74758897e72de86f/public/images/@mcg2.png -------------------------------------------------------------------------------- /public/images/@mcgnb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juantoman/MyClassGame/6a395c1020b682ccfd6577ea74758897e72de86f/public/images/@mcgnb.png -------------------------------------------------------------------------------- /public/images/AppleAndroid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juantoman/MyClassGame/6a395c1020b682ccfd6577ea74758897e72de86f/public/images/AppleAndroid.png -------------------------------------------------------------------------------- /public/images/SIMOEDU23.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juantoman/MyClassGame/6a395c1020b682ccfd6577ea74758897e72de86f/public/images/SIMOEDU23.jpg -------------------------------------------------------------------------------- /public/images/alberto.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juantoman/MyClassGame/6a395c1020b682ccfd6577ea74758897e72de86f/public/images/alberto.jpeg -------------------------------------------------------------------------------- /public/images/alberto.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juantoman/MyClassGame/6a395c1020b682ccfd6577ea74758897e72de86f/public/images/alberto.jpg -------------------------------------------------------------------------------- /public/images/alvaro.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juantoman/MyClassGame/6a395c1020b682ccfd6577ea74758897e72de86f/public/images/alvaro.jpeg -------------------------------------------------------------------------------- /public/images/alvaro.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juantoman/MyClassGame/6a395c1020b682ccfd6577ea74758897e72de86f/public/images/alvaro.jpg -------------------------------------------------------------------------------- /public/images/andrea.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juantoman/MyClassGame/6a395c1020b682ccfd6577ea74758897e72de86f/public/images/andrea.jpg -------------------------------------------------------------------------------- /public/images/angry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juantoman/MyClassGame/6a395c1020b682ccfd6577ea74758897e72de86f/public/images/angry.png -------------------------------------------------------------------------------- /public/images/angry2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juantoman/MyClassGame/6a395c1020b682ccfd6577ea74758897e72de86f/public/images/angry2.png -------------------------------------------------------------------------------- /public/images/btn_google_signin_dark_normal_web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juantoman/MyClassGame/6a395c1020b682ccfd6577ea74758897e72de86f/public/images/btn_google_signin_dark_normal_web.png -------------------------------------------------------------------------------- /public/images/buttons-150235.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juantoman/MyClassGame/6a395c1020b682ccfd6577ea74758897e72de86f/public/images/buttons-150235.png -------------------------------------------------------------------------------- /public/images/clases.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juantoman/MyClassGame/6a395c1020b682ccfd6577ea74758897e72de86f/public/images/clases.png -------------------------------------------------------------------------------- /public/images/comportamientos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juantoman/MyClassGame/6a395c1020b682ccfd6577ea74758897e72de86f/public/images/comportamientos.png -------------------------------------------------------------------------------- /public/images/erasmus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juantoman/MyClassGame/6a395c1020b682ccfd6577ea74758897e72de86f/public/images/erasmus.png -------------------------------------------------------------------------------- /public/images/estudiantes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juantoman/MyClassGame/6a395c1020b682ccfd6577ea74758897e72de86f/public/images/estudiantes.png -------------------------------------------------------------------------------- /public/images/fernando.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juantoman/MyClassGame/6a395c1020b682ccfd6577ea74758897e72de86f/public/images/fernando.jpg -------------------------------------------------------------------------------- /public/images/finalista.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juantoman/MyClassGame/6a395c1020b682ccfd6577ea74758897e72de86f/public/images/finalista.PNG -------------------------------------------------------------------------------- /public/images/gamiright.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juantoman/MyClassGame/6a395c1020b682ccfd6577ea74758897e72de86f/public/images/gamiright.png -------------------------------------------------------------------------------- /public/images/github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juantoman/MyClassGame/6a395c1020b682ccfd6577ea74758897e72de86f/public/images/github.png -------------------------------------------------------------------------------- /public/images/gofundme-donate-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juantoman/MyClassGame/6a395c1020b682ccfd6577ea74758897e72de86f/public/images/gofundme-donate-button.png -------------------------------------------------------------------------------- /public/images/google.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juantoman/MyClassGame/6a395c1020b682ccfd6577ea74758897e72de86f/public/images/google.png -------------------------------------------------------------------------------- /public/images/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juantoman/MyClassGame/6a395c1020b682ccfd6577ea74758897e72de86f/public/images/green.png -------------------------------------------------------------------------------- /public/images/inaki.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juantoman/MyClassGame/6a395c1020b682ccfd6577ea74758897e72de86f/public/images/inaki.jpg -------------------------------------------------------------------------------- /public/images/jesus.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juantoman/MyClassGame/6a395c1020b682ccfd6577ea74758897e72de86f/public/images/jesus.jpeg -------------------------------------------------------------------------------- /public/images/jesus.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juantoman/MyClassGame/6a395c1020b682ccfd6577ea74758897e72de86f/public/images/jesus.jpg -------------------------------------------------------------------------------- /public/images/juanin.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juantoman/MyClassGame/6a395c1020b682ccfd6577ea74758897e72de86f/public/images/juanin.jpeg -------------------------------------------------------------------------------- /public/images/juanin.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juantoman/MyClassGame/6a395c1020b682ccfd6577ea74758897e72de86f/public/images/juanin.jpg -------------------------------------------------------------------------------- /public/images/juanjose.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juantoman/MyClassGame/6a395c1020b682ccfd6577ea74758897e72de86f/public/images/juanjose.jpg -------------------------------------------------------------------------------- /public/images/juantoman.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juantoman/MyClassGame/6a395c1020b682ccfd6577ea74758897e72de86f/public/images/juantoman.jpg -------------------------------------------------------------------------------- /public/images/juantoman2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juantoman/MyClassGame/6a395c1020b682ccfd6577ea74758897e72de86f/public/images/juantoman2.jpg -------------------------------------------------------------------------------- /public/images/jujo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juantoman/MyClassGame/6a395c1020b682ccfd6577ea74758897e72de86f/public/images/jujo.jpg -------------------------------------------------------------------------------- /public/images/learnUp.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juantoman/MyClassGame/6a395c1020b682ccfd6577ea74758897e72de86f/public/images/learnUp.jpg -------------------------------------------------------------------------------- /public/images/mcg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juantoman/MyClassGame/6a395c1020b682ccfd6577ea74758897e72de86f/public/images/mcg.png -------------------------------------------------------------------------------- /public/images/mcg_ico.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juantoman/MyClassGame/6a395c1020b682ccfd6577ea74758897e72de86f/public/images/mcg_ico.png -------------------------------------------------------------------------------- /public/images/mcgpet/MCG_blue.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juantoman/MyClassGame/6a395c1020b682ccfd6577ea74758897e72de86f/public/images/mcgpet/MCG_blue.gif -------------------------------------------------------------------------------- /public/images/mcgpet/MCG_green.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juantoman/MyClassGame/6a395c1020b682ccfd6577ea74758897e72de86f/public/images/mcgpet/MCG_green.gif -------------------------------------------------------------------------------- /public/images/mcgpet/MCG_red.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juantoman/MyClassGame/6a395c1020b682ccfd6577ea74758897e72de86f/public/images/mcgpet/MCG_red.gif -------------------------------------------------------------------------------- /public/images/mcgpet/MCG_yellow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juantoman/MyClassGame/6a395c1020b682ccfd6577ea74758897e72de86f/public/images/mcgpet/MCG_yellow.gif -------------------------------------------------------------------------------- /public/images/medal-bronze.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juantoman/MyClassGame/6a395c1020b682ccfd6577ea74758897e72de86f/public/images/medal-bronze.png -------------------------------------------------------------------------------- /public/images/medal-gold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juantoman/MyClassGame/6a395c1020b682ccfd6577ea74758897e72de86f/public/images/medal-gold.png -------------------------------------------------------------------------------- /public/images/medal-silver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juantoman/MyClassGame/6a395c1020b682ccfd6577ea74758897e72de86f/public/images/medal-silver.png -------------------------------------------------------------------------------- /public/images/orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juantoman/MyClassGame/6a395c1020b682ccfd6577ea74758897e72de86f/public/images/orange.png -------------------------------------------------------------------------------- /public/images/parent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juantoman/MyClassGame/6a395c1020b682ccfd6577ea74758897e72de86f/public/images/parent.png -------------------------------------------------------------------------------- /public/images/paypaldonar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juantoman/MyClassGame/6a395c1020b682ccfd6577ea74758897e72de86f/public/images/paypaldonar.png -------------------------------------------------------------------------------- /public/images/random.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juantoman/MyClassGame/6a395c1020b682ccfd6577ea74758897e72de86f/public/images/random.png -------------------------------------------------------------------------------- /public/images/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juantoman/MyClassGame/6a395c1020b682ccfd6577ea74758897e72de86f/public/images/red.png -------------------------------------------------------------------------------- /public/images/stored.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juantoman/MyClassGame/6a395c1020b682ccfd6577ea74758897e72de86f/public/images/stored.png -------------------------------------------------------------------------------- /public/images/student.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juantoman/MyClassGame/6a395c1020b682ccfd6577ea74758897e72de86f/public/images/student.png -------------------------------------------------------------------------------- /public/images/student2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juantoman/MyClassGame/6a395c1020b682ccfd6577ea74758897e72de86f/public/images/student2.png -------------------------------------------------------------------------------- /public/images/swords.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juantoman/MyClassGame/6a395c1020b682ccfd6577ea74758897e72de86f/public/images/swords.png -------------------------------------------------------------------------------- /public/images/teacher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juantoman/MyClassGame/6a395c1020b682ccfd6577ea74758897e72de86f/public/images/teacher.png -------------------------------------------------------------------------------- /public/images/teacher2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juantoman/MyClassGame/6a395c1020b682ccfd6577ea74758897e72de86f/public/images/teacher2.png -------------------------------------------------------------------------------- /public/images/topsecret.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juantoman/MyClassGame/6a395c1020b682ccfd6577ea74758897e72de86f/public/images/topsecret.png -------------------------------------------------------------------------------- /public/mcgapi/genially/green_check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juantoman/MyClassGame/6a395c1020b682ccfd6577ea74758897e72de86f/public/mcgapi/genially/green_check.png -------------------------------------------------------------------------------- /public/mcgapi/genially/mcgBadge.css: -------------------------------------------------------------------------------- 1 | #mcgBadge {relative; 2 | position:absolute; 3 | } 4 | 5 | #imgBadge { 6 | padding:20px; 7 | transition: 0.2s; 8 | } 9 | 10 | #imgBadge:hover{ 11 | -webkit-filter: drop-shadow(0px 0px 5px rgb(255, 255, 255) ); 12 | transform: scale(1.05); 13 | } 14 | 15 | #greenCheck { 16 | position: absolute; 17 | top:10px; 18 | right:10px; 19 | opacity:0; 20 | } -------------------------------------------------------------------------------- /public/mcgapi/genially/package/src/constants.js: -------------------------------------------------------------------------------- 1 | export const RESTORE_FOCUS_TIMEOUT = 100 2 | -------------------------------------------------------------------------------- /public/mcgapi/genially/package/src/instanceMethods/progress-steps.js: -------------------------------------------------------------------------------- 1 | import privateProps from '../privateProps.js' 2 | 3 | export function getProgressSteps() { 4 | const domCache = privateProps.domCache.get(this) 5 | return domCache.progressSteps 6 | } 7 | -------------------------------------------------------------------------------- /public/mcgapi/genially/package/src/scss/_theming.scss: -------------------------------------------------------------------------------- 1 | // base file for including when performing theming 2 | // doesn't include at-rules or root selectors (like body) which allows for more comprehensive extending 3 | 4 | @import '../variables'; 5 | @import 'mixins'; 6 | @import 'toasts'; 7 | @import 'body'; 8 | @import 'core'; 9 | -------------------------------------------------------------------------------- /public/mcgapi/genially/package/src/staticMethods/fire.js: -------------------------------------------------------------------------------- 1 | export function fire(...args) { 2 | const Swal = this // eslint-disable-line @typescript-eslint/no-this-alias 3 | return new Swal(...args) 4 | } 5 | -------------------------------------------------------------------------------- /public/mcgapi/genially/package/src/sweetalert2.js: -------------------------------------------------------------------------------- 1 | import SweetAlert from './SweetAlert.js' 2 | 3 | const Swal = SweetAlert 4 | // @ts-ignore 5 | Swal.default = Swal 6 | 7 | export default Swal 8 | -------------------------------------------------------------------------------- /public/mcgapi/genially/package/src/sweetalert2.scss: -------------------------------------------------------------------------------- 1 | // SweetAlert2 2 | // github.com/sweetalert2/sweetalert2 3 | 4 | @import 'scss/theming'; 5 | @import 'scss/animations'; 6 | 7 | body { 8 | @include sweetalert2-body(); 9 | @include sweetalert2-toasts-body(); 10 | } 11 | -------------------------------------------------------------------------------- /public/mcgapi/genially/package/src/utils/DismissReason.js: -------------------------------------------------------------------------------- 1 | export const DismissReason = Object.freeze({ 2 | cancel: 'cancel', 3 | backdrop: 'backdrop', 4 | close: 'close', 5 | esc: 'esc', 6 | timer: 'timer', 7 | }) 8 | -------------------------------------------------------------------------------- /public/mcgapi/genially/package/src/utils/dom/index.js: -------------------------------------------------------------------------------- 1 | export * from './domUtils.js' 2 | export * from './init.js' 3 | export * from './getters.js' 4 | export * from './parseHtmlToContainer.js' 5 | export * from './animationEndEvent.js' 6 | export * from './measureScrollbar.js' 7 | export * from './renderers/render.js' 8 | -------------------------------------------------------------------------------- /public/mcgapi/genially/package/src/utils/isNodeEnv.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Detect Node env 3 | * 4 | * @returns {boolean} 5 | */ 6 | export const isNodeEnv = () => typeof window === 'undefined' || typeof document === 'undefined' 7 | -------------------------------------------------------------------------------- /public/mcgapi/genially/prova.js: -------------------------------------------------------------------------------- 1 | function loadImage() { 2 | alert("B") 3 | } 4 | 5 | -------------------------------------------------------------------------------- /public/mcgapi/genially/sa.js: -------------------------------------------------------------------------------- 1 | function SA() { 2 | alert("A") 3 | } 4 | 5 | const element = document.getElementById("sweetalertBtn2"); 6 | element.addEventListener("click", SA); -------------------------------------------------------------------------------- /public/sound/level-up-retro-video-game-soundroll.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juantoman/MyClassGame/6a395c1020b682ccfd6577ea74758897e72de86f/public/sound/level-up-retro-video-game-soundroll.mp3 -------------------------------------------------------------------------------- /public/sound/money.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juantoman/MyClassGame/6a395c1020b682ccfd6577ea74758897e72de86f/public/sound/money.mp3 -------------------------------------------------------------------------------- /public/sound/ruleta.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juantoman/MyClassGame/6a395c1020b682ccfd6577ea74758897e72de86f/public/sound/ruleta.mp3 -------------------------------------------------------------------------------- /public/sound/video-game-points-lost-retro-glitchedtones.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juantoman/MyClassGame/6a395c1020b682ccfd6577ea74758897e72de86f/public/sound/video-game-points-lost-retro-glitchedtones.mp3 -------------------------------------------------------------------------------- /pull.sh: -------------------------------------------------------------------------------- 1 | git pull origin master -------------------------------------------------------------------------------- /resources/icons/mcg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juantoman/MyClassGame/6a395c1020b682ccfd6577ea74758897e72de86f/resources/icons/mcg.png -------------------------------------------------------------------------------- /resources/splash/mcg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juantoman/MyClassGame/6a395c1020b682ccfd6577ea74758897e72de86f/resources/splash/mcg.png -------------------------------------------------------------------------------- /restore.sh: -------------------------------------------------------------------------------- 1 | mongodump -h ds247270.mlab.com:47270 -d mcg -u mcg -o dump 2 | mongorestore -h 127.0.0.1 --port 3001 -d meteor --drop dump/mcg --------------------------------------------------------------------------------