diff --git a/README.md b/README.md index d7c18fc..c1d7483 100644 --- a/README.md +++ b/README.md @@ -4,17 +4,27 @@ Madison Arts and Event Calendar ##Instructions for Running Please install the following: -angluar/cli - 1.4.7 (CURRENT LATEST 10/16) - sudo npm uninstall -g @angular/cli (sudo only for mac) - sudo npm install -g @angular/cli (THIS IS FOR REINSTALL AFTER NODE and NPM IS UPDATED) +angular/cli - 1.4.7 (CURRENT LATEST 10/16) + +`sudo npm uninstall -g @angular/cli` (sudo only for mac) + +`sudo npm install -g @angular/cli` (THIS IS FOR REINSTALL AFTER NODE and NPM IS UPDATED) + Npm - 5.5.1 (CURRENT LATEST 10/16) - sudo npm uninstall npm -g - A version of npm comes when you install Node - npm install npm@latest -g + +`sudo npm uninstall npm -g` + +A version of npm comes when you install Node + +`npm install npm@latest -g` + Node - 6.11.4 (CURRENT LATEST RECOMMENDED 10/16) - Windows there is a uninstall node application - Once you clone the new git, change into the directory that contains package.json and use npm install to install all node dependencies. - Get to the repository, and through command line run npm install. Once that is finished, run ng serve. You can then open up a web browser and navigate to http://localhost:4200/. + +Windows there is a uninstall node application + +Once you clone the new git, change into the directory that contains package.json and use `npm install` to install all node dependencies. + +Get to the repository, and through command line run npm install. Once that is finished, run `ng serve`. You can then open up a web browser and navigate to http://localhost:4200/. This project was generated with [Angular CLI](https://github.com/angular/angular-cli) version 1.4.7. diff --git a/the8eam/.angular-cli.json b/the8eam/.angular-cli.json index 98809ae..708214b 100644 --- a/the8eam/.angular-cli.json +++ b/the8eam/.angular-cli.json @@ -19,9 +19,15 @@ "testTsconfig": "tsconfig.spec.json", "prefix": "app", "styles": [ + "../node_modules/bootstrap/dist/css/bootstrap.min.css", + "../open-iconic/font/css/open-iconic-bootstrap.min.css", "styles.css" ], - "scripts": [], + "scripts": [ + "../node_modules/jquery/dist/jquery.min.js", + "../node_modules/popper.js/dist/umd/popper.min.js", + "../node_modules/bootstrap/dist/js/bootstrap.min.js" + ], "environmentSource": "environments/environment.ts", "environments": { "dev": "environments/environment.ts", @@ -49,6 +55,12 @@ } ], "test": { + "codeCoverage": { + "exclude": [ + "src/app/rss/*", + "src/app/data-access-layer.service.*" + ] + }, "karma": { "config": "./karma.conf.js" } diff --git a/the8eam/.firebaserc b/the8eam/.firebaserc new file mode 100644 index 0000000..13ea58d --- /dev/null +++ b/the8eam/.firebaserc @@ -0,0 +1,5 @@ +{ + "projects": { + "default": "the-8-eam" + } +} diff --git a/the8eam/README.md b/the8eam/README.md index b92de51..ec69ead 100644 --- a/the8eam/README.md +++ b/the8eam/README.md @@ -12,16 +12,37 @@ Run `ng generate component component-name` to generate a new component. You can ## Build -Run `ng build` to build the project. The build artifacts will be stored in the `dist/` directory. Use the `-prod` flag for a production build. +Run `ng build` to build the project. The build artifacts will be stored in the `dist/` directory. Use the `-prod` flag for a production build. ## Running unit tests Run `ng test` to execute the unit tests via [Karma](https://karma-runner.github.io). -## Running end-to-end tests +## Running unit tests with code coverage -Run `ng e2e` to execute the end-to-end tests via [Protractor](http://www.protractortest.org/). +Run `ng test --code-coverage` to execute unit tests via [Karma](https://karma-runner.github.io) and generage a code coverage report via [Istanbul](https://github.com/gotwarlost/istanbul). To view the reports, navigate to the "coverage" folder in the root directory of the repository, and open `index.html`. ## Further help To get more help on the Angular CLI use `ng help` or go check out the [Angular CLI README](https://github.com/angular/angular-cli/blob/master/README.md). + +##Instructions for Running + +In order to run our application as it is tested, we recommend following these steps to replicate our development environment. +// (sudo) --> for linux/mac // +1. Install Node - 6.11.4 + [Download](https://nodejs.org/dist/latest-v6.x/) + Optional: If you have multiple node projects you can use Node Version Manager (NVM) Install:https://github.com/creationix/ +2. Install npm - 5.5.1 + A version of npm comes when you install Node, if it is less than 5.5.1, run: + 'npm install npm@latest -g' + Navigate into the directory of the repository that contains package.json and use 'npm install' to install all node dependencies. + +3. Install angular/cli - 1.4.7 + (sudo) npm install -g @angular/cli + You can install the latest version of angular, and our repository's packages.json file will specify the correct version to use automatically. + +4. Run 'npm install' in App's root folder (this directory should have 'src' folder in it). + +5. Run ng serve. + You can then open up a web browser and navigate to http://localhost:4200/. diff --git a/the8eam/firebase.json b/the8eam/firebase.json new file mode 100644 index 0000000..2c33c29 --- /dev/null +++ b/the8eam/firebase.json @@ -0,0 +1,16 @@ +{ + "hosting": { + "public": "dist", + "ignore": [ + "firebase.json", + "**/.*", + "**/node_modules/**" + ], + "rewrites": [ + { + "source": "**", + "destination": "/index.html" + } + ] + } +} diff --git a/the8eam/karma.conf.js b/the8eam/karma.conf.js index af139fa..1b532c7 100644 --- a/the8eam/karma.conf.js +++ b/the8eam/karma.conf.js @@ -10,7 +10,8 @@ module.exports = function (config) { require('karma-chrome-launcher'), require('karma-jasmine-html-reporter'), require('karma-coverage-istanbul-reporter'), - require('@angular/cli/plugins/karma') + require('@angular/cli/plugins/karma'), + require('karma-spec-reporter') ], client:{ clearContext: false // leave Jasmine Spec Runner output visible in browser @@ -22,7 +23,7 @@ module.exports = function (config) { angularCli: { environment: 'dev' }, - reporters: ['progress', 'kjhtml'], + reporters: ['progress', 'kjhtml', 'coverage-istanbul'], port: 9876, colors: true, logLevel: config.LOG_INFO, diff --git a/the8eam/open-iconic/.gitignore b/the8eam/open-iconic/.gitignore new file mode 100644 index 0000000..496ee2c --- /dev/null +++ b/the8eam/open-iconic/.gitignore @@ -0,0 +1 @@ +.DS_Store \ No newline at end of file diff --git a/the8eam/open-iconic/FONT-LICENSE b/the8eam/open-iconic/FONT-LICENSE new file mode 100644 index 0000000..a1dc03f --- /dev/null +++ b/the8eam/open-iconic/FONT-LICENSE @@ -0,0 +1,86 @@ +SIL OPEN FONT LICENSE Version 1.1 + +Copyright (c) 2014 Waybury + +PREAMBLE +The goals of the Open Font License (OFL) are to stimulate worldwide +development of collaborative font projects, to support the font creation +efforts of academic and linguistic communities, and to provide a free and +open framework in which fonts may be shared and improved in partnership +with others. + +The OFL allows the licensed fonts to be used, studied, modified and +redistributed freely as long as they are not sold by themselves. The +fonts, including any derivative works, can be bundled, embedded, +redistributed and/or sold with any software provided that any reserved +names are not used by derivative works. The fonts and derivatives, +however, cannot be released under any other type of license. The +requirement for fonts to remain under this license does not apply +to any document created using the fonts or their derivatives. + +DEFINITIONS +"Font Software" refers to the set of files released by the Copyright +Holder(s) under this license and clearly marked as such. This may +include source files, build scripts and documentation. + +"Reserved Font Name" refers to any names specified as such after the +copyright statement(s). + +"Original Version" refers to the collection of Font Software components as +distributed by the Copyright Holder(s). + +"Modified Version" refers to any derivative made by adding to, deleting, +or substituting -- in part or in whole -- any of the components of the +Original Version, by changing formats or by porting the Font Software to a +new environment. + +"Author" refers to any designer, engineer, programmer, technical +writer or other person who contributed to the Font Software. + +PERMISSION & CONDITIONS +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Font Software, to use, study, copy, merge, embed, modify, +redistribute, and sell modified and unmodified copies of the Font +Software, subject to the following conditions: + +1) Neither the Font Software nor any of its individual components, +in Original or Modified Versions, may be sold by itself. + +2) Original or Modified Versions of the Font Software may be bundled, +redistributed and/or sold with any software, provided that each copy +contains the above copyright notice and this license. These can be +included either as stand-alone text files, human-readable headers or +in the appropriate machine-readable metadata fields within text or +binary files as long as those fields can be easily viewed by the user. + +3) No Modified Version of the Font Software may use the Reserved Font +Name(s) unless explicit written permission is granted by the corresponding +Copyright Holder. This restriction only applies to the primary font name as +presented to the users. + +4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font +Software shall not be used to promote, endorse or advertise any +Modified Version, except to acknowledge the contribution(s) of the +Copyright Holder(s) and the Author(s) or with their explicit written +permission. + +5) The Font Software, modified or unmodified, in part or in whole, +must be distributed entirely under this license, and must not be +distributed under any other license. The requirement for fonts to +remain under this license does not apply to any document created +using the Font Software. + +TERMINATION +This license becomes null and void if any of the above conditions are +not met. + +DISCLAIMER +THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT +OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE +COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL +DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM +OTHER DEALINGS IN THE FONT SOFTWARE. diff --git a/the8eam/open-iconic/ICON-LICENSE b/the8eam/open-iconic/ICON-LICENSE new file mode 100644 index 0000000..2199f4a --- /dev/null +++ b/the8eam/open-iconic/ICON-LICENSE @@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) 2014 Waybury + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. \ No newline at end of file diff --git a/the8eam/open-iconic/README.md b/the8eam/open-iconic/README.md new file mode 100644 index 0000000..6b810e4 --- /dev/null +++ b/the8eam/open-iconic/README.md @@ -0,0 +1,114 @@ +[Open Iconic v1.1.1](http://useiconic.com/open) +=========== + +### Open Iconic is the open source sibling of [Iconic](http://useiconic.com). It is a hyper-legible collection of 223 icons with a tiny footprint—ready to use with Bootstrap and Foundation. [View the collection](http://useiconic.com/open#icons) + + + +## What's in Open Iconic? + +* 223 icons designed to be legible down to 8 pixels +* Super-light SVG files - 61.8 for the entire set +* SVG sprite—the modern replacement for icon fonts +* Webfont (EOT, OTF, SVG, TTF, WOFF), PNG and WebP formats +* Webfont stylesheets (including versions for Bootstrap and Foundation) in CSS, LESS, SCSS and Stylus formats +* PNG and WebP raster images in 8px, 16px, 24px, 32px, 48px and 64px. + + +## Getting Started + +#### For code samples and everything else you need to get started with Open Iconic, check out our [Icons](http://useiconic.com/open#icons) and [Reference](http://useiconic.com/open#reference) sections. + +### General Usage + +#### Using Open Iconic's SVGs + +We like SVGs and we think they're the way to display icons on the web. Since Open Iconic are just basic SVGs, we suggest you display them like you would any other image (don't forget the `alt` attribute). + +``` +icon name +``` + +#### Using Open Iconic's SVG Sprite + +Open Iconic also comes in a SVG sprite which allows you to display all the icons in the set with a single request. It's like an icon font, without being a hack. + +Adding an icon from an SVG sprite is a little different than what you're used to, but it's still a piece of cake. *Tip: To make your icons easily style able, we suggest adding a general class to the* `` *tag and a unique class name for each different icon in the* `` *tag.* + +``` + + + +``` + +Sizing icons only needs basic CSS. All the icons are in a square format, so just set the `` tag with equal width and height dimensions. + +``` +.icon { + width: 16px; + height: 16px; +} +``` + +Coloring icons is even easier. All you need to do is set the `fill` rule on the `` tag. + +``` +.icon-account-login { + fill: #f00; +} +``` + +To learn more about SVG Sprites, read [Chris Coyier's guide](http://css-tricks.com/svg-sprites-use-better-icon-fonts/). + +#### Using Open Iconic's Icon Font... + + +##### …with Bootstrap + +You can find our Bootstrap stylesheets in `font/css/open-iconic-bootstrap.{css, less, scss, styl}` + + +``` + +``` + + +``` + +``` + +##### …with Foundation + +You can find our Foundation stylesheets in `font/css/open-iconic-foundation.{css, less, scss, styl}` + +``` + +``` + + +``` + +``` + +##### …on its own + +You can find our default stylesheets in `font/css/open-iconic.{css, less, scss, styl}` + +``` + +``` + +``` + +``` + + +## License + +### Icons + +All code (including SVG markup) is under the [MIT License](http://opensource.org/licenses/MIT). + +### Fonts + +All fonts are under the [SIL Licensed](http://scripts.sil.org/cms/scripts/page.php?item_id=OFL_web). diff --git a/the8eam/open-iconic/bower.json b/the8eam/open-iconic/bower.json new file mode 100644 index 0000000..fbf9661 --- /dev/null +++ b/the8eam/open-iconic/bower.json @@ -0,0 +1,21 @@ +{ + "name": "open-iconic", + "description": "An open source icon set in SVG, webfont and raster formats", + "version": "1.1.1", + "license": [ + "MIT", + "OFL-1.1" + ], + "homepage": "https://useiconic.com/open", + "repository": { + "type": "git", + "url": "git://github.com/iconic/open-iconic.git" + }, + "main": [ + "./sprite/open-iconic.min.svg" + ], + "ignore": [ + "*.json", + "*.md" + ] +} diff --git a/the8eam/open-iconic/font/css/open-iconic-bootstrap.css b/the8eam/open-iconic/font/css/open-iconic-bootstrap.css new file mode 100644 index 0000000..56c4e5f --- /dev/null +++ b/the8eam/open-iconic/font/css/open-iconic-bootstrap.css @@ -0,0 +1,952 @@ +/* Bootstrap */ + +@font-face { + font-family: 'Icons'; + src: url('../fonts/open-iconic.eot'); + src: url('../fonts/open-iconic.eot?#iconic-sm') format('embedded-opentype'), url('../fonts/open-iconic.woff') format('woff'), url('../fonts/open-iconic.ttf') format('truetype'), url('../fonts/open-iconic.otf') format('opentype'), url('../fonts/open-iconic.svg#iconic-sm') format('svg'); + font-weight: normal; + font-style: normal; +} + +.oi { + position: relative; + top: 1px; + display: inline-block; + speak:none; + font-family: 'Icons'; + font-style: normal; + font-weight: normal; + line-height: 1; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; +} + +.oi:empty:before { + width: 1em; + text-align: center; + box-sizing: content-box; +} + +.oi.oi-align-center:before { + text-align: center; +} + +.oi.oi-align-left:before { + text-align: left; +} + +.oi.oi-align-right:before { + text-align: right; +} + + +.oi.oi-flip-horizontal:before { + -webkit-transform: scale(-1, 1); + -ms-transform: scale(-1, 1); + transform: scale(-1, 1); +} + +.oi.oi-flip-vertical:before { + -webkit-transform: scale(1, -1); + -ms-transform: scale(-1, 1); + transform: scale(1, -1); +} + +.oi.oi-flip-horizontal-vertical:before { + -webkit-transform: scale(-1, -1); + -ms-transform: scale(-1, 1); + transform: scale(-1, -1); +} + + +.oi-account-login:before { + content:'\e000'; +} + +.oi-account-logout:before { + content:'\e001'; +} + +.oi-action-redo:before { + content:'\e002'; +} + +.oi-action-undo:before { + content:'\e003'; +} + +.oi-align-center:before { + content:'\e004'; +} + +.oi-align-left:before { + content:'\e005'; +} + +.oi-align-right:before { + content:'\e006'; +} + +.oi-aperture:before { + content:'\e007'; +} + +.oi-arrow-bottom:before { + content:'\e008'; +} + +.oi-arrow-circle-bottom:before { + content:'\e009'; +} + +.oi-arrow-circle-left:before { + content:'\e00a'; +} + +.oi-arrow-circle-right:before { + content:'\e00b'; +} + +.oi-arrow-circle-top:before { + content:'\e00c'; +} + +.oi-arrow-left:before { + content:'\e00d'; +} + +.oi-arrow-right:before { + content:'\e00e'; +} + +.oi-arrow-thick-bottom:before { + content:'\e00f'; +} + +.oi-arrow-thick-left:before { + content:'\e010'; +} + +.oi-arrow-thick-right:before { + content:'\e011'; +} + +.oi-arrow-thick-top:before { + content:'\e012'; +} + +.oi-arrow-top:before { + content:'\e013'; +} + +.oi-audio-spectrum:before { + content:'\e014'; +} + +.oi-audio:before { + content:'\e015'; +} + +.oi-badge:before { + content:'\e016'; +} + +.oi-ban:before { + content:'\e017'; +} + +.oi-bar-chart:before { + content:'\e018'; +} + +.oi-basket:before { + content:'\e019'; +} + +.oi-battery-empty:before { + content:'\e01a'; +} + +.oi-battery-full:before { + content:'\e01b'; +} + +.oi-beaker:before { + content:'\e01c'; +} + +.oi-bell:before { + content:'\e01d'; +} + +.oi-bluetooth:before { + content:'\e01e'; +} + +.oi-bold:before { + content:'\e01f'; +} + +.oi-bolt:before { + content:'\e020'; +} + +.oi-book:before { + content:'\e021'; +} + +.oi-bookmark:before { + content:'\e022'; +} + +.oi-box:before { + content:'\e023'; +} + +.oi-briefcase:before { + content:'\e024'; +} + +.oi-british-pound:before { + content:'\e025'; +} + +.oi-browser:before { + content:'\e026'; +} + +.oi-brush:before { + content:'\e027'; +} + +.oi-bug:before { + content:'\e028'; +} + +.oi-bullhorn:before { + content:'\e029'; +} + +.oi-calculator:before { + content:'\e02a'; +} + +.oi-calendar:before { + content:'\e02b'; +} + +.oi-camera-slr:before { + content:'\e02c'; +} + +.oi-caret-bottom:before { + content:'\e02d'; +} + +.oi-caret-left:before { + content:'\e02e'; +} + +.oi-caret-right:before { + content:'\e02f'; +} + +.oi-caret-top:before { + content:'\e030'; +} + +.oi-cart:before { + content:'\e031'; +} + +.oi-chat:before { + content:'\e032'; +} + +.oi-check:before { + content:'\e033'; +} + +.oi-chevron-bottom:before { + content:'\e034'; +} + +.oi-chevron-left:before { + content:'\e035'; +} + +.oi-chevron-right:before { + content:'\e036'; +} + +.oi-chevron-top:before { + content:'\e037'; +} + +.oi-circle-check:before { + content:'\e038'; +} + +.oi-circle-x:before { + content:'\e039'; +} + +.oi-clipboard:before { + content:'\e03a'; +} + +.oi-clock:before { + content:'\e03b'; +} + +.oi-cloud-download:before { + content:'\e03c'; +} + +.oi-cloud-upload:before { + content:'\e03d'; +} + +.oi-cloud:before { + content:'\e03e'; +} + +.oi-cloudy:before { + content:'\e03f'; +} + +.oi-code:before { + content:'\e040'; +} + +.oi-cog:before { + content:'\e041'; +} + +.oi-collapse-down:before { + content:'\e042'; +} + +.oi-collapse-left:before { + content:'\e043'; +} + +.oi-collapse-right:before { + content:'\e044'; +} + +.oi-collapse-up:before { + content:'\e045'; +} + +.oi-command:before { + content:'\e046'; +} + +.oi-comment-square:before { + content:'\e047'; +} + +.oi-compass:before { + content:'\e048'; +} + +.oi-contrast:before { + content:'\e049'; +} + +.oi-copywriting:before { + content:'\e04a'; +} + +.oi-credit-card:before { + content:'\e04b'; +} + +.oi-crop:before { + content:'\e04c'; +} + +.oi-dashboard:before { + content:'\e04d'; +} + +.oi-data-transfer-download:before { + content:'\e04e'; +} + +.oi-data-transfer-upload:before { + content:'\e04f'; +} + +.oi-delete:before { + content:'\e050'; +} + +.oi-dial:before { + content:'\e051'; +} + +.oi-document:before { + content:'\e052'; +} + +.oi-dollar:before { + content:'\e053'; +} + +.oi-double-quote-sans-left:before { + content:'\e054'; +} + +.oi-double-quote-sans-right:before { + content:'\e055'; +} + +.oi-double-quote-serif-left:before { + content:'\e056'; +} + +.oi-double-quote-serif-right:before { + content:'\e057'; +} + +.oi-droplet:before { + content:'\e058'; +} + +.oi-eject:before { + content:'\e059'; +} + +.oi-elevator:before { + content:'\e05a'; +} + +.oi-ellipses:before { + content:'\e05b'; +} + +.oi-envelope-closed:before { + content:'\e05c'; +} + +.oi-envelope-open:before { + content:'\e05d'; +} + +.oi-euro:before { + content:'\e05e'; +} + +.oi-excerpt:before { + content:'\e05f'; +} + +.oi-expand-down:before { + content:'\e060'; +} + +.oi-expand-left:before { + content:'\e061'; +} + +.oi-expand-right:before { + content:'\e062'; +} + +.oi-expand-up:before { + content:'\e063'; +} + +.oi-external-link:before { + content:'\e064'; +} + +.oi-eye:before { + content:'\e065'; +} + +.oi-eyedropper:before { + content:'\e066'; +} + +.oi-file:before { + content:'\e067'; +} + +.oi-fire:before { + content:'\e068'; +} + +.oi-flag:before { + content:'\e069'; +} + +.oi-flash:before { + content:'\e06a'; +} + +.oi-folder:before { + content:'\e06b'; +} + +.oi-fork:before { + content:'\e06c'; +} + +.oi-fullscreen-enter:before { + content:'\e06d'; +} + +.oi-fullscreen-exit:before { + content:'\e06e'; +} + +.oi-globe:before { + content:'\e06f'; +} + +.oi-graph:before { + content:'\e070'; +} + +.oi-grid-four-up:before { + content:'\e071'; +} + +.oi-grid-three-up:before { + content:'\e072'; +} + +.oi-grid-two-up:before { + content:'\e073'; +} + +.oi-hard-drive:before { + content:'\e074'; +} + +.oi-header:before { + content:'\e075'; +} + +.oi-headphones:before { + content:'\e076'; +} + +.oi-heart:before { + content:'\e077'; +} + +.oi-home:before { + content:'\e078'; +} + +.oi-image:before { + content:'\e079'; +} + +.oi-inbox:before { + content:'\e07a'; +} + +.oi-infinity:before { + content:'\e07b'; +} + +.oi-info:before { + content:'\e07c'; +} + +.oi-italic:before { + content:'\e07d'; +} + +.oi-justify-center:before { + content:'\e07e'; +} + +.oi-justify-left:before { + content:'\e07f'; +} + +.oi-justify-right:before { + content:'\e080'; +} + +.oi-key:before { + content:'\e081'; +} + +.oi-laptop:before { + content:'\e082'; +} + +.oi-layers:before { + content:'\e083'; +} + +.oi-lightbulb:before { + content:'\e084'; +} + +.oi-link-broken:before { + content:'\e085'; +} + +.oi-link-intact:before { + content:'\e086'; +} + +.oi-list-rich:before { + content:'\e087'; +} + +.oi-list:before { + content:'\e088'; +} + +.oi-location:before { + content:'\e089'; +} + +.oi-lock-locked:before { + content:'\e08a'; +} + +.oi-lock-unlocked:before { + content:'\e08b'; +} + +.oi-loop-circular:before { + content:'\e08c'; +} + +.oi-loop-square:before { + content:'\e08d'; +} + +.oi-loop:before { + content:'\e08e'; +} + +.oi-magnifying-glass:before { + content:'\e08f'; +} + +.oi-map-marker:before { + content:'\e090'; +} + +.oi-map:before { + content:'\e091'; +} + +.oi-media-pause:before { + content:'\e092'; +} + +.oi-media-play:before { + content:'\e093'; +} + +.oi-media-record:before { + content:'\e094'; +} + +.oi-media-skip-backward:before { + content:'\e095'; +} + +.oi-media-skip-forward:before { + content:'\e096'; +} + +.oi-media-step-backward:before { + content:'\e097'; +} + +.oi-media-step-forward:before { + content:'\e098'; +} + +.oi-media-stop:before { + content:'\e099'; +} + +.oi-medical-cross:before { + content:'\e09a'; +} + +.oi-menu:before { + content:'\e09b'; +} + +.oi-microphone:before { + content:'\e09c'; +} + +.oi-minus:before { + content:'\e09d'; +} + +.oi-monitor:before { + content:'\e09e'; +} + +.oi-moon:before { + content:'\e09f'; +} + +.oi-move:before { + content:'\e0a0'; +} + +.oi-musical-note:before { + content:'\e0a1'; +} + +.oi-paperclip:before { + content:'\e0a2'; +} + +.oi-pencil:before { + content:'\e0a3'; +} + +.oi-people:before { + content:'\e0a4'; +} + +.oi-person:before { + content:'\e0a5'; +} + +.oi-phone:before { + content:'\e0a6'; +} + +.oi-pie-chart:before { + content:'\e0a7'; +} + +.oi-pin:before { + content:'\e0a8'; +} + +.oi-play-circle:before { + content:'\e0a9'; +} + +.oi-plus:before { + content:'\e0aa'; +} + +.oi-power-standby:before { + content:'\e0ab'; +} + +.oi-print:before { + content:'\e0ac'; +} + +.oi-project:before { + content:'\e0ad'; +} + +.oi-pulse:before { + content:'\e0ae'; +} + +.oi-puzzle-piece:before { + content:'\e0af'; +} + +.oi-question-mark:before { + content:'\e0b0'; +} + +.oi-rain:before { + content:'\e0b1'; +} + +.oi-random:before { + content:'\e0b2'; +} + +.oi-reload:before { + content:'\e0b3'; +} + +.oi-resize-both:before { + content:'\e0b4'; +} + +.oi-resize-height:before { + content:'\e0b5'; +} + +.oi-resize-width:before { + content:'\e0b6'; +} + +.oi-rss-alt:before { + content:'\e0b7'; +} + +.oi-rss:before { + content:'\e0b8'; +} + +.oi-script:before { + content:'\e0b9'; +} + +.oi-share-boxed:before { + content:'\e0ba'; +} + +.oi-share:before { + content:'\e0bb'; +} + +.oi-shield:before { + content:'\e0bc'; +} + +.oi-signal:before { + content:'\e0bd'; +} + +.oi-signpost:before { + content:'\e0be'; +} + +.oi-sort-ascending:before { + content:'\e0bf'; +} + +.oi-sort-descending:before { + content:'\e0c0'; +} + +.oi-spreadsheet:before { + content:'\e0c1'; +} + +.oi-star:before { + content:'\e0c2'; +} + +.oi-sun:before { + content:'\e0c3'; +} + +.oi-tablet:before { + content:'\e0c4'; +} + +.oi-tag:before { + content:'\e0c5'; +} + +.oi-tags:before { + content:'\e0c6'; +} + +.oi-target:before { + content:'\e0c7'; +} + +.oi-task:before { + content:'\e0c8'; +} + +.oi-terminal:before { + content:'\e0c9'; +} + +.oi-text:before { + content:'\e0ca'; +} + +.oi-thumb-down:before { + content:'\e0cb'; +} + +.oi-thumb-up:before { + content:'\e0cc'; +} + +.oi-timer:before { + content:'\e0cd'; +} + +.oi-transfer:before { + content:'\e0ce'; +} + +.oi-trash:before { + content:'\e0cf'; +} + +.oi-underline:before { + content:'\e0d0'; +} + +.oi-vertical-align-bottom:before { + content:'\e0d1'; +} + +.oi-vertical-align-center:before { + content:'\e0d2'; +} + +.oi-vertical-align-top:before { + content:'\e0d3'; +} + +.oi-video:before { + content:'\e0d4'; +} + +.oi-volume-high:before { + content:'\e0d5'; +} + +.oi-volume-low:before { + content:'\e0d6'; +} + +.oi-volume-off:before { + content:'\e0d7'; +} + +.oi-warning:before { + content:'\e0d8'; +} + +.oi-wifi:before { + content:'\e0d9'; +} + +.oi-wrench:before { + content:'\e0da'; +} + +.oi-x:before { + content:'\e0db'; +} + +.oi-yen:before { + content:'\e0dc'; +} + +.oi-zoom-in:before { + content:'\e0dd'; +} + +.oi-zoom-out:before { + content:'\e0de'; +} diff --git a/the8eam/open-iconic/font/css/open-iconic-bootstrap.less b/the8eam/open-iconic/font/css/open-iconic-bootstrap.less new file mode 100644 index 0000000..fc3fe34 --- /dev/null +++ b/the8eam/open-iconic/font/css/open-iconic-bootstrap.less @@ -0,0 +1,960 @@ +/* Bootstrap */ + +/* Override Bootstrap default variable */ +//@icon-font-path: "../fonts/"; + +@font-face { + font-family: 'Icons'; + src: ~"url('@{icon-font-path}open-iconic.eot')"; + src: ~"url('@{icon-font-path}open-iconic.eot?#iconic-sm') format('embedded-opentype')", + ~"url('@{icon-font-path}open-iconic.woff') format('woff')", + ~"url('@{icon-font-path}open-iconic.ttf') format('truetype')", + ~"url('@{icon-font-path}open-iconic.svg#iconic-sm') format('svg')"; + font-weight: normal; + font-style: normal; +} + +// Catchall baseclass +.oi { + position: relative; + top: 1px; + display: inline-block; + font-family: 'Icons'; + font-style: normal; + font-weight: normal; + line-height: 1; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; + + &:empty:before { + width: 1em; + text-align: center; + box-sizing: content-box; + } + + &.oi-align-center:before { + text-align: center; + } + + &.oi-align-left:before { + text-align: left; + } + + &.oi-align-right:before { + text-align: right; + } + + + &.oi-flip-horizontal:before { + -webkit-transform: scale(-1, 1); + -ms-transform: scale(-1, 1); + transform: scale(-1, 1); + } + + &.oi-flip-vertical:before { + -webkit-transform: scale(1, -1); + -ms-transform: scale(-1, 1); + transform: scale(1, -1); + } + + &.oi-flip-horizontal-vertical:before { + -webkit-transform: scale(-1, -1); + -ms-transform: scale(-1, 1); + transform: scale(-1, -1); + } +} + + + +.oi-account-login:before { + content:"\e000"; +} + +.oi-account-logout:before { + content:"\e001"; +} + +.oi-action-redo:before { + content:"\e002"; +} + +.oi-action-undo:before { + content:"\e003"; +} + +.oi-align-center:before { + content:"\e004"; +} + +.oi-align-left:before { + content:"\e005"; +} + +.oi-align-right:before { + content:"\e006"; +} + +.oi-aperture:before { + content:"\e007"; +} + +.oi-arrow-bottom:before { + content:"\e008"; +} + +.oi-arrow-circle-bottom:before { + content:"\e009"; +} + +.oi-arrow-circle-left:before { + content:"\e00a"; +} + +.oi-arrow-circle-right:before { + content:"\e00b"; +} + +.oi-arrow-circle-top:before { + content:"\e00c"; +} + +.oi-arrow-left:before { + content:"\e00d"; +} + +.oi-arrow-right:before { + content:"\e00e"; +} + +.oi-arrow-thick-bottom:before { + content:"\e00f"; +} + +.oi-arrow-thick-left:before { + content:"\e010"; +} + +.oi-arrow-thick-right:before { + content:"\e011"; +} + +.oi-arrow-thick-top:before { + content:"\e012"; +} + +.oi-arrow-top:before { + content:"\e013"; +} + +.oi-audio-spectrum:before { + content:"\e014"; +} + +.oi-audio:before { + content:"\e015"; +} + +.oi-badge:before { + content:"\e016"; +} + +.oi-ban:before { + content:"\e017"; +} + +.oi-bar-chart:before { + content:"\e018"; +} + +.oi-basket:before { + content:"\e019"; +} + +.oi-battery-empty:before { + content:"\e01a"; +} + +.oi-battery-full:before { + content:"\e01b"; +} + +.oi-beaker:before { + content:"\e01c"; +} + +.oi-bell:before { + content:"\e01d"; +} + +.oi-bluetooth:before { + content:"\e01e"; +} + +.oi-bold:before { + content:"\e01f"; +} + +.oi-bolt:before { + content:"\e020"; +} + +.oi-book:before { + content:"\e021"; +} + +.oi-bookmark:before { + content:"\e022"; +} + +.oi-box:before { + content:"\e023"; +} + +.oi-briefcase:before { + content:"\e024"; +} + +.oi-british-pound:before { + content:"\e025"; +} + +.oi-browser:before { + content:"\e026"; +} + +.oi-brush:before { + content:"\e027"; +} + +.oi-bug:before { + content:"\e028"; +} + +.oi-bullhorn:before { + content:"\e029"; +} + +.oi-calculator:before { + content:"\e02a"; +} + +.oi-calendar:before { + content:"\e02b"; +} + +.oi-camera-slr:before { + content:"\e02c"; +} + +.oi-caret-bottom:before { + content:"\e02d"; +} + +.oi-caret-left:before { + content:"\e02e"; +} + +.oi-caret-right:before { + content:"\e02f"; +} + +.oi-caret-top:before { + content:"\e030"; +} + +.oi-cart:before { + content:"\e031"; +} + +.oi-chat:before { + content:"\e032"; +} + +.oi-check:before { + content:"\e033"; +} + +.oi-chevron-bottom:before { + content:"\e034"; +} + +.oi-chevron-left:before { + content:"\e035"; +} + +.oi-chevron-right:before { + content:"\e036"; +} + +.oi-chevron-top:before { + content:"\e037"; +} + +.oi-circle-check:before { + content:"\e038"; +} + +.oi-circle-x:before { + content:"\e039"; +} + +.oi-clipboard:before { + content:"\e03a"; +} + +.oi-clock:before { + content:"\e03b"; +} + +.oi-cloud-download:before { + content:"\e03c"; +} + +.oi-cloud-upload:before { + content:"\e03d"; +} + +.oi-cloud:before { + content:"\e03e"; +} + +.oi-cloudy:before { + content:"\e03f"; +} + +.oi-code:before { + content:"\e040"; +} + +.oi-cog:before { + content:"\e041"; +} + +.oi-collapse-down:before { + content:"\e042"; +} + +.oi-collapse-left:before { + content:"\e043"; +} + +.oi-collapse-right:before { + content:"\e044"; +} + +.oi-collapse-up:before { + content:"\e045"; +} + +.oi-command:before { + content:"\e046"; +} + +.oi-comment-square:before { + content:"\e047"; +} + +.oi-compass:before { + content:"\e048"; +} + +.oi-contrast:before { + content:"\e049"; +} + +.oi-copywriting:before { + content:"\e04a"; +} + +.oi-credit-card:before { + content:"\e04b"; +} + +.oi-crop:before { + content:"\e04c"; +} + +.oi-dashboard:before { + content:"\e04d"; +} + +.oi-data-transfer-download:before { + content:"\e04e"; +} + +.oi-data-transfer-upload:before { + content:"\e04f"; +} + +.oi-delete:before { + content:"\e050"; +} + +.oi-dial:before { + content:"\e051"; +} + +.oi-document:before { + content:"\e052"; +} + +.oi-dollar:before { + content:"\e053"; +} + +.oi-double-quote-sans-left:before { + content:"\e054"; +} + +.oi-double-quote-sans-right:before { + content:"\e055"; +} + +.oi-double-quote-serif-left:before { + content:"\e056"; +} + +.oi-double-quote-serif-right:before { + content:"\e057"; +} + +.oi-droplet:before { + content:"\e058"; +} + +.oi-eject:before { + content:"\e059"; +} + +.oi-elevator:before { + content:"\e05a"; +} + +.oi-ellipses:before { + content:"\e05b"; +} + +.oi-envelope-closed:before { + content:"\e05c"; +} + +.oi-envelope-open:before { + content:"\e05d"; +} + +.oi-euro:before { + content:"\e05e"; +} + +.oi-excerpt:before { + content:"\e05f"; +} + +.oi-expand-down:before { + content:"\e060"; +} + +.oi-expand-left:before { + content:"\e061"; +} + +.oi-expand-right:before { + content:"\e062"; +} + +.oi-expand-up:before { + content:"\e063"; +} + +.oi-external-link:before { + content:"\e064"; +} + +.oi-eye:before { + content:"\e065"; +} + +.oi-eyedropper:before { + content:"\e066"; +} + +.oi-file:before { + content:"\e067"; +} + +.oi-fire:before { + content:"\e068"; +} + +.oi-flag:before { + content:"\e069"; +} + +.oi-flash:before { + content:"\e06a"; +} + +.oi-folder:before { + content:"\e06b"; +} + +.oi-fork:before { + content:"\e06c"; +} + +.oi-fullscreen-enter:before { + content:"\e06d"; +} + +.oi-fullscreen-exit:before { + content:"\e06e"; +} + +.oi-globe:before { + content:"\e06f"; +} + +.oi-graph:before { + content:"\e070"; +} + +.oi-grid-four-up:before { + content:"\e071"; +} + +.oi-grid-three-up:before { + content:"\e072"; +} + +.oi-grid-two-up:before { + content:"\e073"; +} + +.oi-hard-drive:before { + content:"\e074"; +} + +.oi-header:before { + content:"\e075"; +} + +.oi-headphones:before { + content:"\e076"; +} + +.oi-heart:before { + content:"\e077"; +} + +.oi-home:before { + content:"\e078"; +} + +.oi-image:before { + content:"\e079"; +} + +.oi-inbox:before { + content:"\e07a"; +} + +.oi-infinity:before { + content:"\e07b"; +} + +.oi-info:before { + content:"\e07c"; +} + +.oi-italic:before { + content:"\e07d"; +} + +.oi-justify-center:before { + content:"\e07e"; +} + +.oi-justify-left:before { + content:"\e07f"; +} + +.oi-justify-right:before { + content:"\e080"; +} + +.oi-key:before { + content:"\e081"; +} + +.oi-laptop:before { + content:"\e082"; +} + +.oi-layers:before { + content:"\e083"; +} + +.oi-lightbulb:before { + content:"\e084"; +} + +.oi-link-broken:before { + content:"\e085"; +} + +.oi-link-intact:before { + content:"\e086"; +} + +.oi-list-rich:before { + content:"\e087"; +} + +.oi-list:before { + content:"\e088"; +} + +.oi-location:before { + content:"\e089"; +} + +.oi-lock-locked:before { + content:"\e08a"; +} + +.oi-lock-unlocked:before { + content:"\e08b"; +} + +.oi-loop-circular:before { + content:"\e08c"; +} + +.oi-loop-square:before { + content:"\e08d"; +} + +.oi-loop:before { + content:"\e08e"; +} + +.oi-magnifying-glass:before { + content:"\e08f"; +} + +.oi-map-marker:before { + content:"\e090"; +} + +.oi-map:before { + content:"\e091"; +} + +.oi-media-pause:before { + content:"\e092"; +} + +.oi-media-play:before { + content:"\e093"; +} + +.oi-media-record:before { + content:"\e094"; +} + +.oi-media-skip-backward:before { + content:"\e095"; +} + +.oi-media-skip-forward:before { + content:"\e096"; +} + +.oi-media-step-backward:before { + content:"\e097"; +} + +.oi-media-step-forward:before { + content:"\e098"; +} + +.oi-media-stop:before { + content:"\e099"; +} + +.oi-medical-cross:before { + content:"\e09a"; +} + +.oi-menu:before { + content:"\e09b"; +} + +.oi-microphone:before { + content:"\e09c"; +} + +.oi-minus:before { + content:"\e09d"; +} + +.oi-monitor:before { + content:"\e09e"; +} + +.oi-moon:before { + content:"\e09f"; +} + +.oi-move:before { + content:"\e0a0"; +} + +.oi-musical-note:before { + content:"\e0a1"; +} + +.oi-paperclip:before { + content:"\e0a2"; +} + +.oi-pencil:before { + content:"\e0a3"; +} + +.oi-people:before { + content:"\e0a4"; +} + +.oi-person:before { + content:"\e0a5"; +} + +.oi-phone:before { + content:"\e0a6"; +} + +.oi-pie-chart:before { + content:"\e0a7"; +} + +.oi-pin:before { + content:"\e0a8"; +} + +.oi-play-circle:before { + content:"\e0a9"; +} + +.oi-plus:before { + content:"\e0aa"; +} + +.oi-power-standby:before { + content:"\e0ab"; +} + +.oi-print:before { + content:"\e0ac"; +} + +.oi-project:before { + content:"\e0ad"; +} + +.oi-pulse:before { + content:"\e0ae"; +} + +.oi-puzzle-piece:before { + content:"\e0af"; +} + +.oi-question-mark:before { + content:"\e0b0"; +} + +.oi-rain:before { + content:"\e0b1"; +} + +.oi-random:before { + content:"\e0b2"; +} + +.oi-reload:before { + content:"\e0b3"; +} + +.oi-resize-both:before { + content:"\e0b4"; +} + +.oi-resize-height:before { + content:"\e0b5"; +} + +.oi-resize-width:before { + content:"\e0b6"; +} + +.oi-rss-alt:before { + content:"\e0b7"; +} + +.oi-rss:before { + content:"\e0b8"; +} + +.oi-script:before { + content:"\e0b9"; +} + +.oi-share-boxed:before { + content:"\e0ba"; +} + +.oi-share:before { + content:"\e0bb"; +} + +.oi-shield:before { + content:"\e0bc"; +} + +.oi-signal:before { + content:"\e0bd"; +} + +.oi-signpost:before { + content:"\e0be"; +} + +.oi-sort-ascending:before { + content:"\e0bf"; +} + +.oi-sort-descending:before { + content:"\e0c0"; +} + +.oi-spreadsheet:before { + content:"\e0c1"; +} + +.oi-star:before { + content:"\e0c2"; +} + +.oi-sun:before { + content:"\e0c3"; +} + +.oi-tablet:before { + content:"\e0c4"; +} + +.oi-tag:before { + content:"\e0c5"; +} + +.oi-tags:before { + content:"\e0c6"; +} + +.oi-target:before { + content:"\e0c7"; +} + +.oi-task:before { + content:"\e0c8"; +} + +.oi-terminal:before { + content:"\e0c9"; +} + +.oi-text:before { + content:"\e0ca"; +} + +.oi-thumb-down:before { + content:"\e0cb"; +} + +.oi-thumb-up:before { + content:"\e0cc"; +} + +.oi-timer:before { + content:"\e0cd"; +} + +.oi-transfer:before { + content:"\e0ce"; +} + +.oi-trash:before { + content:"\e0cf"; +} + +.oi-underline:before { + content:"\e0d0"; +} + +.oi-vertical-align-bottom:before { + content:"\e0d1"; +} + +.oi-vertical-align-center:before { + content:"\e0d2"; +} + +.oi-vertical-align-top:before { + content:"\e0d3"; +} + +.oi-video:before { + content:"\e0d4"; +} + +.oi-volume-high:before { + content:"\e0d5"; +} + +.oi-volume-low:before { + content:"\e0d6"; +} + +.oi-volume-off:before { + content:"\e0d7"; +} + +.oi-warning:before { + content:"\e0d8"; +} + +.oi-wifi:before { + content:"\e0d9"; +} + +.oi-wrench:before { + content:"\e0da"; +} + +.oi-x:before { + content:"\e0db"; +} + +.oi-yen:before { + content:"\e0dc"; +} + +.oi-zoom-in:before { + content:"\e0dd"; +} + +.oi-zoom-out:before { + content:"\e0de"; +} + diff --git a/the8eam/open-iconic/font/css/open-iconic-bootstrap.min.css b/the8eam/open-iconic/font/css/open-iconic-bootstrap.min.css new file mode 100644 index 0000000..4664f2e --- /dev/null +++ b/the8eam/open-iconic/font/css/open-iconic-bootstrap.min.css @@ -0,0 +1 @@ +@font-face{font-family:Icons;src:url(../fonts/open-iconic.eot);src:url(../fonts/open-iconic.eot?#iconic-sm) format('embedded-opentype'),url(../fonts/open-iconic.woff) format('woff'),url(../fonts/open-iconic.ttf) format('truetype'),url(../fonts/open-iconic.otf) format('opentype'),url(../fonts/open-iconic.svg#iconic-sm) format('svg');font-weight:400;font-style:normal}.oi{position:relative;top:1px;display:inline-block;speak:none;font-family:Icons;font-style:normal;font-weight:400;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.oi:empty:before{width:1em;text-align:center;box-sizing:content-box}.oi.oi-align-center:before{text-align:center}.oi.oi-align-left:before{text-align:left}.oi.oi-align-right:before{text-align:right}.oi.oi-flip-horizontal:before{-webkit-transform:scale(-1,1);-ms-transform:scale(-1,1);transform:scale(-1,1)}.oi.oi-flip-vertical:before{-webkit-transform:scale(1,-1);-ms-transform:scale(-1,1);transform:scale(1,-1)}.oi.oi-flip-horizontal-vertical:before{-webkit-transform:scale(-1,-1);-ms-transform:scale(-1,1);transform:scale(-1,-1)}.oi-account-login:before{content:'\e000'}.oi-account-logout:before{content:'\e001'}.oi-action-redo:before{content:'\e002'}.oi-action-undo:before{content:'\e003'}.oi-align-center:before{content:'\e004'}.oi-align-left:before{content:'\e005'}.oi-align-right:before{content:'\e006'}.oi-aperture:before{content:'\e007'}.oi-arrow-bottom:before{content:'\e008'}.oi-arrow-circle-bottom:before{content:'\e009'}.oi-arrow-circle-left:before{content:'\e00a'}.oi-arrow-circle-right:before{content:'\e00b'}.oi-arrow-circle-top:before{content:'\e00c'}.oi-arrow-left:before{content:'\e00d'}.oi-arrow-right:before{content:'\e00e'}.oi-arrow-thick-bottom:before{content:'\e00f'}.oi-arrow-thick-left:before{content:'\e010'}.oi-arrow-thick-right:before{content:'\e011'}.oi-arrow-thick-top:before{content:'\e012'}.oi-arrow-top:before{content:'\e013'}.oi-audio-spectrum:before{content:'\e014'}.oi-audio:before{content:'\e015'}.oi-badge:before{content:'\e016'}.oi-ban:before{content:'\e017'}.oi-bar-chart:before{content:'\e018'}.oi-basket:before{content:'\e019'}.oi-battery-empty:before{content:'\e01a'}.oi-battery-full:before{content:'\e01b'}.oi-beaker:before{content:'\e01c'}.oi-bell:before{content:'\e01d'}.oi-bluetooth:before{content:'\e01e'}.oi-bold:before{content:'\e01f'}.oi-bolt:before{content:'\e020'}.oi-book:before{content:'\e021'}.oi-bookmark:before{content:'\e022'}.oi-box:before{content:'\e023'}.oi-briefcase:before{content:'\e024'}.oi-british-pound:before{content:'\e025'}.oi-browser:before{content:'\e026'}.oi-brush:before{content:'\e027'}.oi-bug:before{content:'\e028'}.oi-bullhorn:before{content:'\e029'}.oi-calculator:before{content:'\e02a'}.oi-calendar:before{content:'\e02b'}.oi-camera-slr:before{content:'\e02c'}.oi-caret-bottom:before{content:'\e02d'}.oi-caret-left:before{content:'\e02e'}.oi-caret-right:before{content:'\e02f'}.oi-caret-top:before{content:'\e030'}.oi-cart:before{content:'\e031'}.oi-chat:before{content:'\e032'}.oi-check:before{content:'\e033'}.oi-chevron-bottom:before{content:'\e034'}.oi-chevron-left:before{content:'\e035'}.oi-chevron-right:before{content:'\e036'}.oi-chevron-top:before{content:'\e037'}.oi-circle-check:before{content:'\e038'}.oi-circle-x:before{content:'\e039'}.oi-clipboard:before{content:'\e03a'}.oi-clock:before{content:'\e03b'}.oi-cloud-download:before{content:'\e03c'}.oi-cloud-upload:before{content:'\e03d'}.oi-cloud:before{content:'\e03e'}.oi-cloudy:before{content:'\e03f'}.oi-code:before{content:'\e040'}.oi-cog:before{content:'\e041'}.oi-collapse-down:before{content:'\e042'}.oi-collapse-left:before{content:'\e043'}.oi-collapse-right:before{content:'\e044'}.oi-collapse-up:before{content:'\e045'}.oi-command:before{content:'\e046'}.oi-comment-square:before{content:'\e047'}.oi-compass:before{content:'\e048'}.oi-contrast:before{content:'\e049'}.oi-copywriting:before{content:'\e04a'}.oi-credit-card:before{content:'\e04b'}.oi-crop:before{content:'\e04c'}.oi-dashboard:before{content:'\e04d'}.oi-data-transfer-download:before{content:'\e04e'}.oi-data-transfer-upload:before{content:'\e04f'}.oi-delete:before{content:'\e050'}.oi-dial:before{content:'\e051'}.oi-document:before{content:'\e052'}.oi-dollar:before{content:'\e053'}.oi-double-quote-sans-left:before{content:'\e054'}.oi-double-quote-sans-right:before{content:'\e055'}.oi-double-quote-serif-left:before{content:'\e056'}.oi-double-quote-serif-right:before{content:'\e057'}.oi-droplet:before{content:'\e058'}.oi-eject:before{content:'\e059'}.oi-elevator:before{content:'\e05a'}.oi-ellipses:before{content:'\e05b'}.oi-envelope-closed:before{content:'\e05c'}.oi-envelope-open:before{content:'\e05d'}.oi-euro:before{content:'\e05e'}.oi-excerpt:before{content:'\e05f'}.oi-expand-down:before{content:'\e060'}.oi-expand-left:before{content:'\e061'}.oi-expand-right:before{content:'\e062'}.oi-expand-up:before{content:'\e063'}.oi-external-link:before{content:'\e064'}.oi-eye:before{content:'\e065'}.oi-eyedropper:before{content:'\e066'}.oi-file:before{content:'\e067'}.oi-fire:before{content:'\e068'}.oi-flag:before{content:'\e069'}.oi-flash:before{content:'\e06a'}.oi-folder:before{content:'\e06b'}.oi-fork:before{content:'\e06c'}.oi-fullscreen-enter:before{content:'\e06d'}.oi-fullscreen-exit:before{content:'\e06e'}.oi-globe:before{content:'\e06f'}.oi-graph:before{content:'\e070'}.oi-grid-four-up:before{content:'\e071'}.oi-grid-three-up:before{content:'\e072'}.oi-grid-two-up:before{content:'\e073'}.oi-hard-drive:before{content:'\e074'}.oi-header:before{content:'\e075'}.oi-headphones:before{content:'\e076'}.oi-heart:before{content:'\e077'}.oi-home:before{content:'\e078'}.oi-image:before{content:'\e079'}.oi-inbox:before{content:'\e07a'}.oi-infinity:before{content:'\e07b'}.oi-info:before{content:'\e07c'}.oi-italic:before{content:'\e07d'}.oi-justify-center:before{content:'\e07e'}.oi-justify-left:before{content:'\e07f'}.oi-justify-right:before{content:'\e080'}.oi-key:before{content:'\e081'}.oi-laptop:before{content:'\e082'}.oi-layers:before{content:'\e083'}.oi-lightbulb:before{content:'\e084'}.oi-link-broken:before{content:'\e085'}.oi-link-intact:before{content:'\e086'}.oi-list-rich:before{content:'\e087'}.oi-list:before{content:'\e088'}.oi-location:before{content:'\e089'}.oi-lock-locked:before{content:'\e08a'}.oi-lock-unlocked:before{content:'\e08b'}.oi-loop-circular:before{content:'\e08c'}.oi-loop-square:before{content:'\e08d'}.oi-loop:before{content:'\e08e'}.oi-magnifying-glass:before{content:'\e08f'}.oi-map-marker:before{content:'\e090'}.oi-map:before{content:'\e091'}.oi-media-pause:before{content:'\e092'}.oi-media-play:before{content:'\e093'}.oi-media-record:before{content:'\e094'}.oi-media-skip-backward:before{content:'\e095'}.oi-media-skip-forward:before{content:'\e096'}.oi-media-step-backward:before{content:'\e097'}.oi-media-step-forward:before{content:'\e098'}.oi-media-stop:before{content:'\e099'}.oi-medical-cross:before{content:'\e09a'}.oi-menu:before{content:'\e09b'}.oi-microphone:before{content:'\e09c'}.oi-minus:before{content:'\e09d'}.oi-monitor:before{content:'\e09e'}.oi-moon:before{content:'\e09f'}.oi-move:before{content:'\e0a0'}.oi-musical-note:before{content:'\e0a1'}.oi-paperclip:before{content:'\e0a2'}.oi-pencil:before{content:'\e0a3'}.oi-people:before{content:'\e0a4'}.oi-person:before{content:'\e0a5'}.oi-phone:before{content:'\e0a6'}.oi-pie-chart:before{content:'\e0a7'}.oi-pin:before{content:'\e0a8'}.oi-play-circle:before{content:'\e0a9'}.oi-plus:before{content:'\e0aa'}.oi-power-standby:before{content:'\e0ab'}.oi-print:before{content:'\e0ac'}.oi-project:before{content:'\e0ad'}.oi-pulse:before{content:'\e0ae'}.oi-puzzle-piece:before{content:'\e0af'}.oi-question-mark:before{content:'\e0b0'}.oi-rain:before{content:'\e0b1'}.oi-random:before{content:'\e0b2'}.oi-reload:before{content:'\e0b3'}.oi-resize-both:before{content:'\e0b4'}.oi-resize-height:before{content:'\e0b5'}.oi-resize-width:before{content:'\e0b6'}.oi-rss-alt:before{content:'\e0b7'}.oi-rss:before{content:'\e0b8'}.oi-script:before{content:'\e0b9'}.oi-share-boxed:before{content:'\e0ba'}.oi-share:before{content:'\e0bb'}.oi-shield:before{content:'\e0bc'}.oi-signal:before{content:'\e0bd'}.oi-signpost:before{content:'\e0be'}.oi-sort-ascending:before{content:'\e0bf'}.oi-sort-descending:before{content:'\e0c0'}.oi-spreadsheet:before{content:'\e0c1'}.oi-star:before{content:'\e0c2'}.oi-sun:before{content:'\e0c3'}.oi-tablet:before{content:'\e0c4'}.oi-tag:before{content:'\e0c5'}.oi-tags:before{content:'\e0c6'}.oi-target:before{content:'\e0c7'}.oi-task:before{content:'\e0c8'}.oi-terminal:before{content:'\e0c9'}.oi-text:before{content:'\e0ca'}.oi-thumb-down:before{content:'\e0cb'}.oi-thumb-up:before{content:'\e0cc'}.oi-timer:before{content:'\e0cd'}.oi-transfer:before{content:'\e0ce'}.oi-trash:before{content:'\e0cf'}.oi-underline:before{content:'\e0d0'}.oi-vertical-align-bottom:before{content:'\e0d1'}.oi-vertical-align-center:before{content:'\e0d2'}.oi-vertical-align-top:before{content:'\e0d3'}.oi-video:before{content:'\e0d4'}.oi-volume-high:before{content:'\e0d5'}.oi-volume-low:before{content:'\e0d6'}.oi-volume-off:before{content:'\e0d7'}.oi-warning:before{content:'\e0d8'}.oi-wifi:before{content:'\e0d9'}.oi-wrench:before{content:'\e0da'}.oi-x:before{content:'\e0db'}.oi-yen:before{content:'\e0dc'}.oi-zoom-in:before{content:'\e0dd'}.oi-zoom-out:before{content:'\e0de'} \ No newline at end of file diff --git a/the8eam/open-iconic/font/css/open-iconic-bootstrap.scss b/the8eam/open-iconic/font/css/open-iconic-bootstrap.scss new file mode 100644 index 0000000..18f01e2 --- /dev/null +++ b/the8eam/open-iconic/font/css/open-iconic-bootstrap.scss @@ -0,0 +1,958 @@ +/* Bootstrap */ + +/* Override Bootstrap default variable */ +$icon-font-path: '../fonts/' !default; + +@font-face { + font-family: 'Icons'; + src: url('#{$icon-font-path}open-iconic.eot'); + src: url('#{$icon-font-path}open-iconic.eot?#iconic-sm') format('embedded-opentype'), url('#{$icon-font-path}open-iconic.woff') format('woff'), url('#{$icon-font-path}open-iconic.ttf') format('truetype'), url('#{$icon-font-path}open-iconic.svg#iconic-sm') format('svg'); + font-weight: normal; + font-style: normal; +} + +// Catchall baseclass +.oi { + position: relative; + top: 1px; + display: inline-block; + font-family: 'Icons'; + font-style: normal; + font-weight: normal; + line-height: 1; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; + + + &:empty:before { + width: 1em; + text-align: center; + box-sizing: content-box; + } + + &.oi-align-center:before { + text-align: center; + } + + &.oi-align-left:before { + text-align: left; + } + + &.oi-align-right:before { + text-align: right; + } + + + &.oi-flip-horizontal:before { + -webkit-transform: scale(-1, 1); + -ms-transform: scale(-1, 1); + transform: scale(-1, 1); + } + + &.oi-flip-vertical:before { + -webkit-transform: scale(1, -1); + -ms-transform: scale(-1, 1); + transform: scale(1, -1); + } + + &.oi-flip-horizontal-vertical:before { + -webkit-transform: scale(-1, -1); + -ms-transform: scale(-1, 1); + transform: scale(-1, -1); + } +} + + + +.oi-account-login:before { + content:'\e000'; +} + +.oi-account-logout:before { + content:'\e001'; +} + +.oi-action-redo:before { + content:'\e002'; +} + +.oi-action-undo:before { + content:'\e003'; +} + +.oi-align-center:before { + content:'\e004'; +} + +.oi-align-left:before { + content:'\e005'; +} + +.oi-align-right:before { + content:'\e006'; +} + +.oi-aperture:before { + content:'\e007'; +} + +.oi-arrow-bottom:before { + content:'\e008'; +} + +.oi-arrow-circle-bottom:before { + content:'\e009'; +} + +.oi-arrow-circle-left:before { + content:'\e00a'; +} + +.oi-arrow-circle-right:before { + content:'\e00b'; +} + +.oi-arrow-circle-top:before { + content:'\e00c'; +} + +.oi-arrow-left:before { + content:'\e00d'; +} + +.oi-arrow-right:before { + content:'\e00e'; +} + +.oi-arrow-thick-bottom:before { + content:'\e00f'; +} + +.oi-arrow-thick-left:before { + content:'\e010'; +} + +.oi-arrow-thick-right:before { + content:'\e011'; +} + +.oi-arrow-thick-top:before { + content:'\e012'; +} + +.oi-arrow-top:before { + content:'\e013'; +} + +.oi-audio-spectrum:before { + content:'\e014'; +} + +.oi-audio:before { + content:'\e015'; +} + +.oi-badge:before { + content:'\e016'; +} + +.oi-ban:before { + content:'\e017'; +} + +.oi-bar-chart:before { + content:'\e018'; +} + +.oi-basket:before { + content:'\e019'; +} + +.oi-battery-empty:before { + content:'\e01a'; +} + +.oi-battery-full:before { + content:'\e01b'; +} + +.oi-beaker:before { + content:'\e01c'; +} + +.oi-bell:before { + content:'\e01d'; +} + +.oi-bluetooth:before { + content:'\e01e'; +} + +.oi-bold:before { + content:'\e01f'; +} + +.oi-bolt:before { + content:'\e020'; +} + +.oi-book:before { + content:'\e021'; +} + +.oi-bookmark:before { + content:'\e022'; +} + +.oi-box:before { + content:'\e023'; +} + +.oi-briefcase:before { + content:'\e024'; +} + +.oi-british-pound:before { + content:'\e025'; +} + +.oi-browser:before { + content:'\e026'; +} + +.oi-brush:before { + content:'\e027'; +} + +.oi-bug:before { + content:'\e028'; +} + +.oi-bullhorn:before { + content:'\e029'; +} + +.oi-calculator:before { + content:'\e02a'; +} + +.oi-calendar:before { + content:'\e02b'; +} + +.oi-camera-slr:before { + content:'\e02c'; +} + +.oi-caret-bottom:before { + content:'\e02d'; +} + +.oi-caret-left:before { + content:'\e02e'; +} + +.oi-caret-right:before { + content:'\e02f'; +} + +.oi-caret-top:before { + content:'\e030'; +} + +.oi-cart:before { + content:'\e031'; +} + +.oi-chat:before { + content:'\e032'; +} + +.oi-check:before { + content:'\e033'; +} + +.oi-chevron-bottom:before { + content:'\e034'; +} + +.oi-chevron-left:before { + content:'\e035'; +} + +.oi-chevron-right:before { + content:'\e036'; +} + +.oi-chevron-top:before { + content:'\e037'; +} + +.oi-circle-check:before { + content:'\e038'; +} + +.oi-circle-x:before { + content:'\e039'; +} + +.oi-clipboard:before { + content:'\e03a'; +} + +.oi-clock:before { + content:'\e03b'; +} + +.oi-cloud-download:before { + content:'\e03c'; +} + +.oi-cloud-upload:before { + content:'\e03d'; +} + +.oi-cloud:before { + content:'\e03e'; +} + +.oi-cloudy:before { + content:'\e03f'; +} + +.oi-code:before { + content:'\e040'; +} + +.oi-cog:before { + content:'\e041'; +} + +.oi-collapse-down:before { + content:'\e042'; +} + +.oi-collapse-left:before { + content:'\e043'; +} + +.oi-collapse-right:before { + content:'\e044'; +} + +.oi-collapse-up:before { + content:'\e045'; +} + +.oi-command:before { + content:'\e046'; +} + +.oi-comment-square:before { + content:'\e047'; +} + +.oi-compass:before { + content:'\e048'; +} + +.oi-contrast:before { + content:'\e049'; +} + +.oi-copywriting:before { + content:'\e04a'; +} + +.oi-credit-card:before { + content:'\e04b'; +} + +.oi-crop:before { + content:'\e04c'; +} + +.oi-dashboard:before { + content:'\e04d'; +} + +.oi-data-transfer-download:before { + content:'\e04e'; +} + +.oi-data-transfer-upload:before { + content:'\e04f'; +} + +.oi-delete:before { + content:'\e050'; +} + +.oi-dial:before { + content:'\e051'; +} + +.oi-document:before { + content:'\e052'; +} + +.oi-dollar:before { + content:'\e053'; +} + +.oi-double-quote-sans-left:before { + content:'\e054'; +} + +.oi-double-quote-sans-right:before { + content:'\e055'; +} + +.oi-double-quote-serif-left:before { + content:'\e056'; +} + +.oi-double-quote-serif-right:before { + content:'\e057'; +} + +.oi-droplet:before { + content:'\e058'; +} + +.oi-eject:before { + content:'\e059'; +} + +.oi-elevator:before { + content:'\e05a'; +} + +.oi-ellipses:before { + content:'\e05b'; +} + +.oi-envelope-closed:before { + content:'\e05c'; +} + +.oi-envelope-open:before { + content:'\e05d'; +} + +.oi-euro:before { + content:'\e05e'; +} + +.oi-excerpt:before { + content:'\e05f'; +} + +.oi-expand-down:before { + content:'\e060'; +} + +.oi-expand-left:before { + content:'\e061'; +} + +.oi-expand-right:before { + content:'\e062'; +} + +.oi-expand-up:before { + content:'\e063'; +} + +.oi-external-link:before { + content:'\e064'; +} + +.oi-eye:before { + content:'\e065'; +} + +.oi-eyedropper:before { + content:'\e066'; +} + +.oi-file:before { + content:'\e067'; +} + +.oi-fire:before { + content:'\e068'; +} + +.oi-flag:before { + content:'\e069'; +} + +.oi-flash:before { + content:'\e06a'; +} + +.oi-folder:before { + content:'\e06b'; +} + +.oi-fork:before { + content:'\e06c'; +} + +.oi-fullscreen-enter:before { + content:'\e06d'; +} + +.oi-fullscreen-exit:before { + content:'\e06e'; +} + +.oi-globe:before { + content:'\e06f'; +} + +.oi-graph:before { + content:'\e070'; +} + +.oi-grid-four-up:before { + content:'\e071'; +} + +.oi-grid-three-up:before { + content:'\e072'; +} + +.oi-grid-two-up:before { + content:'\e073'; +} + +.oi-hard-drive:before { + content:'\e074'; +} + +.oi-header:before { + content:'\e075'; +} + +.oi-headphones:before { + content:'\e076'; +} + +.oi-heart:before { + content:'\e077'; +} + +.oi-home:before { + content:'\e078'; +} + +.oi-image:before { + content:'\e079'; +} + +.oi-inbox:before { + content:'\e07a'; +} + +.oi-infinity:before { + content:'\e07b'; +} + +.oi-info:before { + content:'\e07c'; +} + +.oi-italic:before { + content:'\e07d'; +} + +.oi-justify-center:before { + content:'\e07e'; +} + +.oi-justify-left:before { + content:'\e07f'; +} + +.oi-justify-right:before { + content:'\e080'; +} + +.oi-key:before { + content:'\e081'; +} + +.oi-laptop:before { + content:'\e082'; +} + +.oi-layers:before { + content:'\e083'; +} + +.oi-lightbulb:before { + content:'\e084'; +} + +.oi-link-broken:before { + content:'\e085'; +} + +.oi-link-intact:before { + content:'\e086'; +} + +.oi-list-rich:before { + content:'\e087'; +} + +.oi-list:before { + content:'\e088'; +} + +.oi-location:before { + content:'\e089'; +} + +.oi-lock-locked:before { + content:'\e08a'; +} + +.oi-lock-unlocked:before { + content:'\e08b'; +} + +.oi-loop-circular:before { + content:'\e08c'; +} + +.oi-loop-square:before { + content:'\e08d'; +} + +.oi-loop:before { + content:'\e08e'; +} + +.oi-magnifying-glass:before { + content:'\e08f'; +} + +.oi-map-marker:before { + content:'\e090'; +} + +.oi-map:before { + content:'\e091'; +} + +.oi-media-pause:before { + content:'\e092'; +} + +.oi-media-play:before { + content:'\e093'; +} + +.oi-media-record:before { + content:'\e094'; +} + +.oi-media-skip-backward:before { + content:'\e095'; +} + +.oi-media-skip-forward:before { + content:'\e096'; +} + +.oi-media-step-backward:before { + content:'\e097'; +} + +.oi-media-step-forward:before { + content:'\e098'; +} + +.oi-media-stop:before { + content:'\e099'; +} + +.oi-medical-cross:before { + content:'\e09a'; +} + +.oi-menu:before { + content:'\e09b'; +} + +.oi-microphone:before { + content:'\e09c'; +} + +.oi-minus:before { + content:'\e09d'; +} + +.oi-monitor:before { + content:'\e09e'; +} + +.oi-moon:before { + content:'\e09f'; +} + +.oi-move:before { + content:'\e0a0'; +} + +.oi-musical-note:before { + content:'\e0a1'; +} + +.oi-paperclip:before { + content:'\e0a2'; +} + +.oi-pencil:before { + content:'\e0a3'; +} + +.oi-people:before { + content:'\e0a4'; +} + +.oi-person:before { + content:'\e0a5'; +} + +.oi-phone:before { + content:'\e0a6'; +} + +.oi-pie-chart:before { + content:'\e0a7'; +} + +.oi-pin:before { + content:'\e0a8'; +} + +.oi-play-circle:before { + content:'\e0a9'; +} + +.oi-plus:before { + content:'\e0aa'; +} + +.oi-power-standby:before { + content:'\e0ab'; +} + +.oi-print:before { + content:'\e0ac'; +} + +.oi-project:before { + content:'\e0ad'; +} + +.oi-pulse:before { + content:'\e0ae'; +} + +.oi-puzzle-piece:before { + content:'\e0af'; +} + +.oi-question-mark:before { + content:'\e0b0'; +} + +.oi-rain:before { + content:'\e0b1'; +} + +.oi-random:before { + content:'\e0b2'; +} + +.oi-reload:before { + content:'\e0b3'; +} + +.oi-resize-both:before { + content:'\e0b4'; +} + +.oi-resize-height:before { + content:'\e0b5'; +} + +.oi-resize-width:before { + content:'\e0b6'; +} + +.oi-rss-alt:before { + content:'\e0b7'; +} + +.oi-rss:before { + content:'\e0b8'; +} + +.oi-script:before { + content:'\e0b9'; +} + +.oi-share-boxed:before { + content:'\e0ba'; +} + +.oi-share:before { + content:'\e0bb'; +} + +.oi-shield:before { + content:'\e0bc'; +} + +.oi-signal:before { + content:'\e0bd'; +} + +.oi-signpost:before { + content:'\e0be'; +} + +.oi-sort-ascending:before { + content:'\e0bf'; +} + +.oi-sort-descending:before { + content:'\e0c0'; +} + +.oi-spreadsheet:before { + content:'\e0c1'; +} + +.oi-star:before { + content:'\e0c2'; +} + +.oi-sun:before { + content:'\e0c3'; +} + +.oi-tablet:before { + content:'\e0c4'; +} + +.oi-tag:before { + content:'\e0c5'; +} + +.oi-tags:before { + content:'\e0c6'; +} + +.oi-target:before { + content:'\e0c7'; +} + +.oi-task:before { + content:'\e0c8'; +} + +.oi-terminal:before { + content:'\e0c9'; +} + +.oi-text:before { + content:'\e0ca'; +} + +.oi-thumb-down:before { + content:'\e0cb'; +} + +.oi-thumb-up:before { + content:'\e0cc'; +} + +.oi-timer:before { + content:'\e0cd'; +} + +.oi-transfer:before { + content:'\e0ce'; +} + +.oi-trash:before { + content:'\e0cf'; +} + +.oi-underline:before { + content:'\e0d0'; +} + +.oi-vertical-align-bottom:before { + content:'\e0d1'; +} + +.oi-vertical-align-center:before { + content:'\e0d2'; +} + +.oi-vertical-align-top:before { + content:'\e0d3'; +} + +.oi-video:before { + content:'\e0d4'; +} + +.oi-volume-high:before { + content:'\e0d5'; +} + +.oi-volume-low:before { + content:'\e0d6'; +} + +.oi-volume-off:before { + content:'\e0d7'; +} + +.oi-warning:before { + content:'\e0d8'; +} + +.oi-wifi:before { + content:'\e0d9'; +} + +.oi-wrench:before { + content:'\e0da'; +} + +.oi-x:before { + content:'\e0db'; +} + +.oi-yen:before { + content:'\e0dc'; +} + +.oi-zoom-in:before { + content:'\e0dd'; +} + +.oi-zoom-out:before { + content:'\e0de'; +} + diff --git a/the8eam/open-iconic/font/css/open-iconic-bootstrap.styl b/the8eam/open-iconic/font/css/open-iconic-bootstrap.styl new file mode 100644 index 0000000..0afa254 --- /dev/null +++ b/the8eam/open-iconic/font/css/open-iconic-bootstrap.styl @@ -0,0 +1,954 @@ +/* Bootstrap */ + +@font-face + font-family 'Icons' + src url('../fonts/open-iconic.eot') + src url('../fonts/open-iconic.eot?#iconic-sm') format('embedded-opentype'), url('../fonts/open-iconic.woff') format('woff'), url('../fonts/open-iconic.ttf') format('truetype'), url('../fonts/open-iconic.svg#iconic-sm') format('svg') + font-weight normal + font-style normal + + +// Catchall baseclass +.oi + position relative + top 1px + display inline-block + font-family 'Icons' + font-style normal + font-weight normal + line-height 1 + -webkit-font-smoothing antialiased + -moz-osx-font-smoothing grayscale + + + &:empty:before + width 1em + text-align center + box-sizing content-box + + &.oi-align-center:before + text-align center + + + &.oi-align-left:before + text-align left + + + &.oi-align-right:before + text-align right + + + + &.oi-flip-horizontal:before + -webkit-transform scale(-1, 1) + -ms-transform scale(-1, 1) + transform scale(-1, 1) + + + &.oi-flip-vertical:before + -webkit-transform scale(1, -1) + -ms-transform scale(-1, 1) + transform scale(1, -1) + + + &.oi-flip-horizontal-vertical:before + -webkit-transform scale(-1, -1) + -ms-transform scale(-1, 1) + transform scale(-1, -1) + + + + + +.oi-account-login:before { + content'\e000' +} + +.oi-account-logout:before { + content'\e001' +} + +.oi-action-redo:before { + content'\e002' +} + +.oi-action-undo:before { + content'\e003' +} + +.oi-align-center:before { + content'\e004' +} + +.oi-align-left:before { + content'\e005' +} + +.oi-align-right:before { + content'\e006' +} + +.oi-aperture:before { + content'\e007' +} + +.oi-arrow-bottom:before { + content'\e008' +} + +.oi-arrow-circle-bottom:before { + content'\e009' +} + +.oi-arrow-circle-left:before { + content'\e00a' +} + +.oi-arrow-circle-right:before { + content'\e00b' +} + +.oi-arrow-circle-top:before { + content'\e00c' +} + +.oi-arrow-left:before { + content'\e00d' +} + +.oi-arrow-right:before { + content'\e00e' +} + +.oi-arrow-thick-bottom:before { + content'\e00f' +} + +.oi-arrow-thick-left:before { + content'\e010' +} + +.oi-arrow-thick-right:before { + content'\e011' +} + +.oi-arrow-thick-top:before { + content'\e012' +} + +.oi-arrow-top:before { + content'\e013' +} + +.oi-audio-spectrum:before { + content'\e014' +} + +.oi-audio:before { + content'\e015' +} + +.oi-badge:before { + content'\e016' +} + +.oi-ban:before { + content'\e017' +} + +.oi-bar-chart:before { + content'\e018' +} + +.oi-basket:before { + content'\e019' +} + +.oi-battery-empty:before { + content'\e01a' +} + +.oi-battery-full:before { + content'\e01b' +} + +.oi-beaker:before { + content'\e01c' +} + +.oi-bell:before { + content'\e01d' +} + +.oi-bluetooth:before { + content'\e01e' +} + +.oi-bold:before { + content'\e01f' +} + +.oi-bolt:before { + content'\e020' +} + +.oi-book:before { + content'\e021' +} + +.oi-bookmark:before { + content'\e022' +} + +.oi-box:before { + content'\e023' +} + +.oi-briefcase:before { + content'\e024' +} + +.oi-british-pound:before { + content'\e025' +} + +.oi-browser:before { + content'\e026' +} + +.oi-brush:before { + content'\e027' +} + +.oi-bug:before { + content'\e028' +} + +.oi-bullhorn:before { + content'\e029' +} + +.oi-calculator:before { + content'\e02a' +} + +.oi-calendar:before { + content'\e02b' +} + +.oi-camera-slr:before { + content'\e02c' +} + +.oi-caret-bottom:before { + content'\e02d' +} + +.oi-caret-left:before { + content'\e02e' +} + +.oi-caret-right:before { + content'\e02f' +} + +.oi-caret-top:before { + content'\e030' +} + +.oi-cart:before { + content'\e031' +} + +.oi-chat:before { + content'\e032' +} + +.oi-check:before { + content'\e033' +} + +.oi-chevron-bottom:before { + content'\e034' +} + +.oi-chevron-left:before { + content'\e035' +} + +.oi-chevron-right:before { + content'\e036' +} + +.oi-chevron-top:before { + content'\e037' +} + +.oi-circle-check:before { + content'\e038' +} + +.oi-circle-x:before { + content'\e039' +} + +.oi-clipboard:before { + content'\e03a' +} + +.oi-clock:before { + content'\e03b' +} + +.oi-cloud-download:before { + content'\e03c' +} + +.oi-cloud-upload:before { + content'\e03d' +} + +.oi-cloud:before { + content'\e03e' +} + +.oi-cloudy:before { + content'\e03f' +} + +.oi-code:before { + content'\e040' +} + +.oi-cog:before { + content'\e041' +} + +.oi-collapse-down:before { + content'\e042' +} + +.oi-collapse-left:before { + content'\e043' +} + +.oi-collapse-right:before { + content'\e044' +} + +.oi-collapse-up:before { + content'\e045' +} + +.oi-command:before { + content'\e046' +} + +.oi-comment-square:before { + content'\e047' +} + +.oi-compass:before { + content'\e048' +} + +.oi-contrast:before { + content'\e049' +} + +.oi-copywriting:before { + content'\e04a' +} + +.oi-credit-card:before { + content'\e04b' +} + +.oi-crop:before { + content'\e04c' +} + +.oi-dashboard:before { + content'\e04d' +} + +.oi-data-transfer-download:before { + content'\e04e' +} + +.oi-data-transfer-upload:before { + content'\e04f' +} + +.oi-delete:before { + content'\e050' +} + +.oi-dial:before { + content'\e051' +} + +.oi-document:before { + content'\e052' +} + +.oi-dollar:before { + content'\e053' +} + +.oi-double-quote-sans-left:before { + content'\e054' +} + +.oi-double-quote-sans-right:before { + content'\e055' +} + +.oi-double-quote-serif-left:before { + content'\e056' +} + +.oi-double-quote-serif-right:before { + content'\e057' +} + +.oi-droplet:before { + content'\e058' +} + +.oi-eject:before { + content'\e059' +} + +.oi-elevator:before { + content'\e05a' +} + +.oi-ellipses:before { + content'\e05b' +} + +.oi-envelope-closed:before { + content'\e05c' +} + +.oi-envelope-open:before { + content'\e05d' +} + +.oi-euro:before { + content'\e05e' +} + +.oi-excerpt:before { + content'\e05f' +} + +.oi-expand-down:before { + content'\e060' +} + +.oi-expand-left:before { + content'\e061' +} + +.oi-expand-right:before { + content'\e062' +} + +.oi-expand-up:before { + content'\e063' +} + +.oi-external-link:before { + content'\e064' +} + +.oi-eye:before { + content'\e065' +} + +.oi-eyedropper:before { + content'\e066' +} + +.oi-file:before { + content'\e067' +} + +.oi-fire:before { + content'\e068' +} + +.oi-flag:before { + content'\e069' +} + +.oi-flash:before { + content'\e06a' +} + +.oi-folder:before { + content'\e06b' +} + +.oi-fork:before { + content'\e06c' +} + +.oi-fullscreen-enter:before { + content'\e06d' +} + +.oi-fullscreen-exit:before { + content'\e06e' +} + +.oi-globe:before { + content'\e06f' +} + +.oi-graph:before { + content'\e070' +} + +.oi-grid-four-up:before { + content'\e071' +} + +.oi-grid-three-up:before { + content'\e072' +} + +.oi-grid-two-up:before { + content'\e073' +} + +.oi-hard-drive:before { + content'\e074' +} + +.oi-header:before { + content'\e075' +} + +.oi-headphones:before { + content'\e076' +} + +.oi-heart:before { + content'\e077' +} + +.oi-home:before { + content'\e078' +} + +.oi-image:before { + content'\e079' +} + +.oi-inbox:before { + content'\e07a' +} + +.oi-infinity:before { + content'\e07b' +} + +.oi-info:before { + content'\e07c' +} + +.oi-italic:before { + content'\e07d' +} + +.oi-justify-center:before { + content'\e07e' +} + +.oi-justify-left:before { + content'\e07f' +} + +.oi-justify-right:before { + content'\e080' +} + +.oi-key:before { + content'\e081' +} + +.oi-laptop:before { + content'\e082' +} + +.oi-layers:before { + content'\e083' +} + +.oi-lightbulb:before { + content'\e084' +} + +.oi-link-broken:before { + content'\e085' +} + +.oi-link-intact:before { + content'\e086' +} + +.oi-list-rich:before { + content'\e087' +} + +.oi-list:before { + content'\e088' +} + +.oi-location:before { + content'\e089' +} + +.oi-lock-locked:before { + content'\e08a' +} + +.oi-lock-unlocked:before { + content'\e08b' +} + +.oi-loop-circular:before { + content'\e08c' +} + +.oi-loop-square:before { + content'\e08d' +} + +.oi-loop:before { + content'\e08e' +} + +.oi-magnifying-glass:before { + content'\e08f' +} + +.oi-map-marker:before { + content'\e090' +} + +.oi-map:before { + content'\e091' +} + +.oi-media-pause:before { + content'\e092' +} + +.oi-media-play:before { + content'\e093' +} + +.oi-media-record:before { + content'\e094' +} + +.oi-media-skip-backward:before { + content'\e095' +} + +.oi-media-skip-forward:before { + content'\e096' +} + +.oi-media-step-backward:before { + content'\e097' +} + +.oi-media-step-forward:before { + content'\e098' +} + +.oi-media-stop:before { + content'\e099' +} + +.oi-medical-cross:before { + content'\e09a' +} + +.oi-menu:before { + content'\e09b' +} + +.oi-microphone:before { + content'\e09c' +} + +.oi-minus:before { + content'\e09d' +} + +.oi-monitor:before { + content'\e09e' +} + +.oi-moon:before { + content'\e09f' +} + +.oi-move:before { + content'\e0a0' +} + +.oi-musical-note:before { + content'\e0a1' +} + +.oi-paperclip:before { + content'\e0a2' +} + +.oi-pencil:before { + content'\e0a3' +} + +.oi-people:before { + content'\e0a4' +} + +.oi-person:before { + content'\e0a5' +} + +.oi-phone:before { + content'\e0a6' +} + +.oi-pie-chart:before { + content'\e0a7' +} + +.oi-pin:before { + content'\e0a8' +} + +.oi-play-circle:before { + content'\e0a9' +} + +.oi-plus:before { + content'\e0aa' +} + +.oi-power-standby:before { + content'\e0ab' +} + +.oi-print:before { + content'\e0ac' +} + +.oi-project:before { + content'\e0ad' +} + +.oi-pulse:before { + content'\e0ae' +} + +.oi-puzzle-piece:before { + content'\e0af' +} + +.oi-question-mark:before { + content'\e0b0' +} + +.oi-rain:before { + content'\e0b1' +} + +.oi-random:before { + content'\e0b2' +} + +.oi-reload:before { + content'\e0b3' +} + +.oi-resize-both:before { + content'\e0b4' +} + +.oi-resize-height:before { + content'\e0b5' +} + +.oi-resize-width:before { + content'\e0b6' +} + +.oi-rss-alt:before { + content'\e0b7' +} + +.oi-rss:before { + content'\e0b8' +} + +.oi-script:before { + content'\e0b9' +} + +.oi-share-boxed:before { + content'\e0ba' +} + +.oi-share:before { + content'\e0bb' +} + +.oi-shield:before { + content'\e0bc' +} + +.oi-signal:before { + content'\e0bd' +} + +.oi-signpost:before { + content'\e0be' +} + +.oi-sort-ascending:before { + content'\e0bf' +} + +.oi-sort-descending:before { + content'\e0c0' +} + +.oi-spreadsheet:before { + content'\e0c1' +} + +.oi-star:before { + content'\e0c2' +} + +.oi-sun:before { + content'\e0c3' +} + +.oi-tablet:before { + content'\e0c4' +} + +.oi-tag:before { + content'\e0c5' +} + +.oi-tags:before { + content'\e0c6' +} + +.oi-target:before { + content'\e0c7' +} + +.oi-task:before { + content'\e0c8' +} + +.oi-terminal:before { + content'\e0c9' +} + +.oi-text:before { + content'\e0ca' +} + +.oi-thumb-down:before { + content'\e0cb' +} + +.oi-thumb-up:before { + content'\e0cc' +} + +.oi-timer:before { + content'\e0cd' +} + +.oi-transfer:before { + content'\e0ce' +} + +.oi-trash:before { + content'\e0cf' +} + +.oi-underline:before { + content'\e0d0' +} + +.oi-vertical-align-bottom:before { + content'\e0d1' +} + +.oi-vertical-align-center:before { + content'\e0d2' +} + +.oi-vertical-align-top:before { + content'\e0d3' +} + +.oi-video:before { + content'\e0d4' +} + +.oi-volume-high:before { + content'\e0d5' +} + +.oi-volume-low:before { + content'\e0d6' +} + +.oi-volume-off:before { + content'\e0d7' +} + +.oi-warning:before { + content'\e0d8' +} + +.oi-wifi:before { + content'\e0d9' +} + +.oi-wrench:before { + content'\e0da' +} + +.oi-x:before { + content'\e0db' +} + +.oi-yen:before { + content'\e0dc' +} + +.oi-zoom-in:before { + content'\e0dd' +} + +.oi-zoom-out:before { + content'\e0de' +} + diff --git a/the8eam/open-iconic/font/css/open-iconic-foundation.css b/the8eam/open-iconic/font/css/open-iconic-foundation.css new file mode 100644 index 0000000..905a821 --- /dev/null +++ b/the8eam/open-iconic/font/css/open-iconic-foundation.css @@ -0,0 +1,1395 @@ +/* Foundation */ + +@font-face { + font-family: 'Icons'; + src: url('../fonts/open-iconic.eot'); + src: url('../fonts/open-iconic.eot?#iconic-sm') format('embedded-opentype'), url('../fonts/open-iconic.woff') format('woff'), url('../fonts/open-iconic.ttf') format('truetype'), url('../fonts/open-iconic.otf') format('opentype'), url('../fonts/open-iconic.svg#iconic-sm') format('svg'); + font-weight: normal; + font-style: normal; +} + + +.fi-account-login:before, + +.fi-account-logout:before, + +.fi-action-redo:before, + +.fi-action-undo:before, + +.fi-align-center:before, + +.fi-align-left:before, + +.fi-align-right:before, + +.fi-aperture:before, + +.fi-arrow-bottom:before, + +.fi-arrow-circle-bottom:before, + +.fi-arrow-circle-left:before, + +.fi-arrow-circle-right:before, + +.fi-arrow-circle-top:before, + +.fi-arrow-left:before, + +.fi-arrow-right:before, + +.fi-arrow-thick-bottom:before, + +.fi-arrow-thick-left:before, + +.fi-arrow-thick-right:before, + +.fi-arrow-thick-top:before, + +.fi-arrow-top:before, + +.fi-audio-spectrum:before, + +.fi-audio:before, + +.fi-badge:before, + +.fi-ban:before, + +.fi-bar-chart:before, + +.fi-basket:before, + +.fi-battery-empty:before, + +.fi-battery-full:before, + +.fi-beaker:before, + +.fi-bell:before, + +.fi-bluetooth:before, + +.fi-bold:before, + +.fi-bolt:before, + +.fi-book:before, + +.fi-bookmark:before, + +.fi-box:before, + +.fi-briefcase:before, + +.fi-british-pound:before, + +.fi-browser:before, + +.fi-brush:before, + +.fi-bug:before, + +.fi-bullhorn:before, + +.fi-calculator:before, + +.fi-calendar:before, + +.fi-camera-slr:before, + +.fi-caret-bottom:before, + +.fi-caret-left:before, + +.fi-caret-right:before, + +.fi-caret-top:before, + +.fi-cart:before, + +.fi-chat:before, + +.fi-check:before, + +.fi-chevron-bottom:before, + +.fi-chevron-left:before, + +.fi-chevron-right:before, + +.fi-chevron-top:before, + +.fi-circle-check:before, + +.fi-circle-x:before, + +.fi-clipboard:before, + +.fi-clock:before, + +.fi-cloud-download:before, + +.fi-cloud-upload:before, + +.fi-cloud:before, + +.fi-cloudy:before, + +.fi-code:before, + +.fi-cog:before, + +.fi-collapse-down:before, + +.fi-collapse-left:before, + +.fi-collapse-right:before, + +.fi-collapse-up:before, + +.fi-command:before, + +.fi-comment-square:before, + +.fi-compass:before, + +.fi-contrast:before, + +.fi-copywriting:before, + +.fi-credit-card:before, + +.fi-crop:before, + +.fi-dashboard:before, + +.fi-data-transfer-download:before, + +.fi-data-transfer-upload:before, + +.fi-delete:before, + +.fi-dial:before, + +.fi-document:before, + +.fi-dollar:before, + +.fi-double-quote-sans-left:before, + +.fi-double-quote-sans-right:before, + +.fi-double-quote-serif-left:before, + +.fi-double-quote-serif-right:before, + +.fi-droplet:before, + +.fi-eject:before, + +.fi-elevator:before, + +.fi-ellipses:before, + +.fi-envelope-closed:before, + +.fi-envelope-open:before, + +.fi-euro:before, + +.fi-excerpt:before, + +.fi-expand-down:before, + +.fi-expand-left:before, + +.fi-expand-right:before, + +.fi-expand-up:before, + +.fi-external-link:before, + +.fi-eye:before, + +.fi-eyedropper:before, + +.fi-file:before, + +.fi-fire:before, + +.fi-flag:before, + +.fi-flash:before, + +.fi-folder:before, + +.fi-fork:before, + +.fi-fullscreen-enter:before, + +.fi-fullscreen-exit:before, + +.fi-globe:before, + +.fi-graph:before, + +.fi-grid-four-up:before, + +.fi-grid-three-up:before, + +.fi-grid-two-up:before, + +.fi-hard-drive:before, + +.fi-header:before, + +.fi-headphones:before, + +.fi-heart:before, + +.fi-home:before, + +.fi-image:before, + +.fi-inbox:before, + +.fi-infinity:before, + +.fi-info:before, + +.fi-italic:before, + +.fi-justify-center:before, + +.fi-justify-left:before, + +.fi-justify-right:before, + +.fi-key:before, + +.fi-laptop:before, + +.fi-layers:before, + +.fi-lightbulb:before, + +.fi-link-broken:before, + +.fi-link-intact:before, + +.fi-list-rich:before, + +.fi-list:before, + +.fi-location:before, + +.fi-lock-locked:before, + +.fi-lock-unlocked:before, + +.fi-loop-circular:before, + +.fi-loop-square:before, + +.fi-loop:before, + +.fi-magnifying-glass:before, + +.fi-map-marker:before, + +.fi-map:before, + +.fi-media-pause:before, + +.fi-media-play:before, + +.fi-media-record:before, + +.fi-media-skip-backward:before, + +.fi-media-skip-forward:before, + +.fi-media-step-backward:before, + +.fi-media-step-forward:before, + +.fi-media-stop:before, + +.fi-medical-cross:before, + +.fi-menu:before, + +.fi-microphone:before, + +.fi-minus:before, + +.fi-monitor:before, + +.fi-moon:before, + +.fi-move:before, + +.fi-musical-note:before, + +.fi-paperclip:before, + +.fi-pencil:before, + +.fi-people:before, + +.fi-person:before, + +.fi-phone:before, + +.fi-pie-chart:before, + +.fi-pin:before, + +.fi-play-circle:before, + +.fi-plus:before, + +.fi-power-standby:before, + +.fi-print:before, + +.fi-project:before, + +.fi-pulse:before, + +.fi-puzzle-piece:before, + +.fi-question-mark:before, + +.fi-rain:before, + +.fi-random:before, + +.fi-reload:before, + +.fi-resize-both:before, + +.fi-resize-height:before, + +.fi-resize-width:before, + +.fi-rss-alt:before, + +.fi-rss:before, + +.fi-script:before, + +.fi-share-boxed:before, + +.fi-share:before, + +.fi-shield:before, + +.fi-signal:before, + +.fi-signpost:before, + +.fi-sort-ascending:before, + +.fi-sort-descending:before, + +.fi-spreadsheet:before, + +.fi-star:before, + +.fi-sun:before, + +.fi-tablet:before, + +.fi-tag:before, + +.fi-tags:before, + +.fi-target:before, + +.fi-task:before, + +.fi-terminal:before, + +.fi-text:before, + +.fi-thumb-down:before, + +.fi-thumb-up:before, + +.fi-timer:before, + +.fi-transfer:before, + +.fi-trash:before, + +.fi-underline:before, + +.fi-vertical-align-bottom:before, + +.fi-vertical-align-center:before, + +.fi-vertical-align-top:before, + +.fi-video:before, + +.fi-volume-high:before, + +.fi-volume-low:before, + +.fi-volume-off:before, + +.fi-warning:before, + +.fi-wifi:before, + +.fi-wrench:before, + +.fi-x:before, + +.fi-yen:before, + +.fi-zoom-in:before, + +.fi-zoom-out:before + { + font-family: 'Icons'; + font-style: normal; + font-weight: normal; + font-variant: normal; + text-transform: none; + line-height: 1; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; + display: inline-block; + text-decoration: inherit; +} + + +[class*='fi-'].oi-align-center:before { + text-align: center; +} + +[class*='fi-'].oi-align-left:before { + text-align: left; +} + +[class*='fi-'].oi-align-right:before { + text-align: right; +} + + +[class*='fi-'].oi-flip-horizontal:before { + -webkit-transform: scale(-1, 1); + -ms-transform: scale(-1, 1); + transform: scale(-1, 1); +} + +[class*='fi-'].oi-flip-vertical:before { + -webkit-transform: scale(1, -1); + -ms-transform: scale(-1, 1); + transform: scale(1, -1); +} + +[class*='fi-'].oi-flip-horizontal-vertical:before { + -webkit-transform: scale(-1, -1); + -ms-transform: scale(-1, 1); + transform: scale(-1, -1); +} + + + +.fi-account-login:before { + content:'\e000'; +} + +.fi-account-logout:before { + content:'\e001'; +} + +.fi-action-redo:before { + content:'\e002'; +} + +.fi-action-undo:before { + content:'\e003'; +} + +.fi-align-center:before { + content:'\e004'; +} + +.fi-align-left:before { + content:'\e005'; +} + +.fi-align-right:before { + content:'\e006'; +} + +.fi-aperture:before { + content:'\e007'; +} + +.fi-arrow-bottom:before { + content:'\e008'; +} + +.fi-arrow-circle-bottom:before { + content:'\e009'; +} + +.fi-arrow-circle-left:before { + content:'\e00a'; +} + +.fi-arrow-circle-right:before { + content:'\e00b'; +} + +.fi-arrow-circle-top:before { + content:'\e00c'; +} + +.fi-arrow-left:before { + content:'\e00d'; +} + +.fi-arrow-right:before { + content:'\e00e'; +} + +.fi-arrow-thick-bottom:before { + content:'\e00f'; +} + +.fi-arrow-thick-left:before { + content:'\e010'; +} + +.fi-arrow-thick-right:before { + content:'\e011'; +} + +.fi-arrow-thick-top:before { + content:'\e012'; +} + +.fi-arrow-top:before { + content:'\e013'; +} + +.fi-audio-spectrum:before { + content:'\e014'; +} + +.fi-audio:before { + content:'\e015'; +} + +.fi-badge:before { + content:'\e016'; +} + +.fi-ban:before { + content:'\e017'; +} + +.fi-bar-chart:before { + content:'\e018'; +} + +.fi-basket:before { + content:'\e019'; +} + +.fi-battery-empty:before { + content:'\e01a'; +} + +.fi-battery-full:before { + content:'\e01b'; +} + +.fi-beaker:before { + content:'\e01c'; +} + +.fi-bell:before { + content:'\e01d'; +} + +.fi-bluetooth:before { + content:'\e01e'; +} + +.fi-bold:before { + content:'\e01f'; +} + +.fi-bolt:before { + content:'\e020'; +} + +.fi-book:before { + content:'\e021'; +} + +.fi-bookmark:before { + content:'\e022'; +} + +.fi-box:before { + content:'\e023'; +} + +.fi-briefcase:before { + content:'\e024'; +} + +.fi-british-pound:before { + content:'\e025'; +} + +.fi-browser:before { + content:'\e026'; +} + +.fi-brush:before { + content:'\e027'; +} + +.fi-bug:before { + content:'\e028'; +} + +.fi-bullhorn:before { + content:'\e029'; +} + +.fi-calculator:before { + content:'\e02a'; +} + +.fi-calendar:before { + content:'\e02b'; +} + +.fi-camera-slr:before { + content:'\e02c'; +} + +.fi-caret-bottom:before { + content:'\e02d'; +} + +.fi-caret-left:before { + content:'\e02e'; +} + +.fi-caret-right:before { + content:'\e02f'; +} + +.fi-caret-top:before { + content:'\e030'; +} + +.fi-cart:before { + content:'\e031'; +} + +.fi-chat:before { + content:'\e032'; +} + +.fi-check:before { + content:'\e033'; +} + +.fi-chevron-bottom:before { + content:'\e034'; +} + +.fi-chevron-left:before { + content:'\e035'; +} + +.fi-chevron-right:before { + content:'\e036'; +} + +.fi-chevron-top:before { + content:'\e037'; +} + +.fi-circle-check:before { + content:'\e038'; +} + +.fi-circle-x:before { + content:'\e039'; +} + +.fi-clipboard:before { + content:'\e03a'; +} + +.fi-clock:before { + content:'\e03b'; +} + +.fi-cloud-download:before { + content:'\e03c'; +} + +.fi-cloud-upload:before { + content:'\e03d'; +} + +.fi-cloud:before { + content:'\e03e'; +} + +.fi-cloudy:before { + content:'\e03f'; +} + +.fi-code:before { + content:'\e040'; +} + +.fi-cog:before { + content:'\e041'; +} + +.fi-collapse-down:before { + content:'\e042'; +} + +.fi-collapse-left:before { + content:'\e043'; +} + +.fi-collapse-right:before { + content:'\e044'; +} + +.fi-collapse-up:before { + content:'\e045'; +} + +.fi-command:before { + content:'\e046'; +} + +.fi-comment-square:before { + content:'\e047'; +} + +.fi-compass:before { + content:'\e048'; +} + +.fi-contrast:before { + content:'\e049'; +} + +.fi-copywriting:before { + content:'\e04a'; +} + +.fi-credit-card:before { + content:'\e04b'; +} + +.fi-crop:before { + content:'\e04c'; +} + +.fi-dashboard:before { + content:'\e04d'; +} + +.fi-data-transfer-download:before { + content:'\e04e'; +} + +.fi-data-transfer-upload:before { + content:'\e04f'; +} + +.fi-delete:before { + content:'\e050'; +} + +.fi-dial:before { + content:'\e051'; +} + +.fi-document:before { + content:'\e052'; +} + +.fi-dollar:before { + content:'\e053'; +} + +.fi-double-quote-sans-left:before { + content:'\e054'; +} + +.fi-double-quote-sans-right:before { + content:'\e055'; +} + +.fi-double-quote-serif-left:before { + content:'\e056'; +} + +.fi-double-quote-serif-right:before { + content:'\e057'; +} + +.fi-droplet:before { + content:'\e058'; +} + +.fi-eject:before { + content:'\e059'; +} + +.fi-elevator:before { + content:'\e05a'; +} + +.fi-ellipses:before { + content:'\e05b'; +} + +.fi-envelope-closed:before { + content:'\e05c'; +} + +.fi-envelope-open:before { + content:'\e05d'; +} + +.fi-euro:before { + content:'\e05e'; +} + +.fi-excerpt:before { + content:'\e05f'; +} + +.fi-expand-down:before { + content:'\e060'; +} + +.fi-expand-left:before { + content:'\e061'; +} + +.fi-expand-right:before { + content:'\e062'; +} + +.fi-expand-up:before { + content:'\e063'; +} + +.fi-external-link:before { + content:'\e064'; +} + +.fi-eye:before { + content:'\e065'; +} + +.fi-eyedropper:before { + content:'\e066'; +} + +.fi-file:before { + content:'\e067'; +} + +.fi-fire:before { + content:'\e068'; +} + +.fi-flag:before { + content:'\e069'; +} + +.fi-flash:before { + content:'\e06a'; +} + +.fi-folder:before { + content:'\e06b'; +} + +.fi-fork:before { + content:'\e06c'; +} + +.fi-fullscreen-enter:before { + content:'\e06d'; +} + +.fi-fullscreen-exit:before { + content:'\e06e'; +} + +.fi-globe:before { + content:'\e06f'; +} + +.fi-graph:before { + content:'\e070'; +} + +.fi-grid-four-up:before { + content:'\e071'; +} + +.fi-grid-three-up:before { + content:'\e072'; +} + +.fi-grid-two-up:before { + content:'\e073'; +} + +.fi-hard-drive:before { + content:'\e074'; +} + +.fi-header:before { + content:'\e075'; +} + +.fi-headphones:before { + content:'\e076'; +} + +.fi-heart:before { + content:'\e077'; +} + +.fi-home:before { + content:'\e078'; +} + +.fi-image:before { + content:'\e079'; +} + +.fi-inbox:before { + content:'\e07a'; +} + +.fi-infinity:before { + content:'\e07b'; +} + +.fi-info:before { + content:'\e07c'; +} + +.fi-italic:before { + content:'\e07d'; +} + +.fi-justify-center:before { + content:'\e07e'; +} + +.fi-justify-left:before { + content:'\e07f'; +} + +.fi-justify-right:before { + content:'\e080'; +} + +.fi-key:before { + content:'\e081'; +} + +.fi-laptop:before { + content:'\e082'; +} + +.fi-layers:before { + content:'\e083'; +} + +.fi-lightbulb:before { + content:'\e084'; +} + +.fi-link-broken:before { + content:'\e085'; +} + +.fi-link-intact:before { + content:'\e086'; +} + +.fi-list-rich:before { + content:'\e087'; +} + +.fi-list:before { + content:'\e088'; +} + +.fi-location:before { + content:'\e089'; +} + +.fi-lock-locked:before { + content:'\e08a'; +} + +.fi-lock-unlocked:before { + content:'\e08b'; +} + +.fi-loop-circular:before { + content:'\e08c'; +} + +.fi-loop-square:before { + content:'\e08d'; +} + +.fi-loop:before { + content:'\e08e'; +} + +.fi-magnifying-glass:before { + content:'\e08f'; +} + +.fi-map-marker:before { + content:'\e090'; +} + +.fi-map:before { + content:'\e091'; +} + +.fi-media-pause:before { + content:'\e092'; +} + +.fi-media-play:before { + content:'\e093'; +} + +.fi-media-record:before { + content:'\e094'; +} + +.fi-media-skip-backward:before { + content:'\e095'; +} + +.fi-media-skip-forward:before { + content:'\e096'; +} + +.fi-media-step-backward:before { + content:'\e097'; +} + +.fi-media-step-forward:before { + content:'\e098'; +} + +.fi-media-stop:before { + content:'\e099'; +} + +.fi-medical-cross:before { + content:'\e09a'; +} + +.fi-menu:before { + content:'\e09b'; +} + +.fi-microphone:before { + content:'\e09c'; +} + +.fi-minus:before { + content:'\e09d'; +} + +.fi-monitor:before { + content:'\e09e'; +} + +.fi-moon:before { + content:'\e09f'; +} + +.fi-move:before { + content:'\e0a0'; +} + +.fi-musical-note:before { + content:'\e0a1'; +} + +.fi-paperclip:before { + content:'\e0a2'; +} + +.fi-pencil:before { + content:'\e0a3'; +} + +.fi-people:before { + content:'\e0a4'; +} + +.fi-person:before { + content:'\e0a5'; +} + +.fi-phone:before { + content:'\e0a6'; +} + +.fi-pie-chart:before { + content:'\e0a7'; +} + +.fi-pin:before { + content:'\e0a8'; +} + +.fi-play-circle:before { + content:'\e0a9'; +} + +.fi-plus:before { + content:'\e0aa'; +} + +.fi-power-standby:before { + content:'\e0ab'; +} + +.fi-print:before { + content:'\e0ac'; +} + +.fi-project:before { + content:'\e0ad'; +} + +.fi-pulse:before { + content:'\e0ae'; +} + +.fi-puzzle-piece:before { + content:'\e0af'; +} + +.fi-question-mark:before { + content:'\e0b0'; +} + +.fi-rain:before { + content:'\e0b1'; +} + +.fi-random:before { + content:'\e0b2'; +} + +.fi-reload:before { + content:'\e0b3'; +} + +.fi-resize-both:before { + content:'\e0b4'; +} + +.fi-resize-height:before { + content:'\e0b5'; +} + +.fi-resize-width:before { + content:'\e0b6'; +} + +.fi-rss-alt:before { + content:'\e0b7'; +} + +.fi-rss:before { + content:'\e0b8'; +} + +.fi-script:before { + content:'\e0b9'; +} + +.fi-share-boxed:before { + content:'\e0ba'; +} + +.fi-share:before { + content:'\e0bb'; +} + +.fi-shield:before { + content:'\e0bc'; +} + +.fi-signal:before { + content:'\e0bd'; +} + +.fi-signpost:before { + content:'\e0be'; +} + +.fi-sort-ascending:before { + content:'\e0bf'; +} + +.fi-sort-descending:before { + content:'\e0c0'; +} + +.fi-spreadsheet:before { + content:'\e0c1'; +} + +.fi-star:before { + content:'\e0c2'; +} + +.fi-sun:before { + content:'\e0c3'; +} + +.fi-tablet:before { + content:'\e0c4'; +} + +.fi-tag:before { + content:'\e0c5'; +} + +.fi-tags:before { + content:'\e0c6'; +} + +.fi-target:before { + content:'\e0c7'; +} + +.fi-task:before { + content:'\e0c8'; +} + +.fi-terminal:before { + content:'\e0c9'; +} + +.fi-text:before { + content:'\e0ca'; +} + +.fi-thumb-down:before { + content:'\e0cb'; +} + +.fi-thumb-up:before { + content:'\e0cc'; +} + +.fi-timer:before { + content:'\e0cd'; +} + +.fi-transfer:before { + content:'\e0ce'; +} + +.fi-trash:before { + content:'\e0cf'; +} + +.fi-underline:before { + content:'\e0d0'; +} + +.fi-vertical-align-bottom:before { + content:'\e0d1'; +} + +.fi-vertical-align-center:before { + content:'\e0d2'; +} + +.fi-vertical-align-top:before { + content:'\e0d3'; +} + +.fi-video:before { + content:'\e0d4'; +} + +.fi-volume-high:before { + content:'\e0d5'; +} + +.fi-volume-low:before { + content:'\e0d6'; +} + +.fi-volume-off:before { + content:'\e0d7'; +} + +.fi-warning:before { + content:'\e0d8'; +} + +.fi-wifi:before { + content:'\e0d9'; +} + +.fi-wrench:before { + content:'\e0da'; +} + +.fi-x:before { + content:'\e0db'; +} + +.fi-yen:before { + content:'\e0dc'; +} + +.fi-zoom-in:before { + content:'\e0dd'; +} + +.fi-zoom-out:before { + content:'\e0de'; +} + diff --git a/the8eam/open-iconic/font/css/open-iconic-foundation.less b/the8eam/open-iconic/font/css/open-iconic-foundation.less new file mode 100644 index 0000000..deabf26 --- /dev/null +++ b/the8eam/open-iconic/font/css/open-iconic-foundation.less @@ -0,0 +1,1397 @@ +/* Foundation */ + +/* Font path variable */ +@icon-font-path: '../fonts/'; + +@font-face { + font-family: 'Icons'; + src: url('@{icon-font-path}open-iconic.eot'); + src: url('@{icon-font-path}open-iconic.eot?#iconic-sm') format('embedded-opentype'), url('@{icon-font-path}open-iconic.woff') format('woff'), url('@{icon-font-path}open-iconic.ttf') format('truetype'), url('@{icon-font-path}open-iconic.otf') format('opentype'), url('@{icon-font-path}open-iconic.svg#iconic-sm') format('svg'); + font-weight: normal; + font-style: normal; +} + + +.fi-account-login:before, + +.fi-account-logout:before, + +.fi-action-redo:before, + +.fi-action-undo:before, + +.fi-align-center:before, + +.fi-align-left:before, + +.fi-align-right:before, + +.fi-aperture:before, + +.fi-arrow-bottom:before, + +.fi-arrow-circle-bottom:before, + +.fi-arrow-circle-left:before, + +.fi-arrow-circle-right:before, + +.fi-arrow-circle-top:before, + +.fi-arrow-left:before, + +.fi-arrow-right:before, + +.fi-arrow-thick-bottom:before, + +.fi-arrow-thick-left:before, + +.fi-arrow-thick-right:before, + +.fi-arrow-thick-top:before, + +.fi-arrow-top:before, + +.fi-audio-spectrum:before, + +.fi-audio:before, + +.fi-badge:before, + +.fi-ban:before, + +.fi-bar-chart:before, + +.fi-basket:before, + +.fi-battery-empty:before, + +.fi-battery-full:before, + +.fi-beaker:before, + +.fi-bell:before, + +.fi-bluetooth:before, + +.fi-bold:before, + +.fi-bolt:before, + +.fi-book:before, + +.fi-bookmark:before, + +.fi-box:before, + +.fi-briefcase:before, + +.fi-british-pound:before, + +.fi-browser:before, + +.fi-brush:before, + +.fi-bug:before, + +.fi-bullhorn:before, + +.fi-calculator:before, + +.fi-calendar:before, + +.fi-camera-slr:before, + +.fi-caret-bottom:before, + +.fi-caret-left:before, + +.fi-caret-right:before, + +.fi-caret-top:before, + +.fi-cart:before, + +.fi-chat:before, + +.fi-check:before, + +.fi-chevron-bottom:before, + +.fi-chevron-left:before, + +.fi-chevron-right:before, + +.fi-chevron-top:before, + +.fi-circle-check:before, + +.fi-circle-x:before, + +.fi-clipboard:before, + +.fi-clock:before, + +.fi-cloud-download:before, + +.fi-cloud-upload:before, + +.fi-cloud:before, + +.fi-cloudy:before, + +.fi-code:before, + +.fi-cog:before, + +.fi-collapse-down:before, + +.fi-collapse-left:before, + +.fi-collapse-right:before, + +.fi-collapse-up:before, + +.fi-command:before, + +.fi-comment-square:before, + +.fi-compass:before, + +.fi-contrast:before, + +.fi-copywriting:before, + +.fi-credit-card:before, + +.fi-crop:before, + +.fi-dashboard:before, + +.fi-data-transfer-download:before, + +.fi-data-transfer-upload:before, + +.fi-delete:before, + +.fi-dial:before, + +.fi-document:before, + +.fi-dollar:before, + +.fi-double-quote-sans-left:before, + +.fi-double-quote-sans-right:before, + +.fi-double-quote-serif-left:before, + +.fi-double-quote-serif-right:before, + +.fi-droplet:before, + +.fi-eject:before, + +.fi-elevator:before, + +.fi-ellipses:before, + +.fi-envelope-closed:before, + +.fi-envelope-open:before, + +.fi-euro:before, + +.fi-excerpt:before, + +.fi-expand-down:before, + +.fi-expand-left:before, + +.fi-expand-right:before, + +.fi-expand-up:before, + +.fi-external-link:before, + +.fi-eye:before, + +.fi-eyedropper:before, + +.fi-file:before, + +.fi-fire:before, + +.fi-flag:before, + +.fi-flash:before, + +.fi-folder:before, + +.fi-fork:before, + +.fi-fullscreen-enter:before, + +.fi-fullscreen-exit:before, + +.fi-globe:before, + +.fi-graph:before, + +.fi-grid-four-up:before, + +.fi-grid-three-up:before, + +.fi-grid-two-up:before, + +.fi-hard-drive:before, + +.fi-header:before, + +.fi-headphones:before, + +.fi-heart:before, + +.fi-home:before, + +.fi-image:before, + +.fi-inbox:before, + +.fi-infinity:before, + +.fi-info:before, + +.fi-italic:before, + +.fi-justify-center:before, + +.fi-justify-left:before, + +.fi-justify-right:before, + +.fi-key:before, + +.fi-laptop:before, + +.fi-layers:before, + +.fi-lightbulb:before, + +.fi-link-broken:before, + +.fi-link-intact:before, + +.fi-list-rich:before, + +.fi-list:before, + +.fi-location:before, + +.fi-lock-locked:before, + +.fi-lock-unlocked:before, + +.fi-loop-circular:before, + +.fi-loop-square:before, + +.fi-loop:before, + +.fi-magnifying-glass:before, + +.fi-map-marker:before, + +.fi-map:before, + +.fi-media-pause:before, + +.fi-media-play:before, + +.fi-media-record:before, + +.fi-media-skip-backward:before, + +.fi-media-skip-forward:before, + +.fi-media-step-backward:before, + +.fi-media-step-forward:before, + +.fi-media-stop:before, + +.fi-medical-cross:before, + +.fi-menu:before, + +.fi-microphone:before, + +.fi-minus:before, + +.fi-monitor:before, + +.fi-moon:before, + +.fi-move:before, + +.fi-musical-note:before, + +.fi-paperclip:before, + +.fi-pencil:before, + +.fi-people:before, + +.fi-person:before, + +.fi-phone:before, + +.fi-pie-chart:before, + +.fi-pin:before, + +.fi-play-circle:before, + +.fi-plus:before, + +.fi-power-standby:before, + +.fi-print:before, + +.fi-project:before, + +.fi-pulse:before, + +.fi-puzzle-piece:before, + +.fi-question-mark:before, + +.fi-rain:before, + +.fi-random:before, + +.fi-reload:before, + +.fi-resize-both:before, + +.fi-resize-height:before, + +.fi-resize-width:before, + +.fi-rss-alt:before, + +.fi-rss:before, + +.fi-script:before, + +.fi-share-boxed:before, + +.fi-share:before, + +.fi-shield:before, + +.fi-signal:before, + +.fi-signpost:before, + +.fi-sort-ascending:before, + +.fi-sort-descending:before, + +.fi-spreadsheet:before, + +.fi-star:before, + +.fi-sun:before, + +.fi-tablet:before, + +.fi-tag:before, + +.fi-tags:before, + +.fi-target:before, + +.fi-task:before, + +.fi-terminal:before, + +.fi-text:before, + +.fi-thumb-down:before, + +.fi-thumb-up:before, + +.fi-timer:before, + +.fi-transfer:before, + +.fi-trash:before, + +.fi-underline:before, + +.fi-vertical-align-bottom:before, + +.fi-vertical-align-center:before, + +.fi-vertical-align-top:before, + +.fi-video:before, + +.fi-volume-high:before, + +.fi-volume-low:before, + +.fi-volume-off:before, + +.fi-warning:before, + +.fi-wifi:before, + +.fi-wrench:before, + +.fi-x:before, + +.fi-yen:before, + +.fi-zoom-in:before, + +.fi-zoom-out:before + { + font-family: 'Icons'; + font-style: normal; + font-weight: normal; + font-variant: normal; + text-transform: none; + line-height: 1; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; + display: inline-block; + text-decoration: inherit; +} + +[class*='fi-'].oi-align-center:before { + text-align: center; +} + +[class*='fi-'].oi-align-left:before { + text-align: left; +} + +[class*='fi-'].oi-align-right:before { + text-align: right; +} + + +[class*='fi-'].oi-flip-horizontal:before { + -webkit-transform: scale(-1, 1); + -ms-transform: scale(-1, 1); + transform: scale(-1, 1); +} + +[class*='fi-'].oi-flip-vertical:before { + -webkit-transform: scale(1, -1); + -ms-transform: scale(-1, 1); + transform: scale(1, -1); +} + +[class*='fi-'].oi-flip-horizontal-vertical:before { + -webkit-transform: scale(-1, -1); + -ms-transform: scale(-1, 1); + transform: scale(-1, -1); +} + + + +.fi-account-login:before { + content:'\e000'; +} + +.fi-account-logout:before { + content:'\e001'; +} + +.fi-action-redo:before { + content:'\e002'; +} + +.fi-action-undo:before { + content:'\e003'; +} + +.fi-align-center:before { + content:'\e004'; +} + +.fi-align-left:before { + content:'\e005'; +} + +.fi-align-right:before { + content:'\e006'; +} + +.fi-aperture:before { + content:'\e007'; +} + +.fi-arrow-bottom:before { + content:'\e008'; +} + +.fi-arrow-circle-bottom:before { + content:'\e009'; +} + +.fi-arrow-circle-left:before { + content:'\e00a'; +} + +.fi-arrow-circle-right:before { + content:'\e00b'; +} + +.fi-arrow-circle-top:before { + content:'\e00c'; +} + +.fi-arrow-left:before { + content:'\e00d'; +} + +.fi-arrow-right:before { + content:'\e00e'; +} + +.fi-arrow-thick-bottom:before { + content:'\e00f'; +} + +.fi-arrow-thick-left:before { + content:'\e010'; +} + +.fi-arrow-thick-right:before { + content:'\e011'; +} + +.fi-arrow-thick-top:before { + content:'\e012'; +} + +.fi-arrow-top:before { + content:'\e013'; +} + +.fi-audio-spectrum:before { + content:'\e014'; +} + +.fi-audio:before { + content:'\e015'; +} + +.fi-badge:before { + content:'\e016'; +} + +.fi-ban:before { + content:'\e017'; +} + +.fi-bar-chart:before { + content:'\e018'; +} + +.fi-basket:before { + content:'\e019'; +} + +.fi-battery-empty:before { + content:'\e01a'; +} + +.fi-battery-full:before { + content:'\e01b'; +} + +.fi-beaker:before { + content:'\e01c'; +} + +.fi-bell:before { + content:'\e01d'; +} + +.fi-bluetooth:before { + content:'\e01e'; +} + +.fi-bold:before { + content:'\e01f'; +} + +.fi-bolt:before { + content:'\e020'; +} + +.fi-book:before { + content:'\e021'; +} + +.fi-bookmark:before { + content:'\e022'; +} + +.fi-box:before { + content:'\e023'; +} + +.fi-briefcase:before { + content:'\e024'; +} + +.fi-british-pound:before { + content:'\e025'; +} + +.fi-browser:before { + content:'\e026'; +} + +.fi-brush:before { + content:'\e027'; +} + +.fi-bug:before { + content:'\e028'; +} + +.fi-bullhorn:before { + content:'\e029'; +} + +.fi-calculator:before { + content:'\e02a'; +} + +.fi-calendar:before { + content:'\e02b'; +} + +.fi-camera-slr:before { + content:'\e02c'; +} + +.fi-caret-bottom:before { + content:'\e02d'; +} + +.fi-caret-left:before { + content:'\e02e'; +} + +.fi-caret-right:before { + content:'\e02f'; +} + +.fi-caret-top:before { + content:'\e030'; +} + +.fi-cart:before { + content:'\e031'; +} + +.fi-chat:before { + content:'\e032'; +} + +.fi-check:before { + content:'\e033'; +} + +.fi-chevron-bottom:before { + content:'\e034'; +} + +.fi-chevron-left:before { + content:'\e035'; +} + +.fi-chevron-right:before { + content:'\e036'; +} + +.fi-chevron-top:before { + content:'\e037'; +} + +.fi-circle-check:before { + content:'\e038'; +} + +.fi-circle-x:before { + content:'\e039'; +} + +.fi-clipboard:before { + content:'\e03a'; +} + +.fi-clock:before { + content:'\e03b'; +} + +.fi-cloud-download:before { + content:'\e03c'; +} + +.fi-cloud-upload:before { + content:'\e03d'; +} + +.fi-cloud:before { + content:'\e03e'; +} + +.fi-cloudy:before { + content:'\e03f'; +} + +.fi-code:before { + content:'\e040'; +} + +.fi-cog:before { + content:'\e041'; +} + +.fi-collapse-down:before { + content:'\e042'; +} + +.fi-collapse-left:before { + content:'\e043'; +} + +.fi-collapse-right:before { + content:'\e044'; +} + +.fi-collapse-up:before { + content:'\e045'; +} + +.fi-command:before { + content:'\e046'; +} + +.fi-comment-square:before { + content:'\e047'; +} + +.fi-compass:before { + content:'\e048'; +} + +.fi-contrast:before { + content:'\e049'; +} + +.fi-copywriting:before { + content:'\e04a'; +} + +.fi-credit-card:before { + content:'\e04b'; +} + +.fi-crop:before { + content:'\e04c'; +} + +.fi-dashboard:before { + content:'\e04d'; +} + +.fi-data-transfer-download:before { + content:'\e04e'; +} + +.fi-data-transfer-upload:before { + content:'\e04f'; +} + +.fi-delete:before { + content:'\e050'; +} + +.fi-dial:before { + content:'\e051'; +} + +.fi-document:before { + content:'\e052'; +} + +.fi-dollar:before { + content:'\e053'; +} + +.fi-double-quote-sans-left:before { + content:'\e054'; +} + +.fi-double-quote-sans-right:before { + content:'\e055'; +} + +.fi-double-quote-serif-left:before { + content:'\e056'; +} + +.fi-double-quote-serif-right:before { + content:'\e057'; +} + +.fi-droplet:before { + content:'\e058'; +} + +.fi-eject:before { + content:'\e059'; +} + +.fi-elevator:before { + content:'\e05a'; +} + +.fi-ellipses:before { + content:'\e05b'; +} + +.fi-envelope-closed:before { + content:'\e05c'; +} + +.fi-envelope-open:before { + content:'\e05d'; +} + +.fi-euro:before { + content:'\e05e'; +} + +.fi-excerpt:before { + content:'\e05f'; +} + +.fi-expand-down:before { + content:'\e060'; +} + +.fi-expand-left:before { + content:'\e061'; +} + +.fi-expand-right:before { + content:'\e062'; +} + +.fi-expand-up:before { + content:'\e063'; +} + +.fi-external-link:before { + content:'\e064'; +} + +.fi-eye:before { + content:'\e065'; +} + +.fi-eyedropper:before { + content:'\e066'; +} + +.fi-file:before { + content:'\e067'; +} + +.fi-fire:before { + content:'\e068'; +} + +.fi-flag:before { + content:'\e069'; +} + +.fi-flash:before { + content:'\e06a'; +} + +.fi-folder:before { + content:'\e06b'; +} + +.fi-fork:before { + content:'\e06c'; +} + +.fi-fullscreen-enter:before { + content:'\e06d'; +} + +.fi-fullscreen-exit:before { + content:'\e06e'; +} + +.fi-globe:before { + content:'\e06f'; +} + +.fi-graph:before { + content:'\e070'; +} + +.fi-grid-four-up:before { + content:'\e071'; +} + +.fi-grid-three-up:before { + content:'\e072'; +} + +.fi-grid-two-up:before { + content:'\e073'; +} + +.fi-hard-drive:before { + content:'\e074'; +} + +.fi-header:before { + content:'\e075'; +} + +.fi-headphones:before { + content:'\e076'; +} + +.fi-heart:before { + content:'\e077'; +} + +.fi-home:before { + content:'\e078'; +} + +.fi-image:before { + content:'\e079'; +} + +.fi-inbox:before { + content:'\e07a'; +} + +.fi-infinity:before { + content:'\e07b'; +} + +.fi-info:before { + content:'\e07c'; +} + +.fi-italic:before { + content:'\e07d'; +} + +.fi-justify-center:before { + content:'\e07e'; +} + +.fi-justify-left:before { + content:'\e07f'; +} + +.fi-justify-right:before { + content:'\e080'; +} + +.fi-key:before { + content:'\e081'; +} + +.fi-laptop:before { + content:'\e082'; +} + +.fi-layers:before { + content:'\e083'; +} + +.fi-lightbulb:before { + content:'\e084'; +} + +.fi-link-broken:before { + content:'\e085'; +} + +.fi-link-intact:before { + content:'\e086'; +} + +.fi-list-rich:before { + content:'\e087'; +} + +.fi-list:before { + content:'\e088'; +} + +.fi-location:before { + content:'\e089'; +} + +.fi-lock-locked:before { + content:'\e08a'; +} + +.fi-lock-unlocked:before { + content:'\e08b'; +} + +.fi-loop-circular:before { + content:'\e08c'; +} + +.fi-loop-square:before { + content:'\e08d'; +} + +.fi-loop:before { + content:'\e08e'; +} + +.fi-magnifying-glass:before { + content:'\e08f'; +} + +.fi-map-marker:before { + content:'\e090'; +} + +.fi-map:before { + content:'\e091'; +} + +.fi-media-pause:before { + content:'\e092'; +} + +.fi-media-play:before { + content:'\e093'; +} + +.fi-media-record:before { + content:'\e094'; +} + +.fi-media-skip-backward:before { + content:'\e095'; +} + +.fi-media-skip-forward:before { + content:'\e096'; +} + +.fi-media-step-backward:before { + content:'\e097'; +} + +.fi-media-step-forward:before { + content:'\e098'; +} + +.fi-media-stop:before { + content:'\e099'; +} + +.fi-medical-cross:before { + content:'\e09a'; +} + +.fi-menu:before { + content:'\e09b'; +} + +.fi-microphone:before { + content:'\e09c'; +} + +.fi-minus:before { + content:'\e09d'; +} + +.fi-monitor:before { + content:'\e09e'; +} + +.fi-moon:before { + content:'\e09f'; +} + +.fi-move:before { + content:'\e0a0'; +} + +.fi-musical-note:before { + content:'\e0a1'; +} + +.fi-paperclip:before { + content:'\e0a2'; +} + +.fi-pencil:before { + content:'\e0a3'; +} + +.fi-people:before { + content:'\e0a4'; +} + +.fi-person:before { + content:'\e0a5'; +} + +.fi-phone:before { + content:'\e0a6'; +} + +.fi-pie-chart:before { + content:'\e0a7'; +} + +.fi-pin:before { + content:'\e0a8'; +} + +.fi-play-circle:before { + content:'\e0a9'; +} + +.fi-plus:before { + content:'\e0aa'; +} + +.fi-power-standby:before { + content:'\e0ab'; +} + +.fi-print:before { + content:'\e0ac'; +} + +.fi-project:before { + content:'\e0ad'; +} + +.fi-pulse:before { + content:'\e0ae'; +} + +.fi-puzzle-piece:before { + content:'\e0af'; +} + +.fi-question-mark:before { + content:'\e0b0'; +} + +.fi-rain:before { + content:'\e0b1'; +} + +.fi-random:before { + content:'\e0b2'; +} + +.fi-reload:before { + content:'\e0b3'; +} + +.fi-resize-both:before { + content:'\e0b4'; +} + +.fi-resize-height:before { + content:'\e0b5'; +} + +.fi-resize-width:before { + content:'\e0b6'; +} + +.fi-rss-alt:before { + content:'\e0b7'; +} + +.fi-rss:before { + content:'\e0b8'; +} + +.fi-script:before { + content:'\e0b9'; +} + +.fi-share-boxed:before { + content:'\e0ba'; +} + +.fi-share:before { + content:'\e0bb'; +} + +.fi-shield:before { + content:'\e0bc'; +} + +.fi-signal:before { + content:'\e0bd'; +} + +.fi-signpost:before { + content:'\e0be'; +} + +.fi-sort-ascending:before { + content:'\e0bf'; +} + +.fi-sort-descending:before { + content:'\e0c0'; +} + +.fi-spreadsheet:before { + content:'\e0c1'; +} + +.fi-star:before { + content:'\e0c2'; +} + +.fi-sun:before { + content:'\e0c3'; +} + +.fi-tablet:before { + content:'\e0c4'; +} + +.fi-tag:before { + content:'\e0c5'; +} + +.fi-tags:before { + content:'\e0c6'; +} + +.fi-target:before { + content:'\e0c7'; +} + +.fi-task:before { + content:'\e0c8'; +} + +.fi-terminal:before { + content:'\e0c9'; +} + +.fi-text:before { + content:'\e0ca'; +} + +.fi-thumb-down:before { + content:'\e0cb'; +} + +.fi-thumb-up:before { + content:'\e0cc'; +} + +.fi-timer:before { + content:'\e0cd'; +} + +.fi-transfer:before { + content:'\e0ce'; +} + +.fi-trash:before { + content:'\e0cf'; +} + +.fi-underline:before { + content:'\e0d0'; +} + +.fi-vertical-align-bottom:before { + content:'\e0d1'; +} + +.fi-vertical-align-center:before { + content:'\e0d2'; +} + +.fi-vertical-align-top:before { + content:'\e0d3'; +} + +.fi-video:before { + content:'\e0d4'; +} + +.fi-volume-high:before { + content:'\e0d5'; +} + +.fi-volume-low:before { + content:'\e0d6'; +} + +.fi-volume-off:before { + content:'\e0d7'; +} + +.fi-warning:before { + content:'\e0d8'; +} + +.fi-wifi:before { + content:'\e0d9'; +} + +.fi-wrench:before { + content:'\e0da'; +} + +.fi-x:before { + content:'\e0db'; +} + +.fi-yen:before { + content:'\e0dc'; +} + +.fi-zoom-in:before { + content:'\e0dd'; +} + +.fi-zoom-out:before { + content:'\e0de'; +} + diff --git a/the8eam/open-iconic/font/css/open-iconic-foundation.min.css b/the8eam/open-iconic/font/css/open-iconic-foundation.min.css new file mode 100644 index 0000000..bd12429 --- /dev/null +++ b/the8eam/open-iconic/font/css/open-iconic-foundation.min.css @@ -0,0 +1 @@ +@font-face{font-family:Icons;src:url(../fonts/open-iconic.eot);src:url(../fonts/open-iconic.eot?#iconic-sm) format('embedded-opentype'),url(../fonts/open-iconic.woff) format('woff'),url(../fonts/open-iconic.ttf) format('truetype'),url(../fonts/open-iconic.otf) format('opentype'),url(../fonts/open-iconic.svg#iconic-sm) format('svg');font-weight:400;font-style:normal}.fi-account-login:before,.fi-account-logout:before,.fi-action-redo:before,.fi-action-undo:before,.fi-align-center:before,.fi-align-left:before,.fi-align-right:before,.fi-aperture:before,.fi-arrow-bottom:before,.fi-arrow-circle-bottom:before,.fi-arrow-circle-left:before,.fi-arrow-circle-right:before,.fi-arrow-circle-top:before,.fi-arrow-left:before,.fi-arrow-right:before,.fi-arrow-thick-bottom:before,.fi-arrow-thick-left:before,.fi-arrow-thick-right:before,.fi-arrow-thick-top:before,.fi-arrow-top:before,.fi-audio-spectrum:before,.fi-audio:before,.fi-badge:before,.fi-ban:before,.fi-bar-chart:before,.fi-basket:before,.fi-battery-empty:before,.fi-battery-full:before,.fi-beaker:before,.fi-bell:before,.fi-bluetooth:before,.fi-bold:before,.fi-bolt:before,.fi-book:before,.fi-bookmark:before,.fi-box:before,.fi-briefcase:before,.fi-british-pound:before,.fi-browser:before,.fi-brush:before,.fi-bug:before,.fi-bullhorn:before,.fi-calculator:before,.fi-calendar:before,.fi-camera-slr:before,.fi-caret-bottom:before,.fi-caret-left:before,.fi-caret-right:before,.fi-caret-top:before,.fi-cart:before,.fi-chat:before,.fi-check:before,.fi-chevron-bottom:before,.fi-chevron-left:before,.fi-chevron-right:before,.fi-chevron-top:before,.fi-circle-check:before,.fi-circle-x:before,.fi-clipboard:before,.fi-clock:before,.fi-cloud-download:before,.fi-cloud-upload:before,.fi-cloud:before,.fi-cloudy:before,.fi-code:before,.fi-cog:before,.fi-collapse-down:before,.fi-collapse-left:before,.fi-collapse-right:before,.fi-collapse-up:before,.fi-command:before,.fi-comment-square:before,.fi-compass:before,.fi-contrast:before,.fi-copywriting:before,.fi-credit-card:before,.fi-crop:before,.fi-dashboard:before,.fi-data-transfer-download:before,.fi-data-transfer-upload:before,.fi-delete:before,.fi-dial:before,.fi-document:before,.fi-dollar:before,.fi-double-quote-sans-left:before,.fi-double-quote-sans-right:before,.fi-double-quote-serif-left:before,.fi-double-quote-serif-right:before,.fi-droplet:before,.fi-eject:before,.fi-elevator:before,.fi-ellipses:before,.fi-envelope-closed:before,.fi-envelope-open:before,.fi-euro:before,.fi-excerpt:before,.fi-expand-down:before,.fi-expand-left:before,.fi-expand-right:before,.fi-expand-up:before,.fi-external-link:before,.fi-eye:before,.fi-eyedropper:before,.fi-file:before,.fi-fire:before,.fi-flag:before,.fi-flash:before,.fi-folder:before,.fi-fork:before,.fi-fullscreen-enter:before,.fi-fullscreen-exit:before,.fi-globe:before,.fi-graph:before,.fi-grid-four-up:before,.fi-grid-three-up:before,.fi-grid-two-up:before,.fi-hard-drive:before,.fi-header:before,.fi-headphones:before,.fi-heart:before,.fi-home:before,.fi-image:before,.fi-inbox:before,.fi-infinity:before,.fi-info:before,.fi-italic:before,.fi-justify-center:before,.fi-justify-left:before,.fi-justify-right:before,.fi-key:before,.fi-laptop:before,.fi-layers:before,.fi-lightbulb:before,.fi-link-broken:before,.fi-link-intact:before,.fi-list-rich:before,.fi-list:before,.fi-location:before,.fi-lock-locked:before,.fi-lock-unlocked:before,.fi-loop-circular:before,.fi-loop-square:before,.fi-loop:before,.fi-magnifying-glass:before,.fi-map-marker:before,.fi-map:before,.fi-media-pause:before,.fi-media-play:before,.fi-media-record:before,.fi-media-skip-backward:before,.fi-media-skip-forward:before,.fi-media-step-backward:before,.fi-media-step-forward:before,.fi-media-stop:before,.fi-medical-cross:before,.fi-menu:before,.fi-microphone:before,.fi-minus:before,.fi-monitor:before,.fi-moon:before,.fi-move:before,.fi-musical-note:before,.fi-paperclip:before,.fi-pencil:before,.fi-people:before,.fi-person:before,.fi-phone:before,.fi-pie-chart:before,.fi-pin:before,.fi-play-circle:before,.fi-plus:before,.fi-power-standby:before,.fi-print:before,.fi-project:before,.fi-pulse:before,.fi-puzzle-piece:before,.fi-question-mark:before,.fi-rain:before,.fi-random:before,.fi-reload:before,.fi-resize-both:before,.fi-resize-height:before,.fi-resize-width:before,.fi-rss-alt:before,.fi-rss:before,.fi-script:before,.fi-share-boxed:before,.fi-share:before,.fi-shield:before,.fi-signal:before,.fi-signpost:before,.fi-sort-ascending:before,.fi-sort-descending:before,.fi-spreadsheet:before,.fi-star:before,.fi-sun:before,.fi-tablet:before,.fi-tag:before,.fi-tags:before,.fi-target:before,.fi-task:before,.fi-terminal:before,.fi-text:before,.fi-thumb-down:before,.fi-thumb-up:before,.fi-timer:before,.fi-transfer:before,.fi-trash:before,.fi-underline:before,.fi-vertical-align-bottom:before,.fi-vertical-align-center:before,.fi-vertical-align-top:before,.fi-video:before,.fi-volume-high:before,.fi-volume-low:before,.fi-volume-off:before,.fi-warning:before,.fi-wifi:before,.fi-wrench:before,.fi-x:before,.fi-yen:before,.fi-zoom-in:before,.fi-zoom-out:before{font-family:Icons;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;display:inline-block;text-decoration:inherit}[class*=fi-].oi-align-center:before{text-align:center}[class*=fi-].oi-align-left:before{text-align:left}[class*=fi-].oi-align-right:before{text-align:right}[class*=fi-].oi-flip-horizontal:before{-webkit-transform:scale(-1,1);-ms-transform:scale(-1,1);transform:scale(-1,1)}[class*=fi-].oi-flip-vertical:before{-webkit-transform:scale(1,-1);-ms-transform:scale(-1,1);transform:scale(1,-1)}[class*=fi-].oi-flip-horizontal-vertical:before{-webkit-transform:scale(-1,-1);-ms-transform:scale(-1,1);transform:scale(-1,-1)}.fi-account-login:before{content:'\e000'}.fi-account-logout:before{content:'\e001'}.fi-action-redo:before{content:'\e002'}.fi-action-undo:before{content:'\e003'}.fi-align-center:before{content:'\e004'}.fi-align-left:before{content:'\e005'}.fi-align-right:before{content:'\e006'}.fi-aperture:before{content:'\e007'}.fi-arrow-bottom:before{content:'\e008'}.fi-arrow-circle-bottom:before{content:'\e009'}.fi-arrow-circle-left:before{content:'\e00a'}.fi-arrow-circle-right:before{content:'\e00b'}.fi-arrow-circle-top:before{content:'\e00c'}.fi-arrow-left:before{content:'\e00d'}.fi-arrow-right:before{content:'\e00e'}.fi-arrow-thick-bottom:before{content:'\e00f'}.fi-arrow-thick-left:before{content:'\e010'}.fi-arrow-thick-right:before{content:'\e011'}.fi-arrow-thick-top:before{content:'\e012'}.fi-arrow-top:before{content:'\e013'}.fi-audio-spectrum:before{content:'\e014'}.fi-audio:before{content:'\e015'}.fi-badge:before{content:'\e016'}.fi-ban:before{content:'\e017'}.fi-bar-chart:before{content:'\e018'}.fi-basket:before{content:'\e019'}.fi-battery-empty:before{content:'\e01a'}.fi-battery-full:before{content:'\e01b'}.fi-beaker:before{content:'\e01c'}.fi-bell:before{content:'\e01d'}.fi-bluetooth:before{content:'\e01e'}.fi-bold:before{content:'\e01f'}.fi-bolt:before{content:'\e020'}.fi-book:before{content:'\e021'}.fi-bookmark:before{content:'\e022'}.fi-box:before{content:'\e023'}.fi-briefcase:before{content:'\e024'}.fi-british-pound:before{content:'\e025'}.fi-browser:before{content:'\e026'}.fi-brush:before{content:'\e027'}.fi-bug:before{content:'\e028'}.fi-bullhorn:before{content:'\e029'}.fi-calculator:before{content:'\e02a'}.fi-calendar:before{content:'\e02b'}.fi-camera-slr:before{content:'\e02c'}.fi-caret-bottom:before{content:'\e02d'}.fi-caret-left:before{content:'\e02e'}.fi-caret-right:before{content:'\e02f'}.fi-caret-top:before{content:'\e030'}.fi-cart:before{content:'\e031'}.fi-chat:before{content:'\e032'}.fi-check:before{content:'\e033'}.fi-chevron-bottom:before{content:'\e034'}.fi-chevron-left:before{content:'\e035'}.fi-chevron-right:before{content:'\e036'}.fi-chevron-top:before{content:'\e037'}.fi-circle-check:before{content:'\e038'}.fi-circle-x:before{content:'\e039'}.fi-clipboard:before{content:'\e03a'}.fi-clock:before{content:'\e03b'}.fi-cloud-download:before{content:'\e03c'}.fi-cloud-upload:before{content:'\e03d'}.fi-cloud:before{content:'\e03e'}.fi-cloudy:before{content:'\e03f'}.fi-code:before{content:'\e040'}.fi-cog:before{content:'\e041'}.fi-collapse-down:before{content:'\e042'}.fi-collapse-left:before{content:'\e043'}.fi-collapse-right:before{content:'\e044'}.fi-collapse-up:before{content:'\e045'}.fi-command:before{content:'\e046'}.fi-comment-square:before{content:'\e047'}.fi-compass:before{content:'\e048'}.fi-contrast:before{content:'\e049'}.fi-copywriting:before{content:'\e04a'}.fi-credit-card:before{content:'\e04b'}.fi-crop:before{content:'\e04c'}.fi-dashboard:before{content:'\e04d'}.fi-data-transfer-download:before{content:'\e04e'}.fi-data-transfer-upload:before{content:'\e04f'}.fi-delete:before{content:'\e050'}.fi-dial:before{content:'\e051'}.fi-document:before{content:'\e052'}.fi-dollar:before{content:'\e053'}.fi-double-quote-sans-left:before{content:'\e054'}.fi-double-quote-sans-right:before{content:'\e055'}.fi-double-quote-serif-left:before{content:'\e056'}.fi-double-quote-serif-right:before{content:'\e057'}.fi-droplet:before{content:'\e058'}.fi-eject:before{content:'\e059'}.fi-elevator:before{content:'\e05a'}.fi-ellipses:before{content:'\e05b'}.fi-envelope-closed:before{content:'\e05c'}.fi-envelope-open:before{content:'\e05d'}.fi-euro:before{content:'\e05e'}.fi-excerpt:before{content:'\e05f'}.fi-expand-down:before{content:'\e060'}.fi-expand-left:before{content:'\e061'}.fi-expand-right:before{content:'\e062'}.fi-expand-up:before{content:'\e063'}.fi-external-link:before{content:'\e064'}.fi-eye:before{content:'\e065'}.fi-eyedropper:before{content:'\e066'}.fi-file:before{content:'\e067'}.fi-fire:before{content:'\e068'}.fi-flag:before{content:'\e069'}.fi-flash:before{content:'\e06a'}.fi-folder:before{content:'\e06b'}.fi-fork:before{content:'\e06c'}.fi-fullscreen-enter:before{content:'\e06d'}.fi-fullscreen-exit:before{content:'\e06e'}.fi-globe:before{content:'\e06f'}.fi-graph:before{content:'\e070'}.fi-grid-four-up:before{content:'\e071'}.fi-grid-three-up:before{content:'\e072'}.fi-grid-two-up:before{content:'\e073'}.fi-hard-drive:before{content:'\e074'}.fi-header:before{content:'\e075'}.fi-headphones:before{content:'\e076'}.fi-heart:before{content:'\e077'}.fi-home:before{content:'\e078'}.fi-image:before{content:'\e079'}.fi-inbox:before{content:'\e07a'}.fi-infinity:before{content:'\e07b'}.fi-info:before{content:'\e07c'}.fi-italic:before{content:'\e07d'}.fi-justify-center:before{content:'\e07e'}.fi-justify-left:before{content:'\e07f'}.fi-justify-right:before{content:'\e080'}.fi-key:before{content:'\e081'}.fi-laptop:before{content:'\e082'}.fi-layers:before{content:'\e083'}.fi-lightbulb:before{content:'\e084'}.fi-link-broken:before{content:'\e085'}.fi-link-intact:before{content:'\e086'}.fi-list-rich:before{content:'\e087'}.fi-list:before{content:'\e088'}.fi-location:before{content:'\e089'}.fi-lock-locked:before{content:'\e08a'}.fi-lock-unlocked:before{content:'\e08b'}.fi-loop-circular:before{content:'\e08c'}.fi-loop-square:before{content:'\e08d'}.fi-loop:before{content:'\e08e'}.fi-magnifying-glass:before{content:'\e08f'}.fi-map-marker:before{content:'\e090'}.fi-map:before{content:'\e091'}.fi-media-pause:before{content:'\e092'}.fi-media-play:before{content:'\e093'}.fi-media-record:before{content:'\e094'}.fi-media-skip-backward:before{content:'\e095'}.fi-media-skip-forward:before{content:'\e096'}.fi-media-step-backward:before{content:'\e097'}.fi-media-step-forward:before{content:'\e098'}.fi-media-stop:before{content:'\e099'}.fi-medical-cross:before{content:'\e09a'}.fi-menu:before{content:'\e09b'}.fi-microphone:before{content:'\e09c'}.fi-minus:before{content:'\e09d'}.fi-monitor:before{content:'\e09e'}.fi-moon:before{content:'\e09f'}.fi-move:before{content:'\e0a0'}.fi-musical-note:before{content:'\e0a1'}.fi-paperclip:before{content:'\e0a2'}.fi-pencil:before{content:'\e0a3'}.fi-people:before{content:'\e0a4'}.fi-person:before{content:'\e0a5'}.fi-phone:before{content:'\e0a6'}.fi-pie-chart:before{content:'\e0a7'}.fi-pin:before{content:'\e0a8'}.fi-play-circle:before{content:'\e0a9'}.fi-plus:before{content:'\e0aa'}.fi-power-standby:before{content:'\e0ab'}.fi-print:before{content:'\e0ac'}.fi-project:before{content:'\e0ad'}.fi-pulse:before{content:'\e0ae'}.fi-puzzle-piece:before{content:'\e0af'}.fi-question-mark:before{content:'\e0b0'}.fi-rain:before{content:'\e0b1'}.fi-random:before{content:'\e0b2'}.fi-reload:before{content:'\e0b3'}.fi-resize-both:before{content:'\e0b4'}.fi-resize-height:before{content:'\e0b5'}.fi-resize-width:before{content:'\e0b6'}.fi-rss-alt:before{content:'\e0b7'}.fi-rss:before{content:'\e0b8'}.fi-script:before{content:'\e0b9'}.fi-share-boxed:before{content:'\e0ba'}.fi-share:before{content:'\e0bb'}.fi-shield:before{content:'\e0bc'}.fi-signal:before{content:'\e0bd'}.fi-signpost:before{content:'\e0be'}.fi-sort-ascending:before{content:'\e0bf'}.fi-sort-descending:before{content:'\e0c0'}.fi-spreadsheet:before{content:'\e0c1'}.fi-star:before{content:'\e0c2'}.fi-sun:before{content:'\e0c3'}.fi-tablet:before{content:'\e0c4'}.fi-tag:before{content:'\e0c5'}.fi-tags:before{content:'\e0c6'}.fi-target:before{content:'\e0c7'}.fi-task:before{content:'\e0c8'}.fi-terminal:before{content:'\e0c9'}.fi-text:before{content:'\e0ca'}.fi-thumb-down:before{content:'\e0cb'}.fi-thumb-up:before{content:'\e0cc'}.fi-timer:before{content:'\e0cd'}.fi-transfer:before{content:'\e0ce'}.fi-trash:before{content:'\e0cf'}.fi-underline:before{content:'\e0d0'}.fi-vertical-align-bottom:before{content:'\e0d1'}.fi-vertical-align-center:before{content:'\e0d2'}.fi-vertical-align-top:before{content:'\e0d3'}.fi-video:before{content:'\e0d4'}.fi-volume-high:before{content:'\e0d5'}.fi-volume-low:before{content:'\e0d6'}.fi-volume-off:before{content:'\e0d7'}.fi-warning:before{content:'\e0d8'}.fi-wifi:before{content:'\e0d9'}.fi-wrench:before{content:'\e0da'}.fi-x:before{content:'\e0db'}.fi-yen:before{content:'\e0dc'}.fi-zoom-in:before{content:'\e0dd'}.fi-zoom-out:before{content:'\e0de'} \ No newline at end of file diff --git a/the8eam/open-iconic/font/css/open-iconic-foundation.scss b/the8eam/open-iconic/font/css/open-iconic-foundation.scss new file mode 100644 index 0000000..fe47138 --- /dev/null +++ b/the8eam/open-iconic/font/css/open-iconic-foundation.scss @@ -0,0 +1,1398 @@ +/* Foundation */ + +/* Font path variable */ +$icon-font-path: '../fonts/' !default; + +@font-face { + font-family: 'Icons'; + src: url('#{$icon-font-path}open-iconic.eot'); + src: url('#{$icon-font-path}open-iconic.eot?#iconic-sm') format('embedded-opentype'), url('#{$icon-font-path}open-iconic.woff') format('woff'), url('#{$icon-font-path}open-iconic.ttf') format('truetype'), url('#{$icon-font-path}open-iconic.otf') format('opentype'), url('#{$icon-font-path}open-iconic.svg#iconic-sm') format('svg'); + font-weight: normal; + font-style: normal; +} + + +.fi-account-login:before, + +.fi-account-logout:before, + +.fi-action-redo:before, + +.fi-action-undo:before, + +.fi-align-center:before, + +.fi-align-left:before, + +.fi-align-right:before, + +.fi-aperture:before, + +.fi-arrow-bottom:before, + +.fi-arrow-circle-bottom:before, + +.fi-arrow-circle-left:before, + +.fi-arrow-circle-right:before, + +.fi-arrow-circle-top:before, + +.fi-arrow-left:before, + +.fi-arrow-right:before, + +.fi-arrow-thick-bottom:before, + +.fi-arrow-thick-left:before, + +.fi-arrow-thick-right:before, + +.fi-arrow-thick-top:before, + +.fi-arrow-top:before, + +.fi-audio-spectrum:before, + +.fi-audio:before, + +.fi-badge:before, + +.fi-ban:before, + +.fi-bar-chart:before, + +.fi-basket:before, + +.fi-battery-empty:before, + +.fi-battery-full:before, + +.fi-beaker:before, + +.fi-bell:before, + +.fi-bluetooth:before, + +.fi-bold:before, + +.fi-bolt:before, + +.fi-book:before, + +.fi-bookmark:before, + +.fi-box:before, + +.fi-briefcase:before, + +.fi-british-pound:before, + +.fi-browser:before, + +.fi-brush:before, + +.fi-bug:before, + +.fi-bullhorn:before, + +.fi-calculator:before, + +.fi-calendar:before, + +.fi-camera-slr:before, + +.fi-caret-bottom:before, + +.fi-caret-left:before, + +.fi-caret-right:before, + +.fi-caret-top:before, + +.fi-cart:before, + +.fi-chat:before, + +.fi-check:before, + +.fi-chevron-bottom:before, + +.fi-chevron-left:before, + +.fi-chevron-right:before, + +.fi-chevron-top:before, + +.fi-circle-check:before, + +.fi-circle-x:before, + +.fi-clipboard:before, + +.fi-clock:before, + +.fi-cloud-download:before, + +.fi-cloud-upload:before, + +.fi-cloud:before, + +.fi-cloudy:before, + +.fi-code:before, + +.fi-cog:before, + +.fi-collapse-down:before, + +.fi-collapse-left:before, + +.fi-collapse-right:before, + +.fi-collapse-up:before, + +.fi-command:before, + +.fi-comment-square:before, + +.fi-compass:before, + +.fi-contrast:before, + +.fi-copywriting:before, + +.fi-credit-card:before, + +.fi-crop:before, + +.fi-dashboard:before, + +.fi-data-transfer-download:before, + +.fi-data-transfer-upload:before, + +.fi-delete:before, + +.fi-dial:before, + +.fi-document:before, + +.fi-dollar:before, + +.fi-double-quote-sans-left:before, + +.fi-double-quote-sans-right:before, + +.fi-double-quote-serif-left:before, + +.fi-double-quote-serif-right:before, + +.fi-droplet:before, + +.fi-eject:before, + +.fi-elevator:before, + +.fi-ellipses:before, + +.fi-envelope-closed:before, + +.fi-envelope-open:before, + +.fi-euro:before, + +.fi-excerpt:before, + +.fi-expand-down:before, + +.fi-expand-left:before, + +.fi-expand-right:before, + +.fi-expand-up:before, + +.fi-external-link:before, + +.fi-eye:before, + +.fi-eyedropper:before, + +.fi-file:before, + +.fi-fire:before, + +.fi-flag:before, + +.fi-flash:before, + +.fi-folder:before, + +.fi-fork:before, + +.fi-fullscreen-enter:before, + +.fi-fullscreen-exit:before, + +.fi-globe:before, + +.fi-graph:before, + +.fi-grid-four-up:before, + +.fi-grid-three-up:before, + +.fi-grid-two-up:before, + +.fi-hard-drive:before, + +.fi-header:before, + +.fi-headphones:before, + +.fi-heart:before, + +.fi-home:before, + +.fi-image:before, + +.fi-inbox:before, + +.fi-infinity:before, + +.fi-info:before, + +.fi-italic:before, + +.fi-justify-center:before, + +.fi-justify-left:before, + +.fi-justify-right:before, + +.fi-key:before, + +.fi-laptop:before, + +.fi-layers:before, + +.fi-lightbulb:before, + +.fi-link-broken:before, + +.fi-link-intact:before, + +.fi-list-rich:before, + +.fi-list:before, + +.fi-location:before, + +.fi-lock-locked:before, + +.fi-lock-unlocked:before, + +.fi-loop-circular:before, + +.fi-loop-square:before, + +.fi-loop:before, + +.fi-magnifying-glass:before, + +.fi-map-marker:before, + +.fi-map:before, + +.fi-media-pause:before, + +.fi-media-play:before, + +.fi-media-record:before, + +.fi-media-skip-backward:before, + +.fi-media-skip-forward:before, + +.fi-media-step-backward:before, + +.fi-media-step-forward:before, + +.fi-media-stop:before, + +.fi-medical-cross:before, + +.fi-menu:before, + +.fi-microphone:before, + +.fi-minus:before, + +.fi-monitor:before, + +.fi-moon:before, + +.fi-move:before, + +.fi-musical-note:before, + +.fi-paperclip:before, + +.fi-pencil:before, + +.fi-people:before, + +.fi-person:before, + +.fi-phone:before, + +.fi-pie-chart:before, + +.fi-pin:before, + +.fi-play-circle:before, + +.fi-plus:before, + +.fi-power-standby:before, + +.fi-print:before, + +.fi-project:before, + +.fi-pulse:before, + +.fi-puzzle-piece:before, + +.fi-question-mark:before, + +.fi-rain:before, + +.fi-random:before, + +.fi-reload:before, + +.fi-resize-both:before, + +.fi-resize-height:before, + +.fi-resize-width:before, + +.fi-rss-alt:before, + +.fi-rss:before, + +.fi-script:before, + +.fi-share-boxed:before, + +.fi-share:before, + +.fi-shield:before, + +.fi-signal:before, + +.fi-signpost:before, + +.fi-sort-ascending:before, + +.fi-sort-descending:before, + +.fi-spreadsheet:before, + +.fi-star:before, + +.fi-sun:before, + +.fi-tablet:before, + +.fi-tag:before, + +.fi-tags:before, + +.fi-target:before, + +.fi-task:before, + +.fi-terminal:before, + +.fi-text:before, + +.fi-thumb-down:before, + +.fi-thumb-up:before, + +.fi-timer:before, + +.fi-transfer:before, + +.fi-trash:before, + +.fi-underline:before, + +.fi-vertical-align-bottom:before, + +.fi-vertical-align-center:before, + +.fi-vertical-align-top:before, + +.fi-video:before, + +.fi-volume-high:before, + +.fi-volume-low:before, + +.fi-volume-off:before, + +.fi-warning:before, + +.fi-wifi:before, + +.fi-wrench:before, + +.fi-x:before, + +.fi-yen:before, + +.fi-zoom-in:before, + +.fi-zoom-out:before + { + font-family: 'Icons'; + font-style: normal; + font-weight: normal; + font-variant: normal; + text-transform: none; + line-height: 1; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; + display: inline-block; + text-decoration: inherit; +} + + +[class*='fi-'].oi-align-center:before { + text-align: center; +} + +[class*='fi-'].oi-align-left:before { + text-align: left; +} + +[class*='fi-'].oi-align-right:before { + text-align: right; +} + + +[class*='fi-'].oi-flip-horizontal:before { + -webkit-transform: scale(-1, 1); + -ms-transform: scale(-1, 1); + transform: scale(-1, 1); +} + +[class*='fi-'].oi-flip-vertical:before { + -webkit-transform: scale(1, -1); + -ms-transform: scale(-1, 1); + transform: scale(1, -1); +} + +[class*='fi-'].oi-flip-horizontal-vertical:before { + -webkit-transform: scale(-1, -1); + -ms-transform: scale(-1, 1); + transform: scale(-1, -1); +} + + + +.fi-account-login:before { + content:'\e000'; +} + +.fi-account-logout:before { + content:'\e001'; +} + +.fi-action-redo:before { + content:'\e002'; +} + +.fi-action-undo:before { + content:'\e003'; +} + +.fi-align-center:before { + content:'\e004'; +} + +.fi-align-left:before { + content:'\e005'; +} + +.fi-align-right:before { + content:'\e006'; +} + +.fi-aperture:before { + content:'\e007'; +} + +.fi-arrow-bottom:before { + content:'\e008'; +} + +.fi-arrow-circle-bottom:before { + content:'\e009'; +} + +.fi-arrow-circle-left:before { + content:'\e00a'; +} + +.fi-arrow-circle-right:before { + content:'\e00b'; +} + +.fi-arrow-circle-top:before { + content:'\e00c'; +} + +.fi-arrow-left:before { + content:'\e00d'; +} + +.fi-arrow-right:before { + content:'\e00e'; +} + +.fi-arrow-thick-bottom:before { + content:'\e00f'; +} + +.fi-arrow-thick-left:before { + content:'\e010'; +} + +.fi-arrow-thick-right:before { + content:'\e011'; +} + +.fi-arrow-thick-top:before { + content:'\e012'; +} + +.fi-arrow-top:before { + content:'\e013'; +} + +.fi-audio-spectrum:before { + content:'\e014'; +} + +.fi-audio:before { + content:'\e015'; +} + +.fi-badge:before { + content:'\e016'; +} + +.fi-ban:before { + content:'\e017'; +} + +.fi-bar-chart:before { + content:'\e018'; +} + +.fi-basket:before { + content:'\e019'; +} + +.fi-battery-empty:before { + content:'\e01a'; +} + +.fi-battery-full:before { + content:'\e01b'; +} + +.fi-beaker:before { + content:'\e01c'; +} + +.fi-bell:before { + content:'\e01d'; +} + +.fi-bluetooth:before { + content:'\e01e'; +} + +.fi-bold:before { + content:'\e01f'; +} + +.fi-bolt:before { + content:'\e020'; +} + +.fi-book:before { + content:'\e021'; +} + +.fi-bookmark:before { + content:'\e022'; +} + +.fi-box:before { + content:'\e023'; +} + +.fi-briefcase:before { + content:'\e024'; +} + +.fi-british-pound:before { + content:'\e025'; +} + +.fi-browser:before { + content:'\e026'; +} + +.fi-brush:before { + content:'\e027'; +} + +.fi-bug:before { + content:'\e028'; +} + +.fi-bullhorn:before { + content:'\e029'; +} + +.fi-calculator:before { + content:'\e02a'; +} + +.fi-calendar:before { + content:'\e02b'; +} + +.fi-camera-slr:before { + content:'\e02c'; +} + +.fi-caret-bottom:before { + content:'\e02d'; +} + +.fi-caret-left:before { + content:'\e02e'; +} + +.fi-caret-right:before { + content:'\e02f'; +} + +.fi-caret-top:before { + content:'\e030'; +} + +.fi-cart:before { + content:'\e031'; +} + +.fi-chat:before { + content:'\e032'; +} + +.fi-check:before { + content:'\e033'; +} + +.fi-chevron-bottom:before { + content:'\e034'; +} + +.fi-chevron-left:before { + content:'\e035'; +} + +.fi-chevron-right:before { + content:'\e036'; +} + +.fi-chevron-top:before { + content:'\e037'; +} + +.fi-circle-check:before { + content:'\e038'; +} + +.fi-circle-x:before { + content:'\e039'; +} + +.fi-clipboard:before { + content:'\e03a'; +} + +.fi-clock:before { + content:'\e03b'; +} + +.fi-cloud-download:before { + content:'\e03c'; +} + +.fi-cloud-upload:before { + content:'\e03d'; +} + +.fi-cloud:before { + content:'\e03e'; +} + +.fi-cloudy:before { + content:'\e03f'; +} + +.fi-code:before { + content:'\e040'; +} + +.fi-cog:before { + content:'\e041'; +} + +.fi-collapse-down:before { + content:'\e042'; +} + +.fi-collapse-left:before { + content:'\e043'; +} + +.fi-collapse-right:before { + content:'\e044'; +} + +.fi-collapse-up:before { + content:'\e045'; +} + +.fi-command:before { + content:'\e046'; +} + +.fi-comment-square:before { + content:'\e047'; +} + +.fi-compass:before { + content:'\e048'; +} + +.fi-contrast:before { + content:'\e049'; +} + +.fi-copywriting:before { + content:'\e04a'; +} + +.fi-credit-card:before { + content:'\e04b'; +} + +.fi-crop:before { + content:'\e04c'; +} + +.fi-dashboard:before { + content:'\e04d'; +} + +.fi-data-transfer-download:before { + content:'\e04e'; +} + +.fi-data-transfer-upload:before { + content:'\e04f'; +} + +.fi-delete:before { + content:'\e050'; +} + +.fi-dial:before { + content:'\e051'; +} + +.fi-document:before { + content:'\e052'; +} + +.fi-dollar:before { + content:'\e053'; +} + +.fi-double-quote-sans-left:before { + content:'\e054'; +} + +.fi-double-quote-sans-right:before { + content:'\e055'; +} + +.fi-double-quote-serif-left:before { + content:'\e056'; +} + +.fi-double-quote-serif-right:before { + content:'\e057'; +} + +.fi-droplet:before { + content:'\e058'; +} + +.fi-eject:before { + content:'\e059'; +} + +.fi-elevator:before { + content:'\e05a'; +} + +.fi-ellipses:before { + content:'\e05b'; +} + +.fi-envelope-closed:before { + content:'\e05c'; +} + +.fi-envelope-open:before { + content:'\e05d'; +} + +.fi-euro:before { + content:'\e05e'; +} + +.fi-excerpt:before { + content:'\e05f'; +} + +.fi-expand-down:before { + content:'\e060'; +} + +.fi-expand-left:before { + content:'\e061'; +} + +.fi-expand-right:before { + content:'\e062'; +} + +.fi-expand-up:before { + content:'\e063'; +} + +.fi-external-link:before { + content:'\e064'; +} + +.fi-eye:before { + content:'\e065'; +} + +.fi-eyedropper:before { + content:'\e066'; +} + +.fi-file:before { + content:'\e067'; +} + +.fi-fire:before { + content:'\e068'; +} + +.fi-flag:before { + content:'\e069'; +} + +.fi-flash:before { + content:'\e06a'; +} + +.fi-folder:before { + content:'\e06b'; +} + +.fi-fork:before { + content:'\e06c'; +} + +.fi-fullscreen-enter:before { + content:'\e06d'; +} + +.fi-fullscreen-exit:before { + content:'\e06e'; +} + +.fi-globe:before { + content:'\e06f'; +} + +.fi-graph:before { + content:'\e070'; +} + +.fi-grid-four-up:before { + content:'\e071'; +} + +.fi-grid-three-up:before { + content:'\e072'; +} + +.fi-grid-two-up:before { + content:'\e073'; +} + +.fi-hard-drive:before { + content:'\e074'; +} + +.fi-header:before { + content:'\e075'; +} + +.fi-headphones:before { + content:'\e076'; +} + +.fi-heart:before { + content:'\e077'; +} + +.fi-home:before { + content:'\e078'; +} + +.fi-image:before { + content:'\e079'; +} + +.fi-inbox:before { + content:'\e07a'; +} + +.fi-infinity:before { + content:'\e07b'; +} + +.fi-info:before { + content:'\e07c'; +} + +.fi-italic:before { + content:'\e07d'; +} + +.fi-justify-center:before { + content:'\e07e'; +} + +.fi-justify-left:before { + content:'\e07f'; +} + +.fi-justify-right:before { + content:'\e080'; +} + +.fi-key:before { + content:'\e081'; +} + +.fi-laptop:before { + content:'\e082'; +} + +.fi-layers:before { + content:'\e083'; +} + +.fi-lightbulb:before { + content:'\e084'; +} + +.fi-link-broken:before { + content:'\e085'; +} + +.fi-link-intact:before { + content:'\e086'; +} + +.fi-list-rich:before { + content:'\e087'; +} + +.fi-list:before { + content:'\e088'; +} + +.fi-location:before { + content:'\e089'; +} + +.fi-lock-locked:before { + content:'\e08a'; +} + +.fi-lock-unlocked:before { + content:'\e08b'; +} + +.fi-loop-circular:before { + content:'\e08c'; +} + +.fi-loop-square:before { + content:'\e08d'; +} + +.fi-loop:before { + content:'\e08e'; +} + +.fi-magnifying-glass:before { + content:'\e08f'; +} + +.fi-map-marker:before { + content:'\e090'; +} + +.fi-map:before { + content:'\e091'; +} + +.fi-media-pause:before { + content:'\e092'; +} + +.fi-media-play:before { + content:'\e093'; +} + +.fi-media-record:before { + content:'\e094'; +} + +.fi-media-skip-backward:before { + content:'\e095'; +} + +.fi-media-skip-forward:before { + content:'\e096'; +} + +.fi-media-step-backward:before { + content:'\e097'; +} + +.fi-media-step-forward:before { + content:'\e098'; +} + +.fi-media-stop:before { + content:'\e099'; +} + +.fi-medical-cross:before { + content:'\e09a'; +} + +.fi-menu:before { + content:'\e09b'; +} + +.fi-microphone:before { + content:'\e09c'; +} + +.fi-minus:before { + content:'\e09d'; +} + +.fi-monitor:before { + content:'\e09e'; +} + +.fi-moon:before { + content:'\e09f'; +} + +.fi-move:before { + content:'\e0a0'; +} + +.fi-musical-note:before { + content:'\e0a1'; +} + +.fi-paperclip:before { + content:'\e0a2'; +} + +.fi-pencil:before { + content:'\e0a3'; +} + +.fi-people:before { + content:'\e0a4'; +} + +.fi-person:before { + content:'\e0a5'; +} + +.fi-phone:before { + content:'\e0a6'; +} + +.fi-pie-chart:before { + content:'\e0a7'; +} + +.fi-pin:before { + content:'\e0a8'; +} + +.fi-play-circle:before { + content:'\e0a9'; +} + +.fi-plus:before { + content:'\e0aa'; +} + +.fi-power-standby:before { + content:'\e0ab'; +} + +.fi-print:before { + content:'\e0ac'; +} + +.fi-project:before { + content:'\e0ad'; +} + +.fi-pulse:before { + content:'\e0ae'; +} + +.fi-puzzle-piece:before { + content:'\e0af'; +} + +.fi-question-mark:before { + content:'\e0b0'; +} + +.fi-rain:before { + content:'\e0b1'; +} + +.fi-random:before { + content:'\e0b2'; +} + +.fi-reload:before { + content:'\e0b3'; +} + +.fi-resize-both:before { + content:'\e0b4'; +} + +.fi-resize-height:before { + content:'\e0b5'; +} + +.fi-resize-width:before { + content:'\e0b6'; +} + +.fi-rss-alt:before { + content:'\e0b7'; +} + +.fi-rss:before { + content:'\e0b8'; +} + +.fi-script:before { + content:'\e0b9'; +} + +.fi-share-boxed:before { + content:'\e0ba'; +} + +.fi-share:before { + content:'\e0bb'; +} + +.fi-shield:before { + content:'\e0bc'; +} + +.fi-signal:before { + content:'\e0bd'; +} + +.fi-signpost:before { + content:'\e0be'; +} + +.fi-sort-ascending:before { + content:'\e0bf'; +} + +.fi-sort-descending:before { + content:'\e0c0'; +} + +.fi-spreadsheet:before { + content:'\e0c1'; +} + +.fi-star:before { + content:'\e0c2'; +} + +.fi-sun:before { + content:'\e0c3'; +} + +.fi-tablet:before { + content:'\e0c4'; +} + +.fi-tag:before { + content:'\e0c5'; +} + +.fi-tags:before { + content:'\e0c6'; +} + +.fi-target:before { + content:'\e0c7'; +} + +.fi-task:before { + content:'\e0c8'; +} + +.fi-terminal:before { + content:'\e0c9'; +} + +.fi-text:before { + content:'\e0ca'; +} + +.fi-thumb-down:before { + content:'\e0cb'; +} + +.fi-thumb-up:before { + content:'\e0cc'; +} + +.fi-timer:before { + content:'\e0cd'; +} + +.fi-transfer:before { + content:'\e0ce'; +} + +.fi-trash:before { + content:'\e0cf'; +} + +.fi-underline:before { + content:'\e0d0'; +} + +.fi-vertical-align-bottom:before { + content:'\e0d1'; +} + +.fi-vertical-align-center:before { + content:'\e0d2'; +} + +.fi-vertical-align-top:before { + content:'\e0d3'; +} + +.fi-video:before { + content:'\e0d4'; +} + +.fi-volume-high:before { + content:'\e0d5'; +} + +.fi-volume-low:before { + content:'\e0d6'; +} + +.fi-volume-off:before { + content:'\e0d7'; +} + +.fi-warning:before { + content:'\e0d8'; +} + +.fi-wifi:before { + content:'\e0d9'; +} + +.fi-wrench:before { + content:'\e0da'; +} + +.fi-x:before { + content:'\e0db'; +} + +.fi-yen:before { + content:'\e0dc'; +} + +.fi-zoom-in:before { + content:'\e0dd'; +} + +.fi-zoom-out:before { + content:'\e0de'; +} + diff --git a/the8eam/open-iconic/font/css/open-iconic-foundation.styl b/the8eam/open-iconic/font/css/open-iconic-foundation.styl new file mode 100644 index 0000000..a52637a --- /dev/null +++ b/the8eam/open-iconic/font/css/open-iconic-foundation.styl @@ -0,0 +1,1392 @@ +/* Foundation */ + +@font-face + font-family 'Icons' + src url('../fonts/open-iconic.eot') + src url('../fonts/open-iconic.eot?#iconic-sm') format('embedded-opentype'), url('../fonts/open-iconic.woff') format('woff'), url('../fonts/open-iconic.ttf') format('truetype'), url('../fonts/open-iconic.otf') format('opentype'), url('../fonts/open-iconic.svg#iconic-sm') format('svg') + font-weight normal + font-style normal + + + +.fi-account-loginbefore, + +.fi-account-logoutbefore, + +.fi-action-redobefore, + +.fi-action-undobefore, + +.fi-align-centerbefore, + +.fi-align-leftbefore, + +.fi-align-rightbefore, + +.fi-aperturebefore, + +.fi-arrow-bottombefore, + +.fi-arrow-circle-bottombefore, + +.fi-arrow-circle-leftbefore, + +.fi-arrow-circle-rightbefore, + +.fi-arrow-circle-topbefore, + +.fi-arrow-leftbefore, + +.fi-arrow-rightbefore, + +.fi-arrow-thick-bottombefore, + +.fi-arrow-thick-leftbefore, + +.fi-arrow-thick-rightbefore, + +.fi-arrow-thick-topbefore, + +.fi-arrow-topbefore, + +.fi-audio-spectrumbefore, + +.fi-audiobefore, + +.fi-badgebefore, + +.fi-banbefore, + +.fi-bar-chartbefore, + +.fi-basketbefore, + +.fi-battery-emptybefore, + +.fi-battery-fullbefore, + +.fi-beakerbefore, + +.fi-bellbefore, + +.fi-bluetoothbefore, + +.fi-boldbefore, + +.fi-boltbefore, + +.fi-bookbefore, + +.fi-bookmarkbefore, + +.fi-boxbefore, + +.fi-briefcasebefore, + +.fi-british-poundbefore, + +.fi-browserbefore, + +.fi-brushbefore, + +.fi-bugbefore, + +.fi-bullhornbefore, + +.fi-calculatorbefore, + +.fi-calendarbefore, + +.fi-camera-slrbefore, + +.fi-caret-bottombefore, + +.fi-caret-leftbefore, + +.fi-caret-rightbefore, + +.fi-caret-topbefore, + +.fi-cartbefore, + +.fi-chatbefore, + +.fi-checkbefore, + +.fi-chevron-bottombefore, + +.fi-chevron-leftbefore, + +.fi-chevron-rightbefore, + +.fi-chevron-topbefore, + +.fi-circle-checkbefore, + +.fi-circle-xbefore, + +.fi-clipboardbefore, + +.fi-clockbefore, + +.fi-cloud-downloadbefore, + +.fi-cloud-uploadbefore, + +.fi-cloudbefore, + +.fi-cloudybefore, + +.fi-codebefore, + +.fi-cogbefore, + +.fi-collapse-downbefore, + +.fi-collapse-leftbefore, + +.fi-collapse-rightbefore, + +.fi-collapse-upbefore, + +.fi-commandbefore, + +.fi-comment-squarebefore, + +.fi-compassbefore, + +.fi-contrastbefore, + +.fi-copywritingbefore, + +.fi-credit-cardbefore, + +.fi-cropbefore, + +.fi-dashboardbefore, + +.fi-data-transfer-downloadbefore, + +.fi-data-transfer-uploadbefore, + +.fi-deletebefore, + +.fi-dialbefore, + +.fi-documentbefore, + +.fi-dollarbefore, + +.fi-double-quote-sans-leftbefore, + +.fi-double-quote-sans-rightbefore, + +.fi-double-quote-serif-leftbefore, + +.fi-double-quote-serif-rightbefore, + +.fi-dropletbefore, + +.fi-ejectbefore, + +.fi-elevatorbefore, + +.fi-ellipsesbefore, + +.fi-envelope-closedbefore, + +.fi-envelope-openbefore, + +.fi-eurobefore, + +.fi-excerptbefore, + +.fi-expand-downbefore, + +.fi-expand-leftbefore, + +.fi-expand-rightbefore, + +.fi-expand-upbefore, + +.fi-external-linkbefore, + +.fi-eyebefore, + +.fi-eyedropperbefore, + +.fi-filebefore, + +.fi-firebefore, + +.fi-flagbefore, + +.fi-flashbefore, + +.fi-folderbefore, + +.fi-forkbefore, + +.fi-fullscreen-enterbefore, + +.fi-fullscreen-exitbefore, + +.fi-globebefore, + +.fi-graphbefore, + +.fi-grid-four-upbefore, + +.fi-grid-three-upbefore, + +.fi-grid-two-upbefore, + +.fi-hard-drivebefore, + +.fi-headerbefore, + +.fi-headphonesbefore, + +.fi-heartbefore, + +.fi-homebefore, + +.fi-imagebefore, + +.fi-inboxbefore, + +.fi-infinitybefore, + +.fi-infobefore, + +.fi-italicbefore, + +.fi-justify-centerbefore, + +.fi-justify-leftbefore, + +.fi-justify-rightbefore, + +.fi-keybefore, + +.fi-laptopbefore, + +.fi-layersbefore, + +.fi-lightbulbbefore, + +.fi-link-brokenbefore, + +.fi-link-intactbefore, + +.fi-list-richbefore, + +.fi-listbefore, + +.fi-locationbefore, + +.fi-lock-lockedbefore, + +.fi-lock-unlockedbefore, + +.fi-loop-circularbefore, + +.fi-loop-squarebefore, + +.fi-loopbefore, + +.fi-magnifying-glassbefore, + +.fi-map-markerbefore, + +.fi-mapbefore, + +.fi-media-pausebefore, + +.fi-media-playbefore, + +.fi-media-recordbefore, + +.fi-media-skip-backwardbefore, + +.fi-media-skip-forwardbefore, + +.fi-media-step-backwardbefore, + +.fi-media-step-forwardbefore, + +.fi-media-stopbefore, + +.fi-medical-crossbefore, + +.fi-menubefore, + +.fi-microphonebefore, + +.fi-minusbefore, + +.fi-monitorbefore, + +.fi-moonbefore, + +.fi-movebefore, + +.fi-musical-notebefore, + +.fi-paperclipbefore, + +.fi-pencilbefore, + +.fi-peoplebefore, + +.fi-personbefore, + +.fi-phonebefore, + +.fi-pie-chartbefore, + +.fi-pinbefore, + +.fi-play-circlebefore, + +.fi-plusbefore, + +.fi-power-standbybefore, + +.fi-printbefore, + +.fi-projectbefore, + +.fi-pulsebefore, + +.fi-puzzle-piecebefore, + +.fi-question-markbefore, + +.fi-rainbefore, + +.fi-randombefore, + +.fi-reloadbefore, + +.fi-resize-bothbefore, + +.fi-resize-heightbefore, + +.fi-resize-widthbefore, + +.fi-rss-altbefore, + +.fi-rssbefore, + +.fi-scriptbefore, + +.fi-share-boxedbefore, + +.fi-sharebefore, + +.fi-shieldbefore, + +.fi-signalbefore, + +.fi-signpostbefore, + +.fi-sort-ascendingbefore, + +.fi-sort-descendingbefore, + +.fi-spreadsheetbefore, + +.fi-starbefore, + +.fi-sunbefore, + +.fi-tabletbefore, + +.fi-tagbefore, + +.fi-tagsbefore, + +.fi-targetbefore, + +.fi-taskbefore, + +.fi-terminalbefore, + +.fi-textbefore, + +.fi-thumb-downbefore, + +.fi-thumb-upbefore, + +.fi-timerbefore, + +.fi-transferbefore, + +.fi-trashbefore, + +.fi-underlinebefore, + +.fi-vertical-align-bottombefore, + +.fi-vertical-align-centerbefore, + +.fi-vertical-align-topbefore, + +.fi-videobefore, + +.fi-volume-highbefore, + +.fi-volume-lowbefore, + +.fi-volume-offbefore, + +.fi-warningbefore, + +.fi-wifibefore, + +.fi-wrenchbefore, + +.fi-xbefore, + +.fi-yenbefore, + +.fi-zoom-inbefore, + +.fi-zoom-outbefore + + font-family 'Icons' + font-style normal + font-weight normal + font-variant normal + text-transform none + line-height 1 + -webkit-font-smoothing antialiased + -moz-osx-font-smoothing grayscale + display inline-block + text-decoration inherit + + +[class*='fi-'].oi-align-center:before + text-align center + + +[class*='fi-'].oi-align-left:before + text-align left + + +[class*='fi-'].oi-align-right:before + text-align right + + + +[class*='fi-'].oi-flip-horizontal:before + -webkit-transform scale(-1, 1) + -ms-transform scale(-1, 1) + transform scale(-1, 1) + + +[class*='fi-'].oi-flip-vertical:before + -webkit-transform scale(1, -1) + -ms-transform scale(-1, 1) + transform scale(1, -1) + + +[class*='fi-'].oi-flip-horizontal-vertical:before + -webkit-transform scale(-1, -1) + -ms-transform scale(-1, 1) + transform scale(-1, -1) + + +.fi-account-login:before + content'\e000' + + +.fi-account-logout:before + content'\e001' + + +.fi-action-redo:before + content'\e002' + + +.fi-action-undo:before + content'\e003' + + +.fi-align-center:before + content'\e004' + + +.fi-align-left:before + content'\e005' + + +.fi-align-right:before + content'\e006' + + +.fi-aperture:before + content'\e007' + + +.fi-arrow-bottom:before + content'\e008' + + +.fi-arrow-circle-bottom:before + content'\e009' + + +.fi-arrow-circle-left:before + content'\e00a' + + +.fi-arrow-circle-right:before + content'\e00b' + + +.fi-arrow-circle-top:before + content'\e00c' + + +.fi-arrow-left:before + content'\e00d' + + +.fi-arrow-right:before + content'\e00e' + + +.fi-arrow-thick-bottom:before + content'\e00f' + + +.fi-arrow-thick-left:before + content'\e010' + + +.fi-arrow-thick-right:before + content'\e011' + + +.fi-arrow-thick-top:before + content'\e012' + + +.fi-arrow-top:before + content'\e013' + + +.fi-audio-spectrum:before + content'\e014' + + +.fi-audio:before + content'\e015' + + +.fi-badge:before + content'\e016' + + +.fi-ban:before + content'\e017' + + +.fi-bar-chart:before + content'\e018' + + +.fi-basket:before + content'\e019' + + +.fi-battery-empty:before + content'\e01a' + + +.fi-battery-full:before + content'\e01b' + + +.fi-beaker:before + content'\e01c' + + +.fi-bell:before + content'\e01d' + + +.fi-bluetooth:before + content'\e01e' + + +.fi-bold:before + content'\e01f' + + +.fi-bolt:before + content'\e020' + + +.fi-book:before + content'\e021' + + +.fi-bookmark:before + content'\e022' + + +.fi-box:before + content'\e023' + + +.fi-briefcase:before + content'\e024' + + +.fi-british-pound:before + content'\e025' + + +.fi-browser:before + content'\e026' + + +.fi-brush:before + content'\e027' + + +.fi-bug:before + content'\e028' + + +.fi-bullhorn:before + content'\e029' + + +.fi-calculator:before + content'\e02a' + + +.fi-calendar:before + content'\e02b' + + +.fi-camera-slr:before + content'\e02c' + + +.fi-caret-bottom:before + content'\e02d' + + +.fi-caret-left:before + content'\e02e' + + +.fi-caret-right:before + content'\e02f' + + +.fi-caret-top:before + content'\e030' + + +.fi-cart:before + content'\e031' + + +.fi-chat:before + content'\e032' + + +.fi-check:before + content'\e033' + + +.fi-chevron-bottom:before + content'\e034' + + +.fi-chevron-left:before + content'\e035' + + +.fi-chevron-right:before + content'\e036' + + +.fi-chevron-top:before + content'\e037' + + +.fi-circle-check:before + content'\e038' + + +.fi-circle-x:before + content'\e039' + + +.fi-clipboard:before + content'\e03a' + + +.fi-clock:before + content'\e03b' + + +.fi-cloud-download:before + content'\e03c' + + +.fi-cloud-upload:before + content'\e03d' + + +.fi-cloud:before + content'\e03e' + + +.fi-cloudy:before + content'\e03f' + + +.fi-code:before + content'\e040' + + +.fi-cog:before + content'\e041' + + +.fi-collapse-down:before + content'\e042' + + +.fi-collapse-left:before + content'\e043' + + +.fi-collapse-right:before + content'\e044' + + +.fi-collapse-up:before + content'\e045' + + +.fi-command:before + content'\e046' + + +.fi-comment-square:before + content'\e047' + + +.fi-compass:before + content'\e048' + + +.fi-contrast:before + content'\e049' + + +.fi-copywriting:before + content'\e04a' + + +.fi-credit-card:before + content'\e04b' + + +.fi-crop:before + content'\e04c' + + +.fi-dashboard:before + content'\e04d' + + +.fi-data-transfer-download:before + content'\e04e' + + +.fi-data-transfer-upload:before + content'\e04f' + + +.fi-delete:before + content'\e050' + + +.fi-dial:before + content'\e051' + + +.fi-document:before + content'\e052' + + +.fi-dollar:before + content'\e053' + + +.fi-double-quote-sans-left:before + content'\e054' + + +.fi-double-quote-sans-right:before + content'\e055' + + +.fi-double-quote-serif-left:before + content'\e056' + + +.fi-double-quote-serif-right:before + content'\e057' + + +.fi-droplet:before + content'\e058' + + +.fi-eject:before + content'\e059' + + +.fi-elevator:before + content'\e05a' + + +.fi-ellipses:before + content'\e05b' + + +.fi-envelope-closed:before + content'\e05c' + + +.fi-envelope-open:before + content'\e05d' + + +.fi-euro:before + content'\e05e' + + +.fi-excerpt:before + content'\e05f' + + +.fi-expand-down:before + content'\e060' + + +.fi-expand-left:before + content'\e061' + + +.fi-expand-right:before + content'\e062' + + +.fi-expand-up:before + content'\e063' + + +.fi-external-link:before + content'\e064' + + +.fi-eye:before + content'\e065' + + +.fi-eyedropper:before + content'\e066' + + +.fi-file:before + content'\e067' + + +.fi-fire:before + content'\e068' + + +.fi-flag:before + content'\e069' + + +.fi-flash:before + content'\e06a' + + +.fi-folder:before + content'\e06b' + + +.fi-fork:before + content'\e06c' + + +.fi-fullscreen-enter:before + content'\e06d' + + +.fi-fullscreen-exit:before + content'\e06e' + + +.fi-globe:before + content'\e06f' + + +.fi-graph:before + content'\e070' + + +.fi-grid-four-up:before + content'\e071' + + +.fi-grid-three-up:before + content'\e072' + + +.fi-grid-two-up:before + content'\e073' + + +.fi-hard-drive:before + content'\e074' + + +.fi-header:before + content'\e075' + + +.fi-headphones:before + content'\e076' + + +.fi-heart:before + content'\e077' + + +.fi-home:before + content'\e078' + + +.fi-image:before + content'\e079' + + +.fi-inbox:before + content'\e07a' + + +.fi-infinity:before + content'\e07b' + + +.fi-info:before + content'\e07c' + + +.fi-italic:before + content'\e07d' + + +.fi-justify-center:before + content'\e07e' + + +.fi-justify-left:before + content'\e07f' + + +.fi-justify-right:before + content'\e080' + + +.fi-key:before + content'\e081' + + +.fi-laptop:before + content'\e082' + + +.fi-layers:before + content'\e083' + + +.fi-lightbulb:before + content'\e084' + + +.fi-link-broken:before + content'\e085' + + +.fi-link-intact:before + content'\e086' + + +.fi-list-rich:before + content'\e087' + + +.fi-list:before + content'\e088' + + +.fi-location:before + content'\e089' + + +.fi-lock-locked:before + content'\e08a' + + +.fi-lock-unlocked:before + content'\e08b' + + +.fi-loop-circular:before + content'\e08c' + + +.fi-loop-square:before + content'\e08d' + + +.fi-loop:before + content'\e08e' + + +.fi-magnifying-glass:before + content'\e08f' + + +.fi-map-marker:before + content'\e090' + + +.fi-map:before + content'\e091' + + +.fi-media-pause:before + content'\e092' + + +.fi-media-play:before + content'\e093' + + +.fi-media-record:before + content'\e094' + + +.fi-media-skip-backward:before + content'\e095' + + +.fi-media-skip-forward:before + content'\e096' + + +.fi-media-step-backward:before + content'\e097' + + +.fi-media-step-forward:before + content'\e098' + + +.fi-media-stop:before + content'\e099' + + +.fi-medical-cross:before + content'\e09a' + + +.fi-menu:before + content'\e09b' + + +.fi-microphone:before + content'\e09c' + + +.fi-minus:before + content'\e09d' + + +.fi-monitor:before + content'\e09e' + + +.fi-moon:before + content'\e09f' + + +.fi-move:before + content'\e0a0' + + +.fi-musical-note:before + content'\e0a1' + + +.fi-paperclip:before + content'\e0a2' + + +.fi-pencil:before + content'\e0a3' + + +.fi-people:before + content'\e0a4' + + +.fi-person:before + content'\e0a5' + + +.fi-phone:before + content'\e0a6' + + +.fi-pie-chart:before + content'\e0a7' + + +.fi-pin:before + content'\e0a8' + + +.fi-play-circle:before + content'\e0a9' + + +.fi-plus:before + content'\e0aa' + + +.fi-power-standby:before + content'\e0ab' + + +.fi-print:before + content'\e0ac' + + +.fi-project:before + content'\e0ad' + + +.fi-pulse:before + content'\e0ae' + + +.fi-puzzle-piece:before + content'\e0af' + + +.fi-question-mark:before + content'\e0b0' + + +.fi-rain:before + content'\e0b1' + + +.fi-random:before + content'\e0b2' + + +.fi-reload:before + content'\e0b3' + + +.fi-resize-both:before + content'\e0b4' + + +.fi-resize-height:before + content'\e0b5' + + +.fi-resize-width:before + content'\e0b6' + + +.fi-rss-alt:before + content'\e0b7' + + +.fi-rss:before + content'\e0b8' + + +.fi-script:before + content'\e0b9' + + +.fi-share-boxed:before + content'\e0ba' + + +.fi-share:before + content'\e0bb' + + +.fi-shield:before + content'\e0bc' + + +.fi-signal:before + content'\e0bd' + + +.fi-signpost:before + content'\e0be' + + +.fi-sort-ascending:before + content'\e0bf' + + +.fi-sort-descending:before + content'\e0c0' + + +.fi-spreadsheet:before + content'\e0c1' + + +.fi-star:before + content'\e0c2' + + +.fi-sun:before + content'\e0c3' + + +.fi-tablet:before + content'\e0c4' + + +.fi-tag:before + content'\e0c5' + + +.fi-tags:before + content'\e0c6' + + +.fi-target:before + content'\e0c7' + + +.fi-task:before + content'\e0c8' + + +.fi-terminal:before + content'\e0c9' + + +.fi-text:before + content'\e0ca' + + +.fi-thumb-down:before + content'\e0cb' + + +.fi-thumb-up:before + content'\e0cc' + + +.fi-timer:before + content'\e0cd' + + +.fi-transfer:before + content'\e0ce' + + +.fi-trash:before + content'\e0cf' + + +.fi-underline:before + content'\e0d0' + + +.fi-vertical-align-bottom:before + content'\e0d1' + + +.fi-vertical-align-center:before + content'\e0d2' + + +.fi-vertical-align-top:before + content'\e0d3' + + +.fi-video:before + content'\e0d4' + + +.fi-volume-high:before + content'\e0d5' + + +.fi-volume-low:before + content'\e0d6' + + +.fi-volume-off:before + content'\e0d7' + + +.fi-warning:before + content'\e0d8' + + +.fi-wifi:before + content'\e0d9' + + +.fi-wrench:before + content'\e0da' + + +.fi-x:before + content'\e0db' + + +.fi-yen:before + content'\e0dc' + + +.fi-zoom-in:before + content'\e0dd' + + +.fi-zoom-out:before + content'\e0de' + + diff --git a/the8eam/open-iconic/font/css/open-iconic.css b/the8eam/open-iconic/font/css/open-iconic.css new file mode 100644 index 0000000..301a138 --- /dev/null +++ b/the8eam/open-iconic/font/css/open-iconic.css @@ -0,0 +1,511 @@ + +@font-face { + font-family: 'Icons'; + src: url('../fonts/open-iconic.eot'); + src: url('../fonts/open-iconic.eot?#iconic-sm') format('embedded-opentype'), url('../fonts/open-iconic.woff') format('woff'), url('../fonts/open-iconic.ttf') format('truetype'), url('../fonts/open-iconic.otf') format('opentype'), url('../fonts/open-iconic.svg#iconic-sm') format('svg'); + font-weight: normal; + font-style: normal; +} + +.oi[data-glyph].oi-text-replace { + font-size: 0; + line-height: 0; +} + +.oi[data-glyph].oi-text-replace:before { + width: 1em; + text-align: center; +} + +.oi[data-glyph]:before { + font-family: 'Icons'; + display: inline-block; + speak: none; + line-height: 1; + vertical-align: baseline; + font-weight: normal; + font-style: normal; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; +} + +.oi[data-glyph]:empty:before { + width: 1em; + text-align: center; + box-sizing: content-box; +} + +.oi[data-glyph].oi-align-left:before { + text-align: left; +} + +.oi[data-glyph].oi-align-right:before { + text-align: right; +} + +.oi[data-glyph].oi-align-center:before { + text-align: center; +} + +.oi[data-glyph].oi-flip-horizontal:before { + -webkit-transform: scale(-1, 1); + -ms-transform: scale(-1, 1); + transform: scale(-1, 1); +} +.oi[data-glyph].oi-flip-vertical:before { + -webkit-transform: scale(1, -1); + -ms-transform: scale(-1, 1); + transform: scale(1, -1); +} +.oi[data-glyph].oi-flip-horizontal-vertical:before { + -webkit-transform: scale(-1, -1); + -ms-transform: scale(-1, 1); + transform: scale(-1, -1); +} + + +.oi[data-glyph=account-login]:before { content:'\e000'; } + +.oi[data-glyph=account-logout]:before { content:'\e001'; } + +.oi[data-glyph=action-redo]:before { content:'\e002'; } + +.oi[data-glyph=action-undo]:before { content:'\e003'; } + +.oi[data-glyph=align-center]:before { content:'\e004'; } + +.oi[data-glyph=align-left]:before { content:'\e005'; } + +.oi[data-glyph=align-right]:before { content:'\e006'; } + +.oi[data-glyph=aperture]:before { content:'\e007'; } + +.oi[data-glyph=arrow-bottom]:before { content:'\e008'; } + +.oi[data-glyph=arrow-circle-bottom]:before { content:'\e009'; } + +.oi[data-glyph=arrow-circle-left]:before { content:'\e00a'; } + +.oi[data-glyph=arrow-circle-right]:before { content:'\e00b'; } + +.oi[data-glyph=arrow-circle-top]:before { content:'\e00c'; } + +.oi[data-glyph=arrow-left]:before { content:'\e00d'; } + +.oi[data-glyph=arrow-right]:before { content:'\e00e'; } + +.oi[data-glyph=arrow-thick-bottom]:before { content:'\e00f'; } + +.oi[data-glyph=arrow-thick-left]:before { content:'\e010'; } + +.oi[data-glyph=arrow-thick-right]:before { content:'\e011'; } + +.oi[data-glyph=arrow-thick-top]:before { content:'\e012'; } + +.oi[data-glyph=arrow-top]:before { content:'\e013'; } + +.oi[data-glyph=audio-spectrum]:before { content:'\e014'; } + +.oi[data-glyph=audio]:before { content:'\e015'; } + +.oi[data-glyph=badge]:before { content:'\e016'; } + +.oi[data-glyph=ban]:before { content:'\e017'; } + +.oi[data-glyph=bar-chart]:before { content:'\e018'; } + +.oi[data-glyph=basket]:before { content:'\e019'; } + +.oi[data-glyph=battery-empty]:before { content:'\e01a'; } + +.oi[data-glyph=battery-full]:before { content:'\e01b'; } + +.oi[data-glyph=beaker]:before { content:'\e01c'; } + +.oi[data-glyph=bell]:before { content:'\e01d'; } + +.oi[data-glyph=bluetooth]:before { content:'\e01e'; } + +.oi[data-glyph=bold]:before { content:'\e01f'; } + +.oi[data-glyph=bolt]:before { content:'\e020'; } + +.oi[data-glyph=book]:before { content:'\e021'; } + +.oi[data-glyph=bookmark]:before { content:'\e022'; } + +.oi[data-glyph=box]:before { content:'\e023'; } + +.oi[data-glyph=briefcase]:before { content:'\e024'; } + +.oi[data-glyph=british-pound]:before { content:'\e025'; } + +.oi[data-glyph=browser]:before { content:'\e026'; } + +.oi[data-glyph=brush]:before { content:'\e027'; } + +.oi[data-glyph=bug]:before { content:'\e028'; } + +.oi[data-glyph=bullhorn]:before { content:'\e029'; } + +.oi[data-glyph=calculator]:before { content:'\e02a'; } + +.oi[data-glyph=calendar]:before { content:'\e02b'; } + +.oi[data-glyph=camera-slr]:before { content:'\e02c'; } + +.oi[data-glyph=caret-bottom]:before { content:'\e02d'; } + +.oi[data-glyph=caret-left]:before { content:'\e02e'; } + +.oi[data-glyph=caret-right]:before { content:'\e02f'; } + +.oi[data-glyph=caret-top]:before { content:'\e030'; } + +.oi[data-glyph=cart]:before { content:'\e031'; } + +.oi[data-glyph=chat]:before { content:'\e032'; } + +.oi[data-glyph=check]:before { content:'\e033'; } + +.oi[data-glyph=chevron-bottom]:before { content:'\e034'; } + +.oi[data-glyph=chevron-left]:before { content:'\e035'; } + +.oi[data-glyph=chevron-right]:before { content:'\e036'; } + +.oi[data-glyph=chevron-top]:before { content:'\e037'; } + +.oi[data-glyph=circle-check]:before { content:'\e038'; } + +.oi[data-glyph=circle-x]:before { content:'\e039'; } + +.oi[data-glyph=clipboard]:before { content:'\e03a'; } + +.oi[data-glyph=clock]:before { content:'\e03b'; } + +.oi[data-glyph=cloud-download]:before { content:'\e03c'; } + +.oi[data-glyph=cloud-upload]:before { content:'\e03d'; } + +.oi[data-glyph=cloud]:before { content:'\e03e'; } + +.oi[data-glyph=cloudy]:before { content:'\e03f'; } + +.oi[data-glyph=code]:before { content:'\e040'; } + +.oi[data-glyph=cog]:before { content:'\e041'; } + +.oi[data-glyph=collapse-down]:before { content:'\e042'; } + +.oi[data-glyph=collapse-left]:before { content:'\e043'; } + +.oi[data-glyph=collapse-right]:before { content:'\e044'; } + +.oi[data-glyph=collapse-up]:before { content:'\e045'; } + +.oi[data-glyph=command]:before { content:'\e046'; } + +.oi[data-glyph=comment-square]:before { content:'\e047'; } + +.oi[data-glyph=compass]:before { content:'\e048'; } + +.oi[data-glyph=contrast]:before { content:'\e049'; } + +.oi[data-glyph=copywriting]:before { content:'\e04a'; } + +.oi[data-glyph=credit-card]:before { content:'\e04b'; } + +.oi[data-glyph=crop]:before { content:'\e04c'; } + +.oi[data-glyph=dashboard]:before { content:'\e04d'; } + +.oi[data-glyph=data-transfer-download]:before { content:'\e04e'; } + +.oi[data-glyph=data-transfer-upload]:before { content:'\e04f'; } + +.oi[data-glyph=delete]:before { content:'\e050'; } + +.oi[data-glyph=dial]:before { content:'\e051'; } + +.oi[data-glyph=document]:before { content:'\e052'; } + +.oi[data-glyph=dollar]:before { content:'\e053'; } + +.oi[data-glyph=double-quote-sans-left]:before { content:'\e054'; } + +.oi[data-glyph=double-quote-sans-right]:before { content:'\e055'; } + +.oi[data-glyph=double-quote-serif-left]:before { content:'\e056'; } + +.oi[data-glyph=double-quote-serif-right]:before { content:'\e057'; } + +.oi[data-glyph=droplet]:before { content:'\e058'; } + +.oi[data-glyph=eject]:before { content:'\e059'; } + +.oi[data-glyph=elevator]:before { content:'\e05a'; } + +.oi[data-glyph=ellipses]:before { content:'\e05b'; } + +.oi[data-glyph=envelope-closed]:before { content:'\e05c'; } + +.oi[data-glyph=envelope-open]:before { content:'\e05d'; } + +.oi[data-glyph=euro]:before { content:'\e05e'; } + +.oi[data-glyph=excerpt]:before { content:'\e05f'; } + +.oi[data-glyph=expand-down]:before { content:'\e060'; } + +.oi[data-glyph=expand-left]:before { content:'\e061'; } + +.oi[data-glyph=expand-right]:before { content:'\e062'; } + +.oi[data-glyph=expand-up]:before { content:'\e063'; } + +.oi[data-glyph=external-link]:before { content:'\e064'; } + +.oi[data-glyph=eye]:before { content:'\e065'; } + +.oi[data-glyph=eyedropper]:before { content:'\e066'; } + +.oi[data-glyph=file]:before { content:'\e067'; } + +.oi[data-glyph=fire]:before { content:'\e068'; } + +.oi[data-glyph=flag]:before { content:'\e069'; } + +.oi[data-glyph=flash]:before { content:'\e06a'; } + +.oi[data-glyph=folder]:before { content:'\e06b'; } + +.oi[data-glyph=fork]:before { content:'\e06c'; } + +.oi[data-glyph=fullscreen-enter]:before { content:'\e06d'; } + +.oi[data-glyph=fullscreen-exit]:before { content:'\e06e'; } + +.oi[data-glyph=globe]:before { content:'\e06f'; } + +.oi[data-glyph=graph]:before { content:'\e070'; } + +.oi[data-glyph=grid-four-up]:before { content:'\e071'; } + +.oi[data-glyph=grid-three-up]:before { content:'\e072'; } + +.oi[data-glyph=grid-two-up]:before { content:'\e073'; } + +.oi[data-glyph=hard-drive]:before { content:'\e074'; } + +.oi[data-glyph=header]:before { content:'\e075'; } + +.oi[data-glyph=headphones]:before { content:'\e076'; } + +.oi[data-glyph=heart]:before { content:'\e077'; } + +.oi[data-glyph=home]:before { content:'\e078'; } + +.oi[data-glyph=image]:before { content:'\e079'; } + +.oi[data-glyph=inbox]:before { content:'\e07a'; } + +.oi[data-glyph=infinity]:before { content:'\e07b'; } + +.oi[data-glyph=info]:before { content:'\e07c'; } + +.oi[data-glyph=italic]:before { content:'\e07d'; } + +.oi[data-glyph=justify-center]:before { content:'\e07e'; } + +.oi[data-glyph=justify-left]:before { content:'\e07f'; } + +.oi[data-glyph=justify-right]:before { content:'\e080'; } + +.oi[data-glyph=key]:before { content:'\e081'; } + +.oi[data-glyph=laptop]:before { content:'\e082'; } + +.oi[data-glyph=layers]:before { content:'\e083'; } + +.oi[data-glyph=lightbulb]:before { content:'\e084'; } + +.oi[data-glyph=link-broken]:before { content:'\e085'; } + +.oi[data-glyph=link-intact]:before { content:'\e086'; } + +.oi[data-glyph=list-rich]:before { content:'\e087'; } + +.oi[data-glyph=list]:before { content:'\e088'; } + +.oi[data-glyph=location]:before { content:'\e089'; } + +.oi[data-glyph=lock-locked]:before { content:'\e08a'; } + +.oi[data-glyph=lock-unlocked]:before { content:'\e08b'; } + +.oi[data-glyph=loop-circular]:before { content:'\e08c'; } + +.oi[data-glyph=loop-square]:before { content:'\e08d'; } + +.oi[data-glyph=loop]:before { content:'\e08e'; } + +.oi[data-glyph=magnifying-glass]:before { content:'\e08f'; } + +.oi[data-glyph=map-marker]:before { content:'\e090'; } + +.oi[data-glyph=map]:before { content:'\e091'; } + +.oi[data-glyph=media-pause]:before { content:'\e092'; } + +.oi[data-glyph=media-play]:before { content:'\e093'; } + +.oi[data-glyph=media-record]:before { content:'\e094'; } + +.oi[data-glyph=media-skip-backward]:before { content:'\e095'; } + +.oi[data-glyph=media-skip-forward]:before { content:'\e096'; } + +.oi[data-glyph=media-step-backward]:before { content:'\e097'; } + +.oi[data-glyph=media-step-forward]:before { content:'\e098'; } + +.oi[data-glyph=media-stop]:before { content:'\e099'; } + +.oi[data-glyph=medical-cross]:before { content:'\e09a'; } + +.oi[data-glyph=menu]:before { content:'\e09b'; } + +.oi[data-glyph=microphone]:before { content:'\e09c'; } + +.oi[data-glyph=minus]:before { content:'\e09d'; } + +.oi[data-glyph=monitor]:before { content:'\e09e'; } + +.oi[data-glyph=moon]:before { content:'\e09f'; } + +.oi[data-glyph=move]:before { content:'\e0a0'; } + +.oi[data-glyph=musical-note]:before { content:'\e0a1'; } + +.oi[data-glyph=paperclip]:before { content:'\e0a2'; } + +.oi[data-glyph=pencil]:before { content:'\e0a3'; } + +.oi[data-glyph=people]:before { content:'\e0a4'; } + +.oi[data-glyph=person]:before { content:'\e0a5'; } + +.oi[data-glyph=phone]:before { content:'\e0a6'; } + +.oi[data-glyph=pie-chart]:before { content:'\e0a7'; } + +.oi[data-glyph=pin]:before { content:'\e0a8'; } + +.oi[data-glyph=play-circle]:before { content:'\e0a9'; } + +.oi[data-glyph=plus]:before { content:'\e0aa'; } + +.oi[data-glyph=power-standby]:before { content:'\e0ab'; } + +.oi[data-glyph=print]:before { content:'\e0ac'; } + +.oi[data-glyph=project]:before { content:'\e0ad'; } + +.oi[data-glyph=pulse]:before { content:'\e0ae'; } + +.oi[data-glyph=puzzle-piece]:before { content:'\e0af'; } + +.oi[data-glyph=question-mark]:before { content:'\e0b0'; } + +.oi[data-glyph=rain]:before { content:'\e0b1'; } + +.oi[data-glyph=random]:before { content:'\e0b2'; } + +.oi[data-glyph=reload]:before { content:'\e0b3'; } + +.oi[data-glyph=resize-both]:before { content:'\e0b4'; } + +.oi[data-glyph=resize-height]:before { content:'\e0b5'; } + +.oi[data-glyph=resize-width]:before { content:'\e0b6'; } + +.oi[data-glyph=rss-alt]:before { content:'\e0b7'; } + +.oi[data-glyph=rss]:before { content:'\e0b8'; } + +.oi[data-glyph=script]:before { content:'\e0b9'; } + +.oi[data-glyph=share-boxed]:before { content:'\e0ba'; } + +.oi[data-glyph=share]:before { content:'\e0bb'; } + +.oi[data-glyph=shield]:before { content:'\e0bc'; } + +.oi[data-glyph=signal]:before { content:'\e0bd'; } + +.oi[data-glyph=signpost]:before { content:'\e0be'; } + +.oi[data-glyph=sort-ascending]:before { content:'\e0bf'; } + +.oi[data-glyph=sort-descending]:before { content:'\e0c0'; } + +.oi[data-glyph=spreadsheet]:before { content:'\e0c1'; } + +.oi[data-glyph=star]:before { content:'\e0c2'; } + +.oi[data-glyph=sun]:before { content:'\e0c3'; } + +.oi[data-glyph=tablet]:before { content:'\e0c4'; } + +.oi[data-glyph=tag]:before { content:'\e0c5'; } + +.oi[data-glyph=tags]:before { content:'\e0c6'; } + +.oi[data-glyph=target]:before { content:'\e0c7'; } + +.oi[data-glyph=task]:before { content:'\e0c8'; } + +.oi[data-glyph=terminal]:before { content:'\e0c9'; } + +.oi[data-glyph=text]:before { content:'\e0ca'; } + +.oi[data-glyph=thumb-down]:before { content:'\e0cb'; } + +.oi[data-glyph=thumb-up]:before { content:'\e0cc'; } + +.oi[data-glyph=timer]:before { content:'\e0cd'; } + +.oi[data-glyph=transfer]:before { content:'\e0ce'; } + +.oi[data-glyph=trash]:before { content:'\e0cf'; } + +.oi[data-glyph=underline]:before { content:'\e0d0'; } + +.oi[data-glyph=vertical-align-bottom]:before { content:'\e0d1'; } + +.oi[data-glyph=vertical-align-center]:before { content:'\e0d2'; } + +.oi[data-glyph=vertical-align-top]:before { content:'\e0d3'; } + +.oi[data-glyph=video]:before { content:'\e0d4'; } + +.oi[data-glyph=volume-high]:before { content:'\e0d5'; } + +.oi[data-glyph=volume-low]:before { content:'\e0d6'; } + +.oi[data-glyph=volume-off]:before { content:'\e0d7'; } + +.oi[data-glyph=warning]:before { content:'\e0d8'; } + +.oi[data-glyph=wifi]:before { content:'\e0d9'; } + +.oi[data-glyph=wrench]:before { content:'\e0da'; } + +.oi[data-glyph=x]:before { content:'\e0db'; } + +.oi[data-glyph=yen]:before { content:'\e0dc'; } + +.oi[data-glyph=zoom-in]:before { content:'\e0dd'; } + +.oi[data-glyph=zoom-out]:before { content:'\e0de'; } diff --git a/the8eam/open-iconic/font/css/open-iconic.less b/the8eam/open-iconic/font/css/open-iconic.less new file mode 100644 index 0000000..d505e9f --- /dev/null +++ b/the8eam/open-iconic/font/css/open-iconic.less @@ -0,0 +1,962 @@ +@iconic-font-path: '../fonts/'; + +@font-face { + font-family: 'Icons'; + src: url('@{iconic-font-path}open-iconic.eot'); + src: url('@{iconic-font-path}open-iconic.eot?#iconic-sm') format('embedded-opentype'), url('@{iconic-font-path}open-iconic.woff') format('woff'), url('@{iconic-font-path}open-iconic.ttf') format('truetype'), url('@{iconic-font-path}open-iconic.otf') format('opentype'), url('@{iconic-font-path}open-iconic.svg#iconic-sm') format('svg'); + font-weight: normal; + font-style: normal; +} + +.oi[data-glyph].oi-text-replace { + font-size: 0; + line-height: 0; +} + +.oi[data-glyph].oi-text-replace:before { + width: 1em; + text-align: center; +} + +.oi[data-glyph] { + &:before { + position: relative; + top: 1px; + font-family: 'Icons'; + display: inline-block; + speak: none; + line-height: 1; + vertical-align: baseline; + font-weight: normal; + font-style: normal; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; + } + + &:empty:before { + width: 1em; + text-align: center; + box-sizing: content-box; + } + + &.oi-align-left:before { + text-align: left; + } + &.oi-align-right:before { + text-align: right; + } + &.oi-align-center:before { + text-align: center; + } + + &.oi-flip-horizontal:before { + -webkit-transform: scale(-1, 1); + -ms-transform: scale(-1, 1); + transform: scale(-1, 1); + } + + &.oi-flip-vertical:before { + -webkit-transform: scale(1, -1); + -ms-transform: scale(-1, 1); + transform: scale(1, -1); + } + + &.oi-flip-horizontal-vertical:before { + -webkit-transform: scale(-1, -1); + -ms-transform: scale(-1, 1); + transform: scale(-1, -1); + } +} + + +.oi[data-glyph=account-login]:before { + content: '\e000'; +} + +.oi[data-glyph=account-logout]:before { + content: '\e001'; +} + +.oi[data-glyph=action-redo]:before { + content: '\e002'; +} + +.oi[data-glyph=action-undo]:before { + content: '\e003'; +} + +.oi[data-glyph=align-center]:before { + content: '\e004'; +} + +.oi[data-glyph=align-left]:before { + content: '\e005'; +} + +.oi[data-glyph=align-right]:before { + content: '\e006'; +} + +.oi[data-glyph=aperture]:before { + content: '\e007'; +} + +.oi[data-glyph=arrow-bottom]:before { + content: '\e008'; +} + +.oi[data-glyph=arrow-circle-bottom]:before { + content: '\e009'; +} + +.oi[data-glyph=arrow-circle-left]:before { + content: '\e00a'; +} + +.oi[data-glyph=arrow-circle-right]:before { + content: '\e00b'; +} + +.oi[data-glyph=arrow-circle-top]:before { + content: '\e00c'; +} + +.oi[data-glyph=arrow-left]:before { + content: '\e00d'; +} + +.oi[data-glyph=arrow-right]:before { + content: '\e00e'; +} + +.oi[data-glyph=arrow-thick-bottom]:before { + content: '\e00f'; +} + +.oi[data-glyph=arrow-thick-left]:before { + content: '\e010'; +} + +.oi[data-glyph=arrow-thick-right]:before { + content: '\e011'; +} + +.oi[data-glyph=arrow-thick-top]:before { + content: '\e012'; +} + +.oi[data-glyph=arrow-top]:before { + content: '\e013'; +} + +.oi[data-glyph=audio-spectrum]:before { + content: '\e014'; +} + +.oi[data-glyph=audio]:before { + content: '\e015'; +} + +.oi[data-glyph=badge]:before { + content: '\e016'; +} + +.oi[data-glyph=ban]:before { + content: '\e017'; +} + +.oi[data-glyph=bar-chart]:before { + content: '\e018'; +} + +.oi[data-glyph=basket]:before { + content: '\e019'; +} + +.oi[data-glyph=battery-empty]:before { + content: '\e01a'; +} + +.oi[data-glyph=battery-full]:before { + content: '\e01b'; +} + +.oi[data-glyph=beaker]:before { + content: '\e01c'; +} + +.oi[data-glyph=bell]:before { + content: '\e01d'; +} + +.oi[data-glyph=bluetooth]:before { + content: '\e01e'; +} + +.oi[data-glyph=bold]:before { + content: '\e01f'; +} + +.oi[data-glyph=bolt]:before { + content: '\e020'; +} + +.oi[data-glyph=book]:before { + content: '\e021'; +} + +.oi[data-glyph=bookmark]:before { + content: '\e022'; +} + +.oi[data-glyph=box]:before { + content: '\e023'; +} + +.oi[data-glyph=briefcase]:before { + content: '\e024'; +} + +.oi[data-glyph=british-pound]:before { + content: '\e025'; +} + +.oi[data-glyph=browser]:before { + content: '\e026'; +} + +.oi[data-glyph=brush]:before { + content: '\e027'; +} + +.oi[data-glyph=bug]:before { + content: '\e028'; +} + +.oi[data-glyph=bullhorn]:before { + content: '\e029'; +} + +.oi[data-glyph=calculator]:before { + content: '\e02a'; +} + +.oi[data-glyph=calendar]:before { + content: '\e02b'; +} + +.oi[data-glyph=camera-slr]:before { + content: '\e02c'; +} + +.oi[data-glyph=caret-bottom]:before { + content: '\e02d'; +} + +.oi[data-glyph=caret-left]:before { + content: '\e02e'; +} + +.oi[data-glyph=caret-right]:before { + content: '\e02f'; +} + +.oi[data-glyph=caret-top]:before { + content: '\e030'; +} + +.oi[data-glyph=cart]:before { + content: '\e031'; +} + +.oi[data-glyph=chat]:before { + content: '\e032'; +} + +.oi[data-glyph=check]:before { + content: '\e033'; +} + +.oi[data-glyph=chevron-bottom]:before { + content: '\e034'; +} + +.oi[data-glyph=chevron-left]:before { + content: '\e035'; +} + +.oi[data-glyph=chevron-right]:before { + content: '\e036'; +} + +.oi[data-glyph=chevron-top]:before { + content: '\e037'; +} + +.oi[data-glyph=circle-check]:before { + content: '\e038'; +} + +.oi[data-glyph=circle-x]:before { + content: '\e039'; +} + +.oi[data-glyph=clipboard]:before { + content: '\e03a'; +} + +.oi[data-glyph=clock]:before { + content: '\e03b'; +} + +.oi[data-glyph=cloud-download]:before { + content: '\e03c'; +} + +.oi[data-glyph=cloud-upload]:before { + content: '\e03d'; +} + +.oi[data-glyph=cloud]:before { + content: '\e03e'; +} + +.oi[data-glyph=cloudy]:before { + content: '\e03f'; +} + +.oi[data-glyph=code]:before { + content: '\e040'; +} + +.oi[data-glyph=cog]:before { + content: '\e041'; +} + +.oi[data-glyph=collapse-down]:before { + content: '\e042'; +} + +.oi[data-glyph=collapse-left]:before { + content: '\e043'; +} + +.oi[data-glyph=collapse-right]:before { + content: '\e044'; +} + +.oi[data-glyph=collapse-up]:before { + content: '\e045'; +} + +.oi[data-glyph=command]:before { + content: '\e046'; +} + +.oi[data-glyph=comment-square]:before { + content: '\e047'; +} + +.oi[data-glyph=compass]:before { + content: '\e048'; +} + +.oi[data-glyph=contrast]:before { + content: '\e049'; +} + +.oi[data-glyph=copywriting]:before { + content: '\e04a'; +} + +.oi[data-glyph=credit-card]:before { + content: '\e04b'; +} + +.oi[data-glyph=crop]:before { + content: '\e04c'; +} + +.oi[data-glyph=dashboard]:before { + content: '\e04d'; +} + +.oi[data-glyph=data-transfer-download]:before { + content: '\e04e'; +} + +.oi[data-glyph=data-transfer-upload]:before { + content: '\e04f'; +} + +.oi[data-glyph=delete]:before { + content: '\e050'; +} + +.oi[data-glyph=dial]:before { + content: '\e051'; +} + +.oi[data-glyph=document]:before { + content: '\e052'; +} + +.oi[data-glyph=dollar]:before { + content: '\e053'; +} + +.oi[data-glyph=double-quote-sans-left]:before { + content: '\e054'; +} + +.oi[data-glyph=double-quote-sans-right]:before { + content: '\e055'; +} + +.oi[data-glyph=double-quote-serif-left]:before { + content: '\e056'; +} + +.oi[data-glyph=double-quote-serif-right]:before { + content: '\e057'; +} + +.oi[data-glyph=droplet]:before { + content: '\e058'; +} + +.oi[data-glyph=eject]:before { + content: '\e059'; +} + +.oi[data-glyph=elevator]:before { + content: '\e05a'; +} + +.oi[data-glyph=ellipses]:before { + content: '\e05b'; +} + +.oi[data-glyph=envelope-closed]:before { + content: '\e05c'; +} + +.oi[data-glyph=envelope-open]:before { + content: '\e05d'; +} + +.oi[data-glyph=euro]:before { + content: '\e05e'; +} + +.oi[data-glyph=excerpt]:before { + content: '\e05f'; +} + +.oi[data-glyph=expand-down]:before { + content: '\e060'; +} + +.oi[data-glyph=expand-left]:before { + content: '\e061'; +} + +.oi[data-glyph=expand-right]:before { + content: '\e062'; +} + +.oi[data-glyph=expand-up]:before { + content: '\e063'; +} + +.oi[data-glyph=external-link]:before { + content: '\e064'; +} + +.oi[data-glyph=eye]:before { + content: '\e065'; +} + +.oi[data-glyph=eyedropper]:before { + content: '\e066'; +} + +.oi[data-glyph=file]:before { + content: '\e067'; +} + +.oi[data-glyph=fire]:before { + content: '\e068'; +} + +.oi[data-glyph=flag]:before { + content: '\e069'; +} + +.oi[data-glyph=flash]:before { + content: '\e06a'; +} + +.oi[data-glyph=folder]:before { + content: '\e06b'; +} + +.oi[data-glyph=fork]:before { + content: '\e06c'; +} + +.oi[data-glyph=fullscreen-enter]:before { + content: '\e06d'; +} + +.oi[data-glyph=fullscreen-exit]:before { + content: '\e06e'; +} + +.oi[data-glyph=globe]:before { + content: '\e06f'; +} + +.oi[data-glyph=graph]:before { + content: '\e070'; +} + +.oi[data-glyph=grid-four-up]:before { + content: '\e071'; +} + +.oi[data-glyph=grid-three-up]:before { + content: '\e072'; +} + +.oi[data-glyph=grid-two-up]:before { + content: '\e073'; +} + +.oi[data-glyph=hard-drive]:before { + content: '\e074'; +} + +.oi[data-glyph=header]:before { + content: '\e075'; +} + +.oi[data-glyph=headphones]:before { + content: '\e076'; +} + +.oi[data-glyph=heart]:before { + content: '\e077'; +} + +.oi[data-glyph=home]:before { + content: '\e078'; +} + +.oi[data-glyph=image]:before { + content: '\e079'; +} + +.oi[data-glyph=inbox]:before { + content: '\e07a'; +} + +.oi[data-glyph=infinity]:before { + content: '\e07b'; +} + +.oi[data-glyph=info]:before { + content: '\e07c'; +} + +.oi[data-glyph=italic]:before { + content: '\e07d'; +} + +.oi[data-glyph=justify-center]:before { + content: '\e07e'; +} + +.oi[data-glyph=justify-left]:before { + content: '\e07f'; +} + +.oi[data-glyph=justify-right]:before { + content: '\e080'; +} + +.oi[data-glyph=key]:before { + content: '\e081'; +} + +.oi[data-glyph=laptop]:before { + content: '\e082'; +} + +.oi[data-glyph=layers]:before { + content: '\e083'; +} + +.oi[data-glyph=lightbulb]:before { + content: '\e084'; +} + +.oi[data-glyph=link-broken]:before { + content: '\e085'; +} + +.oi[data-glyph=link-intact]:before { + content: '\e086'; +} + +.oi[data-glyph=list-rich]:before { + content: '\e087'; +} + +.oi[data-glyph=list]:before { + content: '\e088'; +} + +.oi[data-glyph=location]:before { + content: '\e089'; +} + +.oi[data-glyph=lock-locked]:before { + content: '\e08a'; +} + +.oi[data-glyph=lock-unlocked]:before { + content: '\e08b'; +} + +.oi[data-glyph=loop-circular]:before { + content: '\e08c'; +} + +.oi[data-glyph=loop-square]:before { + content: '\e08d'; +} + +.oi[data-glyph=loop]:before { + content: '\e08e'; +} + +.oi[data-glyph=magnifying-glass]:before { + content: '\e08f'; +} + +.oi[data-glyph=map-marker]:before { + content: '\e090'; +} + +.oi[data-glyph=map]:before { + content: '\e091'; +} + +.oi[data-glyph=media-pause]:before { + content: '\e092'; +} + +.oi[data-glyph=media-play]:before { + content: '\e093'; +} + +.oi[data-glyph=media-record]:before { + content: '\e094'; +} + +.oi[data-glyph=media-skip-backward]:before { + content: '\e095'; +} + +.oi[data-glyph=media-skip-forward]:before { + content: '\e096'; +} + +.oi[data-glyph=media-step-backward]:before { + content: '\e097'; +} + +.oi[data-glyph=media-step-forward]:before { + content: '\e098'; +} + +.oi[data-glyph=media-stop]:before { + content: '\e099'; +} + +.oi[data-glyph=medical-cross]:before { + content: '\e09a'; +} + +.oi[data-glyph=menu]:before { + content: '\e09b'; +} + +.oi[data-glyph=microphone]:before { + content: '\e09c'; +} + +.oi[data-glyph=minus]:before { + content: '\e09d'; +} + +.oi[data-glyph=monitor]:before { + content: '\e09e'; +} + +.oi[data-glyph=moon]:before { + content: '\e09f'; +} + +.oi[data-glyph=move]:before { + content: '\e0a0'; +} + +.oi[data-glyph=musical-note]:before { + content: '\e0a1'; +} + +.oi[data-glyph=paperclip]:before { + content: '\e0a2'; +} + +.oi[data-glyph=pencil]:before { + content: '\e0a3'; +} + +.oi[data-glyph=people]:before { + content: '\e0a4'; +} + +.oi[data-glyph=person]:before { + content: '\e0a5'; +} + +.oi[data-glyph=phone]:before { + content: '\e0a6'; +} + +.oi[data-glyph=pie-chart]:before { + content: '\e0a7'; +} + +.oi[data-glyph=pin]:before { + content: '\e0a8'; +} + +.oi[data-glyph=play-circle]:before { + content: '\e0a9'; +} + +.oi[data-glyph=plus]:before { + content: '\e0aa'; +} + +.oi[data-glyph=power-standby]:before { + content: '\e0ab'; +} + +.oi[data-glyph=print]:before { + content: '\e0ac'; +} + +.oi[data-glyph=project]:before { + content: '\e0ad'; +} + +.oi[data-glyph=pulse]:before { + content: '\e0ae'; +} + +.oi[data-glyph=puzzle-piece]:before { + content: '\e0af'; +} + +.oi[data-glyph=question-mark]:before { + content: '\e0b0'; +} + +.oi[data-glyph=rain]:before { + content: '\e0b1'; +} + +.oi[data-glyph=random]:before { + content: '\e0b2'; +} + +.oi[data-glyph=reload]:before { + content: '\e0b3'; +} + +.oi[data-glyph=resize-both]:before { + content: '\e0b4'; +} + +.oi[data-glyph=resize-height]:before { + content: '\e0b5'; +} + +.oi[data-glyph=resize-width]:before { + content: '\e0b6'; +} + +.oi[data-glyph=rss-alt]:before { + content: '\e0b7'; +} + +.oi[data-glyph=rss]:before { + content: '\e0b8'; +} + +.oi[data-glyph=script]:before { + content: '\e0b9'; +} + +.oi[data-glyph=share-boxed]:before { + content: '\e0ba'; +} + +.oi[data-glyph=share]:before { + content: '\e0bb'; +} + +.oi[data-glyph=shield]:before { + content: '\e0bc'; +} + +.oi[data-glyph=signal]:before { + content: '\e0bd'; +} + +.oi[data-glyph=signpost]:before { + content: '\e0be'; +} + +.oi[data-glyph=sort-ascending]:before { + content: '\e0bf'; +} + +.oi[data-glyph=sort-descending]:before { + content: '\e0c0'; +} + +.oi[data-glyph=spreadsheet]:before { + content: '\e0c1'; +} + +.oi[data-glyph=star]:before { + content: '\e0c2'; +} + +.oi[data-glyph=sun]:before { + content: '\e0c3'; +} + +.oi[data-glyph=tablet]:before { + content: '\e0c4'; +} + +.oi[data-glyph=tag]:before { + content: '\e0c5'; +} + +.oi[data-glyph=tags]:before { + content: '\e0c6'; +} + +.oi[data-glyph=target]:before { + content: '\e0c7'; +} + +.oi[data-glyph=task]:before { + content: '\e0c8'; +} + +.oi[data-glyph=terminal]:before { + content: '\e0c9'; +} + +.oi[data-glyph=text]:before { + content: '\e0ca'; +} + +.oi[data-glyph=thumb-down]:before { + content: '\e0cb'; +} + +.oi[data-glyph=thumb-up]:before { + content: '\e0cc'; +} + +.oi[data-glyph=timer]:before { + content: '\e0cd'; +} + +.oi[data-glyph=transfer]:before { + content: '\e0ce'; +} + +.oi[data-glyph=trash]:before { + content: '\e0cf'; +} + +.oi[data-glyph=underline]:before { + content: '\e0d0'; +} + +.oi[data-glyph=vertical-align-bottom]:before { + content: '\e0d1'; +} + +.oi[data-glyph=vertical-align-center]:before { + content: '\e0d2'; +} + +.oi[data-glyph=vertical-align-top]:before { + content: '\e0d3'; +} + +.oi[data-glyph=video]:before { + content: '\e0d4'; +} + +.oi[data-glyph=volume-high]:before { + content: '\e0d5'; +} + +.oi[data-glyph=volume-low]:before { + content: '\e0d6'; +} + +.oi[data-glyph=volume-off]:before { + content: '\e0d7'; +} + +.oi[data-glyph=warning]:before { + content: '\e0d8'; +} + +.oi[data-glyph=wifi]:before { + content: '\e0d9'; +} + +.oi[data-glyph=wrench]:before { + content: '\e0da'; +} + +.oi[data-glyph=x]:before { + content: '\e0db'; +} + +.oi[data-glyph=yen]:before { + content: '\e0dc'; +} + +.oi[data-glyph=zoom-in]:before { + content: '\e0dd'; +} + +.oi[data-glyph=zoom-out]:before { + content: '\e0de'; +} diff --git a/the8eam/open-iconic/font/css/open-iconic.min.css b/the8eam/open-iconic/font/css/open-iconic.min.css new file mode 100644 index 0000000..1f6afb8 --- /dev/null +++ b/the8eam/open-iconic/font/css/open-iconic.min.css @@ -0,0 +1 @@ +@font-face{font-family:Icons;src:url(../fonts/open-iconic.eot);src:url(../fonts/open-iconic.eot?#iconic-sm) format('embedded-opentype'),url(../fonts/open-iconic.woff) format('woff'),url(../fonts/open-iconic.ttf) format('truetype'),url(../fonts/open-iconic.otf) format('opentype'),url(../fonts/open-iconic.svg#iconic-sm) format('svg');font-weight:400;font-style:normal}.oi[data-glyph].oi-text-replace{font-size:0;line-height:0}.oi[data-glyph].oi-text-replace:before{width:1em;text-align:center}.oi[data-glyph]:before{font-family:Icons;display:inline-block;speak:none;line-height:1;vertical-align:baseline;font-weight:400;font-style:normal;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.oi[data-glyph]:empty:before{width:1em;text-align:center;box-sizing:content-box}.oi[data-glyph].oi-align-left:before{text-align:left}.oi[data-glyph].oi-align-right:before{text-align:right}.oi[data-glyph].oi-align-center:before{text-align:center}.oi[data-glyph].oi-flip-horizontal:before{-webkit-transform:scale(-1,1);-ms-transform:scale(-1,1);transform:scale(-1,1)}.oi[data-glyph].oi-flip-vertical:before{-webkit-transform:scale(1,-1);-ms-transform:scale(-1,1);transform:scale(1,-1)}.oi[data-glyph].oi-flip-horizontal-vertical:before{-webkit-transform:scale(-1,-1);-ms-transform:scale(-1,1);transform:scale(-1,-1)}.oi[data-glyph=account-login]:before{content:'\e000'}.oi[data-glyph=account-logout]:before{content:'\e001'}.oi[data-glyph=action-redo]:before{content:'\e002'}.oi[data-glyph=action-undo]:before{content:'\e003'}.oi[data-glyph=align-center]:before{content:'\e004'}.oi[data-glyph=align-left]:before{content:'\e005'}.oi[data-glyph=align-right]:before{content:'\e006'}.oi[data-glyph=aperture]:before{content:'\e007'}.oi[data-glyph=arrow-bottom]:before{content:'\e008'}.oi[data-glyph=arrow-circle-bottom]:before{content:'\e009'}.oi[data-glyph=arrow-circle-left]:before{content:'\e00a'}.oi[data-glyph=arrow-circle-right]:before{content:'\e00b'}.oi[data-glyph=arrow-circle-top]:before{content:'\e00c'}.oi[data-glyph=arrow-left]:before{content:'\e00d'}.oi[data-glyph=arrow-right]:before{content:'\e00e'}.oi[data-glyph=arrow-thick-bottom]:before{content:'\e00f'}.oi[data-glyph=arrow-thick-left]:before{content:'\e010'}.oi[data-glyph=arrow-thick-right]:before{content:'\e011'}.oi[data-glyph=arrow-thick-top]:before{content:'\e012'}.oi[data-glyph=arrow-top]:before{content:'\e013'}.oi[data-glyph=audio-spectrum]:before{content:'\e014'}.oi[data-glyph=audio]:before{content:'\e015'}.oi[data-glyph=badge]:before{content:'\e016'}.oi[data-glyph=ban]:before{content:'\e017'}.oi[data-glyph=bar-chart]:before{content:'\e018'}.oi[data-glyph=basket]:before{content:'\e019'}.oi[data-glyph=battery-empty]:before{content:'\e01a'}.oi[data-glyph=battery-full]:before{content:'\e01b'}.oi[data-glyph=beaker]:before{content:'\e01c'}.oi[data-glyph=bell]:before{content:'\e01d'}.oi[data-glyph=bluetooth]:before{content:'\e01e'}.oi[data-glyph=bold]:before{content:'\e01f'}.oi[data-glyph=bolt]:before{content:'\e020'}.oi[data-glyph=book]:before{content:'\e021'}.oi[data-glyph=bookmark]:before{content:'\e022'}.oi[data-glyph=box]:before{content:'\e023'}.oi[data-glyph=briefcase]:before{content:'\e024'}.oi[data-glyph=british-pound]:before{content:'\e025'}.oi[data-glyph=browser]:before{content:'\e026'}.oi[data-glyph=brush]:before{content:'\e027'}.oi[data-glyph=bug]:before{content:'\e028'}.oi[data-glyph=bullhorn]:before{content:'\e029'}.oi[data-glyph=calculator]:before{content:'\e02a'}.oi[data-glyph=calendar]:before{content:'\e02b'}.oi[data-glyph=camera-slr]:before{content:'\e02c'}.oi[data-glyph=caret-bottom]:before{content:'\e02d'}.oi[data-glyph=caret-left]:before{content:'\e02e'}.oi[data-glyph=caret-right]:before{content:'\e02f'}.oi[data-glyph=caret-top]:before{content:'\e030'}.oi[data-glyph=cart]:before{content:'\e031'}.oi[data-glyph=chat]:before{content:'\e032'}.oi[data-glyph=check]:before{content:'\e033'}.oi[data-glyph=chevron-bottom]:before{content:'\e034'}.oi[data-glyph=chevron-left]:before{content:'\e035'}.oi[data-glyph=chevron-right]:before{content:'\e036'}.oi[data-glyph=chevron-top]:before{content:'\e037'}.oi[data-glyph=circle-check]:before{content:'\e038'}.oi[data-glyph=circle-x]:before{content:'\e039'}.oi[data-glyph=clipboard]:before{content:'\e03a'}.oi[data-glyph=clock]:before{content:'\e03b'}.oi[data-glyph=cloud-download]:before{content:'\e03c'}.oi[data-glyph=cloud-upload]:before{content:'\e03d'}.oi[data-glyph=cloud]:before{content:'\e03e'}.oi[data-glyph=cloudy]:before{content:'\e03f'}.oi[data-glyph=code]:before{content:'\e040'}.oi[data-glyph=cog]:before{content:'\e041'}.oi[data-glyph=collapse-down]:before{content:'\e042'}.oi[data-glyph=collapse-left]:before{content:'\e043'}.oi[data-glyph=collapse-right]:before{content:'\e044'}.oi[data-glyph=collapse-up]:before{content:'\e045'}.oi[data-glyph=command]:before{content:'\e046'}.oi[data-glyph=comment-square]:before{content:'\e047'}.oi[data-glyph=compass]:before{content:'\e048'}.oi[data-glyph=contrast]:before{content:'\e049'}.oi[data-glyph=copywriting]:before{content:'\e04a'}.oi[data-glyph=credit-card]:before{content:'\e04b'}.oi[data-glyph=crop]:before{content:'\e04c'}.oi[data-glyph=dashboard]:before{content:'\e04d'}.oi[data-glyph=data-transfer-download]:before{content:'\e04e'}.oi[data-glyph=data-transfer-upload]:before{content:'\e04f'}.oi[data-glyph=delete]:before{content:'\e050'}.oi[data-glyph=dial]:before{content:'\e051'}.oi[data-glyph=document]:before{content:'\e052'}.oi[data-glyph=dollar]:before{content:'\e053'}.oi[data-glyph=double-quote-sans-left]:before{content:'\e054'}.oi[data-glyph=double-quote-sans-right]:before{content:'\e055'}.oi[data-glyph=double-quote-serif-left]:before{content:'\e056'}.oi[data-glyph=double-quote-serif-right]:before{content:'\e057'}.oi[data-glyph=droplet]:before{content:'\e058'}.oi[data-glyph=eject]:before{content:'\e059'}.oi[data-glyph=elevator]:before{content:'\e05a'}.oi[data-glyph=ellipses]:before{content:'\e05b'}.oi[data-glyph=envelope-closed]:before{content:'\e05c'}.oi[data-glyph=envelope-open]:before{content:'\e05d'}.oi[data-glyph=euro]:before{content:'\e05e'}.oi[data-glyph=excerpt]:before{content:'\e05f'}.oi[data-glyph=expand-down]:before{content:'\e060'}.oi[data-glyph=expand-left]:before{content:'\e061'}.oi[data-glyph=expand-right]:before{content:'\e062'}.oi[data-glyph=expand-up]:before{content:'\e063'}.oi[data-glyph=external-link]:before{content:'\e064'}.oi[data-glyph=eye]:before{content:'\e065'}.oi[data-glyph=eyedropper]:before{content:'\e066'}.oi[data-glyph=file]:before{content:'\e067'}.oi[data-glyph=fire]:before{content:'\e068'}.oi[data-glyph=flag]:before{content:'\e069'}.oi[data-glyph=flash]:before{content:'\e06a'}.oi[data-glyph=folder]:before{content:'\e06b'}.oi[data-glyph=fork]:before{content:'\e06c'}.oi[data-glyph=fullscreen-enter]:before{content:'\e06d'}.oi[data-glyph=fullscreen-exit]:before{content:'\e06e'}.oi[data-glyph=globe]:before{content:'\e06f'}.oi[data-glyph=graph]:before{content:'\e070'}.oi[data-glyph=grid-four-up]:before{content:'\e071'}.oi[data-glyph=grid-three-up]:before{content:'\e072'}.oi[data-glyph=grid-two-up]:before{content:'\e073'}.oi[data-glyph=hard-drive]:before{content:'\e074'}.oi[data-glyph=header]:before{content:'\e075'}.oi[data-glyph=headphones]:before{content:'\e076'}.oi[data-glyph=heart]:before{content:'\e077'}.oi[data-glyph=home]:before{content:'\e078'}.oi[data-glyph=image]:before{content:'\e079'}.oi[data-glyph=inbox]:before{content:'\e07a'}.oi[data-glyph=infinity]:before{content:'\e07b'}.oi[data-glyph=info]:before{content:'\e07c'}.oi[data-glyph=italic]:before{content:'\e07d'}.oi[data-glyph=justify-center]:before{content:'\e07e'}.oi[data-glyph=justify-left]:before{content:'\e07f'}.oi[data-glyph=justify-right]:before{content:'\e080'}.oi[data-glyph=key]:before{content:'\e081'}.oi[data-glyph=laptop]:before{content:'\e082'}.oi[data-glyph=layers]:before{content:'\e083'}.oi[data-glyph=lightbulb]:before{content:'\e084'}.oi[data-glyph=link-broken]:before{content:'\e085'}.oi[data-glyph=link-intact]:before{content:'\e086'}.oi[data-glyph=list-rich]:before{content:'\e087'}.oi[data-glyph=list]:before{content:'\e088'}.oi[data-glyph=location]:before{content:'\e089'}.oi[data-glyph=lock-locked]:before{content:'\e08a'}.oi[data-glyph=lock-unlocked]:before{content:'\e08b'}.oi[data-glyph=loop-circular]:before{content:'\e08c'}.oi[data-glyph=loop-square]:before{content:'\e08d'}.oi[data-glyph=loop]:before{content:'\e08e'}.oi[data-glyph=magnifying-glass]:before{content:'\e08f'}.oi[data-glyph=map-marker]:before{content:'\e090'}.oi[data-glyph=map]:before{content:'\e091'}.oi[data-glyph=media-pause]:before{content:'\e092'}.oi[data-glyph=media-play]:before{content:'\e093'}.oi[data-glyph=media-record]:before{content:'\e094'}.oi[data-glyph=media-skip-backward]:before{content:'\e095'}.oi[data-glyph=media-skip-forward]:before{content:'\e096'}.oi[data-glyph=media-step-backward]:before{content:'\e097'}.oi[data-glyph=media-step-forward]:before{content:'\e098'}.oi[data-glyph=media-stop]:before{content:'\e099'}.oi[data-glyph=medical-cross]:before{content:'\e09a'}.oi[data-glyph=menu]:before{content:'\e09b'}.oi[data-glyph=microphone]:before{content:'\e09c'}.oi[data-glyph=minus]:before{content:'\e09d'}.oi[data-glyph=monitor]:before{content:'\e09e'}.oi[data-glyph=moon]:before{content:'\e09f'}.oi[data-glyph=move]:before{content:'\e0a0'}.oi[data-glyph=musical-note]:before{content:'\e0a1'}.oi[data-glyph=paperclip]:before{content:'\e0a2'}.oi[data-glyph=pencil]:before{content:'\e0a3'}.oi[data-glyph=people]:before{content:'\e0a4'}.oi[data-glyph=person]:before{content:'\e0a5'}.oi[data-glyph=phone]:before{content:'\e0a6'}.oi[data-glyph=pie-chart]:before{content:'\e0a7'}.oi[data-glyph=pin]:before{content:'\e0a8'}.oi[data-glyph=play-circle]:before{content:'\e0a9'}.oi[data-glyph=plus]:before{content:'\e0aa'}.oi[data-glyph=power-standby]:before{content:'\e0ab'}.oi[data-glyph=print]:before{content:'\e0ac'}.oi[data-glyph=project]:before{content:'\e0ad'}.oi[data-glyph=pulse]:before{content:'\e0ae'}.oi[data-glyph=puzzle-piece]:before{content:'\e0af'}.oi[data-glyph=question-mark]:before{content:'\e0b0'}.oi[data-glyph=rain]:before{content:'\e0b1'}.oi[data-glyph=random]:before{content:'\e0b2'}.oi[data-glyph=reload]:before{content:'\e0b3'}.oi[data-glyph=resize-both]:before{content:'\e0b4'}.oi[data-glyph=resize-height]:before{content:'\e0b5'}.oi[data-glyph=resize-width]:before{content:'\e0b6'}.oi[data-glyph=rss-alt]:before{content:'\e0b7'}.oi[data-glyph=rss]:before{content:'\e0b8'}.oi[data-glyph=script]:before{content:'\e0b9'}.oi[data-glyph=share-boxed]:before{content:'\e0ba'}.oi[data-glyph=share]:before{content:'\e0bb'}.oi[data-glyph=shield]:before{content:'\e0bc'}.oi[data-glyph=signal]:before{content:'\e0bd'}.oi[data-glyph=signpost]:before{content:'\e0be'}.oi[data-glyph=sort-ascending]:before{content:'\e0bf'}.oi[data-glyph=sort-descending]:before{content:'\e0c0'}.oi[data-glyph=spreadsheet]:before{content:'\e0c1'}.oi[data-glyph=star]:before{content:'\e0c2'}.oi[data-glyph=sun]:before{content:'\e0c3'}.oi[data-glyph=tablet]:before{content:'\e0c4'}.oi[data-glyph=tag]:before{content:'\e0c5'}.oi[data-glyph=tags]:before{content:'\e0c6'}.oi[data-glyph=target]:before{content:'\e0c7'}.oi[data-glyph=task]:before{content:'\e0c8'}.oi[data-glyph=terminal]:before{content:'\e0c9'}.oi[data-glyph=text]:before{content:'\e0ca'}.oi[data-glyph=thumb-down]:before{content:'\e0cb'}.oi[data-glyph=thumb-up]:before{content:'\e0cc'}.oi[data-glyph=timer]:before{content:'\e0cd'}.oi[data-glyph=transfer]:before{content:'\e0ce'}.oi[data-glyph=trash]:before{content:'\e0cf'}.oi[data-glyph=underline]:before{content:'\e0d0'}.oi[data-glyph=vertical-align-bottom]:before{content:'\e0d1'}.oi[data-glyph=vertical-align-center]:before{content:'\e0d2'}.oi[data-glyph=vertical-align-top]:before{content:'\e0d3'}.oi[data-glyph=video]:before{content:'\e0d4'}.oi[data-glyph=volume-high]:before{content:'\e0d5'}.oi[data-glyph=volume-low]:before{content:'\e0d6'}.oi[data-glyph=volume-off]:before{content:'\e0d7'}.oi[data-glyph=warning]:before{content:'\e0d8'}.oi[data-glyph=wifi]:before{content:'\e0d9'}.oi[data-glyph=wrench]:before{content:'\e0da'}.oi[data-glyph=x]:before{content:'\e0db'}.oi[data-glyph=yen]:before{content:'\e0dc'}.oi[data-glyph=zoom-in]:before{content:'\e0dd'}.oi[data-glyph=zoom-out]:before{content:'\e0de'} \ No newline at end of file diff --git a/the8eam/open-iconic/font/css/open-iconic.scss b/the8eam/open-iconic/font/css/open-iconic.scss new file mode 100644 index 0000000..e03d979 --- /dev/null +++ b/the8eam/open-iconic/font/css/open-iconic.scss @@ -0,0 +1,963 @@ +$iconic-font-path: '../fonts/' !default; + +@font-face { + font-family: 'Icons'; + src: url('#{$iconic-font-path}open-iconic.eot'); + src: url('#{$iconic-font-path}open-iconic.eot?#iconic-sm') format('embedded-opentype'), url('#{$iconic-font-path}open-iconic.woff') format('woff'), url('#{$iconic-font-path}open-iconic.ttf') format('truetype'), url('#{$iconic-font-path}open-iconic.otf') format('opentype'), url('#{$iconic-font-path}open-iconic.svg#iconic-sm') format('svg'); + font-weight: normal; + font-style: normal; +} + +.oi[data-glyph].oi-text-replace { + font-size: 0; + line-height: 0; +} + +.oi[data-glyph].oi-text-replace:before { + width: 1em; + text-align: center; +} + +.oi[data-glyph] { + &:before { + position: relative; + top: 1px; + font-family: 'Icons'; + display: inline-block; + speak: none; + line-height: 1; + vertical-align: baseline; + font-weight: normal; + font-style: normal; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; + } + + &:empty:before { + width: 1em; + text-align: center; + box-sizing: content-box; + } + + &.oi-align-left:before { + text-align: left; + } + &.oi-align-right:before { + text-align: right; + } + &.oi-align-center:before { + text-align: center; + } + + &.oi-flip-horizontal:before { + -webkit-transform: scale(-1, 1); + -ms-transform: scale(-1, 1); + transform: scale(-1, 1); + } + + &.oi-flip-vertical:before { + -webkit-transform: scale(1, -1); + -ms-transform: scale(-1, 1); + transform: scale(1, -1); + } + + &.oi-flip-horizontal-vertical:before { + -webkit-transform: scale(-1, -1); + -ms-transform: scale(-1, 1); + transform: scale(-1, -1); + } +} + + +.oi[data-glyph=account-login]:before { + content: '\e000'; +} + +.oi[data-glyph=account-logout]:before { + content: '\e001'; +} + +.oi[data-glyph=action-redo]:before { + content: '\e002'; +} + +.oi[data-glyph=action-undo]:before { + content: '\e003'; +} + +.oi[data-glyph=align-center]:before { + content: '\e004'; +} + +.oi[data-glyph=align-left]:before { + content: '\e005'; +} + +.oi[data-glyph=align-right]:before { + content: '\e006'; +} + +.oi[data-glyph=aperture]:before { + content: '\e007'; +} + +.oi[data-glyph=arrow-bottom]:before { + content: '\e008'; +} + +.oi[data-glyph=arrow-circle-bottom]:before { + content: '\e009'; +} + +.oi[data-glyph=arrow-circle-left]:before { + content: '\e00a'; +} + +.oi[data-glyph=arrow-circle-right]:before { + content: '\e00b'; +} + +.oi[data-glyph=arrow-circle-top]:before { + content: '\e00c'; +} + +.oi[data-glyph=arrow-left]:before { + content: '\e00d'; +} + +.oi[data-glyph=arrow-right]:before { + content: '\e00e'; +} + +.oi[data-glyph=arrow-thick-bottom]:before { + content: '\e00f'; +} + +.oi[data-glyph=arrow-thick-left]:before { + content: '\e010'; +} + +.oi[data-glyph=arrow-thick-right]:before { + content: '\e011'; +} + +.oi[data-glyph=arrow-thick-top]:before { + content: '\e012'; +} + +.oi[data-glyph=arrow-top]:before { + content: '\e013'; +} + +.oi[data-glyph=audio-spectrum]:before { + content: '\e014'; +} + +.oi[data-glyph=audio]:before { + content: '\e015'; +} + +.oi[data-glyph=badge]:before { + content: '\e016'; +} + +.oi[data-glyph=ban]:before { + content: '\e017'; +} + +.oi[data-glyph=bar-chart]:before { + content: '\e018'; +} + +.oi[data-glyph=basket]:before { + content: '\e019'; +} + +.oi[data-glyph=battery-empty]:before { + content: '\e01a'; +} + +.oi[data-glyph=battery-full]:before { + content: '\e01b'; +} + +.oi[data-glyph=beaker]:before { + content: '\e01c'; +} + +.oi[data-glyph=bell]:before { + content: '\e01d'; +} + +.oi[data-glyph=bluetooth]:before { + content: '\e01e'; +} + +.oi[data-glyph=bold]:before { + content: '\e01f'; +} + +.oi[data-glyph=bolt]:before { + content: '\e020'; +} + +.oi[data-glyph=book]:before { + content: '\e021'; +} + +.oi[data-glyph=bookmark]:before { + content: '\e022'; +} + +.oi[data-glyph=box]:before { + content: '\e023'; +} + +.oi[data-glyph=briefcase]:before { + content: '\e024'; +} + +.oi[data-glyph=british-pound]:before { + content: '\e025'; +} + +.oi[data-glyph=browser]:before { + content: '\e026'; +} + +.oi[data-glyph=brush]:before { + content: '\e027'; +} + +.oi[data-glyph=bug]:before { + content: '\e028'; +} + +.oi[data-glyph=bullhorn]:before { + content: '\e029'; +} + +.oi[data-glyph=calculator]:before { + content: '\e02a'; +} + +.oi[data-glyph=calendar]:before { + content: '\e02b'; +} + +.oi[data-glyph=camera-slr]:before { + content: '\e02c'; +} + +.oi[data-glyph=caret-bottom]:before { + content: '\e02d'; +} + +.oi[data-glyph=caret-left]:before { + content: '\e02e'; +} + +.oi[data-glyph=caret-right]:before { + content: '\e02f'; +} + +.oi[data-glyph=caret-top]:before { + content: '\e030'; +} + +.oi[data-glyph=cart]:before { + content: '\e031'; +} + +.oi[data-glyph=chat]:before { + content: '\e032'; +} + +.oi[data-glyph=check]:before { + content: '\e033'; +} + +.oi[data-glyph=chevron-bottom]:before { + content: '\e034'; +} + +.oi[data-glyph=chevron-left]:before { + content: '\e035'; +} + +.oi[data-glyph=chevron-right]:before { + content: '\e036'; +} + +.oi[data-glyph=chevron-top]:before { + content: '\e037'; +} + +.oi[data-glyph=circle-check]:before { + content: '\e038'; +} + +.oi[data-glyph=circle-x]:before { + content: '\e039'; +} + +.oi[data-glyph=clipboard]:before { + content: '\e03a'; +} + +.oi[data-glyph=clock]:before { + content: '\e03b'; +} + +.oi[data-glyph=cloud-download]:before { + content: '\e03c'; +} + +.oi[data-glyph=cloud-upload]:before { + content: '\e03d'; +} + +.oi[data-glyph=cloud]:before { + content: '\e03e'; +} + +.oi[data-glyph=cloudy]:before { + content: '\e03f'; +} + +.oi[data-glyph=code]:before { + content: '\e040'; +} + +.oi[data-glyph=cog]:before { + content: '\e041'; +} + +.oi[data-glyph=collapse-down]:before { + content: '\e042'; +} + +.oi[data-glyph=collapse-left]:before { + content: '\e043'; +} + +.oi[data-glyph=collapse-right]:before { + content: '\e044'; +} + +.oi[data-glyph=collapse-up]:before { + content: '\e045'; +} + +.oi[data-glyph=command]:before { + content: '\e046'; +} + +.oi[data-glyph=comment-square]:before { + content: '\e047'; +} + +.oi[data-glyph=compass]:before { + content: '\e048'; +} + +.oi[data-glyph=contrast]:before { + content: '\e049'; +} + +.oi[data-glyph=copywriting]:before { + content: '\e04a'; +} + +.oi[data-glyph=credit-card]:before { + content: '\e04b'; +} + +.oi[data-glyph=crop]:before { + content: '\e04c'; +} + +.oi[data-glyph=dashboard]:before { + content: '\e04d'; +} + +.oi[data-glyph=data-transfer-download]:before { + content: '\e04e'; +} + +.oi[data-glyph=data-transfer-upload]:before { + content: '\e04f'; +} + +.oi[data-glyph=delete]:before { + content: '\e050'; +} + +.oi[data-glyph=dial]:before { + content: '\e051'; +} + +.oi[data-glyph=document]:before { + content: '\e052'; +} + +.oi[data-glyph=dollar]:before { + content: '\e053'; +} + +.oi[data-glyph=double-quote-sans-left]:before { + content: '\e054'; +} + +.oi[data-glyph=double-quote-sans-right]:before { + content: '\e055'; +} + +.oi[data-glyph=double-quote-serif-left]:before { + content: '\e056'; +} + +.oi[data-glyph=double-quote-serif-right]:before { + content: '\e057'; +} + +.oi[data-glyph=droplet]:before { + content: '\e058'; +} + +.oi[data-glyph=eject]:before { + content: '\e059'; +} + +.oi[data-glyph=elevator]:before { + content: '\e05a'; +} + +.oi[data-glyph=ellipses]:before { + content: '\e05b'; +} + +.oi[data-glyph=envelope-closed]:before { + content: '\e05c'; +} + +.oi[data-glyph=envelope-open]:before { + content: '\e05d'; +} + +.oi[data-glyph=euro]:before { + content: '\e05e'; +} + +.oi[data-glyph=excerpt]:before { + content: '\e05f'; +} + +.oi[data-glyph=expand-down]:before { + content: '\e060'; +} + +.oi[data-glyph=expand-left]:before { + content: '\e061'; +} + +.oi[data-glyph=expand-right]:before { + content: '\e062'; +} + +.oi[data-glyph=expand-up]:before { + content: '\e063'; +} + +.oi[data-glyph=external-link]:before { + content: '\e064'; +} + +.oi[data-glyph=eye]:before { + content: '\e065'; +} + +.oi[data-glyph=eyedropper]:before { + content: '\e066'; +} + +.oi[data-glyph=file]:before { + content: '\e067'; +} + +.oi[data-glyph=fire]:before { + content: '\e068'; +} + +.oi[data-glyph=flag]:before { + content: '\e069'; +} + +.oi[data-glyph=flash]:before { + content: '\e06a'; +} + +.oi[data-glyph=folder]:before { + content: '\e06b'; +} + +.oi[data-glyph=fork]:before { + content: '\e06c'; +} + +.oi[data-glyph=fullscreen-enter]:before { + content: '\e06d'; +} + +.oi[data-glyph=fullscreen-exit]:before { + content: '\e06e'; +} + +.oi[data-glyph=globe]:before { + content: '\e06f'; +} + +.oi[data-glyph=graph]:before { + content: '\e070'; +} + +.oi[data-glyph=grid-four-up]:before { + content: '\e071'; +} + +.oi[data-glyph=grid-three-up]:before { + content: '\e072'; +} + +.oi[data-glyph=grid-two-up]:before { + content: '\e073'; +} + +.oi[data-glyph=hard-drive]:before { + content: '\e074'; +} + +.oi[data-glyph=header]:before { + content: '\e075'; +} + +.oi[data-glyph=headphones]:before { + content: '\e076'; +} + +.oi[data-glyph=heart]:before { + content: '\e077'; +} + +.oi[data-glyph=home]:before { + content: '\e078'; +} + +.oi[data-glyph=image]:before { + content: '\e079'; +} + +.oi[data-glyph=inbox]:before { + content: '\e07a'; +} + +.oi[data-glyph=infinity]:before { + content: '\e07b'; +} + +.oi[data-glyph=info]:before { + content: '\e07c'; +} + +.oi[data-glyph=italic]:before { + content: '\e07d'; +} + +.oi[data-glyph=justify-center]:before { + content: '\e07e'; +} + +.oi[data-glyph=justify-left]:before { + content: '\e07f'; +} + +.oi[data-glyph=justify-right]:before { + content: '\e080'; +} + +.oi[data-glyph=key]:before { + content: '\e081'; +} + +.oi[data-glyph=laptop]:before { + content: '\e082'; +} + +.oi[data-glyph=layers]:before { + content: '\e083'; +} + +.oi[data-glyph=lightbulb]:before { + content: '\e084'; +} + +.oi[data-glyph=link-broken]:before { + content: '\e085'; +} + +.oi[data-glyph=link-intact]:before { + content: '\e086'; +} + +.oi[data-glyph=list-rich]:before { + content: '\e087'; +} + +.oi[data-glyph=list]:before { + content: '\e088'; +} + +.oi[data-glyph=location]:before { + content: '\e089'; +} + +.oi[data-glyph=lock-locked]:before { + content: '\e08a'; +} + +.oi[data-glyph=lock-unlocked]:before { + content: '\e08b'; +} + +.oi[data-glyph=loop-circular]:before { + content: '\e08c'; +} + +.oi[data-glyph=loop-square]:before { + content: '\e08d'; +} + +.oi[data-glyph=loop]:before { + content: '\e08e'; +} + +.oi[data-glyph=magnifying-glass]:before { + content: '\e08f'; +} + +.oi[data-glyph=map-marker]:before { + content: '\e090'; +} + +.oi[data-glyph=map]:before { + content: '\e091'; +} + +.oi[data-glyph=media-pause]:before { + content: '\e092'; +} + +.oi[data-glyph=media-play]:before { + content: '\e093'; +} + +.oi[data-glyph=media-record]:before { + content: '\e094'; +} + +.oi[data-glyph=media-skip-backward]:before { + content: '\e095'; +} + +.oi[data-glyph=media-skip-forward]:before { + content: '\e096'; +} + +.oi[data-glyph=media-step-backward]:before { + content: '\e097'; +} + +.oi[data-glyph=media-step-forward]:before { + content: '\e098'; +} + +.oi[data-glyph=media-stop]:before { + content: '\e099'; +} + +.oi[data-glyph=medical-cross]:before { + content: '\e09a'; +} + +.oi[data-glyph=menu]:before { + content: '\e09b'; +} + +.oi[data-glyph=microphone]:before { + content: '\e09c'; +} + +.oi[data-glyph=minus]:before { + content: '\e09d'; +} + +.oi[data-glyph=monitor]:before { + content: '\e09e'; +} + +.oi[data-glyph=moon]:before { + content: '\e09f'; +} + +.oi[data-glyph=move]:before { + content: '\e0a0'; +} + +.oi[data-glyph=musical-note]:before { + content: '\e0a1'; +} + +.oi[data-glyph=paperclip]:before { + content: '\e0a2'; +} + +.oi[data-glyph=pencil]:before { + content: '\e0a3'; +} + +.oi[data-glyph=people]:before { + content: '\e0a4'; +} + +.oi[data-glyph=person]:before { + content: '\e0a5'; +} + +.oi[data-glyph=phone]:before { + content: '\e0a6'; +} + +.oi[data-glyph=pie-chart]:before { + content: '\e0a7'; +} + +.oi[data-glyph=pin]:before { + content: '\e0a8'; +} + +.oi[data-glyph=play-circle]:before { + content: '\e0a9'; +} + +.oi[data-glyph=plus]:before { + content: '\e0aa'; +} + +.oi[data-glyph=power-standby]:before { + content: '\e0ab'; +} + +.oi[data-glyph=print]:before { + content: '\e0ac'; +} + +.oi[data-glyph=project]:before { + content: '\e0ad'; +} + +.oi[data-glyph=pulse]:before { + content: '\e0ae'; +} + +.oi[data-glyph=puzzle-piece]:before { + content: '\e0af'; +} + +.oi[data-glyph=question-mark]:before { + content: '\e0b0'; +} + +.oi[data-glyph=rain]:before { + content: '\e0b1'; +} + +.oi[data-glyph=random]:before { + content: '\e0b2'; +} + +.oi[data-glyph=reload]:before { + content: '\e0b3'; +} + +.oi[data-glyph=resize-both]:before { + content: '\e0b4'; +} + +.oi[data-glyph=resize-height]:before { + content: '\e0b5'; +} + +.oi[data-glyph=resize-width]:before { + content: '\e0b6'; +} + +.oi[data-glyph=rss-alt]:before { + content: '\e0b7'; +} + +.oi[data-glyph=rss]:before { + content: '\e0b8'; +} + +.oi[data-glyph=script]:before { + content: '\e0b9'; +} + +.oi[data-glyph=share-boxed]:before { + content: '\e0ba'; +} + +.oi[data-glyph=share]:before { + content: '\e0bb'; +} + +.oi[data-glyph=shield]:before { + content: '\e0bc'; +} + +.oi[data-glyph=signal]:before { + content: '\e0bd'; +} + +.oi[data-glyph=signpost]:before { + content: '\e0be'; +} + +.oi[data-glyph=sort-ascending]:before { + content: '\e0bf'; +} + +.oi[data-glyph=sort-descending]:before { + content: '\e0c0'; +} + +.oi[data-glyph=spreadsheet]:before { + content: '\e0c1'; +} + +.oi[data-glyph=star]:before { + content: '\e0c2'; +} + +.oi[data-glyph=sun]:before { + content: '\e0c3'; +} + +.oi[data-glyph=tablet]:before { + content: '\e0c4'; +} + +.oi[data-glyph=tag]:before { + content: '\e0c5'; +} + +.oi[data-glyph=tags]:before { + content: '\e0c6'; +} + +.oi[data-glyph=target]:before { + content: '\e0c7'; +} + +.oi[data-glyph=task]:before { + content: '\e0c8'; +} + +.oi[data-glyph=terminal]:before { + content: '\e0c9'; +} + +.oi[data-glyph=text]:before { + content: '\e0ca'; +} + +.oi[data-glyph=thumb-down]:before { + content: '\e0cb'; +} + +.oi[data-glyph=thumb-up]:before { + content: '\e0cc'; +} + +.oi[data-glyph=timer]:before { + content: '\e0cd'; +} + +.oi[data-glyph=transfer]:before { + content: '\e0ce'; +} + +.oi[data-glyph=trash]:before { + content: '\e0cf'; +} + +.oi[data-glyph=underline]:before { + content: '\e0d0'; +} + +.oi[data-glyph=vertical-align-bottom]:before { + content: '\e0d1'; +} + +.oi[data-glyph=vertical-align-center]:before { + content: '\e0d2'; +} + +.oi[data-glyph=vertical-align-top]:before { + content: '\e0d3'; +} + +.oi[data-glyph=video]:before { + content: '\e0d4'; +} + +.oi[data-glyph=volume-high]:before { + content: '\e0d5'; +} + +.oi[data-glyph=volume-low]:before { + content: '\e0d6'; +} + +.oi[data-glyph=volume-off]:before { + content: '\e0d7'; +} + +.oi[data-glyph=warning]:before { + content: '\e0d8'; +} + +.oi[data-glyph=wifi]:before { + content: '\e0d9'; +} + +.oi[data-glyph=wrench]:before { + content: '\e0da'; +} + +.oi[data-glyph=x]:before { + content: '\e0db'; +} + +.oi[data-glyph=yen]:before { + content: '\e0dc'; +} + +.oi[data-glyph=zoom-in]:before { + content: '\e0dd'; +} + +.oi[data-glyph=zoom-out]:before { + content: '\e0de'; +} + diff --git a/the8eam/open-iconic/font/css/open-iconic.styl b/the8eam/open-iconic/font/css/open-iconic.styl new file mode 100644 index 0000000..f541bc2 --- /dev/null +++ b/the8eam/open-iconic/font/css/open-iconic.styl @@ -0,0 +1,733 @@ +@font-face + font-family 'Icons' + src url('../fonts/open-iconic.eot') + src url('../fonts/open-iconic.eot?#iconic-sm') format('embedded-opentype'), url('../fonts/open-iconic.woff') format('woff'), url('../fonts/open-iconic.ttf') format('truetype'), url('../fonts/open-iconic.otf') format('opentype'), url('../fonts/open-iconic.svg#iconic-sm') format('svg') + font-weight normal + font-style normal + + +.oi[data-glyph].oi-text-replace + font-size 0 + line-height 0 + +.oi[data-glyph].oi-text-replace:before + width 1em + text-align center + +.oi[data-glyph] + &:before + position relative + top 1px + font-family 'Icons' + display inline-block + speak none + line-height 1 + vertical-align baseline + font-weight normal + font-style normal + -webkit-font-smoothing antialiased + -moz-osx-font-smoothing grayscale + + &:empty:before + width 1em + text-align center + box-sizing content-box + + &.oi-align-left:before + text-align left + + &.oi-align-right:before + text-align right + + &.oi-align-center:before + text-align center + + + &.oi-flip-horizontal:before + -webkit-transform scale(-1, 1) + -ms-transform scale(-1, 1) + transform scale(-1, 1) + + + &.oi-flip-vertical:before + -webkit-transform scale(1, -1) + -ms-transform scale(-1, 1) + transform scale(1, -1) + + + &.oi-flip-horizontal-vertical:before + -webkit-transform scale(-1, -1) + -ms-transform scale(-1, 1) + transform scale(-1, -1) + + + + +.oi[data-glyph=account-login]:before + content '\e000' + +.oi[data-glyph=account-logout]:before + content '\e001' + +.oi[data-glyph=action-redo]:before + content '\e002' + +.oi[data-glyph=action-undo]:before + content '\e003' + +.oi[data-glyph=align-center]:before + content '\e004' + +.oi[data-glyph=align-left]:before + content '\e005' + +.oi[data-glyph=align-right]:before + content '\e006' + +.oi[data-glyph=aperture]:before + content '\e007' + +.oi[data-glyph=arrow-bottom]:before + content '\e008' + +.oi[data-glyph=arrow-circle-bottom]:before + content '\e009' + +.oi[data-glyph=arrow-circle-left]:before + content '\e00a' + +.oi[data-glyph=arrow-circle-right]:before + content '\e00b' + +.oi[data-glyph=arrow-circle-top]:before + content '\e00c' + +.oi[data-glyph=arrow-left]:before + content '\e00d' + +.oi[data-glyph=arrow-right]:before + content '\e00e' + +.oi[data-glyph=arrow-thick-bottom]:before + content '\e00f' + +.oi[data-glyph=arrow-thick-left]:before + content '\e010' + +.oi[data-glyph=arrow-thick-right]:before + content '\e011' + +.oi[data-glyph=arrow-thick-top]:before + content '\e012' + +.oi[data-glyph=arrow-top]:before + content '\e013' + +.oi[data-glyph=audio-spectrum]:before + content '\e014' + +.oi[data-glyph=audio]:before + content '\e015' + +.oi[data-glyph=badge]:before + content '\e016' + +.oi[data-glyph=ban]:before + content '\e017' + +.oi[data-glyph=bar-chart]:before + content '\e018' + +.oi[data-glyph=basket]:before + content '\e019' + +.oi[data-glyph=battery-empty]:before + content '\e01a' + +.oi[data-glyph=battery-full]:before + content '\e01b' + +.oi[data-glyph=beaker]:before + content '\e01c' + +.oi[data-glyph=bell]:before + content '\e01d' + +.oi[data-glyph=bluetooth]:before + content '\e01e' + +.oi[data-glyph=bold]:before + content '\e01f' + +.oi[data-glyph=bolt]:before + content '\e020' + +.oi[data-glyph=book]:before + content '\e021' + +.oi[data-glyph=bookmark]:before + content '\e022' + +.oi[data-glyph=box]:before + content '\e023' + +.oi[data-glyph=briefcase]:before + content '\e024' + +.oi[data-glyph=british-pound]:before + content '\e025' + +.oi[data-glyph=browser]:before + content '\e026' + +.oi[data-glyph=brush]:before + content '\e027' + +.oi[data-glyph=bug]:before + content '\e028' + +.oi[data-glyph=bullhorn]:before + content '\e029' + +.oi[data-glyph=calculator]:before + content '\e02a' + +.oi[data-glyph=calendar]:before + content '\e02b' + +.oi[data-glyph=camera-slr]:before + content '\e02c' + +.oi[data-glyph=caret-bottom]:before + content '\e02d' + +.oi[data-glyph=caret-left]:before + content '\e02e' + +.oi[data-glyph=caret-right]:before + content '\e02f' + +.oi[data-glyph=caret-top]:before + content '\e030' + +.oi[data-glyph=cart]:before + content '\e031' + +.oi[data-glyph=chat]:before + content '\e032' + +.oi[data-glyph=check]:before + content '\e033' + +.oi[data-glyph=chevron-bottom]:before + content '\e034' + +.oi[data-glyph=chevron-left]:before + content '\e035' + +.oi[data-glyph=chevron-right]:before + content '\e036' + +.oi[data-glyph=chevron-top]:before + content '\e037' + +.oi[data-glyph=circle-check]:before + content '\e038' + +.oi[data-glyph=circle-x]:before + content '\e039' + +.oi[data-glyph=clipboard]:before + content '\e03a' + +.oi[data-glyph=clock]:before + content '\e03b' + +.oi[data-glyph=cloud-download]:before + content '\e03c' + +.oi[data-glyph=cloud-upload]:before + content '\e03d' + +.oi[data-glyph=cloud]:before + content '\e03e' + +.oi[data-glyph=cloudy]:before + content '\e03f' + +.oi[data-glyph=code]:before + content '\e040' + +.oi[data-glyph=cog]:before + content '\e041' + +.oi[data-glyph=collapse-down]:before + content '\e042' + +.oi[data-glyph=collapse-left]:before + content '\e043' + +.oi[data-glyph=collapse-right]:before + content '\e044' + +.oi[data-glyph=collapse-up]:before + content '\e045' + +.oi[data-glyph=command]:before + content '\e046' + +.oi[data-glyph=comment-square]:before + content '\e047' + +.oi[data-glyph=compass]:before + content '\e048' + +.oi[data-glyph=contrast]:before + content '\e049' + +.oi[data-glyph=copywriting]:before + content '\e04a' + +.oi[data-glyph=credit-card]:before + content '\e04b' + +.oi[data-glyph=crop]:before + content '\e04c' + +.oi[data-glyph=dashboard]:before + content '\e04d' + +.oi[data-glyph=data-transfer-download]:before + content '\e04e' + +.oi[data-glyph=data-transfer-upload]:before + content '\e04f' + +.oi[data-glyph=delete]:before + content '\e050' + +.oi[data-glyph=dial]:before + content '\e051' + +.oi[data-glyph=document]:before + content '\e052' + +.oi[data-glyph=dollar]:before + content '\e053' + +.oi[data-glyph=double-quote-sans-left]:before + content '\e054' + +.oi[data-glyph=double-quote-sans-right]:before + content '\e055' + +.oi[data-glyph=double-quote-serif-left]:before + content '\e056' + +.oi[data-glyph=double-quote-serif-right]:before + content '\e057' + +.oi[data-glyph=droplet]:before + content '\e058' + +.oi[data-glyph=eject]:before + content '\e059' + +.oi[data-glyph=elevator]:before + content '\e05a' + +.oi[data-glyph=ellipses]:before + content '\e05b' + +.oi[data-glyph=envelope-closed]:before + content '\e05c' + +.oi[data-glyph=envelope-open]:before + content '\e05d' + +.oi[data-glyph=euro]:before + content '\e05e' + +.oi[data-glyph=excerpt]:before + content '\e05f' + +.oi[data-glyph=expand-down]:before + content '\e060' + +.oi[data-glyph=expand-left]:before + content '\e061' + +.oi[data-glyph=expand-right]:before + content '\e062' + +.oi[data-glyph=expand-up]:before + content '\e063' + +.oi[data-glyph=external-link]:before + content '\e064' + +.oi[data-glyph=eye]:before + content '\e065' + +.oi[data-glyph=eyedropper]:before + content '\e066' + +.oi[data-glyph=file]:before + content '\e067' + +.oi[data-glyph=fire]:before + content '\e068' + +.oi[data-glyph=flag]:before + content '\e069' + +.oi[data-glyph=flash]:before + content '\e06a' + +.oi[data-glyph=folder]:before + content '\e06b' + +.oi[data-glyph=fork]:before + content '\e06c' + +.oi[data-glyph=fullscreen-enter]:before + content '\e06d' + +.oi[data-glyph=fullscreen-exit]:before + content '\e06e' + +.oi[data-glyph=globe]:before + content '\e06f' + +.oi[data-glyph=graph]:before + content '\e070' + +.oi[data-glyph=grid-four-up]:before + content '\e071' + +.oi[data-glyph=grid-three-up]:before + content '\e072' + +.oi[data-glyph=grid-two-up]:before + content '\e073' + +.oi[data-glyph=hard-drive]:before + content '\e074' + +.oi[data-glyph=header]:before + content '\e075' + +.oi[data-glyph=headphones]:before + content '\e076' + +.oi[data-glyph=heart]:before + content '\e077' + +.oi[data-glyph=home]:before + content '\e078' + +.oi[data-glyph=image]:before + content '\e079' + +.oi[data-glyph=inbox]:before + content '\e07a' + +.oi[data-glyph=infinity]:before + content '\e07b' + +.oi[data-glyph=info]:before + content '\e07c' + +.oi[data-glyph=italic]:before + content '\e07d' + +.oi[data-glyph=justify-center]:before + content '\e07e' + +.oi[data-glyph=justify-left]:before + content '\e07f' + +.oi[data-glyph=justify-right]:before + content '\e080' + +.oi[data-glyph=key]:before + content '\e081' + +.oi[data-glyph=laptop]:before + content '\e082' + +.oi[data-glyph=layers]:before + content '\e083' + +.oi[data-glyph=lightbulb]:before + content '\e084' + +.oi[data-glyph=link-broken]:before + content '\e085' + +.oi[data-glyph=link-intact]:before + content '\e086' + +.oi[data-glyph=list-rich]:before + content '\e087' + +.oi[data-glyph=list]:before + content '\e088' + +.oi[data-glyph=location]:before + content '\e089' + +.oi[data-glyph=lock-locked]:before + content '\e08a' + +.oi[data-glyph=lock-unlocked]:before + content '\e08b' + +.oi[data-glyph=loop-circular]:before + content '\e08c' + +.oi[data-glyph=loop-square]:before + content '\e08d' + +.oi[data-glyph=loop]:before + content '\e08e' + +.oi[data-glyph=magnifying-glass]:before + content '\e08f' + +.oi[data-glyph=map-marker]:before + content '\e090' + +.oi[data-glyph=map]:before + content '\e091' + +.oi[data-glyph=media-pause]:before + content '\e092' + +.oi[data-glyph=media-play]:before + content '\e093' + +.oi[data-glyph=media-record]:before + content '\e094' + +.oi[data-glyph=media-skip-backward]:before + content '\e095' + +.oi[data-glyph=media-skip-forward]:before + content '\e096' + +.oi[data-glyph=media-step-backward]:before + content '\e097' + +.oi[data-glyph=media-step-forward]:before + content '\e098' + +.oi[data-glyph=media-stop]:before + content '\e099' + +.oi[data-glyph=medical-cross]:before + content '\e09a' + +.oi[data-glyph=menu]:before + content '\e09b' + +.oi[data-glyph=microphone]:before + content '\e09c' + +.oi[data-glyph=minus]:before + content '\e09d' + +.oi[data-glyph=monitor]:before + content '\e09e' + +.oi[data-glyph=moon]:before + content '\e09f' + +.oi[data-glyph=move]:before + content '\e0a0' + +.oi[data-glyph=musical-note]:before + content '\e0a1' + +.oi[data-glyph=paperclip]:before + content '\e0a2' + +.oi[data-glyph=pencil]:before + content '\e0a3' + +.oi[data-glyph=people]:before + content '\e0a4' + +.oi[data-glyph=person]:before + content '\e0a5' + +.oi[data-glyph=phone]:before + content '\e0a6' + +.oi[data-glyph=pie-chart]:before + content '\e0a7' + +.oi[data-glyph=pin]:before + content '\e0a8' + +.oi[data-glyph=play-circle]:before + content '\e0a9' + +.oi[data-glyph=plus]:before + content '\e0aa' + +.oi[data-glyph=power-standby]:before + content '\e0ab' + +.oi[data-glyph=print]:before + content '\e0ac' + +.oi[data-glyph=project]:before + content '\e0ad' + +.oi[data-glyph=pulse]:before + content '\e0ae' + +.oi[data-glyph=puzzle-piece]:before + content '\e0af' + +.oi[data-glyph=question-mark]:before + content '\e0b0' + +.oi[data-glyph=rain]:before + content '\e0b1' + +.oi[data-glyph=random]:before + content '\e0b2' + +.oi[data-glyph=reload]:before + content '\e0b3' + +.oi[data-glyph=resize-both]:before + content '\e0b4' + +.oi[data-glyph=resize-height]:before + content '\e0b5' + +.oi[data-glyph=resize-width]:before + content '\e0b6' + +.oi[data-glyph=rss-alt]:before + content '\e0b7' + +.oi[data-glyph=rss]:before + content '\e0b8' + +.oi[data-glyph=script]:before + content '\e0b9' + +.oi[data-glyph=share-boxed]:before + content '\e0ba' + +.oi[data-glyph=share]:before + content '\e0bb' + +.oi[data-glyph=shield]:before + content '\e0bc' + +.oi[data-glyph=signal]:before + content '\e0bd' + +.oi[data-glyph=signpost]:before + content '\e0be' + +.oi[data-glyph=sort-ascending]:before + content '\e0bf' + +.oi[data-glyph=sort-descending]:before + content '\e0c0' + +.oi[data-glyph=spreadsheet]:before + content '\e0c1' + +.oi[data-glyph=star]:before + content '\e0c2' + +.oi[data-glyph=sun]:before + content '\e0c3' + +.oi[data-glyph=tablet]:before + content '\e0c4' + +.oi[data-glyph=tag]:before + content '\e0c5' + +.oi[data-glyph=tags]:before + content '\e0c6' + +.oi[data-glyph=target]:before + content '\e0c7' + +.oi[data-glyph=task]:before + content '\e0c8' + +.oi[data-glyph=terminal]:before + content '\e0c9' + +.oi[data-glyph=text]:before + content '\e0ca' + +.oi[data-glyph=thumb-down]:before + content '\e0cb' + +.oi[data-glyph=thumb-up]:before + content '\e0cc' + +.oi[data-glyph=timer]:before + content '\e0cd' + +.oi[data-glyph=transfer]:before + content '\e0ce' + +.oi[data-glyph=trash]:before + content '\e0cf' + +.oi[data-glyph=underline]:before + content '\e0d0' + +.oi[data-glyph=vertical-align-bottom]:before + content '\e0d1' + +.oi[data-glyph=vertical-align-center]:before + content '\e0d2' + +.oi[data-glyph=vertical-align-top]:before + content '\e0d3' + +.oi[data-glyph=video]:before + content '\e0d4' + +.oi[data-glyph=volume-high]:before + content '\e0d5' + +.oi[data-glyph=volume-low]:before + content '\e0d6' + +.oi[data-glyph=volume-off]:before + content '\e0d7' + +.oi[data-glyph=warning]:before + content '\e0d8' + +.oi[data-glyph=wifi]:before + content '\e0d9' + +.oi[data-glyph=wrench]:before + content '\e0da' + +.oi[data-glyph=x]:before + content '\e0db' + +.oi[data-glyph=yen]:before + content '\e0dc' + +.oi[data-glyph=zoom-in]:before + content '\e0dd' + +.oi[data-glyph=zoom-out]:before + content '\e0de' diff --git a/the8eam/open-iconic/font/fonts/open-iconic.eot b/the8eam/open-iconic/font/fonts/open-iconic.eot new file mode 100644 index 0000000..f98177d Binary files /dev/null and b/the8eam/open-iconic/font/fonts/open-iconic.eot differ diff --git a/the8eam/open-iconic/font/fonts/open-iconic.otf b/the8eam/open-iconic/font/fonts/open-iconic.otf new file mode 100644 index 0000000..f6bd684 Binary files /dev/null and b/the8eam/open-iconic/font/fonts/open-iconic.otf differ diff --git a/the8eam/open-iconic/font/fonts/open-iconic.svg b/the8eam/open-iconic/font/fonts/open-iconic.svg new file mode 100644 index 0000000..32b2c4e --- /dev/null +++ b/the8eam/open-iconic/font/fonts/open-iconic.svg @@ -0,0 +1,543 @@ + + + + + +Created by FontForge 20120731 at Tue Jul 1 20:39:22 2014 + By P.J. Onori +Created by P.J. Onori with FontForge 2.0 (http://fontforge.sf.net) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/the8eam/open-iconic/font/fonts/open-iconic.ttf b/the8eam/open-iconic/font/fonts/open-iconic.ttf new file mode 100644 index 0000000..fab6048 Binary files /dev/null and b/the8eam/open-iconic/font/fonts/open-iconic.ttf differ diff --git a/the8eam/open-iconic/font/fonts/open-iconic.woff b/the8eam/open-iconic/font/fonts/open-iconic.woff new file mode 100644 index 0000000..f930998 Binary files /dev/null and b/the8eam/open-iconic/font/fonts/open-iconic.woff differ diff --git a/the8eam/open-iconic/package.json b/the8eam/open-iconic/package.json new file mode 100644 index 0000000..d1e76ca --- /dev/null +++ b/the8eam/open-iconic/package.json @@ -0,0 +1,36 @@ +{ + "name": "open-iconic", + "description": "An open source icon set with marks in SVG, sprite, webfont and raster format", + "version": "1.1.1", + "keywords": ["icon", "iconic", "open-iconic", "svg", "sprite", "font", "png", "webp"], + "homepage": "http://useiconic.com/open-iconic/", + "author": { + "name": "Iconic", + "email": "yourfriends@useiconic.com", + "web": "http://useiconic.com/" + }, + "repository": { + "type": "git", + "url": "https://github.com/iconic/open-iconic.git" + }, + "contributors": [ + { + "name": "P.J. Onori", + "web": "http://twitter.com/somerandomdude" + }, + { + "name": "Dave Johnson", + "web": "http://twitter.com/protodave" + } + ], + "licenses": [ + { + "type": "MIT License", + "url": "http://opensource.org/licenses/mit-license.html" + }, + { + "type": "SIL OFL 1.1", + "url": "http://scripts.sil.org/OFL" + } + ] +} diff --git a/the8eam/open-iconic/png/account-login-2x.png b/the8eam/open-iconic/png/account-login-2x.png new file mode 100644 index 0000000..c1e30db Binary files /dev/null and b/the8eam/open-iconic/png/account-login-2x.png differ diff --git a/the8eam/open-iconic/png/account-login-3x.png b/the8eam/open-iconic/png/account-login-3x.png new file mode 100644 index 0000000..2a9a3db Binary files /dev/null and b/the8eam/open-iconic/png/account-login-3x.png differ diff --git a/the8eam/open-iconic/png/account-login-4x.png b/the8eam/open-iconic/png/account-login-4x.png new file mode 100644 index 0000000..0f216ff Binary files /dev/null and b/the8eam/open-iconic/png/account-login-4x.png differ diff --git a/the8eam/open-iconic/png/account-login-6x.png b/the8eam/open-iconic/png/account-login-6x.png new file mode 100644 index 0000000..3d28df7 Binary files /dev/null and b/the8eam/open-iconic/png/account-login-6x.png differ diff --git a/the8eam/open-iconic/png/account-login-8x.png b/the8eam/open-iconic/png/account-login-8x.png new file mode 100644 index 0000000..42f9eaf Binary files /dev/null and b/the8eam/open-iconic/png/account-login-8x.png differ diff --git a/the8eam/open-iconic/png/account-login.png b/the8eam/open-iconic/png/account-login.png new file mode 100644 index 0000000..50910b9 Binary files /dev/null and b/the8eam/open-iconic/png/account-login.png differ diff --git a/the8eam/open-iconic/png/account-logout-2x.png b/the8eam/open-iconic/png/account-logout-2x.png new file mode 100644 index 0000000..8a16bca Binary files /dev/null and b/the8eam/open-iconic/png/account-logout-2x.png differ diff --git a/the8eam/open-iconic/png/account-logout-3x.png b/the8eam/open-iconic/png/account-logout-3x.png new file mode 100644 index 0000000..0607ae3 Binary files /dev/null and b/the8eam/open-iconic/png/account-logout-3x.png differ diff --git a/the8eam/open-iconic/png/account-logout-4x.png b/the8eam/open-iconic/png/account-logout-4x.png new file mode 100644 index 0000000..413df3a Binary files /dev/null and b/the8eam/open-iconic/png/account-logout-4x.png differ diff --git a/the8eam/open-iconic/png/account-logout-6x.png b/the8eam/open-iconic/png/account-logout-6x.png new file mode 100644 index 0000000..89a1d38 Binary files /dev/null and b/the8eam/open-iconic/png/account-logout-6x.png differ diff --git a/the8eam/open-iconic/png/account-logout-8x.png b/the8eam/open-iconic/png/account-logout-8x.png new file mode 100644 index 0000000..cd36558 Binary files /dev/null and b/the8eam/open-iconic/png/account-logout-8x.png differ diff --git a/the8eam/open-iconic/png/account-logout.png b/the8eam/open-iconic/png/account-logout.png new file mode 100644 index 0000000..4cc51d1 Binary files /dev/null and b/the8eam/open-iconic/png/account-logout.png differ diff --git a/the8eam/open-iconic/png/action-redo-2x.png b/the8eam/open-iconic/png/action-redo-2x.png new file mode 100644 index 0000000..dd7e4a3 Binary files /dev/null and b/the8eam/open-iconic/png/action-redo-2x.png differ diff --git a/the8eam/open-iconic/png/action-redo-3x.png b/the8eam/open-iconic/png/action-redo-3x.png new file mode 100644 index 0000000..475b14c Binary files /dev/null and b/the8eam/open-iconic/png/action-redo-3x.png differ diff --git a/the8eam/open-iconic/png/action-redo-4x.png b/the8eam/open-iconic/png/action-redo-4x.png new file mode 100644 index 0000000..74d4933 Binary files /dev/null and b/the8eam/open-iconic/png/action-redo-4x.png differ diff --git a/the8eam/open-iconic/png/action-redo-6x.png b/the8eam/open-iconic/png/action-redo-6x.png new file mode 100644 index 0000000..d47c319 Binary files /dev/null and b/the8eam/open-iconic/png/action-redo-6x.png differ diff --git a/the8eam/open-iconic/png/action-redo-8x.png b/the8eam/open-iconic/png/action-redo-8x.png new file mode 100644 index 0000000..3cd2874 Binary files /dev/null and b/the8eam/open-iconic/png/action-redo-8x.png differ diff --git a/the8eam/open-iconic/png/action-redo.png b/the8eam/open-iconic/png/action-redo.png new file mode 100644 index 0000000..54db46e Binary files /dev/null and b/the8eam/open-iconic/png/action-redo.png differ diff --git a/the8eam/open-iconic/png/action-undo-2x.png b/the8eam/open-iconic/png/action-undo-2x.png new file mode 100644 index 0000000..d8cb971 Binary files /dev/null and b/the8eam/open-iconic/png/action-undo-2x.png differ diff --git a/the8eam/open-iconic/png/action-undo-3x.png b/the8eam/open-iconic/png/action-undo-3x.png new file mode 100644 index 0000000..812db31 Binary files /dev/null and b/the8eam/open-iconic/png/action-undo-3x.png differ diff --git a/the8eam/open-iconic/png/action-undo-4x.png b/the8eam/open-iconic/png/action-undo-4x.png new file mode 100644 index 0000000..f71efbf Binary files /dev/null and b/the8eam/open-iconic/png/action-undo-4x.png differ diff --git a/the8eam/open-iconic/png/action-undo-6x.png b/the8eam/open-iconic/png/action-undo-6x.png new file mode 100644 index 0000000..afaef86 Binary files /dev/null and b/the8eam/open-iconic/png/action-undo-6x.png differ diff --git a/the8eam/open-iconic/png/action-undo-8x.png b/the8eam/open-iconic/png/action-undo-8x.png new file mode 100644 index 0000000..3ebfeb0 Binary files /dev/null and b/the8eam/open-iconic/png/action-undo-8x.png differ diff --git a/the8eam/open-iconic/png/action-undo.png b/the8eam/open-iconic/png/action-undo.png new file mode 100644 index 0000000..be4df7a Binary files /dev/null and b/the8eam/open-iconic/png/action-undo.png differ diff --git a/the8eam/open-iconic/png/align-center-2x.png b/the8eam/open-iconic/png/align-center-2x.png new file mode 100644 index 0000000..ea984dc Binary files /dev/null and b/the8eam/open-iconic/png/align-center-2x.png differ diff --git a/the8eam/open-iconic/png/align-center-3x.png b/the8eam/open-iconic/png/align-center-3x.png new file mode 100644 index 0000000..dd07465 Binary files /dev/null and b/the8eam/open-iconic/png/align-center-3x.png differ diff --git a/the8eam/open-iconic/png/align-center-4x.png b/the8eam/open-iconic/png/align-center-4x.png new file mode 100644 index 0000000..e5c987a Binary files /dev/null and b/the8eam/open-iconic/png/align-center-4x.png differ diff --git a/the8eam/open-iconic/png/align-center-6x.png b/the8eam/open-iconic/png/align-center-6x.png new file mode 100644 index 0000000..1a861b9 Binary files /dev/null and b/the8eam/open-iconic/png/align-center-6x.png differ diff --git a/the8eam/open-iconic/png/align-center-8x.png b/the8eam/open-iconic/png/align-center-8x.png new file mode 100644 index 0000000..c6baacc Binary files /dev/null and b/the8eam/open-iconic/png/align-center-8x.png differ diff --git a/the8eam/open-iconic/png/align-center.png b/the8eam/open-iconic/png/align-center.png new file mode 100644 index 0000000..d4b1070 Binary files /dev/null and b/the8eam/open-iconic/png/align-center.png differ diff --git a/the8eam/open-iconic/png/align-left-2x.png b/the8eam/open-iconic/png/align-left-2x.png new file mode 100644 index 0000000..ba8966c Binary files /dev/null and b/the8eam/open-iconic/png/align-left-2x.png differ diff --git a/the8eam/open-iconic/png/align-left-3x.png b/the8eam/open-iconic/png/align-left-3x.png new file mode 100644 index 0000000..ad1cbcc Binary files /dev/null and b/the8eam/open-iconic/png/align-left-3x.png differ diff --git a/the8eam/open-iconic/png/align-left-4x.png b/the8eam/open-iconic/png/align-left-4x.png new file mode 100644 index 0000000..ce5ae76 Binary files /dev/null and b/the8eam/open-iconic/png/align-left-4x.png differ diff --git a/the8eam/open-iconic/png/align-left-6x.png b/the8eam/open-iconic/png/align-left-6x.png new file mode 100644 index 0000000..00cdce5 Binary files /dev/null and b/the8eam/open-iconic/png/align-left-6x.png differ diff --git a/the8eam/open-iconic/png/align-left-8x.png b/the8eam/open-iconic/png/align-left-8x.png new file mode 100644 index 0000000..e666104 Binary files /dev/null and b/the8eam/open-iconic/png/align-left-8x.png differ diff --git a/the8eam/open-iconic/png/align-left.png b/the8eam/open-iconic/png/align-left.png new file mode 100644 index 0000000..7286c96 Binary files /dev/null and b/the8eam/open-iconic/png/align-left.png differ diff --git a/the8eam/open-iconic/png/align-right-2x.png b/the8eam/open-iconic/png/align-right-2x.png new file mode 100644 index 0000000..8edf99d Binary files /dev/null and b/the8eam/open-iconic/png/align-right-2x.png differ diff --git a/the8eam/open-iconic/png/align-right-3x.png b/the8eam/open-iconic/png/align-right-3x.png new file mode 100644 index 0000000..5a6e04f Binary files /dev/null and b/the8eam/open-iconic/png/align-right-3x.png differ diff --git a/the8eam/open-iconic/png/align-right-4x.png b/the8eam/open-iconic/png/align-right-4x.png new file mode 100644 index 0000000..33e0f12 Binary files /dev/null and b/the8eam/open-iconic/png/align-right-4x.png differ diff --git a/the8eam/open-iconic/png/align-right-6x.png b/the8eam/open-iconic/png/align-right-6x.png new file mode 100644 index 0000000..0b2eb6a Binary files /dev/null and b/the8eam/open-iconic/png/align-right-6x.png differ diff --git a/the8eam/open-iconic/png/align-right-8x.png b/the8eam/open-iconic/png/align-right-8x.png new file mode 100644 index 0000000..55b712f Binary files /dev/null and b/the8eam/open-iconic/png/align-right-8x.png differ diff --git a/the8eam/open-iconic/png/align-right.png b/the8eam/open-iconic/png/align-right.png new file mode 100644 index 0000000..cdcbc8e Binary files /dev/null and b/the8eam/open-iconic/png/align-right.png differ diff --git a/the8eam/open-iconic/png/aperture-2x.png b/the8eam/open-iconic/png/aperture-2x.png new file mode 100644 index 0000000..61eccfa Binary files /dev/null and b/the8eam/open-iconic/png/aperture-2x.png differ diff --git a/the8eam/open-iconic/png/aperture-3x.png b/the8eam/open-iconic/png/aperture-3x.png new file mode 100644 index 0000000..606e0b4 Binary files /dev/null and b/the8eam/open-iconic/png/aperture-3x.png differ diff --git a/the8eam/open-iconic/png/aperture-4x.png b/the8eam/open-iconic/png/aperture-4x.png new file mode 100644 index 0000000..0dd82d3 Binary files /dev/null and b/the8eam/open-iconic/png/aperture-4x.png differ diff --git a/the8eam/open-iconic/png/aperture-6x.png b/the8eam/open-iconic/png/aperture-6x.png new file mode 100644 index 0000000..02b79ff Binary files /dev/null and b/the8eam/open-iconic/png/aperture-6x.png differ diff --git a/the8eam/open-iconic/png/aperture-8x.png b/the8eam/open-iconic/png/aperture-8x.png new file mode 100644 index 0000000..418c8cf Binary files /dev/null and b/the8eam/open-iconic/png/aperture-8x.png differ diff --git a/the8eam/open-iconic/png/aperture.png b/the8eam/open-iconic/png/aperture.png new file mode 100644 index 0000000..4779d49 Binary files /dev/null and b/the8eam/open-iconic/png/aperture.png differ diff --git a/the8eam/open-iconic/png/arrow-bottom-2x.png b/the8eam/open-iconic/png/arrow-bottom-2x.png new file mode 100644 index 0000000..bacc577 Binary files /dev/null and b/the8eam/open-iconic/png/arrow-bottom-2x.png differ diff --git a/the8eam/open-iconic/png/arrow-bottom-3x.png b/the8eam/open-iconic/png/arrow-bottom-3x.png new file mode 100644 index 0000000..d31f2f7 Binary files /dev/null and b/the8eam/open-iconic/png/arrow-bottom-3x.png differ diff --git a/the8eam/open-iconic/png/arrow-bottom-4x.png b/the8eam/open-iconic/png/arrow-bottom-4x.png new file mode 100644 index 0000000..099fb4a Binary files /dev/null and b/the8eam/open-iconic/png/arrow-bottom-4x.png differ diff --git a/the8eam/open-iconic/png/arrow-bottom-6x.png b/the8eam/open-iconic/png/arrow-bottom-6x.png new file mode 100644 index 0000000..2374ba8 Binary files /dev/null and b/the8eam/open-iconic/png/arrow-bottom-6x.png differ diff --git a/the8eam/open-iconic/png/arrow-bottom-8x.png b/the8eam/open-iconic/png/arrow-bottom-8x.png new file mode 100644 index 0000000..8644747 Binary files /dev/null and b/the8eam/open-iconic/png/arrow-bottom-8x.png differ diff --git a/the8eam/open-iconic/png/arrow-bottom.png b/the8eam/open-iconic/png/arrow-bottom.png new file mode 100644 index 0000000..8afb2b9 Binary files /dev/null and b/the8eam/open-iconic/png/arrow-bottom.png differ diff --git a/the8eam/open-iconic/png/arrow-circle-bottom-2x.png b/the8eam/open-iconic/png/arrow-circle-bottom-2x.png new file mode 100644 index 0000000..3f9f9eb Binary files /dev/null and b/the8eam/open-iconic/png/arrow-circle-bottom-2x.png differ diff --git a/the8eam/open-iconic/png/arrow-circle-bottom-3x.png b/the8eam/open-iconic/png/arrow-circle-bottom-3x.png new file mode 100644 index 0000000..17c2b88 Binary files /dev/null and b/the8eam/open-iconic/png/arrow-circle-bottom-3x.png differ diff --git a/the8eam/open-iconic/png/arrow-circle-bottom-4x.png b/the8eam/open-iconic/png/arrow-circle-bottom-4x.png new file mode 100644 index 0000000..97e6bc1 Binary files /dev/null and b/the8eam/open-iconic/png/arrow-circle-bottom-4x.png differ diff --git a/the8eam/open-iconic/png/arrow-circle-bottom-6x.png b/the8eam/open-iconic/png/arrow-circle-bottom-6x.png new file mode 100644 index 0000000..d9d46a0 Binary files /dev/null and b/the8eam/open-iconic/png/arrow-circle-bottom-6x.png differ diff --git a/the8eam/open-iconic/png/arrow-circle-bottom-8x.png b/the8eam/open-iconic/png/arrow-circle-bottom-8x.png new file mode 100644 index 0000000..3df99bb Binary files /dev/null and b/the8eam/open-iconic/png/arrow-circle-bottom-8x.png differ diff --git a/the8eam/open-iconic/png/arrow-circle-bottom.png b/the8eam/open-iconic/png/arrow-circle-bottom.png new file mode 100644 index 0000000..eced19e Binary files /dev/null and b/the8eam/open-iconic/png/arrow-circle-bottom.png differ diff --git a/the8eam/open-iconic/png/arrow-circle-left-2x.png b/the8eam/open-iconic/png/arrow-circle-left-2x.png new file mode 100644 index 0000000..c994a8c Binary files /dev/null and b/the8eam/open-iconic/png/arrow-circle-left-2x.png differ diff --git a/the8eam/open-iconic/png/arrow-circle-left-3x.png b/the8eam/open-iconic/png/arrow-circle-left-3x.png new file mode 100644 index 0000000..20f0abe Binary files /dev/null and b/the8eam/open-iconic/png/arrow-circle-left-3x.png differ diff --git a/the8eam/open-iconic/png/arrow-circle-left-4x.png b/the8eam/open-iconic/png/arrow-circle-left-4x.png new file mode 100644 index 0000000..12391e6 Binary files /dev/null and b/the8eam/open-iconic/png/arrow-circle-left-4x.png differ diff --git a/the8eam/open-iconic/png/arrow-circle-left-6x.png b/the8eam/open-iconic/png/arrow-circle-left-6x.png new file mode 100644 index 0000000..d6bb98b Binary files /dev/null and b/the8eam/open-iconic/png/arrow-circle-left-6x.png differ diff --git a/the8eam/open-iconic/png/arrow-circle-left-8x.png b/the8eam/open-iconic/png/arrow-circle-left-8x.png new file mode 100644 index 0000000..532dd68 Binary files /dev/null and b/the8eam/open-iconic/png/arrow-circle-left-8x.png differ diff --git a/the8eam/open-iconic/png/arrow-circle-left.png b/the8eam/open-iconic/png/arrow-circle-left.png new file mode 100644 index 0000000..c06fa18 Binary files /dev/null and b/the8eam/open-iconic/png/arrow-circle-left.png differ diff --git a/the8eam/open-iconic/png/arrow-circle-right-2x.png b/the8eam/open-iconic/png/arrow-circle-right-2x.png new file mode 100644 index 0000000..f6751cc Binary files /dev/null and b/the8eam/open-iconic/png/arrow-circle-right-2x.png differ diff --git a/the8eam/open-iconic/png/arrow-circle-right-3x.png b/the8eam/open-iconic/png/arrow-circle-right-3x.png new file mode 100644 index 0000000..0e34225 Binary files /dev/null and b/the8eam/open-iconic/png/arrow-circle-right-3x.png differ diff --git a/the8eam/open-iconic/png/arrow-circle-right-4x.png b/the8eam/open-iconic/png/arrow-circle-right-4x.png new file mode 100644 index 0000000..3ce7216 Binary files /dev/null and b/the8eam/open-iconic/png/arrow-circle-right-4x.png differ diff --git a/the8eam/open-iconic/png/arrow-circle-right-6x.png b/the8eam/open-iconic/png/arrow-circle-right-6x.png new file mode 100644 index 0000000..06ff12e Binary files /dev/null and b/the8eam/open-iconic/png/arrow-circle-right-6x.png differ diff --git a/the8eam/open-iconic/png/arrow-circle-right-8x.png b/the8eam/open-iconic/png/arrow-circle-right-8x.png new file mode 100644 index 0000000..a731bfb Binary files /dev/null and b/the8eam/open-iconic/png/arrow-circle-right-8x.png differ diff --git a/the8eam/open-iconic/png/arrow-circle-right.png b/the8eam/open-iconic/png/arrow-circle-right.png new file mode 100644 index 0000000..5539247 Binary files /dev/null and b/the8eam/open-iconic/png/arrow-circle-right.png differ diff --git a/the8eam/open-iconic/png/arrow-circle-top-2x.png b/the8eam/open-iconic/png/arrow-circle-top-2x.png new file mode 100644 index 0000000..5bd00e6 Binary files /dev/null and b/the8eam/open-iconic/png/arrow-circle-top-2x.png differ diff --git a/the8eam/open-iconic/png/arrow-circle-top-3x.png b/the8eam/open-iconic/png/arrow-circle-top-3x.png new file mode 100644 index 0000000..512cae9 Binary files /dev/null and b/the8eam/open-iconic/png/arrow-circle-top-3x.png differ diff --git a/the8eam/open-iconic/png/arrow-circle-top-4x.png b/the8eam/open-iconic/png/arrow-circle-top-4x.png new file mode 100644 index 0000000..076b151 Binary files /dev/null and b/the8eam/open-iconic/png/arrow-circle-top-4x.png differ diff --git a/the8eam/open-iconic/png/arrow-circle-top-6x.png b/the8eam/open-iconic/png/arrow-circle-top-6x.png new file mode 100644 index 0000000..99f2a1d Binary files /dev/null and b/the8eam/open-iconic/png/arrow-circle-top-6x.png differ diff --git a/the8eam/open-iconic/png/arrow-circle-top-8x.png b/the8eam/open-iconic/png/arrow-circle-top-8x.png new file mode 100644 index 0000000..6937200 Binary files /dev/null and b/the8eam/open-iconic/png/arrow-circle-top-8x.png differ diff --git a/the8eam/open-iconic/png/arrow-circle-top.png b/the8eam/open-iconic/png/arrow-circle-top.png new file mode 100644 index 0000000..ceaf61c Binary files /dev/null and b/the8eam/open-iconic/png/arrow-circle-top.png differ diff --git a/the8eam/open-iconic/png/arrow-left-2x.png b/the8eam/open-iconic/png/arrow-left-2x.png new file mode 100644 index 0000000..50e0790 Binary files /dev/null and b/the8eam/open-iconic/png/arrow-left-2x.png differ diff --git a/the8eam/open-iconic/png/arrow-left-3x.png b/the8eam/open-iconic/png/arrow-left-3x.png new file mode 100644 index 0000000..79e300c Binary files /dev/null and b/the8eam/open-iconic/png/arrow-left-3x.png differ diff --git a/the8eam/open-iconic/png/arrow-left-4x.png b/the8eam/open-iconic/png/arrow-left-4x.png new file mode 100644 index 0000000..a7294db Binary files /dev/null and b/the8eam/open-iconic/png/arrow-left-4x.png differ diff --git a/the8eam/open-iconic/png/arrow-left-6x.png b/the8eam/open-iconic/png/arrow-left-6x.png new file mode 100644 index 0000000..b65a686 Binary files /dev/null and b/the8eam/open-iconic/png/arrow-left-6x.png differ diff --git a/the8eam/open-iconic/png/arrow-left-8x.png b/the8eam/open-iconic/png/arrow-left-8x.png new file mode 100644 index 0000000..9bc505d Binary files /dev/null and b/the8eam/open-iconic/png/arrow-left-8x.png differ diff --git a/the8eam/open-iconic/png/arrow-left.png b/the8eam/open-iconic/png/arrow-left.png new file mode 100644 index 0000000..ae60df4 Binary files /dev/null and b/the8eam/open-iconic/png/arrow-left.png differ diff --git a/the8eam/open-iconic/png/arrow-right-2x.png b/the8eam/open-iconic/png/arrow-right-2x.png new file mode 100644 index 0000000..0a02d33 Binary files /dev/null and b/the8eam/open-iconic/png/arrow-right-2x.png differ diff --git a/the8eam/open-iconic/png/arrow-right-3x.png b/the8eam/open-iconic/png/arrow-right-3x.png new file mode 100644 index 0000000..df941b5 Binary files /dev/null and b/the8eam/open-iconic/png/arrow-right-3x.png differ diff --git a/the8eam/open-iconic/png/arrow-right-4x.png b/the8eam/open-iconic/png/arrow-right-4x.png new file mode 100644 index 0000000..e87b407 Binary files /dev/null and b/the8eam/open-iconic/png/arrow-right-4x.png differ diff --git a/the8eam/open-iconic/png/arrow-right-6x.png b/the8eam/open-iconic/png/arrow-right-6x.png new file mode 100644 index 0000000..2ee850a Binary files /dev/null and b/the8eam/open-iconic/png/arrow-right-6x.png differ diff --git a/the8eam/open-iconic/png/arrow-right-8x.png b/the8eam/open-iconic/png/arrow-right-8x.png new file mode 100644 index 0000000..15da93c Binary files /dev/null and b/the8eam/open-iconic/png/arrow-right-8x.png differ diff --git a/the8eam/open-iconic/png/arrow-right.png b/the8eam/open-iconic/png/arrow-right.png new file mode 100644 index 0000000..a6ae9ff Binary files /dev/null and b/the8eam/open-iconic/png/arrow-right.png differ diff --git a/the8eam/open-iconic/png/arrow-thick-bottom-2x.png b/the8eam/open-iconic/png/arrow-thick-bottom-2x.png new file mode 100644 index 0000000..a513915 Binary files /dev/null and b/the8eam/open-iconic/png/arrow-thick-bottom-2x.png differ diff --git a/the8eam/open-iconic/png/arrow-thick-bottom-3x.png b/the8eam/open-iconic/png/arrow-thick-bottom-3x.png new file mode 100644 index 0000000..03d5925 Binary files /dev/null and b/the8eam/open-iconic/png/arrow-thick-bottom-3x.png differ diff --git a/the8eam/open-iconic/png/arrow-thick-bottom-4x.png b/the8eam/open-iconic/png/arrow-thick-bottom-4x.png new file mode 100644 index 0000000..2f4ee60 Binary files /dev/null and b/the8eam/open-iconic/png/arrow-thick-bottom-4x.png differ diff --git a/the8eam/open-iconic/png/arrow-thick-bottom-6x.png b/the8eam/open-iconic/png/arrow-thick-bottom-6x.png new file mode 100644 index 0000000..5683b2d Binary files /dev/null and b/the8eam/open-iconic/png/arrow-thick-bottom-6x.png differ diff --git a/the8eam/open-iconic/png/arrow-thick-bottom-8x.png b/the8eam/open-iconic/png/arrow-thick-bottom-8x.png new file mode 100644 index 0000000..faea3f3 Binary files /dev/null and b/the8eam/open-iconic/png/arrow-thick-bottom-8x.png differ diff --git a/the8eam/open-iconic/png/arrow-thick-bottom.png b/the8eam/open-iconic/png/arrow-thick-bottom.png new file mode 100644 index 0000000..2e0f9dc Binary files /dev/null and b/the8eam/open-iconic/png/arrow-thick-bottom.png differ diff --git a/the8eam/open-iconic/png/arrow-thick-left-2x.png b/the8eam/open-iconic/png/arrow-thick-left-2x.png new file mode 100644 index 0000000..bae1c64 Binary files /dev/null and b/the8eam/open-iconic/png/arrow-thick-left-2x.png differ diff --git a/the8eam/open-iconic/png/arrow-thick-left-3x.png b/the8eam/open-iconic/png/arrow-thick-left-3x.png new file mode 100644 index 0000000..f91944b Binary files /dev/null and b/the8eam/open-iconic/png/arrow-thick-left-3x.png differ diff --git a/the8eam/open-iconic/png/arrow-thick-left-4x.png b/the8eam/open-iconic/png/arrow-thick-left-4x.png new file mode 100644 index 0000000..700e953 Binary files /dev/null and b/the8eam/open-iconic/png/arrow-thick-left-4x.png differ diff --git a/the8eam/open-iconic/png/arrow-thick-left-6x.png b/the8eam/open-iconic/png/arrow-thick-left-6x.png new file mode 100644 index 0000000..10de7cf Binary files /dev/null and b/the8eam/open-iconic/png/arrow-thick-left-6x.png differ diff --git a/the8eam/open-iconic/png/arrow-thick-left-8x.png b/the8eam/open-iconic/png/arrow-thick-left-8x.png new file mode 100644 index 0000000..5a0ac0b Binary files /dev/null and b/the8eam/open-iconic/png/arrow-thick-left-8x.png differ diff --git a/the8eam/open-iconic/png/arrow-thick-left.png b/the8eam/open-iconic/png/arrow-thick-left.png new file mode 100644 index 0000000..11fdc3b Binary files /dev/null and b/the8eam/open-iconic/png/arrow-thick-left.png differ diff --git a/the8eam/open-iconic/png/arrow-thick-right-2x.png b/the8eam/open-iconic/png/arrow-thick-right-2x.png new file mode 100644 index 0000000..aa7fd1d Binary files /dev/null and b/the8eam/open-iconic/png/arrow-thick-right-2x.png differ diff --git a/the8eam/open-iconic/png/arrow-thick-right-3x.png b/the8eam/open-iconic/png/arrow-thick-right-3x.png new file mode 100644 index 0000000..478b0cb Binary files /dev/null and b/the8eam/open-iconic/png/arrow-thick-right-3x.png differ diff --git a/the8eam/open-iconic/png/arrow-thick-right-4x.png b/the8eam/open-iconic/png/arrow-thick-right-4x.png new file mode 100644 index 0000000..79f8b6d Binary files /dev/null and b/the8eam/open-iconic/png/arrow-thick-right-4x.png differ diff --git a/the8eam/open-iconic/png/arrow-thick-right-6x.png b/the8eam/open-iconic/png/arrow-thick-right-6x.png new file mode 100644 index 0000000..46ec7ac Binary files /dev/null and b/the8eam/open-iconic/png/arrow-thick-right-6x.png differ diff --git a/the8eam/open-iconic/png/arrow-thick-right-8x.png b/the8eam/open-iconic/png/arrow-thick-right-8x.png new file mode 100644 index 0000000..f701044 Binary files /dev/null and b/the8eam/open-iconic/png/arrow-thick-right-8x.png differ diff --git a/the8eam/open-iconic/png/arrow-thick-right.png b/the8eam/open-iconic/png/arrow-thick-right.png new file mode 100644 index 0000000..56c03af Binary files /dev/null and b/the8eam/open-iconic/png/arrow-thick-right.png differ diff --git a/the8eam/open-iconic/png/arrow-thick-top-2x.png b/the8eam/open-iconic/png/arrow-thick-top-2x.png new file mode 100644 index 0000000..7344037 Binary files /dev/null and b/the8eam/open-iconic/png/arrow-thick-top-2x.png differ diff --git a/the8eam/open-iconic/png/arrow-thick-top-3x.png b/the8eam/open-iconic/png/arrow-thick-top-3x.png new file mode 100644 index 0000000..b4adc12 Binary files /dev/null and b/the8eam/open-iconic/png/arrow-thick-top-3x.png differ diff --git a/the8eam/open-iconic/png/arrow-thick-top-4x.png b/the8eam/open-iconic/png/arrow-thick-top-4x.png new file mode 100644 index 0000000..dcfc378 Binary files /dev/null and b/the8eam/open-iconic/png/arrow-thick-top-4x.png differ diff --git a/the8eam/open-iconic/png/arrow-thick-top-6x.png b/the8eam/open-iconic/png/arrow-thick-top-6x.png new file mode 100644 index 0000000..3c23560 Binary files /dev/null and b/the8eam/open-iconic/png/arrow-thick-top-6x.png differ diff --git a/the8eam/open-iconic/png/arrow-thick-top-8x.png b/the8eam/open-iconic/png/arrow-thick-top-8x.png new file mode 100644 index 0000000..36130c4 Binary files /dev/null and b/the8eam/open-iconic/png/arrow-thick-top-8x.png differ diff --git a/the8eam/open-iconic/png/arrow-thick-top.png b/the8eam/open-iconic/png/arrow-thick-top.png new file mode 100644 index 0000000..1065e01 Binary files /dev/null and b/the8eam/open-iconic/png/arrow-thick-top.png differ diff --git a/the8eam/open-iconic/png/arrow-top-2x.png b/the8eam/open-iconic/png/arrow-top-2x.png new file mode 100644 index 0000000..c33da9a Binary files /dev/null and b/the8eam/open-iconic/png/arrow-top-2x.png differ diff --git a/the8eam/open-iconic/png/arrow-top-3x.png b/the8eam/open-iconic/png/arrow-top-3x.png new file mode 100644 index 0000000..a755ba4 Binary files /dev/null and b/the8eam/open-iconic/png/arrow-top-3x.png differ diff --git a/the8eam/open-iconic/png/arrow-top-4x.png b/the8eam/open-iconic/png/arrow-top-4x.png new file mode 100644 index 0000000..994ee06 Binary files /dev/null and b/the8eam/open-iconic/png/arrow-top-4x.png differ diff --git a/the8eam/open-iconic/png/arrow-top-6x.png b/the8eam/open-iconic/png/arrow-top-6x.png new file mode 100644 index 0000000..13ebb95 Binary files /dev/null and b/the8eam/open-iconic/png/arrow-top-6x.png differ diff --git a/the8eam/open-iconic/png/arrow-top-8x.png b/the8eam/open-iconic/png/arrow-top-8x.png new file mode 100644 index 0000000..8f805dd Binary files /dev/null and b/the8eam/open-iconic/png/arrow-top-8x.png differ diff --git a/the8eam/open-iconic/png/arrow-top.png b/the8eam/open-iconic/png/arrow-top.png new file mode 100644 index 0000000..5830c63 Binary files /dev/null and b/the8eam/open-iconic/png/arrow-top.png differ diff --git a/the8eam/open-iconic/png/audio-2x.png b/the8eam/open-iconic/png/audio-2x.png new file mode 100644 index 0000000..854b9d3 Binary files /dev/null and b/the8eam/open-iconic/png/audio-2x.png differ diff --git a/the8eam/open-iconic/png/audio-3x.png b/the8eam/open-iconic/png/audio-3x.png new file mode 100644 index 0000000..fb72618 Binary files /dev/null and b/the8eam/open-iconic/png/audio-3x.png differ diff --git a/the8eam/open-iconic/png/audio-4x.png b/the8eam/open-iconic/png/audio-4x.png new file mode 100644 index 0000000..0a8ce94 Binary files /dev/null and b/the8eam/open-iconic/png/audio-4x.png differ diff --git a/the8eam/open-iconic/png/audio-6x.png b/the8eam/open-iconic/png/audio-6x.png new file mode 100644 index 0000000..6ef278f Binary files /dev/null and b/the8eam/open-iconic/png/audio-6x.png differ diff --git a/the8eam/open-iconic/png/audio-8x.png b/the8eam/open-iconic/png/audio-8x.png new file mode 100644 index 0000000..f16dce7 Binary files /dev/null and b/the8eam/open-iconic/png/audio-8x.png differ diff --git a/the8eam/open-iconic/png/audio-spectrum-2x.png b/the8eam/open-iconic/png/audio-spectrum-2x.png new file mode 100644 index 0000000..b80b92d Binary files /dev/null and b/the8eam/open-iconic/png/audio-spectrum-2x.png differ diff --git a/the8eam/open-iconic/png/audio-spectrum-3x.png b/the8eam/open-iconic/png/audio-spectrum-3x.png new file mode 100644 index 0000000..4a232e1 Binary files /dev/null and b/the8eam/open-iconic/png/audio-spectrum-3x.png differ diff --git a/the8eam/open-iconic/png/audio-spectrum-4x.png b/the8eam/open-iconic/png/audio-spectrum-4x.png new file mode 100644 index 0000000..616d2d7 Binary files /dev/null and b/the8eam/open-iconic/png/audio-spectrum-4x.png differ diff --git a/the8eam/open-iconic/png/audio-spectrum-6x.png b/the8eam/open-iconic/png/audio-spectrum-6x.png new file mode 100644 index 0000000..5809427 Binary files /dev/null and b/the8eam/open-iconic/png/audio-spectrum-6x.png differ diff --git a/the8eam/open-iconic/png/audio-spectrum-8x.png b/the8eam/open-iconic/png/audio-spectrum-8x.png new file mode 100644 index 0000000..8d2b693 Binary files /dev/null and b/the8eam/open-iconic/png/audio-spectrum-8x.png differ diff --git a/the8eam/open-iconic/png/audio-spectrum.png b/the8eam/open-iconic/png/audio-spectrum.png new file mode 100644 index 0000000..5c3dc6d Binary files /dev/null and b/the8eam/open-iconic/png/audio-spectrum.png differ diff --git a/the8eam/open-iconic/png/audio.png b/the8eam/open-iconic/png/audio.png new file mode 100644 index 0000000..6042931 Binary files /dev/null and b/the8eam/open-iconic/png/audio.png differ diff --git a/the8eam/open-iconic/png/badge-2x.png b/the8eam/open-iconic/png/badge-2x.png new file mode 100644 index 0000000..1fa3fe2 Binary files /dev/null and b/the8eam/open-iconic/png/badge-2x.png differ diff --git a/the8eam/open-iconic/png/badge-3x.png b/the8eam/open-iconic/png/badge-3x.png new file mode 100644 index 0000000..c3db713 Binary files /dev/null and b/the8eam/open-iconic/png/badge-3x.png differ diff --git a/the8eam/open-iconic/png/badge-4x.png b/the8eam/open-iconic/png/badge-4x.png new file mode 100644 index 0000000..1f24ead Binary files /dev/null and b/the8eam/open-iconic/png/badge-4x.png differ diff --git a/the8eam/open-iconic/png/badge-6x.png b/the8eam/open-iconic/png/badge-6x.png new file mode 100644 index 0000000..12775ca Binary files /dev/null and b/the8eam/open-iconic/png/badge-6x.png differ diff --git a/the8eam/open-iconic/png/badge-8x.png b/the8eam/open-iconic/png/badge-8x.png new file mode 100644 index 0000000..3bf881e Binary files /dev/null and b/the8eam/open-iconic/png/badge-8x.png differ diff --git a/the8eam/open-iconic/png/badge.png b/the8eam/open-iconic/png/badge.png new file mode 100644 index 0000000..0caf8ac Binary files /dev/null and b/the8eam/open-iconic/png/badge.png differ diff --git a/the8eam/open-iconic/png/ban-2x.png b/the8eam/open-iconic/png/ban-2x.png new file mode 100644 index 0000000..c1b039f Binary files /dev/null and b/the8eam/open-iconic/png/ban-2x.png differ diff --git a/the8eam/open-iconic/png/ban-3x.png b/the8eam/open-iconic/png/ban-3x.png new file mode 100644 index 0000000..4481185 Binary files /dev/null and b/the8eam/open-iconic/png/ban-3x.png differ diff --git a/the8eam/open-iconic/png/ban-4x.png b/the8eam/open-iconic/png/ban-4x.png new file mode 100644 index 0000000..66080d8 Binary files /dev/null and b/the8eam/open-iconic/png/ban-4x.png differ diff --git a/the8eam/open-iconic/png/ban-6x.png b/the8eam/open-iconic/png/ban-6x.png new file mode 100644 index 0000000..8531278 Binary files /dev/null and b/the8eam/open-iconic/png/ban-6x.png differ diff --git a/the8eam/open-iconic/png/ban-8x.png b/the8eam/open-iconic/png/ban-8x.png new file mode 100644 index 0000000..2aebdf6 Binary files /dev/null and b/the8eam/open-iconic/png/ban-8x.png differ diff --git a/the8eam/open-iconic/png/ban.png b/the8eam/open-iconic/png/ban.png new file mode 100644 index 0000000..99f8fec Binary files /dev/null and b/the8eam/open-iconic/png/ban.png differ diff --git a/the8eam/open-iconic/png/bar-chart-2x.png b/the8eam/open-iconic/png/bar-chart-2x.png new file mode 100644 index 0000000..50a8341 Binary files /dev/null and b/the8eam/open-iconic/png/bar-chart-2x.png differ diff --git a/the8eam/open-iconic/png/bar-chart-3x.png b/the8eam/open-iconic/png/bar-chart-3x.png new file mode 100644 index 0000000..c3b0adb Binary files /dev/null and b/the8eam/open-iconic/png/bar-chart-3x.png differ diff --git a/the8eam/open-iconic/png/bar-chart-4x.png b/the8eam/open-iconic/png/bar-chart-4x.png new file mode 100644 index 0000000..541d211 Binary files /dev/null and b/the8eam/open-iconic/png/bar-chart-4x.png differ diff --git a/the8eam/open-iconic/png/bar-chart-6x.png b/the8eam/open-iconic/png/bar-chart-6x.png new file mode 100644 index 0000000..c4fdc1a Binary files /dev/null and b/the8eam/open-iconic/png/bar-chart-6x.png differ diff --git a/the8eam/open-iconic/png/bar-chart-8x.png b/the8eam/open-iconic/png/bar-chart-8x.png new file mode 100644 index 0000000..d12c50a Binary files /dev/null and b/the8eam/open-iconic/png/bar-chart-8x.png differ diff --git a/the8eam/open-iconic/png/bar-chart.png b/the8eam/open-iconic/png/bar-chart.png new file mode 100644 index 0000000..57df41c Binary files /dev/null and b/the8eam/open-iconic/png/bar-chart.png differ diff --git a/the8eam/open-iconic/png/basket-2x.png b/the8eam/open-iconic/png/basket-2x.png new file mode 100644 index 0000000..1846e0e Binary files /dev/null and b/the8eam/open-iconic/png/basket-2x.png differ diff --git a/the8eam/open-iconic/png/basket-3x.png b/the8eam/open-iconic/png/basket-3x.png new file mode 100644 index 0000000..e9fa58b Binary files /dev/null and b/the8eam/open-iconic/png/basket-3x.png differ diff --git a/the8eam/open-iconic/png/basket-4x.png b/the8eam/open-iconic/png/basket-4x.png new file mode 100644 index 0000000..5ea8960 Binary files /dev/null and b/the8eam/open-iconic/png/basket-4x.png differ diff --git a/the8eam/open-iconic/png/basket-6x.png b/the8eam/open-iconic/png/basket-6x.png new file mode 100644 index 0000000..9bdb42c Binary files /dev/null and b/the8eam/open-iconic/png/basket-6x.png differ diff --git a/the8eam/open-iconic/png/basket-8x.png b/the8eam/open-iconic/png/basket-8x.png new file mode 100644 index 0000000..f3b4392 Binary files /dev/null and b/the8eam/open-iconic/png/basket-8x.png differ diff --git a/the8eam/open-iconic/png/basket.png b/the8eam/open-iconic/png/basket.png new file mode 100644 index 0000000..57007cc Binary files /dev/null and b/the8eam/open-iconic/png/basket.png differ diff --git a/the8eam/open-iconic/png/battery-empty-2x.png b/the8eam/open-iconic/png/battery-empty-2x.png new file mode 100644 index 0000000..2d255bb Binary files /dev/null and b/the8eam/open-iconic/png/battery-empty-2x.png differ diff --git a/the8eam/open-iconic/png/battery-empty-3x.png b/the8eam/open-iconic/png/battery-empty-3x.png new file mode 100644 index 0000000..41e693a Binary files /dev/null and b/the8eam/open-iconic/png/battery-empty-3x.png differ diff --git a/the8eam/open-iconic/png/battery-empty-4x.png b/the8eam/open-iconic/png/battery-empty-4x.png new file mode 100644 index 0000000..6593ad0 Binary files /dev/null and b/the8eam/open-iconic/png/battery-empty-4x.png differ diff --git a/the8eam/open-iconic/png/battery-empty-6x.png b/the8eam/open-iconic/png/battery-empty-6x.png new file mode 100644 index 0000000..b603a93 Binary files /dev/null and b/the8eam/open-iconic/png/battery-empty-6x.png differ diff --git a/the8eam/open-iconic/png/battery-empty-8x.png b/the8eam/open-iconic/png/battery-empty-8x.png new file mode 100644 index 0000000..23cf2ad Binary files /dev/null and b/the8eam/open-iconic/png/battery-empty-8x.png differ diff --git a/the8eam/open-iconic/png/battery-empty.png b/the8eam/open-iconic/png/battery-empty.png new file mode 100644 index 0000000..cf78dba Binary files /dev/null and b/the8eam/open-iconic/png/battery-empty.png differ diff --git a/the8eam/open-iconic/png/battery-full-2x.png b/the8eam/open-iconic/png/battery-full-2x.png new file mode 100644 index 0000000..9c02f61 Binary files /dev/null and b/the8eam/open-iconic/png/battery-full-2x.png differ diff --git a/the8eam/open-iconic/png/battery-full-3x.png b/the8eam/open-iconic/png/battery-full-3x.png new file mode 100644 index 0000000..d36091e Binary files /dev/null and b/the8eam/open-iconic/png/battery-full-3x.png differ diff --git a/the8eam/open-iconic/png/battery-full-4x.png b/the8eam/open-iconic/png/battery-full-4x.png new file mode 100644 index 0000000..c56206d Binary files /dev/null and b/the8eam/open-iconic/png/battery-full-4x.png differ diff --git a/the8eam/open-iconic/png/battery-full-6x.png b/the8eam/open-iconic/png/battery-full-6x.png new file mode 100644 index 0000000..fc097a3 Binary files /dev/null and b/the8eam/open-iconic/png/battery-full-6x.png differ diff --git a/the8eam/open-iconic/png/battery-full-8x.png b/the8eam/open-iconic/png/battery-full-8x.png new file mode 100644 index 0000000..5ba7cf8 Binary files /dev/null and b/the8eam/open-iconic/png/battery-full-8x.png differ diff --git a/the8eam/open-iconic/png/battery-full.png b/the8eam/open-iconic/png/battery-full.png new file mode 100644 index 0000000..38488bd Binary files /dev/null and b/the8eam/open-iconic/png/battery-full.png differ diff --git a/the8eam/open-iconic/png/beaker-2x.png b/the8eam/open-iconic/png/beaker-2x.png new file mode 100644 index 0000000..d2e0a16 Binary files /dev/null and b/the8eam/open-iconic/png/beaker-2x.png differ diff --git a/the8eam/open-iconic/png/beaker-3x.png b/the8eam/open-iconic/png/beaker-3x.png new file mode 100644 index 0000000..6300019 Binary files /dev/null and b/the8eam/open-iconic/png/beaker-3x.png differ diff --git a/the8eam/open-iconic/png/beaker-4x.png b/the8eam/open-iconic/png/beaker-4x.png new file mode 100644 index 0000000..01d3750 Binary files /dev/null and b/the8eam/open-iconic/png/beaker-4x.png differ diff --git a/the8eam/open-iconic/png/beaker-6x.png b/the8eam/open-iconic/png/beaker-6x.png new file mode 100644 index 0000000..75f0fd6 Binary files /dev/null and b/the8eam/open-iconic/png/beaker-6x.png differ diff --git a/the8eam/open-iconic/png/beaker-8x.png b/the8eam/open-iconic/png/beaker-8x.png new file mode 100644 index 0000000..d652757 Binary files /dev/null and b/the8eam/open-iconic/png/beaker-8x.png differ diff --git a/the8eam/open-iconic/png/beaker.png b/the8eam/open-iconic/png/beaker.png new file mode 100644 index 0000000..4abc6df Binary files /dev/null and b/the8eam/open-iconic/png/beaker.png differ diff --git a/the8eam/open-iconic/png/bell-2x.png b/the8eam/open-iconic/png/bell-2x.png new file mode 100644 index 0000000..a14f5c4 Binary files /dev/null and b/the8eam/open-iconic/png/bell-2x.png differ diff --git a/the8eam/open-iconic/png/bell-3x.png b/the8eam/open-iconic/png/bell-3x.png new file mode 100644 index 0000000..aa17384 Binary files /dev/null and b/the8eam/open-iconic/png/bell-3x.png differ diff --git a/the8eam/open-iconic/png/bell-4x.png b/the8eam/open-iconic/png/bell-4x.png new file mode 100644 index 0000000..1e740fc Binary files /dev/null and b/the8eam/open-iconic/png/bell-4x.png differ diff --git a/the8eam/open-iconic/png/bell-6x.png b/the8eam/open-iconic/png/bell-6x.png new file mode 100644 index 0000000..8893776 Binary files /dev/null and b/the8eam/open-iconic/png/bell-6x.png differ diff --git a/the8eam/open-iconic/png/bell-8x.png b/the8eam/open-iconic/png/bell-8x.png new file mode 100644 index 0000000..07151da Binary files /dev/null and b/the8eam/open-iconic/png/bell-8x.png differ diff --git a/the8eam/open-iconic/png/bell.png b/the8eam/open-iconic/png/bell.png new file mode 100644 index 0000000..8e27b3f Binary files /dev/null and b/the8eam/open-iconic/png/bell.png differ diff --git a/the8eam/open-iconic/png/bluetooth-2x.png b/the8eam/open-iconic/png/bluetooth-2x.png new file mode 100644 index 0000000..35b7ad4 Binary files /dev/null and b/the8eam/open-iconic/png/bluetooth-2x.png differ diff --git a/the8eam/open-iconic/png/bluetooth-3x.png b/the8eam/open-iconic/png/bluetooth-3x.png new file mode 100644 index 0000000..630b241 Binary files /dev/null and b/the8eam/open-iconic/png/bluetooth-3x.png differ diff --git a/the8eam/open-iconic/png/bluetooth-4x.png b/the8eam/open-iconic/png/bluetooth-4x.png new file mode 100644 index 0000000..f1bbcc3 Binary files /dev/null and b/the8eam/open-iconic/png/bluetooth-4x.png differ diff --git a/the8eam/open-iconic/png/bluetooth-6x.png b/the8eam/open-iconic/png/bluetooth-6x.png new file mode 100644 index 0000000..d769578 Binary files /dev/null and b/the8eam/open-iconic/png/bluetooth-6x.png differ diff --git a/the8eam/open-iconic/png/bluetooth-8x.png b/the8eam/open-iconic/png/bluetooth-8x.png new file mode 100644 index 0000000..2ff3619 Binary files /dev/null and b/the8eam/open-iconic/png/bluetooth-8x.png differ diff --git a/the8eam/open-iconic/png/bluetooth.png b/the8eam/open-iconic/png/bluetooth.png new file mode 100644 index 0000000..a0447d3 Binary files /dev/null and b/the8eam/open-iconic/png/bluetooth.png differ diff --git a/the8eam/open-iconic/png/bold-2x.png b/the8eam/open-iconic/png/bold-2x.png new file mode 100644 index 0000000..96792d1 Binary files /dev/null and b/the8eam/open-iconic/png/bold-2x.png differ diff --git a/the8eam/open-iconic/png/bold-3x.png b/the8eam/open-iconic/png/bold-3x.png new file mode 100644 index 0000000..811deb7 Binary files /dev/null and b/the8eam/open-iconic/png/bold-3x.png differ diff --git a/the8eam/open-iconic/png/bold-4x.png b/the8eam/open-iconic/png/bold-4x.png new file mode 100644 index 0000000..45f1397 Binary files /dev/null and b/the8eam/open-iconic/png/bold-4x.png differ diff --git a/the8eam/open-iconic/png/bold-6x.png b/the8eam/open-iconic/png/bold-6x.png new file mode 100644 index 0000000..4abed66 Binary files /dev/null and b/the8eam/open-iconic/png/bold-6x.png differ diff --git a/the8eam/open-iconic/png/bold-8x.png b/the8eam/open-iconic/png/bold-8x.png new file mode 100644 index 0000000..bea0186 Binary files /dev/null and b/the8eam/open-iconic/png/bold-8x.png differ diff --git a/the8eam/open-iconic/png/bold.png b/the8eam/open-iconic/png/bold.png new file mode 100644 index 0000000..35fd05b Binary files /dev/null and b/the8eam/open-iconic/png/bold.png differ diff --git a/the8eam/open-iconic/png/bolt-2x.png b/the8eam/open-iconic/png/bolt-2x.png new file mode 100644 index 0000000..4adbcb1 Binary files /dev/null and b/the8eam/open-iconic/png/bolt-2x.png differ diff --git a/the8eam/open-iconic/png/bolt-3x.png b/the8eam/open-iconic/png/bolt-3x.png new file mode 100644 index 0000000..5319a50 Binary files /dev/null and b/the8eam/open-iconic/png/bolt-3x.png differ diff --git a/the8eam/open-iconic/png/bolt-4x.png b/the8eam/open-iconic/png/bolt-4x.png new file mode 100644 index 0000000..d144333 Binary files /dev/null and b/the8eam/open-iconic/png/bolt-4x.png differ diff --git a/the8eam/open-iconic/png/bolt-6x.png b/the8eam/open-iconic/png/bolt-6x.png new file mode 100644 index 0000000..eae8112 Binary files /dev/null and b/the8eam/open-iconic/png/bolt-6x.png differ diff --git a/the8eam/open-iconic/png/bolt-8x.png b/the8eam/open-iconic/png/bolt-8x.png new file mode 100644 index 0000000..95cb9c1 Binary files /dev/null and b/the8eam/open-iconic/png/bolt-8x.png differ diff --git a/the8eam/open-iconic/png/bolt.png b/the8eam/open-iconic/png/bolt.png new file mode 100644 index 0000000..eb20880 Binary files /dev/null and b/the8eam/open-iconic/png/bolt.png differ diff --git a/the8eam/open-iconic/png/book-2x.png b/the8eam/open-iconic/png/book-2x.png new file mode 100644 index 0000000..e880ba2 Binary files /dev/null and b/the8eam/open-iconic/png/book-2x.png differ diff --git a/the8eam/open-iconic/png/book-3x.png b/the8eam/open-iconic/png/book-3x.png new file mode 100644 index 0000000..d8df48b Binary files /dev/null and b/the8eam/open-iconic/png/book-3x.png differ diff --git a/the8eam/open-iconic/png/book-4x.png b/the8eam/open-iconic/png/book-4x.png new file mode 100644 index 0000000..f35f9fe Binary files /dev/null and b/the8eam/open-iconic/png/book-4x.png differ diff --git a/the8eam/open-iconic/png/book-6x.png b/the8eam/open-iconic/png/book-6x.png new file mode 100644 index 0000000..a1046a6 Binary files /dev/null and b/the8eam/open-iconic/png/book-6x.png differ diff --git a/the8eam/open-iconic/png/book-8x.png b/the8eam/open-iconic/png/book-8x.png new file mode 100644 index 0000000..a54a3e7 Binary files /dev/null and b/the8eam/open-iconic/png/book-8x.png differ diff --git a/the8eam/open-iconic/png/book.png b/the8eam/open-iconic/png/book.png new file mode 100644 index 0000000..43f0eca Binary files /dev/null and b/the8eam/open-iconic/png/book.png differ diff --git a/the8eam/open-iconic/png/bookmark-2x.png b/the8eam/open-iconic/png/bookmark-2x.png new file mode 100644 index 0000000..2b624c5 Binary files /dev/null and b/the8eam/open-iconic/png/bookmark-2x.png differ diff --git a/the8eam/open-iconic/png/bookmark-3x.png b/the8eam/open-iconic/png/bookmark-3x.png new file mode 100644 index 0000000..6d244b2 Binary files /dev/null and b/the8eam/open-iconic/png/bookmark-3x.png differ diff --git a/the8eam/open-iconic/png/bookmark-4x.png b/the8eam/open-iconic/png/bookmark-4x.png new file mode 100644 index 0000000..4c3c2a3 Binary files /dev/null and b/the8eam/open-iconic/png/bookmark-4x.png differ diff --git a/the8eam/open-iconic/png/bookmark-6x.png b/the8eam/open-iconic/png/bookmark-6x.png new file mode 100644 index 0000000..b0b5863 Binary files /dev/null and b/the8eam/open-iconic/png/bookmark-6x.png differ diff --git a/the8eam/open-iconic/png/bookmark-8x.png b/the8eam/open-iconic/png/bookmark-8x.png new file mode 100644 index 0000000..ad892d5 Binary files /dev/null and b/the8eam/open-iconic/png/bookmark-8x.png differ diff --git a/the8eam/open-iconic/png/bookmark.png b/the8eam/open-iconic/png/bookmark.png new file mode 100644 index 0000000..c1fb0b2 Binary files /dev/null and b/the8eam/open-iconic/png/bookmark.png differ diff --git a/the8eam/open-iconic/png/box-2x.png b/the8eam/open-iconic/png/box-2x.png new file mode 100644 index 0000000..e874d87 Binary files /dev/null and b/the8eam/open-iconic/png/box-2x.png differ diff --git a/the8eam/open-iconic/png/box-3x.png b/the8eam/open-iconic/png/box-3x.png new file mode 100644 index 0000000..a4ccd3a Binary files /dev/null and b/the8eam/open-iconic/png/box-3x.png differ diff --git a/the8eam/open-iconic/png/box-4x.png b/the8eam/open-iconic/png/box-4x.png new file mode 100644 index 0000000..9187998 Binary files /dev/null and b/the8eam/open-iconic/png/box-4x.png differ diff --git a/the8eam/open-iconic/png/box-6x.png b/the8eam/open-iconic/png/box-6x.png new file mode 100644 index 0000000..77ce68c Binary files /dev/null and b/the8eam/open-iconic/png/box-6x.png differ diff --git a/the8eam/open-iconic/png/box-8x.png b/the8eam/open-iconic/png/box-8x.png new file mode 100644 index 0000000..1c2bc3b Binary files /dev/null and b/the8eam/open-iconic/png/box-8x.png differ diff --git a/the8eam/open-iconic/png/box.png b/the8eam/open-iconic/png/box.png new file mode 100644 index 0000000..f7c095e Binary files /dev/null and b/the8eam/open-iconic/png/box.png differ diff --git a/the8eam/open-iconic/png/briefcase-2x.png b/the8eam/open-iconic/png/briefcase-2x.png new file mode 100644 index 0000000..7f8429b Binary files /dev/null and b/the8eam/open-iconic/png/briefcase-2x.png differ diff --git a/the8eam/open-iconic/png/briefcase-3x.png b/the8eam/open-iconic/png/briefcase-3x.png new file mode 100644 index 0000000..7c80ff2 Binary files /dev/null and b/the8eam/open-iconic/png/briefcase-3x.png differ diff --git a/the8eam/open-iconic/png/briefcase-4x.png b/the8eam/open-iconic/png/briefcase-4x.png new file mode 100644 index 0000000..8ca103a Binary files /dev/null and b/the8eam/open-iconic/png/briefcase-4x.png differ diff --git a/the8eam/open-iconic/png/briefcase-6x.png b/the8eam/open-iconic/png/briefcase-6x.png new file mode 100644 index 0000000..93bff8d Binary files /dev/null and b/the8eam/open-iconic/png/briefcase-6x.png differ diff --git a/the8eam/open-iconic/png/briefcase-8x.png b/the8eam/open-iconic/png/briefcase-8x.png new file mode 100644 index 0000000..83f646f Binary files /dev/null and b/the8eam/open-iconic/png/briefcase-8x.png differ diff --git a/the8eam/open-iconic/png/briefcase.png b/the8eam/open-iconic/png/briefcase.png new file mode 100644 index 0000000..85e6d58 Binary files /dev/null and b/the8eam/open-iconic/png/briefcase.png differ diff --git a/the8eam/open-iconic/png/british-pound-2x.png b/the8eam/open-iconic/png/british-pound-2x.png new file mode 100644 index 0000000..db321ef Binary files /dev/null and b/the8eam/open-iconic/png/british-pound-2x.png differ diff --git a/the8eam/open-iconic/png/british-pound-3x.png b/the8eam/open-iconic/png/british-pound-3x.png new file mode 100644 index 0000000..aa93c6a Binary files /dev/null and b/the8eam/open-iconic/png/british-pound-3x.png differ diff --git a/the8eam/open-iconic/png/british-pound-4x.png b/the8eam/open-iconic/png/british-pound-4x.png new file mode 100644 index 0000000..1b6449d Binary files /dev/null and b/the8eam/open-iconic/png/british-pound-4x.png differ diff --git a/the8eam/open-iconic/png/british-pound-6x.png b/the8eam/open-iconic/png/british-pound-6x.png new file mode 100644 index 0000000..b23ec72 Binary files /dev/null and b/the8eam/open-iconic/png/british-pound-6x.png differ diff --git a/the8eam/open-iconic/png/british-pound-8x.png b/the8eam/open-iconic/png/british-pound-8x.png new file mode 100644 index 0000000..da62a07 Binary files /dev/null and b/the8eam/open-iconic/png/british-pound-8x.png differ diff --git a/the8eam/open-iconic/png/british-pound.png b/the8eam/open-iconic/png/british-pound.png new file mode 100644 index 0000000..5af2891 Binary files /dev/null and b/the8eam/open-iconic/png/british-pound.png differ diff --git a/the8eam/open-iconic/png/browser-2x.png b/the8eam/open-iconic/png/browser-2x.png new file mode 100644 index 0000000..2a6efb0 Binary files /dev/null and b/the8eam/open-iconic/png/browser-2x.png differ diff --git a/the8eam/open-iconic/png/browser-3x.png b/the8eam/open-iconic/png/browser-3x.png new file mode 100644 index 0000000..a522694 Binary files /dev/null and b/the8eam/open-iconic/png/browser-3x.png differ diff --git a/the8eam/open-iconic/png/browser-4x.png b/the8eam/open-iconic/png/browser-4x.png new file mode 100644 index 0000000..5796d54 Binary files /dev/null and b/the8eam/open-iconic/png/browser-4x.png differ diff --git a/the8eam/open-iconic/png/browser-6x.png b/the8eam/open-iconic/png/browser-6x.png new file mode 100644 index 0000000..9cdd804 Binary files /dev/null and b/the8eam/open-iconic/png/browser-6x.png differ diff --git a/the8eam/open-iconic/png/browser-8x.png b/the8eam/open-iconic/png/browser-8x.png new file mode 100644 index 0000000..936ebd9 Binary files /dev/null and b/the8eam/open-iconic/png/browser-8x.png differ diff --git a/the8eam/open-iconic/png/browser.png b/the8eam/open-iconic/png/browser.png new file mode 100644 index 0000000..d471613 Binary files /dev/null and b/the8eam/open-iconic/png/browser.png differ diff --git a/the8eam/open-iconic/png/brush-2x.png b/the8eam/open-iconic/png/brush-2x.png new file mode 100644 index 0000000..0d8c4aa Binary files /dev/null and b/the8eam/open-iconic/png/brush-2x.png differ diff --git a/the8eam/open-iconic/png/brush-3x.png b/the8eam/open-iconic/png/brush-3x.png new file mode 100644 index 0000000..c8f478c Binary files /dev/null and b/the8eam/open-iconic/png/brush-3x.png differ diff --git a/the8eam/open-iconic/png/brush-4x.png b/the8eam/open-iconic/png/brush-4x.png new file mode 100644 index 0000000..30101ca Binary files /dev/null and b/the8eam/open-iconic/png/brush-4x.png differ diff --git a/the8eam/open-iconic/png/brush-6x.png b/the8eam/open-iconic/png/brush-6x.png new file mode 100644 index 0000000..80db566 Binary files /dev/null and b/the8eam/open-iconic/png/brush-6x.png differ diff --git a/the8eam/open-iconic/png/brush-8x.png b/the8eam/open-iconic/png/brush-8x.png new file mode 100644 index 0000000..09e7326 Binary files /dev/null and b/the8eam/open-iconic/png/brush-8x.png differ diff --git a/the8eam/open-iconic/png/brush.png b/the8eam/open-iconic/png/brush.png new file mode 100644 index 0000000..36a8111 Binary files /dev/null and b/the8eam/open-iconic/png/brush.png differ diff --git a/the8eam/open-iconic/png/bug-2x.png b/the8eam/open-iconic/png/bug-2x.png new file mode 100644 index 0000000..2279f41 Binary files /dev/null and b/the8eam/open-iconic/png/bug-2x.png differ diff --git a/the8eam/open-iconic/png/bug-3x.png b/the8eam/open-iconic/png/bug-3x.png new file mode 100644 index 0000000..96e2712 Binary files /dev/null and b/the8eam/open-iconic/png/bug-3x.png differ diff --git a/the8eam/open-iconic/png/bug-4x.png b/the8eam/open-iconic/png/bug-4x.png new file mode 100644 index 0000000..8c3df24 Binary files /dev/null and b/the8eam/open-iconic/png/bug-4x.png differ diff --git a/the8eam/open-iconic/png/bug-6x.png b/the8eam/open-iconic/png/bug-6x.png new file mode 100644 index 0000000..878e270 Binary files /dev/null and b/the8eam/open-iconic/png/bug-6x.png differ diff --git a/the8eam/open-iconic/png/bug-8x.png b/the8eam/open-iconic/png/bug-8x.png new file mode 100644 index 0000000..f9e99e0 Binary files /dev/null and b/the8eam/open-iconic/png/bug-8x.png differ diff --git a/the8eam/open-iconic/png/bug.png b/the8eam/open-iconic/png/bug.png new file mode 100644 index 0000000..10f8a6c Binary files /dev/null and b/the8eam/open-iconic/png/bug.png differ diff --git a/the8eam/open-iconic/png/bullhorn-2x.png b/the8eam/open-iconic/png/bullhorn-2x.png new file mode 100644 index 0000000..a26cebc Binary files /dev/null and b/the8eam/open-iconic/png/bullhorn-2x.png differ diff --git a/the8eam/open-iconic/png/bullhorn-3x.png b/the8eam/open-iconic/png/bullhorn-3x.png new file mode 100644 index 0000000..33e5c52 Binary files /dev/null and b/the8eam/open-iconic/png/bullhorn-3x.png differ diff --git a/the8eam/open-iconic/png/bullhorn-4x.png b/the8eam/open-iconic/png/bullhorn-4x.png new file mode 100644 index 0000000..85ba444 Binary files /dev/null and b/the8eam/open-iconic/png/bullhorn-4x.png differ diff --git a/the8eam/open-iconic/png/bullhorn-6x.png b/the8eam/open-iconic/png/bullhorn-6x.png new file mode 100644 index 0000000..58238a5 Binary files /dev/null and b/the8eam/open-iconic/png/bullhorn-6x.png differ diff --git a/the8eam/open-iconic/png/bullhorn-8x.png b/the8eam/open-iconic/png/bullhorn-8x.png new file mode 100644 index 0000000..2c39931 Binary files /dev/null and b/the8eam/open-iconic/png/bullhorn-8x.png differ diff --git a/the8eam/open-iconic/png/bullhorn.png b/the8eam/open-iconic/png/bullhorn.png new file mode 100644 index 0000000..65b0c48 Binary files /dev/null and b/the8eam/open-iconic/png/bullhorn.png differ diff --git a/the8eam/open-iconic/png/calculator-2x.png b/the8eam/open-iconic/png/calculator-2x.png new file mode 100644 index 0000000..0331de7 Binary files /dev/null and b/the8eam/open-iconic/png/calculator-2x.png differ diff --git a/the8eam/open-iconic/png/calculator-3x.png b/the8eam/open-iconic/png/calculator-3x.png new file mode 100644 index 0000000..721264c Binary files /dev/null and b/the8eam/open-iconic/png/calculator-3x.png differ diff --git a/the8eam/open-iconic/png/calculator-4x.png b/the8eam/open-iconic/png/calculator-4x.png new file mode 100644 index 0000000..0c8a573 Binary files /dev/null and b/the8eam/open-iconic/png/calculator-4x.png differ diff --git a/the8eam/open-iconic/png/calculator-6x.png b/the8eam/open-iconic/png/calculator-6x.png new file mode 100644 index 0000000..ce550a8 Binary files /dev/null and b/the8eam/open-iconic/png/calculator-6x.png differ diff --git a/the8eam/open-iconic/png/calculator-8x.png b/the8eam/open-iconic/png/calculator-8x.png new file mode 100644 index 0000000..443c989 Binary files /dev/null and b/the8eam/open-iconic/png/calculator-8x.png differ diff --git a/the8eam/open-iconic/png/calculator.png b/the8eam/open-iconic/png/calculator.png new file mode 100644 index 0000000..8218baa Binary files /dev/null and b/the8eam/open-iconic/png/calculator.png differ diff --git a/the8eam/open-iconic/png/calendar-2x.png b/the8eam/open-iconic/png/calendar-2x.png new file mode 100644 index 0000000..e27009b Binary files /dev/null and b/the8eam/open-iconic/png/calendar-2x.png differ diff --git a/the8eam/open-iconic/png/calendar-3x.png b/the8eam/open-iconic/png/calendar-3x.png new file mode 100644 index 0000000..74b6a26 Binary files /dev/null and b/the8eam/open-iconic/png/calendar-3x.png differ diff --git a/the8eam/open-iconic/png/calendar-4x.png b/the8eam/open-iconic/png/calendar-4x.png new file mode 100644 index 0000000..6365420 Binary files /dev/null and b/the8eam/open-iconic/png/calendar-4x.png differ diff --git a/the8eam/open-iconic/png/calendar-6x.png b/the8eam/open-iconic/png/calendar-6x.png new file mode 100644 index 0000000..5dddf33 Binary files /dev/null and b/the8eam/open-iconic/png/calendar-6x.png differ diff --git a/the8eam/open-iconic/png/calendar-8x.png b/the8eam/open-iconic/png/calendar-8x.png new file mode 100644 index 0000000..4f18300 Binary files /dev/null and b/the8eam/open-iconic/png/calendar-8x.png differ diff --git a/the8eam/open-iconic/png/calendar.png b/the8eam/open-iconic/png/calendar.png new file mode 100644 index 0000000..53bac5b Binary files /dev/null and b/the8eam/open-iconic/png/calendar.png differ diff --git a/the8eam/open-iconic/png/camera-slr-2x.png b/the8eam/open-iconic/png/camera-slr-2x.png new file mode 100644 index 0000000..c79553f Binary files /dev/null and b/the8eam/open-iconic/png/camera-slr-2x.png differ diff --git a/the8eam/open-iconic/png/camera-slr-3x.png b/the8eam/open-iconic/png/camera-slr-3x.png new file mode 100644 index 0000000..a278eb1 Binary files /dev/null and b/the8eam/open-iconic/png/camera-slr-3x.png differ diff --git a/the8eam/open-iconic/png/camera-slr-4x.png b/the8eam/open-iconic/png/camera-slr-4x.png new file mode 100644 index 0000000..4080079 Binary files /dev/null and b/the8eam/open-iconic/png/camera-slr-4x.png differ diff --git a/the8eam/open-iconic/png/camera-slr-6x.png b/the8eam/open-iconic/png/camera-slr-6x.png new file mode 100644 index 0000000..6b0f54d Binary files /dev/null and b/the8eam/open-iconic/png/camera-slr-6x.png differ diff --git a/the8eam/open-iconic/png/camera-slr-8x.png b/the8eam/open-iconic/png/camera-slr-8x.png new file mode 100644 index 0000000..96c23ba Binary files /dev/null and b/the8eam/open-iconic/png/camera-slr-8x.png differ diff --git a/the8eam/open-iconic/png/camera-slr.png b/the8eam/open-iconic/png/camera-slr.png new file mode 100644 index 0000000..7a87615 Binary files /dev/null and b/the8eam/open-iconic/png/camera-slr.png differ diff --git a/the8eam/open-iconic/png/caret-bottom-2x.png b/the8eam/open-iconic/png/caret-bottom-2x.png new file mode 100644 index 0000000..eddfd81 Binary files /dev/null and b/the8eam/open-iconic/png/caret-bottom-2x.png differ diff --git a/the8eam/open-iconic/png/caret-bottom-3x.png b/the8eam/open-iconic/png/caret-bottom-3x.png new file mode 100644 index 0000000..06796fa Binary files /dev/null and b/the8eam/open-iconic/png/caret-bottom-3x.png differ diff --git a/the8eam/open-iconic/png/caret-bottom-4x.png b/the8eam/open-iconic/png/caret-bottom-4x.png new file mode 100644 index 0000000..008f689 Binary files /dev/null and b/the8eam/open-iconic/png/caret-bottom-4x.png differ diff --git a/the8eam/open-iconic/png/caret-bottom-6x.png b/the8eam/open-iconic/png/caret-bottom-6x.png new file mode 100644 index 0000000..7103dbc Binary files /dev/null and b/the8eam/open-iconic/png/caret-bottom-6x.png differ diff --git a/the8eam/open-iconic/png/caret-bottom-8x.png b/the8eam/open-iconic/png/caret-bottom-8x.png new file mode 100644 index 0000000..2d0e90e Binary files /dev/null and b/the8eam/open-iconic/png/caret-bottom-8x.png differ diff --git a/the8eam/open-iconic/png/caret-bottom.png b/the8eam/open-iconic/png/caret-bottom.png new file mode 100644 index 0000000..d6243c9 Binary files /dev/null and b/the8eam/open-iconic/png/caret-bottom.png differ diff --git a/the8eam/open-iconic/png/caret-left-2x.png b/the8eam/open-iconic/png/caret-left-2x.png new file mode 100644 index 0000000..2dcacb3 Binary files /dev/null and b/the8eam/open-iconic/png/caret-left-2x.png differ diff --git a/the8eam/open-iconic/png/caret-left-3x.png b/the8eam/open-iconic/png/caret-left-3x.png new file mode 100644 index 0000000..db8403e Binary files /dev/null and b/the8eam/open-iconic/png/caret-left-3x.png differ diff --git a/the8eam/open-iconic/png/caret-left-4x.png b/the8eam/open-iconic/png/caret-left-4x.png new file mode 100644 index 0000000..2c6fafd Binary files /dev/null and b/the8eam/open-iconic/png/caret-left-4x.png differ diff --git a/the8eam/open-iconic/png/caret-left-6x.png b/the8eam/open-iconic/png/caret-left-6x.png new file mode 100644 index 0000000..cb47cea Binary files /dev/null and b/the8eam/open-iconic/png/caret-left-6x.png differ diff --git a/the8eam/open-iconic/png/caret-left-8x.png b/the8eam/open-iconic/png/caret-left-8x.png new file mode 100644 index 0000000..0df3b2c Binary files /dev/null and b/the8eam/open-iconic/png/caret-left-8x.png differ diff --git a/the8eam/open-iconic/png/caret-left.png b/the8eam/open-iconic/png/caret-left.png new file mode 100644 index 0000000..afc8664 Binary files /dev/null and b/the8eam/open-iconic/png/caret-left.png differ diff --git a/the8eam/open-iconic/png/caret-right-2x.png b/the8eam/open-iconic/png/caret-right-2x.png new file mode 100644 index 0000000..ddf7594 Binary files /dev/null and b/the8eam/open-iconic/png/caret-right-2x.png differ diff --git a/the8eam/open-iconic/png/caret-right-3x.png b/the8eam/open-iconic/png/caret-right-3x.png new file mode 100644 index 0000000..0c5df4f Binary files /dev/null and b/the8eam/open-iconic/png/caret-right-3x.png differ diff --git a/the8eam/open-iconic/png/caret-right-4x.png b/the8eam/open-iconic/png/caret-right-4x.png new file mode 100644 index 0000000..99e1243 Binary files /dev/null and b/the8eam/open-iconic/png/caret-right-4x.png differ diff --git a/the8eam/open-iconic/png/caret-right-6x.png b/the8eam/open-iconic/png/caret-right-6x.png new file mode 100644 index 0000000..821f076 Binary files /dev/null and b/the8eam/open-iconic/png/caret-right-6x.png differ diff --git a/the8eam/open-iconic/png/caret-right-8x.png b/the8eam/open-iconic/png/caret-right-8x.png new file mode 100644 index 0000000..2be0f4d Binary files /dev/null and b/the8eam/open-iconic/png/caret-right-8x.png differ diff --git a/the8eam/open-iconic/png/caret-right.png b/the8eam/open-iconic/png/caret-right.png new file mode 100644 index 0000000..4c5ddc3 Binary files /dev/null and b/the8eam/open-iconic/png/caret-right.png differ diff --git a/the8eam/open-iconic/png/caret-top-2x.png b/the8eam/open-iconic/png/caret-top-2x.png new file mode 100644 index 0000000..94f9d9b Binary files /dev/null and b/the8eam/open-iconic/png/caret-top-2x.png differ diff --git a/the8eam/open-iconic/png/caret-top-3x.png b/the8eam/open-iconic/png/caret-top-3x.png new file mode 100644 index 0000000..9e60c37 Binary files /dev/null and b/the8eam/open-iconic/png/caret-top-3x.png differ diff --git a/the8eam/open-iconic/png/caret-top-4x.png b/the8eam/open-iconic/png/caret-top-4x.png new file mode 100644 index 0000000..8e8f66a Binary files /dev/null and b/the8eam/open-iconic/png/caret-top-4x.png differ diff --git a/the8eam/open-iconic/png/caret-top-6x.png b/the8eam/open-iconic/png/caret-top-6x.png new file mode 100644 index 0000000..d38179e Binary files /dev/null and b/the8eam/open-iconic/png/caret-top-6x.png differ diff --git a/the8eam/open-iconic/png/caret-top-8x.png b/the8eam/open-iconic/png/caret-top-8x.png new file mode 100644 index 0000000..b7eb212 Binary files /dev/null and b/the8eam/open-iconic/png/caret-top-8x.png differ diff --git a/the8eam/open-iconic/png/caret-top.png b/the8eam/open-iconic/png/caret-top.png new file mode 100644 index 0000000..a5f5189 Binary files /dev/null and b/the8eam/open-iconic/png/caret-top.png differ diff --git a/the8eam/open-iconic/png/cart-2x.png b/the8eam/open-iconic/png/cart-2x.png new file mode 100644 index 0000000..cd010ba Binary files /dev/null and b/the8eam/open-iconic/png/cart-2x.png differ diff --git a/the8eam/open-iconic/png/cart-3x.png b/the8eam/open-iconic/png/cart-3x.png new file mode 100644 index 0000000..975bbff Binary files /dev/null and b/the8eam/open-iconic/png/cart-3x.png differ diff --git a/the8eam/open-iconic/png/cart-4x.png b/the8eam/open-iconic/png/cart-4x.png new file mode 100644 index 0000000..76e1c2c Binary files /dev/null and b/the8eam/open-iconic/png/cart-4x.png differ diff --git a/the8eam/open-iconic/png/cart-6x.png b/the8eam/open-iconic/png/cart-6x.png new file mode 100644 index 0000000..b82938a Binary files /dev/null and b/the8eam/open-iconic/png/cart-6x.png differ diff --git a/the8eam/open-iconic/png/cart-8x.png b/the8eam/open-iconic/png/cart-8x.png new file mode 100644 index 0000000..9cf9e91 Binary files /dev/null and b/the8eam/open-iconic/png/cart-8x.png differ diff --git a/the8eam/open-iconic/png/cart.png b/the8eam/open-iconic/png/cart.png new file mode 100644 index 0000000..bcc3e27 Binary files /dev/null and b/the8eam/open-iconic/png/cart.png differ diff --git a/the8eam/open-iconic/png/chat-2x.png b/the8eam/open-iconic/png/chat-2x.png new file mode 100644 index 0000000..bf2ddea Binary files /dev/null and b/the8eam/open-iconic/png/chat-2x.png differ diff --git a/the8eam/open-iconic/png/chat-3x.png b/the8eam/open-iconic/png/chat-3x.png new file mode 100644 index 0000000..72aa593 Binary files /dev/null and b/the8eam/open-iconic/png/chat-3x.png differ diff --git a/the8eam/open-iconic/png/chat-4x.png b/the8eam/open-iconic/png/chat-4x.png new file mode 100644 index 0000000..d312e7d Binary files /dev/null and b/the8eam/open-iconic/png/chat-4x.png differ diff --git a/the8eam/open-iconic/png/chat-6x.png b/the8eam/open-iconic/png/chat-6x.png new file mode 100644 index 0000000..18a8ee4 Binary files /dev/null and b/the8eam/open-iconic/png/chat-6x.png differ diff --git a/the8eam/open-iconic/png/chat-8x.png b/the8eam/open-iconic/png/chat-8x.png new file mode 100644 index 0000000..95dcdac Binary files /dev/null and b/the8eam/open-iconic/png/chat-8x.png differ diff --git a/the8eam/open-iconic/png/chat.png b/the8eam/open-iconic/png/chat.png new file mode 100644 index 0000000..7c41db4 Binary files /dev/null and b/the8eam/open-iconic/png/chat.png differ diff --git a/the8eam/open-iconic/png/check-2x.png b/the8eam/open-iconic/png/check-2x.png new file mode 100644 index 0000000..92a6add Binary files /dev/null and b/the8eam/open-iconic/png/check-2x.png differ diff --git a/the8eam/open-iconic/png/check-3x.png b/the8eam/open-iconic/png/check-3x.png new file mode 100644 index 0000000..95f2e13 Binary files /dev/null and b/the8eam/open-iconic/png/check-3x.png differ diff --git a/the8eam/open-iconic/png/check-4x.png b/the8eam/open-iconic/png/check-4x.png new file mode 100644 index 0000000..6e35153 Binary files /dev/null and b/the8eam/open-iconic/png/check-4x.png differ diff --git a/the8eam/open-iconic/png/check-6x.png b/the8eam/open-iconic/png/check-6x.png new file mode 100644 index 0000000..82a18b3 Binary files /dev/null and b/the8eam/open-iconic/png/check-6x.png differ diff --git a/the8eam/open-iconic/png/check-8x.png b/the8eam/open-iconic/png/check-8x.png new file mode 100644 index 0000000..5ee78c0 Binary files /dev/null and b/the8eam/open-iconic/png/check-8x.png differ diff --git a/the8eam/open-iconic/png/check.png b/the8eam/open-iconic/png/check.png new file mode 100644 index 0000000..4d3e955 Binary files /dev/null and b/the8eam/open-iconic/png/check.png differ diff --git a/the8eam/open-iconic/png/chevron-bottom-2x.png b/the8eam/open-iconic/png/chevron-bottom-2x.png new file mode 100644 index 0000000..431f44a Binary files /dev/null and b/the8eam/open-iconic/png/chevron-bottom-2x.png differ diff --git a/the8eam/open-iconic/png/chevron-bottom-3x.png b/the8eam/open-iconic/png/chevron-bottom-3x.png new file mode 100644 index 0000000..a1a3bce Binary files /dev/null and b/the8eam/open-iconic/png/chevron-bottom-3x.png differ diff --git a/the8eam/open-iconic/png/chevron-bottom-4x.png b/the8eam/open-iconic/png/chevron-bottom-4x.png new file mode 100644 index 0000000..d46a231 Binary files /dev/null and b/the8eam/open-iconic/png/chevron-bottom-4x.png differ diff --git a/the8eam/open-iconic/png/chevron-bottom-6x.png b/the8eam/open-iconic/png/chevron-bottom-6x.png new file mode 100644 index 0000000..2585f91 Binary files /dev/null and b/the8eam/open-iconic/png/chevron-bottom-6x.png differ diff --git a/the8eam/open-iconic/png/chevron-bottom-8x.png b/the8eam/open-iconic/png/chevron-bottom-8x.png new file mode 100644 index 0000000..9a9ddad Binary files /dev/null and b/the8eam/open-iconic/png/chevron-bottom-8x.png differ diff --git a/the8eam/open-iconic/png/chevron-bottom.png b/the8eam/open-iconic/png/chevron-bottom.png new file mode 100644 index 0000000..e225c6e Binary files /dev/null and b/the8eam/open-iconic/png/chevron-bottom.png differ diff --git a/the8eam/open-iconic/png/chevron-left-2x.png b/the8eam/open-iconic/png/chevron-left-2x.png new file mode 100644 index 0000000..0c2adbc Binary files /dev/null and b/the8eam/open-iconic/png/chevron-left-2x.png differ diff --git a/the8eam/open-iconic/png/chevron-left-3x.png b/the8eam/open-iconic/png/chevron-left-3x.png new file mode 100644 index 0000000..f16a3ab Binary files /dev/null and b/the8eam/open-iconic/png/chevron-left-3x.png differ diff --git a/the8eam/open-iconic/png/chevron-left-4x.png b/the8eam/open-iconic/png/chevron-left-4x.png new file mode 100644 index 0000000..881e081 Binary files /dev/null and b/the8eam/open-iconic/png/chevron-left-4x.png differ diff --git a/the8eam/open-iconic/png/chevron-left-6x.png b/the8eam/open-iconic/png/chevron-left-6x.png new file mode 100644 index 0000000..ea4808e Binary files /dev/null and b/the8eam/open-iconic/png/chevron-left-6x.png differ diff --git a/the8eam/open-iconic/png/chevron-left-8x.png b/the8eam/open-iconic/png/chevron-left-8x.png new file mode 100644 index 0000000..88145af Binary files /dev/null and b/the8eam/open-iconic/png/chevron-left-8x.png differ diff --git a/the8eam/open-iconic/png/chevron-left.png b/the8eam/open-iconic/png/chevron-left.png new file mode 100644 index 0000000..39ad778 Binary files /dev/null and b/the8eam/open-iconic/png/chevron-left.png differ diff --git a/the8eam/open-iconic/png/chevron-right-2x.png b/the8eam/open-iconic/png/chevron-right-2x.png new file mode 100644 index 0000000..c89ea5f Binary files /dev/null and b/the8eam/open-iconic/png/chevron-right-2x.png differ diff --git a/the8eam/open-iconic/png/chevron-right-3x.png b/the8eam/open-iconic/png/chevron-right-3x.png new file mode 100644 index 0000000..b8d9362 Binary files /dev/null and b/the8eam/open-iconic/png/chevron-right-3x.png differ diff --git a/the8eam/open-iconic/png/chevron-right-4x.png b/the8eam/open-iconic/png/chevron-right-4x.png new file mode 100644 index 0000000..303c0b5 Binary files /dev/null and b/the8eam/open-iconic/png/chevron-right-4x.png differ diff --git a/the8eam/open-iconic/png/chevron-right-6x.png b/the8eam/open-iconic/png/chevron-right-6x.png new file mode 100644 index 0000000..7fe7f0a Binary files /dev/null and b/the8eam/open-iconic/png/chevron-right-6x.png differ diff --git a/the8eam/open-iconic/png/chevron-right-8x.png b/the8eam/open-iconic/png/chevron-right-8x.png new file mode 100644 index 0000000..c4934b4 Binary files /dev/null and b/the8eam/open-iconic/png/chevron-right-8x.png differ diff --git a/the8eam/open-iconic/png/chevron-right.png b/the8eam/open-iconic/png/chevron-right.png new file mode 100644 index 0000000..7b4fecc Binary files /dev/null and b/the8eam/open-iconic/png/chevron-right.png differ diff --git a/the8eam/open-iconic/png/chevron-top-2x.png b/the8eam/open-iconic/png/chevron-top-2x.png new file mode 100644 index 0000000..80040fd Binary files /dev/null and b/the8eam/open-iconic/png/chevron-top-2x.png differ diff --git a/the8eam/open-iconic/png/chevron-top-3x.png b/the8eam/open-iconic/png/chevron-top-3x.png new file mode 100644 index 0000000..d9c01ba Binary files /dev/null and b/the8eam/open-iconic/png/chevron-top-3x.png differ diff --git a/the8eam/open-iconic/png/chevron-top-4x.png b/the8eam/open-iconic/png/chevron-top-4x.png new file mode 100644 index 0000000..e86bf3f Binary files /dev/null and b/the8eam/open-iconic/png/chevron-top-4x.png differ diff --git a/the8eam/open-iconic/png/chevron-top-6x.png b/the8eam/open-iconic/png/chevron-top-6x.png new file mode 100644 index 0000000..00de84b Binary files /dev/null and b/the8eam/open-iconic/png/chevron-top-6x.png differ diff --git a/the8eam/open-iconic/png/chevron-top-8x.png b/the8eam/open-iconic/png/chevron-top-8x.png new file mode 100644 index 0000000..6d2c323 Binary files /dev/null and b/the8eam/open-iconic/png/chevron-top-8x.png differ diff --git a/the8eam/open-iconic/png/chevron-top.png b/the8eam/open-iconic/png/chevron-top.png new file mode 100644 index 0000000..baa61ef Binary files /dev/null and b/the8eam/open-iconic/png/chevron-top.png differ diff --git a/the8eam/open-iconic/png/circle-check-2x.png b/the8eam/open-iconic/png/circle-check-2x.png new file mode 100644 index 0000000..1aa02cc Binary files /dev/null and b/the8eam/open-iconic/png/circle-check-2x.png differ diff --git a/the8eam/open-iconic/png/circle-check-3x.png b/the8eam/open-iconic/png/circle-check-3x.png new file mode 100644 index 0000000..c3dcb0f Binary files /dev/null and b/the8eam/open-iconic/png/circle-check-3x.png differ diff --git a/the8eam/open-iconic/png/circle-check-4x.png b/the8eam/open-iconic/png/circle-check-4x.png new file mode 100644 index 0000000..67982b0 Binary files /dev/null and b/the8eam/open-iconic/png/circle-check-4x.png differ diff --git a/the8eam/open-iconic/png/circle-check-6x.png b/the8eam/open-iconic/png/circle-check-6x.png new file mode 100644 index 0000000..22d8b38 Binary files /dev/null and b/the8eam/open-iconic/png/circle-check-6x.png differ diff --git a/the8eam/open-iconic/png/circle-check-8x.png b/the8eam/open-iconic/png/circle-check-8x.png new file mode 100644 index 0000000..fdb1133 Binary files /dev/null and b/the8eam/open-iconic/png/circle-check-8x.png differ diff --git a/the8eam/open-iconic/png/circle-check.png b/the8eam/open-iconic/png/circle-check.png new file mode 100644 index 0000000..7533d9e Binary files /dev/null and b/the8eam/open-iconic/png/circle-check.png differ diff --git a/the8eam/open-iconic/png/circle-x-2x.png b/the8eam/open-iconic/png/circle-x-2x.png new file mode 100644 index 0000000..526501f Binary files /dev/null and b/the8eam/open-iconic/png/circle-x-2x.png differ diff --git a/the8eam/open-iconic/png/circle-x-3x.png b/the8eam/open-iconic/png/circle-x-3x.png new file mode 100644 index 0000000..d92a360 Binary files /dev/null and b/the8eam/open-iconic/png/circle-x-3x.png differ diff --git a/the8eam/open-iconic/png/circle-x-4x.png b/the8eam/open-iconic/png/circle-x-4x.png new file mode 100644 index 0000000..50d5470 Binary files /dev/null and b/the8eam/open-iconic/png/circle-x-4x.png differ diff --git a/the8eam/open-iconic/png/circle-x-6x.png b/the8eam/open-iconic/png/circle-x-6x.png new file mode 100644 index 0000000..a9a5bb7 Binary files /dev/null and b/the8eam/open-iconic/png/circle-x-6x.png differ diff --git a/the8eam/open-iconic/png/circle-x-8x.png b/the8eam/open-iconic/png/circle-x-8x.png new file mode 100644 index 0000000..94e01f1 Binary files /dev/null and b/the8eam/open-iconic/png/circle-x-8x.png differ diff --git a/the8eam/open-iconic/png/circle-x.png b/the8eam/open-iconic/png/circle-x.png new file mode 100644 index 0000000..4f448c9 Binary files /dev/null and b/the8eam/open-iconic/png/circle-x.png differ diff --git a/the8eam/open-iconic/png/clipboard-2x.png b/the8eam/open-iconic/png/clipboard-2x.png new file mode 100644 index 0000000..838095e Binary files /dev/null and b/the8eam/open-iconic/png/clipboard-2x.png differ diff --git a/the8eam/open-iconic/png/clipboard-3x.png b/the8eam/open-iconic/png/clipboard-3x.png new file mode 100644 index 0000000..7804db9 Binary files /dev/null and b/the8eam/open-iconic/png/clipboard-3x.png differ diff --git a/the8eam/open-iconic/png/clipboard-4x.png b/the8eam/open-iconic/png/clipboard-4x.png new file mode 100644 index 0000000..5ac2ff6 Binary files /dev/null and b/the8eam/open-iconic/png/clipboard-4x.png differ diff --git a/the8eam/open-iconic/png/clipboard-6x.png b/the8eam/open-iconic/png/clipboard-6x.png new file mode 100644 index 0000000..6bea04e Binary files /dev/null and b/the8eam/open-iconic/png/clipboard-6x.png differ diff --git a/the8eam/open-iconic/png/clipboard-8x.png b/the8eam/open-iconic/png/clipboard-8x.png new file mode 100644 index 0000000..cb8ad54 Binary files /dev/null and b/the8eam/open-iconic/png/clipboard-8x.png differ diff --git a/the8eam/open-iconic/png/clipboard.png b/the8eam/open-iconic/png/clipboard.png new file mode 100644 index 0000000..70e58fd Binary files /dev/null and b/the8eam/open-iconic/png/clipboard.png differ diff --git a/the8eam/open-iconic/png/clock-2x.png b/the8eam/open-iconic/png/clock-2x.png new file mode 100644 index 0000000..1751918 Binary files /dev/null and b/the8eam/open-iconic/png/clock-2x.png differ diff --git a/the8eam/open-iconic/png/clock-3x.png b/the8eam/open-iconic/png/clock-3x.png new file mode 100644 index 0000000..168520f Binary files /dev/null and b/the8eam/open-iconic/png/clock-3x.png differ diff --git a/the8eam/open-iconic/png/clock-4x.png b/the8eam/open-iconic/png/clock-4x.png new file mode 100644 index 0000000..c227d84 Binary files /dev/null and b/the8eam/open-iconic/png/clock-4x.png differ diff --git a/the8eam/open-iconic/png/clock-6x.png b/the8eam/open-iconic/png/clock-6x.png new file mode 100644 index 0000000..ec364e3 Binary files /dev/null and b/the8eam/open-iconic/png/clock-6x.png differ diff --git a/the8eam/open-iconic/png/clock-8x.png b/the8eam/open-iconic/png/clock-8x.png new file mode 100644 index 0000000..045f32c Binary files /dev/null and b/the8eam/open-iconic/png/clock-8x.png differ diff --git a/the8eam/open-iconic/png/clock.png b/the8eam/open-iconic/png/clock.png new file mode 100644 index 0000000..686b47e Binary files /dev/null and b/the8eam/open-iconic/png/clock.png differ diff --git a/the8eam/open-iconic/png/cloud-2x.png b/the8eam/open-iconic/png/cloud-2x.png new file mode 100644 index 0000000..f072a45 Binary files /dev/null and b/the8eam/open-iconic/png/cloud-2x.png differ diff --git a/the8eam/open-iconic/png/cloud-3x.png b/the8eam/open-iconic/png/cloud-3x.png new file mode 100644 index 0000000..2daf3b2 Binary files /dev/null and b/the8eam/open-iconic/png/cloud-3x.png differ diff --git a/the8eam/open-iconic/png/cloud-4x.png b/the8eam/open-iconic/png/cloud-4x.png new file mode 100644 index 0000000..2b25bc7 Binary files /dev/null and b/the8eam/open-iconic/png/cloud-4x.png differ diff --git a/the8eam/open-iconic/png/cloud-6x.png b/the8eam/open-iconic/png/cloud-6x.png new file mode 100644 index 0000000..98fb703 Binary files /dev/null and b/the8eam/open-iconic/png/cloud-6x.png differ diff --git a/the8eam/open-iconic/png/cloud-8x.png b/the8eam/open-iconic/png/cloud-8x.png new file mode 100644 index 0000000..98bce4f Binary files /dev/null and b/the8eam/open-iconic/png/cloud-8x.png differ diff --git a/the8eam/open-iconic/png/cloud-download-2x.png b/the8eam/open-iconic/png/cloud-download-2x.png new file mode 100644 index 0000000..48c80fe Binary files /dev/null and b/the8eam/open-iconic/png/cloud-download-2x.png differ diff --git a/the8eam/open-iconic/png/cloud-download-3x.png b/the8eam/open-iconic/png/cloud-download-3x.png new file mode 100644 index 0000000..8e41229 Binary files /dev/null and b/the8eam/open-iconic/png/cloud-download-3x.png differ diff --git a/the8eam/open-iconic/png/cloud-download-4x.png b/the8eam/open-iconic/png/cloud-download-4x.png new file mode 100644 index 0000000..b1a3c73 Binary files /dev/null and b/the8eam/open-iconic/png/cloud-download-4x.png differ diff --git a/the8eam/open-iconic/png/cloud-download-6x.png b/the8eam/open-iconic/png/cloud-download-6x.png new file mode 100644 index 0000000..9a4c3b7 Binary files /dev/null and b/the8eam/open-iconic/png/cloud-download-6x.png differ diff --git a/the8eam/open-iconic/png/cloud-download-8x.png b/the8eam/open-iconic/png/cloud-download-8x.png new file mode 100644 index 0000000..0ca2095 Binary files /dev/null and b/the8eam/open-iconic/png/cloud-download-8x.png differ diff --git a/the8eam/open-iconic/png/cloud-download.png b/the8eam/open-iconic/png/cloud-download.png new file mode 100644 index 0000000..730dc30 Binary files /dev/null and b/the8eam/open-iconic/png/cloud-download.png differ diff --git a/the8eam/open-iconic/png/cloud-upload-2x.png b/the8eam/open-iconic/png/cloud-upload-2x.png new file mode 100644 index 0000000..680286e Binary files /dev/null and b/the8eam/open-iconic/png/cloud-upload-2x.png differ diff --git a/the8eam/open-iconic/png/cloud-upload-3x.png b/the8eam/open-iconic/png/cloud-upload-3x.png new file mode 100644 index 0000000..dbeeaef Binary files /dev/null and b/the8eam/open-iconic/png/cloud-upload-3x.png differ diff --git a/the8eam/open-iconic/png/cloud-upload-4x.png b/the8eam/open-iconic/png/cloud-upload-4x.png new file mode 100644 index 0000000..4a3488b Binary files /dev/null and b/the8eam/open-iconic/png/cloud-upload-4x.png differ diff --git a/the8eam/open-iconic/png/cloud-upload-6x.png b/the8eam/open-iconic/png/cloud-upload-6x.png new file mode 100644 index 0000000..38225b8 Binary files /dev/null and b/the8eam/open-iconic/png/cloud-upload-6x.png differ diff --git a/the8eam/open-iconic/png/cloud-upload-8x.png b/the8eam/open-iconic/png/cloud-upload-8x.png new file mode 100644 index 0000000..f77cfce Binary files /dev/null and b/the8eam/open-iconic/png/cloud-upload-8x.png differ diff --git a/the8eam/open-iconic/png/cloud-upload.png b/the8eam/open-iconic/png/cloud-upload.png new file mode 100644 index 0000000..6a8fa82 Binary files /dev/null and b/the8eam/open-iconic/png/cloud-upload.png differ diff --git a/the8eam/open-iconic/png/cloud.png b/the8eam/open-iconic/png/cloud.png new file mode 100644 index 0000000..5b9100a Binary files /dev/null and b/the8eam/open-iconic/png/cloud.png differ diff --git a/the8eam/open-iconic/png/cloudy-2x.png b/the8eam/open-iconic/png/cloudy-2x.png new file mode 100644 index 0000000..26339ed Binary files /dev/null and b/the8eam/open-iconic/png/cloudy-2x.png differ diff --git a/the8eam/open-iconic/png/cloudy-3x.png b/the8eam/open-iconic/png/cloudy-3x.png new file mode 100644 index 0000000..410bb6c Binary files /dev/null and b/the8eam/open-iconic/png/cloudy-3x.png differ diff --git a/the8eam/open-iconic/png/cloudy-4x.png b/the8eam/open-iconic/png/cloudy-4x.png new file mode 100644 index 0000000..ed36c29 Binary files /dev/null and b/the8eam/open-iconic/png/cloudy-4x.png differ diff --git a/the8eam/open-iconic/png/cloudy-6x.png b/the8eam/open-iconic/png/cloudy-6x.png new file mode 100644 index 0000000..e54b009 Binary files /dev/null and b/the8eam/open-iconic/png/cloudy-6x.png differ diff --git a/the8eam/open-iconic/png/cloudy-8x.png b/the8eam/open-iconic/png/cloudy-8x.png new file mode 100644 index 0000000..291924a Binary files /dev/null and b/the8eam/open-iconic/png/cloudy-8x.png differ diff --git a/the8eam/open-iconic/png/cloudy.png b/the8eam/open-iconic/png/cloudy.png new file mode 100644 index 0000000..a2b54b7 Binary files /dev/null and b/the8eam/open-iconic/png/cloudy.png differ diff --git a/the8eam/open-iconic/png/code-2x.png b/the8eam/open-iconic/png/code-2x.png new file mode 100644 index 0000000..f75b30e Binary files /dev/null and b/the8eam/open-iconic/png/code-2x.png differ diff --git a/the8eam/open-iconic/png/code-3x.png b/the8eam/open-iconic/png/code-3x.png new file mode 100644 index 0000000..ab8a402 Binary files /dev/null and b/the8eam/open-iconic/png/code-3x.png differ diff --git a/the8eam/open-iconic/png/code-4x.png b/the8eam/open-iconic/png/code-4x.png new file mode 100644 index 0000000..652d2c9 Binary files /dev/null and b/the8eam/open-iconic/png/code-4x.png differ diff --git a/the8eam/open-iconic/png/code-6x.png b/the8eam/open-iconic/png/code-6x.png new file mode 100644 index 0000000..2d28893 Binary files /dev/null and b/the8eam/open-iconic/png/code-6x.png differ diff --git a/the8eam/open-iconic/png/code-8x.png b/the8eam/open-iconic/png/code-8x.png new file mode 100644 index 0000000..943cbb7 Binary files /dev/null and b/the8eam/open-iconic/png/code-8x.png differ diff --git a/the8eam/open-iconic/png/code.png b/the8eam/open-iconic/png/code.png new file mode 100644 index 0000000..a70db73 Binary files /dev/null and b/the8eam/open-iconic/png/code.png differ diff --git a/the8eam/open-iconic/png/cog-2x.png b/the8eam/open-iconic/png/cog-2x.png new file mode 100644 index 0000000..7ae9541 Binary files /dev/null and b/the8eam/open-iconic/png/cog-2x.png differ diff --git a/the8eam/open-iconic/png/cog-3x.png b/the8eam/open-iconic/png/cog-3x.png new file mode 100644 index 0000000..efca316 Binary files /dev/null and b/the8eam/open-iconic/png/cog-3x.png differ diff --git a/the8eam/open-iconic/png/cog-4x.png b/the8eam/open-iconic/png/cog-4x.png new file mode 100644 index 0000000..749b2c6 Binary files /dev/null and b/the8eam/open-iconic/png/cog-4x.png differ diff --git a/the8eam/open-iconic/png/cog-6x.png b/the8eam/open-iconic/png/cog-6x.png new file mode 100644 index 0000000..4d510ff Binary files /dev/null and b/the8eam/open-iconic/png/cog-6x.png differ diff --git a/the8eam/open-iconic/png/cog-8x.png b/the8eam/open-iconic/png/cog-8x.png new file mode 100644 index 0000000..e5fe848 Binary files /dev/null and b/the8eam/open-iconic/png/cog-8x.png differ diff --git a/the8eam/open-iconic/png/cog.png b/the8eam/open-iconic/png/cog.png new file mode 100644 index 0000000..71bd141 Binary files /dev/null and b/the8eam/open-iconic/png/cog.png differ diff --git a/the8eam/open-iconic/png/collapse-down-2x.png b/the8eam/open-iconic/png/collapse-down-2x.png new file mode 100644 index 0000000..c58368d Binary files /dev/null and b/the8eam/open-iconic/png/collapse-down-2x.png differ diff --git a/the8eam/open-iconic/png/collapse-down-3x.png b/the8eam/open-iconic/png/collapse-down-3x.png new file mode 100644 index 0000000..f8d456a Binary files /dev/null and b/the8eam/open-iconic/png/collapse-down-3x.png differ diff --git a/the8eam/open-iconic/png/collapse-down-4x.png b/the8eam/open-iconic/png/collapse-down-4x.png new file mode 100644 index 0000000..890c9e3 Binary files /dev/null and b/the8eam/open-iconic/png/collapse-down-4x.png differ diff --git a/the8eam/open-iconic/png/collapse-down-6x.png b/the8eam/open-iconic/png/collapse-down-6x.png new file mode 100644 index 0000000..1102a59 Binary files /dev/null and b/the8eam/open-iconic/png/collapse-down-6x.png differ diff --git a/the8eam/open-iconic/png/collapse-down-8x.png b/the8eam/open-iconic/png/collapse-down-8x.png new file mode 100644 index 0000000..385f3eb Binary files /dev/null and b/the8eam/open-iconic/png/collapse-down-8x.png differ diff --git a/the8eam/open-iconic/png/collapse-down.png b/the8eam/open-iconic/png/collapse-down.png new file mode 100644 index 0000000..12dd120 Binary files /dev/null and b/the8eam/open-iconic/png/collapse-down.png differ diff --git a/the8eam/open-iconic/png/collapse-left-2x.png b/the8eam/open-iconic/png/collapse-left-2x.png new file mode 100644 index 0000000..4879fcf Binary files /dev/null and b/the8eam/open-iconic/png/collapse-left-2x.png differ diff --git a/the8eam/open-iconic/png/collapse-left-3x.png b/the8eam/open-iconic/png/collapse-left-3x.png new file mode 100644 index 0000000..802cb28 Binary files /dev/null and b/the8eam/open-iconic/png/collapse-left-3x.png differ diff --git a/the8eam/open-iconic/png/collapse-left-4x.png b/the8eam/open-iconic/png/collapse-left-4x.png new file mode 100644 index 0000000..dea4959 Binary files /dev/null and b/the8eam/open-iconic/png/collapse-left-4x.png differ diff --git a/the8eam/open-iconic/png/collapse-left-6x.png b/the8eam/open-iconic/png/collapse-left-6x.png new file mode 100644 index 0000000..58e0ac2 Binary files /dev/null and b/the8eam/open-iconic/png/collapse-left-6x.png differ diff --git a/the8eam/open-iconic/png/collapse-left-8x.png b/the8eam/open-iconic/png/collapse-left-8x.png new file mode 100644 index 0000000..3fb4ef7 Binary files /dev/null and b/the8eam/open-iconic/png/collapse-left-8x.png differ diff --git a/the8eam/open-iconic/png/collapse-left.png b/the8eam/open-iconic/png/collapse-left.png new file mode 100644 index 0000000..96bd24a Binary files /dev/null and b/the8eam/open-iconic/png/collapse-left.png differ diff --git a/the8eam/open-iconic/png/collapse-right-2x.png b/the8eam/open-iconic/png/collapse-right-2x.png new file mode 100644 index 0000000..902c713 Binary files /dev/null and b/the8eam/open-iconic/png/collapse-right-2x.png differ diff --git a/the8eam/open-iconic/png/collapse-right-3x.png b/the8eam/open-iconic/png/collapse-right-3x.png new file mode 100644 index 0000000..eba661f Binary files /dev/null and b/the8eam/open-iconic/png/collapse-right-3x.png differ diff --git a/the8eam/open-iconic/png/collapse-right-4x.png b/the8eam/open-iconic/png/collapse-right-4x.png new file mode 100644 index 0000000..54f90c4 Binary files /dev/null and b/the8eam/open-iconic/png/collapse-right-4x.png differ diff --git a/the8eam/open-iconic/png/collapse-right-6x.png b/the8eam/open-iconic/png/collapse-right-6x.png new file mode 100644 index 0000000..860cfe1 Binary files /dev/null and b/the8eam/open-iconic/png/collapse-right-6x.png differ diff --git a/the8eam/open-iconic/png/collapse-right-8x.png b/the8eam/open-iconic/png/collapse-right-8x.png new file mode 100644 index 0000000..105372b Binary files /dev/null and b/the8eam/open-iconic/png/collapse-right-8x.png differ diff --git a/the8eam/open-iconic/png/collapse-right.png b/the8eam/open-iconic/png/collapse-right.png new file mode 100644 index 0000000..6f99547 Binary files /dev/null and b/the8eam/open-iconic/png/collapse-right.png differ diff --git a/the8eam/open-iconic/png/collapse-up-2x.png b/the8eam/open-iconic/png/collapse-up-2x.png new file mode 100644 index 0000000..dd4bb90 Binary files /dev/null and b/the8eam/open-iconic/png/collapse-up-2x.png differ diff --git a/the8eam/open-iconic/png/collapse-up-3x.png b/the8eam/open-iconic/png/collapse-up-3x.png new file mode 100644 index 0000000..6f4ace4 Binary files /dev/null and b/the8eam/open-iconic/png/collapse-up-3x.png differ diff --git a/the8eam/open-iconic/png/collapse-up-4x.png b/the8eam/open-iconic/png/collapse-up-4x.png new file mode 100644 index 0000000..8b21fa4 Binary files /dev/null and b/the8eam/open-iconic/png/collapse-up-4x.png differ diff --git a/the8eam/open-iconic/png/collapse-up-6x.png b/the8eam/open-iconic/png/collapse-up-6x.png new file mode 100644 index 0000000..7713488 Binary files /dev/null and b/the8eam/open-iconic/png/collapse-up-6x.png differ diff --git a/the8eam/open-iconic/png/collapse-up-8x.png b/the8eam/open-iconic/png/collapse-up-8x.png new file mode 100644 index 0000000..de892be Binary files /dev/null and b/the8eam/open-iconic/png/collapse-up-8x.png differ diff --git a/the8eam/open-iconic/png/collapse-up.png b/the8eam/open-iconic/png/collapse-up.png new file mode 100644 index 0000000..78ec0ed Binary files /dev/null and b/the8eam/open-iconic/png/collapse-up.png differ diff --git a/the8eam/open-iconic/png/command-2x.png b/the8eam/open-iconic/png/command-2x.png new file mode 100644 index 0000000..2a95e53 Binary files /dev/null and b/the8eam/open-iconic/png/command-2x.png differ diff --git a/the8eam/open-iconic/png/command-3x.png b/the8eam/open-iconic/png/command-3x.png new file mode 100644 index 0000000..56aad3d Binary files /dev/null and b/the8eam/open-iconic/png/command-3x.png differ diff --git a/the8eam/open-iconic/png/command-4x.png b/the8eam/open-iconic/png/command-4x.png new file mode 100644 index 0000000..bf53c4d Binary files /dev/null and b/the8eam/open-iconic/png/command-4x.png differ diff --git a/the8eam/open-iconic/png/command-6x.png b/the8eam/open-iconic/png/command-6x.png new file mode 100644 index 0000000..4ea37f8 Binary files /dev/null and b/the8eam/open-iconic/png/command-6x.png differ diff --git a/the8eam/open-iconic/png/command-8x.png b/the8eam/open-iconic/png/command-8x.png new file mode 100644 index 0000000..b5d5ce9 Binary files /dev/null and b/the8eam/open-iconic/png/command-8x.png differ diff --git a/the8eam/open-iconic/png/command.png b/the8eam/open-iconic/png/command.png new file mode 100644 index 0000000..6adf8a4 Binary files /dev/null and b/the8eam/open-iconic/png/command.png differ diff --git a/the8eam/open-iconic/png/comment-square-2x.png b/the8eam/open-iconic/png/comment-square-2x.png new file mode 100644 index 0000000..9dab9e1 Binary files /dev/null and b/the8eam/open-iconic/png/comment-square-2x.png differ diff --git a/the8eam/open-iconic/png/comment-square-3x.png b/the8eam/open-iconic/png/comment-square-3x.png new file mode 100644 index 0000000..ab304cd Binary files /dev/null and b/the8eam/open-iconic/png/comment-square-3x.png differ diff --git a/the8eam/open-iconic/png/comment-square-4x.png b/the8eam/open-iconic/png/comment-square-4x.png new file mode 100644 index 0000000..b6fe4ab Binary files /dev/null and b/the8eam/open-iconic/png/comment-square-4x.png differ diff --git a/the8eam/open-iconic/png/comment-square-6x.png b/the8eam/open-iconic/png/comment-square-6x.png new file mode 100644 index 0000000..688100b Binary files /dev/null and b/the8eam/open-iconic/png/comment-square-6x.png differ diff --git a/the8eam/open-iconic/png/comment-square-8x.png b/the8eam/open-iconic/png/comment-square-8x.png new file mode 100644 index 0000000..3f92eb8 Binary files /dev/null and b/the8eam/open-iconic/png/comment-square-8x.png differ diff --git a/the8eam/open-iconic/png/comment-square.png b/the8eam/open-iconic/png/comment-square.png new file mode 100644 index 0000000..2729a3d Binary files /dev/null and b/the8eam/open-iconic/png/comment-square.png differ diff --git a/the8eam/open-iconic/png/compass-2x.png b/the8eam/open-iconic/png/compass-2x.png new file mode 100644 index 0000000..351b83a Binary files /dev/null and b/the8eam/open-iconic/png/compass-2x.png differ diff --git a/the8eam/open-iconic/png/compass-3x.png b/the8eam/open-iconic/png/compass-3x.png new file mode 100644 index 0000000..189e188 Binary files /dev/null and b/the8eam/open-iconic/png/compass-3x.png differ diff --git a/the8eam/open-iconic/png/compass-4x.png b/the8eam/open-iconic/png/compass-4x.png new file mode 100644 index 0000000..e38f913 Binary files /dev/null and b/the8eam/open-iconic/png/compass-4x.png differ diff --git a/the8eam/open-iconic/png/compass-6x.png b/the8eam/open-iconic/png/compass-6x.png new file mode 100644 index 0000000..f853ffa Binary files /dev/null and b/the8eam/open-iconic/png/compass-6x.png differ diff --git a/the8eam/open-iconic/png/compass-8x.png b/the8eam/open-iconic/png/compass-8x.png new file mode 100644 index 0000000..5cdfb78 Binary files /dev/null and b/the8eam/open-iconic/png/compass-8x.png differ diff --git a/the8eam/open-iconic/png/compass.png b/the8eam/open-iconic/png/compass.png new file mode 100644 index 0000000..f0d82f5 Binary files /dev/null and b/the8eam/open-iconic/png/compass.png differ diff --git a/the8eam/open-iconic/png/contrast-2x.png b/the8eam/open-iconic/png/contrast-2x.png new file mode 100644 index 0000000..b0a1f6d Binary files /dev/null and b/the8eam/open-iconic/png/contrast-2x.png differ diff --git a/the8eam/open-iconic/png/contrast-3x.png b/the8eam/open-iconic/png/contrast-3x.png new file mode 100644 index 0000000..5209f71 Binary files /dev/null and b/the8eam/open-iconic/png/contrast-3x.png differ diff --git a/the8eam/open-iconic/png/contrast-4x.png b/the8eam/open-iconic/png/contrast-4x.png new file mode 100644 index 0000000..d80b4c2 Binary files /dev/null and b/the8eam/open-iconic/png/contrast-4x.png differ diff --git a/the8eam/open-iconic/png/contrast-6x.png b/the8eam/open-iconic/png/contrast-6x.png new file mode 100644 index 0000000..12583db Binary files /dev/null and b/the8eam/open-iconic/png/contrast-6x.png differ diff --git a/the8eam/open-iconic/png/contrast-8x.png b/the8eam/open-iconic/png/contrast-8x.png new file mode 100644 index 0000000..a59724d Binary files /dev/null and b/the8eam/open-iconic/png/contrast-8x.png differ diff --git a/the8eam/open-iconic/png/contrast.png b/the8eam/open-iconic/png/contrast.png new file mode 100644 index 0000000..8aee70e Binary files /dev/null and b/the8eam/open-iconic/png/contrast.png differ diff --git a/the8eam/open-iconic/png/copywriting-2x.png b/the8eam/open-iconic/png/copywriting-2x.png new file mode 100644 index 0000000..a62e983 Binary files /dev/null and b/the8eam/open-iconic/png/copywriting-2x.png differ diff --git a/the8eam/open-iconic/png/copywriting-3x.png b/the8eam/open-iconic/png/copywriting-3x.png new file mode 100644 index 0000000..1531e40 Binary files /dev/null and b/the8eam/open-iconic/png/copywriting-3x.png differ diff --git a/the8eam/open-iconic/png/copywriting-4x.png b/the8eam/open-iconic/png/copywriting-4x.png new file mode 100644 index 0000000..000002f Binary files /dev/null and b/the8eam/open-iconic/png/copywriting-4x.png differ diff --git a/the8eam/open-iconic/png/copywriting-6x.png b/the8eam/open-iconic/png/copywriting-6x.png new file mode 100644 index 0000000..1c22287 Binary files /dev/null and b/the8eam/open-iconic/png/copywriting-6x.png differ diff --git a/the8eam/open-iconic/png/copywriting-8x.png b/the8eam/open-iconic/png/copywriting-8x.png new file mode 100644 index 0000000..d94224e Binary files /dev/null and b/the8eam/open-iconic/png/copywriting-8x.png differ diff --git a/the8eam/open-iconic/png/copywriting.png b/the8eam/open-iconic/png/copywriting.png new file mode 100644 index 0000000..3a5ee7e Binary files /dev/null and b/the8eam/open-iconic/png/copywriting.png differ diff --git a/the8eam/open-iconic/png/credit-card-2x.png b/the8eam/open-iconic/png/credit-card-2x.png new file mode 100644 index 0000000..8bb210d Binary files /dev/null and b/the8eam/open-iconic/png/credit-card-2x.png differ diff --git a/the8eam/open-iconic/png/credit-card-3x.png b/the8eam/open-iconic/png/credit-card-3x.png new file mode 100644 index 0000000..80bd106 Binary files /dev/null and b/the8eam/open-iconic/png/credit-card-3x.png differ diff --git a/the8eam/open-iconic/png/credit-card-4x.png b/the8eam/open-iconic/png/credit-card-4x.png new file mode 100644 index 0000000..a29823c Binary files /dev/null and b/the8eam/open-iconic/png/credit-card-4x.png differ diff --git a/the8eam/open-iconic/png/credit-card-6x.png b/the8eam/open-iconic/png/credit-card-6x.png new file mode 100644 index 0000000..da37a33 Binary files /dev/null and b/the8eam/open-iconic/png/credit-card-6x.png differ diff --git a/the8eam/open-iconic/png/credit-card-8x.png b/the8eam/open-iconic/png/credit-card-8x.png new file mode 100644 index 0000000..0e9ed2f Binary files /dev/null and b/the8eam/open-iconic/png/credit-card-8x.png differ diff --git a/the8eam/open-iconic/png/credit-card.png b/the8eam/open-iconic/png/credit-card.png new file mode 100644 index 0000000..989dee9 Binary files /dev/null and b/the8eam/open-iconic/png/credit-card.png differ diff --git a/the8eam/open-iconic/png/crop-2x.png b/the8eam/open-iconic/png/crop-2x.png new file mode 100644 index 0000000..a1cc813 Binary files /dev/null and b/the8eam/open-iconic/png/crop-2x.png differ diff --git a/the8eam/open-iconic/png/crop-3x.png b/the8eam/open-iconic/png/crop-3x.png new file mode 100644 index 0000000..005ffea Binary files /dev/null and b/the8eam/open-iconic/png/crop-3x.png differ diff --git a/the8eam/open-iconic/png/crop-4x.png b/the8eam/open-iconic/png/crop-4x.png new file mode 100644 index 0000000..f92f884 Binary files /dev/null and b/the8eam/open-iconic/png/crop-4x.png differ diff --git a/the8eam/open-iconic/png/crop-6x.png b/the8eam/open-iconic/png/crop-6x.png new file mode 100644 index 0000000..bd1235b Binary files /dev/null and b/the8eam/open-iconic/png/crop-6x.png differ diff --git a/the8eam/open-iconic/png/crop-8x.png b/the8eam/open-iconic/png/crop-8x.png new file mode 100644 index 0000000..5ac5fe4 Binary files /dev/null and b/the8eam/open-iconic/png/crop-8x.png differ diff --git a/the8eam/open-iconic/png/crop.png b/the8eam/open-iconic/png/crop.png new file mode 100644 index 0000000..783e395 Binary files /dev/null and b/the8eam/open-iconic/png/crop.png differ diff --git a/the8eam/open-iconic/png/dashboard-2x.png b/the8eam/open-iconic/png/dashboard-2x.png new file mode 100644 index 0000000..7525e18 Binary files /dev/null and b/the8eam/open-iconic/png/dashboard-2x.png differ diff --git a/the8eam/open-iconic/png/dashboard-3x.png b/the8eam/open-iconic/png/dashboard-3x.png new file mode 100644 index 0000000..7e0d515 Binary files /dev/null and b/the8eam/open-iconic/png/dashboard-3x.png differ diff --git a/the8eam/open-iconic/png/dashboard-4x.png b/the8eam/open-iconic/png/dashboard-4x.png new file mode 100644 index 0000000..f46a621 Binary files /dev/null and b/the8eam/open-iconic/png/dashboard-4x.png differ diff --git a/the8eam/open-iconic/png/dashboard-6x.png b/the8eam/open-iconic/png/dashboard-6x.png new file mode 100644 index 0000000..84fb473 Binary files /dev/null and b/the8eam/open-iconic/png/dashboard-6x.png differ diff --git a/the8eam/open-iconic/png/dashboard-8x.png b/the8eam/open-iconic/png/dashboard-8x.png new file mode 100644 index 0000000..6b088ae Binary files /dev/null and b/the8eam/open-iconic/png/dashboard-8x.png differ diff --git a/the8eam/open-iconic/png/dashboard.png b/the8eam/open-iconic/png/dashboard.png new file mode 100644 index 0000000..4aae0fc Binary files /dev/null and b/the8eam/open-iconic/png/dashboard.png differ diff --git a/the8eam/open-iconic/png/data-transfer-download-2x.png b/the8eam/open-iconic/png/data-transfer-download-2x.png new file mode 100644 index 0000000..02672a1 Binary files /dev/null and b/the8eam/open-iconic/png/data-transfer-download-2x.png differ diff --git a/the8eam/open-iconic/png/data-transfer-download-3x.png b/the8eam/open-iconic/png/data-transfer-download-3x.png new file mode 100644 index 0000000..f2557ab Binary files /dev/null and b/the8eam/open-iconic/png/data-transfer-download-3x.png differ diff --git a/the8eam/open-iconic/png/data-transfer-download-4x.png b/the8eam/open-iconic/png/data-transfer-download-4x.png new file mode 100644 index 0000000..542f9d9 Binary files /dev/null and b/the8eam/open-iconic/png/data-transfer-download-4x.png differ diff --git a/the8eam/open-iconic/png/data-transfer-download-6x.png b/the8eam/open-iconic/png/data-transfer-download-6x.png new file mode 100644 index 0000000..9757797 Binary files /dev/null and b/the8eam/open-iconic/png/data-transfer-download-6x.png differ diff --git a/the8eam/open-iconic/png/data-transfer-download-8x.png b/the8eam/open-iconic/png/data-transfer-download-8x.png new file mode 100644 index 0000000..dc2b2fc Binary files /dev/null and b/the8eam/open-iconic/png/data-transfer-download-8x.png differ diff --git a/the8eam/open-iconic/png/data-transfer-download.png b/the8eam/open-iconic/png/data-transfer-download.png new file mode 100644 index 0000000..9b41e80 Binary files /dev/null and b/the8eam/open-iconic/png/data-transfer-download.png differ diff --git a/the8eam/open-iconic/png/data-transfer-upload-2x.png b/the8eam/open-iconic/png/data-transfer-upload-2x.png new file mode 100644 index 0000000..71d50ae Binary files /dev/null and b/the8eam/open-iconic/png/data-transfer-upload-2x.png differ diff --git a/the8eam/open-iconic/png/data-transfer-upload-3x.png b/the8eam/open-iconic/png/data-transfer-upload-3x.png new file mode 100644 index 0000000..be0f1a0 Binary files /dev/null and b/the8eam/open-iconic/png/data-transfer-upload-3x.png differ diff --git a/the8eam/open-iconic/png/data-transfer-upload-4x.png b/the8eam/open-iconic/png/data-transfer-upload-4x.png new file mode 100644 index 0000000..09bc01f Binary files /dev/null and b/the8eam/open-iconic/png/data-transfer-upload-4x.png differ diff --git a/the8eam/open-iconic/png/data-transfer-upload-6x.png b/the8eam/open-iconic/png/data-transfer-upload-6x.png new file mode 100644 index 0000000..854eaf9 Binary files /dev/null and b/the8eam/open-iconic/png/data-transfer-upload-6x.png differ diff --git a/the8eam/open-iconic/png/data-transfer-upload-8x.png b/the8eam/open-iconic/png/data-transfer-upload-8x.png new file mode 100644 index 0000000..c5055ca Binary files /dev/null and b/the8eam/open-iconic/png/data-transfer-upload-8x.png differ diff --git a/the8eam/open-iconic/png/data-transfer-upload.png b/the8eam/open-iconic/png/data-transfer-upload.png new file mode 100644 index 0000000..9896b47 Binary files /dev/null and b/the8eam/open-iconic/png/data-transfer-upload.png differ diff --git a/the8eam/open-iconic/png/delete-2x.png b/the8eam/open-iconic/png/delete-2x.png new file mode 100644 index 0000000..56af490 Binary files /dev/null and b/the8eam/open-iconic/png/delete-2x.png differ diff --git a/the8eam/open-iconic/png/delete-3x.png b/the8eam/open-iconic/png/delete-3x.png new file mode 100644 index 0000000..37cf31d Binary files /dev/null and b/the8eam/open-iconic/png/delete-3x.png differ diff --git a/the8eam/open-iconic/png/delete-4x.png b/the8eam/open-iconic/png/delete-4x.png new file mode 100644 index 0000000..15bf05b Binary files /dev/null and b/the8eam/open-iconic/png/delete-4x.png differ diff --git a/the8eam/open-iconic/png/delete-6x.png b/the8eam/open-iconic/png/delete-6x.png new file mode 100644 index 0000000..5974a57 Binary files /dev/null and b/the8eam/open-iconic/png/delete-6x.png differ diff --git a/the8eam/open-iconic/png/delete-8x.png b/the8eam/open-iconic/png/delete-8x.png new file mode 100644 index 0000000..7005bd3 Binary files /dev/null and b/the8eam/open-iconic/png/delete-8x.png differ diff --git a/the8eam/open-iconic/png/delete.png b/the8eam/open-iconic/png/delete.png new file mode 100644 index 0000000..93ebadf Binary files /dev/null and b/the8eam/open-iconic/png/delete.png differ diff --git a/the8eam/open-iconic/png/dial-2x.png b/the8eam/open-iconic/png/dial-2x.png new file mode 100644 index 0000000..7db1fb5 Binary files /dev/null and b/the8eam/open-iconic/png/dial-2x.png differ diff --git a/the8eam/open-iconic/png/dial-3x.png b/the8eam/open-iconic/png/dial-3x.png new file mode 100644 index 0000000..ba85cb2 Binary files /dev/null and b/the8eam/open-iconic/png/dial-3x.png differ diff --git a/the8eam/open-iconic/png/dial-4x.png b/the8eam/open-iconic/png/dial-4x.png new file mode 100644 index 0000000..b6c41b4 Binary files /dev/null and b/the8eam/open-iconic/png/dial-4x.png differ diff --git a/the8eam/open-iconic/png/dial-6x.png b/the8eam/open-iconic/png/dial-6x.png new file mode 100644 index 0000000..f395f57 Binary files /dev/null and b/the8eam/open-iconic/png/dial-6x.png differ diff --git a/the8eam/open-iconic/png/dial-8x.png b/the8eam/open-iconic/png/dial-8x.png new file mode 100644 index 0000000..ed98711 Binary files /dev/null and b/the8eam/open-iconic/png/dial-8x.png differ diff --git a/the8eam/open-iconic/png/dial.png b/the8eam/open-iconic/png/dial.png new file mode 100644 index 0000000..b4d7f74 Binary files /dev/null and b/the8eam/open-iconic/png/dial.png differ diff --git a/the8eam/open-iconic/png/document-2x.png b/the8eam/open-iconic/png/document-2x.png new file mode 100644 index 0000000..0ae9f76 Binary files /dev/null and b/the8eam/open-iconic/png/document-2x.png differ diff --git a/the8eam/open-iconic/png/document-3x.png b/the8eam/open-iconic/png/document-3x.png new file mode 100644 index 0000000..21bd01e Binary files /dev/null and b/the8eam/open-iconic/png/document-3x.png differ diff --git a/the8eam/open-iconic/png/document-4x.png b/the8eam/open-iconic/png/document-4x.png new file mode 100644 index 0000000..626e2f3 Binary files /dev/null and b/the8eam/open-iconic/png/document-4x.png differ diff --git a/the8eam/open-iconic/png/document-6x.png b/the8eam/open-iconic/png/document-6x.png new file mode 100644 index 0000000..f687028 Binary files /dev/null and b/the8eam/open-iconic/png/document-6x.png differ diff --git a/the8eam/open-iconic/png/document-8x.png b/the8eam/open-iconic/png/document-8x.png new file mode 100644 index 0000000..05c454e Binary files /dev/null and b/the8eam/open-iconic/png/document-8x.png differ diff --git a/the8eam/open-iconic/png/document.png b/the8eam/open-iconic/png/document.png new file mode 100644 index 0000000..9eea0c6 Binary files /dev/null and b/the8eam/open-iconic/png/document.png differ diff --git a/the8eam/open-iconic/png/dollar-2x.png b/the8eam/open-iconic/png/dollar-2x.png new file mode 100644 index 0000000..e858f37 Binary files /dev/null and b/the8eam/open-iconic/png/dollar-2x.png differ diff --git a/the8eam/open-iconic/png/dollar-3x.png b/the8eam/open-iconic/png/dollar-3x.png new file mode 100644 index 0000000..a0e93c5 Binary files /dev/null and b/the8eam/open-iconic/png/dollar-3x.png differ diff --git a/the8eam/open-iconic/png/dollar-4x.png b/the8eam/open-iconic/png/dollar-4x.png new file mode 100644 index 0000000..3e601bf Binary files /dev/null and b/the8eam/open-iconic/png/dollar-4x.png differ diff --git a/the8eam/open-iconic/png/dollar-6x.png b/the8eam/open-iconic/png/dollar-6x.png new file mode 100644 index 0000000..a21983e Binary files /dev/null and b/the8eam/open-iconic/png/dollar-6x.png differ diff --git a/the8eam/open-iconic/png/dollar-8x.png b/the8eam/open-iconic/png/dollar-8x.png new file mode 100644 index 0000000..6a0470f Binary files /dev/null and b/the8eam/open-iconic/png/dollar-8x.png differ diff --git a/the8eam/open-iconic/png/dollar.png b/the8eam/open-iconic/png/dollar.png new file mode 100644 index 0000000..410c95e Binary files /dev/null and b/the8eam/open-iconic/png/dollar.png differ diff --git a/the8eam/open-iconic/png/double-quote-sans-left-2x.png b/the8eam/open-iconic/png/double-quote-sans-left-2x.png new file mode 100644 index 0000000..a9ddde0 Binary files /dev/null and b/the8eam/open-iconic/png/double-quote-sans-left-2x.png differ diff --git a/the8eam/open-iconic/png/double-quote-sans-left-3x.png b/the8eam/open-iconic/png/double-quote-sans-left-3x.png new file mode 100644 index 0000000..c4b4dad Binary files /dev/null and b/the8eam/open-iconic/png/double-quote-sans-left-3x.png differ diff --git a/the8eam/open-iconic/png/double-quote-sans-left-4x.png b/the8eam/open-iconic/png/double-quote-sans-left-4x.png new file mode 100644 index 0000000..bdb416c Binary files /dev/null and b/the8eam/open-iconic/png/double-quote-sans-left-4x.png differ diff --git a/the8eam/open-iconic/png/double-quote-sans-left-6x.png b/the8eam/open-iconic/png/double-quote-sans-left-6x.png new file mode 100644 index 0000000..a2c5e27 Binary files /dev/null and b/the8eam/open-iconic/png/double-quote-sans-left-6x.png differ diff --git a/the8eam/open-iconic/png/double-quote-sans-left-8x.png b/the8eam/open-iconic/png/double-quote-sans-left-8x.png new file mode 100644 index 0000000..6fad536 Binary files /dev/null and b/the8eam/open-iconic/png/double-quote-sans-left-8x.png differ diff --git a/the8eam/open-iconic/png/double-quote-sans-left.png b/the8eam/open-iconic/png/double-quote-sans-left.png new file mode 100644 index 0000000..78fdaae Binary files /dev/null and b/the8eam/open-iconic/png/double-quote-sans-left.png differ diff --git a/the8eam/open-iconic/png/double-quote-sans-right-2x.png b/the8eam/open-iconic/png/double-quote-sans-right-2x.png new file mode 100644 index 0000000..4e21c6f Binary files /dev/null and b/the8eam/open-iconic/png/double-quote-sans-right-2x.png differ diff --git a/the8eam/open-iconic/png/double-quote-sans-right-3x.png b/the8eam/open-iconic/png/double-quote-sans-right-3x.png new file mode 100644 index 0000000..60439bc Binary files /dev/null and b/the8eam/open-iconic/png/double-quote-sans-right-3x.png differ diff --git a/the8eam/open-iconic/png/double-quote-sans-right-4x.png b/the8eam/open-iconic/png/double-quote-sans-right-4x.png new file mode 100644 index 0000000..22a491f Binary files /dev/null and b/the8eam/open-iconic/png/double-quote-sans-right-4x.png differ diff --git a/the8eam/open-iconic/png/double-quote-sans-right-6x.png b/the8eam/open-iconic/png/double-quote-sans-right-6x.png new file mode 100644 index 0000000..9433f82 Binary files /dev/null and b/the8eam/open-iconic/png/double-quote-sans-right-6x.png differ diff --git a/the8eam/open-iconic/png/double-quote-sans-right-8x.png b/the8eam/open-iconic/png/double-quote-sans-right-8x.png new file mode 100644 index 0000000..ae81899 Binary files /dev/null and b/the8eam/open-iconic/png/double-quote-sans-right-8x.png differ diff --git a/the8eam/open-iconic/png/double-quote-sans-right.png b/the8eam/open-iconic/png/double-quote-sans-right.png new file mode 100644 index 0000000..62472bb Binary files /dev/null and b/the8eam/open-iconic/png/double-quote-sans-right.png differ diff --git a/the8eam/open-iconic/png/double-quote-serif-left-2x.png b/the8eam/open-iconic/png/double-quote-serif-left-2x.png new file mode 100644 index 0000000..6c85a15 Binary files /dev/null and b/the8eam/open-iconic/png/double-quote-serif-left-2x.png differ diff --git a/the8eam/open-iconic/png/double-quote-serif-left-3x.png b/the8eam/open-iconic/png/double-quote-serif-left-3x.png new file mode 100644 index 0000000..1c9c4ae Binary files /dev/null and b/the8eam/open-iconic/png/double-quote-serif-left-3x.png differ diff --git a/the8eam/open-iconic/png/double-quote-serif-left-4x.png b/the8eam/open-iconic/png/double-quote-serif-left-4x.png new file mode 100644 index 0000000..66a4b70 Binary files /dev/null and b/the8eam/open-iconic/png/double-quote-serif-left-4x.png differ diff --git a/the8eam/open-iconic/png/double-quote-serif-left-6x.png b/the8eam/open-iconic/png/double-quote-serif-left-6x.png new file mode 100644 index 0000000..b3b7122 Binary files /dev/null and b/the8eam/open-iconic/png/double-quote-serif-left-6x.png differ diff --git a/the8eam/open-iconic/png/double-quote-serif-left-8x.png b/the8eam/open-iconic/png/double-quote-serif-left-8x.png new file mode 100644 index 0000000..5f647d8 Binary files /dev/null and b/the8eam/open-iconic/png/double-quote-serif-left-8x.png differ diff --git a/the8eam/open-iconic/png/double-quote-serif-left.png b/the8eam/open-iconic/png/double-quote-serif-left.png new file mode 100644 index 0000000..f2def81 Binary files /dev/null and b/the8eam/open-iconic/png/double-quote-serif-left.png differ diff --git a/the8eam/open-iconic/png/double-quote-serif-right-2x.png b/the8eam/open-iconic/png/double-quote-serif-right-2x.png new file mode 100644 index 0000000..ec337d7 Binary files /dev/null and b/the8eam/open-iconic/png/double-quote-serif-right-2x.png differ diff --git a/the8eam/open-iconic/png/double-quote-serif-right-3x.png b/the8eam/open-iconic/png/double-quote-serif-right-3x.png new file mode 100644 index 0000000..b94e206 Binary files /dev/null and b/the8eam/open-iconic/png/double-quote-serif-right-3x.png differ diff --git a/the8eam/open-iconic/png/double-quote-serif-right-4x.png b/the8eam/open-iconic/png/double-quote-serif-right-4x.png new file mode 100644 index 0000000..50567c1 Binary files /dev/null and b/the8eam/open-iconic/png/double-quote-serif-right-4x.png differ diff --git a/the8eam/open-iconic/png/double-quote-serif-right-6x.png b/the8eam/open-iconic/png/double-quote-serif-right-6x.png new file mode 100644 index 0000000..2e419d4 Binary files /dev/null and b/the8eam/open-iconic/png/double-quote-serif-right-6x.png differ diff --git a/the8eam/open-iconic/png/double-quote-serif-right-8x.png b/the8eam/open-iconic/png/double-quote-serif-right-8x.png new file mode 100644 index 0000000..6a0d3ad Binary files /dev/null and b/the8eam/open-iconic/png/double-quote-serif-right-8x.png differ diff --git a/the8eam/open-iconic/png/double-quote-serif-right.png b/the8eam/open-iconic/png/double-quote-serif-right.png new file mode 100644 index 0000000..9e7de64 Binary files /dev/null and b/the8eam/open-iconic/png/double-quote-serif-right.png differ diff --git a/the8eam/open-iconic/png/droplet-2x.png b/the8eam/open-iconic/png/droplet-2x.png new file mode 100644 index 0000000..cc814e7 Binary files /dev/null and b/the8eam/open-iconic/png/droplet-2x.png differ diff --git a/the8eam/open-iconic/png/droplet-3x.png b/the8eam/open-iconic/png/droplet-3x.png new file mode 100644 index 0000000..393656c Binary files /dev/null and b/the8eam/open-iconic/png/droplet-3x.png differ diff --git a/the8eam/open-iconic/png/droplet-4x.png b/the8eam/open-iconic/png/droplet-4x.png new file mode 100644 index 0000000..619e1eb Binary files /dev/null and b/the8eam/open-iconic/png/droplet-4x.png differ diff --git a/the8eam/open-iconic/png/droplet-6x.png b/the8eam/open-iconic/png/droplet-6x.png new file mode 100644 index 0000000..90b848a Binary files /dev/null and b/the8eam/open-iconic/png/droplet-6x.png differ diff --git a/the8eam/open-iconic/png/droplet-8x.png b/the8eam/open-iconic/png/droplet-8x.png new file mode 100644 index 0000000..76c3695 Binary files /dev/null and b/the8eam/open-iconic/png/droplet-8x.png differ diff --git a/the8eam/open-iconic/png/droplet.png b/the8eam/open-iconic/png/droplet.png new file mode 100644 index 0000000..52761ea Binary files /dev/null and b/the8eam/open-iconic/png/droplet.png differ diff --git a/the8eam/open-iconic/png/eject-2x.png b/the8eam/open-iconic/png/eject-2x.png new file mode 100644 index 0000000..bc77c48 Binary files /dev/null and b/the8eam/open-iconic/png/eject-2x.png differ diff --git a/the8eam/open-iconic/png/eject-3x.png b/the8eam/open-iconic/png/eject-3x.png new file mode 100644 index 0000000..7bd588a Binary files /dev/null and b/the8eam/open-iconic/png/eject-3x.png differ diff --git a/the8eam/open-iconic/png/eject-4x.png b/the8eam/open-iconic/png/eject-4x.png new file mode 100644 index 0000000..9a48bbb Binary files /dev/null and b/the8eam/open-iconic/png/eject-4x.png differ diff --git a/the8eam/open-iconic/png/eject-6x.png b/the8eam/open-iconic/png/eject-6x.png new file mode 100644 index 0000000..1f8565b Binary files /dev/null and b/the8eam/open-iconic/png/eject-6x.png differ diff --git a/the8eam/open-iconic/png/eject-8x.png b/the8eam/open-iconic/png/eject-8x.png new file mode 100644 index 0000000..f6dde88 Binary files /dev/null and b/the8eam/open-iconic/png/eject-8x.png differ diff --git a/the8eam/open-iconic/png/eject.png b/the8eam/open-iconic/png/eject.png new file mode 100644 index 0000000..c75d455 Binary files /dev/null and b/the8eam/open-iconic/png/eject.png differ diff --git a/the8eam/open-iconic/png/elevator-2x.png b/the8eam/open-iconic/png/elevator-2x.png new file mode 100644 index 0000000..2861845 Binary files /dev/null and b/the8eam/open-iconic/png/elevator-2x.png differ diff --git a/the8eam/open-iconic/png/elevator-3x.png b/the8eam/open-iconic/png/elevator-3x.png new file mode 100644 index 0000000..9b976d7 Binary files /dev/null and b/the8eam/open-iconic/png/elevator-3x.png differ diff --git a/the8eam/open-iconic/png/elevator-4x.png b/the8eam/open-iconic/png/elevator-4x.png new file mode 100644 index 0000000..4793a34 Binary files /dev/null and b/the8eam/open-iconic/png/elevator-4x.png differ diff --git a/the8eam/open-iconic/png/elevator-6x.png b/the8eam/open-iconic/png/elevator-6x.png new file mode 100644 index 0000000..bf7a168 Binary files /dev/null and b/the8eam/open-iconic/png/elevator-6x.png differ diff --git a/the8eam/open-iconic/png/elevator-8x.png b/the8eam/open-iconic/png/elevator-8x.png new file mode 100644 index 0000000..e49b734 Binary files /dev/null and b/the8eam/open-iconic/png/elevator-8x.png differ diff --git a/the8eam/open-iconic/png/elevator.png b/the8eam/open-iconic/png/elevator.png new file mode 100644 index 0000000..687414d Binary files /dev/null and b/the8eam/open-iconic/png/elevator.png differ diff --git a/the8eam/open-iconic/png/ellipses-2x.png b/the8eam/open-iconic/png/ellipses-2x.png new file mode 100644 index 0000000..788a354 Binary files /dev/null and b/the8eam/open-iconic/png/ellipses-2x.png differ diff --git a/the8eam/open-iconic/png/ellipses-3x.png b/the8eam/open-iconic/png/ellipses-3x.png new file mode 100644 index 0000000..b27d1d3 Binary files /dev/null and b/the8eam/open-iconic/png/ellipses-3x.png differ diff --git a/the8eam/open-iconic/png/ellipses-4x.png b/the8eam/open-iconic/png/ellipses-4x.png new file mode 100644 index 0000000..5bf8f82 Binary files /dev/null and b/the8eam/open-iconic/png/ellipses-4x.png differ diff --git a/the8eam/open-iconic/png/ellipses-6x.png b/the8eam/open-iconic/png/ellipses-6x.png new file mode 100644 index 0000000..ceda7f3 Binary files /dev/null and b/the8eam/open-iconic/png/ellipses-6x.png differ diff --git a/the8eam/open-iconic/png/ellipses-8x.png b/the8eam/open-iconic/png/ellipses-8x.png new file mode 100644 index 0000000..de9b70c Binary files /dev/null and b/the8eam/open-iconic/png/ellipses-8x.png differ diff --git a/the8eam/open-iconic/png/ellipses.png b/the8eam/open-iconic/png/ellipses.png new file mode 100644 index 0000000..6099cec Binary files /dev/null and b/the8eam/open-iconic/png/ellipses.png differ diff --git a/the8eam/open-iconic/png/envelope-closed-2x.png b/the8eam/open-iconic/png/envelope-closed-2x.png new file mode 100644 index 0000000..c485b44 Binary files /dev/null and b/the8eam/open-iconic/png/envelope-closed-2x.png differ diff --git a/the8eam/open-iconic/png/envelope-closed-3x.png b/the8eam/open-iconic/png/envelope-closed-3x.png new file mode 100644 index 0000000..a79a21e Binary files /dev/null and b/the8eam/open-iconic/png/envelope-closed-3x.png differ diff --git a/the8eam/open-iconic/png/envelope-closed-4x.png b/the8eam/open-iconic/png/envelope-closed-4x.png new file mode 100644 index 0000000..a1d7e03 Binary files /dev/null and b/the8eam/open-iconic/png/envelope-closed-4x.png differ diff --git a/the8eam/open-iconic/png/envelope-closed-6x.png b/the8eam/open-iconic/png/envelope-closed-6x.png new file mode 100644 index 0000000..d98e960 Binary files /dev/null and b/the8eam/open-iconic/png/envelope-closed-6x.png differ diff --git a/the8eam/open-iconic/png/envelope-closed-8x.png b/the8eam/open-iconic/png/envelope-closed-8x.png new file mode 100644 index 0000000..85eef0c Binary files /dev/null and b/the8eam/open-iconic/png/envelope-closed-8x.png differ diff --git a/the8eam/open-iconic/png/envelope-closed.png b/the8eam/open-iconic/png/envelope-closed.png new file mode 100644 index 0000000..5e4e20b Binary files /dev/null and b/the8eam/open-iconic/png/envelope-closed.png differ diff --git a/the8eam/open-iconic/png/envelope-open-2x.png b/the8eam/open-iconic/png/envelope-open-2x.png new file mode 100644 index 0000000..368de61 Binary files /dev/null and b/the8eam/open-iconic/png/envelope-open-2x.png differ diff --git a/the8eam/open-iconic/png/envelope-open-3x.png b/the8eam/open-iconic/png/envelope-open-3x.png new file mode 100644 index 0000000..50a841f Binary files /dev/null and b/the8eam/open-iconic/png/envelope-open-3x.png differ diff --git a/the8eam/open-iconic/png/envelope-open-4x.png b/the8eam/open-iconic/png/envelope-open-4x.png new file mode 100644 index 0000000..2ae98d1 Binary files /dev/null and b/the8eam/open-iconic/png/envelope-open-4x.png differ diff --git a/the8eam/open-iconic/png/envelope-open-6x.png b/the8eam/open-iconic/png/envelope-open-6x.png new file mode 100644 index 0000000..1ac7fe3 Binary files /dev/null and b/the8eam/open-iconic/png/envelope-open-6x.png differ diff --git a/the8eam/open-iconic/png/envelope-open-8x.png b/the8eam/open-iconic/png/envelope-open-8x.png new file mode 100644 index 0000000..7b13daf Binary files /dev/null and b/the8eam/open-iconic/png/envelope-open-8x.png differ diff --git a/the8eam/open-iconic/png/envelope-open.png b/the8eam/open-iconic/png/envelope-open.png new file mode 100644 index 0000000..8fc3f42 Binary files /dev/null and b/the8eam/open-iconic/png/envelope-open.png differ diff --git a/the8eam/open-iconic/png/euro-2x.png b/the8eam/open-iconic/png/euro-2x.png new file mode 100644 index 0000000..16ccc9d Binary files /dev/null and b/the8eam/open-iconic/png/euro-2x.png differ diff --git a/the8eam/open-iconic/png/euro-3x.png b/the8eam/open-iconic/png/euro-3x.png new file mode 100644 index 0000000..7464688 Binary files /dev/null and b/the8eam/open-iconic/png/euro-3x.png differ diff --git a/the8eam/open-iconic/png/euro-4x.png b/the8eam/open-iconic/png/euro-4x.png new file mode 100644 index 0000000..5dd1b05 Binary files /dev/null and b/the8eam/open-iconic/png/euro-4x.png differ diff --git a/the8eam/open-iconic/png/euro-6x.png b/the8eam/open-iconic/png/euro-6x.png new file mode 100644 index 0000000..cad9196 Binary files /dev/null and b/the8eam/open-iconic/png/euro-6x.png differ diff --git a/the8eam/open-iconic/png/euro-8x.png b/the8eam/open-iconic/png/euro-8x.png new file mode 100644 index 0000000..4f70f57 Binary files /dev/null and b/the8eam/open-iconic/png/euro-8x.png differ diff --git a/the8eam/open-iconic/png/euro.png b/the8eam/open-iconic/png/euro.png new file mode 100644 index 0000000..5644c0a Binary files /dev/null and b/the8eam/open-iconic/png/euro.png differ diff --git a/the8eam/open-iconic/png/excerpt-2x.png b/the8eam/open-iconic/png/excerpt-2x.png new file mode 100644 index 0000000..d4a131b Binary files /dev/null and b/the8eam/open-iconic/png/excerpt-2x.png differ diff --git a/the8eam/open-iconic/png/excerpt-3x.png b/the8eam/open-iconic/png/excerpt-3x.png new file mode 100644 index 0000000..11fbd3f Binary files /dev/null and b/the8eam/open-iconic/png/excerpt-3x.png differ diff --git a/the8eam/open-iconic/png/excerpt-4x.png b/the8eam/open-iconic/png/excerpt-4x.png new file mode 100644 index 0000000..526ff05 Binary files /dev/null and b/the8eam/open-iconic/png/excerpt-4x.png differ diff --git a/the8eam/open-iconic/png/excerpt-6x.png b/the8eam/open-iconic/png/excerpt-6x.png new file mode 100644 index 0000000..4430060 Binary files /dev/null and b/the8eam/open-iconic/png/excerpt-6x.png differ diff --git a/the8eam/open-iconic/png/excerpt-8x.png b/the8eam/open-iconic/png/excerpt-8x.png new file mode 100644 index 0000000..42c9520 Binary files /dev/null and b/the8eam/open-iconic/png/excerpt-8x.png differ diff --git a/the8eam/open-iconic/png/excerpt.png b/the8eam/open-iconic/png/excerpt.png new file mode 100644 index 0000000..63657ae Binary files /dev/null and b/the8eam/open-iconic/png/excerpt.png differ diff --git a/the8eam/open-iconic/png/expand-down-2x.png b/the8eam/open-iconic/png/expand-down-2x.png new file mode 100644 index 0000000..bbe78e2 Binary files /dev/null and b/the8eam/open-iconic/png/expand-down-2x.png differ diff --git a/the8eam/open-iconic/png/expand-down-3x.png b/the8eam/open-iconic/png/expand-down-3x.png new file mode 100644 index 0000000..4b40ea2 Binary files /dev/null and b/the8eam/open-iconic/png/expand-down-3x.png differ diff --git a/the8eam/open-iconic/png/expand-down-4x.png b/the8eam/open-iconic/png/expand-down-4x.png new file mode 100644 index 0000000..e482519 Binary files /dev/null and b/the8eam/open-iconic/png/expand-down-4x.png differ diff --git a/the8eam/open-iconic/png/expand-down-6x.png b/the8eam/open-iconic/png/expand-down-6x.png new file mode 100644 index 0000000..35c1e41 Binary files /dev/null and b/the8eam/open-iconic/png/expand-down-6x.png differ diff --git a/the8eam/open-iconic/png/expand-down-8x.png b/the8eam/open-iconic/png/expand-down-8x.png new file mode 100644 index 0000000..69cd3c3 Binary files /dev/null and b/the8eam/open-iconic/png/expand-down-8x.png differ diff --git a/the8eam/open-iconic/png/expand-down.png b/the8eam/open-iconic/png/expand-down.png new file mode 100644 index 0000000..e6e5a74 Binary files /dev/null and b/the8eam/open-iconic/png/expand-down.png differ diff --git a/the8eam/open-iconic/png/expand-left-2x.png b/the8eam/open-iconic/png/expand-left-2x.png new file mode 100644 index 0000000..1d7308d Binary files /dev/null and b/the8eam/open-iconic/png/expand-left-2x.png differ diff --git a/the8eam/open-iconic/png/expand-left-3x.png b/the8eam/open-iconic/png/expand-left-3x.png new file mode 100644 index 0000000..21a34a3 Binary files /dev/null and b/the8eam/open-iconic/png/expand-left-3x.png differ diff --git a/the8eam/open-iconic/png/expand-left-4x.png b/the8eam/open-iconic/png/expand-left-4x.png new file mode 100644 index 0000000..b4ee5ef Binary files /dev/null and b/the8eam/open-iconic/png/expand-left-4x.png differ diff --git a/the8eam/open-iconic/png/expand-left-6x.png b/the8eam/open-iconic/png/expand-left-6x.png new file mode 100644 index 0000000..c74cbdf Binary files /dev/null and b/the8eam/open-iconic/png/expand-left-6x.png differ diff --git a/the8eam/open-iconic/png/expand-left-8x.png b/the8eam/open-iconic/png/expand-left-8x.png new file mode 100644 index 0000000..e0711c9 Binary files /dev/null and b/the8eam/open-iconic/png/expand-left-8x.png differ diff --git a/the8eam/open-iconic/png/expand-left.png b/the8eam/open-iconic/png/expand-left.png new file mode 100644 index 0000000..91cbc6d Binary files /dev/null and b/the8eam/open-iconic/png/expand-left.png differ diff --git a/the8eam/open-iconic/png/expand-right-2x.png b/the8eam/open-iconic/png/expand-right-2x.png new file mode 100644 index 0000000..533bc36 Binary files /dev/null and b/the8eam/open-iconic/png/expand-right-2x.png differ diff --git a/the8eam/open-iconic/png/expand-right-3x.png b/the8eam/open-iconic/png/expand-right-3x.png new file mode 100644 index 0000000..2590584 Binary files /dev/null and b/the8eam/open-iconic/png/expand-right-3x.png differ diff --git a/the8eam/open-iconic/png/expand-right-4x.png b/the8eam/open-iconic/png/expand-right-4x.png new file mode 100644 index 0000000..97a6ddc Binary files /dev/null and b/the8eam/open-iconic/png/expand-right-4x.png differ diff --git a/the8eam/open-iconic/png/expand-right-6x.png b/the8eam/open-iconic/png/expand-right-6x.png new file mode 100644 index 0000000..af5c118 Binary files /dev/null and b/the8eam/open-iconic/png/expand-right-6x.png differ diff --git a/the8eam/open-iconic/png/expand-right-8x.png b/the8eam/open-iconic/png/expand-right-8x.png new file mode 100644 index 0000000..c16fcba Binary files /dev/null and b/the8eam/open-iconic/png/expand-right-8x.png differ diff --git a/the8eam/open-iconic/png/expand-right.png b/the8eam/open-iconic/png/expand-right.png new file mode 100644 index 0000000..39ae043 Binary files /dev/null and b/the8eam/open-iconic/png/expand-right.png differ diff --git a/the8eam/open-iconic/png/expand-up-2x.png b/the8eam/open-iconic/png/expand-up-2x.png new file mode 100644 index 0000000..63c85cf Binary files /dev/null and b/the8eam/open-iconic/png/expand-up-2x.png differ diff --git a/the8eam/open-iconic/png/expand-up-3x.png b/the8eam/open-iconic/png/expand-up-3x.png new file mode 100644 index 0000000..09d234d Binary files /dev/null and b/the8eam/open-iconic/png/expand-up-3x.png differ diff --git a/the8eam/open-iconic/png/expand-up-4x.png b/the8eam/open-iconic/png/expand-up-4x.png new file mode 100644 index 0000000..0d8611f Binary files /dev/null and b/the8eam/open-iconic/png/expand-up-4x.png differ diff --git a/the8eam/open-iconic/png/expand-up-6x.png b/the8eam/open-iconic/png/expand-up-6x.png new file mode 100644 index 0000000..8f3e5c4 Binary files /dev/null and b/the8eam/open-iconic/png/expand-up-6x.png differ diff --git a/the8eam/open-iconic/png/expand-up-8x.png b/the8eam/open-iconic/png/expand-up-8x.png new file mode 100644 index 0000000..21ebd52 Binary files /dev/null and b/the8eam/open-iconic/png/expand-up-8x.png differ diff --git a/the8eam/open-iconic/png/expand-up.png b/the8eam/open-iconic/png/expand-up.png new file mode 100644 index 0000000..ea65f6a Binary files /dev/null and b/the8eam/open-iconic/png/expand-up.png differ diff --git a/the8eam/open-iconic/png/external-link-2x.png b/the8eam/open-iconic/png/external-link-2x.png new file mode 100644 index 0000000..189a93f Binary files /dev/null and b/the8eam/open-iconic/png/external-link-2x.png differ diff --git a/the8eam/open-iconic/png/external-link-3x.png b/the8eam/open-iconic/png/external-link-3x.png new file mode 100644 index 0000000..8c6b2e7 Binary files /dev/null and b/the8eam/open-iconic/png/external-link-3x.png differ diff --git a/the8eam/open-iconic/png/external-link-4x.png b/the8eam/open-iconic/png/external-link-4x.png new file mode 100644 index 0000000..a728f8d Binary files /dev/null and b/the8eam/open-iconic/png/external-link-4x.png differ diff --git a/the8eam/open-iconic/png/external-link-6x.png b/the8eam/open-iconic/png/external-link-6x.png new file mode 100644 index 0000000..31f8451 Binary files /dev/null and b/the8eam/open-iconic/png/external-link-6x.png differ diff --git a/the8eam/open-iconic/png/external-link-8x.png b/the8eam/open-iconic/png/external-link-8x.png new file mode 100644 index 0000000..2c711b6 Binary files /dev/null and b/the8eam/open-iconic/png/external-link-8x.png differ diff --git a/the8eam/open-iconic/png/external-link.png b/the8eam/open-iconic/png/external-link.png new file mode 100644 index 0000000..9f57d5a Binary files /dev/null and b/the8eam/open-iconic/png/external-link.png differ diff --git a/the8eam/open-iconic/png/eye-2x.png b/the8eam/open-iconic/png/eye-2x.png new file mode 100644 index 0000000..b6d55ed Binary files /dev/null and b/the8eam/open-iconic/png/eye-2x.png differ diff --git a/the8eam/open-iconic/png/eye-3x.png b/the8eam/open-iconic/png/eye-3x.png new file mode 100644 index 0000000..5e7a449 Binary files /dev/null and b/the8eam/open-iconic/png/eye-3x.png differ diff --git a/the8eam/open-iconic/png/eye-4x.png b/the8eam/open-iconic/png/eye-4x.png new file mode 100644 index 0000000..4290ce8 Binary files /dev/null and b/the8eam/open-iconic/png/eye-4x.png differ diff --git a/the8eam/open-iconic/png/eye-6x.png b/the8eam/open-iconic/png/eye-6x.png new file mode 100644 index 0000000..e4ebaa3 Binary files /dev/null and b/the8eam/open-iconic/png/eye-6x.png differ diff --git a/the8eam/open-iconic/png/eye-8x.png b/the8eam/open-iconic/png/eye-8x.png new file mode 100644 index 0000000..16bab41 Binary files /dev/null and b/the8eam/open-iconic/png/eye-8x.png differ diff --git a/the8eam/open-iconic/png/eye.png b/the8eam/open-iconic/png/eye.png new file mode 100644 index 0000000..5874d04 Binary files /dev/null and b/the8eam/open-iconic/png/eye.png differ diff --git a/the8eam/open-iconic/png/eyedropper-2x.png b/the8eam/open-iconic/png/eyedropper-2x.png new file mode 100644 index 0000000..cdf1a8d Binary files /dev/null and b/the8eam/open-iconic/png/eyedropper-2x.png differ diff --git a/the8eam/open-iconic/png/eyedropper-3x.png b/the8eam/open-iconic/png/eyedropper-3x.png new file mode 100644 index 0000000..e62e246 Binary files /dev/null and b/the8eam/open-iconic/png/eyedropper-3x.png differ diff --git a/the8eam/open-iconic/png/eyedropper-4x.png b/the8eam/open-iconic/png/eyedropper-4x.png new file mode 100644 index 0000000..8030e89 Binary files /dev/null and b/the8eam/open-iconic/png/eyedropper-4x.png differ diff --git a/the8eam/open-iconic/png/eyedropper-6x.png b/the8eam/open-iconic/png/eyedropper-6x.png new file mode 100644 index 0000000..9bee1de Binary files /dev/null and b/the8eam/open-iconic/png/eyedropper-6x.png differ diff --git a/the8eam/open-iconic/png/eyedropper-8x.png b/the8eam/open-iconic/png/eyedropper-8x.png new file mode 100644 index 0000000..505cbf6 Binary files /dev/null and b/the8eam/open-iconic/png/eyedropper-8x.png differ diff --git a/the8eam/open-iconic/png/eyedropper.png b/the8eam/open-iconic/png/eyedropper.png new file mode 100644 index 0000000..7d14fe9 Binary files /dev/null and b/the8eam/open-iconic/png/eyedropper.png differ diff --git a/the8eam/open-iconic/png/file-2x.png b/the8eam/open-iconic/png/file-2x.png new file mode 100644 index 0000000..4196c44 Binary files /dev/null and b/the8eam/open-iconic/png/file-2x.png differ diff --git a/the8eam/open-iconic/png/file-3x.png b/the8eam/open-iconic/png/file-3x.png new file mode 100644 index 0000000..2082b43 Binary files /dev/null and b/the8eam/open-iconic/png/file-3x.png differ diff --git a/the8eam/open-iconic/png/file-4x.png b/the8eam/open-iconic/png/file-4x.png new file mode 100644 index 0000000..894dfdc Binary files /dev/null and b/the8eam/open-iconic/png/file-4x.png differ diff --git a/the8eam/open-iconic/png/file-6x.png b/the8eam/open-iconic/png/file-6x.png new file mode 100644 index 0000000..580ab17 Binary files /dev/null and b/the8eam/open-iconic/png/file-6x.png differ diff --git a/the8eam/open-iconic/png/file-8x.png b/the8eam/open-iconic/png/file-8x.png new file mode 100644 index 0000000..54ca80f Binary files /dev/null and b/the8eam/open-iconic/png/file-8x.png differ diff --git a/the8eam/open-iconic/png/file.png b/the8eam/open-iconic/png/file.png new file mode 100644 index 0000000..fda62cc Binary files /dev/null and b/the8eam/open-iconic/png/file.png differ diff --git a/the8eam/open-iconic/png/fire-2x.png b/the8eam/open-iconic/png/fire-2x.png new file mode 100644 index 0000000..acf6b29 Binary files /dev/null and b/the8eam/open-iconic/png/fire-2x.png differ diff --git a/the8eam/open-iconic/png/fire-3x.png b/the8eam/open-iconic/png/fire-3x.png new file mode 100644 index 0000000..2fc1b79 Binary files /dev/null and b/the8eam/open-iconic/png/fire-3x.png differ diff --git a/the8eam/open-iconic/png/fire-4x.png b/the8eam/open-iconic/png/fire-4x.png new file mode 100644 index 0000000..bed9004 Binary files /dev/null and b/the8eam/open-iconic/png/fire-4x.png differ diff --git a/the8eam/open-iconic/png/fire-6x.png b/the8eam/open-iconic/png/fire-6x.png new file mode 100644 index 0000000..6a9e42d Binary files /dev/null and b/the8eam/open-iconic/png/fire-6x.png differ diff --git a/the8eam/open-iconic/png/fire-8x.png b/the8eam/open-iconic/png/fire-8x.png new file mode 100644 index 0000000..3582f1d Binary files /dev/null and b/the8eam/open-iconic/png/fire-8x.png differ diff --git a/the8eam/open-iconic/png/fire.png b/the8eam/open-iconic/png/fire.png new file mode 100644 index 0000000..4f84ba4 Binary files /dev/null and b/the8eam/open-iconic/png/fire.png differ diff --git a/the8eam/open-iconic/png/flag-2x.png b/the8eam/open-iconic/png/flag-2x.png new file mode 100644 index 0000000..0b26970 Binary files /dev/null and b/the8eam/open-iconic/png/flag-2x.png differ diff --git a/the8eam/open-iconic/png/flag-3x.png b/the8eam/open-iconic/png/flag-3x.png new file mode 100644 index 0000000..8f6f9f1 Binary files /dev/null and b/the8eam/open-iconic/png/flag-3x.png differ diff --git a/the8eam/open-iconic/png/flag-4x.png b/the8eam/open-iconic/png/flag-4x.png new file mode 100644 index 0000000..1402013 Binary files /dev/null and b/the8eam/open-iconic/png/flag-4x.png differ diff --git a/the8eam/open-iconic/png/flag-6x.png b/the8eam/open-iconic/png/flag-6x.png new file mode 100644 index 0000000..2b45f10 Binary files /dev/null and b/the8eam/open-iconic/png/flag-6x.png differ diff --git a/the8eam/open-iconic/png/flag-8x.png b/the8eam/open-iconic/png/flag-8x.png new file mode 100644 index 0000000..d8fa7f4 Binary files /dev/null and b/the8eam/open-iconic/png/flag-8x.png differ diff --git a/the8eam/open-iconic/png/flag.png b/the8eam/open-iconic/png/flag.png new file mode 100644 index 0000000..7d9d588 Binary files /dev/null and b/the8eam/open-iconic/png/flag.png differ diff --git a/the8eam/open-iconic/png/flash-2x.png b/the8eam/open-iconic/png/flash-2x.png new file mode 100644 index 0000000..3b7e0d1 Binary files /dev/null and b/the8eam/open-iconic/png/flash-2x.png differ diff --git a/the8eam/open-iconic/png/flash-3x.png b/the8eam/open-iconic/png/flash-3x.png new file mode 100644 index 0000000..f0a11ae Binary files /dev/null and b/the8eam/open-iconic/png/flash-3x.png differ diff --git a/the8eam/open-iconic/png/flash-4x.png b/the8eam/open-iconic/png/flash-4x.png new file mode 100644 index 0000000..53c14b9 Binary files /dev/null and b/the8eam/open-iconic/png/flash-4x.png differ diff --git a/the8eam/open-iconic/png/flash-6x.png b/the8eam/open-iconic/png/flash-6x.png new file mode 100644 index 0000000..7001b2e Binary files /dev/null and b/the8eam/open-iconic/png/flash-6x.png differ diff --git a/the8eam/open-iconic/png/flash-8x.png b/the8eam/open-iconic/png/flash-8x.png new file mode 100644 index 0000000..17fa68a Binary files /dev/null and b/the8eam/open-iconic/png/flash-8x.png differ diff --git a/the8eam/open-iconic/png/flash.png b/the8eam/open-iconic/png/flash.png new file mode 100644 index 0000000..151b591 Binary files /dev/null and b/the8eam/open-iconic/png/flash.png differ diff --git a/the8eam/open-iconic/png/folder-2x.png b/the8eam/open-iconic/png/folder-2x.png new file mode 100644 index 0000000..08f7ab5 Binary files /dev/null and b/the8eam/open-iconic/png/folder-2x.png differ diff --git a/the8eam/open-iconic/png/folder-3x.png b/the8eam/open-iconic/png/folder-3x.png new file mode 100644 index 0000000..12d55dc Binary files /dev/null and b/the8eam/open-iconic/png/folder-3x.png differ diff --git a/the8eam/open-iconic/png/folder-4x.png b/the8eam/open-iconic/png/folder-4x.png new file mode 100644 index 0000000..9d5e033 Binary files /dev/null and b/the8eam/open-iconic/png/folder-4x.png differ diff --git a/the8eam/open-iconic/png/folder-6x.png b/the8eam/open-iconic/png/folder-6x.png new file mode 100644 index 0000000..e2f6dbf Binary files /dev/null and b/the8eam/open-iconic/png/folder-6x.png differ diff --git a/the8eam/open-iconic/png/folder-8x.png b/the8eam/open-iconic/png/folder-8x.png new file mode 100644 index 0000000..6f2acc4 Binary files /dev/null and b/the8eam/open-iconic/png/folder-8x.png differ diff --git a/the8eam/open-iconic/png/folder.png b/the8eam/open-iconic/png/folder.png new file mode 100644 index 0000000..4c23e66 Binary files /dev/null and b/the8eam/open-iconic/png/folder.png differ diff --git a/the8eam/open-iconic/png/fork-2x.png b/the8eam/open-iconic/png/fork-2x.png new file mode 100644 index 0000000..400824e Binary files /dev/null and b/the8eam/open-iconic/png/fork-2x.png differ diff --git a/the8eam/open-iconic/png/fork-3x.png b/the8eam/open-iconic/png/fork-3x.png new file mode 100644 index 0000000..dac801b Binary files /dev/null and b/the8eam/open-iconic/png/fork-3x.png differ diff --git a/the8eam/open-iconic/png/fork-4x.png b/the8eam/open-iconic/png/fork-4x.png new file mode 100644 index 0000000..42340ed Binary files /dev/null and b/the8eam/open-iconic/png/fork-4x.png differ diff --git a/the8eam/open-iconic/png/fork-6x.png b/the8eam/open-iconic/png/fork-6x.png new file mode 100644 index 0000000..75b40f8 Binary files /dev/null and b/the8eam/open-iconic/png/fork-6x.png differ diff --git a/the8eam/open-iconic/png/fork-8x.png b/the8eam/open-iconic/png/fork-8x.png new file mode 100644 index 0000000..4fdd761 Binary files /dev/null and b/the8eam/open-iconic/png/fork-8x.png differ diff --git a/the8eam/open-iconic/png/fork.png b/the8eam/open-iconic/png/fork.png new file mode 100644 index 0000000..2d8d1a7 Binary files /dev/null and b/the8eam/open-iconic/png/fork.png differ diff --git a/the8eam/open-iconic/png/fullscreen-enter-2x.png b/the8eam/open-iconic/png/fullscreen-enter-2x.png new file mode 100644 index 0000000..b77edb8 Binary files /dev/null and b/the8eam/open-iconic/png/fullscreen-enter-2x.png differ diff --git a/the8eam/open-iconic/png/fullscreen-enter-3x.png b/the8eam/open-iconic/png/fullscreen-enter-3x.png new file mode 100644 index 0000000..9ca7754 Binary files /dev/null and b/the8eam/open-iconic/png/fullscreen-enter-3x.png differ diff --git a/the8eam/open-iconic/png/fullscreen-enter-4x.png b/the8eam/open-iconic/png/fullscreen-enter-4x.png new file mode 100644 index 0000000..70b75e2 Binary files /dev/null and b/the8eam/open-iconic/png/fullscreen-enter-4x.png differ diff --git a/the8eam/open-iconic/png/fullscreen-enter-6x.png b/the8eam/open-iconic/png/fullscreen-enter-6x.png new file mode 100644 index 0000000..0bbb5e1 Binary files /dev/null and b/the8eam/open-iconic/png/fullscreen-enter-6x.png differ diff --git a/the8eam/open-iconic/png/fullscreen-enter-8x.png b/the8eam/open-iconic/png/fullscreen-enter-8x.png new file mode 100644 index 0000000..9b0405d Binary files /dev/null and b/the8eam/open-iconic/png/fullscreen-enter-8x.png differ diff --git a/the8eam/open-iconic/png/fullscreen-enter.png b/the8eam/open-iconic/png/fullscreen-enter.png new file mode 100644 index 0000000..143be07 Binary files /dev/null and b/the8eam/open-iconic/png/fullscreen-enter.png differ diff --git a/the8eam/open-iconic/png/fullscreen-exit-2x.png b/the8eam/open-iconic/png/fullscreen-exit-2x.png new file mode 100644 index 0000000..5d1f046 Binary files /dev/null and b/the8eam/open-iconic/png/fullscreen-exit-2x.png differ diff --git a/the8eam/open-iconic/png/fullscreen-exit-3x.png b/the8eam/open-iconic/png/fullscreen-exit-3x.png new file mode 100644 index 0000000..3a5ca7b Binary files /dev/null and b/the8eam/open-iconic/png/fullscreen-exit-3x.png differ diff --git a/the8eam/open-iconic/png/fullscreen-exit-4x.png b/the8eam/open-iconic/png/fullscreen-exit-4x.png new file mode 100644 index 0000000..fb49713 Binary files /dev/null and b/the8eam/open-iconic/png/fullscreen-exit-4x.png differ diff --git a/the8eam/open-iconic/png/fullscreen-exit-6x.png b/the8eam/open-iconic/png/fullscreen-exit-6x.png new file mode 100644 index 0000000..9b57007 Binary files /dev/null and b/the8eam/open-iconic/png/fullscreen-exit-6x.png differ diff --git a/the8eam/open-iconic/png/fullscreen-exit-8x.png b/the8eam/open-iconic/png/fullscreen-exit-8x.png new file mode 100644 index 0000000..f8e4c0c Binary files /dev/null and b/the8eam/open-iconic/png/fullscreen-exit-8x.png differ diff --git a/the8eam/open-iconic/png/fullscreen-exit.png b/the8eam/open-iconic/png/fullscreen-exit.png new file mode 100644 index 0000000..e6b6908 Binary files /dev/null and b/the8eam/open-iconic/png/fullscreen-exit.png differ diff --git a/the8eam/open-iconic/png/globe-2x.png b/the8eam/open-iconic/png/globe-2x.png new file mode 100644 index 0000000..d01318f Binary files /dev/null and b/the8eam/open-iconic/png/globe-2x.png differ diff --git a/the8eam/open-iconic/png/globe-3x.png b/the8eam/open-iconic/png/globe-3x.png new file mode 100644 index 0000000..074a25b Binary files /dev/null and b/the8eam/open-iconic/png/globe-3x.png differ diff --git a/the8eam/open-iconic/png/globe-4x.png b/the8eam/open-iconic/png/globe-4x.png new file mode 100644 index 0000000..4191eb7 Binary files /dev/null and b/the8eam/open-iconic/png/globe-4x.png differ diff --git a/the8eam/open-iconic/png/globe-6x.png b/the8eam/open-iconic/png/globe-6x.png new file mode 100644 index 0000000..db3bf0b Binary files /dev/null and b/the8eam/open-iconic/png/globe-6x.png differ diff --git a/the8eam/open-iconic/png/globe-8x.png b/the8eam/open-iconic/png/globe-8x.png new file mode 100644 index 0000000..47b5487 Binary files /dev/null and b/the8eam/open-iconic/png/globe-8x.png differ diff --git a/the8eam/open-iconic/png/globe.png b/the8eam/open-iconic/png/globe.png new file mode 100644 index 0000000..c8c03dd Binary files /dev/null and b/the8eam/open-iconic/png/globe.png differ diff --git a/the8eam/open-iconic/png/graph-2x.png b/the8eam/open-iconic/png/graph-2x.png new file mode 100644 index 0000000..32a75cd Binary files /dev/null and b/the8eam/open-iconic/png/graph-2x.png differ diff --git a/the8eam/open-iconic/png/graph-3x.png b/the8eam/open-iconic/png/graph-3x.png new file mode 100644 index 0000000..4a1221f Binary files /dev/null and b/the8eam/open-iconic/png/graph-3x.png differ diff --git a/the8eam/open-iconic/png/graph-4x.png b/the8eam/open-iconic/png/graph-4x.png new file mode 100644 index 0000000..d4b876b Binary files /dev/null and b/the8eam/open-iconic/png/graph-4x.png differ diff --git a/the8eam/open-iconic/png/graph-6x.png b/the8eam/open-iconic/png/graph-6x.png new file mode 100644 index 0000000..c104689 Binary files /dev/null and b/the8eam/open-iconic/png/graph-6x.png differ diff --git a/the8eam/open-iconic/png/graph-8x.png b/the8eam/open-iconic/png/graph-8x.png new file mode 100644 index 0000000..1de1360 Binary files /dev/null and b/the8eam/open-iconic/png/graph-8x.png differ diff --git a/the8eam/open-iconic/png/graph.png b/the8eam/open-iconic/png/graph.png new file mode 100644 index 0000000..4b9321e Binary files /dev/null and b/the8eam/open-iconic/png/graph.png differ diff --git a/the8eam/open-iconic/png/grid-four-up-2x.png b/the8eam/open-iconic/png/grid-four-up-2x.png new file mode 100644 index 0000000..9245445 Binary files /dev/null and b/the8eam/open-iconic/png/grid-four-up-2x.png differ diff --git a/the8eam/open-iconic/png/grid-four-up-3x.png b/the8eam/open-iconic/png/grid-four-up-3x.png new file mode 100644 index 0000000..7ef3ff3 Binary files /dev/null and b/the8eam/open-iconic/png/grid-four-up-3x.png differ diff --git a/the8eam/open-iconic/png/grid-four-up-4x.png b/the8eam/open-iconic/png/grid-four-up-4x.png new file mode 100644 index 0000000..49ce0a0 Binary files /dev/null and b/the8eam/open-iconic/png/grid-four-up-4x.png differ diff --git a/the8eam/open-iconic/png/grid-four-up-6x.png b/the8eam/open-iconic/png/grid-four-up-6x.png new file mode 100644 index 0000000..b1045c6 Binary files /dev/null and b/the8eam/open-iconic/png/grid-four-up-6x.png differ diff --git a/the8eam/open-iconic/png/grid-four-up-8x.png b/the8eam/open-iconic/png/grid-four-up-8x.png new file mode 100644 index 0000000..a05adb4 Binary files /dev/null and b/the8eam/open-iconic/png/grid-four-up-8x.png differ diff --git a/the8eam/open-iconic/png/grid-four-up.png b/the8eam/open-iconic/png/grid-four-up.png new file mode 100644 index 0000000..8e71100 Binary files /dev/null and b/the8eam/open-iconic/png/grid-four-up.png differ diff --git a/the8eam/open-iconic/png/grid-three-up-2x.png b/the8eam/open-iconic/png/grid-three-up-2x.png new file mode 100644 index 0000000..7efe4f0 Binary files /dev/null and b/the8eam/open-iconic/png/grid-three-up-2x.png differ diff --git a/the8eam/open-iconic/png/grid-three-up-3x.png b/the8eam/open-iconic/png/grid-three-up-3x.png new file mode 100644 index 0000000..c3f70a2 Binary files /dev/null and b/the8eam/open-iconic/png/grid-three-up-3x.png differ diff --git a/the8eam/open-iconic/png/grid-three-up-4x.png b/the8eam/open-iconic/png/grid-three-up-4x.png new file mode 100644 index 0000000..c5ec4f0 Binary files /dev/null and b/the8eam/open-iconic/png/grid-three-up-4x.png differ diff --git a/the8eam/open-iconic/png/grid-three-up-6x.png b/the8eam/open-iconic/png/grid-three-up-6x.png new file mode 100644 index 0000000..30517d1 Binary files /dev/null and b/the8eam/open-iconic/png/grid-three-up-6x.png differ diff --git a/the8eam/open-iconic/png/grid-three-up-8x.png b/the8eam/open-iconic/png/grid-three-up-8x.png new file mode 100644 index 0000000..a836d83 Binary files /dev/null and b/the8eam/open-iconic/png/grid-three-up-8x.png differ diff --git a/the8eam/open-iconic/png/grid-three-up.png b/the8eam/open-iconic/png/grid-three-up.png new file mode 100644 index 0000000..3269e87 Binary files /dev/null and b/the8eam/open-iconic/png/grid-three-up.png differ diff --git a/the8eam/open-iconic/png/grid-two-up-2x.png b/the8eam/open-iconic/png/grid-two-up-2x.png new file mode 100644 index 0000000..a6b29dc Binary files /dev/null and b/the8eam/open-iconic/png/grid-two-up-2x.png differ diff --git a/the8eam/open-iconic/png/grid-two-up-3x.png b/the8eam/open-iconic/png/grid-two-up-3x.png new file mode 100644 index 0000000..4e4328d Binary files /dev/null and b/the8eam/open-iconic/png/grid-two-up-3x.png differ diff --git a/the8eam/open-iconic/png/grid-two-up-4x.png b/the8eam/open-iconic/png/grid-two-up-4x.png new file mode 100644 index 0000000..3bb9d24 Binary files /dev/null and b/the8eam/open-iconic/png/grid-two-up-4x.png differ diff --git a/the8eam/open-iconic/png/grid-two-up-6x.png b/the8eam/open-iconic/png/grid-two-up-6x.png new file mode 100644 index 0000000..d182587 Binary files /dev/null and b/the8eam/open-iconic/png/grid-two-up-6x.png differ diff --git a/the8eam/open-iconic/png/grid-two-up-8x.png b/the8eam/open-iconic/png/grid-two-up-8x.png new file mode 100644 index 0000000..1a38f27 Binary files /dev/null and b/the8eam/open-iconic/png/grid-two-up-8x.png differ diff --git a/the8eam/open-iconic/png/grid-two-up.png b/the8eam/open-iconic/png/grid-two-up.png new file mode 100644 index 0000000..a89d2e4 Binary files /dev/null and b/the8eam/open-iconic/png/grid-two-up.png differ diff --git a/the8eam/open-iconic/png/hard-drive-2x.png b/the8eam/open-iconic/png/hard-drive-2x.png new file mode 100644 index 0000000..e18e6ff Binary files /dev/null and b/the8eam/open-iconic/png/hard-drive-2x.png differ diff --git a/the8eam/open-iconic/png/hard-drive-3x.png b/the8eam/open-iconic/png/hard-drive-3x.png new file mode 100644 index 0000000..7245511 Binary files /dev/null and b/the8eam/open-iconic/png/hard-drive-3x.png differ diff --git a/the8eam/open-iconic/png/hard-drive-4x.png b/the8eam/open-iconic/png/hard-drive-4x.png new file mode 100644 index 0000000..676ab06 Binary files /dev/null and b/the8eam/open-iconic/png/hard-drive-4x.png differ diff --git a/the8eam/open-iconic/png/hard-drive-6x.png b/the8eam/open-iconic/png/hard-drive-6x.png new file mode 100644 index 0000000..64a3481 Binary files /dev/null and b/the8eam/open-iconic/png/hard-drive-6x.png differ diff --git a/the8eam/open-iconic/png/hard-drive-8x.png b/the8eam/open-iconic/png/hard-drive-8x.png new file mode 100644 index 0000000..19fc0df Binary files /dev/null and b/the8eam/open-iconic/png/hard-drive-8x.png differ diff --git a/the8eam/open-iconic/png/hard-drive.png b/the8eam/open-iconic/png/hard-drive.png new file mode 100644 index 0000000..9c4b77b Binary files /dev/null and b/the8eam/open-iconic/png/hard-drive.png differ diff --git a/the8eam/open-iconic/png/header-2x.png b/the8eam/open-iconic/png/header-2x.png new file mode 100644 index 0000000..ba67f61 Binary files /dev/null and b/the8eam/open-iconic/png/header-2x.png differ diff --git a/the8eam/open-iconic/png/header-3x.png b/the8eam/open-iconic/png/header-3x.png new file mode 100644 index 0000000..bcf0d9a Binary files /dev/null and b/the8eam/open-iconic/png/header-3x.png differ diff --git a/the8eam/open-iconic/png/header-4x.png b/the8eam/open-iconic/png/header-4x.png new file mode 100644 index 0000000..4bba156 Binary files /dev/null and b/the8eam/open-iconic/png/header-4x.png differ diff --git a/the8eam/open-iconic/png/header-6x.png b/the8eam/open-iconic/png/header-6x.png new file mode 100644 index 0000000..411d22f Binary files /dev/null and b/the8eam/open-iconic/png/header-6x.png differ diff --git a/the8eam/open-iconic/png/header-8x.png b/the8eam/open-iconic/png/header-8x.png new file mode 100644 index 0000000..d4f97af Binary files /dev/null and b/the8eam/open-iconic/png/header-8x.png differ diff --git a/the8eam/open-iconic/png/header.png b/the8eam/open-iconic/png/header.png new file mode 100644 index 0000000..cdf6d0e Binary files /dev/null and b/the8eam/open-iconic/png/header.png differ diff --git a/the8eam/open-iconic/png/headphones-2x.png b/the8eam/open-iconic/png/headphones-2x.png new file mode 100644 index 0000000..2389741 Binary files /dev/null and b/the8eam/open-iconic/png/headphones-2x.png differ diff --git a/the8eam/open-iconic/png/headphones-3x.png b/the8eam/open-iconic/png/headphones-3x.png new file mode 100644 index 0000000..1b16dd2 Binary files /dev/null and b/the8eam/open-iconic/png/headphones-3x.png differ diff --git a/the8eam/open-iconic/png/headphones-4x.png b/the8eam/open-iconic/png/headphones-4x.png new file mode 100644 index 0000000..094fbd4 Binary files /dev/null and b/the8eam/open-iconic/png/headphones-4x.png differ diff --git a/the8eam/open-iconic/png/headphones-6x.png b/the8eam/open-iconic/png/headphones-6x.png new file mode 100644 index 0000000..eb1c35f Binary files /dev/null and b/the8eam/open-iconic/png/headphones-6x.png differ diff --git a/the8eam/open-iconic/png/headphones-8x.png b/the8eam/open-iconic/png/headphones-8x.png new file mode 100644 index 0000000..00bd9f6 Binary files /dev/null and b/the8eam/open-iconic/png/headphones-8x.png differ diff --git a/the8eam/open-iconic/png/headphones.png b/the8eam/open-iconic/png/headphones.png new file mode 100644 index 0000000..9fa5d67 Binary files /dev/null and b/the8eam/open-iconic/png/headphones.png differ diff --git a/the8eam/open-iconic/png/heart-2x.png b/the8eam/open-iconic/png/heart-2x.png new file mode 100644 index 0000000..019855d Binary files /dev/null and b/the8eam/open-iconic/png/heart-2x.png differ diff --git a/the8eam/open-iconic/png/heart-3x.png b/the8eam/open-iconic/png/heart-3x.png new file mode 100644 index 0000000..b77f469 Binary files /dev/null and b/the8eam/open-iconic/png/heart-3x.png differ diff --git a/the8eam/open-iconic/png/heart-4x.png b/the8eam/open-iconic/png/heart-4x.png new file mode 100644 index 0000000..6915f4a Binary files /dev/null and b/the8eam/open-iconic/png/heart-4x.png differ diff --git a/the8eam/open-iconic/png/heart-6x.png b/the8eam/open-iconic/png/heart-6x.png new file mode 100644 index 0000000..4dd69aa Binary files /dev/null and b/the8eam/open-iconic/png/heart-6x.png differ diff --git a/the8eam/open-iconic/png/heart-8x.png b/the8eam/open-iconic/png/heart-8x.png new file mode 100644 index 0000000..9b7f140 Binary files /dev/null and b/the8eam/open-iconic/png/heart-8x.png differ diff --git a/the8eam/open-iconic/png/heart.png b/the8eam/open-iconic/png/heart.png new file mode 100644 index 0000000..7cd52e5 Binary files /dev/null and b/the8eam/open-iconic/png/heart.png differ diff --git a/the8eam/open-iconic/png/home-2x.png b/the8eam/open-iconic/png/home-2x.png new file mode 100644 index 0000000..2dd1d3d Binary files /dev/null and b/the8eam/open-iconic/png/home-2x.png differ diff --git a/the8eam/open-iconic/png/home-3x.png b/the8eam/open-iconic/png/home-3x.png new file mode 100644 index 0000000..944bf55 Binary files /dev/null and b/the8eam/open-iconic/png/home-3x.png differ diff --git a/the8eam/open-iconic/png/home-4x.png b/the8eam/open-iconic/png/home-4x.png new file mode 100644 index 0000000..946cd1a Binary files /dev/null and b/the8eam/open-iconic/png/home-4x.png differ diff --git a/the8eam/open-iconic/png/home-6x.png b/the8eam/open-iconic/png/home-6x.png new file mode 100644 index 0000000..9c9b84a Binary files /dev/null and b/the8eam/open-iconic/png/home-6x.png differ diff --git a/the8eam/open-iconic/png/home-8x.png b/the8eam/open-iconic/png/home-8x.png new file mode 100644 index 0000000..7110882 Binary files /dev/null and b/the8eam/open-iconic/png/home-8x.png differ diff --git a/the8eam/open-iconic/png/home.png b/the8eam/open-iconic/png/home.png new file mode 100644 index 0000000..bb4531b Binary files /dev/null and b/the8eam/open-iconic/png/home.png differ diff --git a/the8eam/open-iconic/png/image-2x.png b/the8eam/open-iconic/png/image-2x.png new file mode 100644 index 0000000..3a1b005 Binary files /dev/null and b/the8eam/open-iconic/png/image-2x.png differ diff --git a/the8eam/open-iconic/png/image-3x.png b/the8eam/open-iconic/png/image-3x.png new file mode 100644 index 0000000..25f704f Binary files /dev/null and b/the8eam/open-iconic/png/image-3x.png differ diff --git a/the8eam/open-iconic/png/image-4x.png b/the8eam/open-iconic/png/image-4x.png new file mode 100644 index 0000000..91aa7a3 Binary files /dev/null and b/the8eam/open-iconic/png/image-4x.png differ diff --git a/the8eam/open-iconic/png/image-6x.png b/the8eam/open-iconic/png/image-6x.png new file mode 100644 index 0000000..ebd1797 Binary files /dev/null and b/the8eam/open-iconic/png/image-6x.png differ diff --git a/the8eam/open-iconic/png/image-8x.png b/the8eam/open-iconic/png/image-8x.png new file mode 100644 index 0000000..9b455b5 Binary files /dev/null and b/the8eam/open-iconic/png/image-8x.png differ diff --git a/the8eam/open-iconic/png/image.png b/the8eam/open-iconic/png/image.png new file mode 100644 index 0000000..b46dffb Binary files /dev/null and b/the8eam/open-iconic/png/image.png differ diff --git a/the8eam/open-iconic/png/inbox-2x.png b/the8eam/open-iconic/png/inbox-2x.png new file mode 100644 index 0000000..e4e18f8 Binary files /dev/null and b/the8eam/open-iconic/png/inbox-2x.png differ diff --git a/the8eam/open-iconic/png/inbox-3x.png b/the8eam/open-iconic/png/inbox-3x.png new file mode 100644 index 0000000..66b00a7 Binary files /dev/null and b/the8eam/open-iconic/png/inbox-3x.png differ diff --git a/the8eam/open-iconic/png/inbox-4x.png b/the8eam/open-iconic/png/inbox-4x.png new file mode 100644 index 0000000..58cb810 Binary files /dev/null and b/the8eam/open-iconic/png/inbox-4x.png differ diff --git a/the8eam/open-iconic/png/inbox-6x.png b/the8eam/open-iconic/png/inbox-6x.png new file mode 100644 index 0000000..c3eb9e7 Binary files /dev/null and b/the8eam/open-iconic/png/inbox-6x.png differ diff --git a/the8eam/open-iconic/png/inbox-8x.png b/the8eam/open-iconic/png/inbox-8x.png new file mode 100644 index 0000000..5caf5e6 Binary files /dev/null and b/the8eam/open-iconic/png/inbox-8x.png differ diff --git a/the8eam/open-iconic/png/inbox.png b/the8eam/open-iconic/png/inbox.png new file mode 100644 index 0000000..7aac968 Binary files /dev/null and b/the8eam/open-iconic/png/inbox.png differ diff --git a/the8eam/open-iconic/png/infinity-2x.png b/the8eam/open-iconic/png/infinity-2x.png new file mode 100644 index 0000000..97538aa Binary files /dev/null and b/the8eam/open-iconic/png/infinity-2x.png differ diff --git a/the8eam/open-iconic/png/infinity-3x.png b/the8eam/open-iconic/png/infinity-3x.png new file mode 100644 index 0000000..8b0284f Binary files /dev/null and b/the8eam/open-iconic/png/infinity-3x.png differ diff --git a/the8eam/open-iconic/png/infinity-4x.png b/the8eam/open-iconic/png/infinity-4x.png new file mode 100644 index 0000000..c999801 Binary files /dev/null and b/the8eam/open-iconic/png/infinity-4x.png differ diff --git a/the8eam/open-iconic/png/infinity-6x.png b/the8eam/open-iconic/png/infinity-6x.png new file mode 100644 index 0000000..70dc656 Binary files /dev/null and b/the8eam/open-iconic/png/infinity-6x.png differ diff --git a/the8eam/open-iconic/png/infinity-8x.png b/the8eam/open-iconic/png/infinity-8x.png new file mode 100644 index 0000000..ca95f4e Binary files /dev/null and b/the8eam/open-iconic/png/infinity-8x.png differ diff --git a/the8eam/open-iconic/png/infinity.png b/the8eam/open-iconic/png/infinity.png new file mode 100644 index 0000000..db25fbe Binary files /dev/null and b/the8eam/open-iconic/png/infinity.png differ diff --git a/the8eam/open-iconic/png/info-2x.png b/the8eam/open-iconic/png/info-2x.png new file mode 100644 index 0000000..36c3cf8 Binary files /dev/null and b/the8eam/open-iconic/png/info-2x.png differ diff --git a/the8eam/open-iconic/png/info-3x.png b/the8eam/open-iconic/png/info-3x.png new file mode 100644 index 0000000..10e7fc5 Binary files /dev/null and b/the8eam/open-iconic/png/info-3x.png differ diff --git a/the8eam/open-iconic/png/info-4x.png b/the8eam/open-iconic/png/info-4x.png new file mode 100644 index 0000000..f3be15c Binary files /dev/null and b/the8eam/open-iconic/png/info-4x.png differ diff --git a/the8eam/open-iconic/png/info-6x.png b/the8eam/open-iconic/png/info-6x.png new file mode 100644 index 0000000..48ab373 Binary files /dev/null and b/the8eam/open-iconic/png/info-6x.png differ diff --git a/the8eam/open-iconic/png/info-8x.png b/the8eam/open-iconic/png/info-8x.png new file mode 100644 index 0000000..afd7f83 Binary files /dev/null and b/the8eam/open-iconic/png/info-8x.png differ diff --git a/the8eam/open-iconic/png/info.png b/the8eam/open-iconic/png/info.png new file mode 100644 index 0000000..552fa18 Binary files /dev/null and b/the8eam/open-iconic/png/info.png differ diff --git a/the8eam/open-iconic/png/italic-2x.png b/the8eam/open-iconic/png/italic-2x.png new file mode 100644 index 0000000..3661581 Binary files /dev/null and b/the8eam/open-iconic/png/italic-2x.png differ diff --git a/the8eam/open-iconic/png/italic-3x.png b/the8eam/open-iconic/png/italic-3x.png new file mode 100644 index 0000000..53580fa Binary files /dev/null and b/the8eam/open-iconic/png/italic-3x.png differ diff --git a/the8eam/open-iconic/png/italic-4x.png b/the8eam/open-iconic/png/italic-4x.png new file mode 100644 index 0000000..d2723f8 Binary files /dev/null and b/the8eam/open-iconic/png/italic-4x.png differ diff --git a/the8eam/open-iconic/png/italic-6x.png b/the8eam/open-iconic/png/italic-6x.png new file mode 100644 index 0000000..2d933d7 Binary files /dev/null and b/the8eam/open-iconic/png/italic-6x.png differ diff --git a/the8eam/open-iconic/png/italic-8x.png b/the8eam/open-iconic/png/italic-8x.png new file mode 100644 index 0000000..d6d3d22 Binary files /dev/null and b/the8eam/open-iconic/png/italic-8x.png differ diff --git a/the8eam/open-iconic/png/italic.png b/the8eam/open-iconic/png/italic.png new file mode 100644 index 0000000..30120f8 Binary files /dev/null and b/the8eam/open-iconic/png/italic.png differ diff --git a/the8eam/open-iconic/png/justify-center-2x.png b/the8eam/open-iconic/png/justify-center-2x.png new file mode 100644 index 0000000..c504dd4 Binary files /dev/null and b/the8eam/open-iconic/png/justify-center-2x.png differ diff --git a/the8eam/open-iconic/png/justify-center-3x.png b/the8eam/open-iconic/png/justify-center-3x.png new file mode 100644 index 0000000..1202196 Binary files /dev/null and b/the8eam/open-iconic/png/justify-center-3x.png differ diff --git a/the8eam/open-iconic/png/justify-center-4x.png b/the8eam/open-iconic/png/justify-center-4x.png new file mode 100644 index 0000000..29aa793 Binary files /dev/null and b/the8eam/open-iconic/png/justify-center-4x.png differ diff --git a/the8eam/open-iconic/png/justify-center-6x.png b/the8eam/open-iconic/png/justify-center-6x.png new file mode 100644 index 0000000..4357395 Binary files /dev/null and b/the8eam/open-iconic/png/justify-center-6x.png differ diff --git a/the8eam/open-iconic/png/justify-center-8x.png b/the8eam/open-iconic/png/justify-center-8x.png new file mode 100644 index 0000000..ed7e630 Binary files /dev/null and b/the8eam/open-iconic/png/justify-center-8x.png differ diff --git a/the8eam/open-iconic/png/justify-center.png b/the8eam/open-iconic/png/justify-center.png new file mode 100644 index 0000000..ac753f3 Binary files /dev/null and b/the8eam/open-iconic/png/justify-center.png differ diff --git a/the8eam/open-iconic/png/justify-left-2x.png b/the8eam/open-iconic/png/justify-left-2x.png new file mode 100644 index 0000000..96eccc5 Binary files /dev/null and b/the8eam/open-iconic/png/justify-left-2x.png differ diff --git a/the8eam/open-iconic/png/justify-left-3x.png b/the8eam/open-iconic/png/justify-left-3x.png new file mode 100644 index 0000000..36da4b2 Binary files /dev/null and b/the8eam/open-iconic/png/justify-left-3x.png differ diff --git a/the8eam/open-iconic/png/justify-left-4x.png b/the8eam/open-iconic/png/justify-left-4x.png new file mode 100644 index 0000000..75d2d64 Binary files /dev/null and b/the8eam/open-iconic/png/justify-left-4x.png differ diff --git a/the8eam/open-iconic/png/justify-left-6x.png b/the8eam/open-iconic/png/justify-left-6x.png new file mode 100644 index 0000000..8713684 Binary files /dev/null and b/the8eam/open-iconic/png/justify-left-6x.png differ diff --git a/the8eam/open-iconic/png/justify-left-8x.png b/the8eam/open-iconic/png/justify-left-8x.png new file mode 100644 index 0000000..bfeac17 Binary files /dev/null and b/the8eam/open-iconic/png/justify-left-8x.png differ diff --git a/the8eam/open-iconic/png/justify-left.png b/the8eam/open-iconic/png/justify-left.png new file mode 100644 index 0000000..79851bd Binary files /dev/null and b/the8eam/open-iconic/png/justify-left.png differ diff --git a/the8eam/open-iconic/png/justify-right-2x.png b/the8eam/open-iconic/png/justify-right-2x.png new file mode 100644 index 0000000..61c31fd Binary files /dev/null and b/the8eam/open-iconic/png/justify-right-2x.png differ diff --git a/the8eam/open-iconic/png/justify-right-3x.png b/the8eam/open-iconic/png/justify-right-3x.png new file mode 100644 index 0000000..f2ad5ad Binary files /dev/null and b/the8eam/open-iconic/png/justify-right-3x.png differ diff --git a/the8eam/open-iconic/png/justify-right-4x.png b/the8eam/open-iconic/png/justify-right-4x.png new file mode 100644 index 0000000..06767cd Binary files /dev/null and b/the8eam/open-iconic/png/justify-right-4x.png differ diff --git a/the8eam/open-iconic/png/justify-right-6x.png b/the8eam/open-iconic/png/justify-right-6x.png new file mode 100644 index 0000000..6b72189 Binary files /dev/null and b/the8eam/open-iconic/png/justify-right-6x.png differ diff --git a/the8eam/open-iconic/png/justify-right-8x.png b/the8eam/open-iconic/png/justify-right-8x.png new file mode 100644 index 0000000..5de6be2 Binary files /dev/null and b/the8eam/open-iconic/png/justify-right-8x.png differ diff --git a/the8eam/open-iconic/png/justify-right.png b/the8eam/open-iconic/png/justify-right.png new file mode 100644 index 0000000..dc5c98d Binary files /dev/null and b/the8eam/open-iconic/png/justify-right.png differ diff --git a/the8eam/open-iconic/png/key-2x.png b/the8eam/open-iconic/png/key-2x.png new file mode 100644 index 0000000..006575a Binary files /dev/null and b/the8eam/open-iconic/png/key-2x.png differ diff --git a/the8eam/open-iconic/png/key-3x.png b/the8eam/open-iconic/png/key-3x.png new file mode 100644 index 0000000..4351154 Binary files /dev/null and b/the8eam/open-iconic/png/key-3x.png differ diff --git a/the8eam/open-iconic/png/key-4x.png b/the8eam/open-iconic/png/key-4x.png new file mode 100644 index 0000000..f863e91 Binary files /dev/null and b/the8eam/open-iconic/png/key-4x.png differ diff --git a/the8eam/open-iconic/png/key-6x.png b/the8eam/open-iconic/png/key-6x.png new file mode 100644 index 0000000..9112348 Binary files /dev/null and b/the8eam/open-iconic/png/key-6x.png differ diff --git a/the8eam/open-iconic/png/key-8x.png b/the8eam/open-iconic/png/key-8x.png new file mode 100644 index 0000000..3618605 Binary files /dev/null and b/the8eam/open-iconic/png/key-8x.png differ diff --git a/the8eam/open-iconic/png/key.png b/the8eam/open-iconic/png/key.png new file mode 100644 index 0000000..ad1c933 Binary files /dev/null and b/the8eam/open-iconic/png/key.png differ diff --git a/the8eam/open-iconic/png/laptop-2x.png b/the8eam/open-iconic/png/laptop-2x.png new file mode 100644 index 0000000..c13f0d2 Binary files /dev/null and b/the8eam/open-iconic/png/laptop-2x.png differ diff --git a/the8eam/open-iconic/png/laptop-3x.png b/the8eam/open-iconic/png/laptop-3x.png new file mode 100644 index 0000000..c559446 Binary files /dev/null and b/the8eam/open-iconic/png/laptop-3x.png differ diff --git a/the8eam/open-iconic/png/laptop-4x.png b/the8eam/open-iconic/png/laptop-4x.png new file mode 100644 index 0000000..3f52cb8 Binary files /dev/null and b/the8eam/open-iconic/png/laptop-4x.png differ diff --git a/the8eam/open-iconic/png/laptop-6x.png b/the8eam/open-iconic/png/laptop-6x.png new file mode 100644 index 0000000..f946322 Binary files /dev/null and b/the8eam/open-iconic/png/laptop-6x.png differ diff --git a/the8eam/open-iconic/png/laptop-8x.png b/the8eam/open-iconic/png/laptop-8x.png new file mode 100644 index 0000000..823d268 Binary files /dev/null and b/the8eam/open-iconic/png/laptop-8x.png differ diff --git a/the8eam/open-iconic/png/laptop.png b/the8eam/open-iconic/png/laptop.png new file mode 100644 index 0000000..5873d71 Binary files /dev/null and b/the8eam/open-iconic/png/laptop.png differ diff --git a/the8eam/open-iconic/png/layers-2x.png b/the8eam/open-iconic/png/layers-2x.png new file mode 100644 index 0000000..6c56a67 Binary files /dev/null and b/the8eam/open-iconic/png/layers-2x.png differ diff --git a/the8eam/open-iconic/png/layers-3x.png b/the8eam/open-iconic/png/layers-3x.png new file mode 100644 index 0000000..9bcd6a6 Binary files /dev/null and b/the8eam/open-iconic/png/layers-3x.png differ diff --git a/the8eam/open-iconic/png/layers-4x.png b/the8eam/open-iconic/png/layers-4x.png new file mode 100644 index 0000000..6187756 Binary files /dev/null and b/the8eam/open-iconic/png/layers-4x.png differ diff --git a/the8eam/open-iconic/png/layers-6x.png b/the8eam/open-iconic/png/layers-6x.png new file mode 100644 index 0000000..c530518 Binary files /dev/null and b/the8eam/open-iconic/png/layers-6x.png differ diff --git a/the8eam/open-iconic/png/layers-8x.png b/the8eam/open-iconic/png/layers-8x.png new file mode 100644 index 0000000..04f2ba5 Binary files /dev/null and b/the8eam/open-iconic/png/layers-8x.png differ diff --git a/the8eam/open-iconic/png/layers.png b/the8eam/open-iconic/png/layers.png new file mode 100644 index 0000000..72d7faf Binary files /dev/null and b/the8eam/open-iconic/png/layers.png differ diff --git a/the8eam/open-iconic/png/lightbulb-2x.png b/the8eam/open-iconic/png/lightbulb-2x.png new file mode 100644 index 0000000..66391ba Binary files /dev/null and b/the8eam/open-iconic/png/lightbulb-2x.png differ diff --git a/the8eam/open-iconic/png/lightbulb-3x.png b/the8eam/open-iconic/png/lightbulb-3x.png new file mode 100644 index 0000000..17addc1 Binary files /dev/null and b/the8eam/open-iconic/png/lightbulb-3x.png differ diff --git a/the8eam/open-iconic/png/lightbulb-4x.png b/the8eam/open-iconic/png/lightbulb-4x.png new file mode 100644 index 0000000..bae9ab8 Binary files /dev/null and b/the8eam/open-iconic/png/lightbulb-4x.png differ diff --git a/the8eam/open-iconic/png/lightbulb-6x.png b/the8eam/open-iconic/png/lightbulb-6x.png new file mode 100644 index 0000000..d64496a Binary files /dev/null and b/the8eam/open-iconic/png/lightbulb-6x.png differ diff --git a/the8eam/open-iconic/png/lightbulb-8x.png b/the8eam/open-iconic/png/lightbulb-8x.png new file mode 100644 index 0000000..010c744 Binary files /dev/null and b/the8eam/open-iconic/png/lightbulb-8x.png differ diff --git a/the8eam/open-iconic/png/lightbulb.png b/the8eam/open-iconic/png/lightbulb.png new file mode 100644 index 0000000..dc7633a Binary files /dev/null and b/the8eam/open-iconic/png/lightbulb.png differ diff --git a/the8eam/open-iconic/png/link-broken-2x.png b/the8eam/open-iconic/png/link-broken-2x.png new file mode 100644 index 0000000..6af40b0 Binary files /dev/null and b/the8eam/open-iconic/png/link-broken-2x.png differ diff --git a/the8eam/open-iconic/png/link-broken-3x.png b/the8eam/open-iconic/png/link-broken-3x.png new file mode 100644 index 0000000..c9f7969 Binary files /dev/null and b/the8eam/open-iconic/png/link-broken-3x.png differ diff --git a/the8eam/open-iconic/png/link-broken-4x.png b/the8eam/open-iconic/png/link-broken-4x.png new file mode 100644 index 0000000..81b8231 Binary files /dev/null and b/the8eam/open-iconic/png/link-broken-4x.png differ diff --git a/the8eam/open-iconic/png/link-broken-6x.png b/the8eam/open-iconic/png/link-broken-6x.png new file mode 100644 index 0000000..8075f86 Binary files /dev/null and b/the8eam/open-iconic/png/link-broken-6x.png differ diff --git a/the8eam/open-iconic/png/link-broken-8x.png b/the8eam/open-iconic/png/link-broken-8x.png new file mode 100644 index 0000000..c446e05 Binary files /dev/null and b/the8eam/open-iconic/png/link-broken-8x.png differ diff --git a/the8eam/open-iconic/png/link-broken.png b/the8eam/open-iconic/png/link-broken.png new file mode 100644 index 0000000..467f394 Binary files /dev/null and b/the8eam/open-iconic/png/link-broken.png differ diff --git a/the8eam/open-iconic/png/link-intact-2x.png b/the8eam/open-iconic/png/link-intact-2x.png new file mode 100644 index 0000000..b157e9b Binary files /dev/null and b/the8eam/open-iconic/png/link-intact-2x.png differ diff --git a/the8eam/open-iconic/png/link-intact-3x.png b/the8eam/open-iconic/png/link-intact-3x.png new file mode 100644 index 0000000..430c1b6 Binary files /dev/null and b/the8eam/open-iconic/png/link-intact-3x.png differ diff --git a/the8eam/open-iconic/png/link-intact-4x.png b/the8eam/open-iconic/png/link-intact-4x.png new file mode 100644 index 0000000..6f5bc0f Binary files /dev/null and b/the8eam/open-iconic/png/link-intact-4x.png differ diff --git a/the8eam/open-iconic/png/link-intact-6x.png b/the8eam/open-iconic/png/link-intact-6x.png new file mode 100644 index 0000000..ab8946d Binary files /dev/null and b/the8eam/open-iconic/png/link-intact-6x.png differ diff --git a/the8eam/open-iconic/png/link-intact-8x.png b/the8eam/open-iconic/png/link-intact-8x.png new file mode 100644 index 0000000..52d18e5 Binary files /dev/null and b/the8eam/open-iconic/png/link-intact-8x.png differ diff --git a/the8eam/open-iconic/png/link-intact.png b/the8eam/open-iconic/png/link-intact.png new file mode 100644 index 0000000..35e35a2 Binary files /dev/null and b/the8eam/open-iconic/png/link-intact.png differ diff --git a/the8eam/open-iconic/png/list-2x.png b/the8eam/open-iconic/png/list-2x.png new file mode 100644 index 0000000..1fc4450 Binary files /dev/null and b/the8eam/open-iconic/png/list-2x.png differ diff --git a/the8eam/open-iconic/png/list-3x.png b/the8eam/open-iconic/png/list-3x.png new file mode 100644 index 0000000..8042894 Binary files /dev/null and b/the8eam/open-iconic/png/list-3x.png differ diff --git a/the8eam/open-iconic/png/list-4x.png b/the8eam/open-iconic/png/list-4x.png new file mode 100644 index 0000000..649bb80 Binary files /dev/null and b/the8eam/open-iconic/png/list-4x.png differ diff --git a/the8eam/open-iconic/png/list-6x.png b/the8eam/open-iconic/png/list-6x.png new file mode 100644 index 0000000..5df8c4d Binary files /dev/null and b/the8eam/open-iconic/png/list-6x.png differ diff --git a/the8eam/open-iconic/png/list-8x.png b/the8eam/open-iconic/png/list-8x.png new file mode 100644 index 0000000..27d941c Binary files /dev/null and b/the8eam/open-iconic/png/list-8x.png differ diff --git a/the8eam/open-iconic/png/list-rich-2x.png b/the8eam/open-iconic/png/list-rich-2x.png new file mode 100644 index 0000000..0b7e985 Binary files /dev/null and b/the8eam/open-iconic/png/list-rich-2x.png differ diff --git a/the8eam/open-iconic/png/list-rich-3x.png b/the8eam/open-iconic/png/list-rich-3x.png new file mode 100644 index 0000000..84dfef5 Binary files /dev/null and b/the8eam/open-iconic/png/list-rich-3x.png differ diff --git a/the8eam/open-iconic/png/list-rich-4x.png b/the8eam/open-iconic/png/list-rich-4x.png new file mode 100644 index 0000000..adf25e7 Binary files /dev/null and b/the8eam/open-iconic/png/list-rich-4x.png differ diff --git a/the8eam/open-iconic/png/list-rich-6x.png b/the8eam/open-iconic/png/list-rich-6x.png new file mode 100644 index 0000000..f0cd2e8 Binary files /dev/null and b/the8eam/open-iconic/png/list-rich-6x.png differ diff --git a/the8eam/open-iconic/png/list-rich-8x.png b/the8eam/open-iconic/png/list-rich-8x.png new file mode 100644 index 0000000..f60c173 Binary files /dev/null and b/the8eam/open-iconic/png/list-rich-8x.png differ diff --git a/the8eam/open-iconic/png/list-rich.png b/the8eam/open-iconic/png/list-rich.png new file mode 100644 index 0000000..3ee3e90 Binary files /dev/null and b/the8eam/open-iconic/png/list-rich.png differ diff --git a/the8eam/open-iconic/png/list.png b/the8eam/open-iconic/png/list.png new file mode 100644 index 0000000..e0045ab Binary files /dev/null and b/the8eam/open-iconic/png/list.png differ diff --git a/the8eam/open-iconic/png/location-2x.png b/the8eam/open-iconic/png/location-2x.png new file mode 100644 index 0000000..138023f Binary files /dev/null and b/the8eam/open-iconic/png/location-2x.png differ diff --git a/the8eam/open-iconic/png/location-3x.png b/the8eam/open-iconic/png/location-3x.png new file mode 100644 index 0000000..82a54b0 Binary files /dev/null and b/the8eam/open-iconic/png/location-3x.png differ diff --git a/the8eam/open-iconic/png/location-4x.png b/the8eam/open-iconic/png/location-4x.png new file mode 100644 index 0000000..668df11 Binary files /dev/null and b/the8eam/open-iconic/png/location-4x.png differ diff --git a/the8eam/open-iconic/png/location-6x.png b/the8eam/open-iconic/png/location-6x.png new file mode 100644 index 0000000..e3b8472 Binary files /dev/null and b/the8eam/open-iconic/png/location-6x.png differ diff --git a/the8eam/open-iconic/png/location-8x.png b/the8eam/open-iconic/png/location-8x.png new file mode 100644 index 0000000..0acb8d7 Binary files /dev/null and b/the8eam/open-iconic/png/location-8x.png differ diff --git a/the8eam/open-iconic/png/location.png b/the8eam/open-iconic/png/location.png new file mode 100644 index 0000000..0dc9027 Binary files /dev/null and b/the8eam/open-iconic/png/location.png differ diff --git a/the8eam/open-iconic/png/lock-locked-2x.png b/the8eam/open-iconic/png/lock-locked-2x.png new file mode 100644 index 0000000..f2646f5 Binary files /dev/null and b/the8eam/open-iconic/png/lock-locked-2x.png differ diff --git a/the8eam/open-iconic/png/lock-locked-3x.png b/the8eam/open-iconic/png/lock-locked-3x.png new file mode 100644 index 0000000..5e4b247 Binary files /dev/null and b/the8eam/open-iconic/png/lock-locked-3x.png differ diff --git a/the8eam/open-iconic/png/lock-locked-4x.png b/the8eam/open-iconic/png/lock-locked-4x.png new file mode 100644 index 0000000..90cfdf9 Binary files /dev/null and b/the8eam/open-iconic/png/lock-locked-4x.png differ diff --git a/the8eam/open-iconic/png/lock-locked-6x.png b/the8eam/open-iconic/png/lock-locked-6x.png new file mode 100644 index 0000000..1393e2d Binary files /dev/null and b/the8eam/open-iconic/png/lock-locked-6x.png differ diff --git a/the8eam/open-iconic/png/lock-locked-8x.png b/the8eam/open-iconic/png/lock-locked-8x.png new file mode 100644 index 0000000..335f006 Binary files /dev/null and b/the8eam/open-iconic/png/lock-locked-8x.png differ diff --git a/the8eam/open-iconic/png/lock-locked.png b/the8eam/open-iconic/png/lock-locked.png new file mode 100644 index 0000000..fef8198 Binary files /dev/null and b/the8eam/open-iconic/png/lock-locked.png differ diff --git a/the8eam/open-iconic/png/lock-unlocked-2x.png b/the8eam/open-iconic/png/lock-unlocked-2x.png new file mode 100644 index 0000000..ca13401 Binary files /dev/null and b/the8eam/open-iconic/png/lock-unlocked-2x.png differ diff --git a/the8eam/open-iconic/png/lock-unlocked-3x.png b/the8eam/open-iconic/png/lock-unlocked-3x.png new file mode 100644 index 0000000..230c8c8 Binary files /dev/null and b/the8eam/open-iconic/png/lock-unlocked-3x.png differ diff --git a/the8eam/open-iconic/png/lock-unlocked-4x.png b/the8eam/open-iconic/png/lock-unlocked-4x.png new file mode 100644 index 0000000..5567f6b Binary files /dev/null and b/the8eam/open-iconic/png/lock-unlocked-4x.png differ diff --git a/the8eam/open-iconic/png/lock-unlocked-6x.png b/the8eam/open-iconic/png/lock-unlocked-6x.png new file mode 100644 index 0000000..cbf5bff Binary files /dev/null and b/the8eam/open-iconic/png/lock-unlocked-6x.png differ diff --git a/the8eam/open-iconic/png/lock-unlocked-8x.png b/the8eam/open-iconic/png/lock-unlocked-8x.png new file mode 100644 index 0000000..1730aa0 Binary files /dev/null and b/the8eam/open-iconic/png/lock-unlocked-8x.png differ diff --git a/the8eam/open-iconic/png/lock-unlocked.png b/the8eam/open-iconic/png/lock-unlocked.png new file mode 100644 index 0000000..27195e0 Binary files /dev/null and b/the8eam/open-iconic/png/lock-unlocked.png differ diff --git a/the8eam/open-iconic/png/loop-2x.png b/the8eam/open-iconic/png/loop-2x.png new file mode 100644 index 0000000..d7392d8 Binary files /dev/null and b/the8eam/open-iconic/png/loop-2x.png differ diff --git a/the8eam/open-iconic/png/loop-3x.png b/the8eam/open-iconic/png/loop-3x.png new file mode 100644 index 0000000..c9f3a41 Binary files /dev/null and b/the8eam/open-iconic/png/loop-3x.png differ diff --git a/the8eam/open-iconic/png/loop-4x.png b/the8eam/open-iconic/png/loop-4x.png new file mode 100644 index 0000000..c93cf7e Binary files /dev/null and b/the8eam/open-iconic/png/loop-4x.png differ diff --git a/the8eam/open-iconic/png/loop-6x.png b/the8eam/open-iconic/png/loop-6x.png new file mode 100644 index 0000000..18b0420 Binary files /dev/null and b/the8eam/open-iconic/png/loop-6x.png differ diff --git a/the8eam/open-iconic/png/loop-8x.png b/the8eam/open-iconic/png/loop-8x.png new file mode 100644 index 0000000..4a551d8 Binary files /dev/null and b/the8eam/open-iconic/png/loop-8x.png differ diff --git a/the8eam/open-iconic/png/loop-circular-2x.png b/the8eam/open-iconic/png/loop-circular-2x.png new file mode 100644 index 0000000..5b4bac0 Binary files /dev/null and b/the8eam/open-iconic/png/loop-circular-2x.png differ diff --git a/the8eam/open-iconic/png/loop-circular-3x.png b/the8eam/open-iconic/png/loop-circular-3x.png new file mode 100644 index 0000000..09195f0 Binary files /dev/null and b/the8eam/open-iconic/png/loop-circular-3x.png differ diff --git a/the8eam/open-iconic/png/loop-circular-4x.png b/the8eam/open-iconic/png/loop-circular-4x.png new file mode 100644 index 0000000..241af4d Binary files /dev/null and b/the8eam/open-iconic/png/loop-circular-4x.png differ diff --git a/the8eam/open-iconic/png/loop-circular-6x.png b/the8eam/open-iconic/png/loop-circular-6x.png new file mode 100644 index 0000000..fc6ea75 Binary files /dev/null and b/the8eam/open-iconic/png/loop-circular-6x.png differ diff --git a/the8eam/open-iconic/png/loop-circular-8x.png b/the8eam/open-iconic/png/loop-circular-8x.png new file mode 100644 index 0000000..c25224d Binary files /dev/null and b/the8eam/open-iconic/png/loop-circular-8x.png differ diff --git a/the8eam/open-iconic/png/loop-circular.png b/the8eam/open-iconic/png/loop-circular.png new file mode 100644 index 0000000..887fefb Binary files /dev/null and b/the8eam/open-iconic/png/loop-circular.png differ diff --git a/the8eam/open-iconic/png/loop-square-2x.png b/the8eam/open-iconic/png/loop-square-2x.png new file mode 100644 index 0000000..09e7e3a Binary files /dev/null and b/the8eam/open-iconic/png/loop-square-2x.png differ diff --git a/the8eam/open-iconic/png/loop-square-3x.png b/the8eam/open-iconic/png/loop-square-3x.png new file mode 100644 index 0000000..281b5f1 Binary files /dev/null and b/the8eam/open-iconic/png/loop-square-3x.png differ diff --git a/the8eam/open-iconic/png/loop-square-4x.png b/the8eam/open-iconic/png/loop-square-4x.png new file mode 100644 index 0000000..7d0797b Binary files /dev/null and b/the8eam/open-iconic/png/loop-square-4x.png differ diff --git a/the8eam/open-iconic/png/loop-square-6x.png b/the8eam/open-iconic/png/loop-square-6x.png new file mode 100644 index 0000000..6f90121 Binary files /dev/null and b/the8eam/open-iconic/png/loop-square-6x.png differ diff --git a/the8eam/open-iconic/png/loop-square-8x.png b/the8eam/open-iconic/png/loop-square-8x.png new file mode 100644 index 0000000..44e07ba Binary files /dev/null and b/the8eam/open-iconic/png/loop-square-8x.png differ diff --git a/the8eam/open-iconic/png/loop-square.png b/the8eam/open-iconic/png/loop-square.png new file mode 100644 index 0000000..6f987a7 Binary files /dev/null and b/the8eam/open-iconic/png/loop-square.png differ diff --git a/the8eam/open-iconic/png/loop.png b/the8eam/open-iconic/png/loop.png new file mode 100644 index 0000000..ba15577 Binary files /dev/null and b/the8eam/open-iconic/png/loop.png differ diff --git a/the8eam/open-iconic/png/magnifying-glass-2x.png b/the8eam/open-iconic/png/magnifying-glass-2x.png new file mode 100644 index 0000000..f4fa628 Binary files /dev/null and b/the8eam/open-iconic/png/magnifying-glass-2x.png differ diff --git a/the8eam/open-iconic/png/magnifying-glass-3x.png b/the8eam/open-iconic/png/magnifying-glass-3x.png new file mode 100644 index 0000000..adcae4f Binary files /dev/null and b/the8eam/open-iconic/png/magnifying-glass-3x.png differ diff --git a/the8eam/open-iconic/png/magnifying-glass-4x.png b/the8eam/open-iconic/png/magnifying-glass-4x.png new file mode 100644 index 0000000..5aadcc8 Binary files /dev/null and b/the8eam/open-iconic/png/magnifying-glass-4x.png differ diff --git a/the8eam/open-iconic/png/magnifying-glass-6x.png b/the8eam/open-iconic/png/magnifying-glass-6x.png new file mode 100644 index 0000000..2b765fa Binary files /dev/null and b/the8eam/open-iconic/png/magnifying-glass-6x.png differ diff --git a/the8eam/open-iconic/png/magnifying-glass-8x.png b/the8eam/open-iconic/png/magnifying-glass-8x.png new file mode 100644 index 0000000..2baa23e Binary files /dev/null and b/the8eam/open-iconic/png/magnifying-glass-8x.png differ diff --git a/the8eam/open-iconic/png/magnifying-glass.png b/the8eam/open-iconic/png/magnifying-glass.png new file mode 100644 index 0000000..f048de1 Binary files /dev/null and b/the8eam/open-iconic/png/magnifying-glass.png differ diff --git a/the8eam/open-iconic/png/map-2x.png b/the8eam/open-iconic/png/map-2x.png new file mode 100644 index 0000000..90126c7 Binary files /dev/null and b/the8eam/open-iconic/png/map-2x.png differ diff --git a/the8eam/open-iconic/png/map-3x.png b/the8eam/open-iconic/png/map-3x.png new file mode 100644 index 0000000..0acb099 Binary files /dev/null and b/the8eam/open-iconic/png/map-3x.png differ diff --git a/the8eam/open-iconic/png/map-4x.png b/the8eam/open-iconic/png/map-4x.png new file mode 100644 index 0000000..8b33235 Binary files /dev/null and b/the8eam/open-iconic/png/map-4x.png differ diff --git a/the8eam/open-iconic/png/map-6x.png b/the8eam/open-iconic/png/map-6x.png new file mode 100644 index 0000000..93f67ae Binary files /dev/null and b/the8eam/open-iconic/png/map-6x.png differ diff --git a/the8eam/open-iconic/png/map-8x.png b/the8eam/open-iconic/png/map-8x.png new file mode 100644 index 0000000..3b5040c Binary files /dev/null and b/the8eam/open-iconic/png/map-8x.png differ diff --git a/the8eam/open-iconic/png/map-marker-2x.png b/the8eam/open-iconic/png/map-marker-2x.png new file mode 100644 index 0000000..165b0bd Binary files /dev/null and b/the8eam/open-iconic/png/map-marker-2x.png differ diff --git a/the8eam/open-iconic/png/map-marker-3x.png b/the8eam/open-iconic/png/map-marker-3x.png new file mode 100644 index 0000000..c29f604 Binary files /dev/null and b/the8eam/open-iconic/png/map-marker-3x.png differ diff --git a/the8eam/open-iconic/png/map-marker-4x.png b/the8eam/open-iconic/png/map-marker-4x.png new file mode 100644 index 0000000..a0e7819 Binary files /dev/null and b/the8eam/open-iconic/png/map-marker-4x.png differ diff --git a/the8eam/open-iconic/png/map-marker-6x.png b/the8eam/open-iconic/png/map-marker-6x.png new file mode 100644 index 0000000..c171b74 Binary files /dev/null and b/the8eam/open-iconic/png/map-marker-6x.png differ diff --git a/the8eam/open-iconic/png/map-marker-8x.png b/the8eam/open-iconic/png/map-marker-8x.png new file mode 100644 index 0000000..0a516e3 Binary files /dev/null and b/the8eam/open-iconic/png/map-marker-8x.png differ diff --git a/the8eam/open-iconic/png/map-marker.png b/the8eam/open-iconic/png/map-marker.png new file mode 100644 index 0000000..32d8ec3 Binary files /dev/null and b/the8eam/open-iconic/png/map-marker.png differ diff --git a/the8eam/open-iconic/png/map.png b/the8eam/open-iconic/png/map.png new file mode 100644 index 0000000..c2791c3 Binary files /dev/null and b/the8eam/open-iconic/png/map.png differ diff --git a/the8eam/open-iconic/png/media-pause-2x.png b/the8eam/open-iconic/png/media-pause-2x.png new file mode 100644 index 0000000..19a7b09 Binary files /dev/null and b/the8eam/open-iconic/png/media-pause-2x.png differ diff --git a/the8eam/open-iconic/png/media-pause-3x.png b/the8eam/open-iconic/png/media-pause-3x.png new file mode 100644 index 0000000..c373b5e Binary files /dev/null and b/the8eam/open-iconic/png/media-pause-3x.png differ diff --git a/the8eam/open-iconic/png/media-pause-4x.png b/the8eam/open-iconic/png/media-pause-4x.png new file mode 100644 index 0000000..970dff5 Binary files /dev/null and b/the8eam/open-iconic/png/media-pause-4x.png differ diff --git a/the8eam/open-iconic/png/media-pause-6x.png b/the8eam/open-iconic/png/media-pause-6x.png new file mode 100644 index 0000000..eb31daf Binary files /dev/null and b/the8eam/open-iconic/png/media-pause-6x.png differ diff --git a/the8eam/open-iconic/png/media-pause-8x.png b/the8eam/open-iconic/png/media-pause-8x.png new file mode 100644 index 0000000..bbdc5b7 Binary files /dev/null and b/the8eam/open-iconic/png/media-pause-8x.png differ diff --git a/the8eam/open-iconic/png/media-pause.png b/the8eam/open-iconic/png/media-pause.png new file mode 100644 index 0000000..1077278 Binary files /dev/null and b/the8eam/open-iconic/png/media-pause.png differ diff --git a/the8eam/open-iconic/png/media-play-2x.png b/the8eam/open-iconic/png/media-play-2x.png new file mode 100644 index 0000000..e934b0a Binary files /dev/null and b/the8eam/open-iconic/png/media-play-2x.png differ diff --git a/the8eam/open-iconic/png/media-play-3x.png b/the8eam/open-iconic/png/media-play-3x.png new file mode 100644 index 0000000..daf5cf2 Binary files /dev/null and b/the8eam/open-iconic/png/media-play-3x.png differ diff --git a/the8eam/open-iconic/png/media-play-4x.png b/the8eam/open-iconic/png/media-play-4x.png new file mode 100644 index 0000000..df5a660 Binary files /dev/null and b/the8eam/open-iconic/png/media-play-4x.png differ diff --git a/the8eam/open-iconic/png/media-play-6x.png b/the8eam/open-iconic/png/media-play-6x.png new file mode 100644 index 0000000..41ffbb2 Binary files /dev/null and b/the8eam/open-iconic/png/media-play-6x.png differ diff --git a/the8eam/open-iconic/png/media-play-8x.png b/the8eam/open-iconic/png/media-play-8x.png new file mode 100644 index 0000000..6fd56f1 Binary files /dev/null and b/the8eam/open-iconic/png/media-play-8x.png differ diff --git a/the8eam/open-iconic/png/media-play.png b/the8eam/open-iconic/png/media-play.png new file mode 100644 index 0000000..6f92016 Binary files /dev/null and b/the8eam/open-iconic/png/media-play.png differ diff --git a/the8eam/open-iconic/png/media-record-2x.png b/the8eam/open-iconic/png/media-record-2x.png new file mode 100644 index 0000000..3e6faf4 Binary files /dev/null and b/the8eam/open-iconic/png/media-record-2x.png differ diff --git a/the8eam/open-iconic/png/media-record-3x.png b/the8eam/open-iconic/png/media-record-3x.png new file mode 100644 index 0000000..d353252 Binary files /dev/null and b/the8eam/open-iconic/png/media-record-3x.png differ diff --git a/the8eam/open-iconic/png/media-record-4x.png b/the8eam/open-iconic/png/media-record-4x.png new file mode 100644 index 0000000..31c5a97 Binary files /dev/null and b/the8eam/open-iconic/png/media-record-4x.png differ diff --git a/the8eam/open-iconic/png/media-record-6x.png b/the8eam/open-iconic/png/media-record-6x.png new file mode 100644 index 0000000..7912ec7 Binary files /dev/null and b/the8eam/open-iconic/png/media-record-6x.png differ diff --git a/the8eam/open-iconic/png/media-record-8x.png b/the8eam/open-iconic/png/media-record-8x.png new file mode 100644 index 0000000..564042d Binary files /dev/null and b/the8eam/open-iconic/png/media-record-8x.png differ diff --git a/the8eam/open-iconic/png/media-record.png b/the8eam/open-iconic/png/media-record.png new file mode 100644 index 0000000..fad32e3 Binary files /dev/null and b/the8eam/open-iconic/png/media-record.png differ diff --git a/the8eam/open-iconic/png/media-skip-backward-2x.png b/the8eam/open-iconic/png/media-skip-backward-2x.png new file mode 100644 index 0000000..baeaad1 Binary files /dev/null and b/the8eam/open-iconic/png/media-skip-backward-2x.png differ diff --git a/the8eam/open-iconic/png/media-skip-backward-3x.png b/the8eam/open-iconic/png/media-skip-backward-3x.png new file mode 100644 index 0000000..c33b776 Binary files /dev/null and b/the8eam/open-iconic/png/media-skip-backward-3x.png differ diff --git a/the8eam/open-iconic/png/media-skip-backward-4x.png b/the8eam/open-iconic/png/media-skip-backward-4x.png new file mode 100644 index 0000000..7024dc9 Binary files /dev/null and b/the8eam/open-iconic/png/media-skip-backward-4x.png differ diff --git a/the8eam/open-iconic/png/media-skip-backward-6x.png b/the8eam/open-iconic/png/media-skip-backward-6x.png new file mode 100644 index 0000000..3f8bb4e Binary files /dev/null and b/the8eam/open-iconic/png/media-skip-backward-6x.png differ diff --git a/the8eam/open-iconic/png/media-skip-backward-8x.png b/the8eam/open-iconic/png/media-skip-backward-8x.png new file mode 100644 index 0000000..4ac01d8 Binary files /dev/null and b/the8eam/open-iconic/png/media-skip-backward-8x.png differ diff --git a/the8eam/open-iconic/png/media-skip-backward.png b/the8eam/open-iconic/png/media-skip-backward.png new file mode 100644 index 0000000..7994fb3 Binary files /dev/null and b/the8eam/open-iconic/png/media-skip-backward.png differ diff --git a/the8eam/open-iconic/png/media-skip-forward-2x.png b/the8eam/open-iconic/png/media-skip-forward-2x.png new file mode 100644 index 0000000..5865176 Binary files /dev/null and b/the8eam/open-iconic/png/media-skip-forward-2x.png differ diff --git a/the8eam/open-iconic/png/media-skip-forward-3x.png b/the8eam/open-iconic/png/media-skip-forward-3x.png new file mode 100644 index 0000000..d3a45e7 Binary files /dev/null and b/the8eam/open-iconic/png/media-skip-forward-3x.png differ diff --git a/the8eam/open-iconic/png/media-skip-forward-4x.png b/the8eam/open-iconic/png/media-skip-forward-4x.png new file mode 100644 index 0000000..04eec0c Binary files /dev/null and b/the8eam/open-iconic/png/media-skip-forward-4x.png differ diff --git a/the8eam/open-iconic/png/media-skip-forward-6x.png b/the8eam/open-iconic/png/media-skip-forward-6x.png new file mode 100644 index 0000000..77967f2 Binary files /dev/null and b/the8eam/open-iconic/png/media-skip-forward-6x.png differ diff --git a/the8eam/open-iconic/png/media-skip-forward-8x.png b/the8eam/open-iconic/png/media-skip-forward-8x.png new file mode 100644 index 0000000..562aaa5 Binary files /dev/null and b/the8eam/open-iconic/png/media-skip-forward-8x.png differ diff --git a/the8eam/open-iconic/png/media-skip-forward.png b/the8eam/open-iconic/png/media-skip-forward.png new file mode 100644 index 0000000..43d635d Binary files /dev/null and b/the8eam/open-iconic/png/media-skip-forward.png differ diff --git a/the8eam/open-iconic/png/media-step-backward-2x.png b/the8eam/open-iconic/png/media-step-backward-2x.png new file mode 100644 index 0000000..bc2018b Binary files /dev/null and b/the8eam/open-iconic/png/media-step-backward-2x.png differ diff --git a/the8eam/open-iconic/png/media-step-backward-3x.png b/the8eam/open-iconic/png/media-step-backward-3x.png new file mode 100644 index 0000000..c4012cc Binary files /dev/null and b/the8eam/open-iconic/png/media-step-backward-3x.png differ diff --git a/the8eam/open-iconic/png/media-step-backward-4x.png b/the8eam/open-iconic/png/media-step-backward-4x.png new file mode 100644 index 0000000..028d8c5 Binary files /dev/null and b/the8eam/open-iconic/png/media-step-backward-4x.png differ diff --git a/the8eam/open-iconic/png/media-step-backward-6x.png b/the8eam/open-iconic/png/media-step-backward-6x.png new file mode 100644 index 0000000..d9a07fe Binary files /dev/null and b/the8eam/open-iconic/png/media-step-backward-6x.png differ diff --git a/the8eam/open-iconic/png/media-step-backward-8x.png b/the8eam/open-iconic/png/media-step-backward-8x.png new file mode 100644 index 0000000..7c8b248 Binary files /dev/null and b/the8eam/open-iconic/png/media-step-backward-8x.png differ diff --git a/the8eam/open-iconic/png/media-step-backward.png b/the8eam/open-iconic/png/media-step-backward.png new file mode 100644 index 0000000..67a228d Binary files /dev/null and b/the8eam/open-iconic/png/media-step-backward.png differ diff --git a/the8eam/open-iconic/png/media-step-forward-2x.png b/the8eam/open-iconic/png/media-step-forward-2x.png new file mode 100644 index 0000000..e56e8ca Binary files /dev/null and b/the8eam/open-iconic/png/media-step-forward-2x.png differ diff --git a/the8eam/open-iconic/png/media-step-forward-3x.png b/the8eam/open-iconic/png/media-step-forward-3x.png new file mode 100644 index 0000000..c5d71dc Binary files /dev/null and b/the8eam/open-iconic/png/media-step-forward-3x.png differ diff --git a/the8eam/open-iconic/png/media-step-forward-4x.png b/the8eam/open-iconic/png/media-step-forward-4x.png new file mode 100644 index 0000000..0589fca Binary files /dev/null and b/the8eam/open-iconic/png/media-step-forward-4x.png differ diff --git a/the8eam/open-iconic/png/media-step-forward-6x.png b/the8eam/open-iconic/png/media-step-forward-6x.png new file mode 100644 index 0000000..62e49f9 Binary files /dev/null and b/the8eam/open-iconic/png/media-step-forward-6x.png differ diff --git a/the8eam/open-iconic/png/media-step-forward-8x.png b/the8eam/open-iconic/png/media-step-forward-8x.png new file mode 100644 index 0000000..9424d12 Binary files /dev/null and b/the8eam/open-iconic/png/media-step-forward-8x.png differ diff --git a/the8eam/open-iconic/png/media-step-forward.png b/the8eam/open-iconic/png/media-step-forward.png new file mode 100644 index 0000000..12efd2e Binary files /dev/null and b/the8eam/open-iconic/png/media-step-forward.png differ diff --git a/the8eam/open-iconic/png/media-stop-2x.png b/the8eam/open-iconic/png/media-stop-2x.png new file mode 100644 index 0000000..c261089 Binary files /dev/null and b/the8eam/open-iconic/png/media-stop-2x.png differ diff --git a/the8eam/open-iconic/png/media-stop-3x.png b/the8eam/open-iconic/png/media-stop-3x.png new file mode 100644 index 0000000..1639e30 Binary files /dev/null and b/the8eam/open-iconic/png/media-stop-3x.png differ diff --git a/the8eam/open-iconic/png/media-stop-4x.png b/the8eam/open-iconic/png/media-stop-4x.png new file mode 100644 index 0000000..2f8803c Binary files /dev/null and b/the8eam/open-iconic/png/media-stop-4x.png differ diff --git a/the8eam/open-iconic/png/media-stop-6x.png b/the8eam/open-iconic/png/media-stop-6x.png new file mode 100644 index 0000000..2d86e8e Binary files /dev/null and b/the8eam/open-iconic/png/media-stop-6x.png differ diff --git a/the8eam/open-iconic/png/media-stop-8x.png b/the8eam/open-iconic/png/media-stop-8x.png new file mode 100644 index 0000000..5d76a52 Binary files /dev/null and b/the8eam/open-iconic/png/media-stop-8x.png differ diff --git a/the8eam/open-iconic/png/media-stop.png b/the8eam/open-iconic/png/media-stop.png new file mode 100644 index 0000000..7de1f4c Binary files /dev/null and b/the8eam/open-iconic/png/media-stop.png differ diff --git a/the8eam/open-iconic/png/medical-cross-2x.png b/the8eam/open-iconic/png/medical-cross-2x.png new file mode 100644 index 0000000..24193be Binary files /dev/null and b/the8eam/open-iconic/png/medical-cross-2x.png differ diff --git a/the8eam/open-iconic/png/medical-cross-3x.png b/the8eam/open-iconic/png/medical-cross-3x.png new file mode 100644 index 0000000..2cc0732 Binary files /dev/null and b/the8eam/open-iconic/png/medical-cross-3x.png differ diff --git a/the8eam/open-iconic/png/medical-cross-4x.png b/the8eam/open-iconic/png/medical-cross-4x.png new file mode 100644 index 0000000..d50065c Binary files /dev/null and b/the8eam/open-iconic/png/medical-cross-4x.png differ diff --git a/the8eam/open-iconic/png/medical-cross-6x.png b/the8eam/open-iconic/png/medical-cross-6x.png new file mode 100644 index 0000000..5c19a5a Binary files /dev/null and b/the8eam/open-iconic/png/medical-cross-6x.png differ diff --git a/the8eam/open-iconic/png/medical-cross-8x.png b/the8eam/open-iconic/png/medical-cross-8x.png new file mode 100644 index 0000000..909b733 Binary files /dev/null and b/the8eam/open-iconic/png/medical-cross-8x.png differ diff --git a/the8eam/open-iconic/png/medical-cross.png b/the8eam/open-iconic/png/medical-cross.png new file mode 100644 index 0000000..3ce95b1 Binary files /dev/null and b/the8eam/open-iconic/png/medical-cross.png differ diff --git a/the8eam/open-iconic/png/menu-2x.png b/the8eam/open-iconic/png/menu-2x.png new file mode 100644 index 0000000..7104b65 Binary files /dev/null and b/the8eam/open-iconic/png/menu-2x.png differ diff --git a/the8eam/open-iconic/png/menu-3x.png b/the8eam/open-iconic/png/menu-3x.png new file mode 100644 index 0000000..0980e8e Binary files /dev/null and b/the8eam/open-iconic/png/menu-3x.png differ diff --git a/the8eam/open-iconic/png/menu-4x.png b/the8eam/open-iconic/png/menu-4x.png new file mode 100644 index 0000000..6de4e43 Binary files /dev/null and b/the8eam/open-iconic/png/menu-4x.png differ diff --git a/the8eam/open-iconic/png/menu-6x.png b/the8eam/open-iconic/png/menu-6x.png new file mode 100644 index 0000000..6b146ff Binary files /dev/null and b/the8eam/open-iconic/png/menu-6x.png differ diff --git a/the8eam/open-iconic/png/menu-8x.png b/the8eam/open-iconic/png/menu-8x.png new file mode 100644 index 0000000..717221c Binary files /dev/null and b/the8eam/open-iconic/png/menu-8x.png differ diff --git a/the8eam/open-iconic/png/menu.png b/the8eam/open-iconic/png/menu.png new file mode 100644 index 0000000..2cbedf6 Binary files /dev/null and b/the8eam/open-iconic/png/menu.png differ diff --git a/the8eam/open-iconic/png/microphone-2x.png b/the8eam/open-iconic/png/microphone-2x.png new file mode 100644 index 0000000..7dc94c6 Binary files /dev/null and b/the8eam/open-iconic/png/microphone-2x.png differ diff --git a/the8eam/open-iconic/png/microphone-3x.png b/the8eam/open-iconic/png/microphone-3x.png new file mode 100644 index 0000000..73963f2 Binary files /dev/null and b/the8eam/open-iconic/png/microphone-3x.png differ diff --git a/the8eam/open-iconic/png/microphone-4x.png b/the8eam/open-iconic/png/microphone-4x.png new file mode 100644 index 0000000..c0df974 Binary files /dev/null and b/the8eam/open-iconic/png/microphone-4x.png differ diff --git a/the8eam/open-iconic/png/microphone-6x.png b/the8eam/open-iconic/png/microphone-6x.png new file mode 100644 index 0000000..7a6fea1 Binary files /dev/null and b/the8eam/open-iconic/png/microphone-6x.png differ diff --git a/the8eam/open-iconic/png/microphone-8x.png b/the8eam/open-iconic/png/microphone-8x.png new file mode 100644 index 0000000..f0eb472 Binary files /dev/null and b/the8eam/open-iconic/png/microphone-8x.png differ diff --git a/the8eam/open-iconic/png/microphone.png b/the8eam/open-iconic/png/microphone.png new file mode 100644 index 0000000..70822fa Binary files /dev/null and b/the8eam/open-iconic/png/microphone.png differ diff --git a/the8eam/open-iconic/png/minus-2x.png b/the8eam/open-iconic/png/minus-2x.png new file mode 100644 index 0000000..0ec8087 Binary files /dev/null and b/the8eam/open-iconic/png/minus-2x.png differ diff --git a/the8eam/open-iconic/png/minus-3x.png b/the8eam/open-iconic/png/minus-3x.png new file mode 100644 index 0000000..1d92137 Binary files /dev/null and b/the8eam/open-iconic/png/minus-3x.png differ diff --git a/the8eam/open-iconic/png/minus-4x.png b/the8eam/open-iconic/png/minus-4x.png new file mode 100644 index 0000000..785adf5 Binary files /dev/null and b/the8eam/open-iconic/png/minus-4x.png differ diff --git a/the8eam/open-iconic/png/minus-6x.png b/the8eam/open-iconic/png/minus-6x.png new file mode 100644 index 0000000..3ca8d0b Binary files /dev/null and b/the8eam/open-iconic/png/minus-6x.png differ diff --git a/the8eam/open-iconic/png/minus-8x.png b/the8eam/open-iconic/png/minus-8x.png new file mode 100644 index 0000000..64f2c5f Binary files /dev/null and b/the8eam/open-iconic/png/minus-8x.png differ diff --git a/the8eam/open-iconic/png/minus.png b/the8eam/open-iconic/png/minus.png new file mode 100644 index 0000000..e10ee05 Binary files /dev/null and b/the8eam/open-iconic/png/minus.png differ diff --git a/the8eam/open-iconic/png/monitor-2x.png b/the8eam/open-iconic/png/monitor-2x.png new file mode 100644 index 0000000..47cdfc1 Binary files /dev/null and b/the8eam/open-iconic/png/monitor-2x.png differ diff --git a/the8eam/open-iconic/png/monitor-3x.png b/the8eam/open-iconic/png/monitor-3x.png new file mode 100644 index 0000000..7f27810 Binary files /dev/null and b/the8eam/open-iconic/png/monitor-3x.png differ diff --git a/the8eam/open-iconic/png/monitor-4x.png b/the8eam/open-iconic/png/monitor-4x.png new file mode 100644 index 0000000..d6687be Binary files /dev/null and b/the8eam/open-iconic/png/monitor-4x.png differ diff --git a/the8eam/open-iconic/png/monitor-6x.png b/the8eam/open-iconic/png/monitor-6x.png new file mode 100644 index 0000000..a67a026 Binary files /dev/null and b/the8eam/open-iconic/png/monitor-6x.png differ diff --git a/the8eam/open-iconic/png/monitor-8x.png b/the8eam/open-iconic/png/monitor-8x.png new file mode 100644 index 0000000..2be901c Binary files /dev/null and b/the8eam/open-iconic/png/monitor-8x.png differ diff --git a/the8eam/open-iconic/png/monitor.png b/the8eam/open-iconic/png/monitor.png new file mode 100644 index 0000000..6d3a70f Binary files /dev/null and b/the8eam/open-iconic/png/monitor.png differ diff --git a/the8eam/open-iconic/png/moon-2x.png b/the8eam/open-iconic/png/moon-2x.png new file mode 100644 index 0000000..2b86f40 Binary files /dev/null and b/the8eam/open-iconic/png/moon-2x.png differ diff --git a/the8eam/open-iconic/png/moon-3x.png b/the8eam/open-iconic/png/moon-3x.png new file mode 100644 index 0000000..160b1ae Binary files /dev/null and b/the8eam/open-iconic/png/moon-3x.png differ diff --git a/the8eam/open-iconic/png/moon-4x.png b/the8eam/open-iconic/png/moon-4x.png new file mode 100644 index 0000000..c0f291a Binary files /dev/null and b/the8eam/open-iconic/png/moon-4x.png differ diff --git a/the8eam/open-iconic/png/moon-6x.png b/the8eam/open-iconic/png/moon-6x.png new file mode 100644 index 0000000..49de690 Binary files /dev/null and b/the8eam/open-iconic/png/moon-6x.png differ diff --git a/the8eam/open-iconic/png/moon-8x.png b/the8eam/open-iconic/png/moon-8x.png new file mode 100644 index 0000000..b40de76 Binary files /dev/null and b/the8eam/open-iconic/png/moon-8x.png differ diff --git a/the8eam/open-iconic/png/moon.png b/the8eam/open-iconic/png/moon.png new file mode 100644 index 0000000..af1df7e Binary files /dev/null and b/the8eam/open-iconic/png/moon.png differ diff --git a/the8eam/open-iconic/png/move-2x.png b/the8eam/open-iconic/png/move-2x.png new file mode 100644 index 0000000..5ab75d5 Binary files /dev/null and b/the8eam/open-iconic/png/move-2x.png differ diff --git a/the8eam/open-iconic/png/move-3x.png b/the8eam/open-iconic/png/move-3x.png new file mode 100644 index 0000000..fb63c7a Binary files /dev/null and b/the8eam/open-iconic/png/move-3x.png differ diff --git a/the8eam/open-iconic/png/move-4x.png b/the8eam/open-iconic/png/move-4x.png new file mode 100644 index 0000000..9bc0019 Binary files /dev/null and b/the8eam/open-iconic/png/move-4x.png differ diff --git a/the8eam/open-iconic/png/move-6x.png b/the8eam/open-iconic/png/move-6x.png new file mode 100644 index 0000000..151b804 Binary files /dev/null and b/the8eam/open-iconic/png/move-6x.png differ diff --git a/the8eam/open-iconic/png/move-8x.png b/the8eam/open-iconic/png/move-8x.png new file mode 100644 index 0000000..c1cc4bf Binary files /dev/null and b/the8eam/open-iconic/png/move-8x.png differ diff --git a/the8eam/open-iconic/png/move.png b/the8eam/open-iconic/png/move.png new file mode 100644 index 0000000..b25a953 Binary files /dev/null and b/the8eam/open-iconic/png/move.png differ diff --git a/the8eam/open-iconic/png/musical-note-2x.png b/the8eam/open-iconic/png/musical-note-2x.png new file mode 100644 index 0000000..a342240 Binary files /dev/null and b/the8eam/open-iconic/png/musical-note-2x.png differ diff --git a/the8eam/open-iconic/png/musical-note-3x.png b/the8eam/open-iconic/png/musical-note-3x.png new file mode 100644 index 0000000..8594d50 Binary files /dev/null and b/the8eam/open-iconic/png/musical-note-3x.png differ diff --git a/the8eam/open-iconic/png/musical-note-4x.png b/the8eam/open-iconic/png/musical-note-4x.png new file mode 100644 index 0000000..a4350f4 Binary files /dev/null and b/the8eam/open-iconic/png/musical-note-4x.png differ diff --git a/the8eam/open-iconic/png/musical-note-6x.png b/the8eam/open-iconic/png/musical-note-6x.png new file mode 100644 index 0000000..768d8ee Binary files /dev/null and b/the8eam/open-iconic/png/musical-note-6x.png differ diff --git a/the8eam/open-iconic/png/musical-note-8x.png b/the8eam/open-iconic/png/musical-note-8x.png new file mode 100644 index 0000000..85ae198 Binary files /dev/null and b/the8eam/open-iconic/png/musical-note-8x.png differ diff --git a/the8eam/open-iconic/png/musical-note.png b/the8eam/open-iconic/png/musical-note.png new file mode 100644 index 0000000..d410ef2 Binary files /dev/null and b/the8eam/open-iconic/png/musical-note.png differ diff --git a/the8eam/open-iconic/png/paperclip-2x.png b/the8eam/open-iconic/png/paperclip-2x.png new file mode 100644 index 0000000..b60f07d Binary files /dev/null and b/the8eam/open-iconic/png/paperclip-2x.png differ diff --git a/the8eam/open-iconic/png/paperclip-3x.png b/the8eam/open-iconic/png/paperclip-3x.png new file mode 100644 index 0000000..0bb10b4 Binary files /dev/null and b/the8eam/open-iconic/png/paperclip-3x.png differ diff --git a/the8eam/open-iconic/png/paperclip-4x.png b/the8eam/open-iconic/png/paperclip-4x.png new file mode 100644 index 0000000..d22c79a Binary files /dev/null and b/the8eam/open-iconic/png/paperclip-4x.png differ diff --git a/the8eam/open-iconic/png/paperclip-6x.png b/the8eam/open-iconic/png/paperclip-6x.png new file mode 100644 index 0000000..dca6a09 Binary files /dev/null and b/the8eam/open-iconic/png/paperclip-6x.png differ diff --git a/the8eam/open-iconic/png/paperclip-8x.png b/the8eam/open-iconic/png/paperclip-8x.png new file mode 100644 index 0000000..74b50a2 Binary files /dev/null and b/the8eam/open-iconic/png/paperclip-8x.png differ diff --git a/the8eam/open-iconic/png/paperclip.png b/the8eam/open-iconic/png/paperclip.png new file mode 100644 index 0000000..97b6906 Binary files /dev/null and b/the8eam/open-iconic/png/paperclip.png differ diff --git a/the8eam/open-iconic/png/pencil-2x.png b/the8eam/open-iconic/png/pencil-2x.png new file mode 100644 index 0000000..88971f0 Binary files /dev/null and b/the8eam/open-iconic/png/pencil-2x.png differ diff --git a/the8eam/open-iconic/png/pencil-3x.png b/the8eam/open-iconic/png/pencil-3x.png new file mode 100644 index 0000000..f14464d Binary files /dev/null and b/the8eam/open-iconic/png/pencil-3x.png differ diff --git a/the8eam/open-iconic/png/pencil-4x.png b/the8eam/open-iconic/png/pencil-4x.png new file mode 100644 index 0000000..ead8536 Binary files /dev/null and b/the8eam/open-iconic/png/pencil-4x.png differ diff --git a/the8eam/open-iconic/png/pencil-6x.png b/the8eam/open-iconic/png/pencil-6x.png new file mode 100644 index 0000000..81ea986 Binary files /dev/null and b/the8eam/open-iconic/png/pencil-6x.png differ diff --git a/the8eam/open-iconic/png/pencil-8x.png b/the8eam/open-iconic/png/pencil-8x.png new file mode 100644 index 0000000..b3a1599 Binary files /dev/null and b/the8eam/open-iconic/png/pencil-8x.png differ diff --git a/the8eam/open-iconic/png/pencil.png b/the8eam/open-iconic/png/pencil.png new file mode 100644 index 0000000..ed3cbfd Binary files /dev/null and b/the8eam/open-iconic/png/pencil.png differ diff --git a/the8eam/open-iconic/png/people-2x.png b/the8eam/open-iconic/png/people-2x.png new file mode 100644 index 0000000..e186bec Binary files /dev/null and b/the8eam/open-iconic/png/people-2x.png differ diff --git a/the8eam/open-iconic/png/people-3x.png b/the8eam/open-iconic/png/people-3x.png new file mode 100644 index 0000000..4406f67 Binary files /dev/null and b/the8eam/open-iconic/png/people-3x.png differ diff --git a/the8eam/open-iconic/png/people-4x.png b/the8eam/open-iconic/png/people-4x.png new file mode 100644 index 0000000..5decec2 Binary files /dev/null and b/the8eam/open-iconic/png/people-4x.png differ diff --git a/the8eam/open-iconic/png/people-6x.png b/the8eam/open-iconic/png/people-6x.png new file mode 100644 index 0000000..8b4ce8c Binary files /dev/null and b/the8eam/open-iconic/png/people-6x.png differ diff --git a/the8eam/open-iconic/png/people-8x.png b/the8eam/open-iconic/png/people-8x.png new file mode 100644 index 0000000..ebdafe2 Binary files /dev/null and b/the8eam/open-iconic/png/people-8x.png differ diff --git a/the8eam/open-iconic/png/people.png b/the8eam/open-iconic/png/people.png new file mode 100644 index 0000000..8bcbac8 Binary files /dev/null and b/the8eam/open-iconic/png/people.png differ diff --git a/the8eam/open-iconic/png/person-2x.png b/the8eam/open-iconic/png/person-2x.png new file mode 100644 index 0000000..d5e8fce Binary files /dev/null and b/the8eam/open-iconic/png/person-2x.png differ diff --git a/the8eam/open-iconic/png/person-3x.png b/the8eam/open-iconic/png/person-3x.png new file mode 100644 index 0000000..188c177 Binary files /dev/null and b/the8eam/open-iconic/png/person-3x.png differ diff --git a/the8eam/open-iconic/png/person-4x.png b/the8eam/open-iconic/png/person-4x.png new file mode 100644 index 0000000..3c12ee2 Binary files /dev/null and b/the8eam/open-iconic/png/person-4x.png differ diff --git a/the8eam/open-iconic/png/person-6x.png b/the8eam/open-iconic/png/person-6x.png new file mode 100644 index 0000000..8eab7bc Binary files /dev/null and b/the8eam/open-iconic/png/person-6x.png differ diff --git a/the8eam/open-iconic/png/person-8x.png b/the8eam/open-iconic/png/person-8x.png new file mode 100644 index 0000000..0d21780 Binary files /dev/null and b/the8eam/open-iconic/png/person-8x.png differ diff --git a/the8eam/open-iconic/png/person.png b/the8eam/open-iconic/png/person.png new file mode 100644 index 0000000..a873aef Binary files /dev/null and b/the8eam/open-iconic/png/person.png differ diff --git a/the8eam/open-iconic/png/phone-2x.png b/the8eam/open-iconic/png/phone-2x.png new file mode 100644 index 0000000..57caca1 Binary files /dev/null and b/the8eam/open-iconic/png/phone-2x.png differ diff --git a/the8eam/open-iconic/png/phone-3x.png b/the8eam/open-iconic/png/phone-3x.png new file mode 100644 index 0000000..1c4e087 Binary files /dev/null and b/the8eam/open-iconic/png/phone-3x.png differ diff --git a/the8eam/open-iconic/png/phone-4x.png b/the8eam/open-iconic/png/phone-4x.png new file mode 100644 index 0000000..3a64be9 Binary files /dev/null and b/the8eam/open-iconic/png/phone-4x.png differ diff --git a/the8eam/open-iconic/png/phone-6x.png b/the8eam/open-iconic/png/phone-6x.png new file mode 100644 index 0000000..1c81130 Binary files /dev/null and b/the8eam/open-iconic/png/phone-6x.png differ diff --git a/the8eam/open-iconic/png/phone-8x.png b/the8eam/open-iconic/png/phone-8x.png new file mode 100644 index 0000000..19098e5 Binary files /dev/null and b/the8eam/open-iconic/png/phone-8x.png differ diff --git a/the8eam/open-iconic/png/phone.png b/the8eam/open-iconic/png/phone.png new file mode 100644 index 0000000..c6366d9 Binary files /dev/null and b/the8eam/open-iconic/png/phone.png differ diff --git a/the8eam/open-iconic/png/pie-chart-2x.png b/the8eam/open-iconic/png/pie-chart-2x.png new file mode 100644 index 0000000..07c5db6 Binary files /dev/null and b/the8eam/open-iconic/png/pie-chart-2x.png differ diff --git a/the8eam/open-iconic/png/pie-chart-3x.png b/the8eam/open-iconic/png/pie-chart-3x.png new file mode 100644 index 0000000..0c2c94a Binary files /dev/null and b/the8eam/open-iconic/png/pie-chart-3x.png differ diff --git a/the8eam/open-iconic/png/pie-chart-4x.png b/the8eam/open-iconic/png/pie-chart-4x.png new file mode 100644 index 0000000..0d2d0ad Binary files /dev/null and b/the8eam/open-iconic/png/pie-chart-4x.png differ diff --git a/the8eam/open-iconic/png/pie-chart-6x.png b/the8eam/open-iconic/png/pie-chart-6x.png new file mode 100644 index 0000000..9829233 Binary files /dev/null and b/the8eam/open-iconic/png/pie-chart-6x.png differ diff --git a/the8eam/open-iconic/png/pie-chart-8x.png b/the8eam/open-iconic/png/pie-chart-8x.png new file mode 100644 index 0000000..eb63e77 Binary files /dev/null and b/the8eam/open-iconic/png/pie-chart-8x.png differ diff --git a/the8eam/open-iconic/png/pie-chart.png b/the8eam/open-iconic/png/pie-chart.png new file mode 100644 index 0000000..eb45098 Binary files /dev/null and b/the8eam/open-iconic/png/pie-chart.png differ diff --git a/the8eam/open-iconic/png/pin-2x.png b/the8eam/open-iconic/png/pin-2x.png new file mode 100644 index 0000000..2814c8d Binary files /dev/null and b/the8eam/open-iconic/png/pin-2x.png differ diff --git a/the8eam/open-iconic/png/pin-3x.png b/the8eam/open-iconic/png/pin-3x.png new file mode 100644 index 0000000..08bfeb9 Binary files /dev/null and b/the8eam/open-iconic/png/pin-3x.png differ diff --git a/the8eam/open-iconic/png/pin-4x.png b/the8eam/open-iconic/png/pin-4x.png new file mode 100644 index 0000000..c26f78e Binary files /dev/null and b/the8eam/open-iconic/png/pin-4x.png differ diff --git a/the8eam/open-iconic/png/pin-6x.png b/the8eam/open-iconic/png/pin-6x.png new file mode 100644 index 0000000..c5721c3 Binary files /dev/null and b/the8eam/open-iconic/png/pin-6x.png differ diff --git a/the8eam/open-iconic/png/pin-8x.png b/the8eam/open-iconic/png/pin-8x.png new file mode 100644 index 0000000..8ee302f Binary files /dev/null and b/the8eam/open-iconic/png/pin-8x.png differ diff --git a/the8eam/open-iconic/png/pin.png b/the8eam/open-iconic/png/pin.png new file mode 100644 index 0000000..c3aad71 Binary files /dev/null and b/the8eam/open-iconic/png/pin.png differ diff --git a/the8eam/open-iconic/png/play-circle-2x.png b/the8eam/open-iconic/png/play-circle-2x.png new file mode 100644 index 0000000..51d5aeb Binary files /dev/null and b/the8eam/open-iconic/png/play-circle-2x.png differ diff --git a/the8eam/open-iconic/png/play-circle-3x.png b/the8eam/open-iconic/png/play-circle-3x.png new file mode 100644 index 0000000..42e13f4 Binary files /dev/null and b/the8eam/open-iconic/png/play-circle-3x.png differ diff --git a/the8eam/open-iconic/png/play-circle-4x.png b/the8eam/open-iconic/png/play-circle-4x.png new file mode 100644 index 0000000..48f26e2 Binary files /dev/null and b/the8eam/open-iconic/png/play-circle-4x.png differ diff --git a/the8eam/open-iconic/png/play-circle-6x.png b/the8eam/open-iconic/png/play-circle-6x.png new file mode 100644 index 0000000..5eb5e5e Binary files /dev/null and b/the8eam/open-iconic/png/play-circle-6x.png differ diff --git a/the8eam/open-iconic/png/play-circle-8x.png b/the8eam/open-iconic/png/play-circle-8x.png new file mode 100644 index 0000000..ff8ec2f Binary files /dev/null and b/the8eam/open-iconic/png/play-circle-8x.png differ diff --git a/the8eam/open-iconic/png/play-circle.png b/the8eam/open-iconic/png/play-circle.png new file mode 100644 index 0000000..eb7bb51 Binary files /dev/null and b/the8eam/open-iconic/png/play-circle.png differ diff --git a/the8eam/open-iconic/png/plus-2x.png b/the8eam/open-iconic/png/plus-2x.png new file mode 100644 index 0000000..667b035 Binary files /dev/null and b/the8eam/open-iconic/png/plus-2x.png differ diff --git a/the8eam/open-iconic/png/plus-3x.png b/the8eam/open-iconic/png/plus-3x.png new file mode 100644 index 0000000..21c45ed Binary files /dev/null and b/the8eam/open-iconic/png/plus-3x.png differ diff --git a/the8eam/open-iconic/png/plus-4x.png b/the8eam/open-iconic/png/plus-4x.png new file mode 100644 index 0000000..23967d4 Binary files /dev/null and b/the8eam/open-iconic/png/plus-4x.png differ diff --git a/the8eam/open-iconic/png/plus-6x.png b/the8eam/open-iconic/png/plus-6x.png new file mode 100644 index 0000000..0a343a1 Binary files /dev/null and b/the8eam/open-iconic/png/plus-6x.png differ diff --git a/the8eam/open-iconic/png/plus-8x.png b/the8eam/open-iconic/png/plus-8x.png new file mode 100644 index 0000000..f58fed7 Binary files /dev/null and b/the8eam/open-iconic/png/plus-8x.png differ diff --git a/the8eam/open-iconic/png/plus.png b/the8eam/open-iconic/png/plus.png new file mode 100644 index 0000000..1088eb9 Binary files /dev/null and b/the8eam/open-iconic/png/plus.png differ diff --git a/the8eam/open-iconic/png/power-standby-2x.png b/the8eam/open-iconic/png/power-standby-2x.png new file mode 100644 index 0000000..10ed7da Binary files /dev/null and b/the8eam/open-iconic/png/power-standby-2x.png differ diff --git a/the8eam/open-iconic/png/power-standby-3x.png b/the8eam/open-iconic/png/power-standby-3x.png new file mode 100644 index 0000000..e7e9177 Binary files /dev/null and b/the8eam/open-iconic/png/power-standby-3x.png differ diff --git a/the8eam/open-iconic/png/power-standby-4x.png b/the8eam/open-iconic/png/power-standby-4x.png new file mode 100644 index 0000000..f49d8d0 Binary files /dev/null and b/the8eam/open-iconic/png/power-standby-4x.png differ diff --git a/the8eam/open-iconic/png/power-standby-6x.png b/the8eam/open-iconic/png/power-standby-6x.png new file mode 100644 index 0000000..1533b4d Binary files /dev/null and b/the8eam/open-iconic/png/power-standby-6x.png differ diff --git a/the8eam/open-iconic/png/power-standby-8x.png b/the8eam/open-iconic/png/power-standby-8x.png new file mode 100644 index 0000000..ac7eb06 Binary files /dev/null and b/the8eam/open-iconic/png/power-standby-8x.png differ diff --git a/the8eam/open-iconic/png/power-standby.png b/the8eam/open-iconic/png/power-standby.png new file mode 100644 index 0000000..03965ad Binary files /dev/null and b/the8eam/open-iconic/png/power-standby.png differ diff --git a/the8eam/open-iconic/png/print-2x.png b/the8eam/open-iconic/png/print-2x.png new file mode 100644 index 0000000..9f3525f Binary files /dev/null and b/the8eam/open-iconic/png/print-2x.png differ diff --git a/the8eam/open-iconic/png/print-3x.png b/the8eam/open-iconic/png/print-3x.png new file mode 100644 index 0000000..ad29bc5 Binary files /dev/null and b/the8eam/open-iconic/png/print-3x.png differ diff --git a/the8eam/open-iconic/png/print-4x.png b/the8eam/open-iconic/png/print-4x.png new file mode 100644 index 0000000..774bcc3 Binary files /dev/null and b/the8eam/open-iconic/png/print-4x.png differ diff --git a/the8eam/open-iconic/png/print-6x.png b/the8eam/open-iconic/png/print-6x.png new file mode 100644 index 0000000..22df5a9 Binary files /dev/null and b/the8eam/open-iconic/png/print-6x.png differ diff --git a/the8eam/open-iconic/png/print-8x.png b/the8eam/open-iconic/png/print-8x.png new file mode 100644 index 0000000..0570040 Binary files /dev/null and b/the8eam/open-iconic/png/print-8x.png differ diff --git a/the8eam/open-iconic/png/print.png b/the8eam/open-iconic/png/print.png new file mode 100644 index 0000000..e3a1e6e Binary files /dev/null and b/the8eam/open-iconic/png/print.png differ diff --git a/the8eam/open-iconic/png/project-2x.png b/the8eam/open-iconic/png/project-2x.png new file mode 100644 index 0000000..bf512b4 Binary files /dev/null and b/the8eam/open-iconic/png/project-2x.png differ diff --git a/the8eam/open-iconic/png/project-3x.png b/the8eam/open-iconic/png/project-3x.png new file mode 100644 index 0000000..e9b5d0c Binary files /dev/null and b/the8eam/open-iconic/png/project-3x.png differ diff --git a/the8eam/open-iconic/png/project-4x.png b/the8eam/open-iconic/png/project-4x.png new file mode 100644 index 0000000..812cf18 Binary files /dev/null and b/the8eam/open-iconic/png/project-4x.png differ diff --git a/the8eam/open-iconic/png/project-6x.png b/the8eam/open-iconic/png/project-6x.png new file mode 100644 index 0000000..76976b6 Binary files /dev/null and b/the8eam/open-iconic/png/project-6x.png differ diff --git a/the8eam/open-iconic/png/project-8x.png b/the8eam/open-iconic/png/project-8x.png new file mode 100644 index 0000000..2db3a5d Binary files /dev/null and b/the8eam/open-iconic/png/project-8x.png differ diff --git a/the8eam/open-iconic/png/project.png b/the8eam/open-iconic/png/project.png new file mode 100644 index 0000000..227bbaa Binary files /dev/null and b/the8eam/open-iconic/png/project.png differ diff --git a/the8eam/open-iconic/png/pulse-2x.png b/the8eam/open-iconic/png/pulse-2x.png new file mode 100644 index 0000000..1ae1055 Binary files /dev/null and b/the8eam/open-iconic/png/pulse-2x.png differ diff --git a/the8eam/open-iconic/png/pulse-3x.png b/the8eam/open-iconic/png/pulse-3x.png new file mode 100644 index 0000000..d5ae434 Binary files /dev/null and b/the8eam/open-iconic/png/pulse-3x.png differ diff --git a/the8eam/open-iconic/png/pulse-4x.png b/the8eam/open-iconic/png/pulse-4x.png new file mode 100644 index 0000000..ccd5a7c Binary files /dev/null and b/the8eam/open-iconic/png/pulse-4x.png differ diff --git a/the8eam/open-iconic/png/pulse-6x.png b/the8eam/open-iconic/png/pulse-6x.png new file mode 100644 index 0000000..a7c67b7 Binary files /dev/null and b/the8eam/open-iconic/png/pulse-6x.png differ diff --git a/the8eam/open-iconic/png/pulse-8x.png b/the8eam/open-iconic/png/pulse-8x.png new file mode 100644 index 0000000..5705362 Binary files /dev/null and b/the8eam/open-iconic/png/pulse-8x.png differ diff --git a/the8eam/open-iconic/png/pulse.png b/the8eam/open-iconic/png/pulse.png new file mode 100644 index 0000000..6aee55a Binary files /dev/null and b/the8eam/open-iconic/png/pulse.png differ diff --git a/the8eam/open-iconic/png/puzzle-piece-2x.png b/the8eam/open-iconic/png/puzzle-piece-2x.png new file mode 100644 index 0000000..6279207 Binary files /dev/null and b/the8eam/open-iconic/png/puzzle-piece-2x.png differ diff --git a/the8eam/open-iconic/png/puzzle-piece-3x.png b/the8eam/open-iconic/png/puzzle-piece-3x.png new file mode 100644 index 0000000..b01a9c8 Binary files /dev/null and b/the8eam/open-iconic/png/puzzle-piece-3x.png differ diff --git a/the8eam/open-iconic/png/puzzle-piece-4x.png b/the8eam/open-iconic/png/puzzle-piece-4x.png new file mode 100644 index 0000000..d6461b2 Binary files /dev/null and b/the8eam/open-iconic/png/puzzle-piece-4x.png differ diff --git a/the8eam/open-iconic/png/puzzle-piece-6x.png b/the8eam/open-iconic/png/puzzle-piece-6x.png new file mode 100644 index 0000000..d7f2833 Binary files /dev/null and b/the8eam/open-iconic/png/puzzle-piece-6x.png differ diff --git a/the8eam/open-iconic/png/puzzle-piece-8x.png b/the8eam/open-iconic/png/puzzle-piece-8x.png new file mode 100644 index 0000000..be6d6f0 Binary files /dev/null and b/the8eam/open-iconic/png/puzzle-piece-8x.png differ diff --git a/the8eam/open-iconic/png/puzzle-piece.png b/the8eam/open-iconic/png/puzzle-piece.png new file mode 100644 index 0000000..2ae1782 Binary files /dev/null and b/the8eam/open-iconic/png/puzzle-piece.png differ diff --git a/the8eam/open-iconic/png/question-mark-2x.png b/the8eam/open-iconic/png/question-mark-2x.png new file mode 100644 index 0000000..264cc89 Binary files /dev/null and b/the8eam/open-iconic/png/question-mark-2x.png differ diff --git a/the8eam/open-iconic/png/question-mark-3x.png b/the8eam/open-iconic/png/question-mark-3x.png new file mode 100644 index 0000000..29e6568 Binary files /dev/null and b/the8eam/open-iconic/png/question-mark-3x.png differ diff --git a/the8eam/open-iconic/png/question-mark-4x.png b/the8eam/open-iconic/png/question-mark-4x.png new file mode 100644 index 0000000..92c49b4 Binary files /dev/null and b/the8eam/open-iconic/png/question-mark-4x.png differ diff --git a/the8eam/open-iconic/png/question-mark-6x.png b/the8eam/open-iconic/png/question-mark-6x.png new file mode 100644 index 0000000..5a696fa Binary files /dev/null and b/the8eam/open-iconic/png/question-mark-6x.png differ diff --git a/the8eam/open-iconic/png/question-mark-8x.png b/the8eam/open-iconic/png/question-mark-8x.png new file mode 100644 index 0000000..6b384e0 Binary files /dev/null and b/the8eam/open-iconic/png/question-mark-8x.png differ diff --git a/the8eam/open-iconic/png/question-mark.png b/the8eam/open-iconic/png/question-mark.png new file mode 100644 index 0000000..86cea63 Binary files /dev/null and b/the8eam/open-iconic/png/question-mark.png differ diff --git a/the8eam/open-iconic/png/rain-2x.png b/the8eam/open-iconic/png/rain-2x.png new file mode 100644 index 0000000..b618140 Binary files /dev/null and b/the8eam/open-iconic/png/rain-2x.png differ diff --git a/the8eam/open-iconic/png/rain-3x.png b/the8eam/open-iconic/png/rain-3x.png new file mode 100644 index 0000000..aa6a5e0 Binary files /dev/null and b/the8eam/open-iconic/png/rain-3x.png differ diff --git a/the8eam/open-iconic/png/rain-4x.png b/the8eam/open-iconic/png/rain-4x.png new file mode 100644 index 0000000..b9214b9 Binary files /dev/null and b/the8eam/open-iconic/png/rain-4x.png differ diff --git a/the8eam/open-iconic/png/rain-6x.png b/the8eam/open-iconic/png/rain-6x.png new file mode 100644 index 0000000..437de50 Binary files /dev/null and b/the8eam/open-iconic/png/rain-6x.png differ diff --git a/the8eam/open-iconic/png/rain-8x.png b/the8eam/open-iconic/png/rain-8x.png new file mode 100644 index 0000000..10c0dbf Binary files /dev/null and b/the8eam/open-iconic/png/rain-8x.png differ diff --git a/the8eam/open-iconic/png/rain.png b/the8eam/open-iconic/png/rain.png new file mode 100644 index 0000000..ed0dbdf Binary files /dev/null and b/the8eam/open-iconic/png/rain.png differ diff --git a/the8eam/open-iconic/png/random-2x.png b/the8eam/open-iconic/png/random-2x.png new file mode 100644 index 0000000..8521b19 Binary files /dev/null and b/the8eam/open-iconic/png/random-2x.png differ diff --git a/the8eam/open-iconic/png/random-3x.png b/the8eam/open-iconic/png/random-3x.png new file mode 100644 index 0000000..a3a2547 Binary files /dev/null and b/the8eam/open-iconic/png/random-3x.png differ diff --git a/the8eam/open-iconic/png/random-4x.png b/the8eam/open-iconic/png/random-4x.png new file mode 100644 index 0000000..52b2375 Binary files /dev/null and b/the8eam/open-iconic/png/random-4x.png differ diff --git a/the8eam/open-iconic/png/random-6x.png b/the8eam/open-iconic/png/random-6x.png new file mode 100644 index 0000000..add77a7 Binary files /dev/null and b/the8eam/open-iconic/png/random-6x.png differ diff --git a/the8eam/open-iconic/png/random-8x.png b/the8eam/open-iconic/png/random-8x.png new file mode 100644 index 0000000..2350985 Binary files /dev/null and b/the8eam/open-iconic/png/random-8x.png differ diff --git a/the8eam/open-iconic/png/random.png b/the8eam/open-iconic/png/random.png new file mode 100644 index 0000000..792d5c1 Binary files /dev/null and b/the8eam/open-iconic/png/random.png differ diff --git a/the8eam/open-iconic/png/reload-2x.png b/the8eam/open-iconic/png/reload-2x.png new file mode 100644 index 0000000..2a79f16 Binary files /dev/null and b/the8eam/open-iconic/png/reload-2x.png differ diff --git a/the8eam/open-iconic/png/reload-3x.png b/the8eam/open-iconic/png/reload-3x.png new file mode 100644 index 0000000..55c0d01 Binary files /dev/null and b/the8eam/open-iconic/png/reload-3x.png differ diff --git a/the8eam/open-iconic/png/reload-4x.png b/the8eam/open-iconic/png/reload-4x.png new file mode 100644 index 0000000..f7b09c0 Binary files /dev/null and b/the8eam/open-iconic/png/reload-4x.png differ diff --git a/the8eam/open-iconic/png/reload-6x.png b/the8eam/open-iconic/png/reload-6x.png new file mode 100644 index 0000000..e736d55 Binary files /dev/null and b/the8eam/open-iconic/png/reload-6x.png differ diff --git a/the8eam/open-iconic/png/reload-8x.png b/the8eam/open-iconic/png/reload-8x.png new file mode 100644 index 0000000..05dd17b Binary files /dev/null and b/the8eam/open-iconic/png/reload-8x.png differ diff --git a/the8eam/open-iconic/png/reload.png b/the8eam/open-iconic/png/reload.png new file mode 100644 index 0000000..1c14ac2 Binary files /dev/null and b/the8eam/open-iconic/png/reload.png differ diff --git a/the8eam/open-iconic/png/resize-both-2x.png b/the8eam/open-iconic/png/resize-both-2x.png new file mode 100644 index 0000000..6d4ff02 Binary files /dev/null and b/the8eam/open-iconic/png/resize-both-2x.png differ diff --git a/the8eam/open-iconic/png/resize-both-3x.png b/the8eam/open-iconic/png/resize-both-3x.png new file mode 100644 index 0000000..804b18e Binary files /dev/null and b/the8eam/open-iconic/png/resize-both-3x.png differ diff --git a/the8eam/open-iconic/png/resize-both-4x.png b/the8eam/open-iconic/png/resize-both-4x.png new file mode 100644 index 0000000..d4d69fc Binary files /dev/null and b/the8eam/open-iconic/png/resize-both-4x.png differ diff --git a/the8eam/open-iconic/png/resize-both-6x.png b/the8eam/open-iconic/png/resize-both-6x.png new file mode 100644 index 0000000..63f7ecd Binary files /dev/null and b/the8eam/open-iconic/png/resize-both-6x.png differ diff --git a/the8eam/open-iconic/png/resize-both-8x.png b/the8eam/open-iconic/png/resize-both-8x.png new file mode 100644 index 0000000..71f2e33 Binary files /dev/null and b/the8eam/open-iconic/png/resize-both-8x.png differ diff --git a/the8eam/open-iconic/png/resize-both.png b/the8eam/open-iconic/png/resize-both.png new file mode 100644 index 0000000..b99f63a Binary files /dev/null and b/the8eam/open-iconic/png/resize-both.png differ diff --git a/the8eam/open-iconic/png/resize-height-2x.png b/the8eam/open-iconic/png/resize-height-2x.png new file mode 100644 index 0000000..de458be Binary files /dev/null and b/the8eam/open-iconic/png/resize-height-2x.png differ diff --git a/the8eam/open-iconic/png/resize-height-3x.png b/the8eam/open-iconic/png/resize-height-3x.png new file mode 100644 index 0000000..6492d3c Binary files /dev/null and b/the8eam/open-iconic/png/resize-height-3x.png differ diff --git a/the8eam/open-iconic/png/resize-height-4x.png b/the8eam/open-iconic/png/resize-height-4x.png new file mode 100644 index 0000000..0bd140c Binary files /dev/null and b/the8eam/open-iconic/png/resize-height-4x.png differ diff --git a/the8eam/open-iconic/png/resize-height-6x.png b/the8eam/open-iconic/png/resize-height-6x.png new file mode 100644 index 0000000..1ee0460 Binary files /dev/null and b/the8eam/open-iconic/png/resize-height-6x.png differ diff --git a/the8eam/open-iconic/png/resize-height-8x.png b/the8eam/open-iconic/png/resize-height-8x.png new file mode 100644 index 0000000..f041fe0 Binary files /dev/null and b/the8eam/open-iconic/png/resize-height-8x.png differ diff --git a/the8eam/open-iconic/png/resize-height.png b/the8eam/open-iconic/png/resize-height.png new file mode 100644 index 0000000..9409a78 Binary files /dev/null and b/the8eam/open-iconic/png/resize-height.png differ diff --git a/the8eam/open-iconic/png/resize-width-2x.png b/the8eam/open-iconic/png/resize-width-2x.png new file mode 100644 index 0000000..5443483 Binary files /dev/null and b/the8eam/open-iconic/png/resize-width-2x.png differ diff --git a/the8eam/open-iconic/png/resize-width-3x.png b/the8eam/open-iconic/png/resize-width-3x.png new file mode 100644 index 0000000..ef245aa Binary files /dev/null and b/the8eam/open-iconic/png/resize-width-3x.png differ diff --git a/the8eam/open-iconic/png/resize-width-4x.png b/the8eam/open-iconic/png/resize-width-4x.png new file mode 100644 index 0000000..9a45be2 Binary files /dev/null and b/the8eam/open-iconic/png/resize-width-4x.png differ diff --git a/the8eam/open-iconic/png/resize-width-6x.png b/the8eam/open-iconic/png/resize-width-6x.png new file mode 100644 index 0000000..5db70cb Binary files /dev/null and b/the8eam/open-iconic/png/resize-width-6x.png differ diff --git a/the8eam/open-iconic/png/resize-width-8x.png b/the8eam/open-iconic/png/resize-width-8x.png new file mode 100644 index 0000000..3a06f4d Binary files /dev/null and b/the8eam/open-iconic/png/resize-width-8x.png differ diff --git a/the8eam/open-iconic/png/resize-width.png b/the8eam/open-iconic/png/resize-width.png new file mode 100644 index 0000000..8e53374 Binary files /dev/null and b/the8eam/open-iconic/png/resize-width.png differ diff --git a/the8eam/open-iconic/png/rss-2x.png b/the8eam/open-iconic/png/rss-2x.png new file mode 100644 index 0000000..335013e Binary files /dev/null and b/the8eam/open-iconic/png/rss-2x.png differ diff --git a/the8eam/open-iconic/png/rss-3x.png b/the8eam/open-iconic/png/rss-3x.png new file mode 100644 index 0000000..67b673c Binary files /dev/null and b/the8eam/open-iconic/png/rss-3x.png differ diff --git a/the8eam/open-iconic/png/rss-4x.png b/the8eam/open-iconic/png/rss-4x.png new file mode 100644 index 0000000..e873956 Binary files /dev/null and b/the8eam/open-iconic/png/rss-4x.png differ diff --git a/the8eam/open-iconic/png/rss-6x.png b/the8eam/open-iconic/png/rss-6x.png new file mode 100644 index 0000000..8af7b64 Binary files /dev/null and b/the8eam/open-iconic/png/rss-6x.png differ diff --git a/the8eam/open-iconic/png/rss-8x.png b/the8eam/open-iconic/png/rss-8x.png new file mode 100644 index 0000000..0486072 Binary files /dev/null and b/the8eam/open-iconic/png/rss-8x.png differ diff --git a/the8eam/open-iconic/png/rss-alt-2x.png b/the8eam/open-iconic/png/rss-alt-2x.png new file mode 100644 index 0000000..829ec1c Binary files /dev/null and b/the8eam/open-iconic/png/rss-alt-2x.png differ diff --git a/the8eam/open-iconic/png/rss-alt-3x.png b/the8eam/open-iconic/png/rss-alt-3x.png new file mode 100644 index 0000000..bb18c44 Binary files /dev/null and b/the8eam/open-iconic/png/rss-alt-3x.png differ diff --git a/the8eam/open-iconic/png/rss-alt-4x.png b/the8eam/open-iconic/png/rss-alt-4x.png new file mode 100644 index 0000000..58799a5 Binary files /dev/null and b/the8eam/open-iconic/png/rss-alt-4x.png differ diff --git a/the8eam/open-iconic/png/rss-alt-6x.png b/the8eam/open-iconic/png/rss-alt-6x.png new file mode 100644 index 0000000..ae0953c Binary files /dev/null and b/the8eam/open-iconic/png/rss-alt-6x.png differ diff --git a/the8eam/open-iconic/png/rss-alt-8x.png b/the8eam/open-iconic/png/rss-alt-8x.png new file mode 100644 index 0000000..716bfa6 Binary files /dev/null and b/the8eam/open-iconic/png/rss-alt-8x.png differ diff --git a/the8eam/open-iconic/png/rss-alt.png b/the8eam/open-iconic/png/rss-alt.png new file mode 100644 index 0000000..4d44b9c Binary files /dev/null and b/the8eam/open-iconic/png/rss-alt.png differ diff --git a/the8eam/open-iconic/png/rss.png b/the8eam/open-iconic/png/rss.png new file mode 100644 index 0000000..e3da2c1 Binary files /dev/null and b/the8eam/open-iconic/png/rss.png differ diff --git a/the8eam/open-iconic/png/script-2x.png b/the8eam/open-iconic/png/script-2x.png new file mode 100644 index 0000000..b3cae8c Binary files /dev/null and b/the8eam/open-iconic/png/script-2x.png differ diff --git a/the8eam/open-iconic/png/script-3x.png b/the8eam/open-iconic/png/script-3x.png new file mode 100644 index 0000000..96ac10e Binary files /dev/null and b/the8eam/open-iconic/png/script-3x.png differ diff --git a/the8eam/open-iconic/png/script-4x.png b/the8eam/open-iconic/png/script-4x.png new file mode 100644 index 0000000..a633618 Binary files /dev/null and b/the8eam/open-iconic/png/script-4x.png differ diff --git a/the8eam/open-iconic/png/script-6x.png b/the8eam/open-iconic/png/script-6x.png new file mode 100644 index 0000000..25a398d Binary files /dev/null and b/the8eam/open-iconic/png/script-6x.png differ diff --git a/the8eam/open-iconic/png/script-8x.png b/the8eam/open-iconic/png/script-8x.png new file mode 100644 index 0000000..ab6beab Binary files /dev/null and b/the8eam/open-iconic/png/script-8x.png differ diff --git a/the8eam/open-iconic/png/script.png b/the8eam/open-iconic/png/script.png new file mode 100644 index 0000000..7797093 Binary files /dev/null and b/the8eam/open-iconic/png/script.png differ diff --git a/the8eam/open-iconic/png/share-2x.png b/the8eam/open-iconic/png/share-2x.png new file mode 100644 index 0000000..ef5679e Binary files /dev/null and b/the8eam/open-iconic/png/share-2x.png differ diff --git a/the8eam/open-iconic/png/share-3x.png b/the8eam/open-iconic/png/share-3x.png new file mode 100644 index 0000000..f1f4060 Binary files /dev/null and b/the8eam/open-iconic/png/share-3x.png differ diff --git a/the8eam/open-iconic/png/share-4x.png b/the8eam/open-iconic/png/share-4x.png new file mode 100644 index 0000000..34d1498 Binary files /dev/null and b/the8eam/open-iconic/png/share-4x.png differ diff --git a/the8eam/open-iconic/png/share-6x.png b/the8eam/open-iconic/png/share-6x.png new file mode 100644 index 0000000..9cc7a68 Binary files /dev/null and b/the8eam/open-iconic/png/share-6x.png differ diff --git a/the8eam/open-iconic/png/share-8x.png b/the8eam/open-iconic/png/share-8x.png new file mode 100644 index 0000000..e3a1d33 Binary files /dev/null and b/the8eam/open-iconic/png/share-8x.png differ diff --git a/the8eam/open-iconic/png/share-boxed-2x.png b/the8eam/open-iconic/png/share-boxed-2x.png new file mode 100644 index 0000000..88df728 Binary files /dev/null and b/the8eam/open-iconic/png/share-boxed-2x.png differ diff --git a/the8eam/open-iconic/png/share-boxed-3x.png b/the8eam/open-iconic/png/share-boxed-3x.png new file mode 100644 index 0000000..41454c3 Binary files /dev/null and b/the8eam/open-iconic/png/share-boxed-3x.png differ diff --git a/the8eam/open-iconic/png/share-boxed-4x.png b/the8eam/open-iconic/png/share-boxed-4x.png new file mode 100644 index 0000000..c5a06ba Binary files /dev/null and b/the8eam/open-iconic/png/share-boxed-4x.png differ diff --git a/the8eam/open-iconic/png/share-boxed-6x.png b/the8eam/open-iconic/png/share-boxed-6x.png new file mode 100644 index 0000000..12f7b81 Binary files /dev/null and b/the8eam/open-iconic/png/share-boxed-6x.png differ diff --git a/the8eam/open-iconic/png/share-boxed-8x.png b/the8eam/open-iconic/png/share-boxed-8x.png new file mode 100644 index 0000000..e92a036 Binary files /dev/null and b/the8eam/open-iconic/png/share-boxed-8x.png differ diff --git a/the8eam/open-iconic/png/share-boxed.png b/the8eam/open-iconic/png/share-boxed.png new file mode 100644 index 0000000..cf7bf56 Binary files /dev/null and b/the8eam/open-iconic/png/share-boxed.png differ diff --git a/the8eam/open-iconic/png/share.png b/the8eam/open-iconic/png/share.png new file mode 100644 index 0000000..262ae6f Binary files /dev/null and b/the8eam/open-iconic/png/share.png differ diff --git a/the8eam/open-iconic/png/shield-2x.png b/the8eam/open-iconic/png/shield-2x.png new file mode 100644 index 0000000..dab3671 Binary files /dev/null and b/the8eam/open-iconic/png/shield-2x.png differ diff --git a/the8eam/open-iconic/png/shield-3x.png b/the8eam/open-iconic/png/shield-3x.png new file mode 100644 index 0000000..d44eeb3 Binary files /dev/null and b/the8eam/open-iconic/png/shield-3x.png differ diff --git a/the8eam/open-iconic/png/shield-4x.png b/the8eam/open-iconic/png/shield-4x.png new file mode 100644 index 0000000..f7b3584 Binary files /dev/null and b/the8eam/open-iconic/png/shield-4x.png differ diff --git a/the8eam/open-iconic/png/shield-6x.png b/the8eam/open-iconic/png/shield-6x.png new file mode 100644 index 0000000..78b0f1d Binary files /dev/null and b/the8eam/open-iconic/png/shield-6x.png differ diff --git a/the8eam/open-iconic/png/shield-8x.png b/the8eam/open-iconic/png/shield-8x.png new file mode 100644 index 0000000..f7dcd80 Binary files /dev/null and b/the8eam/open-iconic/png/shield-8x.png differ diff --git a/the8eam/open-iconic/png/shield.png b/the8eam/open-iconic/png/shield.png new file mode 100644 index 0000000..0795604 Binary files /dev/null and b/the8eam/open-iconic/png/shield.png differ diff --git a/the8eam/open-iconic/png/signal-2x.png b/the8eam/open-iconic/png/signal-2x.png new file mode 100644 index 0000000..b836edf Binary files /dev/null and b/the8eam/open-iconic/png/signal-2x.png differ diff --git a/the8eam/open-iconic/png/signal-3x.png b/the8eam/open-iconic/png/signal-3x.png new file mode 100644 index 0000000..a6cd70a Binary files /dev/null and b/the8eam/open-iconic/png/signal-3x.png differ diff --git a/the8eam/open-iconic/png/signal-4x.png b/the8eam/open-iconic/png/signal-4x.png new file mode 100644 index 0000000..5e627e5 Binary files /dev/null and b/the8eam/open-iconic/png/signal-4x.png differ diff --git a/the8eam/open-iconic/png/signal-6x.png b/the8eam/open-iconic/png/signal-6x.png new file mode 100644 index 0000000..d01377c Binary files /dev/null and b/the8eam/open-iconic/png/signal-6x.png differ diff --git a/the8eam/open-iconic/png/signal-8x.png b/the8eam/open-iconic/png/signal-8x.png new file mode 100644 index 0000000..34b58ab Binary files /dev/null and b/the8eam/open-iconic/png/signal-8x.png differ diff --git a/the8eam/open-iconic/png/signal.png b/the8eam/open-iconic/png/signal.png new file mode 100644 index 0000000..4c47a64 Binary files /dev/null and b/the8eam/open-iconic/png/signal.png differ diff --git a/the8eam/open-iconic/png/signpost-2x.png b/the8eam/open-iconic/png/signpost-2x.png new file mode 100644 index 0000000..c7638e7 Binary files /dev/null and b/the8eam/open-iconic/png/signpost-2x.png differ diff --git a/the8eam/open-iconic/png/signpost-3x.png b/the8eam/open-iconic/png/signpost-3x.png new file mode 100644 index 0000000..258079a Binary files /dev/null and b/the8eam/open-iconic/png/signpost-3x.png differ diff --git a/the8eam/open-iconic/png/signpost-4x.png b/the8eam/open-iconic/png/signpost-4x.png new file mode 100644 index 0000000..3948711 Binary files /dev/null and b/the8eam/open-iconic/png/signpost-4x.png differ diff --git a/the8eam/open-iconic/png/signpost-6x.png b/the8eam/open-iconic/png/signpost-6x.png new file mode 100644 index 0000000..5b09546 Binary files /dev/null and b/the8eam/open-iconic/png/signpost-6x.png differ diff --git a/the8eam/open-iconic/png/signpost-8x.png b/the8eam/open-iconic/png/signpost-8x.png new file mode 100644 index 0000000..6ec91a6 Binary files /dev/null and b/the8eam/open-iconic/png/signpost-8x.png differ diff --git a/the8eam/open-iconic/png/signpost.png b/the8eam/open-iconic/png/signpost.png new file mode 100644 index 0000000..97a9294 Binary files /dev/null and b/the8eam/open-iconic/png/signpost.png differ diff --git a/the8eam/open-iconic/png/sort-ascending-2x.png b/the8eam/open-iconic/png/sort-ascending-2x.png new file mode 100644 index 0000000..c500471 Binary files /dev/null and b/the8eam/open-iconic/png/sort-ascending-2x.png differ diff --git a/the8eam/open-iconic/png/sort-ascending-3x.png b/the8eam/open-iconic/png/sort-ascending-3x.png new file mode 100644 index 0000000..1c094ce Binary files /dev/null and b/the8eam/open-iconic/png/sort-ascending-3x.png differ diff --git a/the8eam/open-iconic/png/sort-ascending-4x.png b/the8eam/open-iconic/png/sort-ascending-4x.png new file mode 100644 index 0000000..4172b7c Binary files /dev/null and b/the8eam/open-iconic/png/sort-ascending-4x.png differ diff --git a/the8eam/open-iconic/png/sort-ascending-6x.png b/the8eam/open-iconic/png/sort-ascending-6x.png new file mode 100644 index 0000000..9df9811 Binary files /dev/null and b/the8eam/open-iconic/png/sort-ascending-6x.png differ diff --git a/the8eam/open-iconic/png/sort-ascending-8x.png b/the8eam/open-iconic/png/sort-ascending-8x.png new file mode 100644 index 0000000..8ec9207 Binary files /dev/null and b/the8eam/open-iconic/png/sort-ascending-8x.png differ diff --git a/the8eam/open-iconic/png/sort-ascending.png b/the8eam/open-iconic/png/sort-ascending.png new file mode 100644 index 0000000..e156d2f Binary files /dev/null and b/the8eam/open-iconic/png/sort-ascending.png differ diff --git a/the8eam/open-iconic/png/sort-descending-2x.png b/the8eam/open-iconic/png/sort-descending-2x.png new file mode 100644 index 0000000..7a2333a Binary files /dev/null and b/the8eam/open-iconic/png/sort-descending-2x.png differ diff --git a/the8eam/open-iconic/png/sort-descending-3x.png b/the8eam/open-iconic/png/sort-descending-3x.png new file mode 100644 index 0000000..4126067 Binary files /dev/null and b/the8eam/open-iconic/png/sort-descending-3x.png differ diff --git a/the8eam/open-iconic/png/sort-descending-4x.png b/the8eam/open-iconic/png/sort-descending-4x.png new file mode 100644 index 0000000..c750c58 Binary files /dev/null and b/the8eam/open-iconic/png/sort-descending-4x.png differ diff --git a/the8eam/open-iconic/png/sort-descending-6x.png b/the8eam/open-iconic/png/sort-descending-6x.png new file mode 100644 index 0000000..0d3e123 Binary files /dev/null and b/the8eam/open-iconic/png/sort-descending-6x.png differ diff --git a/the8eam/open-iconic/png/sort-descending-8x.png b/the8eam/open-iconic/png/sort-descending-8x.png new file mode 100644 index 0000000..00d8ae3 Binary files /dev/null and b/the8eam/open-iconic/png/sort-descending-8x.png differ diff --git a/the8eam/open-iconic/png/sort-descending.png b/the8eam/open-iconic/png/sort-descending.png new file mode 100644 index 0000000..4d09b78 Binary files /dev/null and b/the8eam/open-iconic/png/sort-descending.png differ diff --git a/the8eam/open-iconic/png/spreadsheet-2x.png b/the8eam/open-iconic/png/spreadsheet-2x.png new file mode 100644 index 0000000..c70071f Binary files /dev/null and b/the8eam/open-iconic/png/spreadsheet-2x.png differ diff --git a/the8eam/open-iconic/png/spreadsheet-3x.png b/the8eam/open-iconic/png/spreadsheet-3x.png new file mode 100644 index 0000000..97fac3c Binary files /dev/null and b/the8eam/open-iconic/png/spreadsheet-3x.png differ diff --git a/the8eam/open-iconic/png/spreadsheet-4x.png b/the8eam/open-iconic/png/spreadsheet-4x.png new file mode 100644 index 0000000..fa6af8a Binary files /dev/null and b/the8eam/open-iconic/png/spreadsheet-4x.png differ diff --git a/the8eam/open-iconic/png/spreadsheet-6x.png b/the8eam/open-iconic/png/spreadsheet-6x.png new file mode 100644 index 0000000..ddd1386 Binary files /dev/null and b/the8eam/open-iconic/png/spreadsheet-6x.png differ diff --git a/the8eam/open-iconic/png/spreadsheet-8x.png b/the8eam/open-iconic/png/spreadsheet-8x.png new file mode 100644 index 0000000..b6a53ac Binary files /dev/null and b/the8eam/open-iconic/png/spreadsheet-8x.png differ diff --git a/the8eam/open-iconic/png/spreadsheet.png b/the8eam/open-iconic/png/spreadsheet.png new file mode 100644 index 0000000..4794554 Binary files /dev/null and b/the8eam/open-iconic/png/spreadsheet.png differ diff --git a/the8eam/open-iconic/png/star-2x.png b/the8eam/open-iconic/png/star-2x.png new file mode 100644 index 0000000..ff75afd Binary files /dev/null and b/the8eam/open-iconic/png/star-2x.png differ diff --git a/the8eam/open-iconic/png/star-3x.png b/the8eam/open-iconic/png/star-3x.png new file mode 100644 index 0000000..af363af Binary files /dev/null and b/the8eam/open-iconic/png/star-3x.png differ diff --git a/the8eam/open-iconic/png/star-4x.png b/the8eam/open-iconic/png/star-4x.png new file mode 100644 index 0000000..16f7b2d Binary files /dev/null and b/the8eam/open-iconic/png/star-4x.png differ diff --git a/the8eam/open-iconic/png/star-6x.png b/the8eam/open-iconic/png/star-6x.png new file mode 100644 index 0000000..8e06d7b Binary files /dev/null and b/the8eam/open-iconic/png/star-6x.png differ diff --git a/the8eam/open-iconic/png/star-8x.png b/the8eam/open-iconic/png/star-8x.png new file mode 100644 index 0000000..de4a9b4 Binary files /dev/null and b/the8eam/open-iconic/png/star-8x.png differ diff --git a/the8eam/open-iconic/png/star.png b/the8eam/open-iconic/png/star.png new file mode 100644 index 0000000..2fa28e6 Binary files /dev/null and b/the8eam/open-iconic/png/star.png differ diff --git a/the8eam/open-iconic/png/sun-2x.png b/the8eam/open-iconic/png/sun-2x.png new file mode 100644 index 0000000..9e4f7f7 Binary files /dev/null and b/the8eam/open-iconic/png/sun-2x.png differ diff --git a/the8eam/open-iconic/png/sun-3x.png b/the8eam/open-iconic/png/sun-3x.png new file mode 100644 index 0000000..58df513 Binary files /dev/null and b/the8eam/open-iconic/png/sun-3x.png differ diff --git a/the8eam/open-iconic/png/sun-4x.png b/the8eam/open-iconic/png/sun-4x.png new file mode 100644 index 0000000..e76c683 Binary files /dev/null and b/the8eam/open-iconic/png/sun-4x.png differ diff --git a/the8eam/open-iconic/png/sun-6x.png b/the8eam/open-iconic/png/sun-6x.png new file mode 100644 index 0000000..6000576 Binary files /dev/null and b/the8eam/open-iconic/png/sun-6x.png differ diff --git a/the8eam/open-iconic/png/sun-8x.png b/the8eam/open-iconic/png/sun-8x.png new file mode 100644 index 0000000..b489760 Binary files /dev/null and b/the8eam/open-iconic/png/sun-8x.png differ diff --git a/the8eam/open-iconic/png/sun.png b/the8eam/open-iconic/png/sun.png new file mode 100644 index 0000000..8dd636c Binary files /dev/null and b/the8eam/open-iconic/png/sun.png differ diff --git a/the8eam/open-iconic/png/tablet-2x.png b/the8eam/open-iconic/png/tablet-2x.png new file mode 100644 index 0000000..0bb18a1 Binary files /dev/null and b/the8eam/open-iconic/png/tablet-2x.png differ diff --git a/the8eam/open-iconic/png/tablet-3x.png b/the8eam/open-iconic/png/tablet-3x.png new file mode 100644 index 0000000..29a93f6 Binary files /dev/null and b/the8eam/open-iconic/png/tablet-3x.png differ diff --git a/the8eam/open-iconic/png/tablet-4x.png b/the8eam/open-iconic/png/tablet-4x.png new file mode 100644 index 0000000..cd2c6df Binary files /dev/null and b/the8eam/open-iconic/png/tablet-4x.png differ diff --git a/the8eam/open-iconic/png/tablet-6x.png b/the8eam/open-iconic/png/tablet-6x.png new file mode 100644 index 0000000..11630da Binary files /dev/null and b/the8eam/open-iconic/png/tablet-6x.png differ diff --git a/the8eam/open-iconic/png/tablet-8x.png b/the8eam/open-iconic/png/tablet-8x.png new file mode 100644 index 0000000..4b755ec Binary files /dev/null and b/the8eam/open-iconic/png/tablet-8x.png differ diff --git a/the8eam/open-iconic/png/tablet.png b/the8eam/open-iconic/png/tablet.png new file mode 100644 index 0000000..2dda041 Binary files /dev/null and b/the8eam/open-iconic/png/tablet.png differ diff --git a/the8eam/open-iconic/png/tag-2x.png b/the8eam/open-iconic/png/tag-2x.png new file mode 100644 index 0000000..676e574 Binary files /dev/null and b/the8eam/open-iconic/png/tag-2x.png differ diff --git a/the8eam/open-iconic/png/tag-3x.png b/the8eam/open-iconic/png/tag-3x.png new file mode 100644 index 0000000..de1e4c8 Binary files /dev/null and b/the8eam/open-iconic/png/tag-3x.png differ diff --git a/the8eam/open-iconic/png/tag-4x.png b/the8eam/open-iconic/png/tag-4x.png new file mode 100644 index 0000000..5a446f5 Binary files /dev/null and b/the8eam/open-iconic/png/tag-4x.png differ diff --git a/the8eam/open-iconic/png/tag-6x.png b/the8eam/open-iconic/png/tag-6x.png new file mode 100644 index 0000000..3d42195 Binary files /dev/null and b/the8eam/open-iconic/png/tag-6x.png differ diff --git a/the8eam/open-iconic/png/tag-8x.png b/the8eam/open-iconic/png/tag-8x.png new file mode 100644 index 0000000..99cfa66 Binary files /dev/null and b/the8eam/open-iconic/png/tag-8x.png differ diff --git a/the8eam/open-iconic/png/tag.png b/the8eam/open-iconic/png/tag.png new file mode 100644 index 0000000..cceea45 Binary files /dev/null and b/the8eam/open-iconic/png/tag.png differ diff --git a/the8eam/open-iconic/png/tags-2x.png b/the8eam/open-iconic/png/tags-2x.png new file mode 100644 index 0000000..60b27cf Binary files /dev/null and b/the8eam/open-iconic/png/tags-2x.png differ diff --git a/the8eam/open-iconic/png/tags-3x.png b/the8eam/open-iconic/png/tags-3x.png new file mode 100644 index 0000000..f61f2d8 Binary files /dev/null and b/the8eam/open-iconic/png/tags-3x.png differ diff --git a/the8eam/open-iconic/png/tags-4x.png b/the8eam/open-iconic/png/tags-4x.png new file mode 100644 index 0000000..4e7a713 Binary files /dev/null and b/the8eam/open-iconic/png/tags-4x.png differ diff --git a/the8eam/open-iconic/png/tags-6x.png b/the8eam/open-iconic/png/tags-6x.png new file mode 100644 index 0000000..6f04f6f Binary files /dev/null and b/the8eam/open-iconic/png/tags-6x.png differ diff --git a/the8eam/open-iconic/png/tags-8x.png b/the8eam/open-iconic/png/tags-8x.png new file mode 100644 index 0000000..b133db0 Binary files /dev/null and b/the8eam/open-iconic/png/tags-8x.png differ diff --git a/the8eam/open-iconic/png/tags.png b/the8eam/open-iconic/png/tags.png new file mode 100644 index 0000000..539a544 Binary files /dev/null and b/the8eam/open-iconic/png/tags.png differ diff --git a/the8eam/open-iconic/png/target-2x.png b/the8eam/open-iconic/png/target-2x.png new file mode 100644 index 0000000..96ba8ef Binary files /dev/null and b/the8eam/open-iconic/png/target-2x.png differ diff --git a/the8eam/open-iconic/png/target-3x.png b/the8eam/open-iconic/png/target-3x.png new file mode 100644 index 0000000..2bab27e Binary files /dev/null and b/the8eam/open-iconic/png/target-3x.png differ diff --git a/the8eam/open-iconic/png/target-4x.png b/the8eam/open-iconic/png/target-4x.png new file mode 100644 index 0000000..82f0e4e Binary files /dev/null and b/the8eam/open-iconic/png/target-4x.png differ diff --git a/the8eam/open-iconic/png/target-6x.png b/the8eam/open-iconic/png/target-6x.png new file mode 100644 index 0000000..db55588 Binary files /dev/null and b/the8eam/open-iconic/png/target-6x.png differ diff --git a/the8eam/open-iconic/png/target-8x.png b/the8eam/open-iconic/png/target-8x.png new file mode 100644 index 0000000..08c5669 Binary files /dev/null and b/the8eam/open-iconic/png/target-8x.png differ diff --git a/the8eam/open-iconic/png/target.png b/the8eam/open-iconic/png/target.png new file mode 100644 index 0000000..725ab89 Binary files /dev/null and b/the8eam/open-iconic/png/target.png differ diff --git a/the8eam/open-iconic/png/task-2x.png b/the8eam/open-iconic/png/task-2x.png new file mode 100644 index 0000000..eba8983 Binary files /dev/null and b/the8eam/open-iconic/png/task-2x.png differ diff --git a/the8eam/open-iconic/png/task-3x.png b/the8eam/open-iconic/png/task-3x.png new file mode 100644 index 0000000..b67a233 Binary files /dev/null and b/the8eam/open-iconic/png/task-3x.png differ diff --git a/the8eam/open-iconic/png/task-4x.png b/the8eam/open-iconic/png/task-4x.png new file mode 100644 index 0000000..28f9102 Binary files /dev/null and b/the8eam/open-iconic/png/task-4x.png differ diff --git a/the8eam/open-iconic/png/task-6x.png b/the8eam/open-iconic/png/task-6x.png new file mode 100644 index 0000000..8a5eccf Binary files /dev/null and b/the8eam/open-iconic/png/task-6x.png differ diff --git a/the8eam/open-iconic/png/task-8x.png b/the8eam/open-iconic/png/task-8x.png new file mode 100644 index 0000000..a94d1d6 Binary files /dev/null and b/the8eam/open-iconic/png/task-8x.png differ diff --git a/the8eam/open-iconic/png/task.png b/the8eam/open-iconic/png/task.png new file mode 100644 index 0000000..897af2d Binary files /dev/null and b/the8eam/open-iconic/png/task.png differ diff --git a/the8eam/open-iconic/png/terminal-2x.png b/the8eam/open-iconic/png/terminal-2x.png new file mode 100644 index 0000000..d169053 Binary files /dev/null and b/the8eam/open-iconic/png/terminal-2x.png differ diff --git a/the8eam/open-iconic/png/terminal-3x.png b/the8eam/open-iconic/png/terminal-3x.png new file mode 100644 index 0000000..622e227 Binary files /dev/null and b/the8eam/open-iconic/png/terminal-3x.png differ diff --git a/the8eam/open-iconic/png/terminal-4x.png b/the8eam/open-iconic/png/terminal-4x.png new file mode 100644 index 0000000..834d756 Binary files /dev/null and b/the8eam/open-iconic/png/terminal-4x.png differ diff --git a/the8eam/open-iconic/png/terminal-6x.png b/the8eam/open-iconic/png/terminal-6x.png new file mode 100644 index 0000000..23d7033 Binary files /dev/null and b/the8eam/open-iconic/png/terminal-6x.png differ diff --git a/the8eam/open-iconic/png/terminal-8x.png b/the8eam/open-iconic/png/terminal-8x.png new file mode 100644 index 0000000..1c6b573 Binary files /dev/null and b/the8eam/open-iconic/png/terminal-8x.png differ diff --git a/the8eam/open-iconic/png/terminal.png b/the8eam/open-iconic/png/terminal.png new file mode 100644 index 0000000..a1cccfe Binary files /dev/null and b/the8eam/open-iconic/png/terminal.png differ diff --git a/the8eam/open-iconic/png/text-2x.png b/the8eam/open-iconic/png/text-2x.png new file mode 100644 index 0000000..e0165ff Binary files /dev/null and b/the8eam/open-iconic/png/text-2x.png differ diff --git a/the8eam/open-iconic/png/text-3x.png b/the8eam/open-iconic/png/text-3x.png new file mode 100644 index 0000000..3fda7ca Binary files /dev/null and b/the8eam/open-iconic/png/text-3x.png differ diff --git a/the8eam/open-iconic/png/text-4x.png b/the8eam/open-iconic/png/text-4x.png new file mode 100644 index 0000000..b78effb Binary files /dev/null and b/the8eam/open-iconic/png/text-4x.png differ diff --git a/the8eam/open-iconic/png/text-6x.png b/the8eam/open-iconic/png/text-6x.png new file mode 100644 index 0000000..ba31d0e Binary files /dev/null and b/the8eam/open-iconic/png/text-6x.png differ diff --git a/the8eam/open-iconic/png/text-8x.png b/the8eam/open-iconic/png/text-8x.png new file mode 100644 index 0000000..031b0e1 Binary files /dev/null and b/the8eam/open-iconic/png/text-8x.png differ diff --git a/the8eam/open-iconic/png/text.png b/the8eam/open-iconic/png/text.png new file mode 100644 index 0000000..d07fa87 Binary files /dev/null and b/the8eam/open-iconic/png/text.png differ diff --git a/the8eam/open-iconic/png/thumb-down-2x.png b/the8eam/open-iconic/png/thumb-down-2x.png new file mode 100644 index 0000000..6c8014f Binary files /dev/null and b/the8eam/open-iconic/png/thumb-down-2x.png differ diff --git a/the8eam/open-iconic/png/thumb-down-3x.png b/the8eam/open-iconic/png/thumb-down-3x.png new file mode 100644 index 0000000..3b1a41e Binary files /dev/null and b/the8eam/open-iconic/png/thumb-down-3x.png differ diff --git a/the8eam/open-iconic/png/thumb-down-4x.png b/the8eam/open-iconic/png/thumb-down-4x.png new file mode 100644 index 0000000..cfda26a Binary files /dev/null and b/the8eam/open-iconic/png/thumb-down-4x.png differ diff --git a/the8eam/open-iconic/png/thumb-down-6x.png b/the8eam/open-iconic/png/thumb-down-6x.png new file mode 100644 index 0000000..76b354e Binary files /dev/null and b/the8eam/open-iconic/png/thumb-down-6x.png differ diff --git a/the8eam/open-iconic/png/thumb-down-8x.png b/the8eam/open-iconic/png/thumb-down-8x.png new file mode 100644 index 0000000..bdbb51d Binary files /dev/null and b/the8eam/open-iconic/png/thumb-down-8x.png differ diff --git a/the8eam/open-iconic/png/thumb-down.png b/the8eam/open-iconic/png/thumb-down.png new file mode 100644 index 0000000..b5c9bb4 Binary files /dev/null and b/the8eam/open-iconic/png/thumb-down.png differ diff --git a/the8eam/open-iconic/png/thumb-up-2x.png b/the8eam/open-iconic/png/thumb-up-2x.png new file mode 100644 index 0000000..ad96490 Binary files /dev/null and b/the8eam/open-iconic/png/thumb-up-2x.png differ diff --git a/the8eam/open-iconic/png/thumb-up-3x.png b/the8eam/open-iconic/png/thumb-up-3x.png new file mode 100644 index 0000000..74f9cfa Binary files /dev/null and b/the8eam/open-iconic/png/thumb-up-3x.png differ diff --git a/the8eam/open-iconic/png/thumb-up-4x.png b/the8eam/open-iconic/png/thumb-up-4x.png new file mode 100644 index 0000000..56adb20 Binary files /dev/null and b/the8eam/open-iconic/png/thumb-up-4x.png differ diff --git a/the8eam/open-iconic/png/thumb-up-6x.png b/the8eam/open-iconic/png/thumb-up-6x.png new file mode 100644 index 0000000..93a7cfd Binary files /dev/null and b/the8eam/open-iconic/png/thumb-up-6x.png differ diff --git a/the8eam/open-iconic/png/thumb-up-8x.png b/the8eam/open-iconic/png/thumb-up-8x.png new file mode 100644 index 0000000..6e92715 Binary files /dev/null and b/the8eam/open-iconic/png/thumb-up-8x.png differ diff --git a/the8eam/open-iconic/png/thumb-up.png b/the8eam/open-iconic/png/thumb-up.png new file mode 100644 index 0000000..72e4253 Binary files /dev/null and b/the8eam/open-iconic/png/thumb-up.png differ diff --git a/the8eam/open-iconic/png/timer-2x.png b/the8eam/open-iconic/png/timer-2x.png new file mode 100644 index 0000000..9af3c98 Binary files /dev/null and b/the8eam/open-iconic/png/timer-2x.png differ diff --git a/the8eam/open-iconic/png/timer-3x.png b/the8eam/open-iconic/png/timer-3x.png new file mode 100644 index 0000000..c76e6fc Binary files /dev/null and b/the8eam/open-iconic/png/timer-3x.png differ diff --git a/the8eam/open-iconic/png/timer-4x.png b/the8eam/open-iconic/png/timer-4x.png new file mode 100644 index 0000000..d58e355 Binary files /dev/null and b/the8eam/open-iconic/png/timer-4x.png differ diff --git a/the8eam/open-iconic/png/timer-6x.png b/the8eam/open-iconic/png/timer-6x.png new file mode 100644 index 0000000..a8a50b6 Binary files /dev/null and b/the8eam/open-iconic/png/timer-6x.png differ diff --git a/the8eam/open-iconic/png/timer-8x.png b/the8eam/open-iconic/png/timer-8x.png new file mode 100644 index 0000000..a004f2d Binary files /dev/null and b/the8eam/open-iconic/png/timer-8x.png differ diff --git a/the8eam/open-iconic/png/timer.png b/the8eam/open-iconic/png/timer.png new file mode 100644 index 0000000..a30f632 Binary files /dev/null and b/the8eam/open-iconic/png/timer.png differ diff --git a/the8eam/open-iconic/png/transfer-2x.png b/the8eam/open-iconic/png/transfer-2x.png new file mode 100644 index 0000000..27566b5 Binary files /dev/null and b/the8eam/open-iconic/png/transfer-2x.png differ diff --git a/the8eam/open-iconic/png/transfer-3x.png b/the8eam/open-iconic/png/transfer-3x.png new file mode 100644 index 0000000..f9fe6ce Binary files /dev/null and b/the8eam/open-iconic/png/transfer-3x.png differ diff --git a/the8eam/open-iconic/png/transfer-4x.png b/the8eam/open-iconic/png/transfer-4x.png new file mode 100644 index 0000000..bc957d4 Binary files /dev/null and b/the8eam/open-iconic/png/transfer-4x.png differ diff --git a/the8eam/open-iconic/png/transfer-6x.png b/the8eam/open-iconic/png/transfer-6x.png new file mode 100644 index 0000000..6968fec Binary files /dev/null and b/the8eam/open-iconic/png/transfer-6x.png differ diff --git a/the8eam/open-iconic/png/transfer-8x.png b/the8eam/open-iconic/png/transfer-8x.png new file mode 100644 index 0000000..b35fd4a Binary files /dev/null and b/the8eam/open-iconic/png/transfer-8x.png differ diff --git a/the8eam/open-iconic/png/transfer.png b/the8eam/open-iconic/png/transfer.png new file mode 100644 index 0000000..5969a01 Binary files /dev/null and b/the8eam/open-iconic/png/transfer.png differ diff --git a/the8eam/open-iconic/png/trash-2x.png b/the8eam/open-iconic/png/trash-2x.png new file mode 100644 index 0000000..de1127e Binary files /dev/null and b/the8eam/open-iconic/png/trash-2x.png differ diff --git a/the8eam/open-iconic/png/trash-3x.png b/the8eam/open-iconic/png/trash-3x.png new file mode 100644 index 0000000..1a573fc Binary files /dev/null and b/the8eam/open-iconic/png/trash-3x.png differ diff --git a/the8eam/open-iconic/png/trash-4x.png b/the8eam/open-iconic/png/trash-4x.png new file mode 100644 index 0000000..e142d3c Binary files /dev/null and b/the8eam/open-iconic/png/trash-4x.png differ diff --git a/the8eam/open-iconic/png/trash-6x.png b/the8eam/open-iconic/png/trash-6x.png new file mode 100644 index 0000000..b40d695 Binary files /dev/null and b/the8eam/open-iconic/png/trash-6x.png differ diff --git a/the8eam/open-iconic/png/trash-8x.png b/the8eam/open-iconic/png/trash-8x.png new file mode 100644 index 0000000..70a1700 Binary files /dev/null and b/the8eam/open-iconic/png/trash-8x.png differ diff --git a/the8eam/open-iconic/png/trash.png b/the8eam/open-iconic/png/trash.png new file mode 100644 index 0000000..385fb92 Binary files /dev/null and b/the8eam/open-iconic/png/trash.png differ diff --git a/the8eam/open-iconic/png/underline-2x.png b/the8eam/open-iconic/png/underline-2x.png new file mode 100644 index 0000000..70c90d0 Binary files /dev/null and b/the8eam/open-iconic/png/underline-2x.png differ diff --git a/the8eam/open-iconic/png/underline-3x.png b/the8eam/open-iconic/png/underline-3x.png new file mode 100644 index 0000000..64b19ab Binary files /dev/null and b/the8eam/open-iconic/png/underline-3x.png differ diff --git a/the8eam/open-iconic/png/underline-4x.png b/the8eam/open-iconic/png/underline-4x.png new file mode 100644 index 0000000..fb59b23 Binary files /dev/null and b/the8eam/open-iconic/png/underline-4x.png differ diff --git a/the8eam/open-iconic/png/underline-6x.png b/the8eam/open-iconic/png/underline-6x.png new file mode 100644 index 0000000..c848de9 Binary files /dev/null and b/the8eam/open-iconic/png/underline-6x.png differ diff --git a/the8eam/open-iconic/png/underline-8x.png b/the8eam/open-iconic/png/underline-8x.png new file mode 100644 index 0000000..5c21998 Binary files /dev/null and b/the8eam/open-iconic/png/underline-8x.png differ diff --git a/the8eam/open-iconic/png/underline.png b/the8eam/open-iconic/png/underline.png new file mode 100644 index 0000000..077f21d Binary files /dev/null and b/the8eam/open-iconic/png/underline.png differ diff --git a/the8eam/open-iconic/png/vertical-align-bottom-2x.png b/the8eam/open-iconic/png/vertical-align-bottom-2x.png new file mode 100644 index 0000000..36908fb Binary files /dev/null and b/the8eam/open-iconic/png/vertical-align-bottom-2x.png differ diff --git a/the8eam/open-iconic/png/vertical-align-bottom-3x.png b/the8eam/open-iconic/png/vertical-align-bottom-3x.png new file mode 100644 index 0000000..1424933 Binary files /dev/null and b/the8eam/open-iconic/png/vertical-align-bottom-3x.png differ diff --git a/the8eam/open-iconic/png/vertical-align-bottom-4x.png b/the8eam/open-iconic/png/vertical-align-bottom-4x.png new file mode 100644 index 0000000..d68689a Binary files /dev/null and b/the8eam/open-iconic/png/vertical-align-bottom-4x.png differ diff --git a/the8eam/open-iconic/png/vertical-align-bottom-6x.png b/the8eam/open-iconic/png/vertical-align-bottom-6x.png new file mode 100644 index 0000000..796581c Binary files /dev/null and b/the8eam/open-iconic/png/vertical-align-bottom-6x.png differ diff --git a/the8eam/open-iconic/png/vertical-align-bottom-8x.png b/the8eam/open-iconic/png/vertical-align-bottom-8x.png new file mode 100644 index 0000000..1f593da Binary files /dev/null and b/the8eam/open-iconic/png/vertical-align-bottom-8x.png differ diff --git a/the8eam/open-iconic/png/vertical-align-bottom.png b/the8eam/open-iconic/png/vertical-align-bottom.png new file mode 100644 index 0000000..95c5a93 Binary files /dev/null and b/the8eam/open-iconic/png/vertical-align-bottom.png differ diff --git a/the8eam/open-iconic/png/vertical-align-center-2x.png b/the8eam/open-iconic/png/vertical-align-center-2x.png new file mode 100644 index 0000000..f806e7a Binary files /dev/null and b/the8eam/open-iconic/png/vertical-align-center-2x.png differ diff --git a/the8eam/open-iconic/png/vertical-align-center-3x.png b/the8eam/open-iconic/png/vertical-align-center-3x.png new file mode 100644 index 0000000..120fb5b Binary files /dev/null and b/the8eam/open-iconic/png/vertical-align-center-3x.png differ diff --git a/the8eam/open-iconic/png/vertical-align-center-4x.png b/the8eam/open-iconic/png/vertical-align-center-4x.png new file mode 100644 index 0000000..5b36c8a Binary files /dev/null and b/the8eam/open-iconic/png/vertical-align-center-4x.png differ diff --git a/the8eam/open-iconic/png/vertical-align-center-6x.png b/the8eam/open-iconic/png/vertical-align-center-6x.png new file mode 100644 index 0000000..8cebcd2 Binary files /dev/null and b/the8eam/open-iconic/png/vertical-align-center-6x.png differ diff --git a/the8eam/open-iconic/png/vertical-align-center-8x.png b/the8eam/open-iconic/png/vertical-align-center-8x.png new file mode 100644 index 0000000..11d9e48 Binary files /dev/null and b/the8eam/open-iconic/png/vertical-align-center-8x.png differ diff --git a/the8eam/open-iconic/png/vertical-align-center.png b/the8eam/open-iconic/png/vertical-align-center.png new file mode 100644 index 0000000..66ed0fd Binary files /dev/null and b/the8eam/open-iconic/png/vertical-align-center.png differ diff --git a/the8eam/open-iconic/png/vertical-align-top-2x.png b/the8eam/open-iconic/png/vertical-align-top-2x.png new file mode 100644 index 0000000..2d27106 Binary files /dev/null and b/the8eam/open-iconic/png/vertical-align-top-2x.png differ diff --git a/the8eam/open-iconic/png/vertical-align-top-3x.png b/the8eam/open-iconic/png/vertical-align-top-3x.png new file mode 100644 index 0000000..4b0caf9 Binary files /dev/null and b/the8eam/open-iconic/png/vertical-align-top-3x.png differ diff --git a/the8eam/open-iconic/png/vertical-align-top-4x.png b/the8eam/open-iconic/png/vertical-align-top-4x.png new file mode 100644 index 0000000..73d1010 Binary files /dev/null and b/the8eam/open-iconic/png/vertical-align-top-4x.png differ diff --git a/the8eam/open-iconic/png/vertical-align-top-6x.png b/the8eam/open-iconic/png/vertical-align-top-6x.png new file mode 100644 index 0000000..16ffa77 Binary files /dev/null and b/the8eam/open-iconic/png/vertical-align-top-6x.png differ diff --git a/the8eam/open-iconic/png/vertical-align-top-8x.png b/the8eam/open-iconic/png/vertical-align-top-8x.png new file mode 100644 index 0000000..67b290b Binary files /dev/null and b/the8eam/open-iconic/png/vertical-align-top-8x.png differ diff --git a/the8eam/open-iconic/png/vertical-align-top.png b/the8eam/open-iconic/png/vertical-align-top.png new file mode 100644 index 0000000..d4c5384 Binary files /dev/null and b/the8eam/open-iconic/png/vertical-align-top.png differ diff --git a/the8eam/open-iconic/png/video-2x.png b/the8eam/open-iconic/png/video-2x.png new file mode 100644 index 0000000..312a21d Binary files /dev/null and b/the8eam/open-iconic/png/video-2x.png differ diff --git a/the8eam/open-iconic/png/video-3x.png b/the8eam/open-iconic/png/video-3x.png new file mode 100644 index 0000000..7accdca Binary files /dev/null and b/the8eam/open-iconic/png/video-3x.png differ diff --git a/the8eam/open-iconic/png/video-4x.png b/the8eam/open-iconic/png/video-4x.png new file mode 100644 index 0000000..1816fc9 Binary files /dev/null and b/the8eam/open-iconic/png/video-4x.png differ diff --git a/the8eam/open-iconic/png/video-6x.png b/the8eam/open-iconic/png/video-6x.png new file mode 100644 index 0000000..bea7967 Binary files /dev/null and b/the8eam/open-iconic/png/video-6x.png differ diff --git a/the8eam/open-iconic/png/video-8x.png b/the8eam/open-iconic/png/video-8x.png new file mode 100644 index 0000000..d912be2 Binary files /dev/null and b/the8eam/open-iconic/png/video-8x.png differ diff --git a/the8eam/open-iconic/png/video.png b/the8eam/open-iconic/png/video.png new file mode 100644 index 0000000..6e0b95f Binary files /dev/null and b/the8eam/open-iconic/png/video.png differ diff --git a/the8eam/open-iconic/png/volume-high-2x.png b/the8eam/open-iconic/png/volume-high-2x.png new file mode 100644 index 0000000..5e5617d Binary files /dev/null and b/the8eam/open-iconic/png/volume-high-2x.png differ diff --git a/the8eam/open-iconic/png/volume-high-3x.png b/the8eam/open-iconic/png/volume-high-3x.png new file mode 100644 index 0000000..df99e90 Binary files /dev/null and b/the8eam/open-iconic/png/volume-high-3x.png differ diff --git a/the8eam/open-iconic/png/volume-high-4x.png b/the8eam/open-iconic/png/volume-high-4x.png new file mode 100644 index 0000000..d76349c Binary files /dev/null and b/the8eam/open-iconic/png/volume-high-4x.png differ diff --git a/the8eam/open-iconic/png/volume-high-6x.png b/the8eam/open-iconic/png/volume-high-6x.png new file mode 100644 index 0000000..bd0373b Binary files /dev/null and b/the8eam/open-iconic/png/volume-high-6x.png differ diff --git a/the8eam/open-iconic/png/volume-high-8x.png b/the8eam/open-iconic/png/volume-high-8x.png new file mode 100644 index 0000000..c9c6cec Binary files /dev/null and b/the8eam/open-iconic/png/volume-high-8x.png differ diff --git a/the8eam/open-iconic/png/volume-high.png b/the8eam/open-iconic/png/volume-high.png new file mode 100644 index 0000000..7f00581 Binary files /dev/null and b/the8eam/open-iconic/png/volume-high.png differ diff --git a/the8eam/open-iconic/png/volume-low-2x.png b/the8eam/open-iconic/png/volume-low-2x.png new file mode 100644 index 0000000..b30cc59 Binary files /dev/null and b/the8eam/open-iconic/png/volume-low-2x.png differ diff --git a/the8eam/open-iconic/png/volume-low-3x.png b/the8eam/open-iconic/png/volume-low-3x.png new file mode 100644 index 0000000..af03e9c Binary files /dev/null and b/the8eam/open-iconic/png/volume-low-3x.png differ diff --git a/the8eam/open-iconic/png/volume-low-4x.png b/the8eam/open-iconic/png/volume-low-4x.png new file mode 100644 index 0000000..8920086 Binary files /dev/null and b/the8eam/open-iconic/png/volume-low-4x.png differ diff --git a/the8eam/open-iconic/png/volume-low-6x.png b/the8eam/open-iconic/png/volume-low-6x.png new file mode 100644 index 0000000..36b579f Binary files /dev/null and b/the8eam/open-iconic/png/volume-low-6x.png differ diff --git a/the8eam/open-iconic/png/volume-low-8x.png b/the8eam/open-iconic/png/volume-low-8x.png new file mode 100644 index 0000000..653704a Binary files /dev/null and b/the8eam/open-iconic/png/volume-low-8x.png differ diff --git a/the8eam/open-iconic/png/volume-low.png b/the8eam/open-iconic/png/volume-low.png new file mode 100644 index 0000000..e1b735f Binary files /dev/null and b/the8eam/open-iconic/png/volume-low.png differ diff --git a/the8eam/open-iconic/png/volume-off-2x.png b/the8eam/open-iconic/png/volume-off-2x.png new file mode 100644 index 0000000..c0f161e Binary files /dev/null and b/the8eam/open-iconic/png/volume-off-2x.png differ diff --git a/the8eam/open-iconic/png/volume-off-3x.png b/the8eam/open-iconic/png/volume-off-3x.png new file mode 100644 index 0000000..a8e1795 Binary files /dev/null and b/the8eam/open-iconic/png/volume-off-3x.png differ diff --git a/the8eam/open-iconic/png/volume-off-4x.png b/the8eam/open-iconic/png/volume-off-4x.png new file mode 100644 index 0000000..bc354f7 Binary files /dev/null and b/the8eam/open-iconic/png/volume-off-4x.png differ diff --git a/the8eam/open-iconic/png/volume-off-6x.png b/the8eam/open-iconic/png/volume-off-6x.png new file mode 100644 index 0000000..56d3897 Binary files /dev/null and b/the8eam/open-iconic/png/volume-off-6x.png differ diff --git a/the8eam/open-iconic/png/volume-off-8x.png b/the8eam/open-iconic/png/volume-off-8x.png new file mode 100644 index 0000000..7dd0461 Binary files /dev/null and b/the8eam/open-iconic/png/volume-off-8x.png differ diff --git a/the8eam/open-iconic/png/volume-off.png b/the8eam/open-iconic/png/volume-off.png new file mode 100644 index 0000000..14cf805 Binary files /dev/null and b/the8eam/open-iconic/png/volume-off.png differ diff --git a/the8eam/open-iconic/png/warning-2x.png b/the8eam/open-iconic/png/warning-2x.png new file mode 100644 index 0000000..81d7ad6 Binary files /dev/null and b/the8eam/open-iconic/png/warning-2x.png differ diff --git a/the8eam/open-iconic/png/warning-3x.png b/the8eam/open-iconic/png/warning-3x.png new file mode 100644 index 0000000..4cf3486 Binary files /dev/null and b/the8eam/open-iconic/png/warning-3x.png differ diff --git a/the8eam/open-iconic/png/warning-4x.png b/the8eam/open-iconic/png/warning-4x.png new file mode 100644 index 0000000..b138cc8 Binary files /dev/null and b/the8eam/open-iconic/png/warning-4x.png differ diff --git a/the8eam/open-iconic/png/warning-6x.png b/the8eam/open-iconic/png/warning-6x.png new file mode 100644 index 0000000..da2bc35 Binary files /dev/null and b/the8eam/open-iconic/png/warning-6x.png differ diff --git a/the8eam/open-iconic/png/warning-8x.png b/the8eam/open-iconic/png/warning-8x.png new file mode 100644 index 0000000..748c58d Binary files /dev/null and b/the8eam/open-iconic/png/warning-8x.png differ diff --git a/the8eam/open-iconic/png/warning.png b/the8eam/open-iconic/png/warning.png new file mode 100644 index 0000000..ea6cf9c Binary files /dev/null and b/the8eam/open-iconic/png/warning.png differ diff --git a/the8eam/open-iconic/png/wifi-2x.png b/the8eam/open-iconic/png/wifi-2x.png new file mode 100644 index 0000000..bbd6001 Binary files /dev/null and b/the8eam/open-iconic/png/wifi-2x.png differ diff --git a/the8eam/open-iconic/png/wifi-3x.png b/the8eam/open-iconic/png/wifi-3x.png new file mode 100644 index 0000000..5bbd234 Binary files /dev/null and b/the8eam/open-iconic/png/wifi-3x.png differ diff --git a/the8eam/open-iconic/png/wifi-4x.png b/the8eam/open-iconic/png/wifi-4x.png new file mode 100644 index 0000000..c6b31a0 Binary files /dev/null and b/the8eam/open-iconic/png/wifi-4x.png differ diff --git a/the8eam/open-iconic/png/wifi-6x.png b/the8eam/open-iconic/png/wifi-6x.png new file mode 100644 index 0000000..0d03f42 Binary files /dev/null and b/the8eam/open-iconic/png/wifi-6x.png differ diff --git a/the8eam/open-iconic/png/wifi-8x.png b/the8eam/open-iconic/png/wifi-8x.png new file mode 100644 index 0000000..8c24c08 Binary files /dev/null and b/the8eam/open-iconic/png/wifi-8x.png differ diff --git a/the8eam/open-iconic/png/wifi.png b/the8eam/open-iconic/png/wifi.png new file mode 100644 index 0000000..965ed52 Binary files /dev/null and b/the8eam/open-iconic/png/wifi.png differ diff --git a/the8eam/open-iconic/png/wrench-2x.png b/the8eam/open-iconic/png/wrench-2x.png new file mode 100644 index 0000000..ec4a206 Binary files /dev/null and b/the8eam/open-iconic/png/wrench-2x.png differ diff --git a/the8eam/open-iconic/png/wrench-3x.png b/the8eam/open-iconic/png/wrench-3x.png new file mode 100644 index 0000000..4ac8568 Binary files /dev/null and b/the8eam/open-iconic/png/wrench-3x.png differ diff --git a/the8eam/open-iconic/png/wrench-4x.png b/the8eam/open-iconic/png/wrench-4x.png new file mode 100644 index 0000000..815d120 Binary files /dev/null and b/the8eam/open-iconic/png/wrench-4x.png differ diff --git a/the8eam/open-iconic/png/wrench-6x.png b/the8eam/open-iconic/png/wrench-6x.png new file mode 100644 index 0000000..76ace6c Binary files /dev/null and b/the8eam/open-iconic/png/wrench-6x.png differ diff --git a/the8eam/open-iconic/png/wrench-8x.png b/the8eam/open-iconic/png/wrench-8x.png new file mode 100644 index 0000000..19c7634 Binary files /dev/null and b/the8eam/open-iconic/png/wrench-8x.png differ diff --git a/the8eam/open-iconic/png/wrench.png b/the8eam/open-iconic/png/wrench.png new file mode 100644 index 0000000..059e41c Binary files /dev/null and b/the8eam/open-iconic/png/wrench.png differ diff --git a/the8eam/open-iconic/png/x-2x.png b/the8eam/open-iconic/png/x-2x.png new file mode 100644 index 0000000..6ae2ab8 Binary files /dev/null and b/the8eam/open-iconic/png/x-2x.png differ diff --git a/the8eam/open-iconic/png/x-3x.png b/the8eam/open-iconic/png/x-3x.png new file mode 100644 index 0000000..08c080e Binary files /dev/null and b/the8eam/open-iconic/png/x-3x.png differ diff --git a/the8eam/open-iconic/png/x-4x.png b/the8eam/open-iconic/png/x-4x.png new file mode 100644 index 0000000..328d590 Binary files /dev/null and b/the8eam/open-iconic/png/x-4x.png differ diff --git a/the8eam/open-iconic/png/x-6x.png b/the8eam/open-iconic/png/x-6x.png new file mode 100644 index 0000000..175e648 Binary files /dev/null and b/the8eam/open-iconic/png/x-6x.png differ diff --git a/the8eam/open-iconic/png/x-8x.png b/the8eam/open-iconic/png/x-8x.png new file mode 100644 index 0000000..4a07f35 Binary files /dev/null and b/the8eam/open-iconic/png/x-8x.png differ diff --git a/the8eam/open-iconic/png/x.png b/the8eam/open-iconic/png/x.png new file mode 100644 index 0000000..23b0787 Binary files /dev/null and b/the8eam/open-iconic/png/x.png differ diff --git a/the8eam/open-iconic/png/yen-2x.png b/the8eam/open-iconic/png/yen-2x.png new file mode 100644 index 0000000..a9acb09 Binary files /dev/null and b/the8eam/open-iconic/png/yen-2x.png differ diff --git a/the8eam/open-iconic/png/yen-3x.png b/the8eam/open-iconic/png/yen-3x.png new file mode 100644 index 0000000..0649b7f Binary files /dev/null and b/the8eam/open-iconic/png/yen-3x.png differ diff --git a/the8eam/open-iconic/png/yen-4x.png b/the8eam/open-iconic/png/yen-4x.png new file mode 100644 index 0000000..9c57365 Binary files /dev/null and b/the8eam/open-iconic/png/yen-4x.png differ diff --git a/the8eam/open-iconic/png/yen-6x.png b/the8eam/open-iconic/png/yen-6x.png new file mode 100644 index 0000000..dd5e837 Binary files /dev/null and b/the8eam/open-iconic/png/yen-6x.png differ diff --git a/the8eam/open-iconic/png/yen-8x.png b/the8eam/open-iconic/png/yen-8x.png new file mode 100644 index 0000000..f49a6c9 Binary files /dev/null and b/the8eam/open-iconic/png/yen-8x.png differ diff --git a/the8eam/open-iconic/png/yen.png b/the8eam/open-iconic/png/yen.png new file mode 100644 index 0000000..1deae41 Binary files /dev/null and b/the8eam/open-iconic/png/yen.png differ diff --git a/the8eam/open-iconic/png/zoom-in-2x.png b/the8eam/open-iconic/png/zoom-in-2x.png new file mode 100644 index 0000000..1b63daf Binary files /dev/null and b/the8eam/open-iconic/png/zoom-in-2x.png differ diff --git a/the8eam/open-iconic/png/zoom-in-3x.png b/the8eam/open-iconic/png/zoom-in-3x.png new file mode 100644 index 0000000..285e04c Binary files /dev/null and b/the8eam/open-iconic/png/zoom-in-3x.png differ diff --git a/the8eam/open-iconic/png/zoom-in-4x.png b/the8eam/open-iconic/png/zoom-in-4x.png new file mode 100644 index 0000000..fa02059 Binary files /dev/null and b/the8eam/open-iconic/png/zoom-in-4x.png differ diff --git a/the8eam/open-iconic/png/zoom-in-6x.png b/the8eam/open-iconic/png/zoom-in-6x.png new file mode 100644 index 0000000..f908d90 Binary files /dev/null and b/the8eam/open-iconic/png/zoom-in-6x.png differ diff --git a/the8eam/open-iconic/png/zoom-in-8x.png b/the8eam/open-iconic/png/zoom-in-8x.png new file mode 100644 index 0000000..85b9cff Binary files /dev/null and b/the8eam/open-iconic/png/zoom-in-8x.png differ diff --git a/the8eam/open-iconic/png/zoom-in.png b/the8eam/open-iconic/png/zoom-in.png new file mode 100644 index 0000000..0292fed Binary files /dev/null and b/the8eam/open-iconic/png/zoom-in.png differ diff --git a/the8eam/open-iconic/png/zoom-out-2x.png b/the8eam/open-iconic/png/zoom-out-2x.png new file mode 100644 index 0000000..18d6a1d Binary files /dev/null and b/the8eam/open-iconic/png/zoom-out-2x.png differ diff --git a/the8eam/open-iconic/png/zoom-out-3x.png b/the8eam/open-iconic/png/zoom-out-3x.png new file mode 100644 index 0000000..7b090ec Binary files /dev/null and b/the8eam/open-iconic/png/zoom-out-3x.png differ diff --git a/the8eam/open-iconic/png/zoom-out-4x.png b/the8eam/open-iconic/png/zoom-out-4x.png new file mode 100644 index 0000000..b7abcea Binary files /dev/null and b/the8eam/open-iconic/png/zoom-out-4x.png differ diff --git a/the8eam/open-iconic/png/zoom-out-6x.png b/the8eam/open-iconic/png/zoom-out-6x.png new file mode 100644 index 0000000..918214b Binary files /dev/null and b/the8eam/open-iconic/png/zoom-out-6x.png differ diff --git a/the8eam/open-iconic/png/zoom-out-8x.png b/the8eam/open-iconic/png/zoom-out-8x.png new file mode 100644 index 0000000..ff96582 Binary files /dev/null and b/the8eam/open-iconic/png/zoom-out-8x.png differ diff --git a/the8eam/open-iconic/png/zoom-out.png b/the8eam/open-iconic/png/zoom-out.png new file mode 100644 index 0000000..33b1c90 Binary files /dev/null and b/the8eam/open-iconic/png/zoom-out.png differ diff --git a/the8eam/open-iconic/sprite/open-iconic.html b/the8eam/open-iconic/sprite/open-iconic.html new file mode 100644 index 0000000..82b0fb5 --- /dev/null +++ b/the8eam/open-iconic/sprite/open-iconic.html @@ -0,0 +1,929 @@ + + + + + + + + +
+

+ Make sure to run this through a web server otherwise you won’t see any icons. You can use Serve for local testing. +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + \ No newline at end of file diff --git a/the8eam/open-iconic/sprite/open-iconic.min.svg b/the8eam/open-iconic/sprite/open-iconic.min.svg new file mode 100644 index 0000000..19b6fcf --- /dev/null +++ b/the8eam/open-iconic/sprite/open-iconic.min.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/the8eam/open-iconic/sprite/open-iconic.svg b/the8eam/open-iconic/sprite/open-iconic.svg new file mode 100644 index 0000000..cba89bc --- /dev/null +++ b/the8eam/open-iconic/sprite/open-iconic.svg @@ -0,0 +1,452 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/the8eam/open-iconic/sprite/sprite.html b/the8eam/open-iconic/sprite/sprite.html new file mode 100644 index 0000000..d945efe --- /dev/null +++ b/the8eam/open-iconic/sprite/sprite.html @@ -0,0 +1,926 @@ + + + + + + + + +
+

Make sure to run this through a web server otherwise you won’t see any icons. You can use Serve for local testing.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + diff --git a/the8eam/open-iconic/sprite/sprite.min.svg b/the8eam/open-iconic/sprite/sprite.min.svg new file mode 100644 index 0000000..af927c6 --- /dev/null +++ b/the8eam/open-iconic/sprite/sprite.min.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/the8eam/open-iconic/sprite/sprite.svg b/the8eam/open-iconic/sprite/sprite.svg new file mode 100644 index 0000000..63d2cf4 --- /dev/null +++ b/the8eam/open-iconic/sprite/sprite.svg @@ -0,0 +1,673 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/account-login.svg b/the8eam/open-iconic/svg/account-login.svg new file mode 100644 index 0000000..225d912 --- /dev/null +++ b/the8eam/open-iconic/svg/account-login.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/account-logout.svg b/the8eam/open-iconic/svg/account-logout.svg new file mode 100644 index 0000000..123cece --- /dev/null +++ b/the8eam/open-iconic/svg/account-logout.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/action-redo.svg b/the8eam/open-iconic/svg/action-redo.svg new file mode 100644 index 0000000..373f7cb --- /dev/null +++ b/the8eam/open-iconic/svg/action-redo.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/action-undo.svg b/the8eam/open-iconic/svg/action-undo.svg new file mode 100644 index 0000000..6e4cfa3 --- /dev/null +++ b/the8eam/open-iconic/svg/action-undo.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/align-center.svg b/the8eam/open-iconic/svg/align-center.svg new file mode 100644 index 0000000..bbac8ec --- /dev/null +++ b/the8eam/open-iconic/svg/align-center.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/align-left.svg b/the8eam/open-iconic/svg/align-left.svg new file mode 100644 index 0000000..2e92e0d --- /dev/null +++ b/the8eam/open-iconic/svg/align-left.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/align-right.svg b/the8eam/open-iconic/svg/align-right.svg new file mode 100644 index 0000000..22d127a --- /dev/null +++ b/the8eam/open-iconic/svg/align-right.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/aperture.svg b/the8eam/open-iconic/svg/aperture.svg new file mode 100644 index 0000000..d45f6ca --- /dev/null +++ b/the8eam/open-iconic/svg/aperture.svg @@ -0,0 +1,4 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/arrow-bottom.svg b/the8eam/open-iconic/svg/arrow-bottom.svg new file mode 100644 index 0000000..005d723 --- /dev/null +++ b/the8eam/open-iconic/svg/arrow-bottom.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/arrow-circle-bottom.svg b/the8eam/open-iconic/svg/arrow-circle-bottom.svg new file mode 100644 index 0000000..fffa96b --- /dev/null +++ b/the8eam/open-iconic/svg/arrow-circle-bottom.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/arrow-circle-left.svg b/the8eam/open-iconic/svg/arrow-circle-left.svg new file mode 100644 index 0000000..b4d7600 --- /dev/null +++ b/the8eam/open-iconic/svg/arrow-circle-left.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/arrow-circle-right.svg b/the8eam/open-iconic/svg/arrow-circle-right.svg new file mode 100644 index 0000000..a62bc17 --- /dev/null +++ b/the8eam/open-iconic/svg/arrow-circle-right.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/arrow-circle-top.svg b/the8eam/open-iconic/svg/arrow-circle-top.svg new file mode 100644 index 0000000..2ac6e7f --- /dev/null +++ b/the8eam/open-iconic/svg/arrow-circle-top.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/arrow-left.svg b/the8eam/open-iconic/svg/arrow-left.svg new file mode 100644 index 0000000..6de9f24 --- /dev/null +++ b/the8eam/open-iconic/svg/arrow-left.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/arrow-right.svg b/the8eam/open-iconic/svg/arrow-right.svg new file mode 100644 index 0000000..735e5f6 --- /dev/null +++ b/the8eam/open-iconic/svg/arrow-right.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/arrow-thick-bottom.svg b/the8eam/open-iconic/svg/arrow-thick-bottom.svg new file mode 100644 index 0000000..0c05067 --- /dev/null +++ b/the8eam/open-iconic/svg/arrow-thick-bottom.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/arrow-thick-left.svg b/the8eam/open-iconic/svg/arrow-thick-left.svg new file mode 100644 index 0000000..2075e42 --- /dev/null +++ b/the8eam/open-iconic/svg/arrow-thick-left.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/arrow-thick-right.svg b/the8eam/open-iconic/svg/arrow-thick-right.svg new file mode 100644 index 0000000..8b407e9 --- /dev/null +++ b/the8eam/open-iconic/svg/arrow-thick-right.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/arrow-thick-top.svg b/the8eam/open-iconic/svg/arrow-thick-top.svg new file mode 100644 index 0000000..78b310c --- /dev/null +++ b/the8eam/open-iconic/svg/arrow-thick-top.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/arrow-top.svg b/the8eam/open-iconic/svg/arrow-top.svg new file mode 100644 index 0000000..d03d52d --- /dev/null +++ b/the8eam/open-iconic/svg/arrow-top.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/audio-spectrum.svg b/the8eam/open-iconic/svg/audio-spectrum.svg new file mode 100644 index 0000000..7077ec7 --- /dev/null +++ b/the8eam/open-iconic/svg/audio-spectrum.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/audio.svg b/the8eam/open-iconic/svg/audio.svg new file mode 100644 index 0000000..803d592 --- /dev/null +++ b/the8eam/open-iconic/svg/audio.svg @@ -0,0 +1,4 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/badge.svg b/the8eam/open-iconic/svg/badge.svg new file mode 100644 index 0000000..47b8322 --- /dev/null +++ b/the8eam/open-iconic/svg/badge.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/ban.svg b/the8eam/open-iconic/svg/ban.svg new file mode 100644 index 0000000..3a23300 --- /dev/null +++ b/the8eam/open-iconic/svg/ban.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/bar-chart.svg b/the8eam/open-iconic/svg/bar-chart.svg new file mode 100644 index 0000000..a1cde5a --- /dev/null +++ b/the8eam/open-iconic/svg/bar-chart.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/basket.svg b/the8eam/open-iconic/svg/basket.svg new file mode 100644 index 0000000..fc5f8c5 --- /dev/null +++ b/the8eam/open-iconic/svg/basket.svg @@ -0,0 +1,4 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/battery-empty.svg b/the8eam/open-iconic/svg/battery-empty.svg new file mode 100644 index 0000000..61efd9a --- /dev/null +++ b/the8eam/open-iconic/svg/battery-empty.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/battery-full.svg b/the8eam/open-iconic/svg/battery-full.svg new file mode 100644 index 0000000..85d8839 --- /dev/null +++ b/the8eam/open-iconic/svg/battery-full.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/beaker.svg b/the8eam/open-iconic/svg/beaker.svg new file mode 100644 index 0000000..0eb1c02 --- /dev/null +++ b/the8eam/open-iconic/svg/beaker.svg @@ -0,0 +1,4 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/bell.svg b/the8eam/open-iconic/svg/bell.svg new file mode 100644 index 0000000..a701e7e --- /dev/null +++ b/the8eam/open-iconic/svg/bell.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/bluetooth.svg b/the8eam/open-iconic/svg/bluetooth.svg new file mode 100644 index 0000000..36a4028 --- /dev/null +++ b/the8eam/open-iconic/svg/bluetooth.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/bold.svg b/the8eam/open-iconic/svg/bold.svg new file mode 100644 index 0000000..72432db --- /dev/null +++ b/the8eam/open-iconic/svg/bold.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/bolt.svg b/the8eam/open-iconic/svg/bolt.svg new file mode 100644 index 0000000..d6e8df1 --- /dev/null +++ b/the8eam/open-iconic/svg/bolt.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/book.svg b/the8eam/open-iconic/svg/book.svg new file mode 100644 index 0000000..dd6a29b --- /dev/null +++ b/the8eam/open-iconic/svg/book.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/bookmark.svg b/the8eam/open-iconic/svg/bookmark.svg new file mode 100644 index 0000000..cd349c7 --- /dev/null +++ b/the8eam/open-iconic/svg/bookmark.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/box.svg b/the8eam/open-iconic/svg/box.svg new file mode 100644 index 0000000..9d1abb0 --- /dev/null +++ b/the8eam/open-iconic/svg/box.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/briefcase.svg b/the8eam/open-iconic/svg/briefcase.svg new file mode 100644 index 0000000..b211550 --- /dev/null +++ b/the8eam/open-iconic/svg/briefcase.svg @@ -0,0 +1,4 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/british-pound.svg b/the8eam/open-iconic/svg/british-pound.svg new file mode 100644 index 0000000..ef70d88 --- /dev/null +++ b/the8eam/open-iconic/svg/british-pound.svg @@ -0,0 +1,4 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/browser.svg b/the8eam/open-iconic/svg/browser.svg new file mode 100644 index 0000000..616cfbe --- /dev/null +++ b/the8eam/open-iconic/svg/browser.svg @@ -0,0 +1,4 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/brush.svg b/the8eam/open-iconic/svg/brush.svg new file mode 100644 index 0000000..bad9ec0 --- /dev/null +++ b/the8eam/open-iconic/svg/brush.svg @@ -0,0 +1,4 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/bug.svg b/the8eam/open-iconic/svg/bug.svg new file mode 100644 index 0000000..70c1473 --- /dev/null +++ b/the8eam/open-iconic/svg/bug.svg @@ -0,0 +1,4 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/bullhorn.svg b/the8eam/open-iconic/svg/bullhorn.svg new file mode 100644 index 0000000..885f0d5 --- /dev/null +++ b/the8eam/open-iconic/svg/bullhorn.svg @@ -0,0 +1,4 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/calculator.svg b/the8eam/open-iconic/svg/calculator.svg new file mode 100644 index 0000000..f756287 --- /dev/null +++ b/the8eam/open-iconic/svg/calculator.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/calendar.svg b/the8eam/open-iconic/svg/calendar.svg new file mode 100644 index 0000000..a35049b --- /dev/null +++ b/the8eam/open-iconic/svg/calendar.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/camera-slr.svg b/the8eam/open-iconic/svg/camera-slr.svg new file mode 100644 index 0000000..0ee45c0 --- /dev/null +++ b/the8eam/open-iconic/svg/camera-slr.svg @@ -0,0 +1,4 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/caret-bottom.svg b/the8eam/open-iconic/svg/caret-bottom.svg new file mode 100644 index 0000000..2b4c525 --- /dev/null +++ b/the8eam/open-iconic/svg/caret-bottom.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/caret-left.svg b/the8eam/open-iconic/svg/caret-left.svg new file mode 100644 index 0000000..9d2c25a --- /dev/null +++ b/the8eam/open-iconic/svg/caret-left.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/caret-right.svg b/the8eam/open-iconic/svg/caret-right.svg new file mode 100644 index 0000000..23b33a0 --- /dev/null +++ b/the8eam/open-iconic/svg/caret-right.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/caret-top.svg b/the8eam/open-iconic/svg/caret-top.svg new file mode 100644 index 0000000..2ad42e0 --- /dev/null +++ b/the8eam/open-iconic/svg/caret-top.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/cart.svg b/the8eam/open-iconic/svg/cart.svg new file mode 100644 index 0000000..55bdfc0 --- /dev/null +++ b/the8eam/open-iconic/svg/cart.svg @@ -0,0 +1,4 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/chat.svg b/the8eam/open-iconic/svg/chat.svg new file mode 100644 index 0000000..e1a1da0 --- /dev/null +++ b/the8eam/open-iconic/svg/chat.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/check.svg b/the8eam/open-iconic/svg/check.svg new file mode 100644 index 0000000..8b0e73d --- /dev/null +++ b/the8eam/open-iconic/svg/check.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/chevron-bottom.svg b/the8eam/open-iconic/svg/chevron-bottom.svg new file mode 100644 index 0000000..b919722 --- /dev/null +++ b/the8eam/open-iconic/svg/chevron-bottom.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/chevron-left.svg b/the8eam/open-iconic/svg/chevron-left.svg new file mode 100644 index 0000000..256902c --- /dev/null +++ b/the8eam/open-iconic/svg/chevron-left.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/chevron-right.svg b/the8eam/open-iconic/svg/chevron-right.svg new file mode 100644 index 0000000..2da0760 --- /dev/null +++ b/the8eam/open-iconic/svg/chevron-right.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/chevron-top.svg b/the8eam/open-iconic/svg/chevron-top.svg new file mode 100644 index 0000000..d8bf89c --- /dev/null +++ b/the8eam/open-iconic/svg/chevron-top.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/circle-check.svg b/the8eam/open-iconic/svg/circle-check.svg new file mode 100644 index 0000000..5df0f15 --- /dev/null +++ b/the8eam/open-iconic/svg/circle-check.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/circle-x.svg b/the8eam/open-iconic/svg/circle-x.svg new file mode 100644 index 0000000..0244752 --- /dev/null +++ b/the8eam/open-iconic/svg/circle-x.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/clipboard.svg b/the8eam/open-iconic/svg/clipboard.svg new file mode 100644 index 0000000..6b0be4d --- /dev/null +++ b/the8eam/open-iconic/svg/clipboard.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/clock.svg b/the8eam/open-iconic/svg/clock.svg new file mode 100644 index 0000000..058e443 --- /dev/null +++ b/the8eam/open-iconic/svg/clock.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/cloud-download.svg b/the8eam/open-iconic/svg/cloud-download.svg new file mode 100644 index 0000000..485cf92 --- /dev/null +++ b/the8eam/open-iconic/svg/cloud-download.svg @@ -0,0 +1,4 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/cloud-upload.svg b/the8eam/open-iconic/svg/cloud-upload.svg new file mode 100644 index 0000000..2bb2196 --- /dev/null +++ b/the8eam/open-iconic/svg/cloud-upload.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/cloud.svg b/the8eam/open-iconic/svg/cloud.svg new file mode 100644 index 0000000..8c858ab --- /dev/null +++ b/the8eam/open-iconic/svg/cloud.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/cloudy.svg b/the8eam/open-iconic/svg/cloudy.svg new file mode 100644 index 0000000..0bd98c6 --- /dev/null +++ b/the8eam/open-iconic/svg/cloudy.svg @@ -0,0 +1,4 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/code.svg b/the8eam/open-iconic/svg/code.svg new file mode 100644 index 0000000..14e4937 --- /dev/null +++ b/the8eam/open-iconic/svg/code.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/cog.svg b/the8eam/open-iconic/svg/cog.svg new file mode 100644 index 0000000..7bbbce4 --- /dev/null +++ b/the8eam/open-iconic/svg/cog.svg @@ -0,0 +1,4 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/collapse-down.svg b/the8eam/open-iconic/svg/collapse-down.svg new file mode 100644 index 0000000..47a37c5 --- /dev/null +++ b/the8eam/open-iconic/svg/collapse-down.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/collapse-left.svg b/the8eam/open-iconic/svg/collapse-left.svg new file mode 100644 index 0000000..31ef1d6 --- /dev/null +++ b/the8eam/open-iconic/svg/collapse-left.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/collapse-right.svg b/the8eam/open-iconic/svg/collapse-right.svg new file mode 100644 index 0000000..6f104f6 --- /dev/null +++ b/the8eam/open-iconic/svg/collapse-right.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/collapse-up.svg b/the8eam/open-iconic/svg/collapse-up.svg new file mode 100644 index 0000000..6693e1e --- /dev/null +++ b/the8eam/open-iconic/svg/collapse-up.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/command.svg b/the8eam/open-iconic/svg/command.svg new file mode 100644 index 0000000..ae05df6 --- /dev/null +++ b/the8eam/open-iconic/svg/command.svg @@ -0,0 +1,4 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/comment-square.svg b/the8eam/open-iconic/svg/comment-square.svg new file mode 100644 index 0000000..591eb51 --- /dev/null +++ b/the8eam/open-iconic/svg/comment-square.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/compass.svg b/the8eam/open-iconic/svg/compass.svg new file mode 100644 index 0000000..7b923b7 --- /dev/null +++ b/the8eam/open-iconic/svg/compass.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/contrast.svg b/the8eam/open-iconic/svg/contrast.svg new file mode 100644 index 0000000..a38a3a4 --- /dev/null +++ b/the8eam/open-iconic/svg/contrast.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/copywriting.svg b/the8eam/open-iconic/svg/copywriting.svg new file mode 100644 index 0000000..910f8c0 --- /dev/null +++ b/the8eam/open-iconic/svg/copywriting.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/credit-card.svg b/the8eam/open-iconic/svg/credit-card.svg new file mode 100644 index 0000000..58b508b --- /dev/null +++ b/the8eam/open-iconic/svg/credit-card.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/crop.svg b/the8eam/open-iconic/svg/crop.svg new file mode 100644 index 0000000..8a7f1eb --- /dev/null +++ b/the8eam/open-iconic/svg/crop.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/dashboard.svg b/the8eam/open-iconic/svg/dashboard.svg new file mode 100644 index 0000000..083918d --- /dev/null +++ b/the8eam/open-iconic/svg/dashboard.svg @@ -0,0 +1,4 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/data-transfer-download.svg b/the8eam/open-iconic/svg/data-transfer-download.svg new file mode 100644 index 0000000..9f14f33 --- /dev/null +++ b/the8eam/open-iconic/svg/data-transfer-download.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/data-transfer-upload.svg b/the8eam/open-iconic/svg/data-transfer-upload.svg new file mode 100644 index 0000000..5fb17fa --- /dev/null +++ b/the8eam/open-iconic/svg/data-transfer-upload.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/delete.svg b/the8eam/open-iconic/svg/delete.svg new file mode 100644 index 0000000..2f7ca18 --- /dev/null +++ b/the8eam/open-iconic/svg/delete.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/dial.svg b/the8eam/open-iconic/svg/dial.svg new file mode 100644 index 0000000..0371785 --- /dev/null +++ b/the8eam/open-iconic/svg/dial.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/document.svg b/the8eam/open-iconic/svg/document.svg new file mode 100644 index 0000000..8e2ba05 --- /dev/null +++ b/the8eam/open-iconic/svg/document.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/dollar.svg b/the8eam/open-iconic/svg/dollar.svg new file mode 100644 index 0000000..f49a4ad --- /dev/null +++ b/the8eam/open-iconic/svg/dollar.svg @@ -0,0 +1,4 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/double-quote-sans-left.svg b/the8eam/open-iconic/svg/double-quote-sans-left.svg new file mode 100644 index 0000000..1ceb012 --- /dev/null +++ b/the8eam/open-iconic/svg/double-quote-sans-left.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/double-quote-sans-right.svg b/the8eam/open-iconic/svg/double-quote-sans-right.svg new file mode 100644 index 0000000..93705ae --- /dev/null +++ b/the8eam/open-iconic/svg/double-quote-sans-right.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/double-quote-serif-left.svg b/the8eam/open-iconic/svg/double-quote-serif-left.svg new file mode 100644 index 0000000..3e04ae6 --- /dev/null +++ b/the8eam/open-iconic/svg/double-quote-serif-left.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/double-quote-serif-right.svg b/the8eam/open-iconic/svg/double-quote-serif-right.svg new file mode 100644 index 0000000..9d38e9e --- /dev/null +++ b/the8eam/open-iconic/svg/double-quote-serif-right.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/droplet.svg b/the8eam/open-iconic/svg/droplet.svg new file mode 100644 index 0000000..fc4a2d4 --- /dev/null +++ b/the8eam/open-iconic/svg/droplet.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/eject.svg b/the8eam/open-iconic/svg/eject.svg new file mode 100644 index 0000000..f7ff102 --- /dev/null +++ b/the8eam/open-iconic/svg/eject.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/elevator.svg b/the8eam/open-iconic/svg/elevator.svg new file mode 100644 index 0000000..1e839cf --- /dev/null +++ b/the8eam/open-iconic/svg/elevator.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/ellipses.svg b/the8eam/open-iconic/svg/ellipses.svg new file mode 100644 index 0000000..dd2a7ee --- /dev/null +++ b/the8eam/open-iconic/svg/ellipses.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/envelope-closed.svg b/the8eam/open-iconic/svg/envelope-closed.svg new file mode 100644 index 0000000..9fb9588 --- /dev/null +++ b/the8eam/open-iconic/svg/envelope-closed.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/envelope-open.svg b/the8eam/open-iconic/svg/envelope-open.svg new file mode 100644 index 0000000..b67740f --- /dev/null +++ b/the8eam/open-iconic/svg/envelope-open.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/euro.svg b/the8eam/open-iconic/svg/euro.svg new file mode 100644 index 0000000..b109761 --- /dev/null +++ b/the8eam/open-iconic/svg/euro.svg @@ -0,0 +1,4 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/excerpt.svg b/the8eam/open-iconic/svg/excerpt.svg new file mode 100644 index 0000000..e83a3ee --- /dev/null +++ b/the8eam/open-iconic/svg/excerpt.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/expand-down.svg b/the8eam/open-iconic/svg/expand-down.svg new file mode 100644 index 0000000..b1d8ed0 --- /dev/null +++ b/the8eam/open-iconic/svg/expand-down.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/expand-left.svg b/the8eam/open-iconic/svg/expand-left.svg new file mode 100644 index 0000000..380eae2 --- /dev/null +++ b/the8eam/open-iconic/svg/expand-left.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/expand-right.svg b/the8eam/open-iconic/svg/expand-right.svg new file mode 100644 index 0000000..a75dadb --- /dev/null +++ b/the8eam/open-iconic/svg/expand-right.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/expand-up.svg b/the8eam/open-iconic/svg/expand-up.svg new file mode 100644 index 0000000..36c3973 --- /dev/null +++ b/the8eam/open-iconic/svg/expand-up.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/external-link.svg b/the8eam/open-iconic/svg/external-link.svg new file mode 100644 index 0000000..6fdc00c --- /dev/null +++ b/the8eam/open-iconic/svg/external-link.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/eye.svg b/the8eam/open-iconic/svg/eye.svg new file mode 100644 index 0000000..9f6f158 --- /dev/null +++ b/the8eam/open-iconic/svg/eye.svg @@ -0,0 +1,4 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/eyedropper.svg b/the8eam/open-iconic/svg/eyedropper.svg new file mode 100644 index 0000000..97b8e13 --- /dev/null +++ b/the8eam/open-iconic/svg/eyedropper.svg @@ -0,0 +1,4 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/file.svg b/the8eam/open-iconic/svg/file.svg new file mode 100644 index 0000000..145853d --- /dev/null +++ b/the8eam/open-iconic/svg/file.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/fire.svg b/the8eam/open-iconic/svg/fire.svg new file mode 100644 index 0000000..aeb99e7 --- /dev/null +++ b/the8eam/open-iconic/svg/fire.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/flag.svg b/the8eam/open-iconic/svg/flag.svg new file mode 100644 index 0000000..da93787 --- /dev/null +++ b/the8eam/open-iconic/svg/flag.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/flash.svg b/the8eam/open-iconic/svg/flash.svg new file mode 100644 index 0000000..20a8a37 --- /dev/null +++ b/the8eam/open-iconic/svg/flash.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/folder.svg b/the8eam/open-iconic/svg/folder.svg new file mode 100644 index 0000000..ef47dd6 --- /dev/null +++ b/the8eam/open-iconic/svg/folder.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/fork.svg b/the8eam/open-iconic/svg/fork.svg new file mode 100644 index 0000000..12e41f5 --- /dev/null +++ b/the8eam/open-iconic/svg/fork.svg @@ -0,0 +1,4 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/fullscreen-enter.svg b/the8eam/open-iconic/svg/fullscreen-enter.svg new file mode 100644 index 0000000..4efb890 --- /dev/null +++ b/the8eam/open-iconic/svg/fullscreen-enter.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/fullscreen-exit.svg b/the8eam/open-iconic/svg/fullscreen-exit.svg new file mode 100644 index 0000000..c57d8ad --- /dev/null +++ b/the8eam/open-iconic/svg/fullscreen-exit.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/globe.svg b/the8eam/open-iconic/svg/globe.svg new file mode 100644 index 0000000..42a6dfe --- /dev/null +++ b/the8eam/open-iconic/svg/globe.svg @@ -0,0 +1,4 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/graph.svg b/the8eam/open-iconic/svg/graph.svg new file mode 100644 index 0000000..4727dd8 --- /dev/null +++ b/the8eam/open-iconic/svg/graph.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/grid-four-up.svg b/the8eam/open-iconic/svg/grid-four-up.svg new file mode 100644 index 0000000..bdcc178 --- /dev/null +++ b/the8eam/open-iconic/svg/grid-four-up.svg @@ -0,0 +1,4 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/grid-three-up.svg b/the8eam/open-iconic/svg/grid-three-up.svg new file mode 100644 index 0000000..2a929a0 --- /dev/null +++ b/the8eam/open-iconic/svg/grid-three-up.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/grid-two-up.svg b/the8eam/open-iconic/svg/grid-two-up.svg new file mode 100644 index 0000000..71503ba --- /dev/null +++ b/the8eam/open-iconic/svg/grid-two-up.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/hard-drive.svg b/the8eam/open-iconic/svg/hard-drive.svg new file mode 100644 index 0000000..8fcd853 --- /dev/null +++ b/the8eam/open-iconic/svg/hard-drive.svg @@ -0,0 +1,4 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/header.svg b/the8eam/open-iconic/svg/header.svg new file mode 100644 index 0000000..e794cc4 --- /dev/null +++ b/the8eam/open-iconic/svg/header.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/headphones.svg b/the8eam/open-iconic/svg/headphones.svg new file mode 100644 index 0000000..63e4559 --- /dev/null +++ b/the8eam/open-iconic/svg/headphones.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/heart.svg b/the8eam/open-iconic/svg/heart.svg new file mode 100644 index 0000000..cc5f71e --- /dev/null +++ b/the8eam/open-iconic/svg/heart.svg @@ -0,0 +1,4 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/home.svg b/the8eam/open-iconic/svg/home.svg new file mode 100644 index 0000000..8057619 --- /dev/null +++ b/the8eam/open-iconic/svg/home.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/image.svg b/the8eam/open-iconic/svg/image.svg new file mode 100644 index 0000000..fa9a105 --- /dev/null +++ b/the8eam/open-iconic/svg/image.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/inbox.svg b/the8eam/open-iconic/svg/inbox.svg new file mode 100644 index 0000000..4c8fbd0 --- /dev/null +++ b/the8eam/open-iconic/svg/inbox.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/infinity.svg b/the8eam/open-iconic/svg/infinity.svg new file mode 100644 index 0000000..bdc5569 --- /dev/null +++ b/the8eam/open-iconic/svg/infinity.svg @@ -0,0 +1,4 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/info.svg b/the8eam/open-iconic/svg/info.svg new file mode 100644 index 0000000..a61e598 --- /dev/null +++ b/the8eam/open-iconic/svg/info.svg @@ -0,0 +1,4 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/italic.svg b/the8eam/open-iconic/svg/italic.svg new file mode 100644 index 0000000..facb403 --- /dev/null +++ b/the8eam/open-iconic/svg/italic.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/justify-center.svg b/the8eam/open-iconic/svg/justify-center.svg new file mode 100644 index 0000000..544162c --- /dev/null +++ b/the8eam/open-iconic/svg/justify-center.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/justify-left.svg b/the8eam/open-iconic/svg/justify-left.svg new file mode 100644 index 0000000..e5787c3 --- /dev/null +++ b/the8eam/open-iconic/svg/justify-left.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/justify-right.svg b/the8eam/open-iconic/svg/justify-right.svg new file mode 100644 index 0000000..2e8c6fd --- /dev/null +++ b/the8eam/open-iconic/svg/justify-right.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/key.svg b/the8eam/open-iconic/svg/key.svg new file mode 100644 index 0000000..9517346 --- /dev/null +++ b/the8eam/open-iconic/svg/key.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/laptop.svg b/the8eam/open-iconic/svg/laptop.svg new file mode 100644 index 0000000..b8e7e56 --- /dev/null +++ b/the8eam/open-iconic/svg/laptop.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/layers.svg b/the8eam/open-iconic/svg/layers.svg new file mode 100644 index 0000000..564c4ae --- /dev/null +++ b/the8eam/open-iconic/svg/layers.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/lightbulb.svg b/the8eam/open-iconic/svg/lightbulb.svg new file mode 100644 index 0000000..8c0d98a --- /dev/null +++ b/the8eam/open-iconic/svg/lightbulb.svg @@ -0,0 +1,4 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/link-broken.svg b/the8eam/open-iconic/svg/link-broken.svg new file mode 100644 index 0000000..7bd085e --- /dev/null +++ b/the8eam/open-iconic/svg/link-broken.svg @@ -0,0 +1,4 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/link-intact.svg b/the8eam/open-iconic/svg/link-intact.svg new file mode 100644 index 0000000..cdfbabd --- /dev/null +++ b/the8eam/open-iconic/svg/link-intact.svg @@ -0,0 +1,4 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/list-rich.svg b/the8eam/open-iconic/svg/list-rich.svg new file mode 100644 index 0000000..cf816d1 --- /dev/null +++ b/the8eam/open-iconic/svg/list-rich.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/list.svg b/the8eam/open-iconic/svg/list.svg new file mode 100644 index 0000000..83ada76 --- /dev/null +++ b/the8eam/open-iconic/svg/list.svg @@ -0,0 +1,4 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/location.svg b/the8eam/open-iconic/svg/location.svg new file mode 100644 index 0000000..9fa01f2 --- /dev/null +++ b/the8eam/open-iconic/svg/location.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/lock-locked.svg b/the8eam/open-iconic/svg/lock-locked.svg new file mode 100644 index 0000000..ef54f3a --- /dev/null +++ b/the8eam/open-iconic/svg/lock-locked.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/lock-unlocked.svg b/the8eam/open-iconic/svg/lock-unlocked.svg new file mode 100644 index 0000000..7f78a6f --- /dev/null +++ b/the8eam/open-iconic/svg/lock-unlocked.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/loop-circular.svg b/the8eam/open-iconic/svg/loop-circular.svg new file mode 100644 index 0000000..fe5853a --- /dev/null +++ b/the8eam/open-iconic/svg/loop-circular.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/loop-square.svg b/the8eam/open-iconic/svg/loop-square.svg new file mode 100644 index 0000000..e052f40 --- /dev/null +++ b/the8eam/open-iconic/svg/loop-square.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/loop.svg b/the8eam/open-iconic/svg/loop.svg new file mode 100644 index 0000000..4b524c3 --- /dev/null +++ b/the8eam/open-iconic/svg/loop.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/magnifying-glass.svg b/the8eam/open-iconic/svg/magnifying-glass.svg new file mode 100644 index 0000000..1e4ffb6 --- /dev/null +++ b/the8eam/open-iconic/svg/magnifying-glass.svg @@ -0,0 +1,4 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/map-marker.svg b/the8eam/open-iconic/svg/map-marker.svg new file mode 100644 index 0000000..e1f5b99 --- /dev/null +++ b/the8eam/open-iconic/svg/map-marker.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/map.svg b/the8eam/open-iconic/svg/map.svg new file mode 100644 index 0000000..28f377c --- /dev/null +++ b/the8eam/open-iconic/svg/map.svg @@ -0,0 +1,4 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/media-pause.svg b/the8eam/open-iconic/svg/media-pause.svg new file mode 100644 index 0000000..a74159e --- /dev/null +++ b/the8eam/open-iconic/svg/media-pause.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/media-play.svg b/the8eam/open-iconic/svg/media-play.svg new file mode 100644 index 0000000..54cebff --- /dev/null +++ b/the8eam/open-iconic/svg/media-play.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/media-record.svg b/the8eam/open-iconic/svg/media-record.svg new file mode 100644 index 0000000..6bbe079 --- /dev/null +++ b/the8eam/open-iconic/svg/media-record.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/media-skip-backward.svg b/the8eam/open-iconic/svg/media-skip-backward.svg new file mode 100644 index 0000000..c60167b --- /dev/null +++ b/the8eam/open-iconic/svg/media-skip-backward.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/media-skip-forward.svg b/the8eam/open-iconic/svg/media-skip-forward.svg new file mode 100644 index 0000000..13b8a52 --- /dev/null +++ b/the8eam/open-iconic/svg/media-skip-forward.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/media-step-backward.svg b/the8eam/open-iconic/svg/media-step-backward.svg new file mode 100644 index 0000000..78ac714 --- /dev/null +++ b/the8eam/open-iconic/svg/media-step-backward.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/media-step-forward.svg b/the8eam/open-iconic/svg/media-step-forward.svg new file mode 100644 index 0000000..df21299 --- /dev/null +++ b/the8eam/open-iconic/svg/media-step-forward.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/media-stop.svg b/the8eam/open-iconic/svg/media-stop.svg new file mode 100644 index 0000000..af6f4f4 --- /dev/null +++ b/the8eam/open-iconic/svg/media-stop.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/medical-cross.svg b/the8eam/open-iconic/svg/medical-cross.svg new file mode 100644 index 0000000..71028f9 --- /dev/null +++ b/the8eam/open-iconic/svg/medical-cross.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/menu.svg b/the8eam/open-iconic/svg/menu.svg new file mode 100644 index 0000000..79a4d8c --- /dev/null +++ b/the8eam/open-iconic/svg/menu.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/microphone.svg b/the8eam/open-iconic/svg/microphone.svg new file mode 100644 index 0000000..088bc44 --- /dev/null +++ b/the8eam/open-iconic/svg/microphone.svg @@ -0,0 +1,4 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/minus.svg b/the8eam/open-iconic/svg/minus.svg new file mode 100644 index 0000000..82f4163 --- /dev/null +++ b/the8eam/open-iconic/svg/minus.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/monitor.svg b/the8eam/open-iconic/svg/monitor.svg new file mode 100644 index 0000000..a7c4667 --- /dev/null +++ b/the8eam/open-iconic/svg/monitor.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/moon.svg b/the8eam/open-iconic/svg/moon.svg new file mode 100644 index 0000000..b5520af --- /dev/null +++ b/the8eam/open-iconic/svg/moon.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/move.svg b/the8eam/open-iconic/svg/move.svg new file mode 100644 index 0000000..4674db8 --- /dev/null +++ b/the8eam/open-iconic/svg/move.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/musical-note.svg b/the8eam/open-iconic/svg/musical-note.svg new file mode 100644 index 0000000..644ca61 --- /dev/null +++ b/the8eam/open-iconic/svg/musical-note.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/paperclip.svg b/the8eam/open-iconic/svg/paperclip.svg new file mode 100644 index 0000000..380fe55 --- /dev/null +++ b/the8eam/open-iconic/svg/paperclip.svg @@ -0,0 +1,4 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/pencil.svg b/the8eam/open-iconic/svg/pencil.svg new file mode 100644 index 0000000..8109530 --- /dev/null +++ b/the8eam/open-iconic/svg/pencil.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/people.svg b/the8eam/open-iconic/svg/people.svg new file mode 100644 index 0000000..7d909ca --- /dev/null +++ b/the8eam/open-iconic/svg/people.svg @@ -0,0 +1,4 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/person.svg b/the8eam/open-iconic/svg/person.svg new file mode 100644 index 0000000..a9396b2 --- /dev/null +++ b/the8eam/open-iconic/svg/person.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/phone.svg b/the8eam/open-iconic/svg/phone.svg new file mode 100644 index 0000000..883f3ba --- /dev/null +++ b/the8eam/open-iconic/svg/phone.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/pie-chart.svg b/the8eam/open-iconic/svg/pie-chart.svg new file mode 100644 index 0000000..8d04463 --- /dev/null +++ b/the8eam/open-iconic/svg/pie-chart.svg @@ -0,0 +1,4 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/pin.svg b/the8eam/open-iconic/svg/pin.svg new file mode 100644 index 0000000..3aa1c8c --- /dev/null +++ b/the8eam/open-iconic/svg/pin.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/play-circle.svg b/the8eam/open-iconic/svg/play-circle.svg new file mode 100644 index 0000000..d668d52 --- /dev/null +++ b/the8eam/open-iconic/svg/play-circle.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/plus.svg b/the8eam/open-iconic/svg/plus.svg new file mode 100644 index 0000000..74aea49 --- /dev/null +++ b/the8eam/open-iconic/svg/plus.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/power-standby.svg b/the8eam/open-iconic/svg/power-standby.svg new file mode 100644 index 0000000..0a08500 --- /dev/null +++ b/the8eam/open-iconic/svg/power-standby.svg @@ -0,0 +1,4 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/print.svg b/the8eam/open-iconic/svg/print.svg new file mode 100644 index 0000000..4fa2202 --- /dev/null +++ b/the8eam/open-iconic/svg/print.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/project.svg b/the8eam/open-iconic/svg/project.svg new file mode 100644 index 0000000..e8e9154 --- /dev/null +++ b/the8eam/open-iconic/svg/project.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/pulse.svg b/the8eam/open-iconic/svg/pulse.svg new file mode 100644 index 0000000..751c7e0 --- /dev/null +++ b/the8eam/open-iconic/svg/pulse.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/puzzle-piece.svg b/the8eam/open-iconic/svg/puzzle-piece.svg new file mode 100644 index 0000000..6a56995 --- /dev/null +++ b/the8eam/open-iconic/svg/puzzle-piece.svg @@ -0,0 +1,4 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/question-mark.svg b/the8eam/open-iconic/svg/question-mark.svg new file mode 100644 index 0000000..a5e65ce --- /dev/null +++ b/the8eam/open-iconic/svg/question-mark.svg @@ -0,0 +1,4 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/rain.svg b/the8eam/open-iconic/svg/rain.svg new file mode 100644 index 0000000..0891310 --- /dev/null +++ b/the8eam/open-iconic/svg/rain.svg @@ -0,0 +1,4 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/random.svg b/the8eam/open-iconic/svg/random.svg new file mode 100644 index 0000000..9908f14 --- /dev/null +++ b/the8eam/open-iconic/svg/random.svg @@ -0,0 +1,4 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/reload.svg b/the8eam/open-iconic/svg/reload.svg new file mode 100644 index 0000000..92611c5 --- /dev/null +++ b/the8eam/open-iconic/svg/reload.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/resize-both.svg b/the8eam/open-iconic/svg/resize-both.svg new file mode 100644 index 0000000..d4d0fb4 --- /dev/null +++ b/the8eam/open-iconic/svg/resize-both.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/resize-height.svg b/the8eam/open-iconic/svg/resize-height.svg new file mode 100644 index 0000000..8ddb0e5 --- /dev/null +++ b/the8eam/open-iconic/svg/resize-height.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/resize-width.svg b/the8eam/open-iconic/svg/resize-width.svg new file mode 100644 index 0000000..864ebaf --- /dev/null +++ b/the8eam/open-iconic/svg/resize-width.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/rss-alt.svg b/the8eam/open-iconic/svg/rss-alt.svg new file mode 100644 index 0000000..b55d816 --- /dev/null +++ b/the8eam/open-iconic/svg/rss-alt.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/rss.svg b/the8eam/open-iconic/svg/rss.svg new file mode 100644 index 0000000..1e70b74 --- /dev/null +++ b/the8eam/open-iconic/svg/rss.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/script.svg b/the8eam/open-iconic/svg/script.svg new file mode 100644 index 0000000..14b7ff8 --- /dev/null +++ b/the8eam/open-iconic/svg/script.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/share-boxed.svg b/the8eam/open-iconic/svg/share-boxed.svg new file mode 100644 index 0000000..46f29a5 --- /dev/null +++ b/the8eam/open-iconic/svg/share-boxed.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/share.svg b/the8eam/open-iconic/svg/share.svg new file mode 100644 index 0000000..604cf5a --- /dev/null +++ b/the8eam/open-iconic/svg/share.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/shield.svg b/the8eam/open-iconic/svg/shield.svg new file mode 100644 index 0000000..1ebf81e --- /dev/null +++ b/the8eam/open-iconic/svg/shield.svg @@ -0,0 +1,4 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/signal.svg b/the8eam/open-iconic/svg/signal.svg new file mode 100644 index 0000000..14137f4 --- /dev/null +++ b/the8eam/open-iconic/svg/signal.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/signpost.svg b/the8eam/open-iconic/svg/signpost.svg new file mode 100644 index 0000000..965e95a --- /dev/null +++ b/the8eam/open-iconic/svg/signpost.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/sort-ascending.svg b/the8eam/open-iconic/svg/sort-ascending.svg new file mode 100644 index 0000000..bb8d497 --- /dev/null +++ b/the8eam/open-iconic/svg/sort-ascending.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/sort-descending.svg b/the8eam/open-iconic/svg/sort-descending.svg new file mode 100644 index 0000000..6af7349 --- /dev/null +++ b/the8eam/open-iconic/svg/sort-descending.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/spreadsheet.svg b/the8eam/open-iconic/svg/spreadsheet.svg new file mode 100644 index 0000000..f2f7c8f --- /dev/null +++ b/the8eam/open-iconic/svg/spreadsheet.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/star.svg b/the8eam/open-iconic/svg/star.svg new file mode 100644 index 0000000..ab716a0 --- /dev/null +++ b/the8eam/open-iconic/svg/star.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/sun.svg b/the8eam/open-iconic/svg/sun.svg new file mode 100644 index 0000000..d8245ff --- /dev/null +++ b/the8eam/open-iconic/svg/sun.svg @@ -0,0 +1,4 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/tablet.svg b/the8eam/open-iconic/svg/tablet.svg new file mode 100644 index 0000000..25d0eaa --- /dev/null +++ b/the8eam/open-iconic/svg/tablet.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/tag.svg b/the8eam/open-iconic/svg/tag.svg new file mode 100644 index 0000000..b9efc2b --- /dev/null +++ b/the8eam/open-iconic/svg/tag.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/tags.svg b/the8eam/open-iconic/svg/tags.svg new file mode 100644 index 0000000..d01264d --- /dev/null +++ b/the8eam/open-iconic/svg/tags.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/target.svg b/the8eam/open-iconic/svg/target.svg new file mode 100644 index 0000000..68daa5e --- /dev/null +++ b/the8eam/open-iconic/svg/target.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/task.svg b/the8eam/open-iconic/svg/task.svg new file mode 100644 index 0000000..786c7bf --- /dev/null +++ b/the8eam/open-iconic/svg/task.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/terminal.svg b/the8eam/open-iconic/svg/terminal.svg new file mode 100644 index 0000000..59fabc5 --- /dev/null +++ b/the8eam/open-iconic/svg/terminal.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/text.svg b/the8eam/open-iconic/svg/text.svg new file mode 100644 index 0000000..7a4ffb4 --- /dev/null +++ b/the8eam/open-iconic/svg/text.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/thumb-down.svg b/the8eam/open-iconic/svg/thumb-down.svg new file mode 100644 index 0000000..e2d2706 --- /dev/null +++ b/the8eam/open-iconic/svg/thumb-down.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/thumb-up.svg b/the8eam/open-iconic/svg/thumb-up.svg new file mode 100644 index 0000000..2c936b6 --- /dev/null +++ b/the8eam/open-iconic/svg/thumb-up.svg @@ -0,0 +1,4 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/timer.svg b/the8eam/open-iconic/svg/timer.svg new file mode 100644 index 0000000..9041be3 --- /dev/null +++ b/the8eam/open-iconic/svg/timer.svg @@ -0,0 +1,4 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/transfer.svg b/the8eam/open-iconic/svg/transfer.svg new file mode 100644 index 0000000..39ace35 --- /dev/null +++ b/the8eam/open-iconic/svg/transfer.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/trash.svg b/the8eam/open-iconic/svg/trash.svg new file mode 100644 index 0000000..83d8cdc --- /dev/null +++ b/the8eam/open-iconic/svg/trash.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/underline.svg b/the8eam/open-iconic/svg/underline.svg new file mode 100644 index 0000000..a6f8073 --- /dev/null +++ b/the8eam/open-iconic/svg/underline.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/vertical-align-bottom.svg b/the8eam/open-iconic/svg/vertical-align-bottom.svg new file mode 100644 index 0000000..1e8dd01 --- /dev/null +++ b/the8eam/open-iconic/svg/vertical-align-bottom.svg @@ -0,0 +1,4 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/vertical-align-center.svg b/the8eam/open-iconic/svg/vertical-align-center.svg new file mode 100644 index 0000000..2069a11 --- /dev/null +++ b/the8eam/open-iconic/svg/vertical-align-center.svg @@ -0,0 +1,4 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/vertical-align-top.svg b/the8eam/open-iconic/svg/vertical-align-top.svg new file mode 100644 index 0000000..d303529 --- /dev/null +++ b/the8eam/open-iconic/svg/vertical-align-top.svg @@ -0,0 +1,4 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/video.svg b/the8eam/open-iconic/svg/video.svg new file mode 100644 index 0000000..001148b --- /dev/null +++ b/the8eam/open-iconic/svg/video.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/volume-high.svg b/the8eam/open-iconic/svg/volume-high.svg new file mode 100644 index 0000000..c8a52c6 --- /dev/null +++ b/the8eam/open-iconic/svg/volume-high.svg @@ -0,0 +1,4 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/volume-low.svg b/the8eam/open-iconic/svg/volume-low.svg new file mode 100644 index 0000000..bd492db --- /dev/null +++ b/the8eam/open-iconic/svg/volume-low.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/volume-off.svg b/the8eam/open-iconic/svg/volume-off.svg new file mode 100644 index 0000000..38237b2 --- /dev/null +++ b/the8eam/open-iconic/svg/volume-off.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/warning.svg b/the8eam/open-iconic/svg/warning.svg new file mode 100644 index 0000000..e3594a8 --- /dev/null +++ b/the8eam/open-iconic/svg/warning.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/wifi.svg b/the8eam/open-iconic/svg/wifi.svg new file mode 100644 index 0000000..d5ae76b --- /dev/null +++ b/the8eam/open-iconic/svg/wifi.svg @@ -0,0 +1,4 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/wrench.svg b/the8eam/open-iconic/svg/wrench.svg new file mode 100644 index 0000000..b10e33b --- /dev/null +++ b/the8eam/open-iconic/svg/wrench.svg @@ -0,0 +1,4 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/x.svg b/the8eam/open-iconic/svg/x.svg new file mode 100644 index 0000000..fc7251c --- /dev/null +++ b/the8eam/open-iconic/svg/x.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/yen.svg b/the8eam/open-iconic/svg/yen.svg new file mode 100644 index 0000000..2a77158 --- /dev/null +++ b/the8eam/open-iconic/svg/yen.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/zoom-in.svg b/the8eam/open-iconic/svg/zoom-in.svg new file mode 100644 index 0000000..6a39b37 --- /dev/null +++ b/the8eam/open-iconic/svg/zoom-in.svg @@ -0,0 +1,4 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/svg/zoom-out.svg b/the8eam/open-iconic/svg/zoom-out.svg new file mode 100644 index 0000000..9898a86 --- /dev/null +++ b/the8eam/open-iconic/svg/zoom-out.svg @@ -0,0 +1,4 @@ + + + \ No newline at end of file diff --git a/the8eam/open-iconic/webp/account-login-2x.webp b/the8eam/open-iconic/webp/account-login-2x.webp new file mode 100644 index 0000000..1fc520b Binary files /dev/null and b/the8eam/open-iconic/webp/account-login-2x.webp differ diff --git a/the8eam/open-iconic/webp/account-login-3x.webp b/the8eam/open-iconic/webp/account-login-3x.webp new file mode 100644 index 0000000..97693c7 Binary files /dev/null and b/the8eam/open-iconic/webp/account-login-3x.webp differ diff --git a/the8eam/open-iconic/webp/account-login-4x.webp b/the8eam/open-iconic/webp/account-login-4x.webp new file mode 100644 index 0000000..ed430e1 Binary files /dev/null and b/the8eam/open-iconic/webp/account-login-4x.webp differ diff --git a/the8eam/open-iconic/webp/account-login-6x.webp b/the8eam/open-iconic/webp/account-login-6x.webp new file mode 100644 index 0000000..2ec8796 Binary files /dev/null and b/the8eam/open-iconic/webp/account-login-6x.webp differ diff --git a/the8eam/open-iconic/webp/account-login-8x.webp b/the8eam/open-iconic/webp/account-login-8x.webp new file mode 100644 index 0000000..acdfca8 Binary files /dev/null and b/the8eam/open-iconic/webp/account-login-8x.webp differ diff --git a/the8eam/open-iconic/webp/account-login.webp b/the8eam/open-iconic/webp/account-login.webp new file mode 100644 index 0000000..22c39c7 Binary files /dev/null and b/the8eam/open-iconic/webp/account-login.webp differ diff --git a/the8eam/open-iconic/webp/account-logout-2x.webp b/the8eam/open-iconic/webp/account-logout-2x.webp new file mode 100644 index 0000000..f5e6c9b Binary files /dev/null and b/the8eam/open-iconic/webp/account-logout-2x.webp differ diff --git a/the8eam/open-iconic/webp/account-logout-3x.webp b/the8eam/open-iconic/webp/account-logout-3x.webp new file mode 100644 index 0000000..4d5a0e9 Binary files /dev/null and b/the8eam/open-iconic/webp/account-logout-3x.webp differ diff --git a/the8eam/open-iconic/webp/account-logout-4x.webp b/the8eam/open-iconic/webp/account-logout-4x.webp new file mode 100644 index 0000000..6ed5793 Binary files /dev/null and b/the8eam/open-iconic/webp/account-logout-4x.webp differ diff --git a/the8eam/open-iconic/webp/account-logout-6x.webp b/the8eam/open-iconic/webp/account-logout-6x.webp new file mode 100644 index 0000000..b1b2229 Binary files /dev/null and b/the8eam/open-iconic/webp/account-logout-6x.webp differ diff --git a/the8eam/open-iconic/webp/account-logout-8x.webp b/the8eam/open-iconic/webp/account-logout-8x.webp new file mode 100644 index 0000000..9df6a51 Binary files /dev/null and b/the8eam/open-iconic/webp/account-logout-8x.webp differ diff --git a/the8eam/open-iconic/webp/account-logout.webp b/the8eam/open-iconic/webp/account-logout.webp new file mode 100644 index 0000000..bb19373 Binary files /dev/null and b/the8eam/open-iconic/webp/account-logout.webp differ diff --git a/the8eam/open-iconic/webp/action-redo-2x.webp b/the8eam/open-iconic/webp/action-redo-2x.webp new file mode 100644 index 0000000..850cd22 Binary files /dev/null and b/the8eam/open-iconic/webp/action-redo-2x.webp differ diff --git a/the8eam/open-iconic/webp/action-redo-3x.webp b/the8eam/open-iconic/webp/action-redo-3x.webp new file mode 100644 index 0000000..b347391 Binary files /dev/null and b/the8eam/open-iconic/webp/action-redo-3x.webp differ diff --git a/the8eam/open-iconic/webp/action-redo-4x.webp b/the8eam/open-iconic/webp/action-redo-4x.webp new file mode 100644 index 0000000..64d1eb7 Binary files /dev/null and b/the8eam/open-iconic/webp/action-redo-4x.webp differ diff --git a/the8eam/open-iconic/webp/action-redo-6x.webp b/the8eam/open-iconic/webp/action-redo-6x.webp new file mode 100644 index 0000000..622aeab Binary files /dev/null and b/the8eam/open-iconic/webp/action-redo-6x.webp differ diff --git a/the8eam/open-iconic/webp/action-redo-8x.webp b/the8eam/open-iconic/webp/action-redo-8x.webp new file mode 100644 index 0000000..9b7e0b2 Binary files /dev/null and b/the8eam/open-iconic/webp/action-redo-8x.webp differ diff --git a/the8eam/open-iconic/webp/action-redo.webp b/the8eam/open-iconic/webp/action-redo.webp new file mode 100644 index 0000000..6d915d5 Binary files /dev/null and b/the8eam/open-iconic/webp/action-redo.webp differ diff --git a/the8eam/open-iconic/webp/action-undo-2x.webp b/the8eam/open-iconic/webp/action-undo-2x.webp new file mode 100644 index 0000000..22295ae Binary files /dev/null and b/the8eam/open-iconic/webp/action-undo-2x.webp differ diff --git a/the8eam/open-iconic/webp/action-undo-3x.webp b/the8eam/open-iconic/webp/action-undo-3x.webp new file mode 100644 index 0000000..04dbebb Binary files /dev/null and b/the8eam/open-iconic/webp/action-undo-3x.webp differ diff --git a/the8eam/open-iconic/webp/action-undo-4x.webp b/the8eam/open-iconic/webp/action-undo-4x.webp new file mode 100644 index 0000000..9f3c125 Binary files /dev/null and b/the8eam/open-iconic/webp/action-undo-4x.webp differ diff --git a/the8eam/open-iconic/webp/action-undo-6x.webp b/the8eam/open-iconic/webp/action-undo-6x.webp new file mode 100644 index 0000000..816db0c Binary files /dev/null and b/the8eam/open-iconic/webp/action-undo-6x.webp differ diff --git a/the8eam/open-iconic/webp/action-undo-8x.webp b/the8eam/open-iconic/webp/action-undo-8x.webp new file mode 100644 index 0000000..3640e1e Binary files /dev/null and b/the8eam/open-iconic/webp/action-undo-8x.webp differ diff --git a/the8eam/open-iconic/webp/action-undo.webp b/the8eam/open-iconic/webp/action-undo.webp new file mode 100644 index 0000000..06b314e Binary files /dev/null and b/the8eam/open-iconic/webp/action-undo.webp differ diff --git a/the8eam/open-iconic/webp/align-center-2x.webp b/the8eam/open-iconic/webp/align-center-2x.webp new file mode 100644 index 0000000..e41a425 Binary files /dev/null and b/the8eam/open-iconic/webp/align-center-2x.webp differ diff --git a/the8eam/open-iconic/webp/align-center-3x.webp b/the8eam/open-iconic/webp/align-center-3x.webp new file mode 100644 index 0000000..b85809a Binary files /dev/null and b/the8eam/open-iconic/webp/align-center-3x.webp differ diff --git a/the8eam/open-iconic/webp/align-center-4x.webp b/the8eam/open-iconic/webp/align-center-4x.webp new file mode 100644 index 0000000..98b5377 Binary files /dev/null and b/the8eam/open-iconic/webp/align-center-4x.webp differ diff --git a/the8eam/open-iconic/webp/align-center-6x.webp b/the8eam/open-iconic/webp/align-center-6x.webp new file mode 100644 index 0000000..3b58978 Binary files /dev/null and b/the8eam/open-iconic/webp/align-center-6x.webp differ diff --git a/the8eam/open-iconic/webp/align-center-8x.webp b/the8eam/open-iconic/webp/align-center-8x.webp new file mode 100644 index 0000000..e2a153a Binary files /dev/null and b/the8eam/open-iconic/webp/align-center-8x.webp differ diff --git a/the8eam/open-iconic/webp/align-center.webp b/the8eam/open-iconic/webp/align-center.webp new file mode 100644 index 0000000..74d3b87 Binary files /dev/null and b/the8eam/open-iconic/webp/align-center.webp differ diff --git a/the8eam/open-iconic/webp/align-left-2x.webp b/the8eam/open-iconic/webp/align-left-2x.webp new file mode 100644 index 0000000..f83591a Binary files /dev/null and b/the8eam/open-iconic/webp/align-left-2x.webp differ diff --git a/the8eam/open-iconic/webp/align-left-3x.webp b/the8eam/open-iconic/webp/align-left-3x.webp new file mode 100644 index 0000000..6e943ed Binary files /dev/null and b/the8eam/open-iconic/webp/align-left-3x.webp differ diff --git a/the8eam/open-iconic/webp/align-left-4x.webp b/the8eam/open-iconic/webp/align-left-4x.webp new file mode 100644 index 0000000..3f8541e Binary files /dev/null and b/the8eam/open-iconic/webp/align-left-4x.webp differ diff --git a/the8eam/open-iconic/webp/align-left-6x.webp b/the8eam/open-iconic/webp/align-left-6x.webp new file mode 100644 index 0000000..cb5dee3 Binary files /dev/null and b/the8eam/open-iconic/webp/align-left-6x.webp differ diff --git a/the8eam/open-iconic/webp/align-left-8x.webp b/the8eam/open-iconic/webp/align-left-8x.webp new file mode 100644 index 0000000..1c70f94 Binary files /dev/null and b/the8eam/open-iconic/webp/align-left-8x.webp differ diff --git a/the8eam/open-iconic/webp/align-left.webp b/the8eam/open-iconic/webp/align-left.webp new file mode 100644 index 0000000..a0d8228 Binary files /dev/null and b/the8eam/open-iconic/webp/align-left.webp differ diff --git a/the8eam/open-iconic/webp/align-right-2x.webp b/the8eam/open-iconic/webp/align-right-2x.webp new file mode 100644 index 0000000..73ace6b Binary files /dev/null and b/the8eam/open-iconic/webp/align-right-2x.webp differ diff --git a/the8eam/open-iconic/webp/align-right-3x.webp b/the8eam/open-iconic/webp/align-right-3x.webp new file mode 100644 index 0000000..8fe0c2d Binary files /dev/null and b/the8eam/open-iconic/webp/align-right-3x.webp differ diff --git a/the8eam/open-iconic/webp/align-right-4x.webp b/the8eam/open-iconic/webp/align-right-4x.webp new file mode 100644 index 0000000..11553b7 Binary files /dev/null and b/the8eam/open-iconic/webp/align-right-4x.webp differ diff --git a/the8eam/open-iconic/webp/align-right-6x.webp b/the8eam/open-iconic/webp/align-right-6x.webp new file mode 100644 index 0000000..8408b55 Binary files /dev/null and b/the8eam/open-iconic/webp/align-right-6x.webp differ diff --git a/the8eam/open-iconic/webp/align-right-8x.webp b/the8eam/open-iconic/webp/align-right-8x.webp new file mode 100644 index 0000000..051140a Binary files /dev/null and b/the8eam/open-iconic/webp/align-right-8x.webp differ diff --git a/the8eam/open-iconic/webp/align-right.webp b/the8eam/open-iconic/webp/align-right.webp new file mode 100644 index 0000000..d47e89f Binary files /dev/null and b/the8eam/open-iconic/webp/align-right.webp differ diff --git a/the8eam/open-iconic/webp/aperture-2x.webp b/the8eam/open-iconic/webp/aperture-2x.webp new file mode 100644 index 0000000..2abaa60 Binary files /dev/null and b/the8eam/open-iconic/webp/aperture-2x.webp differ diff --git a/the8eam/open-iconic/webp/aperture-3x.webp b/the8eam/open-iconic/webp/aperture-3x.webp new file mode 100644 index 0000000..6c46daf Binary files /dev/null and b/the8eam/open-iconic/webp/aperture-3x.webp differ diff --git a/the8eam/open-iconic/webp/aperture-4x.webp b/the8eam/open-iconic/webp/aperture-4x.webp new file mode 100644 index 0000000..7605bed Binary files /dev/null and b/the8eam/open-iconic/webp/aperture-4x.webp differ diff --git a/the8eam/open-iconic/webp/aperture-6x.webp b/the8eam/open-iconic/webp/aperture-6x.webp new file mode 100644 index 0000000..6613b0b Binary files /dev/null and b/the8eam/open-iconic/webp/aperture-6x.webp differ diff --git a/the8eam/open-iconic/webp/aperture-8x.webp b/the8eam/open-iconic/webp/aperture-8x.webp new file mode 100644 index 0000000..4553389 Binary files /dev/null and b/the8eam/open-iconic/webp/aperture-8x.webp differ diff --git a/the8eam/open-iconic/webp/aperture.webp b/the8eam/open-iconic/webp/aperture.webp new file mode 100644 index 0000000..aa1a212 Binary files /dev/null and b/the8eam/open-iconic/webp/aperture.webp differ diff --git a/the8eam/open-iconic/webp/arrow-bottom-2x.webp b/the8eam/open-iconic/webp/arrow-bottom-2x.webp new file mode 100644 index 0000000..b1a7a8e Binary files /dev/null and b/the8eam/open-iconic/webp/arrow-bottom-2x.webp differ diff --git a/the8eam/open-iconic/webp/arrow-bottom-3x.webp b/the8eam/open-iconic/webp/arrow-bottom-3x.webp new file mode 100644 index 0000000..f836804 Binary files /dev/null and b/the8eam/open-iconic/webp/arrow-bottom-3x.webp differ diff --git a/the8eam/open-iconic/webp/arrow-bottom-4x.webp b/the8eam/open-iconic/webp/arrow-bottom-4x.webp new file mode 100644 index 0000000..74d5730 Binary files /dev/null and b/the8eam/open-iconic/webp/arrow-bottom-4x.webp differ diff --git a/the8eam/open-iconic/webp/arrow-bottom-6x.webp b/the8eam/open-iconic/webp/arrow-bottom-6x.webp new file mode 100644 index 0000000..3fe07aa Binary files /dev/null and b/the8eam/open-iconic/webp/arrow-bottom-6x.webp differ diff --git a/the8eam/open-iconic/webp/arrow-bottom-8x.webp b/the8eam/open-iconic/webp/arrow-bottom-8x.webp new file mode 100644 index 0000000..6cc20a4 Binary files /dev/null and b/the8eam/open-iconic/webp/arrow-bottom-8x.webp differ diff --git a/the8eam/open-iconic/webp/arrow-bottom.webp b/the8eam/open-iconic/webp/arrow-bottom.webp new file mode 100644 index 0000000..a30a8d6 Binary files /dev/null and b/the8eam/open-iconic/webp/arrow-bottom.webp differ diff --git a/the8eam/open-iconic/webp/arrow-circle-bottom-2x.webp b/the8eam/open-iconic/webp/arrow-circle-bottom-2x.webp new file mode 100644 index 0000000..6bbc6d1 Binary files /dev/null and b/the8eam/open-iconic/webp/arrow-circle-bottom-2x.webp differ diff --git a/the8eam/open-iconic/webp/arrow-circle-bottom-3x.webp b/the8eam/open-iconic/webp/arrow-circle-bottom-3x.webp new file mode 100644 index 0000000..2b62818 Binary files /dev/null and b/the8eam/open-iconic/webp/arrow-circle-bottom-3x.webp differ diff --git a/the8eam/open-iconic/webp/arrow-circle-bottom-4x.webp b/the8eam/open-iconic/webp/arrow-circle-bottom-4x.webp new file mode 100644 index 0000000..5af378b Binary files /dev/null and b/the8eam/open-iconic/webp/arrow-circle-bottom-4x.webp differ diff --git a/the8eam/open-iconic/webp/arrow-circle-bottom-6x.webp b/the8eam/open-iconic/webp/arrow-circle-bottom-6x.webp new file mode 100644 index 0000000..6037e27 Binary files /dev/null and b/the8eam/open-iconic/webp/arrow-circle-bottom-6x.webp differ diff --git a/the8eam/open-iconic/webp/arrow-circle-bottom-8x.webp b/the8eam/open-iconic/webp/arrow-circle-bottom-8x.webp new file mode 100644 index 0000000..74fc2d6 Binary files /dev/null and b/the8eam/open-iconic/webp/arrow-circle-bottom-8x.webp differ diff --git a/the8eam/open-iconic/webp/arrow-circle-bottom.webp b/the8eam/open-iconic/webp/arrow-circle-bottom.webp new file mode 100644 index 0000000..a318b15 Binary files /dev/null and b/the8eam/open-iconic/webp/arrow-circle-bottom.webp differ diff --git a/the8eam/open-iconic/webp/arrow-circle-left-2x.webp b/the8eam/open-iconic/webp/arrow-circle-left-2x.webp new file mode 100644 index 0000000..9333628 Binary files /dev/null and b/the8eam/open-iconic/webp/arrow-circle-left-2x.webp differ diff --git a/the8eam/open-iconic/webp/arrow-circle-left-3x.webp b/the8eam/open-iconic/webp/arrow-circle-left-3x.webp new file mode 100644 index 0000000..987e2a2 Binary files /dev/null and b/the8eam/open-iconic/webp/arrow-circle-left-3x.webp differ diff --git a/the8eam/open-iconic/webp/arrow-circle-left-4x.webp b/the8eam/open-iconic/webp/arrow-circle-left-4x.webp new file mode 100644 index 0000000..b6a37ed Binary files /dev/null and b/the8eam/open-iconic/webp/arrow-circle-left-4x.webp differ diff --git a/the8eam/open-iconic/webp/arrow-circle-left-6x.webp b/the8eam/open-iconic/webp/arrow-circle-left-6x.webp new file mode 100644 index 0000000..37f4ee1 Binary files /dev/null and b/the8eam/open-iconic/webp/arrow-circle-left-6x.webp differ diff --git a/the8eam/open-iconic/webp/arrow-circle-left-8x.webp b/the8eam/open-iconic/webp/arrow-circle-left-8x.webp new file mode 100644 index 0000000..8da0a8b Binary files /dev/null and b/the8eam/open-iconic/webp/arrow-circle-left-8x.webp differ diff --git a/the8eam/open-iconic/webp/arrow-circle-left.webp b/the8eam/open-iconic/webp/arrow-circle-left.webp new file mode 100644 index 0000000..9205767 Binary files /dev/null and b/the8eam/open-iconic/webp/arrow-circle-left.webp differ diff --git a/the8eam/open-iconic/webp/arrow-circle-right-2x.webp b/the8eam/open-iconic/webp/arrow-circle-right-2x.webp new file mode 100644 index 0000000..7d5e2a3 Binary files /dev/null and b/the8eam/open-iconic/webp/arrow-circle-right-2x.webp differ diff --git a/the8eam/open-iconic/webp/arrow-circle-right-3x.webp b/the8eam/open-iconic/webp/arrow-circle-right-3x.webp new file mode 100644 index 0000000..af60c65 Binary files /dev/null and b/the8eam/open-iconic/webp/arrow-circle-right-3x.webp differ diff --git a/the8eam/open-iconic/webp/arrow-circle-right-4x.webp b/the8eam/open-iconic/webp/arrow-circle-right-4x.webp new file mode 100644 index 0000000..aadd027 Binary files /dev/null and b/the8eam/open-iconic/webp/arrow-circle-right-4x.webp differ diff --git a/the8eam/open-iconic/webp/arrow-circle-right-6x.webp b/the8eam/open-iconic/webp/arrow-circle-right-6x.webp new file mode 100644 index 0000000..c18f531 Binary files /dev/null and b/the8eam/open-iconic/webp/arrow-circle-right-6x.webp differ diff --git a/the8eam/open-iconic/webp/arrow-circle-right-8x.webp b/the8eam/open-iconic/webp/arrow-circle-right-8x.webp new file mode 100644 index 0000000..440ff67 Binary files /dev/null and b/the8eam/open-iconic/webp/arrow-circle-right-8x.webp differ diff --git a/the8eam/open-iconic/webp/arrow-circle-right.webp b/the8eam/open-iconic/webp/arrow-circle-right.webp new file mode 100644 index 0000000..21e206d Binary files /dev/null and b/the8eam/open-iconic/webp/arrow-circle-right.webp differ diff --git a/the8eam/open-iconic/webp/arrow-circle-top-2x.webp b/the8eam/open-iconic/webp/arrow-circle-top-2x.webp new file mode 100644 index 0000000..d424bd5 Binary files /dev/null and b/the8eam/open-iconic/webp/arrow-circle-top-2x.webp differ diff --git a/the8eam/open-iconic/webp/arrow-circle-top-3x.webp b/the8eam/open-iconic/webp/arrow-circle-top-3x.webp new file mode 100644 index 0000000..eb841ca Binary files /dev/null and b/the8eam/open-iconic/webp/arrow-circle-top-3x.webp differ diff --git a/the8eam/open-iconic/webp/arrow-circle-top-4x.webp b/the8eam/open-iconic/webp/arrow-circle-top-4x.webp new file mode 100644 index 0000000..5c2e0d1 Binary files /dev/null and b/the8eam/open-iconic/webp/arrow-circle-top-4x.webp differ diff --git a/the8eam/open-iconic/webp/arrow-circle-top-6x.webp b/the8eam/open-iconic/webp/arrow-circle-top-6x.webp new file mode 100644 index 0000000..8898d9d Binary files /dev/null and b/the8eam/open-iconic/webp/arrow-circle-top-6x.webp differ diff --git a/the8eam/open-iconic/webp/arrow-circle-top-8x.webp b/the8eam/open-iconic/webp/arrow-circle-top-8x.webp new file mode 100644 index 0000000..8da7d92 Binary files /dev/null and b/the8eam/open-iconic/webp/arrow-circle-top-8x.webp differ diff --git a/the8eam/open-iconic/webp/arrow-circle-top.webp b/the8eam/open-iconic/webp/arrow-circle-top.webp new file mode 100644 index 0000000..26aabac Binary files /dev/null and b/the8eam/open-iconic/webp/arrow-circle-top.webp differ diff --git a/the8eam/open-iconic/webp/arrow-left-2x.webp b/the8eam/open-iconic/webp/arrow-left-2x.webp new file mode 100644 index 0000000..4b58205 Binary files /dev/null and b/the8eam/open-iconic/webp/arrow-left-2x.webp differ diff --git a/the8eam/open-iconic/webp/arrow-left-3x.webp b/the8eam/open-iconic/webp/arrow-left-3x.webp new file mode 100644 index 0000000..eaa3cc4 Binary files /dev/null and b/the8eam/open-iconic/webp/arrow-left-3x.webp differ diff --git a/the8eam/open-iconic/webp/arrow-left-4x.webp b/the8eam/open-iconic/webp/arrow-left-4x.webp new file mode 100644 index 0000000..70f0cb1 Binary files /dev/null and b/the8eam/open-iconic/webp/arrow-left-4x.webp differ diff --git a/the8eam/open-iconic/webp/arrow-left-6x.webp b/the8eam/open-iconic/webp/arrow-left-6x.webp new file mode 100644 index 0000000..0ebad68 Binary files /dev/null and b/the8eam/open-iconic/webp/arrow-left-6x.webp differ diff --git a/the8eam/open-iconic/webp/arrow-left-8x.webp b/the8eam/open-iconic/webp/arrow-left-8x.webp new file mode 100644 index 0000000..998c1b9 Binary files /dev/null and b/the8eam/open-iconic/webp/arrow-left-8x.webp differ diff --git a/the8eam/open-iconic/webp/arrow-left.webp b/the8eam/open-iconic/webp/arrow-left.webp new file mode 100644 index 0000000..7dd923b Binary files /dev/null and b/the8eam/open-iconic/webp/arrow-left.webp differ diff --git a/the8eam/open-iconic/webp/arrow-right-2x.webp b/the8eam/open-iconic/webp/arrow-right-2x.webp new file mode 100644 index 0000000..0a7fad1 Binary files /dev/null and b/the8eam/open-iconic/webp/arrow-right-2x.webp differ diff --git a/the8eam/open-iconic/webp/arrow-right-3x.webp b/the8eam/open-iconic/webp/arrow-right-3x.webp new file mode 100644 index 0000000..2cfa794 Binary files /dev/null and b/the8eam/open-iconic/webp/arrow-right-3x.webp differ diff --git a/the8eam/open-iconic/webp/arrow-right-4x.webp b/the8eam/open-iconic/webp/arrow-right-4x.webp new file mode 100644 index 0000000..aacab21 Binary files /dev/null and b/the8eam/open-iconic/webp/arrow-right-4x.webp differ diff --git a/the8eam/open-iconic/webp/arrow-right-6x.webp b/the8eam/open-iconic/webp/arrow-right-6x.webp new file mode 100644 index 0000000..60c0597 Binary files /dev/null and b/the8eam/open-iconic/webp/arrow-right-6x.webp differ diff --git a/the8eam/open-iconic/webp/arrow-right-8x.webp b/the8eam/open-iconic/webp/arrow-right-8x.webp new file mode 100644 index 0000000..612da43 Binary files /dev/null and b/the8eam/open-iconic/webp/arrow-right-8x.webp differ diff --git a/the8eam/open-iconic/webp/arrow-right.webp b/the8eam/open-iconic/webp/arrow-right.webp new file mode 100644 index 0000000..1b8d7eb Binary files /dev/null and b/the8eam/open-iconic/webp/arrow-right.webp differ diff --git a/the8eam/open-iconic/webp/arrow-thick-bottom-2x.webp b/the8eam/open-iconic/webp/arrow-thick-bottom-2x.webp new file mode 100644 index 0000000..05d268f Binary files /dev/null and b/the8eam/open-iconic/webp/arrow-thick-bottom-2x.webp differ diff --git a/the8eam/open-iconic/webp/arrow-thick-bottom-3x.webp b/the8eam/open-iconic/webp/arrow-thick-bottom-3x.webp new file mode 100644 index 0000000..68ddf9f Binary files /dev/null and b/the8eam/open-iconic/webp/arrow-thick-bottom-3x.webp differ diff --git a/the8eam/open-iconic/webp/arrow-thick-bottom-4x.webp b/the8eam/open-iconic/webp/arrow-thick-bottom-4x.webp new file mode 100644 index 0000000..82ce3eb Binary files /dev/null and b/the8eam/open-iconic/webp/arrow-thick-bottom-4x.webp differ diff --git a/the8eam/open-iconic/webp/arrow-thick-bottom-6x.webp b/the8eam/open-iconic/webp/arrow-thick-bottom-6x.webp new file mode 100644 index 0000000..12130d3 Binary files /dev/null and b/the8eam/open-iconic/webp/arrow-thick-bottom-6x.webp differ diff --git a/the8eam/open-iconic/webp/arrow-thick-bottom-8x.webp b/the8eam/open-iconic/webp/arrow-thick-bottom-8x.webp new file mode 100644 index 0000000..a0c2e1f Binary files /dev/null and b/the8eam/open-iconic/webp/arrow-thick-bottom-8x.webp differ diff --git a/the8eam/open-iconic/webp/arrow-thick-bottom.webp b/the8eam/open-iconic/webp/arrow-thick-bottom.webp new file mode 100644 index 0000000..fd55494 Binary files /dev/null and b/the8eam/open-iconic/webp/arrow-thick-bottom.webp differ diff --git a/the8eam/open-iconic/webp/arrow-thick-left-2x.webp b/the8eam/open-iconic/webp/arrow-thick-left-2x.webp new file mode 100644 index 0000000..7ca0d3f Binary files /dev/null and b/the8eam/open-iconic/webp/arrow-thick-left-2x.webp differ diff --git a/the8eam/open-iconic/webp/arrow-thick-left-3x.webp b/the8eam/open-iconic/webp/arrow-thick-left-3x.webp new file mode 100644 index 0000000..041be8a Binary files /dev/null and b/the8eam/open-iconic/webp/arrow-thick-left-3x.webp differ diff --git a/the8eam/open-iconic/webp/arrow-thick-left-4x.webp b/the8eam/open-iconic/webp/arrow-thick-left-4x.webp new file mode 100644 index 0000000..b868722 Binary files /dev/null and b/the8eam/open-iconic/webp/arrow-thick-left-4x.webp differ diff --git a/the8eam/open-iconic/webp/arrow-thick-left-6x.webp b/the8eam/open-iconic/webp/arrow-thick-left-6x.webp new file mode 100644 index 0000000..21b42c0 Binary files /dev/null and b/the8eam/open-iconic/webp/arrow-thick-left-6x.webp differ diff --git a/the8eam/open-iconic/webp/arrow-thick-left-8x.webp b/the8eam/open-iconic/webp/arrow-thick-left-8x.webp new file mode 100644 index 0000000..58a32a9 Binary files /dev/null and b/the8eam/open-iconic/webp/arrow-thick-left-8x.webp differ diff --git a/the8eam/open-iconic/webp/arrow-thick-left.webp b/the8eam/open-iconic/webp/arrow-thick-left.webp new file mode 100644 index 0000000..5a82dd8 Binary files /dev/null and b/the8eam/open-iconic/webp/arrow-thick-left.webp differ diff --git a/the8eam/open-iconic/webp/arrow-thick-right-2x.webp b/the8eam/open-iconic/webp/arrow-thick-right-2x.webp new file mode 100644 index 0000000..3f32427 Binary files /dev/null and b/the8eam/open-iconic/webp/arrow-thick-right-2x.webp differ diff --git a/the8eam/open-iconic/webp/arrow-thick-right-3x.webp b/the8eam/open-iconic/webp/arrow-thick-right-3x.webp new file mode 100644 index 0000000..ca004ed Binary files /dev/null and b/the8eam/open-iconic/webp/arrow-thick-right-3x.webp differ diff --git a/the8eam/open-iconic/webp/arrow-thick-right-4x.webp b/the8eam/open-iconic/webp/arrow-thick-right-4x.webp new file mode 100644 index 0000000..35e8fc8 Binary files /dev/null and b/the8eam/open-iconic/webp/arrow-thick-right-4x.webp differ diff --git a/the8eam/open-iconic/webp/arrow-thick-right-6x.webp b/the8eam/open-iconic/webp/arrow-thick-right-6x.webp new file mode 100644 index 0000000..ccf9536 Binary files /dev/null and b/the8eam/open-iconic/webp/arrow-thick-right-6x.webp differ diff --git a/the8eam/open-iconic/webp/arrow-thick-right-8x.webp b/the8eam/open-iconic/webp/arrow-thick-right-8x.webp new file mode 100644 index 0000000..ee8266f Binary files /dev/null and b/the8eam/open-iconic/webp/arrow-thick-right-8x.webp differ diff --git a/the8eam/open-iconic/webp/arrow-thick-right.webp b/the8eam/open-iconic/webp/arrow-thick-right.webp new file mode 100644 index 0000000..0228618 Binary files /dev/null and b/the8eam/open-iconic/webp/arrow-thick-right.webp differ diff --git a/the8eam/open-iconic/webp/arrow-thick-top-2x.webp b/the8eam/open-iconic/webp/arrow-thick-top-2x.webp new file mode 100644 index 0000000..cb7fc89 Binary files /dev/null and b/the8eam/open-iconic/webp/arrow-thick-top-2x.webp differ diff --git a/the8eam/open-iconic/webp/arrow-thick-top-3x.webp b/the8eam/open-iconic/webp/arrow-thick-top-3x.webp new file mode 100644 index 0000000..ae381e3 Binary files /dev/null and b/the8eam/open-iconic/webp/arrow-thick-top-3x.webp differ diff --git a/the8eam/open-iconic/webp/arrow-thick-top-4x.webp b/the8eam/open-iconic/webp/arrow-thick-top-4x.webp new file mode 100644 index 0000000..6f48976 Binary files /dev/null and b/the8eam/open-iconic/webp/arrow-thick-top-4x.webp differ diff --git a/the8eam/open-iconic/webp/arrow-thick-top-6x.webp b/the8eam/open-iconic/webp/arrow-thick-top-6x.webp new file mode 100644 index 0000000..851b51c Binary files /dev/null and b/the8eam/open-iconic/webp/arrow-thick-top-6x.webp differ diff --git a/the8eam/open-iconic/webp/arrow-thick-top-8x.webp b/the8eam/open-iconic/webp/arrow-thick-top-8x.webp new file mode 100644 index 0000000..2eb1f66 Binary files /dev/null and b/the8eam/open-iconic/webp/arrow-thick-top-8x.webp differ diff --git a/the8eam/open-iconic/webp/arrow-thick-top.webp b/the8eam/open-iconic/webp/arrow-thick-top.webp new file mode 100644 index 0000000..06304a4 Binary files /dev/null and b/the8eam/open-iconic/webp/arrow-thick-top.webp differ diff --git a/the8eam/open-iconic/webp/arrow-top-2x.webp b/the8eam/open-iconic/webp/arrow-top-2x.webp new file mode 100644 index 0000000..ceb4195 Binary files /dev/null and b/the8eam/open-iconic/webp/arrow-top-2x.webp differ diff --git a/the8eam/open-iconic/webp/arrow-top-3x.webp b/the8eam/open-iconic/webp/arrow-top-3x.webp new file mode 100644 index 0000000..1f6bd19 Binary files /dev/null and b/the8eam/open-iconic/webp/arrow-top-3x.webp differ diff --git a/the8eam/open-iconic/webp/arrow-top-4x.webp b/the8eam/open-iconic/webp/arrow-top-4x.webp new file mode 100644 index 0000000..893abec Binary files /dev/null and b/the8eam/open-iconic/webp/arrow-top-4x.webp differ diff --git a/the8eam/open-iconic/webp/arrow-top-6x.webp b/the8eam/open-iconic/webp/arrow-top-6x.webp new file mode 100644 index 0000000..15cc683 Binary files /dev/null and b/the8eam/open-iconic/webp/arrow-top-6x.webp differ diff --git a/the8eam/open-iconic/webp/arrow-top-8x.webp b/the8eam/open-iconic/webp/arrow-top-8x.webp new file mode 100644 index 0000000..26f0a12 Binary files /dev/null and b/the8eam/open-iconic/webp/arrow-top-8x.webp differ diff --git a/the8eam/open-iconic/webp/arrow-top.webp b/the8eam/open-iconic/webp/arrow-top.webp new file mode 100644 index 0000000..d4b1ead Binary files /dev/null and b/the8eam/open-iconic/webp/arrow-top.webp differ diff --git a/the8eam/open-iconic/webp/audio-2x.webp b/the8eam/open-iconic/webp/audio-2x.webp new file mode 100644 index 0000000..dcfa7fd Binary files /dev/null and b/the8eam/open-iconic/webp/audio-2x.webp differ diff --git a/the8eam/open-iconic/webp/audio-3x.webp b/the8eam/open-iconic/webp/audio-3x.webp new file mode 100644 index 0000000..ebdbddf Binary files /dev/null and b/the8eam/open-iconic/webp/audio-3x.webp differ diff --git a/the8eam/open-iconic/webp/audio-4x.webp b/the8eam/open-iconic/webp/audio-4x.webp new file mode 100644 index 0000000..7f27743 Binary files /dev/null and b/the8eam/open-iconic/webp/audio-4x.webp differ diff --git a/the8eam/open-iconic/webp/audio-6x.webp b/the8eam/open-iconic/webp/audio-6x.webp new file mode 100644 index 0000000..24ac1e4 Binary files /dev/null and b/the8eam/open-iconic/webp/audio-6x.webp differ diff --git a/the8eam/open-iconic/webp/audio-8x.webp b/the8eam/open-iconic/webp/audio-8x.webp new file mode 100644 index 0000000..b442695 Binary files /dev/null and b/the8eam/open-iconic/webp/audio-8x.webp differ diff --git a/the8eam/open-iconic/webp/audio-spectrum-2x.webp b/the8eam/open-iconic/webp/audio-spectrum-2x.webp new file mode 100644 index 0000000..ccc26a3 Binary files /dev/null and b/the8eam/open-iconic/webp/audio-spectrum-2x.webp differ diff --git a/the8eam/open-iconic/webp/audio-spectrum-3x.webp b/the8eam/open-iconic/webp/audio-spectrum-3x.webp new file mode 100644 index 0000000..1a2a060 Binary files /dev/null and b/the8eam/open-iconic/webp/audio-spectrum-3x.webp differ diff --git a/the8eam/open-iconic/webp/audio-spectrum-4x.webp b/the8eam/open-iconic/webp/audio-spectrum-4x.webp new file mode 100644 index 0000000..e27a762 Binary files /dev/null and b/the8eam/open-iconic/webp/audio-spectrum-4x.webp differ diff --git a/the8eam/open-iconic/webp/audio-spectrum-6x.webp b/the8eam/open-iconic/webp/audio-spectrum-6x.webp new file mode 100644 index 0000000..8407274 Binary files /dev/null and b/the8eam/open-iconic/webp/audio-spectrum-6x.webp differ diff --git a/the8eam/open-iconic/webp/audio-spectrum-8x.webp b/the8eam/open-iconic/webp/audio-spectrum-8x.webp new file mode 100644 index 0000000..0edbf6b Binary files /dev/null and b/the8eam/open-iconic/webp/audio-spectrum-8x.webp differ diff --git a/the8eam/open-iconic/webp/audio-spectrum.webp b/the8eam/open-iconic/webp/audio-spectrum.webp new file mode 100644 index 0000000..048eff1 Binary files /dev/null and b/the8eam/open-iconic/webp/audio-spectrum.webp differ diff --git a/the8eam/open-iconic/webp/audio.webp b/the8eam/open-iconic/webp/audio.webp new file mode 100644 index 0000000..5201f07 Binary files /dev/null and b/the8eam/open-iconic/webp/audio.webp differ diff --git a/the8eam/open-iconic/webp/badge-2x.webp b/the8eam/open-iconic/webp/badge-2x.webp new file mode 100644 index 0000000..467e4d2 Binary files /dev/null and b/the8eam/open-iconic/webp/badge-2x.webp differ diff --git a/the8eam/open-iconic/webp/badge-3x.webp b/the8eam/open-iconic/webp/badge-3x.webp new file mode 100644 index 0000000..86ab709 Binary files /dev/null and b/the8eam/open-iconic/webp/badge-3x.webp differ diff --git a/the8eam/open-iconic/webp/badge-4x.webp b/the8eam/open-iconic/webp/badge-4x.webp new file mode 100644 index 0000000..796dad8 Binary files /dev/null and b/the8eam/open-iconic/webp/badge-4x.webp differ diff --git a/the8eam/open-iconic/webp/badge-6x.webp b/the8eam/open-iconic/webp/badge-6x.webp new file mode 100644 index 0000000..bb50baf Binary files /dev/null and b/the8eam/open-iconic/webp/badge-6x.webp differ diff --git a/the8eam/open-iconic/webp/badge-8x.webp b/the8eam/open-iconic/webp/badge-8x.webp new file mode 100644 index 0000000..3778e4f Binary files /dev/null and b/the8eam/open-iconic/webp/badge-8x.webp differ diff --git a/the8eam/open-iconic/webp/badge.webp b/the8eam/open-iconic/webp/badge.webp new file mode 100644 index 0000000..2cd8420 Binary files /dev/null and b/the8eam/open-iconic/webp/badge.webp differ diff --git a/the8eam/open-iconic/webp/ban-2x.webp b/the8eam/open-iconic/webp/ban-2x.webp new file mode 100644 index 0000000..a6faa4d Binary files /dev/null and b/the8eam/open-iconic/webp/ban-2x.webp differ diff --git a/the8eam/open-iconic/webp/ban-3x.webp b/the8eam/open-iconic/webp/ban-3x.webp new file mode 100644 index 0000000..c873598 Binary files /dev/null and b/the8eam/open-iconic/webp/ban-3x.webp differ diff --git a/the8eam/open-iconic/webp/ban-4x.webp b/the8eam/open-iconic/webp/ban-4x.webp new file mode 100644 index 0000000..51118dd Binary files /dev/null and b/the8eam/open-iconic/webp/ban-4x.webp differ diff --git a/the8eam/open-iconic/webp/ban-6x.webp b/the8eam/open-iconic/webp/ban-6x.webp new file mode 100644 index 0000000..a2ca18e Binary files /dev/null and b/the8eam/open-iconic/webp/ban-6x.webp differ diff --git a/the8eam/open-iconic/webp/ban-8x.webp b/the8eam/open-iconic/webp/ban-8x.webp new file mode 100644 index 0000000..7e31609 Binary files /dev/null and b/the8eam/open-iconic/webp/ban-8x.webp differ diff --git a/the8eam/open-iconic/webp/ban.webp b/the8eam/open-iconic/webp/ban.webp new file mode 100644 index 0000000..6ca2eeb Binary files /dev/null and b/the8eam/open-iconic/webp/ban.webp differ diff --git a/the8eam/open-iconic/webp/bar-chart-2x.webp b/the8eam/open-iconic/webp/bar-chart-2x.webp new file mode 100644 index 0000000..970db46 Binary files /dev/null and b/the8eam/open-iconic/webp/bar-chart-2x.webp differ diff --git a/the8eam/open-iconic/webp/bar-chart-3x.webp b/the8eam/open-iconic/webp/bar-chart-3x.webp new file mode 100644 index 0000000..b921325 Binary files /dev/null and b/the8eam/open-iconic/webp/bar-chart-3x.webp differ diff --git a/the8eam/open-iconic/webp/bar-chart-4x.webp b/the8eam/open-iconic/webp/bar-chart-4x.webp new file mode 100644 index 0000000..ec225c4 Binary files /dev/null and b/the8eam/open-iconic/webp/bar-chart-4x.webp differ diff --git a/the8eam/open-iconic/webp/bar-chart-6x.webp b/the8eam/open-iconic/webp/bar-chart-6x.webp new file mode 100644 index 0000000..e94cfa0 Binary files /dev/null and b/the8eam/open-iconic/webp/bar-chart-6x.webp differ diff --git a/the8eam/open-iconic/webp/bar-chart-8x.webp b/the8eam/open-iconic/webp/bar-chart-8x.webp new file mode 100644 index 0000000..86c748c Binary files /dev/null and b/the8eam/open-iconic/webp/bar-chart-8x.webp differ diff --git a/the8eam/open-iconic/webp/bar-chart.webp b/the8eam/open-iconic/webp/bar-chart.webp new file mode 100644 index 0000000..6e87328 Binary files /dev/null and b/the8eam/open-iconic/webp/bar-chart.webp differ diff --git a/the8eam/open-iconic/webp/basket-2x.webp b/the8eam/open-iconic/webp/basket-2x.webp new file mode 100644 index 0000000..df49805 Binary files /dev/null and b/the8eam/open-iconic/webp/basket-2x.webp differ diff --git a/the8eam/open-iconic/webp/basket-3x.webp b/the8eam/open-iconic/webp/basket-3x.webp new file mode 100644 index 0000000..71041fd Binary files /dev/null and b/the8eam/open-iconic/webp/basket-3x.webp differ diff --git a/the8eam/open-iconic/webp/basket-4x.webp b/the8eam/open-iconic/webp/basket-4x.webp new file mode 100644 index 0000000..ad10114 Binary files /dev/null and b/the8eam/open-iconic/webp/basket-4x.webp differ diff --git a/the8eam/open-iconic/webp/basket-6x.webp b/the8eam/open-iconic/webp/basket-6x.webp new file mode 100644 index 0000000..a287c19 Binary files /dev/null and b/the8eam/open-iconic/webp/basket-6x.webp differ diff --git a/the8eam/open-iconic/webp/basket-8x.webp b/the8eam/open-iconic/webp/basket-8x.webp new file mode 100644 index 0000000..d0ecdfe Binary files /dev/null and b/the8eam/open-iconic/webp/basket-8x.webp differ diff --git a/the8eam/open-iconic/webp/basket.webp b/the8eam/open-iconic/webp/basket.webp new file mode 100644 index 0000000..3ce992a Binary files /dev/null and b/the8eam/open-iconic/webp/basket.webp differ diff --git a/the8eam/open-iconic/webp/battery-empty-2x.webp b/the8eam/open-iconic/webp/battery-empty-2x.webp new file mode 100644 index 0000000..8cf98c4 Binary files /dev/null and b/the8eam/open-iconic/webp/battery-empty-2x.webp differ diff --git a/the8eam/open-iconic/webp/battery-empty-3x.webp b/the8eam/open-iconic/webp/battery-empty-3x.webp new file mode 100644 index 0000000..b191cb4 Binary files /dev/null and b/the8eam/open-iconic/webp/battery-empty-3x.webp differ diff --git a/the8eam/open-iconic/webp/battery-empty-4x.webp b/the8eam/open-iconic/webp/battery-empty-4x.webp new file mode 100644 index 0000000..e8b2a65 Binary files /dev/null and b/the8eam/open-iconic/webp/battery-empty-4x.webp differ diff --git a/the8eam/open-iconic/webp/battery-empty-6x.webp b/the8eam/open-iconic/webp/battery-empty-6x.webp new file mode 100644 index 0000000..9096654 Binary files /dev/null and b/the8eam/open-iconic/webp/battery-empty-6x.webp differ diff --git a/the8eam/open-iconic/webp/battery-empty-8x.webp b/the8eam/open-iconic/webp/battery-empty-8x.webp new file mode 100644 index 0000000..c885f96 Binary files /dev/null and b/the8eam/open-iconic/webp/battery-empty-8x.webp differ diff --git a/the8eam/open-iconic/webp/battery-empty.webp b/the8eam/open-iconic/webp/battery-empty.webp new file mode 100644 index 0000000..86f73f9 Binary files /dev/null and b/the8eam/open-iconic/webp/battery-empty.webp differ diff --git a/the8eam/open-iconic/webp/battery-full-2x.webp b/the8eam/open-iconic/webp/battery-full-2x.webp new file mode 100644 index 0000000..a39f056 Binary files /dev/null and b/the8eam/open-iconic/webp/battery-full-2x.webp differ diff --git a/the8eam/open-iconic/webp/battery-full-3x.webp b/the8eam/open-iconic/webp/battery-full-3x.webp new file mode 100644 index 0000000..007e321 Binary files /dev/null and b/the8eam/open-iconic/webp/battery-full-3x.webp differ diff --git a/the8eam/open-iconic/webp/battery-full-4x.webp b/the8eam/open-iconic/webp/battery-full-4x.webp new file mode 100644 index 0000000..690649a Binary files /dev/null and b/the8eam/open-iconic/webp/battery-full-4x.webp differ diff --git a/the8eam/open-iconic/webp/battery-full-6x.webp b/the8eam/open-iconic/webp/battery-full-6x.webp new file mode 100644 index 0000000..22f34ef Binary files /dev/null and b/the8eam/open-iconic/webp/battery-full-6x.webp differ diff --git a/the8eam/open-iconic/webp/battery-full-8x.webp b/the8eam/open-iconic/webp/battery-full-8x.webp new file mode 100644 index 0000000..1ad8fb5 Binary files /dev/null and b/the8eam/open-iconic/webp/battery-full-8x.webp differ diff --git a/the8eam/open-iconic/webp/battery-full.webp b/the8eam/open-iconic/webp/battery-full.webp new file mode 100644 index 0000000..ad71e6a Binary files /dev/null and b/the8eam/open-iconic/webp/battery-full.webp differ diff --git a/the8eam/open-iconic/webp/beaker-2x.webp b/the8eam/open-iconic/webp/beaker-2x.webp new file mode 100644 index 0000000..19a3dc3 Binary files /dev/null and b/the8eam/open-iconic/webp/beaker-2x.webp differ diff --git a/the8eam/open-iconic/webp/beaker-3x.webp b/the8eam/open-iconic/webp/beaker-3x.webp new file mode 100644 index 0000000..bfdf748 Binary files /dev/null and b/the8eam/open-iconic/webp/beaker-3x.webp differ diff --git a/the8eam/open-iconic/webp/beaker-4x.webp b/the8eam/open-iconic/webp/beaker-4x.webp new file mode 100644 index 0000000..5e67d2c Binary files /dev/null and b/the8eam/open-iconic/webp/beaker-4x.webp differ diff --git a/the8eam/open-iconic/webp/beaker-6x.webp b/the8eam/open-iconic/webp/beaker-6x.webp new file mode 100644 index 0000000..b8b5526 Binary files /dev/null and b/the8eam/open-iconic/webp/beaker-6x.webp differ diff --git a/the8eam/open-iconic/webp/beaker-8x.webp b/the8eam/open-iconic/webp/beaker-8x.webp new file mode 100644 index 0000000..4288d44 Binary files /dev/null and b/the8eam/open-iconic/webp/beaker-8x.webp differ diff --git a/the8eam/open-iconic/webp/beaker.webp b/the8eam/open-iconic/webp/beaker.webp new file mode 100644 index 0000000..32b7b1a Binary files /dev/null and b/the8eam/open-iconic/webp/beaker.webp differ diff --git a/the8eam/open-iconic/webp/bell-2x.webp b/the8eam/open-iconic/webp/bell-2x.webp new file mode 100644 index 0000000..b6dd0ca Binary files /dev/null and b/the8eam/open-iconic/webp/bell-2x.webp differ diff --git a/the8eam/open-iconic/webp/bell-3x.webp b/the8eam/open-iconic/webp/bell-3x.webp new file mode 100644 index 0000000..1192acd Binary files /dev/null and b/the8eam/open-iconic/webp/bell-3x.webp differ diff --git a/the8eam/open-iconic/webp/bell-4x.webp b/the8eam/open-iconic/webp/bell-4x.webp new file mode 100644 index 0000000..9c7c049 Binary files /dev/null and b/the8eam/open-iconic/webp/bell-4x.webp differ diff --git a/the8eam/open-iconic/webp/bell-6x.webp b/the8eam/open-iconic/webp/bell-6x.webp new file mode 100644 index 0000000..4deb166 Binary files /dev/null and b/the8eam/open-iconic/webp/bell-6x.webp differ diff --git a/the8eam/open-iconic/webp/bell-8x.webp b/the8eam/open-iconic/webp/bell-8x.webp new file mode 100644 index 0000000..1551541 Binary files /dev/null and b/the8eam/open-iconic/webp/bell-8x.webp differ diff --git a/the8eam/open-iconic/webp/bell.webp b/the8eam/open-iconic/webp/bell.webp new file mode 100644 index 0000000..d0ebfdd Binary files /dev/null and b/the8eam/open-iconic/webp/bell.webp differ diff --git a/the8eam/open-iconic/webp/bluetooth-2x.webp b/the8eam/open-iconic/webp/bluetooth-2x.webp new file mode 100644 index 0000000..0f7dfe6 Binary files /dev/null and b/the8eam/open-iconic/webp/bluetooth-2x.webp differ diff --git a/the8eam/open-iconic/webp/bluetooth-3x.webp b/the8eam/open-iconic/webp/bluetooth-3x.webp new file mode 100644 index 0000000..5e80a59 Binary files /dev/null and b/the8eam/open-iconic/webp/bluetooth-3x.webp differ diff --git a/the8eam/open-iconic/webp/bluetooth-4x.webp b/the8eam/open-iconic/webp/bluetooth-4x.webp new file mode 100644 index 0000000..cf62d51 Binary files /dev/null and b/the8eam/open-iconic/webp/bluetooth-4x.webp differ diff --git a/the8eam/open-iconic/webp/bluetooth-6x.webp b/the8eam/open-iconic/webp/bluetooth-6x.webp new file mode 100644 index 0000000..aee590f Binary files /dev/null and b/the8eam/open-iconic/webp/bluetooth-6x.webp differ diff --git a/the8eam/open-iconic/webp/bluetooth-8x.webp b/the8eam/open-iconic/webp/bluetooth-8x.webp new file mode 100644 index 0000000..1a946c4 Binary files /dev/null and b/the8eam/open-iconic/webp/bluetooth-8x.webp differ diff --git a/the8eam/open-iconic/webp/bluetooth.webp b/the8eam/open-iconic/webp/bluetooth.webp new file mode 100644 index 0000000..2f959a7 Binary files /dev/null and b/the8eam/open-iconic/webp/bluetooth.webp differ diff --git a/the8eam/open-iconic/webp/bold-2x.webp b/the8eam/open-iconic/webp/bold-2x.webp new file mode 100644 index 0000000..8abb332 Binary files /dev/null and b/the8eam/open-iconic/webp/bold-2x.webp differ diff --git a/the8eam/open-iconic/webp/bold-3x.webp b/the8eam/open-iconic/webp/bold-3x.webp new file mode 100644 index 0000000..6297e3d Binary files /dev/null and b/the8eam/open-iconic/webp/bold-3x.webp differ diff --git a/the8eam/open-iconic/webp/bold-4x.webp b/the8eam/open-iconic/webp/bold-4x.webp new file mode 100644 index 0000000..78fab57 Binary files /dev/null and b/the8eam/open-iconic/webp/bold-4x.webp differ diff --git a/the8eam/open-iconic/webp/bold-6x.webp b/the8eam/open-iconic/webp/bold-6x.webp new file mode 100644 index 0000000..7dc16aa Binary files /dev/null and b/the8eam/open-iconic/webp/bold-6x.webp differ diff --git a/the8eam/open-iconic/webp/bold-8x.webp b/the8eam/open-iconic/webp/bold-8x.webp new file mode 100644 index 0000000..7e1987f Binary files /dev/null and b/the8eam/open-iconic/webp/bold-8x.webp differ diff --git a/the8eam/open-iconic/webp/bold.webp b/the8eam/open-iconic/webp/bold.webp new file mode 100644 index 0000000..0238914 Binary files /dev/null and b/the8eam/open-iconic/webp/bold.webp differ diff --git a/the8eam/open-iconic/webp/bolt-2x.webp b/the8eam/open-iconic/webp/bolt-2x.webp new file mode 100644 index 0000000..570b67a Binary files /dev/null and b/the8eam/open-iconic/webp/bolt-2x.webp differ diff --git a/the8eam/open-iconic/webp/bolt-3x.webp b/the8eam/open-iconic/webp/bolt-3x.webp new file mode 100644 index 0000000..b0c49de Binary files /dev/null and b/the8eam/open-iconic/webp/bolt-3x.webp differ diff --git a/the8eam/open-iconic/webp/bolt-4x.webp b/the8eam/open-iconic/webp/bolt-4x.webp new file mode 100644 index 0000000..d97eb30 Binary files /dev/null and b/the8eam/open-iconic/webp/bolt-4x.webp differ diff --git a/the8eam/open-iconic/webp/bolt-6x.webp b/the8eam/open-iconic/webp/bolt-6x.webp new file mode 100644 index 0000000..eac6291 Binary files /dev/null and b/the8eam/open-iconic/webp/bolt-6x.webp differ diff --git a/the8eam/open-iconic/webp/bolt-8x.webp b/the8eam/open-iconic/webp/bolt-8x.webp new file mode 100644 index 0000000..47187c8 Binary files /dev/null and b/the8eam/open-iconic/webp/bolt-8x.webp differ diff --git a/the8eam/open-iconic/webp/bolt.webp b/the8eam/open-iconic/webp/bolt.webp new file mode 100644 index 0000000..f83ef99 Binary files /dev/null and b/the8eam/open-iconic/webp/bolt.webp differ diff --git a/the8eam/open-iconic/webp/book-2x.webp b/the8eam/open-iconic/webp/book-2x.webp new file mode 100644 index 0000000..6ab04b1 Binary files /dev/null and b/the8eam/open-iconic/webp/book-2x.webp differ diff --git a/the8eam/open-iconic/webp/book-3x.webp b/the8eam/open-iconic/webp/book-3x.webp new file mode 100644 index 0000000..f60d257 Binary files /dev/null and b/the8eam/open-iconic/webp/book-3x.webp differ diff --git a/the8eam/open-iconic/webp/book-4x.webp b/the8eam/open-iconic/webp/book-4x.webp new file mode 100644 index 0000000..ef17ab1 Binary files /dev/null and b/the8eam/open-iconic/webp/book-4x.webp differ diff --git a/the8eam/open-iconic/webp/book-6x.webp b/the8eam/open-iconic/webp/book-6x.webp new file mode 100644 index 0000000..3ddc381 Binary files /dev/null and b/the8eam/open-iconic/webp/book-6x.webp differ diff --git a/the8eam/open-iconic/webp/book-8x.webp b/the8eam/open-iconic/webp/book-8x.webp new file mode 100644 index 0000000..c12415d Binary files /dev/null and b/the8eam/open-iconic/webp/book-8x.webp differ diff --git a/the8eam/open-iconic/webp/book.webp b/the8eam/open-iconic/webp/book.webp new file mode 100644 index 0000000..c72617b Binary files /dev/null and b/the8eam/open-iconic/webp/book.webp differ diff --git a/the8eam/open-iconic/webp/bookmark-2x.webp b/the8eam/open-iconic/webp/bookmark-2x.webp new file mode 100644 index 0000000..bb2313a Binary files /dev/null and b/the8eam/open-iconic/webp/bookmark-2x.webp differ diff --git a/the8eam/open-iconic/webp/bookmark-3x.webp b/the8eam/open-iconic/webp/bookmark-3x.webp new file mode 100644 index 0000000..7c77e29 Binary files /dev/null and b/the8eam/open-iconic/webp/bookmark-3x.webp differ diff --git a/the8eam/open-iconic/webp/bookmark-4x.webp b/the8eam/open-iconic/webp/bookmark-4x.webp new file mode 100644 index 0000000..b2779a0 Binary files /dev/null and b/the8eam/open-iconic/webp/bookmark-4x.webp differ diff --git a/the8eam/open-iconic/webp/bookmark-6x.webp b/the8eam/open-iconic/webp/bookmark-6x.webp new file mode 100644 index 0000000..0cb9670 Binary files /dev/null and b/the8eam/open-iconic/webp/bookmark-6x.webp differ diff --git a/the8eam/open-iconic/webp/bookmark-8x.webp b/the8eam/open-iconic/webp/bookmark-8x.webp new file mode 100644 index 0000000..8a495d9 Binary files /dev/null and b/the8eam/open-iconic/webp/bookmark-8x.webp differ diff --git a/the8eam/open-iconic/webp/bookmark.webp b/the8eam/open-iconic/webp/bookmark.webp new file mode 100644 index 0000000..929b230 Binary files /dev/null and b/the8eam/open-iconic/webp/bookmark.webp differ diff --git a/the8eam/open-iconic/webp/box-2x.webp b/the8eam/open-iconic/webp/box-2x.webp new file mode 100644 index 0000000..c492f6d Binary files /dev/null and b/the8eam/open-iconic/webp/box-2x.webp differ diff --git a/the8eam/open-iconic/webp/box-3x.webp b/the8eam/open-iconic/webp/box-3x.webp new file mode 100644 index 0000000..eaa44db Binary files /dev/null and b/the8eam/open-iconic/webp/box-3x.webp differ diff --git a/the8eam/open-iconic/webp/box-4x.webp b/the8eam/open-iconic/webp/box-4x.webp new file mode 100644 index 0000000..de7dda2 Binary files /dev/null and b/the8eam/open-iconic/webp/box-4x.webp differ diff --git a/the8eam/open-iconic/webp/box-6x.webp b/the8eam/open-iconic/webp/box-6x.webp new file mode 100644 index 0000000..7cb3a3d Binary files /dev/null and b/the8eam/open-iconic/webp/box-6x.webp differ diff --git a/the8eam/open-iconic/webp/box-8x.webp b/the8eam/open-iconic/webp/box-8x.webp new file mode 100644 index 0000000..7c599df Binary files /dev/null and b/the8eam/open-iconic/webp/box-8x.webp differ diff --git a/the8eam/open-iconic/webp/box.webp b/the8eam/open-iconic/webp/box.webp new file mode 100644 index 0000000..0754785 Binary files /dev/null and b/the8eam/open-iconic/webp/box.webp differ diff --git a/the8eam/open-iconic/webp/briefcase-2x.webp b/the8eam/open-iconic/webp/briefcase-2x.webp new file mode 100644 index 0000000..c041c5c Binary files /dev/null and b/the8eam/open-iconic/webp/briefcase-2x.webp differ diff --git a/the8eam/open-iconic/webp/briefcase-3x.webp b/the8eam/open-iconic/webp/briefcase-3x.webp new file mode 100644 index 0000000..da9c3bc Binary files /dev/null and b/the8eam/open-iconic/webp/briefcase-3x.webp differ diff --git a/the8eam/open-iconic/webp/briefcase-4x.webp b/the8eam/open-iconic/webp/briefcase-4x.webp new file mode 100644 index 0000000..45baaa2 Binary files /dev/null and b/the8eam/open-iconic/webp/briefcase-4x.webp differ diff --git a/the8eam/open-iconic/webp/briefcase-6x.webp b/the8eam/open-iconic/webp/briefcase-6x.webp new file mode 100644 index 0000000..7f7e4bc Binary files /dev/null and b/the8eam/open-iconic/webp/briefcase-6x.webp differ diff --git a/the8eam/open-iconic/webp/briefcase-8x.webp b/the8eam/open-iconic/webp/briefcase-8x.webp new file mode 100644 index 0000000..f817e85 Binary files /dev/null and b/the8eam/open-iconic/webp/briefcase-8x.webp differ diff --git a/the8eam/open-iconic/webp/briefcase.webp b/the8eam/open-iconic/webp/briefcase.webp new file mode 100644 index 0000000..110c562 Binary files /dev/null and b/the8eam/open-iconic/webp/briefcase.webp differ diff --git a/the8eam/open-iconic/webp/british-pound-2x.webp b/the8eam/open-iconic/webp/british-pound-2x.webp new file mode 100644 index 0000000..e8fb2aa Binary files /dev/null and b/the8eam/open-iconic/webp/british-pound-2x.webp differ diff --git a/the8eam/open-iconic/webp/british-pound-3x.webp b/the8eam/open-iconic/webp/british-pound-3x.webp new file mode 100644 index 0000000..0615a12 Binary files /dev/null and b/the8eam/open-iconic/webp/british-pound-3x.webp differ diff --git a/the8eam/open-iconic/webp/british-pound-4x.webp b/the8eam/open-iconic/webp/british-pound-4x.webp new file mode 100644 index 0000000..b970537 Binary files /dev/null and b/the8eam/open-iconic/webp/british-pound-4x.webp differ diff --git a/the8eam/open-iconic/webp/british-pound-6x.webp b/the8eam/open-iconic/webp/british-pound-6x.webp new file mode 100644 index 0000000..a0f26b8 Binary files /dev/null and b/the8eam/open-iconic/webp/british-pound-6x.webp differ diff --git a/the8eam/open-iconic/webp/british-pound-8x.webp b/the8eam/open-iconic/webp/british-pound-8x.webp new file mode 100644 index 0000000..4864da4 Binary files /dev/null and b/the8eam/open-iconic/webp/british-pound-8x.webp differ diff --git a/the8eam/open-iconic/webp/british-pound.webp b/the8eam/open-iconic/webp/british-pound.webp new file mode 100644 index 0000000..c640d64 Binary files /dev/null and b/the8eam/open-iconic/webp/british-pound.webp differ diff --git a/the8eam/open-iconic/webp/browser-2x.webp b/the8eam/open-iconic/webp/browser-2x.webp new file mode 100644 index 0000000..6f460e5 Binary files /dev/null and b/the8eam/open-iconic/webp/browser-2x.webp differ diff --git a/the8eam/open-iconic/webp/browser-3x.webp b/the8eam/open-iconic/webp/browser-3x.webp new file mode 100644 index 0000000..bed2910 Binary files /dev/null and b/the8eam/open-iconic/webp/browser-3x.webp differ diff --git a/the8eam/open-iconic/webp/browser-4x.webp b/the8eam/open-iconic/webp/browser-4x.webp new file mode 100644 index 0000000..0a025c6 Binary files /dev/null and b/the8eam/open-iconic/webp/browser-4x.webp differ diff --git a/the8eam/open-iconic/webp/browser-6x.webp b/the8eam/open-iconic/webp/browser-6x.webp new file mode 100644 index 0000000..7aac9af Binary files /dev/null and b/the8eam/open-iconic/webp/browser-6x.webp differ diff --git a/the8eam/open-iconic/webp/browser-8x.webp b/the8eam/open-iconic/webp/browser-8x.webp new file mode 100644 index 0000000..6efc131 Binary files /dev/null and b/the8eam/open-iconic/webp/browser-8x.webp differ diff --git a/the8eam/open-iconic/webp/browser.webp b/the8eam/open-iconic/webp/browser.webp new file mode 100644 index 0000000..9ae0eef Binary files /dev/null and b/the8eam/open-iconic/webp/browser.webp differ diff --git a/the8eam/open-iconic/webp/brush-2x.webp b/the8eam/open-iconic/webp/brush-2x.webp new file mode 100644 index 0000000..6fed885 Binary files /dev/null and b/the8eam/open-iconic/webp/brush-2x.webp differ diff --git a/the8eam/open-iconic/webp/brush-3x.webp b/the8eam/open-iconic/webp/brush-3x.webp new file mode 100644 index 0000000..4ba5856 Binary files /dev/null and b/the8eam/open-iconic/webp/brush-3x.webp differ diff --git a/the8eam/open-iconic/webp/brush-4x.webp b/the8eam/open-iconic/webp/brush-4x.webp new file mode 100644 index 0000000..5d09a1d Binary files /dev/null and b/the8eam/open-iconic/webp/brush-4x.webp differ diff --git a/the8eam/open-iconic/webp/brush-6x.webp b/the8eam/open-iconic/webp/brush-6x.webp new file mode 100644 index 0000000..0957d18 Binary files /dev/null and b/the8eam/open-iconic/webp/brush-6x.webp differ diff --git a/the8eam/open-iconic/webp/brush-8x.webp b/the8eam/open-iconic/webp/brush-8x.webp new file mode 100644 index 0000000..57a1ec7 Binary files /dev/null and b/the8eam/open-iconic/webp/brush-8x.webp differ diff --git a/the8eam/open-iconic/webp/brush.webp b/the8eam/open-iconic/webp/brush.webp new file mode 100644 index 0000000..7709ec9 Binary files /dev/null and b/the8eam/open-iconic/webp/brush.webp differ diff --git a/the8eam/open-iconic/webp/bug-2x.webp b/the8eam/open-iconic/webp/bug-2x.webp new file mode 100644 index 0000000..aee17e2 Binary files /dev/null and b/the8eam/open-iconic/webp/bug-2x.webp differ diff --git a/the8eam/open-iconic/webp/bug-3x.webp b/the8eam/open-iconic/webp/bug-3x.webp new file mode 100644 index 0000000..0f1f31f Binary files /dev/null and b/the8eam/open-iconic/webp/bug-3x.webp differ diff --git a/the8eam/open-iconic/webp/bug-4x.webp b/the8eam/open-iconic/webp/bug-4x.webp new file mode 100644 index 0000000..23c9502 Binary files /dev/null and b/the8eam/open-iconic/webp/bug-4x.webp differ diff --git a/the8eam/open-iconic/webp/bug-6x.webp b/the8eam/open-iconic/webp/bug-6x.webp new file mode 100644 index 0000000..16c3547 Binary files /dev/null and b/the8eam/open-iconic/webp/bug-6x.webp differ diff --git a/the8eam/open-iconic/webp/bug-8x.webp b/the8eam/open-iconic/webp/bug-8x.webp new file mode 100644 index 0000000..4c7d689 Binary files /dev/null and b/the8eam/open-iconic/webp/bug-8x.webp differ diff --git a/the8eam/open-iconic/webp/bug.webp b/the8eam/open-iconic/webp/bug.webp new file mode 100644 index 0000000..ad908e8 Binary files /dev/null and b/the8eam/open-iconic/webp/bug.webp differ diff --git a/the8eam/open-iconic/webp/bullhorn-2x.webp b/the8eam/open-iconic/webp/bullhorn-2x.webp new file mode 100644 index 0000000..b87511f Binary files /dev/null and b/the8eam/open-iconic/webp/bullhorn-2x.webp differ diff --git a/the8eam/open-iconic/webp/bullhorn-3x.webp b/the8eam/open-iconic/webp/bullhorn-3x.webp new file mode 100644 index 0000000..3eff2c1 Binary files /dev/null and b/the8eam/open-iconic/webp/bullhorn-3x.webp differ diff --git a/the8eam/open-iconic/webp/bullhorn-4x.webp b/the8eam/open-iconic/webp/bullhorn-4x.webp new file mode 100644 index 0000000..2dd634b Binary files /dev/null and b/the8eam/open-iconic/webp/bullhorn-4x.webp differ diff --git a/the8eam/open-iconic/webp/bullhorn-6x.webp b/the8eam/open-iconic/webp/bullhorn-6x.webp new file mode 100644 index 0000000..f646437 Binary files /dev/null and b/the8eam/open-iconic/webp/bullhorn-6x.webp differ diff --git a/the8eam/open-iconic/webp/bullhorn-8x.webp b/the8eam/open-iconic/webp/bullhorn-8x.webp new file mode 100644 index 0000000..7a9e15d Binary files /dev/null and b/the8eam/open-iconic/webp/bullhorn-8x.webp differ diff --git a/the8eam/open-iconic/webp/bullhorn.webp b/the8eam/open-iconic/webp/bullhorn.webp new file mode 100644 index 0000000..0adaa42 Binary files /dev/null and b/the8eam/open-iconic/webp/bullhorn.webp differ diff --git a/the8eam/open-iconic/webp/calculator-2x.webp b/the8eam/open-iconic/webp/calculator-2x.webp new file mode 100644 index 0000000..9115dfb Binary files /dev/null and b/the8eam/open-iconic/webp/calculator-2x.webp differ diff --git a/the8eam/open-iconic/webp/calculator-3x.webp b/the8eam/open-iconic/webp/calculator-3x.webp new file mode 100644 index 0000000..362f4b4 Binary files /dev/null and b/the8eam/open-iconic/webp/calculator-3x.webp differ diff --git a/the8eam/open-iconic/webp/calculator-4x.webp b/the8eam/open-iconic/webp/calculator-4x.webp new file mode 100644 index 0000000..967059e Binary files /dev/null and b/the8eam/open-iconic/webp/calculator-4x.webp differ diff --git a/the8eam/open-iconic/webp/calculator-6x.webp b/the8eam/open-iconic/webp/calculator-6x.webp new file mode 100644 index 0000000..3204179 Binary files /dev/null and b/the8eam/open-iconic/webp/calculator-6x.webp differ diff --git a/the8eam/open-iconic/webp/calculator-8x.webp b/the8eam/open-iconic/webp/calculator-8x.webp new file mode 100644 index 0000000..e66deab Binary files /dev/null and b/the8eam/open-iconic/webp/calculator-8x.webp differ diff --git a/the8eam/open-iconic/webp/calculator.webp b/the8eam/open-iconic/webp/calculator.webp new file mode 100644 index 0000000..da0a66c Binary files /dev/null and b/the8eam/open-iconic/webp/calculator.webp differ diff --git a/the8eam/open-iconic/webp/calendar-2x.webp b/the8eam/open-iconic/webp/calendar-2x.webp new file mode 100644 index 0000000..9d2e6ac Binary files /dev/null and b/the8eam/open-iconic/webp/calendar-2x.webp differ diff --git a/the8eam/open-iconic/webp/calendar-3x.webp b/the8eam/open-iconic/webp/calendar-3x.webp new file mode 100644 index 0000000..3ccf8de Binary files /dev/null and b/the8eam/open-iconic/webp/calendar-3x.webp differ diff --git a/the8eam/open-iconic/webp/calendar-4x.webp b/the8eam/open-iconic/webp/calendar-4x.webp new file mode 100644 index 0000000..745e3cf Binary files /dev/null and b/the8eam/open-iconic/webp/calendar-4x.webp differ diff --git a/the8eam/open-iconic/webp/calendar-6x.webp b/the8eam/open-iconic/webp/calendar-6x.webp new file mode 100644 index 0000000..ae45f72 Binary files /dev/null and b/the8eam/open-iconic/webp/calendar-6x.webp differ diff --git a/the8eam/open-iconic/webp/calendar-8x.webp b/the8eam/open-iconic/webp/calendar-8x.webp new file mode 100644 index 0000000..f17f284 Binary files /dev/null and b/the8eam/open-iconic/webp/calendar-8x.webp differ diff --git a/the8eam/open-iconic/webp/calendar.webp b/the8eam/open-iconic/webp/calendar.webp new file mode 100644 index 0000000..ca27b5e Binary files /dev/null and b/the8eam/open-iconic/webp/calendar.webp differ diff --git a/the8eam/open-iconic/webp/camera-slr-2x.webp b/the8eam/open-iconic/webp/camera-slr-2x.webp new file mode 100644 index 0000000..4747c59 Binary files /dev/null and b/the8eam/open-iconic/webp/camera-slr-2x.webp differ diff --git a/the8eam/open-iconic/webp/camera-slr-3x.webp b/the8eam/open-iconic/webp/camera-slr-3x.webp new file mode 100644 index 0000000..aa7ead3 Binary files /dev/null and b/the8eam/open-iconic/webp/camera-slr-3x.webp differ diff --git a/the8eam/open-iconic/webp/camera-slr-4x.webp b/the8eam/open-iconic/webp/camera-slr-4x.webp new file mode 100644 index 0000000..6d78cfc Binary files /dev/null and b/the8eam/open-iconic/webp/camera-slr-4x.webp differ diff --git a/the8eam/open-iconic/webp/camera-slr-6x.webp b/the8eam/open-iconic/webp/camera-slr-6x.webp new file mode 100644 index 0000000..662d9cd Binary files /dev/null and b/the8eam/open-iconic/webp/camera-slr-6x.webp differ diff --git a/the8eam/open-iconic/webp/camera-slr-8x.webp b/the8eam/open-iconic/webp/camera-slr-8x.webp new file mode 100644 index 0000000..4d97b08 Binary files /dev/null and b/the8eam/open-iconic/webp/camera-slr-8x.webp differ diff --git a/the8eam/open-iconic/webp/camera-slr.webp b/the8eam/open-iconic/webp/camera-slr.webp new file mode 100644 index 0000000..d323ccb Binary files /dev/null and b/the8eam/open-iconic/webp/camera-slr.webp differ diff --git a/the8eam/open-iconic/webp/caret-bottom-2x.webp b/the8eam/open-iconic/webp/caret-bottom-2x.webp new file mode 100644 index 0000000..8b9f0a3 Binary files /dev/null and b/the8eam/open-iconic/webp/caret-bottom-2x.webp differ diff --git a/the8eam/open-iconic/webp/caret-bottom-3x.webp b/the8eam/open-iconic/webp/caret-bottom-3x.webp new file mode 100644 index 0000000..fd282a0 Binary files /dev/null and b/the8eam/open-iconic/webp/caret-bottom-3x.webp differ diff --git a/the8eam/open-iconic/webp/caret-bottom-4x.webp b/the8eam/open-iconic/webp/caret-bottom-4x.webp new file mode 100644 index 0000000..f878c54 Binary files /dev/null and b/the8eam/open-iconic/webp/caret-bottom-4x.webp differ diff --git a/the8eam/open-iconic/webp/caret-bottom-6x.webp b/the8eam/open-iconic/webp/caret-bottom-6x.webp new file mode 100644 index 0000000..b73fa97 Binary files /dev/null and b/the8eam/open-iconic/webp/caret-bottom-6x.webp differ diff --git a/the8eam/open-iconic/webp/caret-bottom-8x.webp b/the8eam/open-iconic/webp/caret-bottom-8x.webp new file mode 100644 index 0000000..572a01c Binary files /dev/null and b/the8eam/open-iconic/webp/caret-bottom-8x.webp differ diff --git a/the8eam/open-iconic/webp/caret-bottom.webp b/the8eam/open-iconic/webp/caret-bottom.webp new file mode 100644 index 0000000..445776c Binary files /dev/null and b/the8eam/open-iconic/webp/caret-bottom.webp differ diff --git a/the8eam/open-iconic/webp/caret-left-2x.webp b/the8eam/open-iconic/webp/caret-left-2x.webp new file mode 100644 index 0000000..c3c945a Binary files /dev/null and b/the8eam/open-iconic/webp/caret-left-2x.webp differ diff --git a/the8eam/open-iconic/webp/caret-left-3x.webp b/the8eam/open-iconic/webp/caret-left-3x.webp new file mode 100644 index 0000000..2fcd22e Binary files /dev/null and b/the8eam/open-iconic/webp/caret-left-3x.webp differ diff --git a/the8eam/open-iconic/webp/caret-left-4x.webp b/the8eam/open-iconic/webp/caret-left-4x.webp new file mode 100644 index 0000000..08f7967 Binary files /dev/null and b/the8eam/open-iconic/webp/caret-left-4x.webp differ diff --git a/the8eam/open-iconic/webp/caret-left-6x.webp b/the8eam/open-iconic/webp/caret-left-6x.webp new file mode 100644 index 0000000..99bc242 Binary files /dev/null and b/the8eam/open-iconic/webp/caret-left-6x.webp differ diff --git a/the8eam/open-iconic/webp/caret-left-8x.webp b/the8eam/open-iconic/webp/caret-left-8x.webp new file mode 100644 index 0000000..292b5ea Binary files /dev/null and b/the8eam/open-iconic/webp/caret-left-8x.webp differ diff --git a/the8eam/open-iconic/webp/caret-left.webp b/the8eam/open-iconic/webp/caret-left.webp new file mode 100644 index 0000000..a24e0ee Binary files /dev/null and b/the8eam/open-iconic/webp/caret-left.webp differ diff --git a/the8eam/open-iconic/webp/caret-right-2x.webp b/the8eam/open-iconic/webp/caret-right-2x.webp new file mode 100644 index 0000000..10a650d Binary files /dev/null and b/the8eam/open-iconic/webp/caret-right-2x.webp differ diff --git a/the8eam/open-iconic/webp/caret-right-3x.webp b/the8eam/open-iconic/webp/caret-right-3x.webp new file mode 100644 index 0000000..f2788cf Binary files /dev/null and b/the8eam/open-iconic/webp/caret-right-3x.webp differ diff --git a/the8eam/open-iconic/webp/caret-right-4x.webp b/the8eam/open-iconic/webp/caret-right-4x.webp new file mode 100644 index 0000000..2e42521 Binary files /dev/null and b/the8eam/open-iconic/webp/caret-right-4x.webp differ diff --git a/the8eam/open-iconic/webp/caret-right-6x.webp b/the8eam/open-iconic/webp/caret-right-6x.webp new file mode 100644 index 0000000..9cec0a8 Binary files /dev/null and b/the8eam/open-iconic/webp/caret-right-6x.webp differ diff --git a/the8eam/open-iconic/webp/caret-right-8x.webp b/the8eam/open-iconic/webp/caret-right-8x.webp new file mode 100644 index 0000000..685f193 Binary files /dev/null and b/the8eam/open-iconic/webp/caret-right-8x.webp differ diff --git a/the8eam/open-iconic/webp/caret-right.webp b/the8eam/open-iconic/webp/caret-right.webp new file mode 100644 index 0000000..c6429c5 Binary files /dev/null and b/the8eam/open-iconic/webp/caret-right.webp differ diff --git a/the8eam/open-iconic/webp/caret-top-2x.webp b/the8eam/open-iconic/webp/caret-top-2x.webp new file mode 100644 index 0000000..0483f18 Binary files /dev/null and b/the8eam/open-iconic/webp/caret-top-2x.webp differ diff --git a/the8eam/open-iconic/webp/caret-top-3x.webp b/the8eam/open-iconic/webp/caret-top-3x.webp new file mode 100644 index 0000000..f55efd1 Binary files /dev/null and b/the8eam/open-iconic/webp/caret-top-3x.webp differ diff --git a/the8eam/open-iconic/webp/caret-top-4x.webp b/the8eam/open-iconic/webp/caret-top-4x.webp new file mode 100644 index 0000000..a3709e1 Binary files /dev/null and b/the8eam/open-iconic/webp/caret-top-4x.webp differ diff --git a/the8eam/open-iconic/webp/caret-top-6x.webp b/the8eam/open-iconic/webp/caret-top-6x.webp new file mode 100644 index 0000000..ce546e3 Binary files /dev/null and b/the8eam/open-iconic/webp/caret-top-6x.webp differ diff --git a/the8eam/open-iconic/webp/caret-top-8x.webp b/the8eam/open-iconic/webp/caret-top-8x.webp new file mode 100644 index 0000000..3a03cd1 Binary files /dev/null and b/the8eam/open-iconic/webp/caret-top-8x.webp differ diff --git a/the8eam/open-iconic/webp/caret-top.webp b/the8eam/open-iconic/webp/caret-top.webp new file mode 100644 index 0000000..1c4a359 Binary files /dev/null and b/the8eam/open-iconic/webp/caret-top.webp differ diff --git a/the8eam/open-iconic/webp/cart-2x.webp b/the8eam/open-iconic/webp/cart-2x.webp new file mode 100644 index 0000000..f6bf9b4 Binary files /dev/null and b/the8eam/open-iconic/webp/cart-2x.webp differ diff --git a/the8eam/open-iconic/webp/cart-3x.webp b/the8eam/open-iconic/webp/cart-3x.webp new file mode 100644 index 0000000..e22de55 Binary files /dev/null and b/the8eam/open-iconic/webp/cart-3x.webp differ diff --git a/the8eam/open-iconic/webp/cart-4x.webp b/the8eam/open-iconic/webp/cart-4x.webp new file mode 100644 index 0000000..1559026 Binary files /dev/null and b/the8eam/open-iconic/webp/cart-4x.webp differ diff --git a/the8eam/open-iconic/webp/cart-6x.webp b/the8eam/open-iconic/webp/cart-6x.webp new file mode 100644 index 0000000..eb5f9c5 Binary files /dev/null and b/the8eam/open-iconic/webp/cart-6x.webp differ diff --git a/the8eam/open-iconic/webp/cart-8x.webp b/the8eam/open-iconic/webp/cart-8x.webp new file mode 100644 index 0000000..e0b173e Binary files /dev/null and b/the8eam/open-iconic/webp/cart-8x.webp differ diff --git a/the8eam/open-iconic/webp/cart.webp b/the8eam/open-iconic/webp/cart.webp new file mode 100644 index 0000000..c288d71 Binary files /dev/null and b/the8eam/open-iconic/webp/cart.webp differ diff --git a/the8eam/open-iconic/webp/chat-2x.webp b/the8eam/open-iconic/webp/chat-2x.webp new file mode 100644 index 0000000..b81ce48 Binary files /dev/null and b/the8eam/open-iconic/webp/chat-2x.webp differ diff --git a/the8eam/open-iconic/webp/chat-3x.webp b/the8eam/open-iconic/webp/chat-3x.webp new file mode 100644 index 0000000..64c121e Binary files /dev/null and b/the8eam/open-iconic/webp/chat-3x.webp differ diff --git a/the8eam/open-iconic/webp/chat-4x.webp b/the8eam/open-iconic/webp/chat-4x.webp new file mode 100644 index 0000000..5222295 Binary files /dev/null and b/the8eam/open-iconic/webp/chat-4x.webp differ diff --git a/the8eam/open-iconic/webp/chat-6x.webp b/the8eam/open-iconic/webp/chat-6x.webp new file mode 100644 index 0000000..376178b Binary files /dev/null and b/the8eam/open-iconic/webp/chat-6x.webp differ diff --git a/the8eam/open-iconic/webp/chat-8x.webp b/the8eam/open-iconic/webp/chat-8x.webp new file mode 100644 index 0000000..035ddc5 Binary files /dev/null and b/the8eam/open-iconic/webp/chat-8x.webp differ diff --git a/the8eam/open-iconic/webp/chat.webp b/the8eam/open-iconic/webp/chat.webp new file mode 100644 index 0000000..4b53725 Binary files /dev/null and b/the8eam/open-iconic/webp/chat.webp differ diff --git a/the8eam/open-iconic/webp/check-2x.webp b/the8eam/open-iconic/webp/check-2x.webp new file mode 100644 index 0000000..a71c96e Binary files /dev/null and b/the8eam/open-iconic/webp/check-2x.webp differ diff --git a/the8eam/open-iconic/webp/check-3x.webp b/the8eam/open-iconic/webp/check-3x.webp new file mode 100644 index 0000000..cc649f8 Binary files /dev/null and b/the8eam/open-iconic/webp/check-3x.webp differ diff --git a/the8eam/open-iconic/webp/check-4x.webp b/the8eam/open-iconic/webp/check-4x.webp new file mode 100644 index 0000000..5ac0184 Binary files /dev/null and b/the8eam/open-iconic/webp/check-4x.webp differ diff --git a/the8eam/open-iconic/webp/check-6x.webp b/the8eam/open-iconic/webp/check-6x.webp new file mode 100644 index 0000000..0052219 Binary files /dev/null and b/the8eam/open-iconic/webp/check-6x.webp differ diff --git a/the8eam/open-iconic/webp/check-8x.webp b/the8eam/open-iconic/webp/check-8x.webp new file mode 100644 index 0000000..7bcb6bc Binary files /dev/null and b/the8eam/open-iconic/webp/check-8x.webp differ diff --git a/the8eam/open-iconic/webp/check.webp b/the8eam/open-iconic/webp/check.webp new file mode 100644 index 0000000..be3279f Binary files /dev/null and b/the8eam/open-iconic/webp/check.webp differ diff --git a/the8eam/open-iconic/webp/chevron-bottom-2x.webp b/the8eam/open-iconic/webp/chevron-bottom-2x.webp new file mode 100644 index 0000000..c46e0b4 Binary files /dev/null and b/the8eam/open-iconic/webp/chevron-bottom-2x.webp differ diff --git a/the8eam/open-iconic/webp/chevron-bottom-3x.webp b/the8eam/open-iconic/webp/chevron-bottom-3x.webp new file mode 100644 index 0000000..ed93e7a Binary files /dev/null and b/the8eam/open-iconic/webp/chevron-bottom-3x.webp differ diff --git a/the8eam/open-iconic/webp/chevron-bottom-4x.webp b/the8eam/open-iconic/webp/chevron-bottom-4x.webp new file mode 100644 index 0000000..95c5643 Binary files /dev/null and b/the8eam/open-iconic/webp/chevron-bottom-4x.webp differ diff --git a/the8eam/open-iconic/webp/chevron-bottom-6x.webp b/the8eam/open-iconic/webp/chevron-bottom-6x.webp new file mode 100644 index 0000000..dd07e2b Binary files /dev/null and b/the8eam/open-iconic/webp/chevron-bottom-6x.webp differ diff --git a/the8eam/open-iconic/webp/chevron-bottom-8x.webp b/the8eam/open-iconic/webp/chevron-bottom-8x.webp new file mode 100644 index 0000000..a211688 Binary files /dev/null and b/the8eam/open-iconic/webp/chevron-bottom-8x.webp differ diff --git a/the8eam/open-iconic/webp/chevron-bottom.webp b/the8eam/open-iconic/webp/chevron-bottom.webp new file mode 100644 index 0000000..07412a3 Binary files /dev/null and b/the8eam/open-iconic/webp/chevron-bottom.webp differ diff --git a/the8eam/open-iconic/webp/chevron-left-2x.webp b/the8eam/open-iconic/webp/chevron-left-2x.webp new file mode 100644 index 0000000..fae05d6 Binary files /dev/null and b/the8eam/open-iconic/webp/chevron-left-2x.webp differ diff --git a/the8eam/open-iconic/webp/chevron-left-3x.webp b/the8eam/open-iconic/webp/chevron-left-3x.webp new file mode 100644 index 0000000..a65e73b Binary files /dev/null and b/the8eam/open-iconic/webp/chevron-left-3x.webp differ diff --git a/the8eam/open-iconic/webp/chevron-left-4x.webp b/the8eam/open-iconic/webp/chevron-left-4x.webp new file mode 100644 index 0000000..e872a54 Binary files /dev/null and b/the8eam/open-iconic/webp/chevron-left-4x.webp differ diff --git a/the8eam/open-iconic/webp/chevron-left-6x.webp b/the8eam/open-iconic/webp/chevron-left-6x.webp new file mode 100644 index 0000000..10696a1 Binary files /dev/null and b/the8eam/open-iconic/webp/chevron-left-6x.webp differ diff --git a/the8eam/open-iconic/webp/chevron-left-8x.webp b/the8eam/open-iconic/webp/chevron-left-8x.webp new file mode 100644 index 0000000..521b065 Binary files /dev/null and b/the8eam/open-iconic/webp/chevron-left-8x.webp differ diff --git a/the8eam/open-iconic/webp/chevron-left.webp b/the8eam/open-iconic/webp/chevron-left.webp new file mode 100644 index 0000000..5ae13ff Binary files /dev/null and b/the8eam/open-iconic/webp/chevron-left.webp differ diff --git a/the8eam/open-iconic/webp/chevron-right-2x.webp b/the8eam/open-iconic/webp/chevron-right-2x.webp new file mode 100644 index 0000000..515c767 Binary files /dev/null and b/the8eam/open-iconic/webp/chevron-right-2x.webp differ diff --git a/the8eam/open-iconic/webp/chevron-right-3x.webp b/the8eam/open-iconic/webp/chevron-right-3x.webp new file mode 100644 index 0000000..4166134 Binary files /dev/null and b/the8eam/open-iconic/webp/chevron-right-3x.webp differ diff --git a/the8eam/open-iconic/webp/chevron-right-4x.webp b/the8eam/open-iconic/webp/chevron-right-4x.webp new file mode 100644 index 0000000..4d7760e Binary files /dev/null and b/the8eam/open-iconic/webp/chevron-right-4x.webp differ diff --git a/the8eam/open-iconic/webp/chevron-right-6x.webp b/the8eam/open-iconic/webp/chevron-right-6x.webp new file mode 100644 index 0000000..beb6955 Binary files /dev/null and b/the8eam/open-iconic/webp/chevron-right-6x.webp differ diff --git a/the8eam/open-iconic/webp/chevron-right-8x.webp b/the8eam/open-iconic/webp/chevron-right-8x.webp new file mode 100644 index 0000000..937deca Binary files /dev/null and b/the8eam/open-iconic/webp/chevron-right-8x.webp differ diff --git a/the8eam/open-iconic/webp/chevron-right.webp b/the8eam/open-iconic/webp/chevron-right.webp new file mode 100644 index 0000000..419efe5 Binary files /dev/null and b/the8eam/open-iconic/webp/chevron-right.webp differ diff --git a/the8eam/open-iconic/webp/chevron-top-2x.webp b/the8eam/open-iconic/webp/chevron-top-2x.webp new file mode 100644 index 0000000..8395b0b Binary files /dev/null and b/the8eam/open-iconic/webp/chevron-top-2x.webp differ diff --git a/the8eam/open-iconic/webp/chevron-top-3x.webp b/the8eam/open-iconic/webp/chevron-top-3x.webp new file mode 100644 index 0000000..5de1e60 Binary files /dev/null and b/the8eam/open-iconic/webp/chevron-top-3x.webp differ diff --git a/the8eam/open-iconic/webp/chevron-top-4x.webp b/the8eam/open-iconic/webp/chevron-top-4x.webp new file mode 100644 index 0000000..504f722 Binary files /dev/null and b/the8eam/open-iconic/webp/chevron-top-4x.webp differ diff --git a/the8eam/open-iconic/webp/chevron-top-6x.webp b/the8eam/open-iconic/webp/chevron-top-6x.webp new file mode 100644 index 0000000..5bfe7ae Binary files /dev/null and b/the8eam/open-iconic/webp/chevron-top-6x.webp differ diff --git a/the8eam/open-iconic/webp/chevron-top-8x.webp b/the8eam/open-iconic/webp/chevron-top-8x.webp new file mode 100644 index 0000000..6438489 Binary files /dev/null and b/the8eam/open-iconic/webp/chevron-top-8x.webp differ diff --git a/the8eam/open-iconic/webp/chevron-top.webp b/the8eam/open-iconic/webp/chevron-top.webp new file mode 100644 index 0000000..007fc9f Binary files /dev/null and b/the8eam/open-iconic/webp/chevron-top.webp differ diff --git a/the8eam/open-iconic/webp/circle-check-2x.webp b/the8eam/open-iconic/webp/circle-check-2x.webp new file mode 100644 index 0000000..6911532 Binary files /dev/null and b/the8eam/open-iconic/webp/circle-check-2x.webp differ diff --git a/the8eam/open-iconic/webp/circle-check-3x.webp b/the8eam/open-iconic/webp/circle-check-3x.webp new file mode 100644 index 0000000..f2b91d7 Binary files /dev/null and b/the8eam/open-iconic/webp/circle-check-3x.webp differ diff --git a/the8eam/open-iconic/webp/circle-check-4x.webp b/the8eam/open-iconic/webp/circle-check-4x.webp new file mode 100644 index 0000000..20316f6 Binary files /dev/null and b/the8eam/open-iconic/webp/circle-check-4x.webp differ diff --git a/the8eam/open-iconic/webp/circle-check-6x.webp b/the8eam/open-iconic/webp/circle-check-6x.webp new file mode 100644 index 0000000..b01d009 Binary files /dev/null and b/the8eam/open-iconic/webp/circle-check-6x.webp differ diff --git a/the8eam/open-iconic/webp/circle-check-8x.webp b/the8eam/open-iconic/webp/circle-check-8x.webp new file mode 100644 index 0000000..74b84ee Binary files /dev/null and b/the8eam/open-iconic/webp/circle-check-8x.webp differ diff --git a/the8eam/open-iconic/webp/circle-check.webp b/the8eam/open-iconic/webp/circle-check.webp new file mode 100644 index 0000000..7216bac Binary files /dev/null and b/the8eam/open-iconic/webp/circle-check.webp differ diff --git a/the8eam/open-iconic/webp/circle-x-2x.webp b/the8eam/open-iconic/webp/circle-x-2x.webp new file mode 100644 index 0000000..3574e80 Binary files /dev/null and b/the8eam/open-iconic/webp/circle-x-2x.webp differ diff --git a/the8eam/open-iconic/webp/circle-x-3x.webp b/the8eam/open-iconic/webp/circle-x-3x.webp new file mode 100644 index 0000000..bc75500 Binary files /dev/null and b/the8eam/open-iconic/webp/circle-x-3x.webp differ diff --git a/the8eam/open-iconic/webp/circle-x-4x.webp b/the8eam/open-iconic/webp/circle-x-4x.webp new file mode 100644 index 0000000..409607c Binary files /dev/null and b/the8eam/open-iconic/webp/circle-x-4x.webp differ diff --git a/the8eam/open-iconic/webp/circle-x-6x.webp b/the8eam/open-iconic/webp/circle-x-6x.webp new file mode 100644 index 0000000..04429c5 Binary files /dev/null and b/the8eam/open-iconic/webp/circle-x-6x.webp differ diff --git a/the8eam/open-iconic/webp/circle-x-8x.webp b/the8eam/open-iconic/webp/circle-x-8x.webp new file mode 100644 index 0000000..f7f42b8 Binary files /dev/null and b/the8eam/open-iconic/webp/circle-x-8x.webp differ diff --git a/the8eam/open-iconic/webp/circle-x.webp b/the8eam/open-iconic/webp/circle-x.webp new file mode 100644 index 0000000..597b162 Binary files /dev/null and b/the8eam/open-iconic/webp/circle-x.webp differ diff --git a/the8eam/open-iconic/webp/clipboard-2x.webp b/the8eam/open-iconic/webp/clipboard-2x.webp new file mode 100644 index 0000000..f9a9b81 Binary files /dev/null and b/the8eam/open-iconic/webp/clipboard-2x.webp differ diff --git a/the8eam/open-iconic/webp/clipboard-3x.webp b/the8eam/open-iconic/webp/clipboard-3x.webp new file mode 100644 index 0000000..4272cef Binary files /dev/null and b/the8eam/open-iconic/webp/clipboard-3x.webp differ diff --git a/the8eam/open-iconic/webp/clipboard-4x.webp b/the8eam/open-iconic/webp/clipboard-4x.webp new file mode 100644 index 0000000..0de8d18 Binary files /dev/null and b/the8eam/open-iconic/webp/clipboard-4x.webp differ diff --git a/the8eam/open-iconic/webp/clipboard-6x.webp b/the8eam/open-iconic/webp/clipboard-6x.webp new file mode 100644 index 0000000..e3ca5b0 Binary files /dev/null and b/the8eam/open-iconic/webp/clipboard-6x.webp differ diff --git a/the8eam/open-iconic/webp/clipboard-8x.webp b/the8eam/open-iconic/webp/clipboard-8x.webp new file mode 100644 index 0000000..34f5b0f Binary files /dev/null and b/the8eam/open-iconic/webp/clipboard-8x.webp differ diff --git a/the8eam/open-iconic/webp/clipboard.webp b/the8eam/open-iconic/webp/clipboard.webp new file mode 100644 index 0000000..5111268 Binary files /dev/null and b/the8eam/open-iconic/webp/clipboard.webp differ diff --git a/the8eam/open-iconic/webp/clock-2x.webp b/the8eam/open-iconic/webp/clock-2x.webp new file mode 100644 index 0000000..4b14727 Binary files /dev/null and b/the8eam/open-iconic/webp/clock-2x.webp differ diff --git a/the8eam/open-iconic/webp/clock-3x.webp b/the8eam/open-iconic/webp/clock-3x.webp new file mode 100644 index 0000000..422e6be Binary files /dev/null and b/the8eam/open-iconic/webp/clock-3x.webp differ diff --git a/the8eam/open-iconic/webp/clock-4x.webp b/the8eam/open-iconic/webp/clock-4x.webp new file mode 100644 index 0000000..103a0db Binary files /dev/null and b/the8eam/open-iconic/webp/clock-4x.webp differ diff --git a/the8eam/open-iconic/webp/clock-6x.webp b/the8eam/open-iconic/webp/clock-6x.webp new file mode 100644 index 0000000..33698a2 Binary files /dev/null and b/the8eam/open-iconic/webp/clock-6x.webp differ diff --git a/the8eam/open-iconic/webp/clock-8x.webp b/the8eam/open-iconic/webp/clock-8x.webp new file mode 100644 index 0000000..e2eba0e Binary files /dev/null and b/the8eam/open-iconic/webp/clock-8x.webp differ diff --git a/the8eam/open-iconic/webp/clock.webp b/the8eam/open-iconic/webp/clock.webp new file mode 100644 index 0000000..752aa69 Binary files /dev/null and b/the8eam/open-iconic/webp/clock.webp differ diff --git a/the8eam/open-iconic/webp/cloud-2x.webp b/the8eam/open-iconic/webp/cloud-2x.webp new file mode 100644 index 0000000..917ccb5 Binary files /dev/null and b/the8eam/open-iconic/webp/cloud-2x.webp differ diff --git a/the8eam/open-iconic/webp/cloud-3x.webp b/the8eam/open-iconic/webp/cloud-3x.webp new file mode 100644 index 0000000..bb1c6ab Binary files /dev/null and b/the8eam/open-iconic/webp/cloud-3x.webp differ diff --git a/the8eam/open-iconic/webp/cloud-4x.webp b/the8eam/open-iconic/webp/cloud-4x.webp new file mode 100644 index 0000000..deb206d Binary files /dev/null and b/the8eam/open-iconic/webp/cloud-4x.webp differ diff --git a/the8eam/open-iconic/webp/cloud-6x.webp b/the8eam/open-iconic/webp/cloud-6x.webp new file mode 100644 index 0000000..f9b1489 Binary files /dev/null and b/the8eam/open-iconic/webp/cloud-6x.webp differ diff --git a/the8eam/open-iconic/webp/cloud-8x.webp b/the8eam/open-iconic/webp/cloud-8x.webp new file mode 100644 index 0000000..a2db4b6 Binary files /dev/null and b/the8eam/open-iconic/webp/cloud-8x.webp differ diff --git a/the8eam/open-iconic/webp/cloud-download-2x.webp b/the8eam/open-iconic/webp/cloud-download-2x.webp new file mode 100644 index 0000000..9cdb941 Binary files /dev/null and b/the8eam/open-iconic/webp/cloud-download-2x.webp differ diff --git a/the8eam/open-iconic/webp/cloud-download-3x.webp b/the8eam/open-iconic/webp/cloud-download-3x.webp new file mode 100644 index 0000000..0ac4aa0 Binary files /dev/null and b/the8eam/open-iconic/webp/cloud-download-3x.webp differ diff --git a/the8eam/open-iconic/webp/cloud-download-4x.webp b/the8eam/open-iconic/webp/cloud-download-4x.webp new file mode 100644 index 0000000..2f164c7 Binary files /dev/null and b/the8eam/open-iconic/webp/cloud-download-4x.webp differ diff --git a/the8eam/open-iconic/webp/cloud-download-6x.webp b/the8eam/open-iconic/webp/cloud-download-6x.webp new file mode 100644 index 0000000..c25726c Binary files /dev/null and b/the8eam/open-iconic/webp/cloud-download-6x.webp differ diff --git a/the8eam/open-iconic/webp/cloud-download-8x.webp b/the8eam/open-iconic/webp/cloud-download-8x.webp new file mode 100644 index 0000000..4986f4f Binary files /dev/null and b/the8eam/open-iconic/webp/cloud-download-8x.webp differ diff --git a/the8eam/open-iconic/webp/cloud-download.webp b/the8eam/open-iconic/webp/cloud-download.webp new file mode 100644 index 0000000..bacc3f3 Binary files /dev/null and b/the8eam/open-iconic/webp/cloud-download.webp differ diff --git a/the8eam/open-iconic/webp/cloud-upload-2x.webp b/the8eam/open-iconic/webp/cloud-upload-2x.webp new file mode 100644 index 0000000..8388e8b Binary files /dev/null and b/the8eam/open-iconic/webp/cloud-upload-2x.webp differ diff --git a/the8eam/open-iconic/webp/cloud-upload-3x.webp b/the8eam/open-iconic/webp/cloud-upload-3x.webp new file mode 100644 index 0000000..f51a7c9 Binary files /dev/null and b/the8eam/open-iconic/webp/cloud-upload-3x.webp differ diff --git a/the8eam/open-iconic/webp/cloud-upload-4x.webp b/the8eam/open-iconic/webp/cloud-upload-4x.webp new file mode 100644 index 0000000..6d192b4 Binary files /dev/null and b/the8eam/open-iconic/webp/cloud-upload-4x.webp differ diff --git a/the8eam/open-iconic/webp/cloud-upload-6x.webp b/the8eam/open-iconic/webp/cloud-upload-6x.webp new file mode 100644 index 0000000..25ec891 Binary files /dev/null and b/the8eam/open-iconic/webp/cloud-upload-6x.webp differ diff --git a/the8eam/open-iconic/webp/cloud-upload-8x.webp b/the8eam/open-iconic/webp/cloud-upload-8x.webp new file mode 100644 index 0000000..3d1eae9 Binary files /dev/null and b/the8eam/open-iconic/webp/cloud-upload-8x.webp differ diff --git a/the8eam/open-iconic/webp/cloud-upload.webp b/the8eam/open-iconic/webp/cloud-upload.webp new file mode 100644 index 0000000..8c2f376 Binary files /dev/null and b/the8eam/open-iconic/webp/cloud-upload.webp differ diff --git a/the8eam/open-iconic/webp/cloud.webp b/the8eam/open-iconic/webp/cloud.webp new file mode 100644 index 0000000..fa25a34 Binary files /dev/null and b/the8eam/open-iconic/webp/cloud.webp differ diff --git a/the8eam/open-iconic/webp/cloudy-2x.webp b/the8eam/open-iconic/webp/cloudy-2x.webp new file mode 100644 index 0000000..42d7265 Binary files /dev/null and b/the8eam/open-iconic/webp/cloudy-2x.webp differ diff --git a/the8eam/open-iconic/webp/cloudy-3x.webp b/the8eam/open-iconic/webp/cloudy-3x.webp new file mode 100644 index 0000000..6cd8f77 Binary files /dev/null and b/the8eam/open-iconic/webp/cloudy-3x.webp differ diff --git a/the8eam/open-iconic/webp/cloudy-4x.webp b/the8eam/open-iconic/webp/cloudy-4x.webp new file mode 100644 index 0000000..6eeda49 Binary files /dev/null and b/the8eam/open-iconic/webp/cloudy-4x.webp differ diff --git a/the8eam/open-iconic/webp/cloudy-6x.webp b/the8eam/open-iconic/webp/cloudy-6x.webp new file mode 100644 index 0000000..650df05 Binary files /dev/null and b/the8eam/open-iconic/webp/cloudy-6x.webp differ diff --git a/the8eam/open-iconic/webp/cloudy-8x.webp b/the8eam/open-iconic/webp/cloudy-8x.webp new file mode 100644 index 0000000..83f590c Binary files /dev/null and b/the8eam/open-iconic/webp/cloudy-8x.webp differ diff --git a/the8eam/open-iconic/webp/cloudy.webp b/the8eam/open-iconic/webp/cloudy.webp new file mode 100644 index 0000000..44310a8 Binary files /dev/null and b/the8eam/open-iconic/webp/cloudy.webp differ diff --git a/the8eam/open-iconic/webp/code-2x.webp b/the8eam/open-iconic/webp/code-2x.webp new file mode 100644 index 0000000..c379839 Binary files /dev/null and b/the8eam/open-iconic/webp/code-2x.webp differ diff --git a/the8eam/open-iconic/webp/code-3x.webp b/the8eam/open-iconic/webp/code-3x.webp new file mode 100644 index 0000000..3ea181a Binary files /dev/null and b/the8eam/open-iconic/webp/code-3x.webp differ diff --git a/the8eam/open-iconic/webp/code-4x.webp b/the8eam/open-iconic/webp/code-4x.webp new file mode 100644 index 0000000..85b7e0c Binary files /dev/null and b/the8eam/open-iconic/webp/code-4x.webp differ diff --git a/the8eam/open-iconic/webp/code-6x.webp b/the8eam/open-iconic/webp/code-6x.webp new file mode 100644 index 0000000..6ec8922 Binary files /dev/null and b/the8eam/open-iconic/webp/code-6x.webp differ diff --git a/the8eam/open-iconic/webp/code-8x.webp b/the8eam/open-iconic/webp/code-8x.webp new file mode 100644 index 0000000..37ad9c9 Binary files /dev/null and b/the8eam/open-iconic/webp/code-8x.webp differ diff --git a/the8eam/open-iconic/webp/code.webp b/the8eam/open-iconic/webp/code.webp new file mode 100644 index 0000000..5ddf9b4 Binary files /dev/null and b/the8eam/open-iconic/webp/code.webp differ diff --git a/the8eam/open-iconic/webp/cog-2x.webp b/the8eam/open-iconic/webp/cog-2x.webp new file mode 100644 index 0000000..ee09349 Binary files /dev/null and b/the8eam/open-iconic/webp/cog-2x.webp differ diff --git a/the8eam/open-iconic/webp/cog-3x.webp b/the8eam/open-iconic/webp/cog-3x.webp new file mode 100644 index 0000000..5c2cd86 Binary files /dev/null and b/the8eam/open-iconic/webp/cog-3x.webp differ diff --git a/the8eam/open-iconic/webp/cog-4x.webp b/the8eam/open-iconic/webp/cog-4x.webp new file mode 100644 index 0000000..736af6f Binary files /dev/null and b/the8eam/open-iconic/webp/cog-4x.webp differ diff --git a/the8eam/open-iconic/webp/cog-6x.webp b/the8eam/open-iconic/webp/cog-6x.webp new file mode 100644 index 0000000..5a9ccb5 Binary files /dev/null and b/the8eam/open-iconic/webp/cog-6x.webp differ diff --git a/the8eam/open-iconic/webp/cog-8x.webp b/the8eam/open-iconic/webp/cog-8x.webp new file mode 100644 index 0000000..eac7adf Binary files /dev/null and b/the8eam/open-iconic/webp/cog-8x.webp differ diff --git a/the8eam/open-iconic/webp/cog.webp b/the8eam/open-iconic/webp/cog.webp new file mode 100644 index 0000000..c75aba3 Binary files /dev/null and b/the8eam/open-iconic/webp/cog.webp differ diff --git a/the8eam/open-iconic/webp/collapse-down-2x.webp b/the8eam/open-iconic/webp/collapse-down-2x.webp new file mode 100644 index 0000000..b69d250 Binary files /dev/null and b/the8eam/open-iconic/webp/collapse-down-2x.webp differ diff --git a/the8eam/open-iconic/webp/collapse-down-3x.webp b/the8eam/open-iconic/webp/collapse-down-3x.webp new file mode 100644 index 0000000..596f23c Binary files /dev/null and b/the8eam/open-iconic/webp/collapse-down-3x.webp differ diff --git a/the8eam/open-iconic/webp/collapse-down-4x.webp b/the8eam/open-iconic/webp/collapse-down-4x.webp new file mode 100644 index 0000000..e633469 Binary files /dev/null and b/the8eam/open-iconic/webp/collapse-down-4x.webp differ diff --git a/the8eam/open-iconic/webp/collapse-down-6x.webp b/the8eam/open-iconic/webp/collapse-down-6x.webp new file mode 100644 index 0000000..b9363d2 Binary files /dev/null and b/the8eam/open-iconic/webp/collapse-down-6x.webp differ diff --git a/the8eam/open-iconic/webp/collapse-down-8x.webp b/the8eam/open-iconic/webp/collapse-down-8x.webp new file mode 100644 index 0000000..25ad946 Binary files /dev/null and b/the8eam/open-iconic/webp/collapse-down-8x.webp differ diff --git a/the8eam/open-iconic/webp/collapse-down.webp b/the8eam/open-iconic/webp/collapse-down.webp new file mode 100644 index 0000000..39f639f Binary files /dev/null and b/the8eam/open-iconic/webp/collapse-down.webp differ diff --git a/the8eam/open-iconic/webp/collapse-left-2x.webp b/the8eam/open-iconic/webp/collapse-left-2x.webp new file mode 100644 index 0000000..ad94ea4 Binary files /dev/null and b/the8eam/open-iconic/webp/collapse-left-2x.webp differ diff --git a/the8eam/open-iconic/webp/collapse-left-3x.webp b/the8eam/open-iconic/webp/collapse-left-3x.webp new file mode 100644 index 0000000..e9dd819 Binary files /dev/null and b/the8eam/open-iconic/webp/collapse-left-3x.webp differ diff --git a/the8eam/open-iconic/webp/collapse-left-4x.webp b/the8eam/open-iconic/webp/collapse-left-4x.webp new file mode 100644 index 0000000..f03413e Binary files /dev/null and b/the8eam/open-iconic/webp/collapse-left-4x.webp differ diff --git a/the8eam/open-iconic/webp/collapse-left-6x.webp b/the8eam/open-iconic/webp/collapse-left-6x.webp new file mode 100644 index 0000000..e0a3750 Binary files /dev/null and b/the8eam/open-iconic/webp/collapse-left-6x.webp differ diff --git a/the8eam/open-iconic/webp/collapse-left-8x.webp b/the8eam/open-iconic/webp/collapse-left-8x.webp new file mode 100644 index 0000000..34c2eaf Binary files /dev/null and b/the8eam/open-iconic/webp/collapse-left-8x.webp differ diff --git a/the8eam/open-iconic/webp/collapse-left.webp b/the8eam/open-iconic/webp/collapse-left.webp new file mode 100644 index 0000000..f174743 Binary files /dev/null and b/the8eam/open-iconic/webp/collapse-left.webp differ diff --git a/the8eam/open-iconic/webp/collapse-right-2x.webp b/the8eam/open-iconic/webp/collapse-right-2x.webp new file mode 100644 index 0000000..bffd341 Binary files /dev/null and b/the8eam/open-iconic/webp/collapse-right-2x.webp differ diff --git a/the8eam/open-iconic/webp/collapse-right-3x.webp b/the8eam/open-iconic/webp/collapse-right-3x.webp new file mode 100644 index 0000000..6851360 Binary files /dev/null and b/the8eam/open-iconic/webp/collapse-right-3x.webp differ diff --git a/the8eam/open-iconic/webp/collapse-right-4x.webp b/the8eam/open-iconic/webp/collapse-right-4x.webp new file mode 100644 index 0000000..139702e Binary files /dev/null and b/the8eam/open-iconic/webp/collapse-right-4x.webp differ diff --git a/the8eam/open-iconic/webp/collapse-right-6x.webp b/the8eam/open-iconic/webp/collapse-right-6x.webp new file mode 100644 index 0000000..3638f10 Binary files /dev/null and b/the8eam/open-iconic/webp/collapse-right-6x.webp differ diff --git a/the8eam/open-iconic/webp/collapse-right-8x.webp b/the8eam/open-iconic/webp/collapse-right-8x.webp new file mode 100644 index 0000000..dc80dda Binary files /dev/null and b/the8eam/open-iconic/webp/collapse-right-8x.webp differ diff --git a/the8eam/open-iconic/webp/collapse-right.webp b/the8eam/open-iconic/webp/collapse-right.webp new file mode 100644 index 0000000..a51423a Binary files /dev/null and b/the8eam/open-iconic/webp/collapse-right.webp differ diff --git a/the8eam/open-iconic/webp/collapse-up-2x.webp b/the8eam/open-iconic/webp/collapse-up-2x.webp new file mode 100644 index 0000000..d9b837c Binary files /dev/null and b/the8eam/open-iconic/webp/collapse-up-2x.webp differ diff --git a/the8eam/open-iconic/webp/collapse-up-3x.webp b/the8eam/open-iconic/webp/collapse-up-3x.webp new file mode 100644 index 0000000..79c5089 Binary files /dev/null and b/the8eam/open-iconic/webp/collapse-up-3x.webp differ diff --git a/the8eam/open-iconic/webp/collapse-up-4x.webp b/the8eam/open-iconic/webp/collapse-up-4x.webp new file mode 100644 index 0000000..a1268c9 Binary files /dev/null and b/the8eam/open-iconic/webp/collapse-up-4x.webp differ diff --git a/the8eam/open-iconic/webp/collapse-up-6x.webp b/the8eam/open-iconic/webp/collapse-up-6x.webp new file mode 100644 index 0000000..f3a269f Binary files /dev/null and b/the8eam/open-iconic/webp/collapse-up-6x.webp differ diff --git a/the8eam/open-iconic/webp/collapse-up-8x.webp b/the8eam/open-iconic/webp/collapse-up-8x.webp new file mode 100644 index 0000000..dce3960 Binary files /dev/null and b/the8eam/open-iconic/webp/collapse-up-8x.webp differ diff --git a/the8eam/open-iconic/webp/collapse-up.webp b/the8eam/open-iconic/webp/collapse-up.webp new file mode 100644 index 0000000..a8ba1cc Binary files /dev/null and b/the8eam/open-iconic/webp/collapse-up.webp differ diff --git a/the8eam/open-iconic/webp/command-2x.webp b/the8eam/open-iconic/webp/command-2x.webp new file mode 100644 index 0000000..ea0e1ad Binary files /dev/null and b/the8eam/open-iconic/webp/command-2x.webp differ diff --git a/the8eam/open-iconic/webp/command-3x.webp b/the8eam/open-iconic/webp/command-3x.webp new file mode 100644 index 0000000..0c86777 Binary files /dev/null and b/the8eam/open-iconic/webp/command-3x.webp differ diff --git a/the8eam/open-iconic/webp/command-4x.webp b/the8eam/open-iconic/webp/command-4x.webp new file mode 100644 index 0000000..d8bad71 Binary files /dev/null and b/the8eam/open-iconic/webp/command-4x.webp differ diff --git a/the8eam/open-iconic/webp/command-6x.webp b/the8eam/open-iconic/webp/command-6x.webp new file mode 100644 index 0000000..2243b09 Binary files /dev/null and b/the8eam/open-iconic/webp/command-6x.webp differ diff --git a/the8eam/open-iconic/webp/command-8x.webp b/the8eam/open-iconic/webp/command-8x.webp new file mode 100644 index 0000000..3cc247e Binary files /dev/null and b/the8eam/open-iconic/webp/command-8x.webp differ diff --git a/the8eam/open-iconic/webp/command.webp b/the8eam/open-iconic/webp/command.webp new file mode 100644 index 0000000..9b0ef26 Binary files /dev/null and b/the8eam/open-iconic/webp/command.webp differ diff --git a/the8eam/open-iconic/webp/comment-square-2x.webp b/the8eam/open-iconic/webp/comment-square-2x.webp new file mode 100644 index 0000000..23ad6ed Binary files /dev/null and b/the8eam/open-iconic/webp/comment-square-2x.webp differ diff --git a/the8eam/open-iconic/webp/comment-square-3x.webp b/the8eam/open-iconic/webp/comment-square-3x.webp new file mode 100644 index 0000000..95cd319 Binary files /dev/null and b/the8eam/open-iconic/webp/comment-square-3x.webp differ diff --git a/the8eam/open-iconic/webp/comment-square-4x.webp b/the8eam/open-iconic/webp/comment-square-4x.webp new file mode 100644 index 0000000..f97f0c1 Binary files /dev/null and b/the8eam/open-iconic/webp/comment-square-4x.webp differ diff --git a/the8eam/open-iconic/webp/comment-square-6x.webp b/the8eam/open-iconic/webp/comment-square-6x.webp new file mode 100644 index 0000000..a361597 Binary files /dev/null and b/the8eam/open-iconic/webp/comment-square-6x.webp differ diff --git a/the8eam/open-iconic/webp/comment-square-8x.webp b/the8eam/open-iconic/webp/comment-square-8x.webp new file mode 100644 index 0000000..6b3c313 Binary files /dev/null and b/the8eam/open-iconic/webp/comment-square-8x.webp differ diff --git a/the8eam/open-iconic/webp/comment-square.webp b/the8eam/open-iconic/webp/comment-square.webp new file mode 100644 index 0000000..13516c6 Binary files /dev/null and b/the8eam/open-iconic/webp/comment-square.webp differ diff --git a/the8eam/open-iconic/webp/compass-2x.webp b/the8eam/open-iconic/webp/compass-2x.webp new file mode 100644 index 0000000..4fbba9b Binary files /dev/null and b/the8eam/open-iconic/webp/compass-2x.webp differ diff --git a/the8eam/open-iconic/webp/compass-3x.webp b/the8eam/open-iconic/webp/compass-3x.webp new file mode 100644 index 0000000..c38e43d Binary files /dev/null and b/the8eam/open-iconic/webp/compass-3x.webp differ diff --git a/the8eam/open-iconic/webp/compass-4x.webp b/the8eam/open-iconic/webp/compass-4x.webp new file mode 100644 index 0000000..c58e23b Binary files /dev/null and b/the8eam/open-iconic/webp/compass-4x.webp differ diff --git a/the8eam/open-iconic/webp/compass-6x.webp b/the8eam/open-iconic/webp/compass-6x.webp new file mode 100644 index 0000000..1b22622 Binary files /dev/null and b/the8eam/open-iconic/webp/compass-6x.webp differ diff --git a/the8eam/open-iconic/webp/compass-8x.webp b/the8eam/open-iconic/webp/compass-8x.webp new file mode 100644 index 0000000..b5b4b0b Binary files /dev/null and b/the8eam/open-iconic/webp/compass-8x.webp differ diff --git a/the8eam/open-iconic/webp/compass.webp b/the8eam/open-iconic/webp/compass.webp new file mode 100644 index 0000000..7bbe5e3 Binary files /dev/null and b/the8eam/open-iconic/webp/compass.webp differ diff --git a/the8eam/open-iconic/webp/contrast-2x.webp b/the8eam/open-iconic/webp/contrast-2x.webp new file mode 100644 index 0000000..3d8aba3 Binary files /dev/null and b/the8eam/open-iconic/webp/contrast-2x.webp differ diff --git a/the8eam/open-iconic/webp/contrast-3x.webp b/the8eam/open-iconic/webp/contrast-3x.webp new file mode 100644 index 0000000..6738444 Binary files /dev/null and b/the8eam/open-iconic/webp/contrast-3x.webp differ diff --git a/the8eam/open-iconic/webp/contrast-4x.webp b/the8eam/open-iconic/webp/contrast-4x.webp new file mode 100644 index 0000000..2d70149 Binary files /dev/null and b/the8eam/open-iconic/webp/contrast-4x.webp differ diff --git a/the8eam/open-iconic/webp/contrast-6x.webp b/the8eam/open-iconic/webp/contrast-6x.webp new file mode 100644 index 0000000..de9b811 Binary files /dev/null and b/the8eam/open-iconic/webp/contrast-6x.webp differ diff --git a/the8eam/open-iconic/webp/contrast-8x.webp b/the8eam/open-iconic/webp/contrast-8x.webp new file mode 100644 index 0000000..1190fbe Binary files /dev/null and b/the8eam/open-iconic/webp/contrast-8x.webp differ diff --git a/the8eam/open-iconic/webp/contrast.webp b/the8eam/open-iconic/webp/contrast.webp new file mode 100644 index 0000000..4704c50 Binary files /dev/null and b/the8eam/open-iconic/webp/contrast.webp differ diff --git a/the8eam/open-iconic/webp/copywriting-2x.webp b/the8eam/open-iconic/webp/copywriting-2x.webp new file mode 100644 index 0000000..6776784 Binary files /dev/null and b/the8eam/open-iconic/webp/copywriting-2x.webp differ diff --git a/the8eam/open-iconic/webp/copywriting-3x.webp b/the8eam/open-iconic/webp/copywriting-3x.webp new file mode 100644 index 0000000..7476192 Binary files /dev/null and b/the8eam/open-iconic/webp/copywriting-3x.webp differ diff --git a/the8eam/open-iconic/webp/copywriting-4x.webp b/the8eam/open-iconic/webp/copywriting-4x.webp new file mode 100644 index 0000000..b8600d2 Binary files /dev/null and b/the8eam/open-iconic/webp/copywriting-4x.webp differ diff --git a/the8eam/open-iconic/webp/copywriting-6x.webp b/the8eam/open-iconic/webp/copywriting-6x.webp new file mode 100644 index 0000000..ec673d4 Binary files /dev/null and b/the8eam/open-iconic/webp/copywriting-6x.webp differ diff --git a/the8eam/open-iconic/webp/copywriting-8x.webp b/the8eam/open-iconic/webp/copywriting-8x.webp new file mode 100644 index 0000000..ac395c0 Binary files /dev/null and b/the8eam/open-iconic/webp/copywriting-8x.webp differ diff --git a/the8eam/open-iconic/webp/copywriting.webp b/the8eam/open-iconic/webp/copywriting.webp new file mode 100644 index 0000000..7c7ee2c Binary files /dev/null and b/the8eam/open-iconic/webp/copywriting.webp differ diff --git a/the8eam/open-iconic/webp/credit-card-2x.webp b/the8eam/open-iconic/webp/credit-card-2x.webp new file mode 100644 index 0000000..af2c321 Binary files /dev/null and b/the8eam/open-iconic/webp/credit-card-2x.webp differ diff --git a/the8eam/open-iconic/webp/credit-card-3x.webp b/the8eam/open-iconic/webp/credit-card-3x.webp new file mode 100644 index 0000000..a354a05 Binary files /dev/null and b/the8eam/open-iconic/webp/credit-card-3x.webp differ diff --git a/the8eam/open-iconic/webp/credit-card-4x.webp b/the8eam/open-iconic/webp/credit-card-4x.webp new file mode 100644 index 0000000..b98e47b Binary files /dev/null and b/the8eam/open-iconic/webp/credit-card-4x.webp differ diff --git a/the8eam/open-iconic/webp/credit-card-6x.webp b/the8eam/open-iconic/webp/credit-card-6x.webp new file mode 100644 index 0000000..7de83a4 Binary files /dev/null and b/the8eam/open-iconic/webp/credit-card-6x.webp differ diff --git a/the8eam/open-iconic/webp/credit-card-8x.webp b/the8eam/open-iconic/webp/credit-card-8x.webp new file mode 100644 index 0000000..bc1decf Binary files /dev/null and b/the8eam/open-iconic/webp/credit-card-8x.webp differ diff --git a/the8eam/open-iconic/webp/credit-card.webp b/the8eam/open-iconic/webp/credit-card.webp new file mode 100644 index 0000000..fee9893 Binary files /dev/null and b/the8eam/open-iconic/webp/credit-card.webp differ diff --git a/the8eam/open-iconic/webp/crop-2x.webp b/the8eam/open-iconic/webp/crop-2x.webp new file mode 100644 index 0000000..73ac2f6 Binary files /dev/null and b/the8eam/open-iconic/webp/crop-2x.webp differ diff --git a/the8eam/open-iconic/webp/crop-3x.webp b/the8eam/open-iconic/webp/crop-3x.webp new file mode 100644 index 0000000..6004677 Binary files /dev/null and b/the8eam/open-iconic/webp/crop-3x.webp differ diff --git a/the8eam/open-iconic/webp/crop-4x.webp b/the8eam/open-iconic/webp/crop-4x.webp new file mode 100644 index 0000000..435d8a8 Binary files /dev/null and b/the8eam/open-iconic/webp/crop-4x.webp differ diff --git a/the8eam/open-iconic/webp/crop-6x.webp b/the8eam/open-iconic/webp/crop-6x.webp new file mode 100644 index 0000000..21c1b68 Binary files /dev/null and b/the8eam/open-iconic/webp/crop-6x.webp differ diff --git a/the8eam/open-iconic/webp/crop-8x.webp b/the8eam/open-iconic/webp/crop-8x.webp new file mode 100644 index 0000000..6600f84 Binary files /dev/null and b/the8eam/open-iconic/webp/crop-8x.webp differ diff --git a/the8eam/open-iconic/webp/crop.webp b/the8eam/open-iconic/webp/crop.webp new file mode 100644 index 0000000..5337726 Binary files /dev/null and b/the8eam/open-iconic/webp/crop.webp differ diff --git a/the8eam/open-iconic/webp/dashboard-2x.webp b/the8eam/open-iconic/webp/dashboard-2x.webp new file mode 100644 index 0000000..7db9fff Binary files /dev/null and b/the8eam/open-iconic/webp/dashboard-2x.webp differ diff --git a/the8eam/open-iconic/webp/dashboard-3x.webp b/the8eam/open-iconic/webp/dashboard-3x.webp new file mode 100644 index 0000000..cc57665 Binary files /dev/null and b/the8eam/open-iconic/webp/dashboard-3x.webp differ diff --git a/the8eam/open-iconic/webp/dashboard-4x.webp b/the8eam/open-iconic/webp/dashboard-4x.webp new file mode 100644 index 0000000..9dd7571 Binary files /dev/null and b/the8eam/open-iconic/webp/dashboard-4x.webp differ diff --git a/the8eam/open-iconic/webp/dashboard-6x.webp b/the8eam/open-iconic/webp/dashboard-6x.webp new file mode 100644 index 0000000..7319531 Binary files /dev/null and b/the8eam/open-iconic/webp/dashboard-6x.webp differ diff --git a/the8eam/open-iconic/webp/dashboard-8x.webp b/the8eam/open-iconic/webp/dashboard-8x.webp new file mode 100644 index 0000000..3a660c1 Binary files /dev/null and b/the8eam/open-iconic/webp/dashboard-8x.webp differ diff --git a/the8eam/open-iconic/webp/dashboard.webp b/the8eam/open-iconic/webp/dashboard.webp new file mode 100644 index 0000000..25b27ec Binary files /dev/null and b/the8eam/open-iconic/webp/dashboard.webp differ diff --git a/the8eam/open-iconic/webp/data-transfer-download-2x.webp b/the8eam/open-iconic/webp/data-transfer-download-2x.webp new file mode 100644 index 0000000..e9e6530 Binary files /dev/null and b/the8eam/open-iconic/webp/data-transfer-download-2x.webp differ diff --git a/the8eam/open-iconic/webp/data-transfer-download-3x.webp b/the8eam/open-iconic/webp/data-transfer-download-3x.webp new file mode 100644 index 0000000..afd4328 Binary files /dev/null and b/the8eam/open-iconic/webp/data-transfer-download-3x.webp differ diff --git a/the8eam/open-iconic/webp/data-transfer-download-4x.webp b/the8eam/open-iconic/webp/data-transfer-download-4x.webp new file mode 100644 index 0000000..f058314 Binary files /dev/null and b/the8eam/open-iconic/webp/data-transfer-download-4x.webp differ diff --git a/the8eam/open-iconic/webp/data-transfer-download-6x.webp b/the8eam/open-iconic/webp/data-transfer-download-6x.webp new file mode 100644 index 0000000..6ffbc7d Binary files /dev/null and b/the8eam/open-iconic/webp/data-transfer-download-6x.webp differ diff --git a/the8eam/open-iconic/webp/data-transfer-download-8x.webp b/the8eam/open-iconic/webp/data-transfer-download-8x.webp new file mode 100644 index 0000000..68fb04c Binary files /dev/null and b/the8eam/open-iconic/webp/data-transfer-download-8x.webp differ diff --git a/the8eam/open-iconic/webp/data-transfer-download.webp b/the8eam/open-iconic/webp/data-transfer-download.webp new file mode 100644 index 0000000..3515dd1 Binary files /dev/null and b/the8eam/open-iconic/webp/data-transfer-download.webp differ diff --git a/the8eam/open-iconic/webp/data-transfer-upload-2x.webp b/the8eam/open-iconic/webp/data-transfer-upload-2x.webp new file mode 100644 index 0000000..01d10e1 Binary files /dev/null and b/the8eam/open-iconic/webp/data-transfer-upload-2x.webp differ diff --git a/the8eam/open-iconic/webp/data-transfer-upload-3x.webp b/the8eam/open-iconic/webp/data-transfer-upload-3x.webp new file mode 100644 index 0000000..14d7963 Binary files /dev/null and b/the8eam/open-iconic/webp/data-transfer-upload-3x.webp differ diff --git a/the8eam/open-iconic/webp/data-transfer-upload-4x.webp b/the8eam/open-iconic/webp/data-transfer-upload-4x.webp new file mode 100644 index 0000000..410117e Binary files /dev/null and b/the8eam/open-iconic/webp/data-transfer-upload-4x.webp differ diff --git a/the8eam/open-iconic/webp/data-transfer-upload-6x.webp b/the8eam/open-iconic/webp/data-transfer-upload-6x.webp new file mode 100644 index 0000000..f054a85 Binary files /dev/null and b/the8eam/open-iconic/webp/data-transfer-upload-6x.webp differ diff --git a/the8eam/open-iconic/webp/data-transfer-upload-8x.webp b/the8eam/open-iconic/webp/data-transfer-upload-8x.webp new file mode 100644 index 0000000..5d69d01 Binary files /dev/null and b/the8eam/open-iconic/webp/data-transfer-upload-8x.webp differ diff --git a/the8eam/open-iconic/webp/data-transfer-upload.webp b/the8eam/open-iconic/webp/data-transfer-upload.webp new file mode 100644 index 0000000..a1332c0 Binary files /dev/null and b/the8eam/open-iconic/webp/data-transfer-upload.webp differ diff --git a/the8eam/open-iconic/webp/delete-2x.webp b/the8eam/open-iconic/webp/delete-2x.webp new file mode 100644 index 0000000..5daf9ee Binary files /dev/null and b/the8eam/open-iconic/webp/delete-2x.webp differ diff --git a/the8eam/open-iconic/webp/delete-3x.webp b/the8eam/open-iconic/webp/delete-3x.webp new file mode 100644 index 0000000..cf6d26e Binary files /dev/null and b/the8eam/open-iconic/webp/delete-3x.webp differ diff --git a/the8eam/open-iconic/webp/delete-4x.webp b/the8eam/open-iconic/webp/delete-4x.webp new file mode 100644 index 0000000..e919560 Binary files /dev/null and b/the8eam/open-iconic/webp/delete-4x.webp differ diff --git a/the8eam/open-iconic/webp/delete-6x.webp b/the8eam/open-iconic/webp/delete-6x.webp new file mode 100644 index 0000000..ec59ad5 Binary files /dev/null and b/the8eam/open-iconic/webp/delete-6x.webp differ diff --git a/the8eam/open-iconic/webp/delete-8x.webp b/the8eam/open-iconic/webp/delete-8x.webp new file mode 100644 index 0000000..f3b42c7 Binary files /dev/null and b/the8eam/open-iconic/webp/delete-8x.webp differ diff --git a/the8eam/open-iconic/webp/delete.webp b/the8eam/open-iconic/webp/delete.webp new file mode 100644 index 0000000..7cc531a Binary files /dev/null and b/the8eam/open-iconic/webp/delete.webp differ diff --git a/the8eam/open-iconic/webp/dial-2x.webp b/the8eam/open-iconic/webp/dial-2x.webp new file mode 100644 index 0000000..1299ab6 Binary files /dev/null and b/the8eam/open-iconic/webp/dial-2x.webp differ diff --git a/the8eam/open-iconic/webp/dial-3x.webp b/the8eam/open-iconic/webp/dial-3x.webp new file mode 100644 index 0000000..929d991 Binary files /dev/null and b/the8eam/open-iconic/webp/dial-3x.webp differ diff --git a/the8eam/open-iconic/webp/dial-4x.webp b/the8eam/open-iconic/webp/dial-4x.webp new file mode 100644 index 0000000..946f3dc Binary files /dev/null and b/the8eam/open-iconic/webp/dial-4x.webp differ diff --git a/the8eam/open-iconic/webp/dial-6x.webp b/the8eam/open-iconic/webp/dial-6x.webp new file mode 100644 index 0000000..161ec94 Binary files /dev/null and b/the8eam/open-iconic/webp/dial-6x.webp differ diff --git a/the8eam/open-iconic/webp/dial-8x.webp b/the8eam/open-iconic/webp/dial-8x.webp new file mode 100644 index 0000000..649e3e6 Binary files /dev/null and b/the8eam/open-iconic/webp/dial-8x.webp differ diff --git a/the8eam/open-iconic/webp/dial.webp b/the8eam/open-iconic/webp/dial.webp new file mode 100644 index 0000000..1e9e5fc Binary files /dev/null and b/the8eam/open-iconic/webp/dial.webp differ diff --git a/the8eam/open-iconic/webp/document-2x.webp b/the8eam/open-iconic/webp/document-2x.webp new file mode 100644 index 0000000..e9fdf0e Binary files /dev/null and b/the8eam/open-iconic/webp/document-2x.webp differ diff --git a/the8eam/open-iconic/webp/document-3x.webp b/the8eam/open-iconic/webp/document-3x.webp new file mode 100644 index 0000000..0efa08a Binary files /dev/null and b/the8eam/open-iconic/webp/document-3x.webp differ diff --git a/the8eam/open-iconic/webp/document-4x.webp b/the8eam/open-iconic/webp/document-4x.webp new file mode 100644 index 0000000..f2db9d2 Binary files /dev/null and b/the8eam/open-iconic/webp/document-4x.webp differ diff --git a/the8eam/open-iconic/webp/document-6x.webp b/the8eam/open-iconic/webp/document-6x.webp new file mode 100644 index 0000000..ce70895 Binary files /dev/null and b/the8eam/open-iconic/webp/document-6x.webp differ diff --git a/the8eam/open-iconic/webp/document-8x.webp b/the8eam/open-iconic/webp/document-8x.webp new file mode 100644 index 0000000..7ff3884 Binary files /dev/null and b/the8eam/open-iconic/webp/document-8x.webp differ diff --git a/the8eam/open-iconic/webp/document.webp b/the8eam/open-iconic/webp/document.webp new file mode 100644 index 0000000..138fed0 Binary files /dev/null and b/the8eam/open-iconic/webp/document.webp differ diff --git a/the8eam/open-iconic/webp/dollar-2x.webp b/the8eam/open-iconic/webp/dollar-2x.webp new file mode 100644 index 0000000..85cbc6e Binary files /dev/null and b/the8eam/open-iconic/webp/dollar-2x.webp differ diff --git a/the8eam/open-iconic/webp/dollar-3x.webp b/the8eam/open-iconic/webp/dollar-3x.webp new file mode 100644 index 0000000..cb85623 Binary files /dev/null and b/the8eam/open-iconic/webp/dollar-3x.webp differ diff --git a/the8eam/open-iconic/webp/dollar-4x.webp b/the8eam/open-iconic/webp/dollar-4x.webp new file mode 100644 index 0000000..2caffd4 Binary files /dev/null and b/the8eam/open-iconic/webp/dollar-4x.webp differ diff --git a/the8eam/open-iconic/webp/dollar-6x.webp b/the8eam/open-iconic/webp/dollar-6x.webp new file mode 100644 index 0000000..2e57b80 Binary files /dev/null and b/the8eam/open-iconic/webp/dollar-6x.webp differ diff --git a/the8eam/open-iconic/webp/dollar-8x.webp b/the8eam/open-iconic/webp/dollar-8x.webp new file mode 100644 index 0000000..e15206d Binary files /dev/null and b/the8eam/open-iconic/webp/dollar-8x.webp differ diff --git a/the8eam/open-iconic/webp/dollar.webp b/the8eam/open-iconic/webp/dollar.webp new file mode 100644 index 0000000..8b98a59 Binary files /dev/null and b/the8eam/open-iconic/webp/dollar.webp differ diff --git a/the8eam/open-iconic/webp/double-quote-sans-left-2x.webp b/the8eam/open-iconic/webp/double-quote-sans-left-2x.webp new file mode 100644 index 0000000..2286fde Binary files /dev/null and b/the8eam/open-iconic/webp/double-quote-sans-left-2x.webp differ diff --git a/the8eam/open-iconic/webp/double-quote-sans-left-3x.webp b/the8eam/open-iconic/webp/double-quote-sans-left-3x.webp new file mode 100644 index 0000000..abaa9f1 Binary files /dev/null and b/the8eam/open-iconic/webp/double-quote-sans-left-3x.webp differ diff --git a/the8eam/open-iconic/webp/double-quote-sans-left-4x.webp b/the8eam/open-iconic/webp/double-quote-sans-left-4x.webp new file mode 100644 index 0000000..75680ca Binary files /dev/null and b/the8eam/open-iconic/webp/double-quote-sans-left-4x.webp differ diff --git a/the8eam/open-iconic/webp/double-quote-sans-left-6x.webp b/the8eam/open-iconic/webp/double-quote-sans-left-6x.webp new file mode 100644 index 0000000..7d3ea27 Binary files /dev/null and b/the8eam/open-iconic/webp/double-quote-sans-left-6x.webp differ diff --git a/the8eam/open-iconic/webp/double-quote-sans-left-8x.webp b/the8eam/open-iconic/webp/double-quote-sans-left-8x.webp new file mode 100644 index 0000000..020225e Binary files /dev/null and b/the8eam/open-iconic/webp/double-quote-sans-left-8x.webp differ diff --git a/the8eam/open-iconic/webp/double-quote-sans-left.webp b/the8eam/open-iconic/webp/double-quote-sans-left.webp new file mode 100644 index 0000000..968f002 Binary files /dev/null and b/the8eam/open-iconic/webp/double-quote-sans-left.webp differ diff --git a/the8eam/open-iconic/webp/double-quote-sans-right-2x.webp b/the8eam/open-iconic/webp/double-quote-sans-right-2x.webp new file mode 100644 index 0000000..80d3f2b Binary files /dev/null and b/the8eam/open-iconic/webp/double-quote-sans-right-2x.webp differ diff --git a/the8eam/open-iconic/webp/double-quote-sans-right-3x.webp b/the8eam/open-iconic/webp/double-quote-sans-right-3x.webp new file mode 100644 index 0000000..7ada455 Binary files /dev/null and b/the8eam/open-iconic/webp/double-quote-sans-right-3x.webp differ diff --git a/the8eam/open-iconic/webp/double-quote-sans-right-4x.webp b/the8eam/open-iconic/webp/double-quote-sans-right-4x.webp new file mode 100644 index 0000000..42ff16e Binary files /dev/null and b/the8eam/open-iconic/webp/double-quote-sans-right-4x.webp differ diff --git a/the8eam/open-iconic/webp/double-quote-sans-right-6x.webp b/the8eam/open-iconic/webp/double-quote-sans-right-6x.webp new file mode 100644 index 0000000..7df5189 Binary files /dev/null and b/the8eam/open-iconic/webp/double-quote-sans-right-6x.webp differ diff --git a/the8eam/open-iconic/webp/double-quote-sans-right-8x.webp b/the8eam/open-iconic/webp/double-quote-sans-right-8x.webp new file mode 100644 index 0000000..8bc1f09 Binary files /dev/null and b/the8eam/open-iconic/webp/double-quote-sans-right-8x.webp differ diff --git a/the8eam/open-iconic/webp/double-quote-sans-right.webp b/the8eam/open-iconic/webp/double-quote-sans-right.webp new file mode 100644 index 0000000..18348f4 Binary files /dev/null and b/the8eam/open-iconic/webp/double-quote-sans-right.webp differ diff --git a/the8eam/open-iconic/webp/double-quote-serif-left-2x.webp b/the8eam/open-iconic/webp/double-quote-serif-left-2x.webp new file mode 100644 index 0000000..202b842 Binary files /dev/null and b/the8eam/open-iconic/webp/double-quote-serif-left-2x.webp differ diff --git a/the8eam/open-iconic/webp/double-quote-serif-left-3x.webp b/the8eam/open-iconic/webp/double-quote-serif-left-3x.webp new file mode 100644 index 0000000..d984e70 Binary files /dev/null and b/the8eam/open-iconic/webp/double-quote-serif-left-3x.webp differ diff --git a/the8eam/open-iconic/webp/double-quote-serif-left-4x.webp b/the8eam/open-iconic/webp/double-quote-serif-left-4x.webp new file mode 100644 index 0000000..1b097dc Binary files /dev/null and b/the8eam/open-iconic/webp/double-quote-serif-left-4x.webp differ diff --git a/the8eam/open-iconic/webp/double-quote-serif-left-6x.webp b/the8eam/open-iconic/webp/double-quote-serif-left-6x.webp new file mode 100644 index 0000000..cc84f31 Binary files /dev/null and b/the8eam/open-iconic/webp/double-quote-serif-left-6x.webp differ diff --git a/the8eam/open-iconic/webp/double-quote-serif-left-8x.webp b/the8eam/open-iconic/webp/double-quote-serif-left-8x.webp new file mode 100644 index 0000000..1420ba6 Binary files /dev/null and b/the8eam/open-iconic/webp/double-quote-serif-left-8x.webp differ diff --git a/the8eam/open-iconic/webp/double-quote-serif-left.webp b/the8eam/open-iconic/webp/double-quote-serif-left.webp new file mode 100644 index 0000000..40885bf Binary files /dev/null and b/the8eam/open-iconic/webp/double-quote-serif-left.webp differ diff --git a/the8eam/open-iconic/webp/double-quote-serif-right-2x.webp b/the8eam/open-iconic/webp/double-quote-serif-right-2x.webp new file mode 100644 index 0000000..ab1e26e Binary files /dev/null and b/the8eam/open-iconic/webp/double-quote-serif-right-2x.webp differ diff --git a/the8eam/open-iconic/webp/double-quote-serif-right-3x.webp b/the8eam/open-iconic/webp/double-quote-serif-right-3x.webp new file mode 100644 index 0000000..f9e4121 Binary files /dev/null and b/the8eam/open-iconic/webp/double-quote-serif-right-3x.webp differ diff --git a/the8eam/open-iconic/webp/double-quote-serif-right-4x.webp b/the8eam/open-iconic/webp/double-quote-serif-right-4x.webp new file mode 100644 index 0000000..d4e67d3 Binary files /dev/null and b/the8eam/open-iconic/webp/double-quote-serif-right-4x.webp differ diff --git a/the8eam/open-iconic/webp/double-quote-serif-right-6x.webp b/the8eam/open-iconic/webp/double-quote-serif-right-6x.webp new file mode 100644 index 0000000..1c5d7f0 Binary files /dev/null and b/the8eam/open-iconic/webp/double-quote-serif-right-6x.webp differ diff --git a/the8eam/open-iconic/webp/double-quote-serif-right-8x.webp b/the8eam/open-iconic/webp/double-quote-serif-right-8x.webp new file mode 100644 index 0000000..89736b0 Binary files /dev/null and b/the8eam/open-iconic/webp/double-quote-serif-right-8x.webp differ diff --git a/the8eam/open-iconic/webp/double-quote-serif-right.webp b/the8eam/open-iconic/webp/double-quote-serif-right.webp new file mode 100644 index 0000000..a9f5fe1 Binary files /dev/null and b/the8eam/open-iconic/webp/double-quote-serif-right.webp differ diff --git a/the8eam/open-iconic/webp/droplet-2x.webp b/the8eam/open-iconic/webp/droplet-2x.webp new file mode 100644 index 0000000..d27463d Binary files /dev/null and b/the8eam/open-iconic/webp/droplet-2x.webp differ diff --git a/the8eam/open-iconic/webp/droplet-3x.webp b/the8eam/open-iconic/webp/droplet-3x.webp new file mode 100644 index 0000000..2234dd3 Binary files /dev/null and b/the8eam/open-iconic/webp/droplet-3x.webp differ diff --git a/the8eam/open-iconic/webp/droplet-4x.webp b/the8eam/open-iconic/webp/droplet-4x.webp new file mode 100644 index 0000000..20b0afa Binary files /dev/null and b/the8eam/open-iconic/webp/droplet-4x.webp differ diff --git a/the8eam/open-iconic/webp/droplet-6x.webp b/the8eam/open-iconic/webp/droplet-6x.webp new file mode 100644 index 0000000..f473f81 Binary files /dev/null and b/the8eam/open-iconic/webp/droplet-6x.webp differ diff --git a/the8eam/open-iconic/webp/droplet-8x.webp b/the8eam/open-iconic/webp/droplet-8x.webp new file mode 100644 index 0000000..86412cb Binary files /dev/null and b/the8eam/open-iconic/webp/droplet-8x.webp differ diff --git a/the8eam/open-iconic/webp/droplet.webp b/the8eam/open-iconic/webp/droplet.webp new file mode 100644 index 0000000..17fddd9 Binary files /dev/null and b/the8eam/open-iconic/webp/droplet.webp differ diff --git a/the8eam/open-iconic/webp/eject-2x.webp b/the8eam/open-iconic/webp/eject-2x.webp new file mode 100644 index 0000000..6930e4b Binary files /dev/null and b/the8eam/open-iconic/webp/eject-2x.webp differ diff --git a/the8eam/open-iconic/webp/eject-3x.webp b/the8eam/open-iconic/webp/eject-3x.webp new file mode 100644 index 0000000..494bd87 Binary files /dev/null and b/the8eam/open-iconic/webp/eject-3x.webp differ diff --git a/the8eam/open-iconic/webp/eject-4x.webp b/the8eam/open-iconic/webp/eject-4x.webp new file mode 100644 index 0000000..fb74074 Binary files /dev/null and b/the8eam/open-iconic/webp/eject-4x.webp differ diff --git a/the8eam/open-iconic/webp/eject-6x.webp b/the8eam/open-iconic/webp/eject-6x.webp new file mode 100644 index 0000000..8773355 Binary files /dev/null and b/the8eam/open-iconic/webp/eject-6x.webp differ diff --git a/the8eam/open-iconic/webp/eject-8x.webp b/the8eam/open-iconic/webp/eject-8x.webp new file mode 100644 index 0000000..725319c Binary files /dev/null and b/the8eam/open-iconic/webp/eject-8x.webp differ diff --git a/the8eam/open-iconic/webp/eject.webp b/the8eam/open-iconic/webp/eject.webp new file mode 100644 index 0000000..e70a53a Binary files /dev/null and b/the8eam/open-iconic/webp/eject.webp differ diff --git a/the8eam/open-iconic/webp/elevator-2x.webp b/the8eam/open-iconic/webp/elevator-2x.webp new file mode 100644 index 0000000..7ae0d64 Binary files /dev/null and b/the8eam/open-iconic/webp/elevator-2x.webp differ diff --git a/the8eam/open-iconic/webp/elevator-3x.webp b/the8eam/open-iconic/webp/elevator-3x.webp new file mode 100644 index 0000000..b703257 Binary files /dev/null and b/the8eam/open-iconic/webp/elevator-3x.webp differ diff --git a/the8eam/open-iconic/webp/elevator-4x.webp b/the8eam/open-iconic/webp/elevator-4x.webp new file mode 100644 index 0000000..d78c836 Binary files /dev/null and b/the8eam/open-iconic/webp/elevator-4x.webp differ diff --git a/the8eam/open-iconic/webp/elevator-6x.webp b/the8eam/open-iconic/webp/elevator-6x.webp new file mode 100644 index 0000000..9be87bf Binary files /dev/null and b/the8eam/open-iconic/webp/elevator-6x.webp differ diff --git a/the8eam/open-iconic/webp/elevator-8x.webp b/the8eam/open-iconic/webp/elevator-8x.webp new file mode 100644 index 0000000..af5b614 Binary files /dev/null and b/the8eam/open-iconic/webp/elevator-8x.webp differ diff --git a/the8eam/open-iconic/webp/elevator.webp b/the8eam/open-iconic/webp/elevator.webp new file mode 100644 index 0000000..a26ab9a Binary files /dev/null and b/the8eam/open-iconic/webp/elevator.webp differ diff --git a/the8eam/open-iconic/webp/ellipses-2x.webp b/the8eam/open-iconic/webp/ellipses-2x.webp new file mode 100644 index 0000000..b001e1b Binary files /dev/null and b/the8eam/open-iconic/webp/ellipses-2x.webp differ diff --git a/the8eam/open-iconic/webp/ellipses-3x.webp b/the8eam/open-iconic/webp/ellipses-3x.webp new file mode 100644 index 0000000..68fe31d Binary files /dev/null and b/the8eam/open-iconic/webp/ellipses-3x.webp differ diff --git a/the8eam/open-iconic/webp/ellipses-4x.webp b/the8eam/open-iconic/webp/ellipses-4x.webp new file mode 100644 index 0000000..e38bdf6 Binary files /dev/null and b/the8eam/open-iconic/webp/ellipses-4x.webp differ diff --git a/the8eam/open-iconic/webp/ellipses-6x.webp b/the8eam/open-iconic/webp/ellipses-6x.webp new file mode 100644 index 0000000..a02f3a5 Binary files /dev/null and b/the8eam/open-iconic/webp/ellipses-6x.webp differ diff --git a/the8eam/open-iconic/webp/ellipses-8x.webp b/the8eam/open-iconic/webp/ellipses-8x.webp new file mode 100644 index 0000000..435f4d7 Binary files /dev/null and b/the8eam/open-iconic/webp/ellipses-8x.webp differ diff --git a/the8eam/open-iconic/webp/ellipses.webp b/the8eam/open-iconic/webp/ellipses.webp new file mode 100644 index 0000000..af1765d Binary files /dev/null and b/the8eam/open-iconic/webp/ellipses.webp differ diff --git a/the8eam/open-iconic/webp/envelope-closed-2x.webp b/the8eam/open-iconic/webp/envelope-closed-2x.webp new file mode 100644 index 0000000..f538be2 Binary files /dev/null and b/the8eam/open-iconic/webp/envelope-closed-2x.webp differ diff --git a/the8eam/open-iconic/webp/envelope-closed-3x.webp b/the8eam/open-iconic/webp/envelope-closed-3x.webp new file mode 100644 index 0000000..8dc790e Binary files /dev/null and b/the8eam/open-iconic/webp/envelope-closed-3x.webp differ diff --git a/the8eam/open-iconic/webp/envelope-closed-4x.webp b/the8eam/open-iconic/webp/envelope-closed-4x.webp new file mode 100644 index 0000000..64a5cae Binary files /dev/null and b/the8eam/open-iconic/webp/envelope-closed-4x.webp differ diff --git a/the8eam/open-iconic/webp/envelope-closed-6x.webp b/the8eam/open-iconic/webp/envelope-closed-6x.webp new file mode 100644 index 0000000..f662b56 Binary files /dev/null and b/the8eam/open-iconic/webp/envelope-closed-6x.webp differ diff --git a/the8eam/open-iconic/webp/envelope-closed-8x.webp b/the8eam/open-iconic/webp/envelope-closed-8x.webp new file mode 100644 index 0000000..8b525c1 Binary files /dev/null and b/the8eam/open-iconic/webp/envelope-closed-8x.webp differ diff --git a/the8eam/open-iconic/webp/envelope-closed.webp b/the8eam/open-iconic/webp/envelope-closed.webp new file mode 100644 index 0000000..ef12ab2 Binary files /dev/null and b/the8eam/open-iconic/webp/envelope-closed.webp differ diff --git a/the8eam/open-iconic/webp/envelope-open-2x.webp b/the8eam/open-iconic/webp/envelope-open-2x.webp new file mode 100644 index 0000000..ff43cd3 Binary files /dev/null and b/the8eam/open-iconic/webp/envelope-open-2x.webp differ diff --git a/the8eam/open-iconic/webp/envelope-open-3x.webp b/the8eam/open-iconic/webp/envelope-open-3x.webp new file mode 100644 index 0000000..3d82890 Binary files /dev/null and b/the8eam/open-iconic/webp/envelope-open-3x.webp differ diff --git a/the8eam/open-iconic/webp/envelope-open-4x.webp b/the8eam/open-iconic/webp/envelope-open-4x.webp new file mode 100644 index 0000000..b7708c2 Binary files /dev/null and b/the8eam/open-iconic/webp/envelope-open-4x.webp differ diff --git a/the8eam/open-iconic/webp/envelope-open-6x.webp b/the8eam/open-iconic/webp/envelope-open-6x.webp new file mode 100644 index 0000000..60498ed Binary files /dev/null and b/the8eam/open-iconic/webp/envelope-open-6x.webp differ diff --git a/the8eam/open-iconic/webp/envelope-open-8x.webp b/the8eam/open-iconic/webp/envelope-open-8x.webp new file mode 100644 index 0000000..8edd8cc Binary files /dev/null and b/the8eam/open-iconic/webp/envelope-open-8x.webp differ diff --git a/the8eam/open-iconic/webp/envelope-open.webp b/the8eam/open-iconic/webp/envelope-open.webp new file mode 100644 index 0000000..ac7e4bb Binary files /dev/null and b/the8eam/open-iconic/webp/envelope-open.webp differ diff --git a/the8eam/open-iconic/webp/euro-2x.webp b/the8eam/open-iconic/webp/euro-2x.webp new file mode 100644 index 0000000..2084f0c Binary files /dev/null and b/the8eam/open-iconic/webp/euro-2x.webp differ diff --git a/the8eam/open-iconic/webp/euro-3x.webp b/the8eam/open-iconic/webp/euro-3x.webp new file mode 100644 index 0000000..b23e100 Binary files /dev/null and b/the8eam/open-iconic/webp/euro-3x.webp differ diff --git a/the8eam/open-iconic/webp/euro-4x.webp b/the8eam/open-iconic/webp/euro-4x.webp new file mode 100644 index 0000000..58bb02a Binary files /dev/null and b/the8eam/open-iconic/webp/euro-4x.webp differ diff --git a/the8eam/open-iconic/webp/euro-6x.webp b/the8eam/open-iconic/webp/euro-6x.webp new file mode 100644 index 0000000..d7b63ad Binary files /dev/null and b/the8eam/open-iconic/webp/euro-6x.webp differ diff --git a/the8eam/open-iconic/webp/euro-8x.webp b/the8eam/open-iconic/webp/euro-8x.webp new file mode 100644 index 0000000..579cb88 Binary files /dev/null and b/the8eam/open-iconic/webp/euro-8x.webp differ diff --git a/the8eam/open-iconic/webp/euro.webp b/the8eam/open-iconic/webp/euro.webp new file mode 100644 index 0000000..6bb3e96 Binary files /dev/null and b/the8eam/open-iconic/webp/euro.webp differ diff --git a/the8eam/open-iconic/webp/excerpt-2x.webp b/the8eam/open-iconic/webp/excerpt-2x.webp new file mode 100644 index 0000000..0882e16 Binary files /dev/null and b/the8eam/open-iconic/webp/excerpt-2x.webp differ diff --git a/the8eam/open-iconic/webp/excerpt-3x.webp b/the8eam/open-iconic/webp/excerpt-3x.webp new file mode 100644 index 0000000..d98c085 Binary files /dev/null and b/the8eam/open-iconic/webp/excerpt-3x.webp differ diff --git a/the8eam/open-iconic/webp/excerpt-4x.webp b/the8eam/open-iconic/webp/excerpt-4x.webp new file mode 100644 index 0000000..7c1f961 Binary files /dev/null and b/the8eam/open-iconic/webp/excerpt-4x.webp differ diff --git a/the8eam/open-iconic/webp/excerpt-6x.webp b/the8eam/open-iconic/webp/excerpt-6x.webp new file mode 100644 index 0000000..2cf412e Binary files /dev/null and b/the8eam/open-iconic/webp/excerpt-6x.webp differ diff --git a/the8eam/open-iconic/webp/excerpt-8x.webp b/the8eam/open-iconic/webp/excerpt-8x.webp new file mode 100644 index 0000000..a9c8ea0 Binary files /dev/null and b/the8eam/open-iconic/webp/excerpt-8x.webp differ diff --git a/the8eam/open-iconic/webp/excerpt.webp b/the8eam/open-iconic/webp/excerpt.webp new file mode 100644 index 0000000..7d9d5bb Binary files /dev/null and b/the8eam/open-iconic/webp/excerpt.webp differ diff --git a/the8eam/open-iconic/webp/expand-down-2x.webp b/the8eam/open-iconic/webp/expand-down-2x.webp new file mode 100644 index 0000000..d017db6 Binary files /dev/null and b/the8eam/open-iconic/webp/expand-down-2x.webp differ diff --git a/the8eam/open-iconic/webp/expand-down-3x.webp b/the8eam/open-iconic/webp/expand-down-3x.webp new file mode 100644 index 0000000..facdce8 Binary files /dev/null and b/the8eam/open-iconic/webp/expand-down-3x.webp differ diff --git a/the8eam/open-iconic/webp/expand-down-4x.webp b/the8eam/open-iconic/webp/expand-down-4x.webp new file mode 100644 index 0000000..13d34c9 Binary files /dev/null and b/the8eam/open-iconic/webp/expand-down-4x.webp differ diff --git a/the8eam/open-iconic/webp/expand-down-6x.webp b/the8eam/open-iconic/webp/expand-down-6x.webp new file mode 100644 index 0000000..e1d6049 Binary files /dev/null and b/the8eam/open-iconic/webp/expand-down-6x.webp differ diff --git a/the8eam/open-iconic/webp/expand-down-8x.webp b/the8eam/open-iconic/webp/expand-down-8x.webp new file mode 100644 index 0000000..b5351fa Binary files /dev/null and b/the8eam/open-iconic/webp/expand-down-8x.webp differ diff --git a/the8eam/open-iconic/webp/expand-down.webp b/the8eam/open-iconic/webp/expand-down.webp new file mode 100644 index 0000000..21c3257 Binary files /dev/null and b/the8eam/open-iconic/webp/expand-down.webp differ diff --git a/the8eam/open-iconic/webp/expand-left-2x.webp b/the8eam/open-iconic/webp/expand-left-2x.webp new file mode 100644 index 0000000..090c77c Binary files /dev/null and b/the8eam/open-iconic/webp/expand-left-2x.webp differ diff --git a/the8eam/open-iconic/webp/expand-left-3x.webp b/the8eam/open-iconic/webp/expand-left-3x.webp new file mode 100644 index 0000000..92004c8 Binary files /dev/null and b/the8eam/open-iconic/webp/expand-left-3x.webp differ diff --git a/the8eam/open-iconic/webp/expand-left-4x.webp b/the8eam/open-iconic/webp/expand-left-4x.webp new file mode 100644 index 0000000..ae6e2c5 Binary files /dev/null and b/the8eam/open-iconic/webp/expand-left-4x.webp differ diff --git a/the8eam/open-iconic/webp/expand-left-6x.webp b/the8eam/open-iconic/webp/expand-left-6x.webp new file mode 100644 index 0000000..f86f17f Binary files /dev/null and b/the8eam/open-iconic/webp/expand-left-6x.webp differ diff --git a/the8eam/open-iconic/webp/expand-left-8x.webp b/the8eam/open-iconic/webp/expand-left-8x.webp new file mode 100644 index 0000000..59650bf Binary files /dev/null and b/the8eam/open-iconic/webp/expand-left-8x.webp differ diff --git a/the8eam/open-iconic/webp/expand-left.webp b/the8eam/open-iconic/webp/expand-left.webp new file mode 100644 index 0000000..0ae80e4 Binary files /dev/null and b/the8eam/open-iconic/webp/expand-left.webp differ diff --git a/the8eam/open-iconic/webp/expand-right-2x.webp b/the8eam/open-iconic/webp/expand-right-2x.webp new file mode 100644 index 0000000..3cb619c Binary files /dev/null and b/the8eam/open-iconic/webp/expand-right-2x.webp differ diff --git a/the8eam/open-iconic/webp/expand-right-3x.webp b/the8eam/open-iconic/webp/expand-right-3x.webp new file mode 100644 index 0000000..b9c6958 Binary files /dev/null and b/the8eam/open-iconic/webp/expand-right-3x.webp differ diff --git a/the8eam/open-iconic/webp/expand-right-4x.webp b/the8eam/open-iconic/webp/expand-right-4x.webp new file mode 100644 index 0000000..34f48a5 Binary files /dev/null and b/the8eam/open-iconic/webp/expand-right-4x.webp differ diff --git a/the8eam/open-iconic/webp/expand-right-6x.webp b/the8eam/open-iconic/webp/expand-right-6x.webp new file mode 100644 index 0000000..38fc6db Binary files /dev/null and b/the8eam/open-iconic/webp/expand-right-6x.webp differ diff --git a/the8eam/open-iconic/webp/expand-right-8x.webp b/the8eam/open-iconic/webp/expand-right-8x.webp new file mode 100644 index 0000000..4bc5819 Binary files /dev/null and b/the8eam/open-iconic/webp/expand-right-8x.webp differ diff --git a/the8eam/open-iconic/webp/expand-right.webp b/the8eam/open-iconic/webp/expand-right.webp new file mode 100644 index 0000000..83e3ef5 Binary files /dev/null and b/the8eam/open-iconic/webp/expand-right.webp differ diff --git a/the8eam/open-iconic/webp/expand-up-2x.webp b/the8eam/open-iconic/webp/expand-up-2x.webp new file mode 100644 index 0000000..7ac3b2a Binary files /dev/null and b/the8eam/open-iconic/webp/expand-up-2x.webp differ diff --git a/the8eam/open-iconic/webp/expand-up-3x.webp b/the8eam/open-iconic/webp/expand-up-3x.webp new file mode 100644 index 0000000..8cf8689 Binary files /dev/null and b/the8eam/open-iconic/webp/expand-up-3x.webp differ diff --git a/the8eam/open-iconic/webp/expand-up-4x.webp b/the8eam/open-iconic/webp/expand-up-4x.webp new file mode 100644 index 0000000..886cf2a Binary files /dev/null and b/the8eam/open-iconic/webp/expand-up-4x.webp differ diff --git a/the8eam/open-iconic/webp/expand-up-6x.webp b/the8eam/open-iconic/webp/expand-up-6x.webp new file mode 100644 index 0000000..8f68a79 Binary files /dev/null and b/the8eam/open-iconic/webp/expand-up-6x.webp differ diff --git a/the8eam/open-iconic/webp/expand-up-8x.webp b/the8eam/open-iconic/webp/expand-up-8x.webp new file mode 100644 index 0000000..443bd28 Binary files /dev/null and b/the8eam/open-iconic/webp/expand-up-8x.webp differ diff --git a/the8eam/open-iconic/webp/expand-up.webp b/the8eam/open-iconic/webp/expand-up.webp new file mode 100644 index 0000000..9cbfd36 Binary files /dev/null and b/the8eam/open-iconic/webp/expand-up.webp differ diff --git a/the8eam/open-iconic/webp/external-link-2x.webp b/the8eam/open-iconic/webp/external-link-2x.webp new file mode 100644 index 0000000..b6264ee Binary files /dev/null and b/the8eam/open-iconic/webp/external-link-2x.webp differ diff --git a/the8eam/open-iconic/webp/external-link-3x.webp b/the8eam/open-iconic/webp/external-link-3x.webp new file mode 100644 index 0000000..4fedd8a Binary files /dev/null and b/the8eam/open-iconic/webp/external-link-3x.webp differ diff --git a/the8eam/open-iconic/webp/external-link-4x.webp b/the8eam/open-iconic/webp/external-link-4x.webp new file mode 100644 index 0000000..d0c8a2a Binary files /dev/null and b/the8eam/open-iconic/webp/external-link-4x.webp differ diff --git a/the8eam/open-iconic/webp/external-link-6x.webp b/the8eam/open-iconic/webp/external-link-6x.webp new file mode 100644 index 0000000..58602f9 Binary files /dev/null and b/the8eam/open-iconic/webp/external-link-6x.webp differ diff --git a/the8eam/open-iconic/webp/external-link-8x.webp b/the8eam/open-iconic/webp/external-link-8x.webp new file mode 100644 index 0000000..035d124 Binary files /dev/null and b/the8eam/open-iconic/webp/external-link-8x.webp differ diff --git a/the8eam/open-iconic/webp/external-link.webp b/the8eam/open-iconic/webp/external-link.webp new file mode 100644 index 0000000..a96f813 Binary files /dev/null and b/the8eam/open-iconic/webp/external-link.webp differ diff --git a/the8eam/open-iconic/webp/eye-2x.webp b/the8eam/open-iconic/webp/eye-2x.webp new file mode 100644 index 0000000..28600ec Binary files /dev/null and b/the8eam/open-iconic/webp/eye-2x.webp differ diff --git a/the8eam/open-iconic/webp/eye-3x.webp b/the8eam/open-iconic/webp/eye-3x.webp new file mode 100644 index 0000000..187b1f5 Binary files /dev/null and b/the8eam/open-iconic/webp/eye-3x.webp differ diff --git a/the8eam/open-iconic/webp/eye-4x.webp b/the8eam/open-iconic/webp/eye-4x.webp new file mode 100644 index 0000000..3fc1f81 Binary files /dev/null and b/the8eam/open-iconic/webp/eye-4x.webp differ diff --git a/the8eam/open-iconic/webp/eye-6x.webp b/the8eam/open-iconic/webp/eye-6x.webp new file mode 100644 index 0000000..98dba98 Binary files /dev/null and b/the8eam/open-iconic/webp/eye-6x.webp differ diff --git a/the8eam/open-iconic/webp/eye-8x.webp b/the8eam/open-iconic/webp/eye-8x.webp new file mode 100644 index 0000000..587db90 Binary files /dev/null and b/the8eam/open-iconic/webp/eye-8x.webp differ diff --git a/the8eam/open-iconic/webp/eye.webp b/the8eam/open-iconic/webp/eye.webp new file mode 100644 index 0000000..c8c8eeb Binary files /dev/null and b/the8eam/open-iconic/webp/eye.webp differ diff --git a/the8eam/open-iconic/webp/eyedropper-2x.webp b/the8eam/open-iconic/webp/eyedropper-2x.webp new file mode 100644 index 0000000..a50b77a Binary files /dev/null and b/the8eam/open-iconic/webp/eyedropper-2x.webp differ diff --git a/the8eam/open-iconic/webp/eyedropper-3x.webp b/the8eam/open-iconic/webp/eyedropper-3x.webp new file mode 100644 index 0000000..e7170ef Binary files /dev/null and b/the8eam/open-iconic/webp/eyedropper-3x.webp differ diff --git a/the8eam/open-iconic/webp/eyedropper-4x.webp b/the8eam/open-iconic/webp/eyedropper-4x.webp new file mode 100644 index 0000000..c8fc51a Binary files /dev/null and b/the8eam/open-iconic/webp/eyedropper-4x.webp differ diff --git a/the8eam/open-iconic/webp/eyedropper-6x.webp b/the8eam/open-iconic/webp/eyedropper-6x.webp new file mode 100644 index 0000000..c84e0b5 Binary files /dev/null and b/the8eam/open-iconic/webp/eyedropper-6x.webp differ diff --git a/the8eam/open-iconic/webp/eyedropper-8x.webp b/the8eam/open-iconic/webp/eyedropper-8x.webp new file mode 100644 index 0000000..6d08b1a Binary files /dev/null and b/the8eam/open-iconic/webp/eyedropper-8x.webp differ diff --git a/the8eam/open-iconic/webp/eyedropper.webp b/the8eam/open-iconic/webp/eyedropper.webp new file mode 100644 index 0000000..cfe865a Binary files /dev/null and b/the8eam/open-iconic/webp/eyedropper.webp differ diff --git a/the8eam/open-iconic/webp/file-2x.webp b/the8eam/open-iconic/webp/file-2x.webp new file mode 100644 index 0000000..f147bf0 Binary files /dev/null and b/the8eam/open-iconic/webp/file-2x.webp differ diff --git a/the8eam/open-iconic/webp/file-3x.webp b/the8eam/open-iconic/webp/file-3x.webp new file mode 100644 index 0000000..9b8e177 Binary files /dev/null and b/the8eam/open-iconic/webp/file-3x.webp differ diff --git a/the8eam/open-iconic/webp/file-4x.webp b/the8eam/open-iconic/webp/file-4x.webp new file mode 100644 index 0000000..d3790d9 Binary files /dev/null and b/the8eam/open-iconic/webp/file-4x.webp differ diff --git a/the8eam/open-iconic/webp/file-6x.webp b/the8eam/open-iconic/webp/file-6x.webp new file mode 100644 index 0000000..ca1cabb Binary files /dev/null and b/the8eam/open-iconic/webp/file-6x.webp differ diff --git a/the8eam/open-iconic/webp/file-8x.webp b/the8eam/open-iconic/webp/file-8x.webp new file mode 100644 index 0000000..df7ca9a Binary files /dev/null and b/the8eam/open-iconic/webp/file-8x.webp differ diff --git a/the8eam/open-iconic/webp/file.webp b/the8eam/open-iconic/webp/file.webp new file mode 100644 index 0000000..018d916 Binary files /dev/null and b/the8eam/open-iconic/webp/file.webp differ diff --git a/the8eam/open-iconic/webp/fire-2x.webp b/the8eam/open-iconic/webp/fire-2x.webp new file mode 100644 index 0000000..e129709 Binary files /dev/null and b/the8eam/open-iconic/webp/fire-2x.webp differ diff --git a/the8eam/open-iconic/webp/fire-3x.webp b/the8eam/open-iconic/webp/fire-3x.webp new file mode 100644 index 0000000..2fdc805 Binary files /dev/null and b/the8eam/open-iconic/webp/fire-3x.webp differ diff --git a/the8eam/open-iconic/webp/fire-4x.webp b/the8eam/open-iconic/webp/fire-4x.webp new file mode 100644 index 0000000..fef409d Binary files /dev/null and b/the8eam/open-iconic/webp/fire-4x.webp differ diff --git a/the8eam/open-iconic/webp/fire-6x.webp b/the8eam/open-iconic/webp/fire-6x.webp new file mode 100644 index 0000000..bb80a37 Binary files /dev/null and b/the8eam/open-iconic/webp/fire-6x.webp differ diff --git a/the8eam/open-iconic/webp/fire-8x.webp b/the8eam/open-iconic/webp/fire-8x.webp new file mode 100644 index 0000000..f051435 Binary files /dev/null and b/the8eam/open-iconic/webp/fire-8x.webp differ diff --git a/the8eam/open-iconic/webp/fire.webp b/the8eam/open-iconic/webp/fire.webp new file mode 100644 index 0000000..dde1c5e Binary files /dev/null and b/the8eam/open-iconic/webp/fire.webp differ diff --git a/the8eam/open-iconic/webp/flag-2x.webp b/the8eam/open-iconic/webp/flag-2x.webp new file mode 100644 index 0000000..50ee40b Binary files /dev/null and b/the8eam/open-iconic/webp/flag-2x.webp differ diff --git a/the8eam/open-iconic/webp/flag-3x.webp b/the8eam/open-iconic/webp/flag-3x.webp new file mode 100644 index 0000000..4f9285e Binary files /dev/null and b/the8eam/open-iconic/webp/flag-3x.webp differ diff --git a/the8eam/open-iconic/webp/flag-4x.webp b/the8eam/open-iconic/webp/flag-4x.webp new file mode 100644 index 0000000..a68cbd1 Binary files /dev/null and b/the8eam/open-iconic/webp/flag-4x.webp differ diff --git a/the8eam/open-iconic/webp/flag-6x.webp b/the8eam/open-iconic/webp/flag-6x.webp new file mode 100644 index 0000000..746a615 Binary files /dev/null and b/the8eam/open-iconic/webp/flag-6x.webp differ diff --git a/the8eam/open-iconic/webp/flag-8x.webp b/the8eam/open-iconic/webp/flag-8x.webp new file mode 100644 index 0000000..37dfb7e Binary files /dev/null and b/the8eam/open-iconic/webp/flag-8x.webp differ diff --git a/the8eam/open-iconic/webp/flag.webp b/the8eam/open-iconic/webp/flag.webp new file mode 100644 index 0000000..e6ba39f Binary files /dev/null and b/the8eam/open-iconic/webp/flag.webp differ diff --git a/the8eam/open-iconic/webp/flash-2x.webp b/the8eam/open-iconic/webp/flash-2x.webp new file mode 100644 index 0000000..a5929ca Binary files /dev/null and b/the8eam/open-iconic/webp/flash-2x.webp differ diff --git a/the8eam/open-iconic/webp/flash-3x.webp b/the8eam/open-iconic/webp/flash-3x.webp new file mode 100644 index 0000000..8fb624d Binary files /dev/null and b/the8eam/open-iconic/webp/flash-3x.webp differ diff --git a/the8eam/open-iconic/webp/flash-4x.webp b/the8eam/open-iconic/webp/flash-4x.webp new file mode 100644 index 0000000..164008b Binary files /dev/null and b/the8eam/open-iconic/webp/flash-4x.webp differ diff --git a/the8eam/open-iconic/webp/flash-6x.webp b/the8eam/open-iconic/webp/flash-6x.webp new file mode 100644 index 0000000..50af2f3 Binary files /dev/null and b/the8eam/open-iconic/webp/flash-6x.webp differ diff --git a/the8eam/open-iconic/webp/flash-8x.webp b/the8eam/open-iconic/webp/flash-8x.webp new file mode 100644 index 0000000..726a8b7 Binary files /dev/null and b/the8eam/open-iconic/webp/flash-8x.webp differ diff --git a/the8eam/open-iconic/webp/flash.webp b/the8eam/open-iconic/webp/flash.webp new file mode 100644 index 0000000..ae1fce8 Binary files /dev/null and b/the8eam/open-iconic/webp/flash.webp differ diff --git a/the8eam/open-iconic/webp/folder-2x.webp b/the8eam/open-iconic/webp/folder-2x.webp new file mode 100644 index 0000000..951608c Binary files /dev/null and b/the8eam/open-iconic/webp/folder-2x.webp differ diff --git a/the8eam/open-iconic/webp/folder-3x.webp b/the8eam/open-iconic/webp/folder-3x.webp new file mode 100644 index 0000000..4cc4e50 Binary files /dev/null and b/the8eam/open-iconic/webp/folder-3x.webp differ diff --git a/the8eam/open-iconic/webp/folder-4x.webp b/the8eam/open-iconic/webp/folder-4x.webp new file mode 100644 index 0000000..bba2085 Binary files /dev/null and b/the8eam/open-iconic/webp/folder-4x.webp differ diff --git a/the8eam/open-iconic/webp/folder-6x.webp b/the8eam/open-iconic/webp/folder-6x.webp new file mode 100644 index 0000000..d3ac82c Binary files /dev/null and b/the8eam/open-iconic/webp/folder-6x.webp differ diff --git a/the8eam/open-iconic/webp/folder-8x.webp b/the8eam/open-iconic/webp/folder-8x.webp new file mode 100644 index 0000000..104963b Binary files /dev/null and b/the8eam/open-iconic/webp/folder-8x.webp differ diff --git a/the8eam/open-iconic/webp/folder.webp b/the8eam/open-iconic/webp/folder.webp new file mode 100644 index 0000000..cb71efa Binary files /dev/null and b/the8eam/open-iconic/webp/folder.webp differ diff --git a/the8eam/open-iconic/webp/fork-2x.webp b/the8eam/open-iconic/webp/fork-2x.webp new file mode 100644 index 0000000..169dc43 Binary files /dev/null and b/the8eam/open-iconic/webp/fork-2x.webp differ diff --git a/the8eam/open-iconic/webp/fork-3x.webp b/the8eam/open-iconic/webp/fork-3x.webp new file mode 100644 index 0000000..ad851fa Binary files /dev/null and b/the8eam/open-iconic/webp/fork-3x.webp differ diff --git a/the8eam/open-iconic/webp/fork-4x.webp b/the8eam/open-iconic/webp/fork-4x.webp new file mode 100644 index 0000000..2dbe9bf Binary files /dev/null and b/the8eam/open-iconic/webp/fork-4x.webp differ diff --git a/the8eam/open-iconic/webp/fork-6x.webp b/the8eam/open-iconic/webp/fork-6x.webp new file mode 100644 index 0000000..794c51c Binary files /dev/null and b/the8eam/open-iconic/webp/fork-6x.webp differ diff --git a/the8eam/open-iconic/webp/fork-8x.webp b/the8eam/open-iconic/webp/fork-8x.webp new file mode 100644 index 0000000..acc9765 Binary files /dev/null and b/the8eam/open-iconic/webp/fork-8x.webp differ diff --git a/the8eam/open-iconic/webp/fork.webp b/the8eam/open-iconic/webp/fork.webp new file mode 100644 index 0000000..5114013 Binary files /dev/null and b/the8eam/open-iconic/webp/fork.webp differ diff --git a/the8eam/open-iconic/webp/fullscreen-enter-2x.webp b/the8eam/open-iconic/webp/fullscreen-enter-2x.webp new file mode 100644 index 0000000..8d1fe5e Binary files /dev/null and b/the8eam/open-iconic/webp/fullscreen-enter-2x.webp differ diff --git a/the8eam/open-iconic/webp/fullscreen-enter-3x.webp b/the8eam/open-iconic/webp/fullscreen-enter-3x.webp new file mode 100644 index 0000000..3eb90f7 Binary files /dev/null and b/the8eam/open-iconic/webp/fullscreen-enter-3x.webp differ diff --git a/the8eam/open-iconic/webp/fullscreen-enter-4x.webp b/the8eam/open-iconic/webp/fullscreen-enter-4x.webp new file mode 100644 index 0000000..8e14659 Binary files /dev/null and b/the8eam/open-iconic/webp/fullscreen-enter-4x.webp differ diff --git a/the8eam/open-iconic/webp/fullscreen-enter-6x.webp b/the8eam/open-iconic/webp/fullscreen-enter-6x.webp new file mode 100644 index 0000000..3c2ee84 Binary files /dev/null and b/the8eam/open-iconic/webp/fullscreen-enter-6x.webp differ diff --git a/the8eam/open-iconic/webp/fullscreen-enter-8x.webp b/the8eam/open-iconic/webp/fullscreen-enter-8x.webp new file mode 100644 index 0000000..917c1c8 Binary files /dev/null and b/the8eam/open-iconic/webp/fullscreen-enter-8x.webp differ diff --git a/the8eam/open-iconic/webp/fullscreen-enter.webp b/the8eam/open-iconic/webp/fullscreen-enter.webp new file mode 100644 index 0000000..ef43881 Binary files /dev/null and b/the8eam/open-iconic/webp/fullscreen-enter.webp differ diff --git a/the8eam/open-iconic/webp/fullscreen-exit-2x.webp b/the8eam/open-iconic/webp/fullscreen-exit-2x.webp new file mode 100644 index 0000000..ef5b686 Binary files /dev/null and b/the8eam/open-iconic/webp/fullscreen-exit-2x.webp differ diff --git a/the8eam/open-iconic/webp/fullscreen-exit-3x.webp b/the8eam/open-iconic/webp/fullscreen-exit-3x.webp new file mode 100644 index 0000000..4d94e31 Binary files /dev/null and b/the8eam/open-iconic/webp/fullscreen-exit-3x.webp differ diff --git a/the8eam/open-iconic/webp/fullscreen-exit-4x.webp b/the8eam/open-iconic/webp/fullscreen-exit-4x.webp new file mode 100644 index 0000000..99ac431 Binary files /dev/null and b/the8eam/open-iconic/webp/fullscreen-exit-4x.webp differ diff --git a/the8eam/open-iconic/webp/fullscreen-exit-6x.webp b/the8eam/open-iconic/webp/fullscreen-exit-6x.webp new file mode 100644 index 0000000..28b22df Binary files /dev/null and b/the8eam/open-iconic/webp/fullscreen-exit-6x.webp differ diff --git a/the8eam/open-iconic/webp/fullscreen-exit-8x.webp b/the8eam/open-iconic/webp/fullscreen-exit-8x.webp new file mode 100644 index 0000000..3f41345 Binary files /dev/null and b/the8eam/open-iconic/webp/fullscreen-exit-8x.webp differ diff --git a/the8eam/open-iconic/webp/fullscreen-exit.webp b/the8eam/open-iconic/webp/fullscreen-exit.webp new file mode 100644 index 0000000..d282c4e Binary files /dev/null and b/the8eam/open-iconic/webp/fullscreen-exit.webp differ diff --git a/the8eam/open-iconic/webp/globe-2x.webp b/the8eam/open-iconic/webp/globe-2x.webp new file mode 100644 index 0000000..d5b1395 Binary files /dev/null and b/the8eam/open-iconic/webp/globe-2x.webp differ diff --git a/the8eam/open-iconic/webp/globe-3x.webp b/the8eam/open-iconic/webp/globe-3x.webp new file mode 100644 index 0000000..7238eaf Binary files /dev/null and b/the8eam/open-iconic/webp/globe-3x.webp differ diff --git a/the8eam/open-iconic/webp/globe-4x.webp b/the8eam/open-iconic/webp/globe-4x.webp new file mode 100644 index 0000000..2b4ba97 Binary files /dev/null and b/the8eam/open-iconic/webp/globe-4x.webp differ diff --git a/the8eam/open-iconic/webp/globe-6x.webp b/the8eam/open-iconic/webp/globe-6x.webp new file mode 100644 index 0000000..407b0de Binary files /dev/null and b/the8eam/open-iconic/webp/globe-6x.webp differ diff --git a/the8eam/open-iconic/webp/globe-8x.webp b/the8eam/open-iconic/webp/globe-8x.webp new file mode 100644 index 0000000..ab8802e Binary files /dev/null and b/the8eam/open-iconic/webp/globe-8x.webp differ diff --git a/the8eam/open-iconic/webp/globe.webp b/the8eam/open-iconic/webp/globe.webp new file mode 100644 index 0000000..f615c90 Binary files /dev/null and b/the8eam/open-iconic/webp/globe.webp differ diff --git a/the8eam/open-iconic/webp/graph-2x.webp b/the8eam/open-iconic/webp/graph-2x.webp new file mode 100644 index 0000000..b6a142c Binary files /dev/null and b/the8eam/open-iconic/webp/graph-2x.webp differ diff --git a/the8eam/open-iconic/webp/graph-3x.webp b/the8eam/open-iconic/webp/graph-3x.webp new file mode 100644 index 0000000..681c236 Binary files /dev/null and b/the8eam/open-iconic/webp/graph-3x.webp differ diff --git a/the8eam/open-iconic/webp/graph-4x.webp b/the8eam/open-iconic/webp/graph-4x.webp new file mode 100644 index 0000000..76b35ff Binary files /dev/null and b/the8eam/open-iconic/webp/graph-4x.webp differ diff --git a/the8eam/open-iconic/webp/graph-6x.webp b/the8eam/open-iconic/webp/graph-6x.webp new file mode 100644 index 0000000..e1b6310 Binary files /dev/null and b/the8eam/open-iconic/webp/graph-6x.webp differ diff --git a/the8eam/open-iconic/webp/graph-8x.webp b/the8eam/open-iconic/webp/graph-8x.webp new file mode 100644 index 0000000..0cc14c1 Binary files /dev/null and b/the8eam/open-iconic/webp/graph-8x.webp differ diff --git a/the8eam/open-iconic/webp/graph.webp b/the8eam/open-iconic/webp/graph.webp new file mode 100644 index 0000000..a00a088 Binary files /dev/null and b/the8eam/open-iconic/webp/graph.webp differ diff --git a/the8eam/open-iconic/webp/grid-four-up-2x.webp b/the8eam/open-iconic/webp/grid-four-up-2x.webp new file mode 100644 index 0000000..84a2ff9 Binary files /dev/null and b/the8eam/open-iconic/webp/grid-four-up-2x.webp differ diff --git a/the8eam/open-iconic/webp/grid-four-up-3x.webp b/the8eam/open-iconic/webp/grid-four-up-3x.webp new file mode 100644 index 0000000..2775a8f Binary files /dev/null and b/the8eam/open-iconic/webp/grid-four-up-3x.webp differ diff --git a/the8eam/open-iconic/webp/grid-four-up-4x.webp b/the8eam/open-iconic/webp/grid-four-up-4x.webp new file mode 100644 index 0000000..50482f6 Binary files /dev/null and b/the8eam/open-iconic/webp/grid-four-up-4x.webp differ diff --git a/the8eam/open-iconic/webp/grid-four-up-6x.webp b/the8eam/open-iconic/webp/grid-four-up-6x.webp new file mode 100644 index 0000000..c1b2978 Binary files /dev/null and b/the8eam/open-iconic/webp/grid-four-up-6x.webp differ diff --git a/the8eam/open-iconic/webp/grid-four-up-8x.webp b/the8eam/open-iconic/webp/grid-four-up-8x.webp new file mode 100644 index 0000000..85ab0a8 Binary files /dev/null and b/the8eam/open-iconic/webp/grid-four-up-8x.webp differ diff --git a/the8eam/open-iconic/webp/grid-four-up.webp b/the8eam/open-iconic/webp/grid-four-up.webp new file mode 100644 index 0000000..b01041a Binary files /dev/null and b/the8eam/open-iconic/webp/grid-four-up.webp differ diff --git a/the8eam/open-iconic/webp/grid-three-up-2x.webp b/the8eam/open-iconic/webp/grid-three-up-2x.webp new file mode 100644 index 0000000..5901f90 Binary files /dev/null and b/the8eam/open-iconic/webp/grid-three-up-2x.webp differ diff --git a/the8eam/open-iconic/webp/grid-three-up-3x.webp b/the8eam/open-iconic/webp/grid-three-up-3x.webp new file mode 100644 index 0000000..1087a2a Binary files /dev/null and b/the8eam/open-iconic/webp/grid-three-up-3x.webp differ diff --git a/the8eam/open-iconic/webp/grid-three-up-4x.webp b/the8eam/open-iconic/webp/grid-three-up-4x.webp new file mode 100644 index 0000000..b10b956 Binary files /dev/null and b/the8eam/open-iconic/webp/grid-three-up-4x.webp differ diff --git a/the8eam/open-iconic/webp/grid-three-up-6x.webp b/the8eam/open-iconic/webp/grid-three-up-6x.webp new file mode 100644 index 0000000..014b97a Binary files /dev/null and b/the8eam/open-iconic/webp/grid-three-up-6x.webp differ diff --git a/the8eam/open-iconic/webp/grid-three-up-8x.webp b/the8eam/open-iconic/webp/grid-three-up-8x.webp new file mode 100644 index 0000000..c47a0eb Binary files /dev/null and b/the8eam/open-iconic/webp/grid-three-up-8x.webp differ diff --git a/the8eam/open-iconic/webp/grid-three-up.webp b/the8eam/open-iconic/webp/grid-three-up.webp new file mode 100644 index 0000000..796b7d3 Binary files /dev/null and b/the8eam/open-iconic/webp/grid-three-up.webp differ diff --git a/the8eam/open-iconic/webp/grid-two-up-2x.webp b/the8eam/open-iconic/webp/grid-two-up-2x.webp new file mode 100644 index 0000000..5912dc1 Binary files /dev/null and b/the8eam/open-iconic/webp/grid-two-up-2x.webp differ diff --git a/the8eam/open-iconic/webp/grid-two-up-3x.webp b/the8eam/open-iconic/webp/grid-two-up-3x.webp new file mode 100644 index 0000000..9f25143 Binary files /dev/null and b/the8eam/open-iconic/webp/grid-two-up-3x.webp differ diff --git a/the8eam/open-iconic/webp/grid-two-up-4x.webp b/the8eam/open-iconic/webp/grid-two-up-4x.webp new file mode 100644 index 0000000..a1db70e Binary files /dev/null and b/the8eam/open-iconic/webp/grid-two-up-4x.webp differ diff --git a/the8eam/open-iconic/webp/grid-two-up-6x.webp b/the8eam/open-iconic/webp/grid-two-up-6x.webp new file mode 100644 index 0000000..859c7c3 Binary files /dev/null and b/the8eam/open-iconic/webp/grid-two-up-6x.webp differ diff --git a/the8eam/open-iconic/webp/grid-two-up-8x.webp b/the8eam/open-iconic/webp/grid-two-up-8x.webp new file mode 100644 index 0000000..097cd14 Binary files /dev/null and b/the8eam/open-iconic/webp/grid-two-up-8x.webp differ diff --git a/the8eam/open-iconic/webp/grid-two-up.webp b/the8eam/open-iconic/webp/grid-two-up.webp new file mode 100644 index 0000000..2d814ab Binary files /dev/null and b/the8eam/open-iconic/webp/grid-two-up.webp differ diff --git a/the8eam/open-iconic/webp/hard-drive-2x.webp b/the8eam/open-iconic/webp/hard-drive-2x.webp new file mode 100644 index 0000000..a3ce84e Binary files /dev/null and b/the8eam/open-iconic/webp/hard-drive-2x.webp differ diff --git a/the8eam/open-iconic/webp/hard-drive-3x.webp b/the8eam/open-iconic/webp/hard-drive-3x.webp new file mode 100644 index 0000000..c1b67a0 Binary files /dev/null and b/the8eam/open-iconic/webp/hard-drive-3x.webp differ diff --git a/the8eam/open-iconic/webp/hard-drive-4x.webp b/the8eam/open-iconic/webp/hard-drive-4x.webp new file mode 100644 index 0000000..001525b Binary files /dev/null and b/the8eam/open-iconic/webp/hard-drive-4x.webp differ diff --git a/the8eam/open-iconic/webp/hard-drive-6x.webp b/the8eam/open-iconic/webp/hard-drive-6x.webp new file mode 100644 index 0000000..1127caa Binary files /dev/null and b/the8eam/open-iconic/webp/hard-drive-6x.webp differ diff --git a/the8eam/open-iconic/webp/hard-drive-8x.webp b/the8eam/open-iconic/webp/hard-drive-8x.webp new file mode 100644 index 0000000..79a1a36 Binary files /dev/null and b/the8eam/open-iconic/webp/hard-drive-8x.webp differ diff --git a/the8eam/open-iconic/webp/hard-drive.webp b/the8eam/open-iconic/webp/hard-drive.webp new file mode 100644 index 0000000..95335e8 Binary files /dev/null and b/the8eam/open-iconic/webp/hard-drive.webp differ diff --git a/the8eam/open-iconic/webp/header-2x.webp b/the8eam/open-iconic/webp/header-2x.webp new file mode 100644 index 0000000..4c7521c Binary files /dev/null and b/the8eam/open-iconic/webp/header-2x.webp differ diff --git a/the8eam/open-iconic/webp/header-3x.webp b/the8eam/open-iconic/webp/header-3x.webp new file mode 100644 index 0000000..561e249 Binary files /dev/null and b/the8eam/open-iconic/webp/header-3x.webp differ diff --git a/the8eam/open-iconic/webp/header-4x.webp b/the8eam/open-iconic/webp/header-4x.webp new file mode 100644 index 0000000..41fdfbb Binary files /dev/null and b/the8eam/open-iconic/webp/header-4x.webp differ diff --git a/the8eam/open-iconic/webp/header-6x.webp b/the8eam/open-iconic/webp/header-6x.webp new file mode 100644 index 0000000..eb2f633 Binary files /dev/null and b/the8eam/open-iconic/webp/header-6x.webp differ diff --git a/the8eam/open-iconic/webp/header-8x.webp b/the8eam/open-iconic/webp/header-8x.webp new file mode 100644 index 0000000..e385bd2 Binary files /dev/null and b/the8eam/open-iconic/webp/header-8x.webp differ diff --git a/the8eam/open-iconic/webp/header.webp b/the8eam/open-iconic/webp/header.webp new file mode 100644 index 0000000..1185618 Binary files /dev/null and b/the8eam/open-iconic/webp/header.webp differ diff --git a/the8eam/open-iconic/webp/headphones-2x.webp b/the8eam/open-iconic/webp/headphones-2x.webp new file mode 100644 index 0000000..b14e218 Binary files /dev/null and b/the8eam/open-iconic/webp/headphones-2x.webp differ diff --git a/the8eam/open-iconic/webp/headphones-3x.webp b/the8eam/open-iconic/webp/headphones-3x.webp new file mode 100644 index 0000000..a50750d Binary files /dev/null and b/the8eam/open-iconic/webp/headphones-3x.webp differ diff --git a/the8eam/open-iconic/webp/headphones-4x.webp b/the8eam/open-iconic/webp/headphones-4x.webp new file mode 100644 index 0000000..a56debc Binary files /dev/null and b/the8eam/open-iconic/webp/headphones-4x.webp differ diff --git a/the8eam/open-iconic/webp/headphones-6x.webp b/the8eam/open-iconic/webp/headphones-6x.webp new file mode 100644 index 0000000..72ec399 Binary files /dev/null and b/the8eam/open-iconic/webp/headphones-6x.webp differ diff --git a/the8eam/open-iconic/webp/headphones-8x.webp b/the8eam/open-iconic/webp/headphones-8x.webp new file mode 100644 index 0000000..898459d Binary files /dev/null and b/the8eam/open-iconic/webp/headphones-8x.webp differ diff --git a/the8eam/open-iconic/webp/headphones.webp b/the8eam/open-iconic/webp/headphones.webp new file mode 100644 index 0000000..8a68e55 Binary files /dev/null and b/the8eam/open-iconic/webp/headphones.webp differ diff --git a/the8eam/open-iconic/webp/heart-2x.webp b/the8eam/open-iconic/webp/heart-2x.webp new file mode 100644 index 0000000..aaca920 Binary files /dev/null and b/the8eam/open-iconic/webp/heart-2x.webp differ diff --git a/the8eam/open-iconic/webp/heart-3x.webp b/the8eam/open-iconic/webp/heart-3x.webp new file mode 100644 index 0000000..c347728 Binary files /dev/null and b/the8eam/open-iconic/webp/heart-3x.webp differ diff --git a/the8eam/open-iconic/webp/heart-4x.webp b/the8eam/open-iconic/webp/heart-4x.webp new file mode 100644 index 0000000..adc048c Binary files /dev/null and b/the8eam/open-iconic/webp/heart-4x.webp differ diff --git a/the8eam/open-iconic/webp/heart-6x.webp b/the8eam/open-iconic/webp/heart-6x.webp new file mode 100644 index 0000000..4cec66d Binary files /dev/null and b/the8eam/open-iconic/webp/heart-6x.webp differ diff --git a/the8eam/open-iconic/webp/heart-8x.webp b/the8eam/open-iconic/webp/heart-8x.webp new file mode 100644 index 0000000..e119afe Binary files /dev/null and b/the8eam/open-iconic/webp/heart-8x.webp differ diff --git a/the8eam/open-iconic/webp/heart.webp b/the8eam/open-iconic/webp/heart.webp new file mode 100644 index 0000000..cc3055b Binary files /dev/null and b/the8eam/open-iconic/webp/heart.webp differ diff --git a/the8eam/open-iconic/webp/home-2x.webp b/the8eam/open-iconic/webp/home-2x.webp new file mode 100644 index 0000000..74dbe3a Binary files /dev/null and b/the8eam/open-iconic/webp/home-2x.webp differ diff --git a/the8eam/open-iconic/webp/home-3x.webp b/the8eam/open-iconic/webp/home-3x.webp new file mode 100644 index 0000000..586eb87 Binary files /dev/null and b/the8eam/open-iconic/webp/home-3x.webp differ diff --git a/the8eam/open-iconic/webp/home-4x.webp b/the8eam/open-iconic/webp/home-4x.webp new file mode 100644 index 0000000..92a5fab Binary files /dev/null and b/the8eam/open-iconic/webp/home-4x.webp differ diff --git a/the8eam/open-iconic/webp/home-6x.webp b/the8eam/open-iconic/webp/home-6x.webp new file mode 100644 index 0000000..55f5db4 Binary files /dev/null and b/the8eam/open-iconic/webp/home-6x.webp differ diff --git a/the8eam/open-iconic/webp/home-8x.webp b/the8eam/open-iconic/webp/home-8x.webp new file mode 100644 index 0000000..824fae2 Binary files /dev/null and b/the8eam/open-iconic/webp/home-8x.webp differ diff --git a/the8eam/open-iconic/webp/home.webp b/the8eam/open-iconic/webp/home.webp new file mode 100644 index 0000000..80166ba Binary files /dev/null and b/the8eam/open-iconic/webp/home.webp differ diff --git a/the8eam/open-iconic/webp/image-2x.webp b/the8eam/open-iconic/webp/image-2x.webp new file mode 100644 index 0000000..906af22 Binary files /dev/null and b/the8eam/open-iconic/webp/image-2x.webp differ diff --git a/the8eam/open-iconic/webp/image-3x.webp b/the8eam/open-iconic/webp/image-3x.webp new file mode 100644 index 0000000..dafcd97 Binary files /dev/null and b/the8eam/open-iconic/webp/image-3x.webp differ diff --git a/the8eam/open-iconic/webp/image-4x.webp b/the8eam/open-iconic/webp/image-4x.webp new file mode 100644 index 0000000..972a2dd Binary files /dev/null and b/the8eam/open-iconic/webp/image-4x.webp differ diff --git a/the8eam/open-iconic/webp/image-6x.webp b/the8eam/open-iconic/webp/image-6x.webp new file mode 100644 index 0000000..613ae2d Binary files /dev/null and b/the8eam/open-iconic/webp/image-6x.webp differ diff --git a/the8eam/open-iconic/webp/image-8x.webp b/the8eam/open-iconic/webp/image-8x.webp new file mode 100644 index 0000000..c3f14d3 Binary files /dev/null and b/the8eam/open-iconic/webp/image-8x.webp differ diff --git a/the8eam/open-iconic/webp/image.webp b/the8eam/open-iconic/webp/image.webp new file mode 100644 index 0000000..ab412db Binary files /dev/null and b/the8eam/open-iconic/webp/image.webp differ diff --git a/the8eam/open-iconic/webp/inbox-2x.webp b/the8eam/open-iconic/webp/inbox-2x.webp new file mode 100644 index 0000000..8f850f7 Binary files /dev/null and b/the8eam/open-iconic/webp/inbox-2x.webp differ diff --git a/the8eam/open-iconic/webp/inbox-3x.webp b/the8eam/open-iconic/webp/inbox-3x.webp new file mode 100644 index 0000000..b94745e Binary files /dev/null and b/the8eam/open-iconic/webp/inbox-3x.webp differ diff --git a/the8eam/open-iconic/webp/inbox-4x.webp b/the8eam/open-iconic/webp/inbox-4x.webp new file mode 100644 index 0000000..5e233a7 Binary files /dev/null and b/the8eam/open-iconic/webp/inbox-4x.webp differ diff --git a/the8eam/open-iconic/webp/inbox-6x.webp b/the8eam/open-iconic/webp/inbox-6x.webp new file mode 100644 index 0000000..82a88f2 Binary files /dev/null and b/the8eam/open-iconic/webp/inbox-6x.webp differ diff --git a/the8eam/open-iconic/webp/inbox-8x.webp b/the8eam/open-iconic/webp/inbox-8x.webp new file mode 100644 index 0000000..ce1346a Binary files /dev/null and b/the8eam/open-iconic/webp/inbox-8x.webp differ diff --git a/the8eam/open-iconic/webp/inbox.webp b/the8eam/open-iconic/webp/inbox.webp new file mode 100644 index 0000000..43ebdb0 Binary files /dev/null and b/the8eam/open-iconic/webp/inbox.webp differ diff --git a/the8eam/open-iconic/webp/infinity-2x.webp b/the8eam/open-iconic/webp/infinity-2x.webp new file mode 100644 index 0000000..be4a466 Binary files /dev/null and b/the8eam/open-iconic/webp/infinity-2x.webp differ diff --git a/the8eam/open-iconic/webp/infinity-3x.webp b/the8eam/open-iconic/webp/infinity-3x.webp new file mode 100644 index 0000000..cbff7fa Binary files /dev/null and b/the8eam/open-iconic/webp/infinity-3x.webp differ diff --git a/the8eam/open-iconic/webp/infinity-4x.webp b/the8eam/open-iconic/webp/infinity-4x.webp new file mode 100644 index 0000000..4444bea Binary files /dev/null and b/the8eam/open-iconic/webp/infinity-4x.webp differ diff --git a/the8eam/open-iconic/webp/infinity-6x.webp b/the8eam/open-iconic/webp/infinity-6x.webp new file mode 100644 index 0000000..cbde33f Binary files /dev/null and b/the8eam/open-iconic/webp/infinity-6x.webp differ diff --git a/the8eam/open-iconic/webp/infinity-8x.webp b/the8eam/open-iconic/webp/infinity-8x.webp new file mode 100644 index 0000000..6a2faea Binary files /dev/null and b/the8eam/open-iconic/webp/infinity-8x.webp differ diff --git a/the8eam/open-iconic/webp/infinity.webp b/the8eam/open-iconic/webp/infinity.webp new file mode 100644 index 0000000..5f73479 Binary files /dev/null and b/the8eam/open-iconic/webp/infinity.webp differ diff --git a/the8eam/open-iconic/webp/info-2x.webp b/the8eam/open-iconic/webp/info-2x.webp new file mode 100644 index 0000000..fa26305 Binary files /dev/null and b/the8eam/open-iconic/webp/info-2x.webp differ diff --git a/the8eam/open-iconic/webp/info-3x.webp b/the8eam/open-iconic/webp/info-3x.webp new file mode 100644 index 0000000..c769077 Binary files /dev/null and b/the8eam/open-iconic/webp/info-3x.webp differ diff --git a/the8eam/open-iconic/webp/info-4x.webp b/the8eam/open-iconic/webp/info-4x.webp new file mode 100644 index 0000000..dbe2a95 Binary files /dev/null and b/the8eam/open-iconic/webp/info-4x.webp differ diff --git a/the8eam/open-iconic/webp/info-6x.webp b/the8eam/open-iconic/webp/info-6x.webp new file mode 100644 index 0000000..7bd0de0 Binary files /dev/null and b/the8eam/open-iconic/webp/info-6x.webp differ diff --git a/the8eam/open-iconic/webp/info-8x.webp b/the8eam/open-iconic/webp/info-8x.webp new file mode 100644 index 0000000..b950579 Binary files /dev/null and b/the8eam/open-iconic/webp/info-8x.webp differ diff --git a/the8eam/open-iconic/webp/info.webp b/the8eam/open-iconic/webp/info.webp new file mode 100644 index 0000000..d394e0d Binary files /dev/null and b/the8eam/open-iconic/webp/info.webp differ diff --git a/the8eam/open-iconic/webp/italic-2x.webp b/the8eam/open-iconic/webp/italic-2x.webp new file mode 100644 index 0000000..c4119b2 Binary files /dev/null and b/the8eam/open-iconic/webp/italic-2x.webp differ diff --git a/the8eam/open-iconic/webp/italic-3x.webp b/the8eam/open-iconic/webp/italic-3x.webp new file mode 100644 index 0000000..79b6626 Binary files /dev/null and b/the8eam/open-iconic/webp/italic-3x.webp differ diff --git a/the8eam/open-iconic/webp/italic-4x.webp b/the8eam/open-iconic/webp/italic-4x.webp new file mode 100644 index 0000000..04abf50 Binary files /dev/null and b/the8eam/open-iconic/webp/italic-4x.webp differ diff --git a/the8eam/open-iconic/webp/italic-6x.webp b/the8eam/open-iconic/webp/italic-6x.webp new file mode 100644 index 0000000..9c187fa Binary files /dev/null and b/the8eam/open-iconic/webp/italic-6x.webp differ diff --git a/the8eam/open-iconic/webp/italic-8x.webp b/the8eam/open-iconic/webp/italic-8x.webp new file mode 100644 index 0000000..3d785e0 Binary files /dev/null and b/the8eam/open-iconic/webp/italic-8x.webp differ diff --git a/the8eam/open-iconic/webp/italic.webp b/the8eam/open-iconic/webp/italic.webp new file mode 100644 index 0000000..dd8c76e Binary files /dev/null and b/the8eam/open-iconic/webp/italic.webp differ diff --git a/the8eam/open-iconic/webp/justify-center-2x.webp b/the8eam/open-iconic/webp/justify-center-2x.webp new file mode 100644 index 0000000..915bb86 Binary files /dev/null and b/the8eam/open-iconic/webp/justify-center-2x.webp differ diff --git a/the8eam/open-iconic/webp/justify-center-3x.webp b/the8eam/open-iconic/webp/justify-center-3x.webp new file mode 100644 index 0000000..a11ff49 Binary files /dev/null and b/the8eam/open-iconic/webp/justify-center-3x.webp differ diff --git a/the8eam/open-iconic/webp/justify-center-4x.webp b/the8eam/open-iconic/webp/justify-center-4x.webp new file mode 100644 index 0000000..1c9720c Binary files /dev/null and b/the8eam/open-iconic/webp/justify-center-4x.webp differ diff --git a/the8eam/open-iconic/webp/justify-center-6x.webp b/the8eam/open-iconic/webp/justify-center-6x.webp new file mode 100644 index 0000000..75da546 Binary files /dev/null and b/the8eam/open-iconic/webp/justify-center-6x.webp differ diff --git a/the8eam/open-iconic/webp/justify-center-8x.webp b/the8eam/open-iconic/webp/justify-center-8x.webp new file mode 100644 index 0000000..813e679 Binary files /dev/null and b/the8eam/open-iconic/webp/justify-center-8x.webp differ diff --git a/the8eam/open-iconic/webp/justify-center.webp b/the8eam/open-iconic/webp/justify-center.webp new file mode 100644 index 0000000..6062aea Binary files /dev/null and b/the8eam/open-iconic/webp/justify-center.webp differ diff --git a/the8eam/open-iconic/webp/justify-left-2x.webp b/the8eam/open-iconic/webp/justify-left-2x.webp new file mode 100644 index 0000000..4ba9d3f Binary files /dev/null and b/the8eam/open-iconic/webp/justify-left-2x.webp differ diff --git a/the8eam/open-iconic/webp/justify-left-3x.webp b/the8eam/open-iconic/webp/justify-left-3x.webp new file mode 100644 index 0000000..b648cae Binary files /dev/null and b/the8eam/open-iconic/webp/justify-left-3x.webp differ diff --git a/the8eam/open-iconic/webp/justify-left-4x.webp b/the8eam/open-iconic/webp/justify-left-4x.webp new file mode 100644 index 0000000..6478f79 Binary files /dev/null and b/the8eam/open-iconic/webp/justify-left-4x.webp differ diff --git a/the8eam/open-iconic/webp/justify-left-6x.webp b/the8eam/open-iconic/webp/justify-left-6x.webp new file mode 100644 index 0000000..ba30404 Binary files /dev/null and b/the8eam/open-iconic/webp/justify-left-6x.webp differ diff --git a/the8eam/open-iconic/webp/justify-left-8x.webp b/the8eam/open-iconic/webp/justify-left-8x.webp new file mode 100644 index 0000000..883d529 Binary files /dev/null and b/the8eam/open-iconic/webp/justify-left-8x.webp differ diff --git a/the8eam/open-iconic/webp/justify-left.webp b/the8eam/open-iconic/webp/justify-left.webp new file mode 100644 index 0000000..a524b8e Binary files /dev/null and b/the8eam/open-iconic/webp/justify-left.webp differ diff --git a/the8eam/open-iconic/webp/justify-right-2x.webp b/the8eam/open-iconic/webp/justify-right-2x.webp new file mode 100644 index 0000000..6a1b682 Binary files /dev/null and b/the8eam/open-iconic/webp/justify-right-2x.webp differ diff --git a/the8eam/open-iconic/webp/justify-right-3x.webp b/the8eam/open-iconic/webp/justify-right-3x.webp new file mode 100644 index 0000000..eff439a Binary files /dev/null and b/the8eam/open-iconic/webp/justify-right-3x.webp differ diff --git a/the8eam/open-iconic/webp/justify-right-4x.webp b/the8eam/open-iconic/webp/justify-right-4x.webp new file mode 100644 index 0000000..0221476 Binary files /dev/null and b/the8eam/open-iconic/webp/justify-right-4x.webp differ diff --git a/the8eam/open-iconic/webp/justify-right-6x.webp b/the8eam/open-iconic/webp/justify-right-6x.webp new file mode 100644 index 0000000..4512d4c Binary files /dev/null and b/the8eam/open-iconic/webp/justify-right-6x.webp differ diff --git a/the8eam/open-iconic/webp/justify-right-8x.webp b/the8eam/open-iconic/webp/justify-right-8x.webp new file mode 100644 index 0000000..b91faeb Binary files /dev/null and b/the8eam/open-iconic/webp/justify-right-8x.webp differ diff --git a/the8eam/open-iconic/webp/justify-right.webp b/the8eam/open-iconic/webp/justify-right.webp new file mode 100644 index 0000000..4a19723 Binary files /dev/null and b/the8eam/open-iconic/webp/justify-right.webp differ diff --git a/the8eam/open-iconic/webp/key-2x.webp b/the8eam/open-iconic/webp/key-2x.webp new file mode 100644 index 0000000..0052916 Binary files /dev/null and b/the8eam/open-iconic/webp/key-2x.webp differ diff --git a/the8eam/open-iconic/webp/key-3x.webp b/the8eam/open-iconic/webp/key-3x.webp new file mode 100644 index 0000000..a901fbd Binary files /dev/null and b/the8eam/open-iconic/webp/key-3x.webp differ diff --git a/the8eam/open-iconic/webp/key-4x.webp b/the8eam/open-iconic/webp/key-4x.webp new file mode 100644 index 0000000..d918258 Binary files /dev/null and b/the8eam/open-iconic/webp/key-4x.webp differ diff --git a/the8eam/open-iconic/webp/key-6x.webp b/the8eam/open-iconic/webp/key-6x.webp new file mode 100644 index 0000000..fdc6e64 Binary files /dev/null and b/the8eam/open-iconic/webp/key-6x.webp differ diff --git a/the8eam/open-iconic/webp/key-8x.webp b/the8eam/open-iconic/webp/key-8x.webp new file mode 100644 index 0000000..e07012d Binary files /dev/null and b/the8eam/open-iconic/webp/key-8x.webp differ diff --git a/the8eam/open-iconic/webp/key.webp b/the8eam/open-iconic/webp/key.webp new file mode 100644 index 0000000..d740116 Binary files /dev/null and b/the8eam/open-iconic/webp/key.webp differ diff --git a/the8eam/open-iconic/webp/laptop-2x.webp b/the8eam/open-iconic/webp/laptop-2x.webp new file mode 100644 index 0000000..ba84306 Binary files /dev/null and b/the8eam/open-iconic/webp/laptop-2x.webp differ diff --git a/the8eam/open-iconic/webp/laptop-3x.webp b/the8eam/open-iconic/webp/laptop-3x.webp new file mode 100644 index 0000000..8ef0b12 Binary files /dev/null and b/the8eam/open-iconic/webp/laptop-3x.webp differ diff --git a/the8eam/open-iconic/webp/laptop-4x.webp b/the8eam/open-iconic/webp/laptop-4x.webp new file mode 100644 index 0000000..d1234cc Binary files /dev/null and b/the8eam/open-iconic/webp/laptop-4x.webp differ diff --git a/the8eam/open-iconic/webp/laptop-6x.webp b/the8eam/open-iconic/webp/laptop-6x.webp new file mode 100644 index 0000000..facfccd Binary files /dev/null and b/the8eam/open-iconic/webp/laptop-6x.webp differ diff --git a/the8eam/open-iconic/webp/laptop-8x.webp b/the8eam/open-iconic/webp/laptop-8x.webp new file mode 100644 index 0000000..bd125ec Binary files /dev/null and b/the8eam/open-iconic/webp/laptop-8x.webp differ diff --git a/the8eam/open-iconic/webp/laptop.webp b/the8eam/open-iconic/webp/laptop.webp new file mode 100644 index 0000000..9eeeb8b Binary files /dev/null and b/the8eam/open-iconic/webp/laptop.webp differ diff --git a/the8eam/open-iconic/webp/layers-2x.webp b/the8eam/open-iconic/webp/layers-2x.webp new file mode 100644 index 0000000..4ffc1ec Binary files /dev/null and b/the8eam/open-iconic/webp/layers-2x.webp differ diff --git a/the8eam/open-iconic/webp/layers-3x.webp b/the8eam/open-iconic/webp/layers-3x.webp new file mode 100644 index 0000000..fa53199 Binary files /dev/null and b/the8eam/open-iconic/webp/layers-3x.webp differ diff --git a/the8eam/open-iconic/webp/layers-4x.webp b/the8eam/open-iconic/webp/layers-4x.webp new file mode 100644 index 0000000..61d6bec Binary files /dev/null and b/the8eam/open-iconic/webp/layers-4x.webp differ diff --git a/the8eam/open-iconic/webp/layers-6x.webp b/the8eam/open-iconic/webp/layers-6x.webp new file mode 100644 index 0000000..a586d3b Binary files /dev/null and b/the8eam/open-iconic/webp/layers-6x.webp differ diff --git a/the8eam/open-iconic/webp/layers-8x.webp b/the8eam/open-iconic/webp/layers-8x.webp new file mode 100644 index 0000000..bacf2d7 Binary files /dev/null and b/the8eam/open-iconic/webp/layers-8x.webp differ diff --git a/the8eam/open-iconic/webp/layers.webp b/the8eam/open-iconic/webp/layers.webp new file mode 100644 index 0000000..8177b42 Binary files /dev/null and b/the8eam/open-iconic/webp/layers.webp differ diff --git a/the8eam/open-iconic/webp/lightbulb-2x.webp b/the8eam/open-iconic/webp/lightbulb-2x.webp new file mode 100644 index 0000000..496b813 Binary files /dev/null and b/the8eam/open-iconic/webp/lightbulb-2x.webp differ diff --git a/the8eam/open-iconic/webp/lightbulb-3x.webp b/the8eam/open-iconic/webp/lightbulb-3x.webp new file mode 100644 index 0000000..cd94ede Binary files /dev/null and b/the8eam/open-iconic/webp/lightbulb-3x.webp differ diff --git a/the8eam/open-iconic/webp/lightbulb-4x.webp b/the8eam/open-iconic/webp/lightbulb-4x.webp new file mode 100644 index 0000000..e413c79 Binary files /dev/null and b/the8eam/open-iconic/webp/lightbulb-4x.webp differ diff --git a/the8eam/open-iconic/webp/lightbulb-6x.webp b/the8eam/open-iconic/webp/lightbulb-6x.webp new file mode 100644 index 0000000..a17b6a9 Binary files /dev/null and b/the8eam/open-iconic/webp/lightbulb-6x.webp differ diff --git a/the8eam/open-iconic/webp/lightbulb-8x.webp b/the8eam/open-iconic/webp/lightbulb-8x.webp new file mode 100644 index 0000000..173b98b Binary files /dev/null and b/the8eam/open-iconic/webp/lightbulb-8x.webp differ diff --git a/the8eam/open-iconic/webp/lightbulb.webp b/the8eam/open-iconic/webp/lightbulb.webp new file mode 100644 index 0000000..67fd467 Binary files /dev/null and b/the8eam/open-iconic/webp/lightbulb.webp differ diff --git a/the8eam/open-iconic/webp/link-broken-2x.webp b/the8eam/open-iconic/webp/link-broken-2x.webp new file mode 100644 index 0000000..eaeb71e Binary files /dev/null and b/the8eam/open-iconic/webp/link-broken-2x.webp differ diff --git a/the8eam/open-iconic/webp/link-broken-3x.webp b/the8eam/open-iconic/webp/link-broken-3x.webp new file mode 100644 index 0000000..88266c3 Binary files /dev/null and b/the8eam/open-iconic/webp/link-broken-3x.webp differ diff --git a/the8eam/open-iconic/webp/link-broken-4x.webp b/the8eam/open-iconic/webp/link-broken-4x.webp new file mode 100644 index 0000000..6f1e288 Binary files /dev/null and b/the8eam/open-iconic/webp/link-broken-4x.webp differ diff --git a/the8eam/open-iconic/webp/link-broken-6x.webp b/the8eam/open-iconic/webp/link-broken-6x.webp new file mode 100644 index 0000000..146b15b Binary files /dev/null and b/the8eam/open-iconic/webp/link-broken-6x.webp differ diff --git a/the8eam/open-iconic/webp/link-broken-8x.webp b/the8eam/open-iconic/webp/link-broken-8x.webp new file mode 100644 index 0000000..3367f70 Binary files /dev/null and b/the8eam/open-iconic/webp/link-broken-8x.webp differ diff --git a/the8eam/open-iconic/webp/link-broken.webp b/the8eam/open-iconic/webp/link-broken.webp new file mode 100644 index 0000000..f778219 Binary files /dev/null and b/the8eam/open-iconic/webp/link-broken.webp differ diff --git a/the8eam/open-iconic/webp/link-intact-2x.webp b/the8eam/open-iconic/webp/link-intact-2x.webp new file mode 100644 index 0000000..3c8252b Binary files /dev/null and b/the8eam/open-iconic/webp/link-intact-2x.webp differ diff --git a/the8eam/open-iconic/webp/link-intact-3x.webp b/the8eam/open-iconic/webp/link-intact-3x.webp new file mode 100644 index 0000000..d293422 Binary files /dev/null and b/the8eam/open-iconic/webp/link-intact-3x.webp differ diff --git a/the8eam/open-iconic/webp/link-intact-4x.webp b/the8eam/open-iconic/webp/link-intact-4x.webp new file mode 100644 index 0000000..a8fcb94 Binary files /dev/null and b/the8eam/open-iconic/webp/link-intact-4x.webp differ diff --git a/the8eam/open-iconic/webp/link-intact-6x.webp b/the8eam/open-iconic/webp/link-intact-6x.webp new file mode 100644 index 0000000..602197a Binary files /dev/null and b/the8eam/open-iconic/webp/link-intact-6x.webp differ diff --git a/the8eam/open-iconic/webp/link-intact-8x.webp b/the8eam/open-iconic/webp/link-intact-8x.webp new file mode 100644 index 0000000..e8ff587 Binary files /dev/null and b/the8eam/open-iconic/webp/link-intact-8x.webp differ diff --git a/the8eam/open-iconic/webp/link-intact.webp b/the8eam/open-iconic/webp/link-intact.webp new file mode 100644 index 0000000..2a188ca Binary files /dev/null and b/the8eam/open-iconic/webp/link-intact.webp differ diff --git a/the8eam/open-iconic/webp/list-2x.webp b/the8eam/open-iconic/webp/list-2x.webp new file mode 100644 index 0000000..f2e81a5 Binary files /dev/null and b/the8eam/open-iconic/webp/list-2x.webp differ diff --git a/the8eam/open-iconic/webp/list-3x.webp b/the8eam/open-iconic/webp/list-3x.webp new file mode 100644 index 0000000..528c555 Binary files /dev/null and b/the8eam/open-iconic/webp/list-3x.webp differ diff --git a/the8eam/open-iconic/webp/list-4x.webp b/the8eam/open-iconic/webp/list-4x.webp new file mode 100644 index 0000000..f61ad06 Binary files /dev/null and b/the8eam/open-iconic/webp/list-4x.webp differ diff --git a/the8eam/open-iconic/webp/list-6x.webp b/the8eam/open-iconic/webp/list-6x.webp new file mode 100644 index 0000000..ceb2914 Binary files /dev/null and b/the8eam/open-iconic/webp/list-6x.webp differ diff --git a/the8eam/open-iconic/webp/list-8x.webp b/the8eam/open-iconic/webp/list-8x.webp new file mode 100644 index 0000000..157c317 Binary files /dev/null and b/the8eam/open-iconic/webp/list-8x.webp differ diff --git a/the8eam/open-iconic/webp/list-rich-2x.webp b/the8eam/open-iconic/webp/list-rich-2x.webp new file mode 100644 index 0000000..ec8cd76 Binary files /dev/null and b/the8eam/open-iconic/webp/list-rich-2x.webp differ diff --git a/the8eam/open-iconic/webp/list-rich-3x.webp b/the8eam/open-iconic/webp/list-rich-3x.webp new file mode 100644 index 0000000..e5d2793 Binary files /dev/null and b/the8eam/open-iconic/webp/list-rich-3x.webp differ diff --git a/the8eam/open-iconic/webp/list-rich-4x.webp b/the8eam/open-iconic/webp/list-rich-4x.webp new file mode 100644 index 0000000..932fa61 Binary files /dev/null and b/the8eam/open-iconic/webp/list-rich-4x.webp differ diff --git a/the8eam/open-iconic/webp/list-rich-6x.webp b/the8eam/open-iconic/webp/list-rich-6x.webp new file mode 100644 index 0000000..b4eadb7 Binary files /dev/null and b/the8eam/open-iconic/webp/list-rich-6x.webp differ diff --git a/the8eam/open-iconic/webp/list-rich-8x.webp b/the8eam/open-iconic/webp/list-rich-8x.webp new file mode 100644 index 0000000..06c72ee Binary files /dev/null and b/the8eam/open-iconic/webp/list-rich-8x.webp differ diff --git a/the8eam/open-iconic/webp/list-rich.webp b/the8eam/open-iconic/webp/list-rich.webp new file mode 100644 index 0000000..3d54807 Binary files /dev/null and b/the8eam/open-iconic/webp/list-rich.webp differ diff --git a/the8eam/open-iconic/webp/list.webp b/the8eam/open-iconic/webp/list.webp new file mode 100644 index 0000000..433078c Binary files /dev/null and b/the8eam/open-iconic/webp/list.webp differ diff --git a/the8eam/open-iconic/webp/location-2x.webp b/the8eam/open-iconic/webp/location-2x.webp new file mode 100644 index 0000000..f5c9efd Binary files /dev/null and b/the8eam/open-iconic/webp/location-2x.webp differ diff --git a/the8eam/open-iconic/webp/location-3x.webp b/the8eam/open-iconic/webp/location-3x.webp new file mode 100644 index 0000000..8fe8de2 Binary files /dev/null and b/the8eam/open-iconic/webp/location-3x.webp differ diff --git a/the8eam/open-iconic/webp/location-4x.webp b/the8eam/open-iconic/webp/location-4x.webp new file mode 100644 index 0000000..9f46c1a Binary files /dev/null and b/the8eam/open-iconic/webp/location-4x.webp differ diff --git a/the8eam/open-iconic/webp/location-6x.webp b/the8eam/open-iconic/webp/location-6x.webp new file mode 100644 index 0000000..2b2712a Binary files /dev/null and b/the8eam/open-iconic/webp/location-6x.webp differ diff --git a/the8eam/open-iconic/webp/location-8x.webp b/the8eam/open-iconic/webp/location-8x.webp new file mode 100644 index 0000000..9c545fc Binary files /dev/null and b/the8eam/open-iconic/webp/location-8x.webp differ diff --git a/the8eam/open-iconic/webp/location.webp b/the8eam/open-iconic/webp/location.webp new file mode 100644 index 0000000..a2c41e8 Binary files /dev/null and b/the8eam/open-iconic/webp/location.webp differ diff --git a/the8eam/open-iconic/webp/lock-locked-2x.webp b/the8eam/open-iconic/webp/lock-locked-2x.webp new file mode 100644 index 0000000..fa9eb5b Binary files /dev/null and b/the8eam/open-iconic/webp/lock-locked-2x.webp differ diff --git a/the8eam/open-iconic/webp/lock-locked-3x.webp b/the8eam/open-iconic/webp/lock-locked-3x.webp new file mode 100644 index 0000000..c4e30fd Binary files /dev/null and b/the8eam/open-iconic/webp/lock-locked-3x.webp differ diff --git a/the8eam/open-iconic/webp/lock-locked-4x.webp b/the8eam/open-iconic/webp/lock-locked-4x.webp new file mode 100644 index 0000000..60211f5 Binary files /dev/null and b/the8eam/open-iconic/webp/lock-locked-4x.webp differ diff --git a/the8eam/open-iconic/webp/lock-locked-6x.webp b/the8eam/open-iconic/webp/lock-locked-6x.webp new file mode 100644 index 0000000..d20c307 Binary files /dev/null and b/the8eam/open-iconic/webp/lock-locked-6x.webp differ diff --git a/the8eam/open-iconic/webp/lock-locked-8x.webp b/the8eam/open-iconic/webp/lock-locked-8x.webp new file mode 100644 index 0000000..44aeba4 Binary files /dev/null and b/the8eam/open-iconic/webp/lock-locked-8x.webp differ diff --git a/the8eam/open-iconic/webp/lock-locked.webp b/the8eam/open-iconic/webp/lock-locked.webp new file mode 100644 index 0000000..87eb3dd Binary files /dev/null and b/the8eam/open-iconic/webp/lock-locked.webp differ diff --git a/the8eam/open-iconic/webp/lock-unlocked-2x.webp b/the8eam/open-iconic/webp/lock-unlocked-2x.webp new file mode 100644 index 0000000..798ff49 Binary files /dev/null and b/the8eam/open-iconic/webp/lock-unlocked-2x.webp differ diff --git a/the8eam/open-iconic/webp/lock-unlocked-3x.webp b/the8eam/open-iconic/webp/lock-unlocked-3x.webp new file mode 100644 index 0000000..3fd7a4a Binary files /dev/null and b/the8eam/open-iconic/webp/lock-unlocked-3x.webp differ diff --git a/the8eam/open-iconic/webp/lock-unlocked-4x.webp b/the8eam/open-iconic/webp/lock-unlocked-4x.webp new file mode 100644 index 0000000..f811a76 Binary files /dev/null and b/the8eam/open-iconic/webp/lock-unlocked-4x.webp differ diff --git a/the8eam/open-iconic/webp/lock-unlocked-6x.webp b/the8eam/open-iconic/webp/lock-unlocked-6x.webp new file mode 100644 index 0000000..0bda8fb Binary files /dev/null and b/the8eam/open-iconic/webp/lock-unlocked-6x.webp differ diff --git a/the8eam/open-iconic/webp/lock-unlocked-8x.webp b/the8eam/open-iconic/webp/lock-unlocked-8x.webp new file mode 100644 index 0000000..765cfec Binary files /dev/null and b/the8eam/open-iconic/webp/lock-unlocked-8x.webp differ diff --git a/the8eam/open-iconic/webp/lock-unlocked.webp b/the8eam/open-iconic/webp/lock-unlocked.webp new file mode 100644 index 0000000..c45debc Binary files /dev/null and b/the8eam/open-iconic/webp/lock-unlocked.webp differ diff --git a/the8eam/open-iconic/webp/loop-2x.webp b/the8eam/open-iconic/webp/loop-2x.webp new file mode 100644 index 0000000..760e04b Binary files /dev/null and b/the8eam/open-iconic/webp/loop-2x.webp differ diff --git a/the8eam/open-iconic/webp/loop-3x.webp b/the8eam/open-iconic/webp/loop-3x.webp new file mode 100644 index 0000000..fae3328 Binary files /dev/null and b/the8eam/open-iconic/webp/loop-3x.webp differ diff --git a/the8eam/open-iconic/webp/loop-4x.webp b/the8eam/open-iconic/webp/loop-4x.webp new file mode 100644 index 0000000..9c50d49 Binary files /dev/null and b/the8eam/open-iconic/webp/loop-4x.webp differ diff --git a/the8eam/open-iconic/webp/loop-6x.webp b/the8eam/open-iconic/webp/loop-6x.webp new file mode 100644 index 0000000..b147cfb Binary files /dev/null and b/the8eam/open-iconic/webp/loop-6x.webp differ diff --git a/the8eam/open-iconic/webp/loop-8x.webp b/the8eam/open-iconic/webp/loop-8x.webp new file mode 100644 index 0000000..861e288 Binary files /dev/null and b/the8eam/open-iconic/webp/loop-8x.webp differ diff --git a/the8eam/open-iconic/webp/loop-circular-2x.webp b/the8eam/open-iconic/webp/loop-circular-2x.webp new file mode 100644 index 0000000..2f4c3f7 Binary files /dev/null and b/the8eam/open-iconic/webp/loop-circular-2x.webp differ diff --git a/the8eam/open-iconic/webp/loop-circular-3x.webp b/the8eam/open-iconic/webp/loop-circular-3x.webp new file mode 100644 index 0000000..f2b2f6d Binary files /dev/null and b/the8eam/open-iconic/webp/loop-circular-3x.webp differ diff --git a/the8eam/open-iconic/webp/loop-circular-4x.webp b/the8eam/open-iconic/webp/loop-circular-4x.webp new file mode 100644 index 0000000..bc13619 Binary files /dev/null and b/the8eam/open-iconic/webp/loop-circular-4x.webp differ diff --git a/the8eam/open-iconic/webp/loop-circular-6x.webp b/the8eam/open-iconic/webp/loop-circular-6x.webp new file mode 100644 index 0000000..6c8d24a Binary files /dev/null and b/the8eam/open-iconic/webp/loop-circular-6x.webp differ diff --git a/the8eam/open-iconic/webp/loop-circular-8x.webp b/the8eam/open-iconic/webp/loop-circular-8x.webp new file mode 100644 index 0000000..932fb19 Binary files /dev/null and b/the8eam/open-iconic/webp/loop-circular-8x.webp differ diff --git a/the8eam/open-iconic/webp/loop-circular.webp b/the8eam/open-iconic/webp/loop-circular.webp new file mode 100644 index 0000000..3db5959 Binary files /dev/null and b/the8eam/open-iconic/webp/loop-circular.webp differ diff --git a/the8eam/open-iconic/webp/loop-square-2x.webp b/the8eam/open-iconic/webp/loop-square-2x.webp new file mode 100644 index 0000000..bfb1885 Binary files /dev/null and b/the8eam/open-iconic/webp/loop-square-2x.webp differ diff --git a/the8eam/open-iconic/webp/loop-square-3x.webp b/the8eam/open-iconic/webp/loop-square-3x.webp new file mode 100644 index 0000000..d8605f1 Binary files /dev/null and b/the8eam/open-iconic/webp/loop-square-3x.webp differ diff --git a/the8eam/open-iconic/webp/loop-square-4x.webp b/the8eam/open-iconic/webp/loop-square-4x.webp new file mode 100644 index 0000000..25a1306 Binary files /dev/null and b/the8eam/open-iconic/webp/loop-square-4x.webp differ diff --git a/the8eam/open-iconic/webp/loop-square-6x.webp b/the8eam/open-iconic/webp/loop-square-6x.webp new file mode 100644 index 0000000..01d8e9e Binary files /dev/null and b/the8eam/open-iconic/webp/loop-square-6x.webp differ diff --git a/the8eam/open-iconic/webp/loop-square-8x.webp b/the8eam/open-iconic/webp/loop-square-8x.webp new file mode 100644 index 0000000..1ea2c58 Binary files /dev/null and b/the8eam/open-iconic/webp/loop-square-8x.webp differ diff --git a/the8eam/open-iconic/webp/loop-square.webp b/the8eam/open-iconic/webp/loop-square.webp new file mode 100644 index 0000000..9c2e0cc Binary files /dev/null and b/the8eam/open-iconic/webp/loop-square.webp differ diff --git a/the8eam/open-iconic/webp/loop.webp b/the8eam/open-iconic/webp/loop.webp new file mode 100644 index 0000000..5eebe6e Binary files /dev/null and b/the8eam/open-iconic/webp/loop.webp differ diff --git a/the8eam/open-iconic/webp/magnifying-glass-2x.webp b/the8eam/open-iconic/webp/magnifying-glass-2x.webp new file mode 100644 index 0000000..d7889f7 Binary files /dev/null and b/the8eam/open-iconic/webp/magnifying-glass-2x.webp differ diff --git a/the8eam/open-iconic/webp/magnifying-glass-3x.webp b/the8eam/open-iconic/webp/magnifying-glass-3x.webp new file mode 100644 index 0000000..7a1ac65 Binary files /dev/null and b/the8eam/open-iconic/webp/magnifying-glass-3x.webp differ diff --git a/the8eam/open-iconic/webp/magnifying-glass-4x.webp b/the8eam/open-iconic/webp/magnifying-glass-4x.webp new file mode 100644 index 0000000..0078ed4 Binary files /dev/null and b/the8eam/open-iconic/webp/magnifying-glass-4x.webp differ diff --git a/the8eam/open-iconic/webp/magnifying-glass-6x.webp b/the8eam/open-iconic/webp/magnifying-glass-6x.webp new file mode 100644 index 0000000..53d15c0 Binary files /dev/null and b/the8eam/open-iconic/webp/magnifying-glass-6x.webp differ diff --git a/the8eam/open-iconic/webp/magnifying-glass-8x.webp b/the8eam/open-iconic/webp/magnifying-glass-8x.webp new file mode 100644 index 0000000..8f73515 Binary files /dev/null and b/the8eam/open-iconic/webp/magnifying-glass-8x.webp differ diff --git a/the8eam/open-iconic/webp/magnifying-glass.webp b/the8eam/open-iconic/webp/magnifying-glass.webp new file mode 100644 index 0000000..ed2a435 Binary files /dev/null and b/the8eam/open-iconic/webp/magnifying-glass.webp differ diff --git a/the8eam/open-iconic/webp/map-2x.webp b/the8eam/open-iconic/webp/map-2x.webp new file mode 100644 index 0000000..ed74df7 Binary files /dev/null and b/the8eam/open-iconic/webp/map-2x.webp differ diff --git a/the8eam/open-iconic/webp/map-3x.webp b/the8eam/open-iconic/webp/map-3x.webp new file mode 100644 index 0000000..7965a79 Binary files /dev/null and b/the8eam/open-iconic/webp/map-3x.webp differ diff --git a/the8eam/open-iconic/webp/map-4x.webp b/the8eam/open-iconic/webp/map-4x.webp new file mode 100644 index 0000000..5055610 Binary files /dev/null and b/the8eam/open-iconic/webp/map-4x.webp differ diff --git a/the8eam/open-iconic/webp/map-6x.webp b/the8eam/open-iconic/webp/map-6x.webp new file mode 100644 index 0000000..2cba959 Binary files /dev/null and b/the8eam/open-iconic/webp/map-6x.webp differ diff --git a/the8eam/open-iconic/webp/map-8x.webp b/the8eam/open-iconic/webp/map-8x.webp new file mode 100644 index 0000000..11e4fb0 Binary files /dev/null and b/the8eam/open-iconic/webp/map-8x.webp differ diff --git a/the8eam/open-iconic/webp/map-marker-2x.webp b/the8eam/open-iconic/webp/map-marker-2x.webp new file mode 100644 index 0000000..751ccaa Binary files /dev/null and b/the8eam/open-iconic/webp/map-marker-2x.webp differ diff --git a/the8eam/open-iconic/webp/map-marker-3x.webp b/the8eam/open-iconic/webp/map-marker-3x.webp new file mode 100644 index 0000000..c61cf7b Binary files /dev/null and b/the8eam/open-iconic/webp/map-marker-3x.webp differ diff --git a/the8eam/open-iconic/webp/map-marker-4x.webp b/the8eam/open-iconic/webp/map-marker-4x.webp new file mode 100644 index 0000000..3f62273 Binary files /dev/null and b/the8eam/open-iconic/webp/map-marker-4x.webp differ diff --git a/the8eam/open-iconic/webp/map-marker-6x.webp b/the8eam/open-iconic/webp/map-marker-6x.webp new file mode 100644 index 0000000..e7d7540 Binary files /dev/null and b/the8eam/open-iconic/webp/map-marker-6x.webp differ diff --git a/the8eam/open-iconic/webp/map-marker-8x.webp b/the8eam/open-iconic/webp/map-marker-8x.webp new file mode 100644 index 0000000..09e5985 Binary files /dev/null and b/the8eam/open-iconic/webp/map-marker-8x.webp differ diff --git a/the8eam/open-iconic/webp/map-marker.webp b/the8eam/open-iconic/webp/map-marker.webp new file mode 100644 index 0000000..90fc968 Binary files /dev/null and b/the8eam/open-iconic/webp/map-marker.webp differ diff --git a/the8eam/open-iconic/webp/map.webp b/the8eam/open-iconic/webp/map.webp new file mode 100644 index 0000000..0d7fc2a Binary files /dev/null and b/the8eam/open-iconic/webp/map.webp differ diff --git a/the8eam/open-iconic/webp/media-pause-2x.webp b/the8eam/open-iconic/webp/media-pause-2x.webp new file mode 100644 index 0000000..4e7a0ee Binary files /dev/null and b/the8eam/open-iconic/webp/media-pause-2x.webp differ diff --git a/the8eam/open-iconic/webp/media-pause-3x.webp b/the8eam/open-iconic/webp/media-pause-3x.webp new file mode 100644 index 0000000..1ac08cd Binary files /dev/null and b/the8eam/open-iconic/webp/media-pause-3x.webp differ diff --git a/the8eam/open-iconic/webp/media-pause-4x.webp b/the8eam/open-iconic/webp/media-pause-4x.webp new file mode 100644 index 0000000..fa7bce4 Binary files /dev/null and b/the8eam/open-iconic/webp/media-pause-4x.webp differ diff --git a/the8eam/open-iconic/webp/media-pause-6x.webp b/the8eam/open-iconic/webp/media-pause-6x.webp new file mode 100644 index 0000000..c61afce Binary files /dev/null and b/the8eam/open-iconic/webp/media-pause-6x.webp differ diff --git a/the8eam/open-iconic/webp/media-pause-8x.webp b/the8eam/open-iconic/webp/media-pause-8x.webp new file mode 100644 index 0000000..98d915b Binary files /dev/null and b/the8eam/open-iconic/webp/media-pause-8x.webp differ diff --git a/the8eam/open-iconic/webp/media-pause.webp b/the8eam/open-iconic/webp/media-pause.webp new file mode 100644 index 0000000..57a2b31 Binary files /dev/null and b/the8eam/open-iconic/webp/media-pause.webp differ diff --git a/the8eam/open-iconic/webp/media-play-2x.webp b/the8eam/open-iconic/webp/media-play-2x.webp new file mode 100644 index 0000000..8eeec8a Binary files /dev/null and b/the8eam/open-iconic/webp/media-play-2x.webp differ diff --git a/the8eam/open-iconic/webp/media-play-3x.webp b/the8eam/open-iconic/webp/media-play-3x.webp new file mode 100644 index 0000000..64b9857 Binary files /dev/null and b/the8eam/open-iconic/webp/media-play-3x.webp differ diff --git a/the8eam/open-iconic/webp/media-play-4x.webp b/the8eam/open-iconic/webp/media-play-4x.webp new file mode 100644 index 0000000..6911a88 Binary files /dev/null and b/the8eam/open-iconic/webp/media-play-4x.webp differ diff --git a/the8eam/open-iconic/webp/media-play-6x.webp b/the8eam/open-iconic/webp/media-play-6x.webp new file mode 100644 index 0000000..14c55f3 Binary files /dev/null and b/the8eam/open-iconic/webp/media-play-6x.webp differ diff --git a/the8eam/open-iconic/webp/media-play-8x.webp b/the8eam/open-iconic/webp/media-play-8x.webp new file mode 100644 index 0000000..f110bf9 Binary files /dev/null and b/the8eam/open-iconic/webp/media-play-8x.webp differ diff --git a/the8eam/open-iconic/webp/media-play.webp b/the8eam/open-iconic/webp/media-play.webp new file mode 100644 index 0000000..e0cddc9 Binary files /dev/null and b/the8eam/open-iconic/webp/media-play.webp differ diff --git a/the8eam/open-iconic/webp/media-record-2x.webp b/the8eam/open-iconic/webp/media-record-2x.webp new file mode 100644 index 0000000..86c835a Binary files /dev/null and b/the8eam/open-iconic/webp/media-record-2x.webp differ diff --git a/the8eam/open-iconic/webp/media-record-3x.webp b/the8eam/open-iconic/webp/media-record-3x.webp new file mode 100644 index 0000000..c3d74c4 Binary files /dev/null and b/the8eam/open-iconic/webp/media-record-3x.webp differ diff --git a/the8eam/open-iconic/webp/media-record-4x.webp b/the8eam/open-iconic/webp/media-record-4x.webp new file mode 100644 index 0000000..c6421d0 Binary files /dev/null and b/the8eam/open-iconic/webp/media-record-4x.webp differ diff --git a/the8eam/open-iconic/webp/media-record-6x.webp b/the8eam/open-iconic/webp/media-record-6x.webp new file mode 100644 index 0000000..a8dd1cb Binary files /dev/null and b/the8eam/open-iconic/webp/media-record-6x.webp differ diff --git a/the8eam/open-iconic/webp/media-record-8x.webp b/the8eam/open-iconic/webp/media-record-8x.webp new file mode 100644 index 0000000..7653ddc Binary files /dev/null and b/the8eam/open-iconic/webp/media-record-8x.webp differ diff --git a/the8eam/open-iconic/webp/media-record.webp b/the8eam/open-iconic/webp/media-record.webp new file mode 100644 index 0000000..d8450bd Binary files /dev/null and b/the8eam/open-iconic/webp/media-record.webp differ diff --git a/the8eam/open-iconic/webp/media-skip-backward-2x.webp b/the8eam/open-iconic/webp/media-skip-backward-2x.webp new file mode 100644 index 0000000..3a8507f Binary files /dev/null and b/the8eam/open-iconic/webp/media-skip-backward-2x.webp differ diff --git a/the8eam/open-iconic/webp/media-skip-backward-3x.webp b/the8eam/open-iconic/webp/media-skip-backward-3x.webp new file mode 100644 index 0000000..e92aa14 Binary files /dev/null and b/the8eam/open-iconic/webp/media-skip-backward-3x.webp differ diff --git a/the8eam/open-iconic/webp/media-skip-backward-4x.webp b/the8eam/open-iconic/webp/media-skip-backward-4x.webp new file mode 100644 index 0000000..e6678a9 Binary files /dev/null and b/the8eam/open-iconic/webp/media-skip-backward-4x.webp differ diff --git a/the8eam/open-iconic/webp/media-skip-backward-6x.webp b/the8eam/open-iconic/webp/media-skip-backward-6x.webp new file mode 100644 index 0000000..ae7c3b2 Binary files /dev/null and b/the8eam/open-iconic/webp/media-skip-backward-6x.webp differ diff --git a/the8eam/open-iconic/webp/media-skip-backward-8x.webp b/the8eam/open-iconic/webp/media-skip-backward-8x.webp new file mode 100644 index 0000000..60fb938 Binary files /dev/null and b/the8eam/open-iconic/webp/media-skip-backward-8x.webp differ diff --git a/the8eam/open-iconic/webp/media-skip-backward.webp b/the8eam/open-iconic/webp/media-skip-backward.webp new file mode 100644 index 0000000..8e2492e Binary files /dev/null and b/the8eam/open-iconic/webp/media-skip-backward.webp differ diff --git a/the8eam/open-iconic/webp/media-skip-forward-2x.webp b/the8eam/open-iconic/webp/media-skip-forward-2x.webp new file mode 100644 index 0000000..2f853ea Binary files /dev/null and b/the8eam/open-iconic/webp/media-skip-forward-2x.webp differ diff --git a/the8eam/open-iconic/webp/media-skip-forward-3x.webp b/the8eam/open-iconic/webp/media-skip-forward-3x.webp new file mode 100644 index 0000000..7daea6c Binary files /dev/null and b/the8eam/open-iconic/webp/media-skip-forward-3x.webp differ diff --git a/the8eam/open-iconic/webp/media-skip-forward-4x.webp b/the8eam/open-iconic/webp/media-skip-forward-4x.webp new file mode 100644 index 0000000..f3113fc Binary files /dev/null and b/the8eam/open-iconic/webp/media-skip-forward-4x.webp differ diff --git a/the8eam/open-iconic/webp/media-skip-forward-6x.webp b/the8eam/open-iconic/webp/media-skip-forward-6x.webp new file mode 100644 index 0000000..3ff89f4 Binary files /dev/null and b/the8eam/open-iconic/webp/media-skip-forward-6x.webp differ diff --git a/the8eam/open-iconic/webp/media-skip-forward-8x.webp b/the8eam/open-iconic/webp/media-skip-forward-8x.webp new file mode 100644 index 0000000..f8d94f9 Binary files /dev/null and b/the8eam/open-iconic/webp/media-skip-forward-8x.webp differ diff --git a/the8eam/open-iconic/webp/media-skip-forward.webp b/the8eam/open-iconic/webp/media-skip-forward.webp new file mode 100644 index 0000000..a0607ed Binary files /dev/null and b/the8eam/open-iconic/webp/media-skip-forward.webp differ diff --git a/the8eam/open-iconic/webp/media-step-backward-2x.webp b/the8eam/open-iconic/webp/media-step-backward-2x.webp new file mode 100644 index 0000000..fe87d1d Binary files /dev/null and b/the8eam/open-iconic/webp/media-step-backward-2x.webp differ diff --git a/the8eam/open-iconic/webp/media-step-backward-3x.webp b/the8eam/open-iconic/webp/media-step-backward-3x.webp new file mode 100644 index 0000000..fc33116 Binary files /dev/null and b/the8eam/open-iconic/webp/media-step-backward-3x.webp differ diff --git a/the8eam/open-iconic/webp/media-step-backward-4x.webp b/the8eam/open-iconic/webp/media-step-backward-4x.webp new file mode 100644 index 0000000..d4f1ca0 Binary files /dev/null and b/the8eam/open-iconic/webp/media-step-backward-4x.webp differ diff --git a/the8eam/open-iconic/webp/media-step-backward-6x.webp b/the8eam/open-iconic/webp/media-step-backward-6x.webp new file mode 100644 index 0000000..6155313 Binary files /dev/null and b/the8eam/open-iconic/webp/media-step-backward-6x.webp differ diff --git a/the8eam/open-iconic/webp/media-step-backward-8x.webp b/the8eam/open-iconic/webp/media-step-backward-8x.webp new file mode 100644 index 0000000..71e89e0 Binary files /dev/null and b/the8eam/open-iconic/webp/media-step-backward-8x.webp differ diff --git a/the8eam/open-iconic/webp/media-step-backward.webp b/the8eam/open-iconic/webp/media-step-backward.webp new file mode 100644 index 0000000..3e616bd Binary files /dev/null and b/the8eam/open-iconic/webp/media-step-backward.webp differ diff --git a/the8eam/open-iconic/webp/media-step-forward-2x.webp b/the8eam/open-iconic/webp/media-step-forward-2x.webp new file mode 100644 index 0000000..0a614e2 Binary files /dev/null and b/the8eam/open-iconic/webp/media-step-forward-2x.webp differ diff --git a/the8eam/open-iconic/webp/media-step-forward-3x.webp b/the8eam/open-iconic/webp/media-step-forward-3x.webp new file mode 100644 index 0000000..a7e7d49 Binary files /dev/null and b/the8eam/open-iconic/webp/media-step-forward-3x.webp differ diff --git a/the8eam/open-iconic/webp/media-step-forward-4x.webp b/the8eam/open-iconic/webp/media-step-forward-4x.webp new file mode 100644 index 0000000..54d9d38 Binary files /dev/null and b/the8eam/open-iconic/webp/media-step-forward-4x.webp differ diff --git a/the8eam/open-iconic/webp/media-step-forward-6x.webp b/the8eam/open-iconic/webp/media-step-forward-6x.webp new file mode 100644 index 0000000..1400e7c Binary files /dev/null and b/the8eam/open-iconic/webp/media-step-forward-6x.webp differ diff --git a/the8eam/open-iconic/webp/media-step-forward-8x.webp b/the8eam/open-iconic/webp/media-step-forward-8x.webp new file mode 100644 index 0000000..604eaee Binary files /dev/null and b/the8eam/open-iconic/webp/media-step-forward-8x.webp differ diff --git a/the8eam/open-iconic/webp/media-step-forward.webp b/the8eam/open-iconic/webp/media-step-forward.webp new file mode 100644 index 0000000..e41e250 Binary files /dev/null and b/the8eam/open-iconic/webp/media-step-forward.webp differ diff --git a/the8eam/open-iconic/webp/media-stop-2x.webp b/the8eam/open-iconic/webp/media-stop-2x.webp new file mode 100644 index 0000000..c9c39d0 Binary files /dev/null and b/the8eam/open-iconic/webp/media-stop-2x.webp differ diff --git a/the8eam/open-iconic/webp/media-stop-3x.webp b/the8eam/open-iconic/webp/media-stop-3x.webp new file mode 100644 index 0000000..9dc380a Binary files /dev/null and b/the8eam/open-iconic/webp/media-stop-3x.webp differ diff --git a/the8eam/open-iconic/webp/media-stop-4x.webp b/the8eam/open-iconic/webp/media-stop-4x.webp new file mode 100644 index 0000000..12305ea Binary files /dev/null and b/the8eam/open-iconic/webp/media-stop-4x.webp differ diff --git a/the8eam/open-iconic/webp/media-stop-6x.webp b/the8eam/open-iconic/webp/media-stop-6x.webp new file mode 100644 index 0000000..a429247 Binary files /dev/null and b/the8eam/open-iconic/webp/media-stop-6x.webp differ diff --git a/the8eam/open-iconic/webp/media-stop-8x.webp b/the8eam/open-iconic/webp/media-stop-8x.webp new file mode 100644 index 0000000..cde7ef9 Binary files /dev/null and b/the8eam/open-iconic/webp/media-stop-8x.webp differ diff --git a/the8eam/open-iconic/webp/media-stop.webp b/the8eam/open-iconic/webp/media-stop.webp new file mode 100644 index 0000000..e9ba3a1 Binary files /dev/null and b/the8eam/open-iconic/webp/media-stop.webp differ diff --git a/the8eam/open-iconic/webp/medical-cross-2x.webp b/the8eam/open-iconic/webp/medical-cross-2x.webp new file mode 100644 index 0000000..13f18a8 Binary files /dev/null and b/the8eam/open-iconic/webp/medical-cross-2x.webp differ diff --git a/the8eam/open-iconic/webp/medical-cross-3x.webp b/the8eam/open-iconic/webp/medical-cross-3x.webp new file mode 100644 index 0000000..b1b4bfb Binary files /dev/null and b/the8eam/open-iconic/webp/medical-cross-3x.webp differ diff --git a/the8eam/open-iconic/webp/medical-cross-4x.webp b/the8eam/open-iconic/webp/medical-cross-4x.webp new file mode 100644 index 0000000..b32da4d Binary files /dev/null and b/the8eam/open-iconic/webp/medical-cross-4x.webp differ diff --git a/the8eam/open-iconic/webp/medical-cross-6x.webp b/the8eam/open-iconic/webp/medical-cross-6x.webp new file mode 100644 index 0000000..c14ee6f Binary files /dev/null and b/the8eam/open-iconic/webp/medical-cross-6x.webp differ diff --git a/the8eam/open-iconic/webp/medical-cross-8x.webp b/the8eam/open-iconic/webp/medical-cross-8x.webp new file mode 100644 index 0000000..158f7c1 Binary files /dev/null and b/the8eam/open-iconic/webp/medical-cross-8x.webp differ diff --git a/the8eam/open-iconic/webp/medical-cross.webp b/the8eam/open-iconic/webp/medical-cross.webp new file mode 100644 index 0000000..a557111 Binary files /dev/null and b/the8eam/open-iconic/webp/medical-cross.webp differ diff --git a/the8eam/open-iconic/webp/menu-2x.webp b/the8eam/open-iconic/webp/menu-2x.webp new file mode 100644 index 0000000..dfb3a7e Binary files /dev/null and b/the8eam/open-iconic/webp/menu-2x.webp differ diff --git a/the8eam/open-iconic/webp/menu-3x.webp b/the8eam/open-iconic/webp/menu-3x.webp new file mode 100644 index 0000000..0fc9de3 Binary files /dev/null and b/the8eam/open-iconic/webp/menu-3x.webp differ diff --git a/the8eam/open-iconic/webp/menu-4x.webp b/the8eam/open-iconic/webp/menu-4x.webp new file mode 100644 index 0000000..d2f3cd6 Binary files /dev/null and b/the8eam/open-iconic/webp/menu-4x.webp differ diff --git a/the8eam/open-iconic/webp/menu-6x.webp b/the8eam/open-iconic/webp/menu-6x.webp new file mode 100644 index 0000000..78216ff Binary files /dev/null and b/the8eam/open-iconic/webp/menu-6x.webp differ diff --git a/the8eam/open-iconic/webp/menu-8x.webp b/the8eam/open-iconic/webp/menu-8x.webp new file mode 100644 index 0000000..ab58dba Binary files /dev/null and b/the8eam/open-iconic/webp/menu-8x.webp differ diff --git a/the8eam/open-iconic/webp/menu.webp b/the8eam/open-iconic/webp/menu.webp new file mode 100644 index 0000000..a23ed3e Binary files /dev/null and b/the8eam/open-iconic/webp/menu.webp differ diff --git a/the8eam/open-iconic/webp/microphone-2x.webp b/the8eam/open-iconic/webp/microphone-2x.webp new file mode 100644 index 0000000..08a60e5 Binary files /dev/null and b/the8eam/open-iconic/webp/microphone-2x.webp differ diff --git a/the8eam/open-iconic/webp/microphone-3x.webp b/the8eam/open-iconic/webp/microphone-3x.webp new file mode 100644 index 0000000..de6e385 Binary files /dev/null and b/the8eam/open-iconic/webp/microphone-3x.webp differ diff --git a/the8eam/open-iconic/webp/microphone-4x.webp b/the8eam/open-iconic/webp/microphone-4x.webp new file mode 100644 index 0000000..ce79370 Binary files /dev/null and b/the8eam/open-iconic/webp/microphone-4x.webp differ diff --git a/the8eam/open-iconic/webp/microphone-6x.webp b/the8eam/open-iconic/webp/microphone-6x.webp new file mode 100644 index 0000000..1d48ac5 Binary files /dev/null and b/the8eam/open-iconic/webp/microphone-6x.webp differ diff --git a/the8eam/open-iconic/webp/microphone-8x.webp b/the8eam/open-iconic/webp/microphone-8x.webp new file mode 100644 index 0000000..64002e0 Binary files /dev/null and b/the8eam/open-iconic/webp/microphone-8x.webp differ diff --git a/the8eam/open-iconic/webp/microphone.webp b/the8eam/open-iconic/webp/microphone.webp new file mode 100644 index 0000000..e033250 Binary files /dev/null and b/the8eam/open-iconic/webp/microphone.webp differ diff --git a/the8eam/open-iconic/webp/minus-2x.webp b/the8eam/open-iconic/webp/minus-2x.webp new file mode 100644 index 0000000..24d22fc Binary files /dev/null and b/the8eam/open-iconic/webp/minus-2x.webp differ diff --git a/the8eam/open-iconic/webp/minus-3x.webp b/the8eam/open-iconic/webp/minus-3x.webp new file mode 100644 index 0000000..d9e7b7e Binary files /dev/null and b/the8eam/open-iconic/webp/minus-3x.webp differ diff --git a/the8eam/open-iconic/webp/minus-4x.webp b/the8eam/open-iconic/webp/minus-4x.webp new file mode 100644 index 0000000..6249d8f Binary files /dev/null and b/the8eam/open-iconic/webp/minus-4x.webp differ diff --git a/the8eam/open-iconic/webp/minus-6x.webp b/the8eam/open-iconic/webp/minus-6x.webp new file mode 100644 index 0000000..10753e8 Binary files /dev/null and b/the8eam/open-iconic/webp/minus-6x.webp differ diff --git a/the8eam/open-iconic/webp/minus-8x.webp b/the8eam/open-iconic/webp/minus-8x.webp new file mode 100644 index 0000000..11a0b37 Binary files /dev/null and b/the8eam/open-iconic/webp/minus-8x.webp differ diff --git a/the8eam/open-iconic/webp/minus.webp b/the8eam/open-iconic/webp/minus.webp new file mode 100644 index 0000000..9f4a568 Binary files /dev/null and b/the8eam/open-iconic/webp/minus.webp differ diff --git a/the8eam/open-iconic/webp/monitor-2x.webp b/the8eam/open-iconic/webp/monitor-2x.webp new file mode 100644 index 0000000..752f206 Binary files /dev/null and b/the8eam/open-iconic/webp/monitor-2x.webp differ diff --git a/the8eam/open-iconic/webp/monitor-3x.webp b/the8eam/open-iconic/webp/monitor-3x.webp new file mode 100644 index 0000000..8c5640d Binary files /dev/null and b/the8eam/open-iconic/webp/monitor-3x.webp differ diff --git a/the8eam/open-iconic/webp/monitor-4x.webp b/the8eam/open-iconic/webp/monitor-4x.webp new file mode 100644 index 0000000..1bb2582 Binary files /dev/null and b/the8eam/open-iconic/webp/monitor-4x.webp differ diff --git a/the8eam/open-iconic/webp/monitor-6x.webp b/the8eam/open-iconic/webp/monitor-6x.webp new file mode 100644 index 0000000..c8827fe Binary files /dev/null and b/the8eam/open-iconic/webp/monitor-6x.webp differ diff --git a/the8eam/open-iconic/webp/monitor-8x.webp b/the8eam/open-iconic/webp/monitor-8x.webp new file mode 100644 index 0000000..08979f0 Binary files /dev/null and b/the8eam/open-iconic/webp/monitor-8x.webp differ diff --git a/the8eam/open-iconic/webp/monitor.webp b/the8eam/open-iconic/webp/monitor.webp new file mode 100644 index 0000000..226cda9 Binary files /dev/null and b/the8eam/open-iconic/webp/monitor.webp differ diff --git a/the8eam/open-iconic/webp/moon-2x.webp b/the8eam/open-iconic/webp/moon-2x.webp new file mode 100644 index 0000000..56845c7 Binary files /dev/null and b/the8eam/open-iconic/webp/moon-2x.webp differ diff --git a/the8eam/open-iconic/webp/moon-3x.webp b/the8eam/open-iconic/webp/moon-3x.webp new file mode 100644 index 0000000..104182f Binary files /dev/null and b/the8eam/open-iconic/webp/moon-3x.webp differ diff --git a/the8eam/open-iconic/webp/moon-4x.webp b/the8eam/open-iconic/webp/moon-4x.webp new file mode 100644 index 0000000..5a3700f Binary files /dev/null and b/the8eam/open-iconic/webp/moon-4x.webp differ diff --git a/the8eam/open-iconic/webp/moon-6x.webp b/the8eam/open-iconic/webp/moon-6x.webp new file mode 100644 index 0000000..d9440b9 Binary files /dev/null and b/the8eam/open-iconic/webp/moon-6x.webp differ diff --git a/the8eam/open-iconic/webp/moon-8x.webp b/the8eam/open-iconic/webp/moon-8x.webp new file mode 100644 index 0000000..50ed86b Binary files /dev/null and b/the8eam/open-iconic/webp/moon-8x.webp differ diff --git a/the8eam/open-iconic/webp/moon.webp b/the8eam/open-iconic/webp/moon.webp new file mode 100644 index 0000000..e9a66f8 Binary files /dev/null and b/the8eam/open-iconic/webp/moon.webp differ diff --git a/the8eam/open-iconic/webp/move-2x.webp b/the8eam/open-iconic/webp/move-2x.webp new file mode 100644 index 0000000..17e0b53 Binary files /dev/null and b/the8eam/open-iconic/webp/move-2x.webp differ diff --git a/the8eam/open-iconic/webp/move-3x.webp b/the8eam/open-iconic/webp/move-3x.webp new file mode 100644 index 0000000..7cd5479 Binary files /dev/null and b/the8eam/open-iconic/webp/move-3x.webp differ diff --git a/the8eam/open-iconic/webp/move-4x.webp b/the8eam/open-iconic/webp/move-4x.webp new file mode 100644 index 0000000..b2771df Binary files /dev/null and b/the8eam/open-iconic/webp/move-4x.webp differ diff --git a/the8eam/open-iconic/webp/move-6x.webp b/the8eam/open-iconic/webp/move-6x.webp new file mode 100644 index 0000000..bba56f1 Binary files /dev/null and b/the8eam/open-iconic/webp/move-6x.webp differ diff --git a/the8eam/open-iconic/webp/move-8x.webp b/the8eam/open-iconic/webp/move-8x.webp new file mode 100644 index 0000000..c43eec2 Binary files /dev/null and b/the8eam/open-iconic/webp/move-8x.webp differ diff --git a/the8eam/open-iconic/webp/move.webp b/the8eam/open-iconic/webp/move.webp new file mode 100644 index 0000000..975836c Binary files /dev/null and b/the8eam/open-iconic/webp/move.webp differ diff --git a/the8eam/open-iconic/webp/musical-note-2x.webp b/the8eam/open-iconic/webp/musical-note-2x.webp new file mode 100644 index 0000000..5c2ad8e Binary files /dev/null and b/the8eam/open-iconic/webp/musical-note-2x.webp differ diff --git a/the8eam/open-iconic/webp/musical-note-3x.webp b/the8eam/open-iconic/webp/musical-note-3x.webp new file mode 100644 index 0000000..5337b1d Binary files /dev/null and b/the8eam/open-iconic/webp/musical-note-3x.webp differ diff --git a/the8eam/open-iconic/webp/musical-note-4x.webp b/the8eam/open-iconic/webp/musical-note-4x.webp new file mode 100644 index 0000000..ceb7da2 Binary files /dev/null and b/the8eam/open-iconic/webp/musical-note-4x.webp differ diff --git a/the8eam/open-iconic/webp/musical-note-6x.webp b/the8eam/open-iconic/webp/musical-note-6x.webp new file mode 100644 index 0000000..23f06c9 Binary files /dev/null and b/the8eam/open-iconic/webp/musical-note-6x.webp differ diff --git a/the8eam/open-iconic/webp/musical-note-8x.webp b/the8eam/open-iconic/webp/musical-note-8x.webp new file mode 100644 index 0000000..72cd8a9 Binary files /dev/null and b/the8eam/open-iconic/webp/musical-note-8x.webp differ diff --git a/the8eam/open-iconic/webp/musical-note.webp b/the8eam/open-iconic/webp/musical-note.webp new file mode 100644 index 0000000..6f20b9b Binary files /dev/null and b/the8eam/open-iconic/webp/musical-note.webp differ diff --git a/the8eam/open-iconic/webp/paperclip-2x.webp b/the8eam/open-iconic/webp/paperclip-2x.webp new file mode 100644 index 0000000..6795993 Binary files /dev/null and b/the8eam/open-iconic/webp/paperclip-2x.webp differ diff --git a/the8eam/open-iconic/webp/paperclip-3x.webp b/the8eam/open-iconic/webp/paperclip-3x.webp new file mode 100644 index 0000000..195fdb1 Binary files /dev/null and b/the8eam/open-iconic/webp/paperclip-3x.webp differ diff --git a/the8eam/open-iconic/webp/paperclip-4x.webp b/the8eam/open-iconic/webp/paperclip-4x.webp new file mode 100644 index 0000000..12b571a Binary files /dev/null and b/the8eam/open-iconic/webp/paperclip-4x.webp differ diff --git a/the8eam/open-iconic/webp/paperclip-6x.webp b/the8eam/open-iconic/webp/paperclip-6x.webp new file mode 100644 index 0000000..159b463 Binary files /dev/null and b/the8eam/open-iconic/webp/paperclip-6x.webp differ diff --git a/the8eam/open-iconic/webp/paperclip-8x.webp b/the8eam/open-iconic/webp/paperclip-8x.webp new file mode 100644 index 0000000..e50d581 Binary files /dev/null and b/the8eam/open-iconic/webp/paperclip-8x.webp differ diff --git a/the8eam/open-iconic/webp/paperclip.webp b/the8eam/open-iconic/webp/paperclip.webp new file mode 100644 index 0000000..04bcf33 Binary files /dev/null and b/the8eam/open-iconic/webp/paperclip.webp differ diff --git a/the8eam/open-iconic/webp/pencil-2x.webp b/the8eam/open-iconic/webp/pencil-2x.webp new file mode 100644 index 0000000..6f97541 Binary files /dev/null and b/the8eam/open-iconic/webp/pencil-2x.webp differ diff --git a/the8eam/open-iconic/webp/pencil-3x.webp b/the8eam/open-iconic/webp/pencil-3x.webp new file mode 100644 index 0000000..d5610fa Binary files /dev/null and b/the8eam/open-iconic/webp/pencil-3x.webp differ diff --git a/the8eam/open-iconic/webp/pencil-4x.webp b/the8eam/open-iconic/webp/pencil-4x.webp new file mode 100644 index 0000000..5cdb223 Binary files /dev/null and b/the8eam/open-iconic/webp/pencil-4x.webp differ diff --git a/the8eam/open-iconic/webp/pencil-6x.webp b/the8eam/open-iconic/webp/pencil-6x.webp new file mode 100644 index 0000000..56805ad Binary files /dev/null and b/the8eam/open-iconic/webp/pencil-6x.webp differ diff --git a/the8eam/open-iconic/webp/pencil-8x.webp b/the8eam/open-iconic/webp/pencil-8x.webp new file mode 100644 index 0000000..722addd Binary files /dev/null and b/the8eam/open-iconic/webp/pencil-8x.webp differ diff --git a/the8eam/open-iconic/webp/pencil.webp b/the8eam/open-iconic/webp/pencil.webp new file mode 100644 index 0000000..090ed8a Binary files /dev/null and b/the8eam/open-iconic/webp/pencil.webp differ diff --git a/the8eam/open-iconic/webp/people-2x.webp b/the8eam/open-iconic/webp/people-2x.webp new file mode 100644 index 0000000..ff4215a Binary files /dev/null and b/the8eam/open-iconic/webp/people-2x.webp differ diff --git a/the8eam/open-iconic/webp/people-3x.webp b/the8eam/open-iconic/webp/people-3x.webp new file mode 100644 index 0000000..9cc75ae Binary files /dev/null and b/the8eam/open-iconic/webp/people-3x.webp differ diff --git a/the8eam/open-iconic/webp/people-4x.webp b/the8eam/open-iconic/webp/people-4x.webp new file mode 100644 index 0000000..ab5218c Binary files /dev/null and b/the8eam/open-iconic/webp/people-4x.webp differ diff --git a/the8eam/open-iconic/webp/people-6x.webp b/the8eam/open-iconic/webp/people-6x.webp new file mode 100644 index 0000000..0ee0b71 Binary files /dev/null and b/the8eam/open-iconic/webp/people-6x.webp differ diff --git a/the8eam/open-iconic/webp/people-8x.webp b/the8eam/open-iconic/webp/people-8x.webp new file mode 100644 index 0000000..917093f Binary files /dev/null and b/the8eam/open-iconic/webp/people-8x.webp differ diff --git a/the8eam/open-iconic/webp/people.webp b/the8eam/open-iconic/webp/people.webp new file mode 100644 index 0000000..d66b41b Binary files /dev/null and b/the8eam/open-iconic/webp/people.webp differ diff --git a/the8eam/open-iconic/webp/person-2x.webp b/the8eam/open-iconic/webp/person-2x.webp new file mode 100644 index 0000000..5611866 Binary files /dev/null and b/the8eam/open-iconic/webp/person-2x.webp differ diff --git a/the8eam/open-iconic/webp/person-3x.webp b/the8eam/open-iconic/webp/person-3x.webp new file mode 100644 index 0000000..83da807 Binary files /dev/null and b/the8eam/open-iconic/webp/person-3x.webp differ diff --git a/the8eam/open-iconic/webp/person-4x.webp b/the8eam/open-iconic/webp/person-4x.webp new file mode 100644 index 0000000..b129bd0 Binary files /dev/null and b/the8eam/open-iconic/webp/person-4x.webp differ diff --git a/the8eam/open-iconic/webp/person-6x.webp b/the8eam/open-iconic/webp/person-6x.webp new file mode 100644 index 0000000..c2829e8 Binary files /dev/null and b/the8eam/open-iconic/webp/person-6x.webp differ diff --git a/the8eam/open-iconic/webp/person-8x.webp b/the8eam/open-iconic/webp/person-8x.webp new file mode 100644 index 0000000..8d48821 Binary files /dev/null and b/the8eam/open-iconic/webp/person-8x.webp differ diff --git a/the8eam/open-iconic/webp/person.webp b/the8eam/open-iconic/webp/person.webp new file mode 100644 index 0000000..a968da0 Binary files /dev/null and b/the8eam/open-iconic/webp/person.webp differ diff --git a/the8eam/open-iconic/webp/phone-2x.webp b/the8eam/open-iconic/webp/phone-2x.webp new file mode 100644 index 0000000..e614459 Binary files /dev/null and b/the8eam/open-iconic/webp/phone-2x.webp differ diff --git a/the8eam/open-iconic/webp/phone-3x.webp b/the8eam/open-iconic/webp/phone-3x.webp new file mode 100644 index 0000000..dfcd4aa Binary files /dev/null and b/the8eam/open-iconic/webp/phone-3x.webp differ diff --git a/the8eam/open-iconic/webp/phone-4x.webp b/the8eam/open-iconic/webp/phone-4x.webp new file mode 100644 index 0000000..1bbcec4 Binary files /dev/null and b/the8eam/open-iconic/webp/phone-4x.webp differ diff --git a/the8eam/open-iconic/webp/phone-6x.webp b/the8eam/open-iconic/webp/phone-6x.webp new file mode 100644 index 0000000..dd90c25 Binary files /dev/null and b/the8eam/open-iconic/webp/phone-6x.webp differ diff --git a/the8eam/open-iconic/webp/phone-8x.webp b/the8eam/open-iconic/webp/phone-8x.webp new file mode 100644 index 0000000..3e32cbd Binary files /dev/null and b/the8eam/open-iconic/webp/phone-8x.webp differ diff --git a/the8eam/open-iconic/webp/phone.webp b/the8eam/open-iconic/webp/phone.webp new file mode 100644 index 0000000..8768e42 Binary files /dev/null and b/the8eam/open-iconic/webp/phone.webp differ diff --git a/the8eam/open-iconic/webp/pie-chart-2x.webp b/the8eam/open-iconic/webp/pie-chart-2x.webp new file mode 100644 index 0000000..9f08d44 Binary files /dev/null and b/the8eam/open-iconic/webp/pie-chart-2x.webp differ diff --git a/the8eam/open-iconic/webp/pie-chart-3x.webp b/the8eam/open-iconic/webp/pie-chart-3x.webp new file mode 100644 index 0000000..555457d Binary files /dev/null and b/the8eam/open-iconic/webp/pie-chart-3x.webp differ diff --git a/the8eam/open-iconic/webp/pie-chart-4x.webp b/the8eam/open-iconic/webp/pie-chart-4x.webp new file mode 100644 index 0000000..051000b Binary files /dev/null and b/the8eam/open-iconic/webp/pie-chart-4x.webp differ diff --git a/the8eam/open-iconic/webp/pie-chart-6x.webp b/the8eam/open-iconic/webp/pie-chart-6x.webp new file mode 100644 index 0000000..1d9fb82 Binary files /dev/null and b/the8eam/open-iconic/webp/pie-chart-6x.webp differ diff --git a/the8eam/open-iconic/webp/pie-chart-8x.webp b/the8eam/open-iconic/webp/pie-chart-8x.webp new file mode 100644 index 0000000..a53d76b Binary files /dev/null and b/the8eam/open-iconic/webp/pie-chart-8x.webp differ diff --git a/the8eam/open-iconic/webp/pie-chart.webp b/the8eam/open-iconic/webp/pie-chart.webp new file mode 100644 index 0000000..1e2d7a2 Binary files /dev/null and b/the8eam/open-iconic/webp/pie-chart.webp differ diff --git a/the8eam/open-iconic/webp/pin-2x.webp b/the8eam/open-iconic/webp/pin-2x.webp new file mode 100644 index 0000000..1270e4d Binary files /dev/null and b/the8eam/open-iconic/webp/pin-2x.webp differ diff --git a/the8eam/open-iconic/webp/pin-3x.webp b/the8eam/open-iconic/webp/pin-3x.webp new file mode 100644 index 0000000..e32cff8 Binary files /dev/null and b/the8eam/open-iconic/webp/pin-3x.webp differ diff --git a/the8eam/open-iconic/webp/pin-4x.webp b/the8eam/open-iconic/webp/pin-4x.webp new file mode 100644 index 0000000..3255d86 Binary files /dev/null and b/the8eam/open-iconic/webp/pin-4x.webp differ diff --git a/the8eam/open-iconic/webp/pin-6x.webp b/the8eam/open-iconic/webp/pin-6x.webp new file mode 100644 index 0000000..1bcfff8 Binary files /dev/null and b/the8eam/open-iconic/webp/pin-6x.webp differ diff --git a/the8eam/open-iconic/webp/pin-8x.webp b/the8eam/open-iconic/webp/pin-8x.webp new file mode 100644 index 0000000..b44ad09 Binary files /dev/null and b/the8eam/open-iconic/webp/pin-8x.webp differ diff --git a/the8eam/open-iconic/webp/pin.webp b/the8eam/open-iconic/webp/pin.webp new file mode 100644 index 0000000..4e4f6ad Binary files /dev/null and b/the8eam/open-iconic/webp/pin.webp differ diff --git a/the8eam/open-iconic/webp/play-circle-2x.webp b/the8eam/open-iconic/webp/play-circle-2x.webp new file mode 100644 index 0000000..c693853 Binary files /dev/null and b/the8eam/open-iconic/webp/play-circle-2x.webp differ diff --git a/the8eam/open-iconic/webp/play-circle-3x.webp b/the8eam/open-iconic/webp/play-circle-3x.webp new file mode 100644 index 0000000..96be608 Binary files /dev/null and b/the8eam/open-iconic/webp/play-circle-3x.webp differ diff --git a/the8eam/open-iconic/webp/play-circle-4x.webp b/the8eam/open-iconic/webp/play-circle-4x.webp new file mode 100644 index 0000000..19d466a Binary files /dev/null and b/the8eam/open-iconic/webp/play-circle-4x.webp differ diff --git a/the8eam/open-iconic/webp/play-circle-6x.webp b/the8eam/open-iconic/webp/play-circle-6x.webp new file mode 100644 index 0000000..e1a9901 Binary files /dev/null and b/the8eam/open-iconic/webp/play-circle-6x.webp differ diff --git a/the8eam/open-iconic/webp/play-circle-8x.webp b/the8eam/open-iconic/webp/play-circle-8x.webp new file mode 100644 index 0000000..7e68512 Binary files /dev/null and b/the8eam/open-iconic/webp/play-circle-8x.webp differ diff --git a/the8eam/open-iconic/webp/play-circle.webp b/the8eam/open-iconic/webp/play-circle.webp new file mode 100644 index 0000000..f521f4c Binary files /dev/null and b/the8eam/open-iconic/webp/play-circle.webp differ diff --git a/the8eam/open-iconic/webp/plus-2x.webp b/the8eam/open-iconic/webp/plus-2x.webp new file mode 100644 index 0000000..54f1bce Binary files /dev/null and b/the8eam/open-iconic/webp/plus-2x.webp differ diff --git a/the8eam/open-iconic/webp/plus-3x.webp b/the8eam/open-iconic/webp/plus-3x.webp new file mode 100644 index 0000000..c2dfd29 Binary files /dev/null and b/the8eam/open-iconic/webp/plus-3x.webp differ diff --git a/the8eam/open-iconic/webp/plus-4x.webp b/the8eam/open-iconic/webp/plus-4x.webp new file mode 100644 index 0000000..0292873 Binary files /dev/null and b/the8eam/open-iconic/webp/plus-4x.webp differ diff --git a/the8eam/open-iconic/webp/plus-6x.webp b/the8eam/open-iconic/webp/plus-6x.webp new file mode 100644 index 0000000..a7bcca6 Binary files /dev/null and b/the8eam/open-iconic/webp/plus-6x.webp differ diff --git a/the8eam/open-iconic/webp/plus-8x.webp b/the8eam/open-iconic/webp/plus-8x.webp new file mode 100644 index 0000000..c79ec13 Binary files /dev/null and b/the8eam/open-iconic/webp/plus-8x.webp differ diff --git a/the8eam/open-iconic/webp/plus.webp b/the8eam/open-iconic/webp/plus.webp new file mode 100644 index 0000000..e1423bd Binary files /dev/null and b/the8eam/open-iconic/webp/plus.webp differ diff --git a/the8eam/open-iconic/webp/power-standby-2x.webp b/the8eam/open-iconic/webp/power-standby-2x.webp new file mode 100644 index 0000000..02511c6 Binary files /dev/null and b/the8eam/open-iconic/webp/power-standby-2x.webp differ diff --git a/the8eam/open-iconic/webp/power-standby-3x.webp b/the8eam/open-iconic/webp/power-standby-3x.webp new file mode 100644 index 0000000..c3a54bb Binary files /dev/null and b/the8eam/open-iconic/webp/power-standby-3x.webp differ diff --git a/the8eam/open-iconic/webp/power-standby-4x.webp b/the8eam/open-iconic/webp/power-standby-4x.webp new file mode 100644 index 0000000..1c7142e Binary files /dev/null and b/the8eam/open-iconic/webp/power-standby-4x.webp differ diff --git a/the8eam/open-iconic/webp/power-standby-6x.webp b/the8eam/open-iconic/webp/power-standby-6x.webp new file mode 100644 index 0000000..1bf977f Binary files /dev/null and b/the8eam/open-iconic/webp/power-standby-6x.webp differ diff --git a/the8eam/open-iconic/webp/power-standby-8x.webp b/the8eam/open-iconic/webp/power-standby-8x.webp new file mode 100644 index 0000000..80f2ca0 Binary files /dev/null and b/the8eam/open-iconic/webp/power-standby-8x.webp differ diff --git a/the8eam/open-iconic/webp/power-standby.webp b/the8eam/open-iconic/webp/power-standby.webp new file mode 100644 index 0000000..a15fc76 Binary files /dev/null and b/the8eam/open-iconic/webp/power-standby.webp differ diff --git a/the8eam/open-iconic/webp/print-2x.webp b/the8eam/open-iconic/webp/print-2x.webp new file mode 100644 index 0000000..bf55804 Binary files /dev/null and b/the8eam/open-iconic/webp/print-2x.webp differ diff --git a/the8eam/open-iconic/webp/print-3x.webp b/the8eam/open-iconic/webp/print-3x.webp new file mode 100644 index 0000000..afc638c Binary files /dev/null and b/the8eam/open-iconic/webp/print-3x.webp differ diff --git a/the8eam/open-iconic/webp/print-4x.webp b/the8eam/open-iconic/webp/print-4x.webp new file mode 100644 index 0000000..0d8989b Binary files /dev/null and b/the8eam/open-iconic/webp/print-4x.webp differ diff --git a/the8eam/open-iconic/webp/print-6x.webp b/the8eam/open-iconic/webp/print-6x.webp new file mode 100644 index 0000000..0855d54 Binary files /dev/null and b/the8eam/open-iconic/webp/print-6x.webp differ diff --git a/the8eam/open-iconic/webp/print-8x.webp b/the8eam/open-iconic/webp/print-8x.webp new file mode 100644 index 0000000..80cbc60 Binary files /dev/null and b/the8eam/open-iconic/webp/print-8x.webp differ diff --git a/the8eam/open-iconic/webp/print.webp b/the8eam/open-iconic/webp/print.webp new file mode 100644 index 0000000..13ef37c Binary files /dev/null and b/the8eam/open-iconic/webp/print.webp differ diff --git a/the8eam/open-iconic/webp/project-2x.webp b/the8eam/open-iconic/webp/project-2x.webp new file mode 100644 index 0000000..0ad7182 Binary files /dev/null and b/the8eam/open-iconic/webp/project-2x.webp differ diff --git a/the8eam/open-iconic/webp/project-3x.webp b/the8eam/open-iconic/webp/project-3x.webp new file mode 100644 index 0000000..509c2c7 Binary files /dev/null and b/the8eam/open-iconic/webp/project-3x.webp differ diff --git a/the8eam/open-iconic/webp/project-4x.webp b/the8eam/open-iconic/webp/project-4x.webp new file mode 100644 index 0000000..5087fa6 Binary files /dev/null and b/the8eam/open-iconic/webp/project-4x.webp differ diff --git a/the8eam/open-iconic/webp/project-6x.webp b/the8eam/open-iconic/webp/project-6x.webp new file mode 100644 index 0000000..db9dba6 Binary files /dev/null and b/the8eam/open-iconic/webp/project-6x.webp differ diff --git a/the8eam/open-iconic/webp/project-8x.webp b/the8eam/open-iconic/webp/project-8x.webp new file mode 100644 index 0000000..2c4760b Binary files /dev/null and b/the8eam/open-iconic/webp/project-8x.webp differ diff --git a/the8eam/open-iconic/webp/project.webp b/the8eam/open-iconic/webp/project.webp new file mode 100644 index 0000000..d3d32a0 Binary files /dev/null and b/the8eam/open-iconic/webp/project.webp differ diff --git a/the8eam/open-iconic/webp/pulse-2x.webp b/the8eam/open-iconic/webp/pulse-2x.webp new file mode 100644 index 0000000..17b78fa Binary files /dev/null and b/the8eam/open-iconic/webp/pulse-2x.webp differ diff --git a/the8eam/open-iconic/webp/pulse-3x.webp b/the8eam/open-iconic/webp/pulse-3x.webp new file mode 100644 index 0000000..2ed126f Binary files /dev/null and b/the8eam/open-iconic/webp/pulse-3x.webp differ diff --git a/the8eam/open-iconic/webp/pulse-4x.webp b/the8eam/open-iconic/webp/pulse-4x.webp new file mode 100644 index 0000000..cf5341f Binary files /dev/null and b/the8eam/open-iconic/webp/pulse-4x.webp differ diff --git a/the8eam/open-iconic/webp/pulse-6x.webp b/the8eam/open-iconic/webp/pulse-6x.webp new file mode 100644 index 0000000..06cab74 Binary files /dev/null and b/the8eam/open-iconic/webp/pulse-6x.webp differ diff --git a/the8eam/open-iconic/webp/pulse-8x.webp b/the8eam/open-iconic/webp/pulse-8x.webp new file mode 100644 index 0000000..36f87d2 Binary files /dev/null and b/the8eam/open-iconic/webp/pulse-8x.webp differ diff --git a/the8eam/open-iconic/webp/pulse.webp b/the8eam/open-iconic/webp/pulse.webp new file mode 100644 index 0000000..7fc9189 Binary files /dev/null and b/the8eam/open-iconic/webp/pulse.webp differ diff --git a/the8eam/open-iconic/webp/puzzle-piece-2x.webp b/the8eam/open-iconic/webp/puzzle-piece-2x.webp new file mode 100644 index 0000000..c0b4904 Binary files /dev/null and b/the8eam/open-iconic/webp/puzzle-piece-2x.webp differ diff --git a/the8eam/open-iconic/webp/puzzle-piece-3x.webp b/the8eam/open-iconic/webp/puzzle-piece-3x.webp new file mode 100644 index 0000000..b4b3e74 Binary files /dev/null and b/the8eam/open-iconic/webp/puzzle-piece-3x.webp differ diff --git a/the8eam/open-iconic/webp/puzzle-piece-4x.webp b/the8eam/open-iconic/webp/puzzle-piece-4x.webp new file mode 100644 index 0000000..c912d76 Binary files /dev/null and b/the8eam/open-iconic/webp/puzzle-piece-4x.webp differ diff --git a/the8eam/open-iconic/webp/puzzle-piece-6x.webp b/the8eam/open-iconic/webp/puzzle-piece-6x.webp new file mode 100644 index 0000000..d19cfe3 Binary files /dev/null and b/the8eam/open-iconic/webp/puzzle-piece-6x.webp differ diff --git a/the8eam/open-iconic/webp/puzzle-piece-8x.webp b/the8eam/open-iconic/webp/puzzle-piece-8x.webp new file mode 100644 index 0000000..b575441 Binary files /dev/null and b/the8eam/open-iconic/webp/puzzle-piece-8x.webp differ diff --git a/the8eam/open-iconic/webp/puzzle-piece.webp b/the8eam/open-iconic/webp/puzzle-piece.webp new file mode 100644 index 0000000..f6d4801 Binary files /dev/null and b/the8eam/open-iconic/webp/puzzle-piece.webp differ diff --git a/the8eam/open-iconic/webp/question-mark-2x.webp b/the8eam/open-iconic/webp/question-mark-2x.webp new file mode 100644 index 0000000..9378381 Binary files /dev/null and b/the8eam/open-iconic/webp/question-mark-2x.webp differ diff --git a/the8eam/open-iconic/webp/question-mark-3x.webp b/the8eam/open-iconic/webp/question-mark-3x.webp new file mode 100644 index 0000000..34535ce Binary files /dev/null and b/the8eam/open-iconic/webp/question-mark-3x.webp differ diff --git a/the8eam/open-iconic/webp/question-mark-4x.webp b/the8eam/open-iconic/webp/question-mark-4x.webp new file mode 100644 index 0000000..b8a02f4 Binary files /dev/null and b/the8eam/open-iconic/webp/question-mark-4x.webp differ diff --git a/the8eam/open-iconic/webp/question-mark-6x.webp b/the8eam/open-iconic/webp/question-mark-6x.webp new file mode 100644 index 0000000..7686ed1 Binary files /dev/null and b/the8eam/open-iconic/webp/question-mark-6x.webp differ diff --git a/the8eam/open-iconic/webp/question-mark-8x.webp b/the8eam/open-iconic/webp/question-mark-8x.webp new file mode 100644 index 0000000..5ccc9a5 Binary files /dev/null and b/the8eam/open-iconic/webp/question-mark-8x.webp differ diff --git a/the8eam/open-iconic/webp/question-mark.webp b/the8eam/open-iconic/webp/question-mark.webp new file mode 100644 index 0000000..699ab2e Binary files /dev/null and b/the8eam/open-iconic/webp/question-mark.webp differ diff --git a/the8eam/open-iconic/webp/rain-2x.webp b/the8eam/open-iconic/webp/rain-2x.webp new file mode 100644 index 0000000..65790c0 Binary files /dev/null and b/the8eam/open-iconic/webp/rain-2x.webp differ diff --git a/the8eam/open-iconic/webp/rain-3x.webp b/the8eam/open-iconic/webp/rain-3x.webp new file mode 100644 index 0000000..53949e0 Binary files /dev/null and b/the8eam/open-iconic/webp/rain-3x.webp differ diff --git a/the8eam/open-iconic/webp/rain-4x.webp b/the8eam/open-iconic/webp/rain-4x.webp new file mode 100644 index 0000000..89ce94b Binary files /dev/null and b/the8eam/open-iconic/webp/rain-4x.webp differ diff --git a/the8eam/open-iconic/webp/rain-6x.webp b/the8eam/open-iconic/webp/rain-6x.webp new file mode 100644 index 0000000..6345e23 Binary files /dev/null and b/the8eam/open-iconic/webp/rain-6x.webp differ diff --git a/the8eam/open-iconic/webp/rain-8x.webp b/the8eam/open-iconic/webp/rain-8x.webp new file mode 100644 index 0000000..16d8543 Binary files /dev/null and b/the8eam/open-iconic/webp/rain-8x.webp differ diff --git a/the8eam/open-iconic/webp/rain.webp b/the8eam/open-iconic/webp/rain.webp new file mode 100644 index 0000000..cfe6917 Binary files /dev/null and b/the8eam/open-iconic/webp/rain.webp differ diff --git a/the8eam/open-iconic/webp/random-2x.webp b/the8eam/open-iconic/webp/random-2x.webp new file mode 100644 index 0000000..983f332 Binary files /dev/null and b/the8eam/open-iconic/webp/random-2x.webp differ diff --git a/the8eam/open-iconic/webp/random-3x.webp b/the8eam/open-iconic/webp/random-3x.webp new file mode 100644 index 0000000..c6492c4 Binary files /dev/null and b/the8eam/open-iconic/webp/random-3x.webp differ diff --git a/the8eam/open-iconic/webp/random-4x.webp b/the8eam/open-iconic/webp/random-4x.webp new file mode 100644 index 0000000..a2572b1 Binary files /dev/null and b/the8eam/open-iconic/webp/random-4x.webp differ diff --git a/the8eam/open-iconic/webp/random-6x.webp b/the8eam/open-iconic/webp/random-6x.webp new file mode 100644 index 0000000..643d00e Binary files /dev/null and b/the8eam/open-iconic/webp/random-6x.webp differ diff --git a/the8eam/open-iconic/webp/random-8x.webp b/the8eam/open-iconic/webp/random-8x.webp new file mode 100644 index 0000000..b9e1292 Binary files /dev/null and b/the8eam/open-iconic/webp/random-8x.webp differ diff --git a/the8eam/open-iconic/webp/random.webp b/the8eam/open-iconic/webp/random.webp new file mode 100644 index 0000000..72e3914 Binary files /dev/null and b/the8eam/open-iconic/webp/random.webp differ diff --git a/the8eam/open-iconic/webp/reload-2x.webp b/the8eam/open-iconic/webp/reload-2x.webp new file mode 100644 index 0000000..14eb165 Binary files /dev/null and b/the8eam/open-iconic/webp/reload-2x.webp differ diff --git a/the8eam/open-iconic/webp/reload-3x.webp b/the8eam/open-iconic/webp/reload-3x.webp new file mode 100644 index 0000000..4d8d79b Binary files /dev/null and b/the8eam/open-iconic/webp/reload-3x.webp differ diff --git a/the8eam/open-iconic/webp/reload-4x.webp b/the8eam/open-iconic/webp/reload-4x.webp new file mode 100644 index 0000000..ae32ea6 Binary files /dev/null and b/the8eam/open-iconic/webp/reload-4x.webp differ diff --git a/the8eam/open-iconic/webp/reload-6x.webp b/the8eam/open-iconic/webp/reload-6x.webp new file mode 100644 index 0000000..004b563 Binary files /dev/null and b/the8eam/open-iconic/webp/reload-6x.webp differ diff --git a/the8eam/open-iconic/webp/reload-8x.webp b/the8eam/open-iconic/webp/reload-8x.webp new file mode 100644 index 0000000..5fc865e Binary files /dev/null and b/the8eam/open-iconic/webp/reload-8x.webp differ diff --git a/the8eam/open-iconic/webp/reload.webp b/the8eam/open-iconic/webp/reload.webp new file mode 100644 index 0000000..d518e31 Binary files /dev/null and b/the8eam/open-iconic/webp/reload.webp differ diff --git a/the8eam/open-iconic/webp/resize-both-2x.webp b/the8eam/open-iconic/webp/resize-both-2x.webp new file mode 100644 index 0000000..168a587 Binary files /dev/null and b/the8eam/open-iconic/webp/resize-both-2x.webp differ diff --git a/the8eam/open-iconic/webp/resize-both-3x.webp b/the8eam/open-iconic/webp/resize-both-3x.webp new file mode 100644 index 0000000..5833982 Binary files /dev/null and b/the8eam/open-iconic/webp/resize-both-3x.webp differ diff --git a/the8eam/open-iconic/webp/resize-both-4x.webp b/the8eam/open-iconic/webp/resize-both-4x.webp new file mode 100644 index 0000000..7215d34 Binary files /dev/null and b/the8eam/open-iconic/webp/resize-both-4x.webp differ diff --git a/the8eam/open-iconic/webp/resize-both-6x.webp b/the8eam/open-iconic/webp/resize-both-6x.webp new file mode 100644 index 0000000..5801063 Binary files /dev/null and b/the8eam/open-iconic/webp/resize-both-6x.webp differ diff --git a/the8eam/open-iconic/webp/resize-both-8x.webp b/the8eam/open-iconic/webp/resize-both-8x.webp new file mode 100644 index 0000000..2235a38 Binary files /dev/null and b/the8eam/open-iconic/webp/resize-both-8x.webp differ diff --git a/the8eam/open-iconic/webp/resize-both.webp b/the8eam/open-iconic/webp/resize-both.webp new file mode 100644 index 0000000..12dff70 Binary files /dev/null and b/the8eam/open-iconic/webp/resize-both.webp differ diff --git a/the8eam/open-iconic/webp/resize-height-2x.webp b/the8eam/open-iconic/webp/resize-height-2x.webp new file mode 100644 index 0000000..37d97b4 Binary files /dev/null and b/the8eam/open-iconic/webp/resize-height-2x.webp differ diff --git a/the8eam/open-iconic/webp/resize-height-3x.webp b/the8eam/open-iconic/webp/resize-height-3x.webp new file mode 100644 index 0000000..4642661 Binary files /dev/null and b/the8eam/open-iconic/webp/resize-height-3x.webp differ diff --git a/the8eam/open-iconic/webp/resize-height-4x.webp b/the8eam/open-iconic/webp/resize-height-4x.webp new file mode 100644 index 0000000..1de01f2 Binary files /dev/null and b/the8eam/open-iconic/webp/resize-height-4x.webp differ diff --git a/the8eam/open-iconic/webp/resize-height-6x.webp b/the8eam/open-iconic/webp/resize-height-6x.webp new file mode 100644 index 0000000..25dec6b Binary files /dev/null and b/the8eam/open-iconic/webp/resize-height-6x.webp differ diff --git a/the8eam/open-iconic/webp/resize-height-8x.webp b/the8eam/open-iconic/webp/resize-height-8x.webp new file mode 100644 index 0000000..d7addd7 Binary files /dev/null and b/the8eam/open-iconic/webp/resize-height-8x.webp differ diff --git a/the8eam/open-iconic/webp/resize-height.webp b/the8eam/open-iconic/webp/resize-height.webp new file mode 100644 index 0000000..0359ed9 Binary files /dev/null and b/the8eam/open-iconic/webp/resize-height.webp differ diff --git a/the8eam/open-iconic/webp/resize-width-2x.webp b/the8eam/open-iconic/webp/resize-width-2x.webp new file mode 100644 index 0000000..538ce74 Binary files /dev/null and b/the8eam/open-iconic/webp/resize-width-2x.webp differ diff --git a/the8eam/open-iconic/webp/resize-width-3x.webp b/the8eam/open-iconic/webp/resize-width-3x.webp new file mode 100644 index 0000000..9654ab8 Binary files /dev/null and b/the8eam/open-iconic/webp/resize-width-3x.webp differ diff --git a/the8eam/open-iconic/webp/resize-width-4x.webp b/the8eam/open-iconic/webp/resize-width-4x.webp new file mode 100644 index 0000000..9a3747f Binary files /dev/null and b/the8eam/open-iconic/webp/resize-width-4x.webp differ diff --git a/the8eam/open-iconic/webp/resize-width-6x.webp b/the8eam/open-iconic/webp/resize-width-6x.webp new file mode 100644 index 0000000..193cf39 Binary files /dev/null and b/the8eam/open-iconic/webp/resize-width-6x.webp differ diff --git a/the8eam/open-iconic/webp/resize-width-8x.webp b/the8eam/open-iconic/webp/resize-width-8x.webp new file mode 100644 index 0000000..09df9d2 Binary files /dev/null and b/the8eam/open-iconic/webp/resize-width-8x.webp differ diff --git a/the8eam/open-iconic/webp/resize-width.webp b/the8eam/open-iconic/webp/resize-width.webp new file mode 100644 index 0000000..a17e05b Binary files /dev/null and b/the8eam/open-iconic/webp/resize-width.webp differ diff --git a/the8eam/open-iconic/webp/rss-2x.webp b/the8eam/open-iconic/webp/rss-2x.webp new file mode 100644 index 0000000..72c6587 Binary files /dev/null and b/the8eam/open-iconic/webp/rss-2x.webp differ diff --git a/the8eam/open-iconic/webp/rss-3x.webp b/the8eam/open-iconic/webp/rss-3x.webp new file mode 100644 index 0000000..f6dc824 Binary files /dev/null and b/the8eam/open-iconic/webp/rss-3x.webp differ diff --git a/the8eam/open-iconic/webp/rss-4x.webp b/the8eam/open-iconic/webp/rss-4x.webp new file mode 100644 index 0000000..7a08d92 Binary files /dev/null and b/the8eam/open-iconic/webp/rss-4x.webp differ diff --git a/the8eam/open-iconic/webp/rss-6x.webp b/the8eam/open-iconic/webp/rss-6x.webp new file mode 100644 index 0000000..9a79463 Binary files /dev/null and b/the8eam/open-iconic/webp/rss-6x.webp differ diff --git a/the8eam/open-iconic/webp/rss-8x.webp b/the8eam/open-iconic/webp/rss-8x.webp new file mode 100644 index 0000000..f860829 Binary files /dev/null and b/the8eam/open-iconic/webp/rss-8x.webp differ diff --git a/the8eam/open-iconic/webp/rss-alt-2x.webp b/the8eam/open-iconic/webp/rss-alt-2x.webp new file mode 100644 index 0000000..84ba9f4 Binary files /dev/null and b/the8eam/open-iconic/webp/rss-alt-2x.webp differ diff --git a/the8eam/open-iconic/webp/rss-alt-3x.webp b/the8eam/open-iconic/webp/rss-alt-3x.webp new file mode 100644 index 0000000..588daaa Binary files /dev/null and b/the8eam/open-iconic/webp/rss-alt-3x.webp differ diff --git a/the8eam/open-iconic/webp/rss-alt-4x.webp b/the8eam/open-iconic/webp/rss-alt-4x.webp new file mode 100644 index 0000000..4bcbae8 Binary files /dev/null and b/the8eam/open-iconic/webp/rss-alt-4x.webp differ diff --git a/the8eam/open-iconic/webp/rss-alt-6x.webp b/the8eam/open-iconic/webp/rss-alt-6x.webp new file mode 100644 index 0000000..cc4ec63 Binary files /dev/null and b/the8eam/open-iconic/webp/rss-alt-6x.webp differ diff --git a/the8eam/open-iconic/webp/rss-alt-8x.webp b/the8eam/open-iconic/webp/rss-alt-8x.webp new file mode 100644 index 0000000..b9d6ad7 Binary files /dev/null and b/the8eam/open-iconic/webp/rss-alt-8x.webp differ diff --git a/the8eam/open-iconic/webp/rss-alt.webp b/the8eam/open-iconic/webp/rss-alt.webp new file mode 100644 index 0000000..c1e9d63 Binary files /dev/null and b/the8eam/open-iconic/webp/rss-alt.webp differ diff --git a/the8eam/open-iconic/webp/rss.webp b/the8eam/open-iconic/webp/rss.webp new file mode 100644 index 0000000..46ecb1e Binary files /dev/null and b/the8eam/open-iconic/webp/rss.webp differ diff --git a/the8eam/open-iconic/webp/script-2x.webp b/the8eam/open-iconic/webp/script-2x.webp new file mode 100644 index 0000000..1d22ce0 Binary files /dev/null and b/the8eam/open-iconic/webp/script-2x.webp differ diff --git a/the8eam/open-iconic/webp/script-3x.webp b/the8eam/open-iconic/webp/script-3x.webp new file mode 100644 index 0000000..bc1c8bf Binary files /dev/null and b/the8eam/open-iconic/webp/script-3x.webp differ diff --git a/the8eam/open-iconic/webp/script-4x.webp b/the8eam/open-iconic/webp/script-4x.webp new file mode 100644 index 0000000..e93eba0 Binary files /dev/null and b/the8eam/open-iconic/webp/script-4x.webp differ diff --git a/the8eam/open-iconic/webp/script-6x.webp b/the8eam/open-iconic/webp/script-6x.webp new file mode 100644 index 0000000..af15042 Binary files /dev/null and b/the8eam/open-iconic/webp/script-6x.webp differ diff --git a/the8eam/open-iconic/webp/script-8x.webp b/the8eam/open-iconic/webp/script-8x.webp new file mode 100644 index 0000000..a15a3ef Binary files /dev/null and b/the8eam/open-iconic/webp/script-8x.webp differ diff --git a/the8eam/open-iconic/webp/script.webp b/the8eam/open-iconic/webp/script.webp new file mode 100644 index 0000000..437e89b Binary files /dev/null and b/the8eam/open-iconic/webp/script.webp differ diff --git a/the8eam/open-iconic/webp/share-2x.webp b/the8eam/open-iconic/webp/share-2x.webp new file mode 100644 index 0000000..86d86a6 Binary files /dev/null and b/the8eam/open-iconic/webp/share-2x.webp differ diff --git a/the8eam/open-iconic/webp/share-3x.webp b/the8eam/open-iconic/webp/share-3x.webp new file mode 100644 index 0000000..99a14d0 Binary files /dev/null and b/the8eam/open-iconic/webp/share-3x.webp differ diff --git a/the8eam/open-iconic/webp/share-4x.webp b/the8eam/open-iconic/webp/share-4x.webp new file mode 100644 index 0000000..a3c7fb6 Binary files /dev/null and b/the8eam/open-iconic/webp/share-4x.webp differ diff --git a/the8eam/open-iconic/webp/share-6x.webp b/the8eam/open-iconic/webp/share-6x.webp new file mode 100644 index 0000000..5a141ac Binary files /dev/null and b/the8eam/open-iconic/webp/share-6x.webp differ diff --git a/the8eam/open-iconic/webp/share-8x.webp b/the8eam/open-iconic/webp/share-8x.webp new file mode 100644 index 0000000..7099acb Binary files /dev/null and b/the8eam/open-iconic/webp/share-8x.webp differ diff --git a/the8eam/open-iconic/webp/share-boxed-2x.webp b/the8eam/open-iconic/webp/share-boxed-2x.webp new file mode 100644 index 0000000..9f34216 Binary files /dev/null and b/the8eam/open-iconic/webp/share-boxed-2x.webp differ diff --git a/the8eam/open-iconic/webp/share-boxed-3x.webp b/the8eam/open-iconic/webp/share-boxed-3x.webp new file mode 100644 index 0000000..21d9e69 Binary files /dev/null and b/the8eam/open-iconic/webp/share-boxed-3x.webp differ diff --git a/the8eam/open-iconic/webp/share-boxed-4x.webp b/the8eam/open-iconic/webp/share-boxed-4x.webp new file mode 100644 index 0000000..d43f00e Binary files /dev/null and b/the8eam/open-iconic/webp/share-boxed-4x.webp differ diff --git a/the8eam/open-iconic/webp/share-boxed-6x.webp b/the8eam/open-iconic/webp/share-boxed-6x.webp new file mode 100644 index 0000000..08509b8 Binary files /dev/null and b/the8eam/open-iconic/webp/share-boxed-6x.webp differ diff --git a/the8eam/open-iconic/webp/share-boxed-8x.webp b/the8eam/open-iconic/webp/share-boxed-8x.webp new file mode 100644 index 0000000..4102c6f Binary files /dev/null and b/the8eam/open-iconic/webp/share-boxed-8x.webp differ diff --git a/the8eam/open-iconic/webp/share-boxed.webp b/the8eam/open-iconic/webp/share-boxed.webp new file mode 100644 index 0000000..cb62ec8 Binary files /dev/null and b/the8eam/open-iconic/webp/share-boxed.webp differ diff --git a/the8eam/open-iconic/webp/share.webp b/the8eam/open-iconic/webp/share.webp new file mode 100644 index 0000000..1bf9e91 Binary files /dev/null and b/the8eam/open-iconic/webp/share.webp differ diff --git a/the8eam/open-iconic/webp/shield-2x.webp b/the8eam/open-iconic/webp/shield-2x.webp new file mode 100644 index 0000000..cfc188f Binary files /dev/null and b/the8eam/open-iconic/webp/shield-2x.webp differ diff --git a/the8eam/open-iconic/webp/shield-3x.webp b/the8eam/open-iconic/webp/shield-3x.webp new file mode 100644 index 0000000..da3ca1e Binary files /dev/null and b/the8eam/open-iconic/webp/shield-3x.webp differ diff --git a/the8eam/open-iconic/webp/shield-4x.webp b/the8eam/open-iconic/webp/shield-4x.webp new file mode 100644 index 0000000..b404134 Binary files /dev/null and b/the8eam/open-iconic/webp/shield-4x.webp differ diff --git a/the8eam/open-iconic/webp/shield-6x.webp b/the8eam/open-iconic/webp/shield-6x.webp new file mode 100644 index 0000000..b8e6669 Binary files /dev/null and b/the8eam/open-iconic/webp/shield-6x.webp differ diff --git a/the8eam/open-iconic/webp/shield-8x.webp b/the8eam/open-iconic/webp/shield-8x.webp new file mode 100644 index 0000000..a1354f3 Binary files /dev/null and b/the8eam/open-iconic/webp/shield-8x.webp differ diff --git a/the8eam/open-iconic/webp/shield.webp b/the8eam/open-iconic/webp/shield.webp new file mode 100644 index 0000000..78077fe Binary files /dev/null and b/the8eam/open-iconic/webp/shield.webp differ diff --git a/the8eam/open-iconic/webp/signal-2x.webp b/the8eam/open-iconic/webp/signal-2x.webp new file mode 100644 index 0000000..c537c3d Binary files /dev/null and b/the8eam/open-iconic/webp/signal-2x.webp differ diff --git a/the8eam/open-iconic/webp/signal-3x.webp b/the8eam/open-iconic/webp/signal-3x.webp new file mode 100644 index 0000000..4533947 Binary files /dev/null and b/the8eam/open-iconic/webp/signal-3x.webp differ diff --git a/the8eam/open-iconic/webp/signal-4x.webp b/the8eam/open-iconic/webp/signal-4x.webp new file mode 100644 index 0000000..4105166 Binary files /dev/null and b/the8eam/open-iconic/webp/signal-4x.webp differ diff --git a/the8eam/open-iconic/webp/signal-6x.webp b/the8eam/open-iconic/webp/signal-6x.webp new file mode 100644 index 0000000..469aa87 Binary files /dev/null and b/the8eam/open-iconic/webp/signal-6x.webp differ diff --git a/the8eam/open-iconic/webp/signal-8x.webp b/the8eam/open-iconic/webp/signal-8x.webp new file mode 100644 index 0000000..f9a7a5d Binary files /dev/null and b/the8eam/open-iconic/webp/signal-8x.webp differ diff --git a/the8eam/open-iconic/webp/signal.webp b/the8eam/open-iconic/webp/signal.webp new file mode 100644 index 0000000..6844ec9 Binary files /dev/null and b/the8eam/open-iconic/webp/signal.webp differ diff --git a/the8eam/open-iconic/webp/signpost-2x.webp b/the8eam/open-iconic/webp/signpost-2x.webp new file mode 100644 index 0000000..b1f307a Binary files /dev/null and b/the8eam/open-iconic/webp/signpost-2x.webp differ diff --git a/the8eam/open-iconic/webp/signpost-3x.webp b/the8eam/open-iconic/webp/signpost-3x.webp new file mode 100644 index 0000000..58d3b52 Binary files /dev/null and b/the8eam/open-iconic/webp/signpost-3x.webp differ diff --git a/the8eam/open-iconic/webp/signpost-4x.webp b/the8eam/open-iconic/webp/signpost-4x.webp new file mode 100644 index 0000000..4483d2f Binary files /dev/null and b/the8eam/open-iconic/webp/signpost-4x.webp differ diff --git a/the8eam/open-iconic/webp/signpost-6x.webp b/the8eam/open-iconic/webp/signpost-6x.webp new file mode 100644 index 0000000..1905b3a Binary files /dev/null and b/the8eam/open-iconic/webp/signpost-6x.webp differ diff --git a/the8eam/open-iconic/webp/signpost-8x.webp b/the8eam/open-iconic/webp/signpost-8x.webp new file mode 100644 index 0000000..0bd4ccc Binary files /dev/null and b/the8eam/open-iconic/webp/signpost-8x.webp differ diff --git a/the8eam/open-iconic/webp/signpost.webp b/the8eam/open-iconic/webp/signpost.webp new file mode 100644 index 0000000..0d3e5f3 Binary files /dev/null and b/the8eam/open-iconic/webp/signpost.webp differ diff --git a/the8eam/open-iconic/webp/sort-ascending-2x.webp b/the8eam/open-iconic/webp/sort-ascending-2x.webp new file mode 100644 index 0000000..5aea605 Binary files /dev/null and b/the8eam/open-iconic/webp/sort-ascending-2x.webp differ diff --git a/the8eam/open-iconic/webp/sort-ascending-3x.webp b/the8eam/open-iconic/webp/sort-ascending-3x.webp new file mode 100644 index 0000000..993d925 Binary files /dev/null and b/the8eam/open-iconic/webp/sort-ascending-3x.webp differ diff --git a/the8eam/open-iconic/webp/sort-ascending-4x.webp b/the8eam/open-iconic/webp/sort-ascending-4x.webp new file mode 100644 index 0000000..1cf4789 Binary files /dev/null and b/the8eam/open-iconic/webp/sort-ascending-4x.webp differ diff --git a/the8eam/open-iconic/webp/sort-ascending-6x.webp b/the8eam/open-iconic/webp/sort-ascending-6x.webp new file mode 100644 index 0000000..7adb40d Binary files /dev/null and b/the8eam/open-iconic/webp/sort-ascending-6x.webp differ diff --git a/the8eam/open-iconic/webp/sort-ascending-8x.webp b/the8eam/open-iconic/webp/sort-ascending-8x.webp new file mode 100644 index 0000000..1f4ba9b Binary files /dev/null and b/the8eam/open-iconic/webp/sort-ascending-8x.webp differ diff --git a/the8eam/open-iconic/webp/sort-ascending.webp b/the8eam/open-iconic/webp/sort-ascending.webp new file mode 100644 index 0000000..6b52b1d Binary files /dev/null and b/the8eam/open-iconic/webp/sort-ascending.webp differ diff --git a/the8eam/open-iconic/webp/sort-descending-2x.webp b/the8eam/open-iconic/webp/sort-descending-2x.webp new file mode 100644 index 0000000..e28b3ca Binary files /dev/null and b/the8eam/open-iconic/webp/sort-descending-2x.webp differ diff --git a/the8eam/open-iconic/webp/sort-descending-3x.webp b/the8eam/open-iconic/webp/sort-descending-3x.webp new file mode 100644 index 0000000..1449503 Binary files /dev/null and b/the8eam/open-iconic/webp/sort-descending-3x.webp differ diff --git a/the8eam/open-iconic/webp/sort-descending-4x.webp b/the8eam/open-iconic/webp/sort-descending-4x.webp new file mode 100644 index 0000000..2a73049 Binary files /dev/null and b/the8eam/open-iconic/webp/sort-descending-4x.webp differ diff --git a/the8eam/open-iconic/webp/sort-descending-6x.webp b/the8eam/open-iconic/webp/sort-descending-6x.webp new file mode 100644 index 0000000..5ab6a13 Binary files /dev/null and b/the8eam/open-iconic/webp/sort-descending-6x.webp differ diff --git a/the8eam/open-iconic/webp/sort-descending-8x.webp b/the8eam/open-iconic/webp/sort-descending-8x.webp new file mode 100644 index 0000000..2b64c17 Binary files /dev/null and b/the8eam/open-iconic/webp/sort-descending-8x.webp differ diff --git a/the8eam/open-iconic/webp/sort-descending.webp b/the8eam/open-iconic/webp/sort-descending.webp new file mode 100644 index 0000000..bec9284 Binary files /dev/null and b/the8eam/open-iconic/webp/sort-descending.webp differ diff --git a/the8eam/open-iconic/webp/spreadsheet-2x.webp b/the8eam/open-iconic/webp/spreadsheet-2x.webp new file mode 100644 index 0000000..3893427 Binary files /dev/null and b/the8eam/open-iconic/webp/spreadsheet-2x.webp differ diff --git a/the8eam/open-iconic/webp/spreadsheet-3x.webp b/the8eam/open-iconic/webp/spreadsheet-3x.webp new file mode 100644 index 0000000..1682b88 Binary files /dev/null and b/the8eam/open-iconic/webp/spreadsheet-3x.webp differ diff --git a/the8eam/open-iconic/webp/spreadsheet-4x.webp b/the8eam/open-iconic/webp/spreadsheet-4x.webp new file mode 100644 index 0000000..17db4b3 Binary files /dev/null and b/the8eam/open-iconic/webp/spreadsheet-4x.webp differ diff --git a/the8eam/open-iconic/webp/spreadsheet-6x.webp b/the8eam/open-iconic/webp/spreadsheet-6x.webp new file mode 100644 index 0000000..eba164c Binary files /dev/null and b/the8eam/open-iconic/webp/spreadsheet-6x.webp differ diff --git a/the8eam/open-iconic/webp/spreadsheet-8x.webp b/the8eam/open-iconic/webp/spreadsheet-8x.webp new file mode 100644 index 0000000..b7a2ff8 Binary files /dev/null and b/the8eam/open-iconic/webp/spreadsheet-8x.webp differ diff --git a/the8eam/open-iconic/webp/spreadsheet.webp b/the8eam/open-iconic/webp/spreadsheet.webp new file mode 100644 index 0000000..5e64b4a Binary files /dev/null and b/the8eam/open-iconic/webp/spreadsheet.webp differ diff --git a/the8eam/open-iconic/webp/star-2x.webp b/the8eam/open-iconic/webp/star-2x.webp new file mode 100644 index 0000000..26f462c Binary files /dev/null and b/the8eam/open-iconic/webp/star-2x.webp differ diff --git a/the8eam/open-iconic/webp/star-3x.webp b/the8eam/open-iconic/webp/star-3x.webp new file mode 100644 index 0000000..24ccdc6 Binary files /dev/null and b/the8eam/open-iconic/webp/star-3x.webp differ diff --git a/the8eam/open-iconic/webp/star-4x.webp b/the8eam/open-iconic/webp/star-4x.webp new file mode 100644 index 0000000..fb00193 Binary files /dev/null and b/the8eam/open-iconic/webp/star-4x.webp differ diff --git a/the8eam/open-iconic/webp/star-6x.webp b/the8eam/open-iconic/webp/star-6x.webp new file mode 100644 index 0000000..c93ebd5 Binary files /dev/null and b/the8eam/open-iconic/webp/star-6x.webp differ diff --git a/the8eam/open-iconic/webp/star-8x.webp b/the8eam/open-iconic/webp/star-8x.webp new file mode 100644 index 0000000..844b62e Binary files /dev/null and b/the8eam/open-iconic/webp/star-8x.webp differ diff --git a/the8eam/open-iconic/webp/star.webp b/the8eam/open-iconic/webp/star.webp new file mode 100644 index 0000000..5b964ea Binary files /dev/null and b/the8eam/open-iconic/webp/star.webp differ diff --git a/the8eam/open-iconic/webp/sun-2x.webp b/the8eam/open-iconic/webp/sun-2x.webp new file mode 100644 index 0000000..7fbd59b Binary files /dev/null and b/the8eam/open-iconic/webp/sun-2x.webp differ diff --git a/the8eam/open-iconic/webp/sun-3x.webp b/the8eam/open-iconic/webp/sun-3x.webp new file mode 100644 index 0000000..1529267 Binary files /dev/null and b/the8eam/open-iconic/webp/sun-3x.webp differ diff --git a/the8eam/open-iconic/webp/sun-4x.webp b/the8eam/open-iconic/webp/sun-4x.webp new file mode 100644 index 0000000..27bece4 Binary files /dev/null and b/the8eam/open-iconic/webp/sun-4x.webp differ diff --git a/the8eam/open-iconic/webp/sun-6x.webp b/the8eam/open-iconic/webp/sun-6x.webp new file mode 100644 index 0000000..7c96c83 Binary files /dev/null and b/the8eam/open-iconic/webp/sun-6x.webp differ diff --git a/the8eam/open-iconic/webp/sun-8x.webp b/the8eam/open-iconic/webp/sun-8x.webp new file mode 100644 index 0000000..d9b2c0d Binary files /dev/null and b/the8eam/open-iconic/webp/sun-8x.webp differ diff --git a/the8eam/open-iconic/webp/sun.webp b/the8eam/open-iconic/webp/sun.webp new file mode 100644 index 0000000..bc210d5 Binary files /dev/null and b/the8eam/open-iconic/webp/sun.webp differ diff --git a/the8eam/open-iconic/webp/tablet-2x.webp b/the8eam/open-iconic/webp/tablet-2x.webp new file mode 100644 index 0000000..1c59108 Binary files /dev/null and b/the8eam/open-iconic/webp/tablet-2x.webp differ diff --git a/the8eam/open-iconic/webp/tablet-3x.webp b/the8eam/open-iconic/webp/tablet-3x.webp new file mode 100644 index 0000000..d17ee18 Binary files /dev/null and b/the8eam/open-iconic/webp/tablet-3x.webp differ diff --git a/the8eam/open-iconic/webp/tablet-4x.webp b/the8eam/open-iconic/webp/tablet-4x.webp new file mode 100644 index 0000000..91a34c6 Binary files /dev/null and b/the8eam/open-iconic/webp/tablet-4x.webp differ diff --git a/the8eam/open-iconic/webp/tablet-6x.webp b/the8eam/open-iconic/webp/tablet-6x.webp new file mode 100644 index 0000000..1236829 Binary files /dev/null and b/the8eam/open-iconic/webp/tablet-6x.webp differ diff --git a/the8eam/open-iconic/webp/tablet-8x.webp b/the8eam/open-iconic/webp/tablet-8x.webp new file mode 100644 index 0000000..02791a6 Binary files /dev/null and b/the8eam/open-iconic/webp/tablet-8x.webp differ diff --git a/the8eam/open-iconic/webp/tablet.webp b/the8eam/open-iconic/webp/tablet.webp new file mode 100644 index 0000000..91f95fd Binary files /dev/null and b/the8eam/open-iconic/webp/tablet.webp differ diff --git a/the8eam/open-iconic/webp/tag-2x.webp b/the8eam/open-iconic/webp/tag-2x.webp new file mode 100644 index 0000000..3e7a873 Binary files /dev/null and b/the8eam/open-iconic/webp/tag-2x.webp differ diff --git a/the8eam/open-iconic/webp/tag-3x.webp b/the8eam/open-iconic/webp/tag-3x.webp new file mode 100644 index 0000000..66841b6 Binary files /dev/null and b/the8eam/open-iconic/webp/tag-3x.webp differ diff --git a/the8eam/open-iconic/webp/tag-4x.webp b/the8eam/open-iconic/webp/tag-4x.webp new file mode 100644 index 0000000..2fd0a35 Binary files /dev/null and b/the8eam/open-iconic/webp/tag-4x.webp differ diff --git a/the8eam/open-iconic/webp/tag-6x.webp b/the8eam/open-iconic/webp/tag-6x.webp new file mode 100644 index 0000000..55cb433 Binary files /dev/null and b/the8eam/open-iconic/webp/tag-6x.webp differ diff --git a/the8eam/open-iconic/webp/tag-8x.webp b/the8eam/open-iconic/webp/tag-8x.webp new file mode 100644 index 0000000..ff65387 Binary files /dev/null and b/the8eam/open-iconic/webp/tag-8x.webp differ diff --git a/the8eam/open-iconic/webp/tag.webp b/the8eam/open-iconic/webp/tag.webp new file mode 100644 index 0000000..6166da2 Binary files /dev/null and b/the8eam/open-iconic/webp/tag.webp differ diff --git a/the8eam/open-iconic/webp/tags-2x.webp b/the8eam/open-iconic/webp/tags-2x.webp new file mode 100644 index 0000000..09c1991 Binary files /dev/null and b/the8eam/open-iconic/webp/tags-2x.webp differ diff --git a/the8eam/open-iconic/webp/tags-3x.webp b/the8eam/open-iconic/webp/tags-3x.webp new file mode 100644 index 0000000..9a4425a Binary files /dev/null and b/the8eam/open-iconic/webp/tags-3x.webp differ diff --git a/the8eam/open-iconic/webp/tags-4x.webp b/the8eam/open-iconic/webp/tags-4x.webp new file mode 100644 index 0000000..7a63a30 Binary files /dev/null and b/the8eam/open-iconic/webp/tags-4x.webp differ diff --git a/the8eam/open-iconic/webp/tags-6x.webp b/the8eam/open-iconic/webp/tags-6x.webp new file mode 100644 index 0000000..c1c91ef Binary files /dev/null and b/the8eam/open-iconic/webp/tags-6x.webp differ diff --git a/the8eam/open-iconic/webp/tags-8x.webp b/the8eam/open-iconic/webp/tags-8x.webp new file mode 100644 index 0000000..dc1eca5 Binary files /dev/null and b/the8eam/open-iconic/webp/tags-8x.webp differ diff --git a/the8eam/open-iconic/webp/tags.webp b/the8eam/open-iconic/webp/tags.webp new file mode 100644 index 0000000..e91dd4f Binary files /dev/null and b/the8eam/open-iconic/webp/tags.webp differ diff --git a/the8eam/open-iconic/webp/target-2x.webp b/the8eam/open-iconic/webp/target-2x.webp new file mode 100644 index 0000000..fc40adc Binary files /dev/null and b/the8eam/open-iconic/webp/target-2x.webp differ diff --git a/the8eam/open-iconic/webp/target-3x.webp b/the8eam/open-iconic/webp/target-3x.webp new file mode 100644 index 0000000..6218170 Binary files /dev/null and b/the8eam/open-iconic/webp/target-3x.webp differ diff --git a/the8eam/open-iconic/webp/target-4x.webp b/the8eam/open-iconic/webp/target-4x.webp new file mode 100644 index 0000000..cdbd7ba Binary files /dev/null and b/the8eam/open-iconic/webp/target-4x.webp differ diff --git a/the8eam/open-iconic/webp/target-6x.webp b/the8eam/open-iconic/webp/target-6x.webp new file mode 100644 index 0000000..5c7c504 Binary files /dev/null and b/the8eam/open-iconic/webp/target-6x.webp differ diff --git a/the8eam/open-iconic/webp/target-8x.webp b/the8eam/open-iconic/webp/target-8x.webp new file mode 100644 index 0000000..fa057a6 Binary files /dev/null and b/the8eam/open-iconic/webp/target-8x.webp differ diff --git a/the8eam/open-iconic/webp/target.webp b/the8eam/open-iconic/webp/target.webp new file mode 100644 index 0000000..2426c5b Binary files /dev/null and b/the8eam/open-iconic/webp/target.webp differ diff --git a/the8eam/open-iconic/webp/task-2x.webp b/the8eam/open-iconic/webp/task-2x.webp new file mode 100644 index 0000000..2bfcd97 Binary files /dev/null and b/the8eam/open-iconic/webp/task-2x.webp differ diff --git a/the8eam/open-iconic/webp/task-3x.webp b/the8eam/open-iconic/webp/task-3x.webp new file mode 100644 index 0000000..de3a353 Binary files /dev/null and b/the8eam/open-iconic/webp/task-3x.webp differ diff --git a/the8eam/open-iconic/webp/task-4x.webp b/the8eam/open-iconic/webp/task-4x.webp new file mode 100644 index 0000000..bdca076 Binary files /dev/null and b/the8eam/open-iconic/webp/task-4x.webp differ diff --git a/the8eam/open-iconic/webp/task-6x.webp b/the8eam/open-iconic/webp/task-6x.webp new file mode 100644 index 0000000..36bf393 Binary files /dev/null and b/the8eam/open-iconic/webp/task-6x.webp differ diff --git a/the8eam/open-iconic/webp/task-8x.webp b/the8eam/open-iconic/webp/task-8x.webp new file mode 100644 index 0000000..efbe188 Binary files /dev/null and b/the8eam/open-iconic/webp/task-8x.webp differ diff --git a/the8eam/open-iconic/webp/task.webp b/the8eam/open-iconic/webp/task.webp new file mode 100644 index 0000000..c8e9dae Binary files /dev/null and b/the8eam/open-iconic/webp/task.webp differ diff --git a/the8eam/open-iconic/webp/terminal-2x.webp b/the8eam/open-iconic/webp/terminal-2x.webp new file mode 100644 index 0000000..328d181 Binary files /dev/null and b/the8eam/open-iconic/webp/terminal-2x.webp differ diff --git a/the8eam/open-iconic/webp/terminal-3x.webp b/the8eam/open-iconic/webp/terminal-3x.webp new file mode 100644 index 0000000..76c7d07 Binary files /dev/null and b/the8eam/open-iconic/webp/terminal-3x.webp differ diff --git a/the8eam/open-iconic/webp/terminal-4x.webp b/the8eam/open-iconic/webp/terminal-4x.webp new file mode 100644 index 0000000..869622d Binary files /dev/null and b/the8eam/open-iconic/webp/terminal-4x.webp differ diff --git a/the8eam/open-iconic/webp/terminal-6x.webp b/the8eam/open-iconic/webp/terminal-6x.webp new file mode 100644 index 0000000..a9b20ac Binary files /dev/null and b/the8eam/open-iconic/webp/terminal-6x.webp differ diff --git a/the8eam/open-iconic/webp/terminal-8x.webp b/the8eam/open-iconic/webp/terminal-8x.webp new file mode 100644 index 0000000..0f8119e Binary files /dev/null and b/the8eam/open-iconic/webp/terminal-8x.webp differ diff --git a/the8eam/open-iconic/webp/terminal.webp b/the8eam/open-iconic/webp/terminal.webp new file mode 100644 index 0000000..67e7d1d Binary files /dev/null and b/the8eam/open-iconic/webp/terminal.webp differ diff --git a/the8eam/open-iconic/webp/text-2x.webp b/the8eam/open-iconic/webp/text-2x.webp new file mode 100644 index 0000000..b68486d Binary files /dev/null and b/the8eam/open-iconic/webp/text-2x.webp differ diff --git a/the8eam/open-iconic/webp/text-3x.webp b/the8eam/open-iconic/webp/text-3x.webp new file mode 100644 index 0000000..b7ca701 Binary files /dev/null and b/the8eam/open-iconic/webp/text-3x.webp differ diff --git a/the8eam/open-iconic/webp/text-4x.webp b/the8eam/open-iconic/webp/text-4x.webp new file mode 100644 index 0000000..c9b4c33 Binary files /dev/null and b/the8eam/open-iconic/webp/text-4x.webp differ diff --git a/the8eam/open-iconic/webp/text-6x.webp b/the8eam/open-iconic/webp/text-6x.webp new file mode 100644 index 0000000..40bba9a Binary files /dev/null and b/the8eam/open-iconic/webp/text-6x.webp differ diff --git a/the8eam/open-iconic/webp/text-8x.webp b/the8eam/open-iconic/webp/text-8x.webp new file mode 100644 index 0000000..3b10a70 Binary files /dev/null and b/the8eam/open-iconic/webp/text-8x.webp differ diff --git a/the8eam/open-iconic/webp/text.webp b/the8eam/open-iconic/webp/text.webp new file mode 100644 index 0000000..7641cf4 Binary files /dev/null and b/the8eam/open-iconic/webp/text.webp differ diff --git a/the8eam/open-iconic/webp/thumb-down-2x.webp b/the8eam/open-iconic/webp/thumb-down-2x.webp new file mode 100644 index 0000000..5496782 Binary files /dev/null and b/the8eam/open-iconic/webp/thumb-down-2x.webp differ diff --git a/the8eam/open-iconic/webp/thumb-down-3x.webp b/the8eam/open-iconic/webp/thumb-down-3x.webp new file mode 100644 index 0000000..7f1f814 Binary files /dev/null and b/the8eam/open-iconic/webp/thumb-down-3x.webp differ diff --git a/the8eam/open-iconic/webp/thumb-down-4x.webp b/the8eam/open-iconic/webp/thumb-down-4x.webp new file mode 100644 index 0000000..0a05f75 Binary files /dev/null and b/the8eam/open-iconic/webp/thumb-down-4x.webp differ diff --git a/the8eam/open-iconic/webp/thumb-down-6x.webp b/the8eam/open-iconic/webp/thumb-down-6x.webp new file mode 100644 index 0000000..92eceeb Binary files /dev/null and b/the8eam/open-iconic/webp/thumb-down-6x.webp differ diff --git a/the8eam/open-iconic/webp/thumb-down-8x.webp b/the8eam/open-iconic/webp/thumb-down-8x.webp new file mode 100644 index 0000000..53c1022 Binary files /dev/null and b/the8eam/open-iconic/webp/thumb-down-8x.webp differ diff --git a/the8eam/open-iconic/webp/thumb-down.webp b/the8eam/open-iconic/webp/thumb-down.webp new file mode 100644 index 0000000..7012b2b Binary files /dev/null and b/the8eam/open-iconic/webp/thumb-down.webp differ diff --git a/the8eam/open-iconic/webp/thumb-up-2x.webp b/the8eam/open-iconic/webp/thumb-up-2x.webp new file mode 100644 index 0000000..410b939 Binary files /dev/null and b/the8eam/open-iconic/webp/thumb-up-2x.webp differ diff --git a/the8eam/open-iconic/webp/thumb-up-3x.webp b/the8eam/open-iconic/webp/thumb-up-3x.webp new file mode 100644 index 0000000..734bd28 Binary files /dev/null and b/the8eam/open-iconic/webp/thumb-up-3x.webp differ diff --git a/the8eam/open-iconic/webp/thumb-up-4x.webp b/the8eam/open-iconic/webp/thumb-up-4x.webp new file mode 100644 index 0000000..f4051a8 Binary files /dev/null and b/the8eam/open-iconic/webp/thumb-up-4x.webp differ diff --git a/the8eam/open-iconic/webp/thumb-up-6x.webp b/the8eam/open-iconic/webp/thumb-up-6x.webp new file mode 100644 index 0000000..426b46e Binary files /dev/null and b/the8eam/open-iconic/webp/thumb-up-6x.webp differ diff --git a/the8eam/open-iconic/webp/thumb-up-8x.webp b/the8eam/open-iconic/webp/thumb-up-8x.webp new file mode 100644 index 0000000..ab0c169 Binary files /dev/null and b/the8eam/open-iconic/webp/thumb-up-8x.webp differ diff --git a/the8eam/open-iconic/webp/thumb-up.webp b/the8eam/open-iconic/webp/thumb-up.webp new file mode 100644 index 0000000..6a3b137 Binary files /dev/null and b/the8eam/open-iconic/webp/thumb-up.webp differ diff --git a/the8eam/open-iconic/webp/timer-2x.webp b/the8eam/open-iconic/webp/timer-2x.webp new file mode 100644 index 0000000..c4c87ed Binary files /dev/null and b/the8eam/open-iconic/webp/timer-2x.webp differ diff --git a/the8eam/open-iconic/webp/timer-3x.webp b/the8eam/open-iconic/webp/timer-3x.webp new file mode 100644 index 0000000..8ab5bc3 Binary files /dev/null and b/the8eam/open-iconic/webp/timer-3x.webp differ diff --git a/the8eam/open-iconic/webp/timer-4x.webp b/the8eam/open-iconic/webp/timer-4x.webp new file mode 100644 index 0000000..0f84e6c Binary files /dev/null and b/the8eam/open-iconic/webp/timer-4x.webp differ diff --git a/the8eam/open-iconic/webp/timer-6x.webp b/the8eam/open-iconic/webp/timer-6x.webp new file mode 100644 index 0000000..c541774 Binary files /dev/null and b/the8eam/open-iconic/webp/timer-6x.webp differ diff --git a/the8eam/open-iconic/webp/timer-8x.webp b/the8eam/open-iconic/webp/timer-8x.webp new file mode 100644 index 0000000..a567e86 Binary files /dev/null and b/the8eam/open-iconic/webp/timer-8x.webp differ diff --git a/the8eam/open-iconic/webp/timer.webp b/the8eam/open-iconic/webp/timer.webp new file mode 100644 index 0000000..5aa4e22 Binary files /dev/null and b/the8eam/open-iconic/webp/timer.webp differ diff --git a/the8eam/open-iconic/webp/transfer-2x.webp b/the8eam/open-iconic/webp/transfer-2x.webp new file mode 100644 index 0000000..99470da Binary files /dev/null and b/the8eam/open-iconic/webp/transfer-2x.webp differ diff --git a/the8eam/open-iconic/webp/transfer-3x.webp b/the8eam/open-iconic/webp/transfer-3x.webp new file mode 100644 index 0000000..d9e023d Binary files /dev/null and b/the8eam/open-iconic/webp/transfer-3x.webp differ diff --git a/the8eam/open-iconic/webp/transfer-4x.webp b/the8eam/open-iconic/webp/transfer-4x.webp new file mode 100644 index 0000000..9cc41a7 Binary files /dev/null and b/the8eam/open-iconic/webp/transfer-4x.webp differ diff --git a/the8eam/open-iconic/webp/transfer-6x.webp b/the8eam/open-iconic/webp/transfer-6x.webp new file mode 100644 index 0000000..a1f0a7f Binary files /dev/null and b/the8eam/open-iconic/webp/transfer-6x.webp differ diff --git a/the8eam/open-iconic/webp/transfer-8x.webp b/the8eam/open-iconic/webp/transfer-8x.webp new file mode 100644 index 0000000..ddde408 Binary files /dev/null and b/the8eam/open-iconic/webp/transfer-8x.webp differ diff --git a/the8eam/open-iconic/webp/transfer.webp b/the8eam/open-iconic/webp/transfer.webp new file mode 100644 index 0000000..f6a270f Binary files /dev/null and b/the8eam/open-iconic/webp/transfer.webp differ diff --git a/the8eam/open-iconic/webp/trash-2x.webp b/the8eam/open-iconic/webp/trash-2x.webp new file mode 100644 index 0000000..6c45298 Binary files /dev/null and b/the8eam/open-iconic/webp/trash-2x.webp differ diff --git a/the8eam/open-iconic/webp/trash-3x.webp b/the8eam/open-iconic/webp/trash-3x.webp new file mode 100644 index 0000000..d182136 Binary files /dev/null and b/the8eam/open-iconic/webp/trash-3x.webp differ diff --git a/the8eam/open-iconic/webp/trash-4x.webp b/the8eam/open-iconic/webp/trash-4x.webp new file mode 100644 index 0000000..9b96acc Binary files /dev/null and b/the8eam/open-iconic/webp/trash-4x.webp differ diff --git a/the8eam/open-iconic/webp/trash-6x.webp b/the8eam/open-iconic/webp/trash-6x.webp new file mode 100644 index 0000000..ac5b5c9 Binary files /dev/null and b/the8eam/open-iconic/webp/trash-6x.webp differ diff --git a/the8eam/open-iconic/webp/trash-8x.webp b/the8eam/open-iconic/webp/trash-8x.webp new file mode 100644 index 0000000..2e8aca0 Binary files /dev/null and b/the8eam/open-iconic/webp/trash-8x.webp differ diff --git a/the8eam/open-iconic/webp/trash.webp b/the8eam/open-iconic/webp/trash.webp new file mode 100644 index 0000000..0961266 Binary files /dev/null and b/the8eam/open-iconic/webp/trash.webp differ diff --git a/the8eam/open-iconic/webp/underline-2x.webp b/the8eam/open-iconic/webp/underline-2x.webp new file mode 100644 index 0000000..b5fe508 Binary files /dev/null and b/the8eam/open-iconic/webp/underline-2x.webp differ diff --git a/the8eam/open-iconic/webp/underline-3x.webp b/the8eam/open-iconic/webp/underline-3x.webp new file mode 100644 index 0000000..f96e7e8 Binary files /dev/null and b/the8eam/open-iconic/webp/underline-3x.webp differ diff --git a/the8eam/open-iconic/webp/underline-4x.webp b/the8eam/open-iconic/webp/underline-4x.webp new file mode 100644 index 0000000..6debce6 Binary files /dev/null and b/the8eam/open-iconic/webp/underline-4x.webp differ diff --git a/the8eam/open-iconic/webp/underline-6x.webp b/the8eam/open-iconic/webp/underline-6x.webp new file mode 100644 index 0000000..aa83a8b Binary files /dev/null and b/the8eam/open-iconic/webp/underline-6x.webp differ diff --git a/the8eam/open-iconic/webp/underline-8x.webp b/the8eam/open-iconic/webp/underline-8x.webp new file mode 100644 index 0000000..f61a011 Binary files /dev/null and b/the8eam/open-iconic/webp/underline-8x.webp differ diff --git a/the8eam/open-iconic/webp/underline.webp b/the8eam/open-iconic/webp/underline.webp new file mode 100644 index 0000000..a72eb5a Binary files /dev/null and b/the8eam/open-iconic/webp/underline.webp differ diff --git a/the8eam/open-iconic/webp/vertical-align-bottom-2x.webp b/the8eam/open-iconic/webp/vertical-align-bottom-2x.webp new file mode 100644 index 0000000..ef967e7 Binary files /dev/null and b/the8eam/open-iconic/webp/vertical-align-bottom-2x.webp differ diff --git a/the8eam/open-iconic/webp/vertical-align-bottom-3x.webp b/the8eam/open-iconic/webp/vertical-align-bottom-3x.webp new file mode 100644 index 0000000..c65375f Binary files /dev/null and b/the8eam/open-iconic/webp/vertical-align-bottom-3x.webp differ diff --git a/the8eam/open-iconic/webp/vertical-align-bottom-4x.webp b/the8eam/open-iconic/webp/vertical-align-bottom-4x.webp new file mode 100644 index 0000000..281f1f8 Binary files /dev/null and b/the8eam/open-iconic/webp/vertical-align-bottom-4x.webp differ diff --git a/the8eam/open-iconic/webp/vertical-align-bottom-6x.webp b/the8eam/open-iconic/webp/vertical-align-bottom-6x.webp new file mode 100644 index 0000000..b61561b Binary files /dev/null and b/the8eam/open-iconic/webp/vertical-align-bottom-6x.webp differ diff --git a/the8eam/open-iconic/webp/vertical-align-bottom-8x.webp b/the8eam/open-iconic/webp/vertical-align-bottom-8x.webp new file mode 100644 index 0000000..8fbd5c2 Binary files /dev/null and b/the8eam/open-iconic/webp/vertical-align-bottom-8x.webp differ diff --git a/the8eam/open-iconic/webp/vertical-align-bottom.webp b/the8eam/open-iconic/webp/vertical-align-bottom.webp new file mode 100644 index 0000000..bab7023 Binary files /dev/null and b/the8eam/open-iconic/webp/vertical-align-bottom.webp differ diff --git a/the8eam/open-iconic/webp/vertical-align-center-2x.webp b/the8eam/open-iconic/webp/vertical-align-center-2x.webp new file mode 100644 index 0000000..d8093f4 Binary files /dev/null and b/the8eam/open-iconic/webp/vertical-align-center-2x.webp differ diff --git a/the8eam/open-iconic/webp/vertical-align-center-3x.webp b/the8eam/open-iconic/webp/vertical-align-center-3x.webp new file mode 100644 index 0000000..3c9fe16 Binary files /dev/null and b/the8eam/open-iconic/webp/vertical-align-center-3x.webp differ diff --git a/the8eam/open-iconic/webp/vertical-align-center-4x.webp b/the8eam/open-iconic/webp/vertical-align-center-4x.webp new file mode 100644 index 0000000..66b9897 Binary files /dev/null and b/the8eam/open-iconic/webp/vertical-align-center-4x.webp differ diff --git a/the8eam/open-iconic/webp/vertical-align-center-6x.webp b/the8eam/open-iconic/webp/vertical-align-center-6x.webp new file mode 100644 index 0000000..e25319f Binary files /dev/null and b/the8eam/open-iconic/webp/vertical-align-center-6x.webp differ diff --git a/the8eam/open-iconic/webp/vertical-align-center-8x.webp b/the8eam/open-iconic/webp/vertical-align-center-8x.webp new file mode 100644 index 0000000..357fda0 Binary files /dev/null and b/the8eam/open-iconic/webp/vertical-align-center-8x.webp differ diff --git a/the8eam/open-iconic/webp/vertical-align-center.webp b/the8eam/open-iconic/webp/vertical-align-center.webp new file mode 100644 index 0000000..b72b946 Binary files /dev/null and b/the8eam/open-iconic/webp/vertical-align-center.webp differ diff --git a/the8eam/open-iconic/webp/vertical-align-top-2x.webp b/the8eam/open-iconic/webp/vertical-align-top-2x.webp new file mode 100644 index 0000000..6aeb69d Binary files /dev/null and b/the8eam/open-iconic/webp/vertical-align-top-2x.webp differ diff --git a/the8eam/open-iconic/webp/vertical-align-top-3x.webp b/the8eam/open-iconic/webp/vertical-align-top-3x.webp new file mode 100644 index 0000000..99d8e25 Binary files /dev/null and b/the8eam/open-iconic/webp/vertical-align-top-3x.webp differ diff --git a/the8eam/open-iconic/webp/vertical-align-top-4x.webp b/the8eam/open-iconic/webp/vertical-align-top-4x.webp new file mode 100644 index 0000000..5db720b Binary files /dev/null and b/the8eam/open-iconic/webp/vertical-align-top-4x.webp differ diff --git a/the8eam/open-iconic/webp/vertical-align-top-6x.webp b/the8eam/open-iconic/webp/vertical-align-top-6x.webp new file mode 100644 index 0000000..f9ab4d6 Binary files /dev/null and b/the8eam/open-iconic/webp/vertical-align-top-6x.webp differ diff --git a/the8eam/open-iconic/webp/vertical-align-top-8x.webp b/the8eam/open-iconic/webp/vertical-align-top-8x.webp new file mode 100644 index 0000000..98172e2 Binary files /dev/null and b/the8eam/open-iconic/webp/vertical-align-top-8x.webp differ diff --git a/the8eam/open-iconic/webp/vertical-align-top.webp b/the8eam/open-iconic/webp/vertical-align-top.webp new file mode 100644 index 0000000..5a7409c Binary files /dev/null and b/the8eam/open-iconic/webp/vertical-align-top.webp differ diff --git a/the8eam/open-iconic/webp/video-2x.webp b/the8eam/open-iconic/webp/video-2x.webp new file mode 100644 index 0000000..9a397f7 Binary files /dev/null and b/the8eam/open-iconic/webp/video-2x.webp differ diff --git a/the8eam/open-iconic/webp/video-3x.webp b/the8eam/open-iconic/webp/video-3x.webp new file mode 100644 index 0000000..1e56a47 Binary files /dev/null and b/the8eam/open-iconic/webp/video-3x.webp differ diff --git a/the8eam/open-iconic/webp/video-4x.webp b/the8eam/open-iconic/webp/video-4x.webp new file mode 100644 index 0000000..ccd6c05 Binary files /dev/null and b/the8eam/open-iconic/webp/video-4x.webp differ diff --git a/the8eam/open-iconic/webp/video-6x.webp b/the8eam/open-iconic/webp/video-6x.webp new file mode 100644 index 0000000..c467baf Binary files /dev/null and b/the8eam/open-iconic/webp/video-6x.webp differ diff --git a/the8eam/open-iconic/webp/video-8x.webp b/the8eam/open-iconic/webp/video-8x.webp new file mode 100644 index 0000000..22928fc Binary files /dev/null and b/the8eam/open-iconic/webp/video-8x.webp differ diff --git a/the8eam/open-iconic/webp/video.webp b/the8eam/open-iconic/webp/video.webp new file mode 100644 index 0000000..1a96def Binary files /dev/null and b/the8eam/open-iconic/webp/video.webp differ diff --git a/the8eam/open-iconic/webp/volume-high-2x.webp b/the8eam/open-iconic/webp/volume-high-2x.webp new file mode 100644 index 0000000..70919dc Binary files /dev/null and b/the8eam/open-iconic/webp/volume-high-2x.webp differ diff --git a/the8eam/open-iconic/webp/volume-high-3x.webp b/the8eam/open-iconic/webp/volume-high-3x.webp new file mode 100644 index 0000000..5a02af3 Binary files /dev/null and b/the8eam/open-iconic/webp/volume-high-3x.webp differ diff --git a/the8eam/open-iconic/webp/volume-high-4x.webp b/the8eam/open-iconic/webp/volume-high-4x.webp new file mode 100644 index 0000000..949f6f5 Binary files /dev/null and b/the8eam/open-iconic/webp/volume-high-4x.webp differ diff --git a/the8eam/open-iconic/webp/volume-high-6x.webp b/the8eam/open-iconic/webp/volume-high-6x.webp new file mode 100644 index 0000000..a7f4f36 Binary files /dev/null and b/the8eam/open-iconic/webp/volume-high-6x.webp differ diff --git a/the8eam/open-iconic/webp/volume-high-8x.webp b/the8eam/open-iconic/webp/volume-high-8x.webp new file mode 100644 index 0000000..3b7288e Binary files /dev/null and b/the8eam/open-iconic/webp/volume-high-8x.webp differ diff --git a/the8eam/open-iconic/webp/volume-high.webp b/the8eam/open-iconic/webp/volume-high.webp new file mode 100644 index 0000000..bc6d2fe Binary files /dev/null and b/the8eam/open-iconic/webp/volume-high.webp differ diff --git a/the8eam/open-iconic/webp/volume-low-2x.webp b/the8eam/open-iconic/webp/volume-low-2x.webp new file mode 100644 index 0000000..c9995fe Binary files /dev/null and b/the8eam/open-iconic/webp/volume-low-2x.webp differ diff --git a/the8eam/open-iconic/webp/volume-low-3x.webp b/the8eam/open-iconic/webp/volume-low-3x.webp new file mode 100644 index 0000000..c3b532f Binary files /dev/null and b/the8eam/open-iconic/webp/volume-low-3x.webp differ diff --git a/the8eam/open-iconic/webp/volume-low-4x.webp b/the8eam/open-iconic/webp/volume-low-4x.webp new file mode 100644 index 0000000..0a48bcb Binary files /dev/null and b/the8eam/open-iconic/webp/volume-low-4x.webp differ diff --git a/the8eam/open-iconic/webp/volume-low-6x.webp b/the8eam/open-iconic/webp/volume-low-6x.webp new file mode 100644 index 0000000..b22a9f2 Binary files /dev/null and b/the8eam/open-iconic/webp/volume-low-6x.webp differ diff --git a/the8eam/open-iconic/webp/volume-low-8x.webp b/the8eam/open-iconic/webp/volume-low-8x.webp new file mode 100644 index 0000000..1d54520 Binary files /dev/null and b/the8eam/open-iconic/webp/volume-low-8x.webp differ diff --git a/the8eam/open-iconic/webp/volume-low.webp b/the8eam/open-iconic/webp/volume-low.webp new file mode 100644 index 0000000..db277c4 Binary files /dev/null and b/the8eam/open-iconic/webp/volume-low.webp differ diff --git a/the8eam/open-iconic/webp/volume-off-2x.webp b/the8eam/open-iconic/webp/volume-off-2x.webp new file mode 100644 index 0000000..96ef3c6 Binary files /dev/null and b/the8eam/open-iconic/webp/volume-off-2x.webp differ diff --git a/the8eam/open-iconic/webp/volume-off-3x.webp b/the8eam/open-iconic/webp/volume-off-3x.webp new file mode 100644 index 0000000..7712ec8 Binary files /dev/null and b/the8eam/open-iconic/webp/volume-off-3x.webp differ diff --git a/the8eam/open-iconic/webp/volume-off-4x.webp b/the8eam/open-iconic/webp/volume-off-4x.webp new file mode 100644 index 0000000..783a7b8 Binary files /dev/null and b/the8eam/open-iconic/webp/volume-off-4x.webp differ diff --git a/the8eam/open-iconic/webp/volume-off-6x.webp b/the8eam/open-iconic/webp/volume-off-6x.webp new file mode 100644 index 0000000..2848988 Binary files /dev/null and b/the8eam/open-iconic/webp/volume-off-6x.webp differ diff --git a/the8eam/open-iconic/webp/volume-off-8x.webp b/the8eam/open-iconic/webp/volume-off-8x.webp new file mode 100644 index 0000000..16fd130 Binary files /dev/null and b/the8eam/open-iconic/webp/volume-off-8x.webp differ diff --git a/the8eam/open-iconic/webp/volume-off.webp b/the8eam/open-iconic/webp/volume-off.webp new file mode 100644 index 0000000..3477dc6 Binary files /dev/null and b/the8eam/open-iconic/webp/volume-off.webp differ diff --git a/the8eam/open-iconic/webp/warning-2x.webp b/the8eam/open-iconic/webp/warning-2x.webp new file mode 100644 index 0000000..c79d0e3 Binary files /dev/null and b/the8eam/open-iconic/webp/warning-2x.webp differ diff --git a/the8eam/open-iconic/webp/warning-3x.webp b/the8eam/open-iconic/webp/warning-3x.webp new file mode 100644 index 0000000..6cabfe3 Binary files /dev/null and b/the8eam/open-iconic/webp/warning-3x.webp differ diff --git a/the8eam/open-iconic/webp/warning-4x.webp b/the8eam/open-iconic/webp/warning-4x.webp new file mode 100644 index 0000000..41d2a20 Binary files /dev/null and b/the8eam/open-iconic/webp/warning-4x.webp differ diff --git a/the8eam/open-iconic/webp/warning-6x.webp b/the8eam/open-iconic/webp/warning-6x.webp new file mode 100644 index 0000000..facb477 Binary files /dev/null and b/the8eam/open-iconic/webp/warning-6x.webp differ diff --git a/the8eam/open-iconic/webp/warning-8x.webp b/the8eam/open-iconic/webp/warning-8x.webp new file mode 100644 index 0000000..7edd6c9 Binary files /dev/null and b/the8eam/open-iconic/webp/warning-8x.webp differ diff --git a/the8eam/open-iconic/webp/warning.webp b/the8eam/open-iconic/webp/warning.webp new file mode 100644 index 0000000..1924624 Binary files /dev/null and b/the8eam/open-iconic/webp/warning.webp differ diff --git a/the8eam/open-iconic/webp/wifi-2x.webp b/the8eam/open-iconic/webp/wifi-2x.webp new file mode 100644 index 0000000..27094ab Binary files /dev/null and b/the8eam/open-iconic/webp/wifi-2x.webp differ diff --git a/the8eam/open-iconic/webp/wifi-3x.webp b/the8eam/open-iconic/webp/wifi-3x.webp new file mode 100644 index 0000000..0098781 Binary files /dev/null and b/the8eam/open-iconic/webp/wifi-3x.webp differ diff --git a/the8eam/open-iconic/webp/wifi-4x.webp b/the8eam/open-iconic/webp/wifi-4x.webp new file mode 100644 index 0000000..6b19ba3 Binary files /dev/null and b/the8eam/open-iconic/webp/wifi-4x.webp differ diff --git a/the8eam/open-iconic/webp/wifi-6x.webp b/the8eam/open-iconic/webp/wifi-6x.webp new file mode 100644 index 0000000..5059d39 Binary files /dev/null and b/the8eam/open-iconic/webp/wifi-6x.webp differ diff --git a/the8eam/open-iconic/webp/wifi-8x.webp b/the8eam/open-iconic/webp/wifi-8x.webp new file mode 100644 index 0000000..77bf574 Binary files /dev/null and b/the8eam/open-iconic/webp/wifi-8x.webp differ diff --git a/the8eam/open-iconic/webp/wifi.webp b/the8eam/open-iconic/webp/wifi.webp new file mode 100644 index 0000000..916f686 Binary files /dev/null and b/the8eam/open-iconic/webp/wifi.webp differ diff --git a/the8eam/open-iconic/webp/wrench-2x.webp b/the8eam/open-iconic/webp/wrench-2x.webp new file mode 100644 index 0000000..32d192a Binary files /dev/null and b/the8eam/open-iconic/webp/wrench-2x.webp differ diff --git a/the8eam/open-iconic/webp/wrench-3x.webp b/the8eam/open-iconic/webp/wrench-3x.webp new file mode 100644 index 0000000..0e10c9e Binary files /dev/null and b/the8eam/open-iconic/webp/wrench-3x.webp differ diff --git a/the8eam/open-iconic/webp/wrench-4x.webp b/the8eam/open-iconic/webp/wrench-4x.webp new file mode 100644 index 0000000..ac63015 Binary files /dev/null and b/the8eam/open-iconic/webp/wrench-4x.webp differ diff --git a/the8eam/open-iconic/webp/wrench-6x.webp b/the8eam/open-iconic/webp/wrench-6x.webp new file mode 100644 index 0000000..e7df6c1 Binary files /dev/null and b/the8eam/open-iconic/webp/wrench-6x.webp differ diff --git a/the8eam/open-iconic/webp/wrench-8x.webp b/the8eam/open-iconic/webp/wrench-8x.webp new file mode 100644 index 0000000..bcdb394 Binary files /dev/null and b/the8eam/open-iconic/webp/wrench-8x.webp differ diff --git a/the8eam/open-iconic/webp/wrench.webp b/the8eam/open-iconic/webp/wrench.webp new file mode 100644 index 0000000..8e00859 Binary files /dev/null and b/the8eam/open-iconic/webp/wrench.webp differ diff --git a/the8eam/open-iconic/webp/x-2x.webp b/the8eam/open-iconic/webp/x-2x.webp new file mode 100644 index 0000000..5534930 Binary files /dev/null and b/the8eam/open-iconic/webp/x-2x.webp differ diff --git a/the8eam/open-iconic/webp/x-3x.webp b/the8eam/open-iconic/webp/x-3x.webp new file mode 100644 index 0000000..05dc779 Binary files /dev/null and b/the8eam/open-iconic/webp/x-3x.webp differ diff --git a/the8eam/open-iconic/webp/x-4x.webp b/the8eam/open-iconic/webp/x-4x.webp new file mode 100644 index 0000000..0bc1a55 Binary files /dev/null and b/the8eam/open-iconic/webp/x-4x.webp differ diff --git a/the8eam/open-iconic/webp/x-6x.webp b/the8eam/open-iconic/webp/x-6x.webp new file mode 100644 index 0000000..86e329e Binary files /dev/null and b/the8eam/open-iconic/webp/x-6x.webp differ diff --git a/the8eam/open-iconic/webp/x-8x.webp b/the8eam/open-iconic/webp/x-8x.webp new file mode 100644 index 0000000..1f1ee8f Binary files /dev/null and b/the8eam/open-iconic/webp/x-8x.webp differ diff --git a/the8eam/open-iconic/webp/x.webp b/the8eam/open-iconic/webp/x.webp new file mode 100644 index 0000000..bec5577 Binary files /dev/null and b/the8eam/open-iconic/webp/x.webp differ diff --git a/the8eam/open-iconic/webp/yen-2x.webp b/the8eam/open-iconic/webp/yen-2x.webp new file mode 100644 index 0000000..7447f89 Binary files /dev/null and b/the8eam/open-iconic/webp/yen-2x.webp differ diff --git a/the8eam/open-iconic/webp/yen-3x.webp b/the8eam/open-iconic/webp/yen-3x.webp new file mode 100644 index 0000000..8bb8471 Binary files /dev/null and b/the8eam/open-iconic/webp/yen-3x.webp differ diff --git a/the8eam/open-iconic/webp/yen-4x.webp b/the8eam/open-iconic/webp/yen-4x.webp new file mode 100644 index 0000000..8238b53 Binary files /dev/null and b/the8eam/open-iconic/webp/yen-4x.webp differ diff --git a/the8eam/open-iconic/webp/yen-6x.webp b/the8eam/open-iconic/webp/yen-6x.webp new file mode 100644 index 0000000..7d6976c Binary files /dev/null and b/the8eam/open-iconic/webp/yen-6x.webp differ diff --git a/the8eam/open-iconic/webp/yen-8x.webp b/the8eam/open-iconic/webp/yen-8x.webp new file mode 100644 index 0000000..db2f627 Binary files /dev/null and b/the8eam/open-iconic/webp/yen-8x.webp differ diff --git a/the8eam/open-iconic/webp/yen.webp b/the8eam/open-iconic/webp/yen.webp new file mode 100644 index 0000000..cd53cea Binary files /dev/null and b/the8eam/open-iconic/webp/yen.webp differ diff --git a/the8eam/open-iconic/webp/zoom-in-2x.webp b/the8eam/open-iconic/webp/zoom-in-2x.webp new file mode 100644 index 0000000..b586096 Binary files /dev/null and b/the8eam/open-iconic/webp/zoom-in-2x.webp differ diff --git a/the8eam/open-iconic/webp/zoom-in-3x.webp b/the8eam/open-iconic/webp/zoom-in-3x.webp new file mode 100644 index 0000000..7f9e568 Binary files /dev/null and b/the8eam/open-iconic/webp/zoom-in-3x.webp differ diff --git a/the8eam/open-iconic/webp/zoom-in-4x.webp b/the8eam/open-iconic/webp/zoom-in-4x.webp new file mode 100644 index 0000000..da3fec2 Binary files /dev/null and b/the8eam/open-iconic/webp/zoom-in-4x.webp differ diff --git a/the8eam/open-iconic/webp/zoom-in-6x.webp b/the8eam/open-iconic/webp/zoom-in-6x.webp new file mode 100644 index 0000000..588b83a Binary files /dev/null and b/the8eam/open-iconic/webp/zoom-in-6x.webp differ diff --git a/the8eam/open-iconic/webp/zoom-in-8x.webp b/the8eam/open-iconic/webp/zoom-in-8x.webp new file mode 100644 index 0000000..12a62e4 Binary files /dev/null and b/the8eam/open-iconic/webp/zoom-in-8x.webp differ diff --git a/the8eam/open-iconic/webp/zoom-in.webp b/the8eam/open-iconic/webp/zoom-in.webp new file mode 100644 index 0000000..1188570 Binary files /dev/null and b/the8eam/open-iconic/webp/zoom-in.webp differ diff --git a/the8eam/open-iconic/webp/zoom-out-2x.webp b/the8eam/open-iconic/webp/zoom-out-2x.webp new file mode 100644 index 0000000..4af5373 Binary files /dev/null and b/the8eam/open-iconic/webp/zoom-out-2x.webp differ diff --git a/the8eam/open-iconic/webp/zoom-out-3x.webp b/the8eam/open-iconic/webp/zoom-out-3x.webp new file mode 100644 index 0000000..5e8c509 Binary files /dev/null and b/the8eam/open-iconic/webp/zoom-out-3x.webp differ diff --git a/the8eam/open-iconic/webp/zoom-out-4x.webp b/the8eam/open-iconic/webp/zoom-out-4x.webp new file mode 100644 index 0000000..689bb44 Binary files /dev/null and b/the8eam/open-iconic/webp/zoom-out-4x.webp differ diff --git a/the8eam/open-iconic/webp/zoom-out-6x.webp b/the8eam/open-iconic/webp/zoom-out-6x.webp new file mode 100644 index 0000000..5241d92 Binary files /dev/null and b/the8eam/open-iconic/webp/zoom-out-6x.webp differ diff --git a/the8eam/open-iconic/webp/zoom-out-8x.webp b/the8eam/open-iconic/webp/zoom-out-8x.webp new file mode 100644 index 0000000..962ba0d Binary files /dev/null and b/the8eam/open-iconic/webp/zoom-out-8x.webp differ diff --git a/the8eam/open-iconic/webp/zoom-out.webp b/the8eam/open-iconic/webp/zoom-out.webp new file mode 100644 index 0000000..61bc14b Binary files /dev/null and b/the8eam/open-iconic/webp/zoom-out.webp differ diff --git a/the8eam/package-lock.json b/the8eam/package-lock.json index e08f888..ed80cbf 100644 --- a/the8eam/package-lock.json +++ b/the8eam/package-lock.json @@ -38,9 +38,9 @@ } }, "@angular/animations": { - "version": "4.4.5", - "resolved": "https://registry.npmjs.org/@angular/animations/-/animations-4.4.5.tgz", - "integrity": "sha1-WlpVHXV+WlVgCY9vhTXBAtk5VNc=", + "version": "4.4.6", + "resolved": "https://registry.npmjs.org/@angular/animations/-/animations-4.4.6.tgz", + "integrity": "sha1-+mYYmaik44y3xYPHpcl85l1ZKjU=", "requires": { "tslib": "1.8.0" } @@ -108,52 +108,52 @@ } }, "@angular/common": { - "version": "4.4.5", - "resolved": "https://registry.npmjs.org/@angular/common/-/common-4.4.5.tgz", - "integrity": "sha1-vVF53JIq2/TD6m37Gec8uEn/3Dc=", + "version": "4.4.6", + "resolved": "https://registry.npmjs.org/@angular/common/-/common-4.4.6.tgz", + "integrity": "sha1-S4FCByTggooOg5uVpV6xp+g5GPI=", "requires": { "tslib": "1.8.0" } }, "@angular/compiler": { - "version": "4.4.5", - "resolved": "https://registry.npmjs.org/@angular/compiler/-/compiler-4.4.5.tgz", - "integrity": "sha1-hyGlkQ8rtS8J4tQEytJk817eWQI=", + "version": "4.4.6", + "resolved": "https://registry.npmjs.org/@angular/compiler/-/compiler-4.4.6.tgz", + "integrity": "sha1-LuH68lt1fh0SiXkHS+f65SmzvCA=", "requires": { "tslib": "1.8.0" } }, "@angular/compiler-cli": { - "version": "4.4.5", - "resolved": "https://registry.npmjs.org/@angular/compiler-cli/-/compiler-cli-4.4.5.tgz", - "integrity": "sha1-YfoDNqzRogjF8cXG1N9nnpmVMkg=", + "version": "4.4.6", + "resolved": "https://registry.npmjs.org/@angular/compiler-cli/-/compiler-cli-4.4.6.tgz", + "integrity": "sha1-uv09HiYOmQh+uajPdTLb1gOrubE=", "dev": true, "requires": { - "@angular/tsc-wrapped": "4.4.5", + "@angular/tsc-wrapped": "4.4.6", "minimist": "1.2.0", "reflect-metadata": "0.1.10" } }, "@angular/core": { - "version": "4.4.5", - "resolved": "https://registry.npmjs.org/@angular/core/-/core-4.4.5.tgz", - "integrity": "sha1-VKy8vaEXGfiDx4apBpdKvrEy8aA=", + "version": "4.4.6", + "resolved": "https://registry.npmjs.org/@angular/core/-/core-4.4.6.tgz", + "integrity": "sha1-EwMf0Q3P5DiHVBmzjyESCVi8I1Q=", "requires": { "tslib": "1.8.0" } }, "@angular/forms": { - "version": "4.4.5", - "resolved": "https://registry.npmjs.org/@angular/forms/-/forms-4.4.5.tgz", - "integrity": "sha1-6VUghiMqqyzh0I7xmLYiBOoTxDs=", + "version": "4.4.6", + "resolved": "https://registry.npmjs.org/@angular/forms/-/forms-4.4.6.tgz", + "integrity": "sha1-/mSs5CQ1wbgPSQNLfEHOjK8UpEo=", "requires": { "tslib": "1.8.0" } }, "@angular/http": { - "version": "4.4.5", - "resolved": "https://registry.npmjs.org/@angular/http/-/http-4.4.5.tgz", - "integrity": "sha1-LHNe2EJAH8I1ZBkmjiiNzyOW6E8=", + "version": "4.4.6", + "resolved": "https://registry.npmjs.org/@angular/http/-/http-4.4.6.tgz", + "integrity": "sha1-CvaAxnEL3AJtlA4iXP0PalwAXQw=", "requires": { "tslib": "1.8.0" } @@ -165,33 +165,33 @@ "dev": true }, "@angular/platform-browser": { - "version": "4.4.5", - "resolved": "https://registry.npmjs.org/@angular/platform-browser/-/platform-browser-4.4.5.tgz", - "integrity": "sha1-dOuRwLdYEm8m1T7lbHz0ZovZysU=", + "version": "4.4.6", + "resolved": "https://registry.npmjs.org/@angular/platform-browser/-/platform-browser-4.4.6.tgz", + "integrity": "sha1-qYOcVH4bZU+h0kqJeAyLpquNzOA=", "requires": { "tslib": "1.8.0" } }, "@angular/platform-browser-dynamic": { - "version": "4.4.5", - "resolved": "https://registry.npmjs.org/@angular/platform-browser-dynamic/-/platform-browser-dynamic-4.4.5.tgz", - "integrity": "sha1-d029wdkPd12/HjGfbtQrJgYjth8=", + "version": "4.4.6", + "resolved": "https://registry.npmjs.org/@angular/platform-browser-dynamic/-/platform-browser-dynamic-4.4.6.tgz", + "integrity": "sha1-TT2aanvyzz3kBYphWuBZ7/ZB+jY=", "requires": { "tslib": "1.8.0" } }, "@angular/router": { - "version": "4.4.5", - "resolved": "https://registry.npmjs.org/@angular/router/-/router-4.4.5.tgz", - "integrity": "sha1-9zEwz0h9mjLMGYiv2llmX0Siiok=", + "version": "4.4.6", + "resolved": "https://registry.npmjs.org/@angular/router/-/router-4.4.6.tgz", + "integrity": "sha1-D2rSmuD/jSyeo3m9MgRHIXt+yGY=", "requires": { "tslib": "1.8.0" } }, "@angular/tsc-wrapped": { - "version": "4.4.5", - "resolved": "https://registry.npmjs.org/@angular/tsc-wrapped/-/tsc-wrapped-4.4.5.tgz", - "integrity": "sha1-MKDLtDpmOqddyphIlL5IE3eN3Jw=", + "version": "4.4.6", + "resolved": "https://registry.npmjs.org/@angular/tsc-wrapped/-/tsc-wrapped-4.4.6.tgz", + "integrity": "sha1-Fnh8u/UL3H5zgSOxnDJSfyROF40=", "dev": true, "requires": { "tsickle": "0.21.6" @@ -933,6 +933,11 @@ "hoek": "4.2.0" } }, + "bootstrap": { + "version": "4.0.0-beta.2", + "resolved": "https://registry.npmjs.org/bootstrap/-/bootstrap-4.0.0-beta.2.tgz", + "integrity": "sha512-DzGtdTlKbrMoGMpz0LigKSqJ+MgtFKxA791PU/q062OlRG0HybNZcTLH7rpDAmLS66Y3esN9yzKHLLbqa5UR3w==" + }, "brace-expansion": { "version": "1.1.8", "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.8.tgz", @@ -4109,6 +4114,11 @@ "integrity": "sha1-43zwsX8ZnM4jvqcbIDk5Uka07E4=", "dev": true }, + "jquery": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/jquery/-/jquery-3.2.1.tgz", + "integrity": "sha1-XE2d5lKvbNCncBVKYxu6ErAVx4c=" + }, "js-base64": { "version": "2.3.2", "resolved": "https://registry.npmjs.org/js-base64/-/js-base64-2.3.2.tgz", @@ -4321,6 +4331,15 @@ "source-map-support": "0.4.18" } }, + "karma-spec-reporter": { + "version": "0.0.31", + "resolved": "https://registry.npmjs.org/karma-spec-reporter/-/karma-spec-reporter-0.0.31.tgz", + "integrity": "sha1-SDDccUihVcfXoYbmMjOaDYD63sM=", + "dev": true, + "requires": { + "colors": "1.1.2" + } + }, "kind-of": { "version": "3.2.2", "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", @@ -5515,6 +5534,11 @@ "pinkie": "2.0.4" } }, + "popper.js": { + "version": "1.12.8", + "resolved": "https://registry.npmjs.org/popper.js/-/popper.js-1.12.8.tgz", + "integrity": "sha1-tZtXRzYh/q8Dcm4avnwXxLI8hWQ=" + }, "portfinder": { "version": "1.0.13", "resolved": "https://registry.npmjs.org/portfinder/-/portfinder-1.0.13.tgz", diff --git a/the8eam/package.json b/the8eam/package.json index ffff306..79b888d 100644 --- a/the8eam/package.json +++ b/the8eam/package.json @@ -12,19 +12,22 @@ }, "private": true, "dependencies": { - "@angular/animations": "^4.2.4", - "@angular/common": "^4.2.4", - "@angular/compiler": "^4.2.4", - "@angular/core": "^4.2.4", - "@angular/forms": "^4.2.4", - "@angular/http": "^4.2.4", - "@angular/platform-browser": "^4.2.4", - "@angular/platform-browser-dynamic": "^4.2.4", - "@angular/router": "^4.2.4", + "@angular/animations": "^4.4.6", + "@angular/common": "^4.4.6", + "@angular/compiler": "^4.4.6", + "@angular/core": "^4.4.6", + "@angular/forms": "^4.4.6", + "@angular/http": "^4.4.6", + "@angular/platform-browser": "^4.4.6", + "@angular/platform-browser-dynamic": "^4.4.6", + "@angular/router": "^4.4.6", "angularfire2": "^5.0.0-rc.3", + "bootstrap": "^4.0.0-beta.2", "core-js": "^2.4.1", "firebase": "^4.6.0", + "jquery": "^3.2.1", "ngx-bootstrap": "^1.9.3", + "popper.js": "^1.12.8", "request": "^2.83.0", "rss-to-json": "^1.0.2", "rxjs": "^5.4.2", @@ -33,7 +36,7 @@ }, "devDependencies": { "@angular/cli": "1.4.7", - "@angular/compiler-cli": "^4.2.4", + "@angular/compiler-cli": "^4.4.6", "@angular/language-service": "^4.2.4", "@types/jasmine": "~2.5.53", "@types/jasminewd2": "~2.0.2", @@ -41,15 +44,16 @@ "codelyzer": "~3.2.0", "jasmine-core": "~2.6.2", "jasmine-spec-reporter": "~4.1.0", - "karma": "~1.7.0", + "karma": "^1.7.1", "karma-chrome-launcher": "~2.1.1", - "karma-cli": "~1.0.1", + "karma-cli": "^1.0.1", "karma-coverage-istanbul-reporter": "^1.2.1", "karma-jasmine": "~1.1.0", "karma-jasmine-html-reporter": "^0.2.2", + "karma-spec-reporter": "0.0.31", "protractor": "~5.1.2", "ts-node": "~3.2.0", "tslint": "~5.7.0", - "typescript": "~2.3.3" + "typescript": "^2.3.4" } } diff --git a/the8eam/src/app/app.component.css b/the8eam/src/app/app.component.css index 079e36b..3c17f89 100644 --- a/the8eam/src/app/app.component.css +++ b/the8eam/src/app/app.component.css @@ -1,37 +1,33 @@ - -.button { - display: table-cell; - background: darkgray; - border: solid; - text-align: center; - width: 100%; - display: inline; - font-size: large; - font-family: "American Typewriter"; +#app-body{ + max-width: 100vw; } -.no-gutter{ - margin: 0 0; - padding: 0 0; +#view-toggle{ + background-color: #002642; } -.button:active{ - border: 2px solid white; +#list-view-toggle.active, #cal-view-toggle.active{ + border-top: solid 2px #171818; + border-right: solid 2px #171818; + border-bottom-color: #EDEDF4; + background-color: #EDEDF4; } - -.button:target{ - border: 2px solid red; +#cal-view-toggle.active{ + border-top: solid 2px #171818; + border-left: solid 2px #171818; + background-color: #EDEDF4; } - -.button:hover{ - background-color: lightgray; +#list-view-toggle.passive, #cal-view-toggle.passive{ + background-color: #A20021; + border-bottom: solid 2px #171818; + color: #fff; +} +#list-view-toggle.passive:hover, #cal-view-toggle.passive:hover{ + background-color: #A20021; + border-color: transparent; + border-bottom: solid 2px #171818; + color: #fff; } -.container{ - background: transparent; - width: 100%; - height: 40px; - line-height: 40px; - display: table; -} + diff --git a/the8eam/src/app/app.component.html b/the8eam/src/app/app.component.html index a5f033a..bd697d6 100644 --- a/the8eam/src/app/app.component.html +++ b/the8eam/src/app/app.component.html @@ -1,22 +1,22 @@ - + +
+
+ +
-
-
-
- -
-
- -
+
+
-
-
- -
-
- +
+ +
- - diff --git a/the8eam/src/app/app.component.spec.ts b/the8eam/src/app/app.component.spec.ts index bcbdf36..23f1aaa 100644 --- a/the8eam/src/app/app.component.spec.ts +++ b/the8eam/src/app/app.component.spec.ts @@ -1,27 +1,89 @@ -import { TestBed, async } from '@angular/core/testing'; +import {TestBed , async , ComponentFixture} from '@angular/core/testing'; import { AppComponent } from './app.component'; +import {Component , DebugElement} from "@angular/core"; +import {By} from "@angular/platform-browser"; + describe('AppComponent', () => { + let component: AppComponent; + let fixture: ComponentFixture; + let de: DebugElement; + let el: HTMLElement; + + // async beforeEach() + // Sets up the "TestBed", beforeEach() is executed for each test beforeEach(async(() => { TestBed.configureTestingModule({ declarations: [ - AppComponent + AppComponent, + MockHeaderComponent, + MockEventListDataComponent, + MockEventCalendarDataComponent ], }).compileComponents(); })); - it('should create the app', async(() => { - const fixture = TestBed.createComponent(AppComponent); - const app = fixture.debugElement.componentInstance; - expect(app).toBeTruthy(); - })); - it(`should have as title 'app'`, async(() => { - const fixture = TestBed.createComponent(AppComponent); - const app = fixture.debugElement.componentInstance; - expect(app.title).toEqual('app'); - })); - it('should render title in a h1 tag', async(() => { - const fixture = TestBed.createComponent(AppComponent); + // synchronous beforeEach() + beforeEach(() => { + // The fixture is what "wraps" around this component as a sort of isolated test environment + fixture = TestBed.createComponent(AppComponent); + + component = fixture.componentInstance; // AppComponent Test Instance + + // query for the title

by CSS element selector + de = fixture.debugElement.query(By.css('#app-body')); + console.log(de); + el = de.nativeElement; + }); + //First Test + it('should create the app',() => { + expect(component).toBeTruthy(); + }); + //Second Test + it('should render the active view\'s bootstrap container as a "root" div', () => { + let debEl : DebugElement; + + // Tells angular to perform change detection. + // In production, this happens every time a componenet is created, the user enters a keystroke, or an asynchronous activity completes. fixture.detectChanges(); - const compiled = fixture.debugElement.nativeElement; - expect(compiled.querySelector('h1').textContent).toContain('Welcome to app!'); - })); + + if (component.view) debEl = fixture.debugElement.query(By.css('#list-view')); + else debEl = fixture.debugElement.query(By.css('#calendar-view')); + + expect(debEl).toBeTruthy(); + }); + it('should create the event-list-data-component container by default and when "List" tab is clicked', () => { + fixture.detectChanges(); + de = fixture.debugElement.query(By.css('app-event-list-data')); + expect(de).toBeTruthy(); // is created by default + + component.toggleView(); + fixture.detectChanges(); + de = fixture.debugElement.query(By.css('app-event-list-data')); + expect(de).toBeTruthy(); // is created when "List" tab is created + }); + it('should create the event-calendar-data-component container when "Calendar" tab is clicked', () => { + component.toggleView2(); + fixture.detectChanges(); + de = fixture.debugElement.query(By.css('app-event-calendar-data')); + expect(de).toBeTruthy(); // is created when "List" tab is created + }); + //and so on... }); +// mock components to simulate injected elements of app-component's template +@Component({ + selector: 'app-header', + template: '' +}) +class MockHeaderComponent { +} +@Component({ + selector: 'app-event-list-data', + template: '' +}) +class MockEventListDataComponent { +} +@Component({ + selector: 'app-event-calendar-data', + template: '' +}) +class MockEventCalendarDataComponent{ +} diff --git a/the8eam/src/app/app.module.ts b/the8eam/src/app/app.module.ts index 84ac472..280e117 100644 --- a/the8eam/src/app/app.module.ts +++ b/the8eam/src/app/app.module.ts @@ -6,7 +6,6 @@ import { AppComponent } from './app.component'; import { AngularFireModule } from 'angularfire2'; import { AngularFirestoreModule } from 'angularfire2/firestore'; import { RssComponent } from './rss/rss.component'; -import { DataAccessLayerComponent } from './data-access-layer/data-access-layer.component'; import { EventListDataComponent } from './event-list-data/event-list-data.component'; import { EventCalendarDataComponent } from './event-calendar-data/event-calendar-data.component'; import { HeaderComponent } from './header/header.component'; @@ -14,6 +13,16 @@ import { OptionsMenuComponent } from './options-menu/options-menu.component'; import { SearchComponent } from './search/search.component'; import { ReportComponent } from './report/report.component'; import { EventComponent } from './event/event.component'; +import { ReportPipe } from './report.pipe'; +import { MusicGenrePipe } from './music-genre.pipe'; +import { DanceGenrePipe } from './dance-genre.pipe'; +import { ArtGenrePipe } from './art-genre.pipe'; +import { FoodGenrePipe } from './food-genre.pipe'; +import { SpokenWordGenrePipe } from './spoken-word-genre.pipe'; +import { CostPipe } from './cost.pipe'; +import { FilterVarsService } from "./filter-vars.service"; +import { DataAccessLayerService } from "./data-access-layer.service"; +import { DatePipe } from './date.pipe'; // Must export the config export const firebaseConfig = { @@ -29,14 +38,21 @@ export const firebaseConfig = { declarations: [ AppComponent, RssComponent, - DataAccessLayerComponent, EventListDataComponent, EventCalendarDataComponent, HeaderComponent, OptionsMenuComponent, SearchComponent, ReportComponent, - EventComponent + EventComponent, + ReportPipe, + MusicGenrePipe, + DanceGenrePipe, + ArtGenrePipe, + FoodGenrePipe, + SpokenWordGenrePipe, + CostPipe, + DatePipe ], imports: [ BrowserModule, @@ -44,7 +60,7 @@ export const firebaseConfig = { AngularFirestoreModule, FormsModule ], - providers: [], + providers: [FilterVarsService, DataAccessLayerService], bootstrap: [AppComponent] }) export class AppModule { } diff --git a/the8eam/src/app/art-genre.pipe.spec.ts b/the8eam/src/app/art-genre.pipe.spec.ts new file mode 100644 index 0000000..68eb1aa --- /dev/null +++ b/the8eam/src/app/art-genre.pipe.spec.ts @@ -0,0 +1,8 @@ +import { ArtGenrePipe } from './art-genre.pipe'; + +describe('ArtGenrePipe', () => { + it('should create an instance', () => { + const pipe = new ArtGenrePipe(); + expect(pipe).toBeTruthy(); + }); +}); diff --git a/the8eam/src/app/art-genre.pipe.ts b/the8eam/src/app/art-genre.pipe.ts new file mode 100644 index 0000000..9598ee4 --- /dev/null +++ b/the8eam/src/app/art-genre.pipe.ts @@ -0,0 +1,16 @@ +import { Pipe, PipeTransform } from '@angular/core'; + +@Pipe({ + name: 'artGenre' +}) +export class ArtGenrePipe implements PipeTransform { + + transform(event: any, bool: boolean): any { + if(event == null || bool == false) return event; + return event.filter(function(event){ + //search the the genres string for the genre, if indexof() doesn't return -1, the genre exists + return event.genre.indexOf("art") >= 0; + }); + } + +} diff --git a/the8eam/src/app/cost.pipe.spec.ts b/the8eam/src/app/cost.pipe.spec.ts new file mode 100644 index 0000000..238a6d7 --- /dev/null +++ b/the8eam/src/app/cost.pipe.spec.ts @@ -0,0 +1,8 @@ +import { CostPipe } from './cost.pipe'; + +describe('CostPipe', () => { + it('create an instance', () => { + const pipe = new CostPipe(); + expect(pipe).toBeTruthy(); + }); +}); diff --git a/the8eam/src/app/cost.pipe.ts b/the8eam/src/app/cost.pipe.ts new file mode 100644 index 0000000..b8ab46a --- /dev/null +++ b/the8eam/src/app/cost.pipe.ts @@ -0,0 +1,15 @@ +import { Pipe, PipeTransform } from '@angular/core'; + +@Pipe({ + name: 'cost' +}) +export class CostPipe implements PipeTransform { + + transform(event: any, cost: number): any { + if(event == null || cost == -1) return event; + return event.filter(function(event){ + return event.cost <= cost; + }); + } + +} diff --git a/the8eam/src/app/dance-genre.pipe.spec.ts b/the8eam/src/app/dance-genre.pipe.spec.ts new file mode 100644 index 0000000..8f482df --- /dev/null +++ b/the8eam/src/app/dance-genre.pipe.spec.ts @@ -0,0 +1,8 @@ +import { DanceGenrePipe } from './dance-genre.pipe'; + +describe('DanceGenrePipe', () => { + it('create an instance', () => { + const pipe = new DanceGenrePipe(); + expect(pipe).toBeTruthy(); + }); +}); diff --git a/the8eam/src/app/dance-genre.pipe.ts b/the8eam/src/app/dance-genre.pipe.ts new file mode 100644 index 0000000..eb04034 --- /dev/null +++ b/the8eam/src/app/dance-genre.pipe.ts @@ -0,0 +1,16 @@ +import { Pipe, PipeTransform } from '@angular/core'; + +@Pipe({ + name: 'danceGenre' +}) +export class DanceGenrePipe implements PipeTransform { + + transform(event: any, bool: boolean): any { + if(event == null || bool == false) return event; + return event.filter(function(event){ + //search the the genres string for the genre, if indexof() doesn't return -1, the genre exists + return event.genre.indexOf("dance") >= 0; + }); + } + +} diff --git a/the8eam/src/app/data-access-layer.html b/the8eam/src/app/data-access-layer.html new file mode 100644 index 0000000..4d61adf --- /dev/null +++ b/the8eam/src/app/data-access-layer.html @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/the8eam/src/app/data-access-layer.service.spec.ts b/the8eam/src/app/data-access-layer.service.spec.ts new file mode 100644 index 0000000..b259e3e --- /dev/null +++ b/the8eam/src/app/data-access-layer.service.spec.ts @@ -0,0 +1,15 @@ +import { TestBed, inject } from '@angular/core/testing'; + +import { DataAccessLayerService } from './data-access-layer.service'; + +xdescribe('DataAccessLayerService', () => { + beforeEach(() => { + TestBed.configureTestingModule({ + providers: [DataAccessLayerService] + }); + }); + + it('should be created', inject([DataAccessLayerService], (service: DataAccessLayerService) => { + expect(service).toBeTruthy(); + })); +}); diff --git a/the8eam/src/app/data-access-layer.service.ts b/the8eam/src/app/data-access-layer.service.ts new file mode 100644 index 0000000..00f880b --- /dev/null +++ b/the8eam/src/app/data-access-layer.service.ts @@ -0,0 +1,68 @@ +import { Injectable } from '@angular/core'; +import { AngularFirestore, AngularFirestoreCollection } from 'angularfire2/firestore'; +import { Observable } from 'rxjs/Observable'; +import { Event } from './event'; + +@Injectable () +export class DataAccessLayerService { + list: AngularFirestoreCollection; + listItems: Observable; + model: Event; + length: number; + testEvent: Observable; + + constructor(public db: AngularFirestore) { + this.list = db.collection('list'); + this.listItems = db.collection('list', + a => a.orderBy("date")).snapshotChanges().map(actions => { + return actions.map(a => { + const data = a.payload.doc.data() as Event; + const id = a.payload.doc.id; + return { id, ...data }; + }); + }); + this.model = {} as Event; + this.model.report = 0; + } + + getList() { + return this.listItems; + } + + addToList(event: Event) + { + this.list.add(event); + } + + removeFromList(key: string) + { + this.list.doc(key).delete(); + } + + whereTitleAndDate(title: string, date: number){ + return(this.db.collection('list', + a => a.where('title', '==', title).where('date', '==', date))) + .snapshotChanges().map(actions => { + return actions.map(a => { + const data = a.payload.doc.data() as Event; + const id = a.payload.doc.id; + return { id, ...data }; + }); + }); + } + + updateDoc(key: string, event: Event) + { + this.list.doc(key).update(event); + } + + practiceAdd(){ + this.addToList(this.model); + } + + testWhereTitleAndDate(title: string, date: number){ + this.testEvent = this.whereTitleAndDate(title, date); + this.testEvent.subscribe(data => (this.length = data.length)); + } +} + diff --git a/the8eam/src/app/data-access-layer/data-access-layer.component.css b/the8eam/src/app/data-access-layer/data-access-layer.component.css deleted file mode 100644 index e69de29..0000000 diff --git a/the8eam/src/app/data-access-layer/data-access-layer.component.html b/the8eam/src/app/data-access-layer/data-access-layer.component.html deleted file mode 100644 index 18e111c..0000000 --- a/the8eam/src/app/data-access-layer/data-access-layer.component.html +++ /dev/null @@ -1,50 +0,0 @@ -

- Add to Collection! -

- -
-
- - -
-
- - -
-
- - -
-
- - -
-
- - -
-
- - -
-
- - -
-
- - -
- - -
diff --git a/the8eam/src/app/data-access-layer/data-access-layer.component.spec.ts b/the8eam/src/app/data-access-layer/data-access-layer.component.spec.ts deleted file mode 100644 index e6c500d..0000000 --- a/the8eam/src/app/data-access-layer/data-access-layer.component.spec.ts +++ /dev/null @@ -1,25 +0,0 @@ -import { async, ComponentFixture, TestBed } from '@angular/core/testing'; - -import { DataAccessLayerComponent } from './data-access-layer.component'; - -describe('DataAccessLayerComponent', () => { - let component: DataAccessLayerComponent; - let fixture: ComponentFixture; - - beforeEach(async(() => { - TestBed.configureTestingModule({ - declarations: [ DataAccessLayerComponent ] - }) - .compileComponents(); - })); - - beforeEach(() => { - fixture = TestBed.createComponent(DataAccessLayerComponent); - component = fixture.componentInstance; - fixture.detectChanges(); - }); - - it('should create', () => { - expect(component).toBeTruthy(); - }); -}); diff --git a/the8eam/src/app/data-access-layer/data-access-layer.component.ts b/the8eam/src/app/data-access-layer/data-access-layer.component.ts deleted file mode 100644 index 1f2895d..0000000 --- a/the8eam/src/app/data-access-layer/data-access-layer.component.ts +++ /dev/null @@ -1,54 +0,0 @@ - -import { Component, Injectable } from '@angular/core'; -import { AngularFirestore, AngularFirestoreCollection } from 'angularfire2/firestore'; -import { Observable } from 'rxjs/Observable'; -import { Event } from './event'; - -@Component ( { - selector: 'app-data-access-layer' , - templateUrl: './data-access-layer.component.html' , - styleUrls: [ './data-access-layer.component.css' ] -} ) - -@Injectable () -export class DataAccessLayerComponent { - list: AngularFirestoreCollection; - listItems: Observable; - model: Event; - - constructor(db: AngularFirestore) { - this.list = db.collection('list'); - this.listItems = this.list.snapshotChanges().map(actions => { - return actions.map(a => { - const data = a.payload.doc.data() as Event; - const id = a.payload.doc.id; - return { id, ...data }; - }); - }); - this.model = {} as Event; - this.model.report = 0; - } - - getList() { - return this.listItems; - } - - addToList(event: Event) - { - this.list.add(event); - } - - removeFromList(key: string) - { - this.list.doc(key).delete(); - } - - updateDoc(key: string, event: Event) - { - this.list.doc(key).update(event); - } - - practiceAdd(){ - this.addToList(this.model); - } -} diff --git a/the8eam/src/app/date.pipe.spec.ts b/the8eam/src/app/date.pipe.spec.ts new file mode 100644 index 0000000..4662652 --- /dev/null +++ b/the8eam/src/app/date.pipe.spec.ts @@ -0,0 +1,211 @@ +import { DatePipe } from './date.pipe'; +import {Event} from "./event"; + +describe('DatePipe', () => { + let pipe = new DatePipe(); + let testEvent1 = new Event(); + let testEvent2 = new Event(); + let inputList: Event[] = []; + let outputList: Event[] = []; + let testDate: Date; + + it('create an instance', () => { + expect(pipe).toBeTruthy(); + }); + + + + it ('Filters to only show current day filtering for today', () => { + testEvent1.date = 20170101; + testEvent2.date = 20170102; + testDate = new Date("2017-01-02"); + inputList.push(testEvent2); + inputList.push(testEvent1); + outputList.push(testEvent1); + expect(pipe.transform(inputList, 0, testDate)[0].date).toBe(outputList[0].date); + }); + + + it ('Filters to show one week when filtering by one week', () => { + inputList = []; + outputList = []; + testEvent1.date = 20170115; + testEvent2.date = 20170125; + testDate = new Date("2017-01-16"); + inputList.push(testEvent2); + inputList.push(testEvent1); + outputList.push(testEvent1); + expect(pipe.transform(inputList, 7, testDate)[0].date).toBe(outputList[0].date); + }); + + + it ('Tests filtering by one week end of Feb edge case', () => { + inputList = []; + outputList = []; + testEvent1.date = 20170225; + testEvent2.date = 20170305; + testDate = new Date("2017-02-26"); + inputList.push(testEvent2); + inputList.push(testEvent1); + outputList.push(testEvent1); + expect(pipe.transform(inputList, 7, testDate)[0].date).toBe(outputList[0].date); + }); + + + it ('Tests filtering by one week end of 30 day month edge case September', () => { + inputList = []; + outputList = []; + testEvent1.date = 20170928; + testEvent2.date = 20171008; + testDate = new Date("2017-09-29"); + inputList.push(testEvent2); + inputList.push(testEvent1); + outputList.push(testEvent1); + expect(pipe.transform(inputList, 7, testDate)[0].date).toBe(outputList[0].date); + }); + + it ('Tests filtering by one week end of 30 day month edge case April', () => { + inputList = []; + outputList = []; + testEvent1.date = 20170428; + testEvent2.date = 20170508; + testDate = new Date("2017-04-29"); + inputList.push(testEvent2); + inputList.push(testEvent1); + outputList.push(testEvent1); + expect(pipe.transform(inputList, 7, testDate)[0].date).toBe(outputList[0].date); + }); + + it ('Tests filtering by one week end of 30 day month edge case June', () => { + inputList = []; + outputList = []; + testEvent1.date = 20170628; + testEvent2.date = 20170708; + testDate = new Date("2017-06-29"); + inputList.push(testEvent2); + inputList.push(testEvent1); + outputList.push(testEvent1); + expect(pipe.transform(inputList, 7, testDate)[0].date).toBe(outputList[0].date); + }); + + it ('Tests filtering by one week end of 30 day month edge case November', () => { + inputList = []; + outputList = []; + testEvent1.date = 20171128; + testEvent2.date = 20171208; + testDate = new Date("2017-11-29"); + inputList.push(testEvent2); + inputList.push(testEvent1); + outputList.push(testEvent1); + expect(pipe.transform(inputList, 7, testDate)[0].date).toBe(outputList[0].date); + }); + + it ('Tests filtering by any day that has month > 10 and day > 10', () => { + inputList = []; + outputList = []; + testEvent1.date = 20171124; + testEvent2.date = 20171125; + testDate = new Date("2017-11-25"); + inputList.push(testEvent2); + inputList.push(testEvent1); + outputList.push(testEvent1); + expect(pipe.transform(inputList, 0, testDate)[0].date).toBe(outputList[0].date); + }); + + it ('Tests filtering by one week end of 31 day month edge case', () => { + inputList = []; + outputList = []; + testEvent1.date = 20170528; + testEvent2.date = 20170610; + testDate = new Date("2017-05-29"); + inputList.push(testEvent2); + inputList.push(testEvent1); + outputList.push(testEvent1); + expect(pipe.transform(inputList, 7, testDate)[0].date).toBe(outputList[0].date); + }); + + it ('Tests filtering by one week end of 31 day month edge case December to next year', () => { + inputList = []; + outputList = []; + testEvent1.date = 20171228; + testEvent2.date = 20180110; + testDate = new Date("2017-12-29"); + inputList.push(testEvent2); + inputList.push(testEvent1); + outputList.push(testEvent1); + expect(pipe.transform(inputList, 7, testDate)[0].date).toBe(outputList[0].date); + }); + + it ('If there is no filter, return the same list', () => { + inputList = []; + outputList = []; + testEvent1.date = 20171228; + testEvent2.date = 20180110; + testDate = new Date("2017-12-29"); + inputList.push(testEvent2); + inputList.push(testEvent1); + outputList.push(testEvent2); + outputList.push(testEvent1); + expect(pipe.transform(inputList, -1, testDate)[0].date).toBe(outputList[0].date); + }); + + it ('Tests filtering by one month normal case', () => { + inputList = []; + outputList = []; + testEvent1.date = 20171028; + testEvent2.date = 20171130; + testDate = new Date("2017-10-29"); + inputList.push(testEvent2); + inputList.push(testEvent1); + outputList.push(testEvent1); + expect(pipe.transform(inputList, 7, testDate)[0].date).toBe(outputList[0].date); + }); + + it ('Tests filtering by one month not normal case', () => { + inputList = []; + outputList = []; + testEvent1.date = 20171228; + testEvent2.date = 20180130; + testDate = new Date("2017-12-29"); + inputList.push(testEvent2); + inputList.push(testEvent1); + outputList.push(testEvent1); + expect(pipe.transform(inputList, 100, testDate)[0].date).toBe(outputList[0].date); + }); + + it ('Tests filtering by 3 month not normal case jan', () => { + inputList = []; + outputList = []; + testEvent1.date = 20171228; + testEvent2.date = 20180330; + testDate = new Date("2017-12-29"); + inputList.push(testEvent2); + inputList.push(testEvent1); + outputList.push(testEvent1); + expect(pipe.transform(inputList, 300, testDate)[0].date).toBe(outputList[0].date); + }); + + it ('Tests filtering by 3 month not normal case feb', () => { + inputList = []; + outputList = []; + testEvent1.date = 20171128; + testEvent2.date = 20180230; + testDate = new Date("2017-11-29"); + inputList.push(testEvent2); + inputList.push(testEvent1); + outputList.push(testEvent1); + expect(pipe.transform(inputList, 300, testDate)[0].date).toBe(outputList[0].date); + }); + + it ('Tests filtering by 3 month not normal case mar', () => { + inputList = []; + outputList = []; + testEvent1.date = 20171028; + testEvent2.date = 20180130; + testDate = new Date("2017-10-29"); + inputList.push(testEvent2); + inputList.push(testEvent1); + outputList.push(testEvent1); + expect(pipe.transform(inputList, 300, testDate)[0].date).toBe(outputList[0].date); + }); +}); diff --git a/the8eam/src/app/date.pipe.ts b/the8eam/src/app/date.pipe.ts new file mode 100644 index 0000000..2400f60 --- /dev/null +++ b/the8eam/src/app/date.pipe.ts @@ -0,0 +1,93 @@ +import { Pipe, PipeTransform } from '@angular/core'; + +@Pipe({ + name: 'date' +}) +export class DatePipe implements PipeTransform { + + transform(events: any, date: number, curDate: Date): any { + if(events == null || date == -1) return events; + return events.filter(function(event){ + var m = "" + curDate.getMonth(); + var d = "" + curDate.getDate(); + var y = "" + curDate.getFullYear(); + var tempDay; + var tempMonth; + var tempYear; + tempMonth = +m + 1; + tempDay = +d; + if (tempMonth < 10){ + m = "0" + tempMonth.toString(); + } + else { + m = tempMonth.toString(); + } + if (tempDay < 10){ + d = "0" + tempDay.toString(); + } + else { + d = tempDay.toString(); + } + var cur = y + m + d; + var curNum = +cur + date; + if (((+d > 21 && +m == 2) || (+d > 23 && (+m == 9 || +m == 4 || +m == 11 || +m == 6)) || (+d > 24)) + && date == 7) { + if (+m == 12){ + tempYear = +y + 1; + y = tempYear.toString(); + tempDay = 31 - +d; + } + else if (+m == 2){ + tempDay = 28 - +d; + } + else if (+m == 9 || +m == 4 || +m == 11 || +m == 6){ + tempDay = 30 - +d; + } + else { + tempDay = 31 - +d; + } + tempDay = date - tempDay; + tempMonth = +m + 1; + if (tempMonth == 13) + { + m = "01"; + } + else if (tempMonth < 10){ + m = "0" + tempMonth.toString(); + } + else { + m = tempMonth.toString(); + } + if (tempDay < 10){ + d = "0" + tempDay.toString(); + } + cur = y + m + d; + curNum = +cur; + } + if (date == 100 && +m == 12){ + tempYear = +y + 1; + y = tempYear.toString(); + m = "01"; + cur = y + m + d; + curNum = +cur; + } + if (date == 300 && +m > 9){ + tempYear = +y + 1; + y = tempYear.toString(); + if (+m == 12) { + m = "03"; + } + if (+m == 11) { + m = "02"; + } + if (+m == 10) { + m = "01"; + } + cur = y + m + d; + curNum = +cur; + } + console.log("Edited date: " + curNum + ", events.date: " + event.date); + return event.date <= curNum; + }); + } +} diff --git a/the8eam/src/app/event-calendar-data/event-calendar-data.component.spec.ts b/the8eam/src/app/event-calendar-data/event-calendar-data.component.spec.ts index 9137239..848a2a9 100644 --- a/the8eam/src/app/event-calendar-data/event-calendar-data.component.spec.ts +++ b/the8eam/src/app/event-calendar-data/event-calendar-data.component.spec.ts @@ -19,7 +19,7 @@ describe('EventCalendarDataComponent', () => { fixture.detectChanges(); }); - it('should create', () => { + it('should create an instance', () => { expect(component).toBeTruthy(); }); }); diff --git a/the8eam/src/app/event-list-data/event-list-data.component.html b/the8eam/src/app/event-list-data/event-list-data.component.html index 8e581f1..777b51c 100644 --- a/the8eam/src/app/event-list-data/event-list-data.component.html +++ b/the8eam/src/app/event-list-data/event-list-data.component.html @@ -1,4 +1,5 @@ - -
+ -
+ diff --git a/the8eam/src/app/event-list-data/event-list-data.component.spec.ts b/the8eam/src/app/event-list-data/event-list-data.component.spec.ts index ddc4ea0..2fd9f31 100644 --- a/the8eam/src/app/event-list-data/event-list-data.component.spec.ts +++ b/the8eam/src/app/event-list-data/event-list-data.component.spec.ts @@ -1,14 +1,67 @@ import { async, ComponentFixture, TestBed } from '@angular/core/testing'; - import { EventListDataComponent } from './event-list-data.component'; +import {CostPipe} from "../cost.pipe"; +import {ReportPipe} from "../report.pipe"; +import {ArtGenrePipe} from "../art-genre.pipe"; +import {DanceGenrePipe} from "../dance-genre.pipe"; +import {FoodGenrePipe} from "../food-genre.pipe"; +import {MusicGenrePipe} from "../music-genre.pipe"; +import {SpokenWordGenrePipe} from "../spoken-word-genre.pipe"; +import {Component , Input} from "@angular/core"; +import {Event} from "../event"; +import {DataAccessLayerService} from "../data-access-layer.service"; +import {Observable} from "rxjs/Observable"; +import {FilterVarsService} from "../filter-vars.service"; + +@Component({ + selector: 'app-event', + template: '' + }) + class MockEventComponent { + @Input() + eventItem: Event; + } +class MockDAL { + event1 : Event; + event2 : Event; + + getList() { + + return Observable.create( observer => { + observer.next([this.event1, this.event2]); + observer.complete(); + + }); + } +} -describe('EventListDataComponent', () => { +xdescribe('EventListDataComponent', () => { let component: EventListDataComponent; let fixture: ComponentFixture; + let mockDAL = new MockDAL(); + + beforeEach(async(() => { + var event1 = new Event(); + var event2 = new Event(); + TestBed.configureTestingModule({ - declarations: [ EventListDataComponent ] + declarations: [ + EventListDataComponent, + CostPipe, + ReportPipe, + ArtGenrePipe, + DanceGenrePipe, + FoodGenrePipe, + MusicGenrePipe, + SpokenWordGenrePipe, + MockEventComponent + ], + providers: [ + FilterVarsService, + DataAccessLayerService + ] }) .compileComponents(); })); @@ -16,10 +69,12 @@ describe('EventListDataComponent', () => { beforeEach(() => { fixture = TestBed.createComponent(EventListDataComponent); component = fixture.componentInstance; + fixture.detectChanges(); }); - it('should create', () => { + it('should create an instance', () => { expect(component).toBeTruthy(); }); }); + diff --git a/the8eam/src/app/event-list-data/event-list-data.component.ts b/the8eam/src/app/event-list-data/event-list-data.component.ts index 0a5d2d2..18a958d 100644 --- a/the8eam/src/app/event-list-data/event-list-data.component.ts +++ b/the8eam/src/app/event-list-data/event-list-data.component.ts @@ -1,16 +1,19 @@ import { Component, OnInit } from '@angular/core'; -import { DataAccessLayerComponent } from '../data-access-layer/data-access-layer.component'; +import { FilterVarsService } from '../filter-vars.service' +import { DataAccessLayerService } from '../data-access-layer.service'; import {Observable} from 'rxjs/Observable'; @Component({ selector: 'app-event-list-data', - providers: [DataAccessLayerComponent], + providers: [DataAccessLayerService], templateUrl: './event-list-data.component.html', styleUrls: ['./event-list-data.component.css'] }) export class EventListDataComponent implements OnInit { listItems: Observable; - constructor(private dal: DataAccessLayerComponent) { + report: Event; + + constructor(public dal: DataAccessLayerService, public filter: FilterVarsService) { this.listItems = dal.getList(); } diff --git a/the8eam/src/app/data-access-layer/event.ts b/the8eam/src/app/event.ts similarity index 93% rename from the8eam/src/app/data-access-layer/event.ts rename to the8eam/src/app/event.ts index e92501c..4d996fe 100644 --- a/the8eam/src/app/data-access-layer/event.ts +++ b/the8eam/src/app/event.ts @@ -8,4 +8,5 @@ export class Event { location: string; report: number; time: number; + id: string; } diff --git a/the8eam/src/app/event/event.component.css b/the8eam/src/app/event/event.component.css index 7aa9602..cab27e8 100644 --- a/the8eam/src/app/event/event.component.css +++ b/the8eam/src/app/event/event.component.css @@ -1,16 +1,15 @@ -div.eventItem { +.eventItem { border: solid 3px black; + background-color: #A20021; } .eventDescription { text-align : left; + color: white; } p.eventDescription { } -div.genre-music { - background-image: url('../../assets/note.png'); - width: 50px; - height: 50px; - -webkit-background-size: 100%; - background-size: 100%; +div.eventInfo{ + color: white; + } diff --git a/the8eam/src/app/event/event.component.html b/the8eam/src/app/event/event.component.html index 301f007..f0ea5e2 100644 --- a/the8eam/src/app/event/event.component.html +++ b/the8eam/src/app/event/event.component.html @@ -1,20 +1,20 @@ -
-
-
-
+
+
+
+

{{eventItem.title}}

+

{{eventItem.time}} + , ${{eventItem.cost}} + , Free +

-
-

{{eventItem.title}}

-

{{eventItem.date}}, {{eventItem.time}}

-
-
- +
+
-
-
+
+

{{eventItem.description}}

diff --git a/the8eam/src/app/event/event.component.spec.ts b/the8eam/src/app/event/event.component.spec.ts index ff474dd..c7ba4b3 100644 --- a/the8eam/src/app/event/event.component.spec.ts +++ b/the8eam/src/app/event/event.component.spec.ts @@ -1,6 +1,7 @@ import { async, ComponentFixture, TestBed } from '@angular/core/testing'; import { EventComponent } from './event.component'; +import {Component , Input} from "@angular/core"; describe('EventComponent', () => { let component: EventComponent; @@ -8,7 +9,10 @@ describe('EventComponent', () => { beforeEach(async(() => { TestBed.configureTestingModule({ - declarations: [ EventComponent ] + declarations: [ + EventComponent, + MockReportComponent + ] }) .compileComponents(); })); @@ -19,7 +23,16 @@ describe('EventComponent', () => { fixture.detectChanges(); }); - it('should create', () => { + it('should create an instance', () => { expect(component).toBeTruthy(); }); + }); +@Component({ + selector: 'app-report', + template: '' +}) +class MockReportComponent{ + @Input() + eventItem: Event; +} diff --git a/the8eam/src/app/event/event.component.ts b/the8eam/src/app/event/event.component.ts index 7ee9124..8d3ccdb 100644 --- a/the8eam/src/app/event/event.component.ts +++ b/the8eam/src/app/event/event.component.ts @@ -1,5 +1,5 @@ import { Component, OnInit, Input } from '@angular/core'; -import { Event } from '../data-access-layer/event'; +import { Event } from '../event'; @Component({ selector: 'app-event', @@ -14,10 +14,4 @@ export class EventComponent implements OnInit { ngOnInit() { } - /* - Triggers the report modul to open - */ - reportWindow() { - this.reporting = !this.reporting; - } } diff --git a/the8eam/src/app/filter-vars.service.spec.ts b/the8eam/src/app/filter-vars.service.spec.ts new file mode 100644 index 0000000..e0355a3 --- /dev/null +++ b/the8eam/src/app/filter-vars.service.spec.ts @@ -0,0 +1,15 @@ +import { TestBed, inject } from '@angular/core/testing'; + +import { FilterVarsService } from './filter-vars.service'; + +describe('FilterVarsService', () => { + beforeEach(() => { + TestBed.configureTestingModule({ + providers: [FilterVarsService] + }); + }); + + it('should be created', inject([FilterVarsService], (service: FilterVarsService) => { + expect(service).toBeTruthy(); + })); +}); diff --git a/the8eam/src/app/filter-vars.service.ts b/the8eam/src/app/filter-vars.service.ts new file mode 100644 index 0000000..93703cc --- /dev/null +++ b/the8eam/src/app/filter-vars.service.ts @@ -0,0 +1,60 @@ +import { Injectable } from '@angular/core'; + +@Injectable() +export class FilterVarsService { + gMusic: boolean; + gArt: boolean; + gFood: boolean; + gSW: boolean; + gDance: boolean; + cost: number; + date: number; + curDate: Date; + + constructor() { + this.gMusic = false; + this.gArt = false; + this.gFood = false; + this.gSW = false; + this.gDance = false; + this.cost = -1; + this.date = -1; + this.curDate = new Date(); + } + + setMusic(){ + this.gMusic = !this.gMusic; + } + setArt(){ + this.gArt = !this.gArt; + } + setFood(){ + this.gFood = !this.gFood; + } + setSW(){ + this.gSW = !this.gSW; + } + setDance(){ + this.gDance = !this.gDance; + } + + setCost(cost: number){ + if (this.cost == cost){ + this.cost = -1; + } + else + this.cost = cost; + console.log(this.cost); + } + + setDate(date: number) + { + if (this.date == date){ + this.date = -1; + } + else + this.date = date; + console.log(this.date); + } + +} diff --git a/the8eam/src/app/food-genre.pipe.spec.ts b/the8eam/src/app/food-genre.pipe.spec.ts new file mode 100644 index 0000000..5e2b81d --- /dev/null +++ b/the8eam/src/app/food-genre.pipe.spec.ts @@ -0,0 +1,33 @@ +import { FoodGenrePipe } from './food-genre.pipe'; +import {Event} from "./event"; + +describe('FoodGenrePipe', () => { + let pipe = new FoodGenrePipe(); + let testEvent1 = new Event(); + let testEvent2 = new Event(); + let inputList: Event[] = []; + let outputList: Event[] = []; + + it('create an instance', () => { + expect(pipe).toBeTruthy(); + }); + + it ('Filters to only show food genre items', () => { + testEvent1.genre = "food"; + testEvent2.genre = "dance"; + inputList.push(testEvent2); + inputList.push(testEvent1); + outputList.push(testEvent1); + expect(pipe.transform(inputList, true)[0].date).toBe(outputList[0].date); + }); + + it ('False so don\'t filter', () => { + testEvent1.genre = "food"; + testEvent2.genre = "dance"; + inputList.push(testEvent2); + inputList.push(testEvent1); + outputList.push(testEvent2); + outputList.push(testEvent1); + expect(pipe.transform(inputList, false)[0].date).toBe(outputList[0].date); + }); +}); diff --git a/the8eam/src/app/food-genre.pipe.ts b/the8eam/src/app/food-genre.pipe.ts new file mode 100644 index 0000000..82d69bf --- /dev/null +++ b/the8eam/src/app/food-genre.pipe.ts @@ -0,0 +1,16 @@ +import { Pipe, PipeTransform } from '@angular/core'; + +@Pipe({ + name: 'foodGenre' +}) +export class FoodGenrePipe implements PipeTransform { + + transform(event: any, bool: boolean): any { + if(event == null || bool == false) return event; + return event.filter(function(event){ + //search the the genres string for the genre, if indexof() doesn't return -1, the genre exists + return event.genre.indexOf("food") >= 0; + }); + } + +} diff --git a/the8eam/src/app/header/header.component.css b/the8eam/src/app/header/header.component.css index 8769ef9..929325b 100644 --- a/the8eam/src/app/header/header.component.css +++ b/the8eam/src/app/header/header.component.css @@ -1,111 +1,39 @@ -div.app-header, div.view-tabs{ - font-size:2em; - font-style:bold; - display : block; - width : 100%; +#app-header{ + padding-bottom: 10px; } - -.headerBar{ - padding-bottom: 5px; - padding-top: 5px; - background-color: red; -} - - -ul.app-header { - list-style-type : none; - margin : 0; - padding : 0 0 5px 0; - -} - -ul.app-header i{ - display : inline; - -} -.dropdown{ - text-align: right; +.options-toggle{ + padding: 3px 10px; + background-color: #64A77E; + color: #EDEDF4; } -.dropdown-menu{ - text-align: right; -} - -ul.app-header li a { padding : 4px; } - -ul.view-tabs { - list-style-type : none; - margin : 0; - padding : 0 0 5px 0; -} -ul.view-tabs li { - display : inline; - border : 2px solid black; -} -ul.view-tabs li a{ padding : 4px; } - -/* Mobile View */ -[class*="col-"]{ - width:100%; +.options-toggle:focus{ + box-shadow: none; } - -@media only screen and (min-width:786px){ - +.options-toggle:hover, .options-toggle:active, .showFilters{ + background-color: #7BBD94; + box-shadow: none; } -.search-form{ - padding-top:10px; +.nav-options>div, .nav-options>button{ + display: inline-block; } -.search-form .form-group { - float: right; - transition: all 0.35s, border-radius 0s; - width: 32px; - height: 32px; - background-color: #2d2e30; - box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset; - border-radius: 25px; +/* Extra small devices <576 */ +.brand-icon{ display: inline-block; - + color: #EDEDF4; + font-size: 1.3em; + margin-left: 5px; } -.search-form .form-group input.form-control { - border: 0 none; - background: transparent; - box-shadow: none; - display:inline-block; -} -.search-form .form-group input.form-control::-webkit-input-placeholder { - display: none; -} -.search-form .form-group input.form-control:-moz-placeholder { - /* Firefox 18- */ +.brand-text{ display: none; } -.search-form .form-group input.form-control::-moz-placeholder { - /* Firefox 19+ */ - display: none; -} -.search-form .form-group input.form-control:-ms-input-placeholder { - display: none; -} -.search-form .form-group:hover, -.search-form .form-group.hover { - width: 100%; - border-radius: 4px 25px 25px 4px; - -} +/* Small devices >=576 */ +@media (min-width: 576px) { + .brand-icon { + display: none; + } -.search-form .form-group span.form-control-feedback { - position: absolute; - top: -1px; - right: -2px; - z-index: 2; - display: inline-block; - width: 34px; - height: 34px; - line-height: 34px; - text-align: center; - color: white; - left: initial; - font-size: 14px; + .brand-text { + display: inline-block; + } } - - diff --git a/the8eam/src/app/header/header.component.html b/the8eam/src/app/header/header.component.html index 1ed01d2..746ce1f 100644 --- a/the8eam/src/app/header/header.component.html +++ b/the8eam/src/app/header/header.component.html @@ -1,37 +1,17 @@ - - + + + + +
diff --git a/the8eam/src/app/header/header.component.spec.ts b/the8eam/src/app/header/header.component.spec.ts index 2d0479d..18d01c3 100644 --- a/the8eam/src/app/header/header.component.spec.ts +++ b/the8eam/src/app/header/header.component.spec.ts @@ -1,14 +1,20 @@ import { async, ComponentFixture, TestBed } from '@angular/core/testing'; import { HeaderComponent } from './header.component'; +import {Component , DebugElement} from "@angular/core"; +import {By} from "@angular/platform-browser"; describe('HeaderComponent', () => { let component: HeaderComponent; let fixture: ComponentFixture; - + let de: DebugElement; beforeEach(async(() => { TestBed.configureTestingModule({ - declarations: [ HeaderComponent ] + declarations: [ + HeaderComponent, + MockSearchComponent, + MockOptionsMenuComponent + ] }) .compileComponents(); })); @@ -18,8 +24,37 @@ describe('HeaderComponent', () => { component = fixture.componentInstance; fixture.detectChanges(); }); - - it('should create', () => { + it('should create an instance', () => { expect(component).toBeTruthy(); }); + it('should show options-menu-component when "Filters" button is clicked', () => { + component.showFilters = false; + component.filterMenu(); // set show to true + fixture.detectChanges(); + de = fixture.debugElement.query ( By.css ( 'app-options-menu' ) ); + + expect(de.nativeElement).toBeTruthy(); + }); + it('should hide a visible options-menu-component when "Filters" button is clicked', () => { + component.showFilters = true; + component.filterMenu(); // set show to false + fixture.detectChanges(); + de = fixture.debugElement.query ( By.css ( 'app-options-menu' ) ); + + expect(de).toBeFalsy(); + }); }); +@Component({ + selector: 'app-search', + template: '' +}) +class MockSearchComponent{ + +} +@Component({ + selector: 'app-options-menu', + template: '' +}) +class MockOptionsMenuComponent{ + +} diff --git a/the8eam/src/app/header/header.component.ts b/the8eam/src/app/header/header.component.ts index 656b3a7..3526cbb 100644 --- a/the8eam/src/app/header/header.component.ts +++ b/the8eam/src/app/header/header.component.ts @@ -6,12 +6,14 @@ import { Component, OnInit } from '@angular/core'; styleUrls: ['./header.component.css'] }) export class HeaderComponent implements OnInit { - filterMenu = false; + showFilters = false; constructor() { // called first time before the ngOnInit() } - + filterMenu() { + this.showFilters = !this.showFilters; + } ngOnInit() { // called after the constructor and called after the first ngOnChanges() call (which itself is called when input/output values change) // put all logic for this component in here diff --git a/the8eam/src/app/music-genre.pipe.spec.ts b/the8eam/src/app/music-genre.pipe.spec.ts new file mode 100644 index 0000000..b73d1ea --- /dev/null +++ b/the8eam/src/app/music-genre.pipe.spec.ts @@ -0,0 +1,33 @@ +import { MusicGenrePipe } from './music-genre.pipe'; +import {Event} from "./event"; + +describe('MusicGenrePipe', () => { + const pipe = new MusicGenrePipe(); + let testEvent1 = new Event(); + let testEvent2 = new Event(); + let inputList: Event[] = []; + let outputList: Event[] = []; + + it('create an instance', () => { + expect(pipe).toBeTruthy(); + }); + + it ('Filters to only show music genre items', () => { + testEvent1.genre = "music"; + testEvent2.genre = "dance"; + inputList.push(testEvent2); + inputList.push(testEvent1); + outputList.push(testEvent1); + expect(pipe.transform(inputList, true)[0].date).toBe(outputList[0].date); + }); + + it ('False so don\'t filter', () => { + testEvent1.genre = "music"; + testEvent2.genre = "dance"; + inputList.push(testEvent2); + inputList.push(testEvent1); + outputList.push(testEvent2); + outputList.push(testEvent1); + expect(pipe.transform(inputList, false)[0].date).toBe(outputList[0].date); + }); +}); diff --git a/the8eam/src/app/music-genre.pipe.ts b/the8eam/src/app/music-genre.pipe.ts new file mode 100644 index 0000000..b4df7e4 --- /dev/null +++ b/the8eam/src/app/music-genre.pipe.ts @@ -0,0 +1,16 @@ +import { Pipe, PipeTransform } from '@angular/core'; + +@Pipe({ + name: 'musicGenre' +}) +export class MusicGenrePipe implements PipeTransform { + + transform(event: any, bool: boolean): any { + if(event == null || bool == false) return event; + return event.filter(function(event){ + //search the the genres string for the genre, if indexof() doesn't return -1, the genre exists + return event.genre.indexOf("music") >= 0; + }); + } + +} diff --git a/the8eam/src/app/options-menu/options-menu.component.css b/the8eam/src/app/options-menu/options-menu.component.css index e69de29..77338ea 100644 --- a/the8eam/src/app/options-menu/options-menu.component.css +++ b/the8eam/src/app/options-menu/options-menu.component.css @@ -0,0 +1,61 @@ +.filter-tab{ + color: #EDEDF4; +} +.filter-tab:hover{ + border-color: #EDEDF4; +} +.filter-tab.active{ + background-color: #EDEDF4; + color: #A20021; +} +#filter-tabs{ border: none; } +.filter-container{ + border: solid 2px #EDEDF4; + border-radius: 0 0 0.5em 0.5em; +} +.filter-container{ + -webkit-flex-flow: row wrap; + flex-flow:row wrap; + -webkit-align-items: center; + align-items: center; + -webkit-align-content: space-around; + align-content: space-around; +} +.filter{ + margin: 10px auto; + position: relative; +} +.filter-btn{ + width : 100px; + height : 60px; + font-size:1.1em; + font-weight: bold; + background-color: #EDEDF4; + -webkit-border-radius: 0.4em; + -moz-border-radius: 0.4em; + border-radius: 0.4em; +} +.filter-btn:hover{ + background-color: #D8D8DE; +} +.filter-btn:focus{ + box-shadow: none; + outline:none; +} +.oi-circle-check{ + position : absolute; + top:6px; + left:80px; + color: #64A77E; + display : none; +} +.filterOn>span{ + display: inherit; +} +@media (min-width: 768px){ + .filter-container{ + /* Make shit align left */ + } +} + + diff --git a/the8eam/src/app/options-menu/options-menu.component.html b/the8eam/src/app/options-menu/options-menu.component.html index e039b3b..fdfd8ff 100644 --- a/the8eam/src/app/options-menu/options-menu.component.html +++ b/the8eam/src/app/options-menu/options-menu.component.html @@ -1,3 +1,106 @@ -

- options-menu works! -

+ + +
+ + + + +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+
+
+ diff --git a/the8eam/src/app/options-menu/options-menu.component.spec.ts b/the8eam/src/app/options-menu/options-menu.component.spec.ts index ebfe60e..3e7b5f7 100644 --- a/the8eam/src/app/options-menu/options-menu.component.spec.ts +++ b/the8eam/src/app/options-menu/options-menu.component.spec.ts @@ -1,14 +1,19 @@ -import { async, ComponentFixture, TestBed } from '@angular/core/testing'; +import {async , ComponentFixture , inject , TestBed} from '@angular/core/testing'; import { OptionsMenuComponent } from './options-menu.component'; +import {FilterVarsService} from "../filter-vars.service"; +import {DebugElement} from "@angular/core"; +import {By} from "@angular/platform-browser"; describe('OptionsMenuComponent', () => { let component: OptionsMenuComponent; let fixture: ComponentFixture; + let activeTabEl : DebugElement; beforeEach(async(() => { TestBed.configureTestingModule({ - declarations: [ OptionsMenuComponent ] + declarations: [ OptionsMenuComponent ], + providers: [ FilterVarsService ] }) .compileComponents(); })); @@ -18,8 +23,29 @@ describe('OptionsMenuComponent', () => { component = fixture.componentInstance; fixture.detectChanges(); }); - - it('should create', () => { + // Test that the Options-Menu is successfully created + it('should create an instance', () => { expect(component).toBeTruthy(); }); + + it('should have a Filter-Vars Service', inject([FilterVarsService], (filterService: FilterVarsService) => { + expect(filterService).toEqual(component.filterService); + })); + it('should show default Genre tab if invalid tab number is passed to clickViewTab()', () => { + let el : HTMLElement; + component.clickViewTab(5); //Outside of valid range + activeTabEl = fixture.debugElement.query(By.css('a.filter-tab.active')); + el = activeTabEl.nativeElement; + fixture.detectChanges(); + expect(el.textContent).toBe('Genre'); + }); + it('should show corresponding tab when passed a valid tab number', () => { + let el : HTMLElement; + component.clickViewTab(2); // Date tab + fixture.detectChanges(); + activeTabEl = fixture.debugElement.query(By.css('a.filter-tab.active')); + el = activeTabEl.nativeElement; + fixture.detectChanges(); + expect(el.textContent).toBe('Date'); + }); }); diff --git a/the8eam/src/app/options-menu/options-menu.component.ts b/the8eam/src/app/options-menu/options-menu.component.ts index c232bdf..2f77fe9 100644 --- a/the8eam/src/app/options-menu/options-menu.component.ts +++ b/the8eam/src/app/options-menu/options-menu.component.ts @@ -1,4 +1,5 @@ import { Component, OnInit } from '@angular/core'; +import { FilterVarsService } from '../filter-vars.service' @Component({ selector: 'app-options-menu', @@ -7,7 +8,81 @@ import { Component, OnInit } from '@angular/core'; }) export class OptionsMenuComponent implements OnInit { - constructor() { } + filterService: FilterVarsService; + // The tab selected to view + filterTab : number; + // which filters are on + genreFilters : string; // more than one genre can be selected + dateFilter : string; + costFilter : string; + locFilter : string; // more than one location can be selected + + + + + constructor(public filter: FilterVarsService) { + this.filterService = filter; + // Genre is the default view + this.filterTab = 1; + this.genreFilters = ""; + this.dateFilter = ""; + this.costFilter = ""; + this.locFilter = ""; + } + + /* + @view the tab selected, 1-4, Genre through Location + */ + clickViewTab( view:number){ + if(view < 1 || view > 4 || view == null) this.filterTab = 1; + this.filterTab = view; + } + clickGenreFilter( filterName:string ) { + let index = this.genreFilters.indexOf ( filterName ); + // if genrefilters contains filterName, remove it (turn it off) + if (index >= 0) { + this.genreFilters = this.genreFilters.substring ( 0 , index ) + this.genreFilters.substring ( index + filterName.length , this.genreFilters.length ); + } + // else genreFilters doesn't have the filter name (it's off), we add it (turn it on) + else{ + this.genreFilters += filterName; + } + } + clickDateFilter ( filterName:string ) { + if(this.dateFilter != filterName ) + this.dateFilter = filterName; + else + this.dateFilter = ""; + } + clickCostFilter ( filterName:string ) { + if(this.costFilter != filterName ) + this.costFilter = filterName; + else + this.costFilter = "" + } + clickLocFilter( filterName:string ){ + var index = this.locFilter.indexOf(filterName); + // if locationfilters contains filterName, remove it (turn it off) + if(index >= 0) + this.locFilter = this.locFilter.substring(0, index) + this.locFilter.substring(index+filterName.length,this.locFilter.length); + // else locFilter doesn't have the filter name (it's off), we add it (turn it on) + else + this.locFilter += filterName; + } + + isFiltered( filterCtg, filterName ){ + if(filterCtg.indexOf(filterName) >= 0) + return true; + return false; + } + + + + + + + + ngOnInit() { } diff --git a/the8eam/src/app/report.pipe.spec.ts b/the8eam/src/app/report.pipe.spec.ts new file mode 100644 index 0000000..f78d6fd --- /dev/null +++ b/the8eam/src/app/report.pipe.spec.ts @@ -0,0 +1,8 @@ +import { ReportPipe } from './report.pipe'; + +describe('ReportPipe', () => { + it('create an instance', () => { + const pipe = new ReportPipe(); + expect(pipe).toBeTruthy(); + }); +}); diff --git a/the8eam/src/app/report.pipe.ts b/the8eam/src/app/report.pipe.ts new file mode 100644 index 0000000..c3ff211 --- /dev/null +++ b/the8eam/src/app/report.pipe.ts @@ -0,0 +1,16 @@ +import { Pipe, PipeTransform } from '@angular/core'; + +@Pipe({ + name: 'report' +}) +export class ReportPipe implements PipeTransform { + + transform(event: any): any { + if (event == null) return event; + + return event.filter(function(event) { + return event.report <= 5; + }); + } + +} diff --git a/the8eam/src/app/report/report.component.css b/the8eam/src/app/report/report.component.css index a68e0d5..50904ce 100644 --- a/the8eam/src/app/report/report.component.css +++ b/the8eam/src/app/report/report.component.css @@ -1,70 +1,37 @@ -/*div + div {*/ - /*margin-top: 3em;*/ +/* Extra Small Devices */ +.no-scroll-on-modal{ + height:100%; + overflow: hidden; +} +#feedback-modal { + max-width:98vw; + margin:auto; + +} +@media (min-width: 768px) { + #feedback-modal { + top: 20%; + max-width: 50vw; + } +} +/*.feedback-header{*/ + /*padding:0;*/ +/*}*/ +/*.close-feedback{*/ + /*padding: 15px 15px 0 0;*/ +/*}*/ +/*.event-feedback{*/ + /*max-height:40px; !*two lines*!*/ + /*overflow:hidden;*/ +/*}*/ +/*.event-feedback:after{*/ + /*content: "";*/ + /*text-align: right;*/ + /*position: absolute;*/ + /*bottom: 0;*/ + /*right: 0;*/ + /*width: 70%;*/ + /*height: 20px;*/ + /*background: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1) 50%);*/ /*}*/ -/*label{*/ - /*display: inline-block;*/ - /*width: 100px;*/ -/*}*/ -/*textarea{*/ - - /*width: 300px;*/ - /*height: 100px;*/ - - - /*border: 1px gray;*/ -/*}*/ - -/*div{*/ - -/*}*/ - -/*input{*/ - - /*width: 300px;*/ - /*height: 30px;*/ - /*border: none;*/ - - /*background-color: gray;*/ -/*}*/ -/*input:focus, textarea:focus{*/ - /*border-color: #000000;*/ -/*}*/ - -/*textarea{*/ - /*vertical-align: top;*/ - /*resize: vertical;*/ - /*border:none;*/ - /*background-color: gray;*/ -/*}*/ -/*.button{*/ - /*padding-left: 90px;*/ -/*}*/ -/*#submitbutton*/ -/*{*/ - /*border: none;*/ - /*color: white;*/ - /*padding: 15px 32px;*/ - /*text-align: center;*/ - /*display: inline-block;*/ - /*font-size: 18px;*/ - /*margin: 4px 2px;*/ - /*cursor: pointer;*/ - /*background-color: #ff3021;*/ - - /*position: relative;*/ - - - -/*}*/ -/*#close{*/ - /*border: none;*/ - /*background-color: darkblue;*/ - /*color: white;*/ - /*padding:10px;*/ - /*text-align: center;*/ - /*display: inline-block;*/ - /*margin: 4px 2px;*/ - /*cursor: pointer;*/ - /*position: relative;*/ -/*}*/ diff --git a/the8eam/src/app/report/report.component.html b/the8eam/src/app/report/report.component.html index 66c5fda..2aff8ce 100644 --- a/the8eam/src/app/report/report.component.html +++ b/the8eam/src/app/report/report.component.html @@ -1,30 +1,51 @@ -