diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 00000000..026b3ccb --- /dev/null +++ b/.gitattributes @@ -0,0 +1,11 @@ +* text=auto eol=lf + +*.json text +*.md text +*.py text +*.svg text +*.txt text +*.yml text +*.yaml text + +*.png binary \ No newline at end of file diff --git a/.github/workflows/scripts/icon_path_validator.py b/.github/workflows/scripts/icon_path_validator.py index a41f24dd..f98a2acf 100644 --- a/.github/workflows/scripts/icon_path_validator.py +++ b/.github/workflows/scripts/icon_path_validator.py @@ -2,6 +2,7 @@ import pathlib import string from typing import Final +from xml.etree import ElementTree class InvalidStructureException(Exception): @@ -9,6 +10,11 @@ def __init__(self, msg: str): super().__init__(msg) +class InvalidSVGException(Exception): + def __init__(self, msg: str): + super().__init__(msg) + + class IconValidator: def __init__(self): self._SOURCE_DIR: Final[str] = "src" @@ -23,6 +29,16 @@ def validate(self) -> None: for file in self._FULL_IMAGES_DIR.iterdir(): if file.name not in json_icons: raise InvalidStructureException(f"{file.name} must be used, {file} isn't used!") + if file.name.lower().endswith(".svg"): + self._validate_svg(file) + + def _validate_svg(self, file: pathlib.Path) -> None: + try: + with file.open("r", encoding="utf8") as f: + content: str = f.read() + ElementTree.fromstring(content) + except ElementTree.ParseError as e: + raise InvalidSVGException(f"Invalid SVG '{file.name}': {e}") def get_json_icons(self) -> set[str]: letters: list[str] = list(string.ascii_lowercase) diff --git a/.github/workflows/scripts/schema_validator.py b/.github/workflows/scripts/schema_validator.py new file mode 100644 index 00000000..3766b90e --- /dev/null +++ b/.github/workflows/scripts/schema_validator.py @@ -0,0 +1,38 @@ +import json +import pathlib +from typing import Final + +from jsonschema import validate, ValidationError + + +class SchemaValidationException(Exception): + def __init__(self, msg: str): + super().__init__(msg) + + +class SchemaValidator: + def __init__(self): + self._SOURCE_DIR: Final[str] = "src" + self._TECH_DIR: Final[str] = "technologies" + self._FULL_TECH_DIR: Final[pathlib.Path] = pathlib.Path(self._SOURCE_DIR).joinpath(self._TECH_DIR) + self._SCHEMA_FILE: Final[pathlib.Path] = pathlib.Path("schema.json") + + def validate(self) -> None: + if not self._SCHEMA_FILE.is_file(): + raise FileNotFoundError(f"Schema file '{self._SCHEMA_FILE}' not found!") + with self._SCHEMA_FILE.open("r", encoding="utf8") as f: + schema: dict = json.load(f) + for tech_file in sorted(self._FULL_TECH_DIR.iterdir()): + if not tech_file.name.endswith(".json"): + continue + with tech_file.open("r", encoding="utf8") as f: + technologies: dict = json.load(f) + try: + validate(instance=technologies, schema=schema) + except ValidationError as e: + path: str = " -> ".join(str(p) for p in e.absolute_path) if e.absolute_path else "root" + raise SchemaValidationException(f"{tech_file.name}: {e.message} (at {path})") + + +if __name__ == '__main__': + SchemaValidator().validate() diff --git a/.github/workflows/scripts/technology_validator.py b/.github/workflows/scripts/technology_validator.py index fdcdcc0c..27094259 100644 --- a/.github/workflows/scripts/technology_validator.py +++ b/.github/workflows/scripts/technology_validator.py @@ -74,6 +74,16 @@ def __init__(self, msg: str): super().__init__(msg) +class TechNotFoundException(Exception): + def __init__(self, msg: str): + super().__init__(msg) + + +class InvalidURLException(Exception): + def __init__(self, msg: str): + super().__init__(msg) + + class AbstractValidator: def __init__(self, required: bool = False): self._required = required @@ -185,6 +195,27 @@ def get_type(self) -> list[Type]: return [str] +class URLValidator(StringValidator): + def __init__(self, required: bool = False): + super().__init__(required) + self._url_pattern: Final[re.Pattern] = re.compile( + r"^https?://" + r"(?:[A-Za-z0-9](?:[A-Za-z0-9-]{0,61}[A-Za-z0-9])?\.)+" + r"[A-Za-z0-9-]{2,}" + r"(?::\d+)?" + r"(?:/[^\s]*)?" + r"$" + ) + + def _validate(self, tech_name: str, data: Any) -> bool: + if not super()._validate(tech_name, data): + return False + if not self._url_pattern.match(data): + self._set_custom_error(InvalidURLException(f"Tech '{tech_name}' has invalid URL: '{data}'")) + return False + return True + + class BoolValidator(AbstractValidator): def get_type(self) -> list[Type]: return [bool] @@ -200,6 +231,26 @@ def get_type(self) -> list[Type]: return [dict] +class DNSValidator(DictValidator): + def _validate(self, tech_name: str, data: Any) -> bool: + if not super()._validate(tech_name, data): + return False + for k, v in data.items(): + if not isinstance(k, str): + self._set_custom_error(InvalidKeyException(f"key in DNS for tech '{tech_name}' has an invalid type. 'str' is required, got type '{type(k).__name__}' -> '{k}'")) + return False + if not isinstance(v, list): + self._set_custom_error(InvalidKeyException(f"value in DNS for tech '{tech_name}' has an invalid type. 'list' is required, got type '{type(v).__name__}' -> '{v}'")) + return False + for record in v: + if not isinstance(record, str): + self._set_custom_error(InvalidTypeForFieldException(f"Invalid type for dns in tech '{tech_name}', selector '{v}' '{record}' key must be string!")) + return False + if not self._validate_regex(tech_name, record): + return False + return True + + class CategoryValidator(ArrayValidator): def __init__(self, categories: list[int], required: bool = False): super().__init__(required) @@ -297,6 +348,22 @@ def _validate(self, tech_name: str, data: Any) -> bool: return True +class ReferenceValidator(ArrayValidator): + def __init__(self, all_techs: set[str]): + super().__init__() + self._all_techs: Final[set[str]] = all_techs + + def _validate(self, tech_name: str, data: Any) -> bool: + if not super()._validate(tech_name, data): + return False + for ref in data: + clean_ref: str = ref.split(r"\;")[0] + if clean_ref not in self._all_techs: + self._set_custom_error(TechNotFoundException(f"Tech '{tech_name}' references '{clean_ref}' but it doesn't exist!")) + return False + return True + + class TechnologiesValidator: def __init__(self, file_name: str): self._SOURCE_DIR: Final[str] = "src" @@ -308,22 +375,23 @@ def __init__(self, file_name: str): self._IMAGES_DIR: Final[str] = "images" self._ICONS_DIR: Final[str] = "icons" self._ICONS: Final[list[str]] = [icon.name for icon in pathlib.Path(self._SOURCE_DIR).joinpath(self._IMAGES_DIR).joinpath(self._ICONS_DIR).iterdir()] + self._ALL_TECHS: Final[set[str]] = self._get_all_tech_names() self._validators: dict[str, AbstractValidator] = { # TODO confidence and version validator "cats": CategoryValidator(self._CATEGORIES, True), - "website": StringValidator(True), + "website": URLValidator(True), "description": StringValidator(), "icon": IconValidator(self._ICONS), "cpe": CPEValidator(), "saas": BoolValidator(), "oss": BoolValidator(), "pricing": PricingValidator(), - "implies": ArrayValidator(), # TODO cat validation - "requires": ArrayValidator(), # TODO ^ - "excludes": ArrayValidator(), # TODO ^ + "implies": ReferenceValidator(self._ALL_TECHS), + "requires": ReferenceValidator(self._ALL_TECHS), + "excludes": ReferenceValidator(self._ALL_TECHS), "requiresCategory": CategoryValidator(self._CATEGORIES), "cookies": DictValidator(contains_regex=True), "dom": DomValidator(), - "dns": DictValidator(contains_regex=True), + "dns": DNSValidator(contains_regex=True), "js": DictValidator(contains_regex=True), "headers": DictValidator(contains_regex=True), "text": ArrayValidator(contains_regex=True), @@ -365,6 +433,16 @@ def _duplicate_key_validator(cls, pairs: list[tuple[str, Any]]) -> dict[str, Any result[key] = value return result + def _get_all_tech_names(self) -> set[str]: + all_techs: set[str] = set() + for letter in list(string.ascii_lowercase) + ["_"]: + tech_file: pathlib.Path = self._FULL_TECH_DIR.joinpath(f"{letter}.json") + if tech_file.exists(): + with tech_file.open("r", encoding="utf8") as f: + technologies: dict = json.load(f) + all_techs.update(technologies.keys()) + return all_techs + class TechnologyProcessor: def __init__(self, tech_name: str, tech_data: dict, validators: dict[str, AbstractValidator]): @@ -389,4 +467,4 @@ def process(self) -> None: if __name__ == '__main__': # for letter in string.ascii_lowercase + "_": # TechnologiesValidator(os.getenv("TECH_FILE_NAME", f"{letter}.json")).validate() - TechnologiesValidator(os.getenv("TECH_FILE_NAME", f"a.json")).validate() + TechnologiesValidator(os.getenv("TECH_FILE_NAME")).validate() diff --git a/.github/workflows/validate.yml b/.github/workflows/validate.yml index c1903672..7990385a 100644 --- a/.github/workflows/validate.yml +++ b/.github/workflows/validate.yml @@ -18,6 +18,27 @@ jobs: - name: run structure validator run: python3 .github/workflows/scripts/structure_validator.py + validate_schema: + runs-on: ubuntu-22.04 + needs: validate_structure + strategy: + matrix: + python-version: [ "3.12" ] + steps: + - name: checkout repository + uses: actions/checkout@v4 + + - name: set up Python ${{ matrix.python-version }} + uses: actions/setup-python@v5 + with: + python-version: ${{ matrix.python-version }} + + - name: install dependencies + run: python3 -m pip install jsonschema + + - name: run schema validator + run: python3 .github/workflows/scripts/schema_validator.py + validate_categories: runs-on: ubuntu-22.04 needs: validate_structure diff --git a/.gitignore b/.gitignore index 4a4caa46..af87b6b7 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,6 @@ -.idea/ - -.project -.settings \ No newline at end of file +.idea/ + +.project +.settings + +.sync/ \ No newline at end of file diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 66e83960..372d7693 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -1,10 +1,10 @@ # Contributing -WebAppAnalyzer is an [GPLv3 licensed](https://github.com/wappalyzer/wappalyzer/blob/master/LICENSE), open source project written in JavaScript. Anyone is welcome to contribute. +WebAppAnalyzer is an [GPLv3 licensed](https://github.com/enthec/webappanalyzer/blob/master/LICENSE), open source project written in JavaScript. Anyone is welcome to contribute. ## Getting started -To get started, see the [README](https://github.com/wappalyzer/wappalyzer/blob/master/README.md). +To get started, see the [README](https://github.com/enthec/webappanalyzer/blob/master/README.md). ## Adding a new technology diff --git a/README.md b/README.md index 7700ebd4..03e64564 100644 --- a/README.md +++ b/README.md @@ -3,13 +3,14 @@ [![Validator Status](https://github.com/enthec/webappanalyzer/actions/workflows/validate.yml/badge.svg)](https://github.com/enthec/webappanalyzer/actions/workflows/validate.yml) [![License](https://img.shields.io/github/license/enthec/webappanalyzer.svg)](https://opensource.org/license/gpl-3-0/) -This project is a continuation of the iconic [**Wappalyzer**](https://github.com/wappalyzer/wappalyzer) that went private recently on August 2023. - -First and foremost, Enthec is committed not to set this repo private at any moment since this would be out of the scope of the company's business. - -Our interest is to keep it growing, so it can be helpful to the community as it has been until now. - -There are no changes to be expected in the library. We will update it with the same JSON structure currently in use so the user experience will not be modified. +> [!NOTE] +> This project is a continuation of the iconic [**Wappalyzer**](https://github.com/wappalyzer/wappalyzer) that went private in August 2023. +> +> First and foremost, Enthec is committed not to set this repo private at any moment since this would be out of the scope of the company's business. +> +> Our interest is to keep it growing, so it can be helpful to the community as it has been until now. +> +> There are no changes to be expected in the library. We will update it with the same JSON structure currently in use so the user experience will not be modified. ## Specification @@ -19,59 +20,89 @@ Patterns (regular expressions) are kept in [`src/technologies/`](https://github. #### Example -```json -"Example": { - "description": "A short description of the technology.", - "cats": [ - "1" - ], - "cookies": { - "cookie_name": "Example" - }, - "dom": { - "#example-id": { - "exists": "", - "attributes": { - "class": "example-class" - }, - "properties": { - "example-property": "" - }, - "text": "Example text content" - } - }, - "dns": { - "MX": [ +```json5 +{ + "Example": { + "description": "A short description of the technology.", + "cats": [ + 1 + ], + "cookies": { + "cookie_name": "Example" + }, + "dom": { + "#example-id": { + "exists": "", + "attributes": { + "class": "example-class" + }, + "properties": { + "example-property": "" + }, + "text": "Example text content" + } + }, + "dns": { + "MX": [ + "example\\.com" + ] + }, + "icon": "Example.svg", + "cpe": "cpe:2.3:a:example:example:*:*:*:*:*:*:*:*", + "js": { + "Example.method": "" + }, + "excludes": [ + "Example" + ], + "headers": { + "X-Powered-By": "Example" + }, + "text": [ + "\bexample\b" + ], + "css": [ + "\\.example-class" + ], + "robots": [ + "Disallow: /unique-path/" + ], + "implies": [ + "PHP\\;confidence:50" + ], + "requires": [ + "WordPress" + ], + "requiresCategory": [ + 6 + ], + "meta": { + "generator": "(?:Example|Another Example)" + }, + "probe": { + "/path": "" + }, + "scriptSrc": [ + "example-([0-9.]+)\\.js\\;confidence:50\\;version:\\1" + ], + "scripts": [ + "function webpackJsonpCallback\\(data\\) {" + ], + "url": [ + "example\\.com" + ], + "xhr": [ "example\\.com" - ] - }, - "js": { - "Example.method": "" - }, - "excludes": "Example", - "headers": { - "X-Powered-By": "Example" - }, - "text": "\bexample\b", - "css": "\\.example-class", - "robots": "Disallow: /unique-path/", - "implies": "PHP\\;confidence:50", - "requires": "WordPress", - "requiresCategory": "Ecommerce", - "meta": { - "generator": "(?:Example|Another Example)" - }, - "probe": { - "/path": "" - }, - "scriptSrc": "example-([0-9.]+)\\.js\\;confidence:50\\;version:\\1", - "scripts": "function webpackJsonpCallback\\(data\\) {", - "url": "example\\.com", - "xhr": "example\\.com", - "oss": true, - "saas": true, - "pricing": ["mid", "freemium", "recurring"], - "website": "https://example.com", + ], + "oss": true, + "saas": true, + "pricing": [ + "mid", + "freemium" + ], + "website": "https://example.com", + "certIssuer": "Example", + } } ``` @@ -79,317 +110,64 @@ Patterns (regular expressions) are kept in [`src/technologies/`](https://github. Find the JSON schema at [`schema.json`](https://github.com/enthec/webappanalyzer/blob/main/schema.json). -### Required properties - - - - - - - - - - - - - - - - - - - - - - - - -
FieldTypeDescriptionExample
catsArray - One or more category IDs. - [1, 6]
websiteStringURL of the application's website. - "https://example.com" -
- -### Optional properties - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
FieldTypeDescriptionExample
descriptionString - A short description of the technology in British English (max. - 250 characters). Write in a neutral, factual tone; not like an - ad. - "A short description."
iconStringApplication icon filename."WordPress.svg"
cpeString - CPE - is a structured naming scheme for technologies. To check if a CPE is valid and exists (using v2.3), use the search). - "cpe:2.3:a:apache:http_server
:*:*:*:*:*:*:*:*"
saasBoolean - The technology is offered as a Software-as-a-Service (SaaS), i.e. hosted or cloud-based. - true
ossBoolean - The technology has an open-source license. - true
pricingArray -Cost indicator (based on a typical plan or average monthly price) and available pricing models. For paid products only. - -One of: - -
    -
  • lowLess than US $100 / mo
  • -
  • midBetween US $100 - $1,000 / mo
  • -
  • highMore than US $1,000 / mo
  • -
- -Plus any of: - -
    -
  • freemium Free plan available
  • -
  • onetime One-time payments accepted
  • -
  • recurring Subscriptions available
  • -
  • poa Price on asking
  • -
  • payg Pay as you go (e.g. commissions or usage-based fees)
  • -
-
["low", "freemium"]
- -### Implies, requires and excludes (optional) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
FieldTypeDescriptionExample
impliesString | Array - The presence of one application can imply the presence of - another, e.g. WordPress means PHP is also in use. - "PHP"
requiresString | Array - Similar to implies but detection only runs if the required technology has been identified. Useful for themes for a specific CMS. - "WordPress"
requiresCategoryint | Array - Similar to requires; detection only runs if a technology in the required category id has been identified. - "Ecommerce"
excludesString | Array - Opposite of implies. The presence of one application can exclude - the presence of another. - "Apache"
- -### Patterns (optional) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
FieldTypeDescriptionExample
cookiesObjectCookies.{ "cookie_name": "Cookie value" }
domString | Array | Object - Uses a - query selector - to inspect element properties, attributes and text content. - - { "#example-id": { "property": { "example-prop": "" } } - } -
dnsObject - DNS records: supports MX, TXT, SOA and NS. - - { "MX": "example\\.com" } -
jsObject - JavaScript properties (case sensitive). Avoid short property - names to prevent matching minified code. - { "jQuery.fn.jquery": "" }
headersObjectHTTP response headers.{ "X-Powered-By": "^WordPress$" }
textString | Array - Matches plain text. Should only be used in very specific cases where other methods can't be used. - \bexample\b
cssString | Array - CSS rules. Unavailable when a website enforces a same-origin - policy. For performance reasons, only a portion of the available - CSS rules are used to find matches. - "\\.example-class"
probeObject - Request a URL to test for its existence or match text content. - { "/path": "Example text" }
robotsString | Array - Robots.txt contents. - "Disallow: /unique-path/"
urlString | ArrayFull URL of the page."^https?//.+\\.wordpress\\.com"
xhrString | ArrayHostnames of XHR requests."cdn\\.netlify\\.com"
metaObjectHTML meta tags, e.g. generator.{ "generator": "^WordPress$" }
scriptSrcString | Array - URLs of JavaScript files included on the page. - "jquery\\.js"
scriptsString | Array - JavaScript source code. Inspects inline and external scripts. For performance reasons, avoid - scripts where possible and use - js instead. - "function webpackJsonpCallback\\(data\\) {"
html (deprecated)String | Array - HTML source code. Patterns must include an HTML opening tag to - avoid matching plain text. For performance reasons, avoid - html where possible and use - dom instead. - "<a [^>]*href=\"index.html"
+## Required properties + +--- + +| Field | Type | Description | Example | +|-------------|----------|----------------------------------|-------------------------| +| **cats** | `[]int` | Category ids | `[1, 6]` | +| **website** | `string` | URL of the application's website | `"https://example.com"` | + +## Optional properties + +--- + +### Base + +| Field | Type | Description | Example | +|-----------------|---------------------|-----------------------------------------------------------|--------------------------------------------------| +| **description** | `string` | A short description of the technology | `"short description"` | +| **icon** | `string` | Application icon filename | `"Example.svg"` | +| **cpe** | `string` | Application v2.3 [CPE](https://nvd.nist.gov/products/cpe) | `"cpe:2.3:a:apache:http_server:*:*:*:*:*:*:*:*"` | +| **saas** | `boolean` | Software As A Service | `true` | +| **oss** | `boolean` | Open Source Software | `true` | +| **pricing** | [Pricing](#Pricing) | Cost indicator | `["low", "freemium"]` | + +### Implies, requires and excludes + +| Field | Type | Description | Example | +|----------------------|------------|-------------------------------------------------------------------------------------------|-----------------| +| **implies** | `[]string` | The presence of one application can imply the presence of another | `["PHP"]` | +| **requires** | `[]string` | Similar to implies but detection only runs if the required technology has been identified | `["WordPress"]` | +| **excludes** | `[]string` | The presence of one application can exclude the presence of another | `["Apache"]` | +| **requiresCategory** | `[]int` | Similar to requires, but with category ID | `[6]` | + +### Patterns + +| Field | Type | Description | Regex | Example | +|--------------------------|---------------------|-----------------------------------------------------------------------------------------------|-------|-------------------------------------------------| +| **cookies** | `{string:string}` | Cookies | true | `{"cookie_name": "Cookie value"}` | +| **dom** | [DOM](#DOM) | [Query selectors](https://developer.mozilla.org/en-US/docs/Web/API/Document/querySelectorAll) | false | `["img[src*='example']"]` | +| **dns** | `{string:[]string}` | DNS records | true | `{"MX": ["example\\.com"]}` | +| **js** | `{string:string}` | JavaScript properties | true | `{"jQuery.fn.jquery": ""}` | +| **headers** | `{string:string}` | HTTP response headers | true | `{"X-Powered-By": "^WordPress$"}` | +| **text** | `[]string` | Matches plain text | true | `["\bexample\b"]` | +| **css** | `[]string` | CSS rules | true | `["\\.example-class"]` | +| **probe** | `{string:string}` | Request a URL to test for its existence or match text content | false | `{"/path": "Example text"}` | +| **robots** | `[]string` | Robots.txt contents | false | `["Disallow: /unique-path/"]` | +| **url** | `[]string` | Full URL of the page | true | `["^https?//.+\\.wordpress\\.com"]` | +| **xhr** | `[]string` | Hostnames of XHR requests | true | `["cdn\\.netlify\\.com"]` | +| **meta** | `{string:string}` | HTML meta tags | true | `{"generator": "^WordPress$"}` | +| **scriptSrc** | `[]string` | URLs of JavaScript files | true | `["jquery\\.js"]` | +| **scripts** | `[]string` | JavaScript source code | true | `["function webpackJsonpCallback\\(data\\) {"]` | +| ~~**html**~~(deprecated) | `[]string` | HTML source code | true | `["]*href=\"index.html"]` | +| **certIssuer** | `string` | SSL certificate issuer | false | `"Let's Encrypt"` | ## Patterns +--- + Patterns are essentially JavaScript regular expressions written as strings, but with some additions. ### Quirks and pitfalls @@ -404,80 +182,95 @@ Patterns are essentially JavaScript regular expressions written as strings, but Tags (a non-standard syntax) can be appended to patterns (and implies and excludes, separated by `\\;`) to store additional information. - - - - - - - - - - - - - - - - - - - - -
TagDescriptionExample
confidence - Indicates a less reliable pattern that may cause false - positives. The aim is to achieve a combined confidence of 100%. - Defaults to 100% if not specified. - - "js": { "Mage": "\\;confidence:50" } -
version - Gets the version number from a pattern match using a special - syntax. - - "scriptSrc": "jquery-([0-9.]+)\.js\\;version:\\1" -
+ +| Tag | Description | Example | +|----------------|----------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------| +| **confidence** | Indicates a less reliable pattern that may cause false positives. The aim is to achieve a combined confidence of 100%. Defaults to 100% if not specified | `"js": {"Mage": "\\;confidence:50"}` | +| **version** | Gets the version number from a pattern match using a special syntax | `"scriptSrc": "jquery-([0-9.]+)\.js\\;version:\\1"` | + ### Version syntax Application version information can be obtained from a pattern using a capture group. A condition can be evaluated using the ternary operator (`?:`). - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
ExampleDescription
\\1Returns the first match.
\\1?a: - Returns a if the first match contains a value, nothing - otherwise. -
\\1?a:b - Returns a if the first match contains a value, b otherwise. -
\\1?:b - Returns nothing if the first match contains a value, b - otherwise. -
foo\\1 - Returns foo with the first match appended. -
+ +| Example | Description | +|-----------|------------------------------------------------------------------| +| `\\1` | Returns the first match | +| `\\1?a:` | Returns a if the first match contains a value, nothing otherwise | +| `\\1?a:b` | Returns a if the first match contains a value, b otherwise | +| `\\1?:b` | Returns nothing if the first match contains a value, b otherwise | +| `foo\\1` | Returns foo with the first match appended | + + +## Types + +### DOM + +Dom data type can be either: + +- `[]string`: list of [query selectors](https://developer.mozilla.org/en-US/docs/Web/API/Document/querySelectorAll) + +- `JSON Object`: **key** is the [query selector](https://developer.mozilla.org/en-US/docs/Web/API/Document/querySelectorAll) & **value** is an object that requires the following structure: + - value requirements: + 1. {"attributes": {string: `pattern`}} + - `pattern` can be a regex + - `pattern` is compatible with [tags](#Tags) + - example: {"attributes": {"href": "pattern", "src": "pattern"}} + 2. {"properties": {string: `pattern`}} + - `pattern` can be a regex + - `pattern` is compatible with [tags](#Tags) + - example: {"attributes": {"href": "pattern", "src": "pattern"}} + 3. {"text": `pattern`} + - `pattern` can be a regex + - `pattern` is compatible with [tags](#Tags) + 4. {"exists": ""} + - `value` is an empty string + - `empty string` is compatible with [tags](#Tags) + +```json5 +// example []string +{ + "dom": ["img[src*='example']", "form[action*='example.com/forms/']"] +} +``` +```json5 +// example JSON Object +{ + "dom": { + "link[href*='fonts.g']": { + "attributes": { + "href": "fonts\\.(?:googleapis|google|gstatic)\\.com" + }, + "properties": { + "container": "" + }, + "text": "GLPI\\s+version\\s+([\\d\\.]+)\\;version:\\1" + }, + "style[data-href*='fonts.g']": { + "attributes": { + "data-href": "fonts\\.(?:googleapis|google|gstatic)\\.com" + }, + "exists": "\\;confidence:50" + } + } +} +``` + +### Pricing + +Cost indicator (based on a typical plan or average monthly price) and available pricing models. For paid products only. + +**One of**: + +- `low`: Less than US $100/mo +- `mid`: Between US \$100-\$1,000/mo +- `high`: More than US \$1,000/mo + +**Plus any of**: + +- `freemium`: Free plan available +- `onetime`: One-time payments accepted +- `recurring`: Subscriptions available +- `poa`: Price on asking +- `payg`: Pay as you go (e.g. commissions or usage-based fees) diff --git a/schema.json b/schema.json index 302244a7..a2a88a0c 100644 --- a/schema.json +++ b/schema.json @@ -1,6 +1,93 @@ { + "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "Wappalyzer schema", - "definitions": { + "description": "This schema defines the information related to web based technologies for the purposes of identification (finger printing)", + "examples": [ + { + "Example": { + "description": "A short description of the technology.", + "cats": [ + 1 + ], + "cookies": { + "cookie_name": "Example" + }, + "dom": { + "#example-id": { + "exists": "", + "attributes": { + "class": "example-class" + }, + "properties": { + "example-property": "" + }, + "text": "Example text content" + } + }, + "dns": { + "MX": [ + "example\\.com" + ] + }, + "icon": "Example.svg", + "cpe": "cpe:2.3:a:example:example:*:*:*:*:*:*:*:*", + "js": { + "Example.method": "" + }, + "excludes": [ + "Example" + ], + "headers": { + "X-Powered-By": "Example" + }, + "text": [ + "\bexample\b" + ], + "css": [ + "\\.example-class" + ], + "robots": [ + "Disallow: /unique-path/" + ], + "implies": [ + "PHP\\;confidence:50" + ], + "requires": [ + "WordPress" + ], + "requiresCategory": [ + 6 + ], + "meta": { + "generator": "(?:Example|Another Example)" + }, + "probe": { + "/path": "" + }, + "scriptSrc": [ + "example-([0-9.]+)\\.js\\;confidence:50\\;version:\\1" + ], + "scripts": [ + "function webpackJsonpCallback\\(data\\) {" + ], + "url": [ + "example\\.com" + ], + "xhr": [ + "example\\.com" + ], + "oss": true, + "saas": true, + "pricing": [ + "mid", + "freemium" + ], + "website": "https://example.com", + "certIssuer": "Example" + } + } + ], + "$defs": { "non-empty-non-blank-string": { "type": "string", "pattern": "^(?!\\s*$).+" @@ -16,7 +103,7 @@ "properties": { "description": { "type": "string", - "pattern": "^.{0,500}$" + "pattern": "^.{0,550}$" }, "oss": { "type": "boolean" @@ -40,7 +127,7 @@ }, "cpe": { "type": "string", - "pattern": "cpe:2.3:(a|h|o):[^*:]+:[^:]+:\\*:\\*:\\*:\\*:\\*:[^:]+:\\*:\\*" + "pattern": "^[Cc][Pp][Ee]:(\/|\\d+\\.\\d+)[^:]*(:?[^:]*){0,11}$" }, "cookies": { "type": "object", @@ -69,11 +156,11 @@ { "type": "array", "items": { - "$ref": "#/definitions/non-empty-non-blank-string" + "$ref": "#/$defs/non-empty-non-blank-string" } }, { - "$ref": "#/definitions/non-empty-non-blank-string" + "$ref": "#/$defs/non-empty-non-blank-string" }, { "type": "object", @@ -107,25 +194,25 @@ "html": { "type": "array", "items": { - "$ref": "#/definitions/non-empty-non-blank-string" + "$ref": "#/$defs/non-empty-non-blank-string" } }, "text": { "type": "array", "items": { - "$ref": "#/definitions/non-empty-non-blank-string" + "$ref": "#/$defs/non-empty-non-blank-string" } }, "css": { "type": "array", "items": { - "$ref": "#/definitions/non-empty-non-blank-string" + "$ref": "#/$defs/non-empty-non-blank-string" } }, "robots": { "type": "array", "items": { - "$ref": "#/definitions/non-empty-non-blank-string" + "$ref": "#/$defs/non-empty-non-blank-string" } }, "probe": { @@ -140,24 +227,24 @@ } }, "certIssuer": { - "$ref": "#/definitions/non-empty-non-blank-string" + "$ref": "#/$defs/non-empty-non-blank-string" }, "excludes": { "type": "array", "items": { - "$ref": "#/definitions/non-empty-non-blank-string" + "$ref": "#/$defs/non-empty-non-blank-string" } }, "implies": { "type": "array", "items": { - "$ref": "#/definitions/non-empty-non-blank-string" + "$ref": "#/$defs/non-empty-non-blank-string" } }, "requires": { "type": "array", "items": { - "$ref": "#/definitions/non-empty-non-blank-string" + "$ref": "#/$defs/non-empty-non-blank-string" } }, "requiresCategory": { @@ -180,31 +267,31 @@ "scriptSrc": { "type": "array", "items": { - "$ref": "#/definitions/non-empty-non-blank-string" + "$ref": "#/$defs/non-empty-non-blank-string" } }, "scripts": { "type": "array", "items": { - "$ref": "#/definitions/non-empty-non-blank-string" + "$ref": "#/$defs/non-empty-non-blank-string" } }, "url": { "type": "array", "items": { - "$ref": "#/definitions/non-empty-non-blank-string" + "$ref": "#/$defs/non-empty-non-blank-string" } }, "website": { - "$ref": "#/definitions/non-empty-non-blank-string" + "$ref": "#/$defs/non-empty-non-blank-string" }, "icon": { - "$ref": "#/definitions/non-empty-non-blank-string" + "$ref": "#/$defs/non-empty-non-blank-string" }, "xhr": { "type": "array", "items": { - "$ref": "#/definitions/non-empty-non-blank-string" + "$ref": "#/$defs/non-empty-non-blank-string" } } } diff --git a/scripts/fix.py b/scripts/fix.py new file mode 100644 index 00000000..cbd28196 --- /dev/null +++ b/scripts/fix.py @@ -0,0 +1,58 @@ +import json +import pathlib +from typing import Any, Callable + + +class StructureFix: + def __init__(self): + self._src_path: pathlib.Path = pathlib.Path("src") + self._transform: dict[str, Callable[[str | int], list]] = { + "html": self._fix_to_list, + "text": self._fix_to_list, + "css": self._fix_to_list, + "excludes": self._fix_to_list, + "implies": self._fix_to_list, + "requires": self._fix_to_list, + "requiresCategory": self._fix_to_list, + "scriptSrc": self._fix_to_list, + "scripts": self._fix_to_list, + "url": self._fix_to_list, + "xhr": self._fix_to_list, + "robots": self._fix_to_list, + "dom": self._fix_to_list, + "dns": self._dns_fix + } + + @staticmethod + def _dns_fix(current_detector) -> dict[str, list[str]]: + for k, v in current_detector.items(): + if isinstance(v, str): + current_detector[k] = [v] + return current_detector + + @staticmethod + def _fix_to_list(current_detector) -> list: + if isinstance(current_detector, str) or isinstance(current_detector, int): + return [current_detector] + return current_detector + + @staticmethod + def _do_nothing(current_detector): + return current_detector + + def fix(self): + for file in self._src_path.joinpath("technologies").iterdir(): + if not file.name.endswith(".json"): + continue + with file.open("r") as f: + techs: dict[str, dict[str, Any]] = json.loads(f.read()) + for tech_name, tech_detectors in techs.copy().items(): + for detector_name, detector in tech_detectors.copy().items(): + tech_detectors[detector_name] = self._transform.get(detector_name, self._do_nothing)(detector) + techs[tech_name.strip()] = tech_detectors + with file.open("w") as f: + f.write(json.dumps(techs, indent=2, sort_keys=True, ensure_ascii=False)) + + +if __name__ == '__main__': + StructureFix().fix() diff --git a/src/groups.json b/src/groups.json index 3160ecf6..cf430441 100644 --- a/src/groups.json +++ b/src/groups.json @@ -50,4 +50,4 @@ "18": { "name": "User generated content" } -} +} \ No newline at end of file diff --git a/src/images/icons/42Chat.svg b/src/images/icons/42Chat.svg new file mode 100644 index 00000000..3ad8afdd --- /dev/null +++ b/src/images/icons/42Chat.svg @@ -0,0 +1,20 @@ + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/52Degrees.svg b/src/images/icons/52Degrees.svg new file mode 100644 index 00000000..0aea0e0b --- /dev/null +++ b/src/images/icons/52Degrees.svg @@ -0,0 +1,9 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/6ValleyEcommerceCMS.svg b/src/images/icons/6ValleyEcommerceCMS.svg new file mode 100644 index 00000000..2e0ce005 --- /dev/null +++ b/src/images/icons/6ValleyEcommerceCMS.svg @@ -0,0 +1,14 @@ + + + + + + \ No newline at end of file diff --git a/src/images/icons/7moor.svg b/src/images/icons/7moor.svg new file mode 100644 index 00000000..a721ad3d --- /dev/null +++ b/src/images/icons/7moor.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/8x8.svg b/src/images/icons/8x8.svg new file mode 100644 index 00000000..86887161 --- /dev/null +++ b/src/images/icons/8x8.svg @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/91App.svg b/src/images/icons/91App.svg new file mode 100644 index 00000000..16c0f1cd --- /dev/null +++ b/src/images/icons/91App.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/99minds.svg b/src/images/icons/99minds.svg new file mode 100644 index 00000000..c783324a --- /dev/null +++ b/src/images/icons/99minds.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/images/icons/ABlyft.svg b/src/images/icons/ABlyft.svg new file mode 100644 index 00000000..ba07b111 --- /dev/null +++ b/src/images/icons/ABlyft.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/AINIRO.svg b/src/images/icons/AINIRO.svg new file mode 100644 index 00000000..88482450 --- /dev/null +++ b/src/images/icons/AINIRO.svg @@ -0,0 +1,183 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/AOLserver.png b/src/images/icons/AOLserver.png deleted file mode 100644 index 482bcdd9..00000000 Binary files a/src/images/icons/AOLserver.png and /dev/null differ diff --git a/src/images/icons/AOLserver.svg b/src/images/icons/AOLserver.svg new file mode 100644 index 00000000..facaab30 --- /dev/null +++ b/src/images/icons/AOLserver.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/images/icons/APISpreadsheets.svg b/src/images/icons/APISpreadsheets.svg new file mode 100644 index 00000000..b1e40cb3 --- /dev/null +++ b/src/images/icons/APISpreadsheets.svg @@ -0,0 +1,11 @@ + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/APPLOVIN.png b/src/images/icons/APPLOVIN.png new file mode 100644 index 00000000..58aada3c Binary files /dev/null and b/src/images/icons/APPLOVIN.png differ diff --git a/src/images/icons/ARCaptcha.svg b/src/images/icons/ARCaptcha.svg new file mode 100644 index 00000000..f6a96368 --- /dev/null +++ b/src/images/icons/ARCaptcha.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/ARMJS.svg b/src/images/icons/ARMJS.svg new file mode 100644 index 00000000..1ba2cc53 --- /dev/null +++ b/src/images/icons/ARMJS.svg @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Aacio.svg b/src/images/icons/Aacio.svg new file mode 100644 index 00000000..e8201b71 --- /dev/null +++ b/src/images/icons/Aacio.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/Aarki.svg b/src/images/icons/Aarki.svg new file mode 100644 index 00000000..efd3a557 --- /dev/null +++ b/src/images/icons/Aarki.svg @@ -0,0 +1,6 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/Aasaan.svg b/src/images/icons/Aasaan.svg new file mode 100644 index 00000000..407c8353 --- /dev/null +++ b/src/images/icons/Aasaan.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/AbleCDP.svg b/src/images/icons/AbleCDP.svg new file mode 100644 index 00000000..1e89e4f6 --- /dev/null +++ b/src/images/icons/AbleCDP.svg @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Abralytics.svg b/src/images/icons/Abralytics.svg new file mode 100644 index 00000000..55f5de4e --- /dev/null +++ b/src/images/icons/Abralytics.svg @@ -0,0 +1,187 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Acceptd.svg b/src/images/icons/Acceptd.svg new file mode 100644 index 00000000..ca173679 --- /dev/null +++ b/src/images/icons/Acceptd.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/AccessAlly.svg b/src/images/icons/AccessAlly.svg new file mode 100644 index 00000000..bf042008 --- /dev/null +++ b/src/images/icons/AccessAlly.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/Accredible.svg b/src/images/icons/Accredible.svg new file mode 100644 index 00000000..3b8608d5 --- /dev/null +++ b/src/images/icons/Accredible.svg @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/AceShop.svg b/src/images/icons/AceShop.svg new file mode 100644 index 00000000..07d1005b --- /dev/null +++ b/src/images/icons/AceShop.svg @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Acecounter.svg b/src/images/icons/Acecounter.svg new file mode 100644 index 00000000..305bd9a6 --- /dev/null +++ b/src/images/icons/Acecounter.svg @@ -0,0 +1,344 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/AdCalls.svg b/src/images/icons/AdCalls.svg new file mode 100644 index 00000000..4e73214d --- /dev/null +++ b/src/images/icons/AdCalls.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/AdGlare.svg b/src/images/icons/AdGlare.svg new file mode 100644 index 00000000..3188203b --- /dev/null +++ b/src/images/icons/AdGlare.svg @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/AdNabu.svg b/src/images/icons/AdNabu.svg new file mode 100644 index 00000000..764c803e --- /dev/null +++ b/src/images/icons/AdNabu.svg @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/images/icons/Adalte.svg b/src/images/icons/Adalte.svg new file mode 100644 index 00000000..87de1103 --- /dev/null +++ b/src/images/icons/Adalte.svg @@ -0,0 +1,20 @@ + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Adaptix.svg b/src/images/icons/Adaptix.svg new file mode 100644 index 00000000..acbe2d5c --- /dev/null +++ b/src/images/icons/Adaptix.svg @@ -0,0 +1,73 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Adevole.svg b/src/images/icons/Adevole.svg new file mode 100644 index 00000000..81df5e29 --- /dev/null +++ b/src/images/icons/Adevole.svg @@ -0,0 +1,20 @@ + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/AdminBuy.svg b/src/images/icons/AdminBuy.svg new file mode 100644 index 00000000..49691c5f --- /dev/null +++ b/src/images/icons/AdminBuy.svg @@ -0,0 +1,29 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Adnymics.svg b/src/images/icons/Adnymics.svg new file mode 100644 index 00000000..2afbb110 --- /dev/null +++ b/src/images/icons/Adnymics.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/images/icons/Adtriba.svg b/src/images/icons/Adtriba.svg new file mode 100644 index 00000000..f905b884 --- /dev/null +++ b/src/images/icons/Adtriba.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/src/images/icons/AforestLMS.svg b/src/images/icons/AforestLMS.svg new file mode 100644 index 00000000..57db1fca --- /dev/null +++ b/src/images/icons/AforestLMS.svg @@ -0,0 +1,96 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/AgentFire.svg b/src/images/icons/AgentFire.svg new file mode 100644 index 00000000..e6e4f218 --- /dev/null +++ b/src/images/icons/AgentFire.svg @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/AgileCRM.svg b/src/images/icons/AgileCRM.svg new file mode 100644 index 00000000..95101fa9 --- /dev/null +++ b/src/images/icons/AgileCRM.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Agility.svg b/src/images/icons/Agility.svg new file mode 100644 index 00000000..b4370326 --- /dev/null +++ b/src/images/icons/Agility.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/Agillic.svg b/src/images/icons/Agillic.svg new file mode 100644 index 00000000..1fd9e42c --- /dev/null +++ b/src/images/icons/Agillic.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Agora.svg b/src/images/icons/Agora.svg new file mode 100644 index 00000000..feb8d02c --- /dev/null +++ b/src/images/icons/Agora.svg @@ -0,0 +1,12 @@ + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Agorize.svg b/src/images/icons/Agorize.svg new file mode 100644 index 00000000..9e9052ad --- /dev/null +++ b/src/images/icons/Agorize.svg @@ -0,0 +1,17 @@ + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Aimbase.svg b/src/images/icons/Aimbase.svg new file mode 100644 index 00000000..4a2faec9 --- /dev/null +++ b/src/images/icons/Aimbase.svg @@ -0,0 +1,147 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Aimy.svg b/src/images/icons/Aimy.svg new file mode 100644 index 00000000..d8e45956 --- /dev/null +++ b/src/images/icons/Aimy.svg @@ -0,0 +1,468 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Aircall.svg b/src/images/icons/Aircall.svg new file mode 100644 index 00000000..970865fb --- /dev/null +++ b/src/images/icons/Aircall.svg @@ -0,0 +1,198 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Airdata.svg b/src/images/icons/Airdata.svg new file mode 100644 index 00000000..9a08e225 --- /dev/null +++ b/src/images/icons/Airdata.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/AirshipCRM.svg b/src/images/icons/AirshipCRM.svg new file mode 100644 index 00000000..306b3b3a --- /dev/null +++ b/src/images/icons/AirshipCRM.svg @@ -0,0 +1,853 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Aiva.svg b/src/images/icons/Aiva.svg new file mode 100644 index 00000000..6c86d3a5 --- /dev/null +++ b/src/images/icons/Aiva.svg @@ -0,0 +1,17 @@ + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Akavita.svg b/src/images/icons/Akavita.svg new file mode 100644 index 00000000..67b24a97 --- /dev/null +++ b/src/images/icons/Akavita.svg @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Akero.svg b/src/images/icons/Akero.svg new file mode 100644 index 00000000..60bcc30a --- /dev/null +++ b/src/images/icons/Akero.svg @@ -0,0 +1,170 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Akinon.svg b/src/images/icons/Akinon.svg new file mode 100644 index 00000000..66d71731 --- /dev/null +++ b/src/images/icons/Akinon.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/AkoCommerce.svg b/src/images/icons/AkoCommerce.svg new file mode 100644 index 00000000..c49e935d --- /dev/null +++ b/src/images/icons/AkoCommerce.svg @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Alboom.svg b/src/images/icons/Alboom.svg new file mode 100644 index 00000000..1c3389ad --- /dev/null +++ b/src/images/icons/Alboom.svg @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Alia.png b/src/images/icons/Alia.png new file mode 100644 index 00000000..bacc6e36 Binary files /dev/null and b/src/images/icons/Alia.png differ diff --git a/src/images/icons/Alimama.svg b/src/images/icons/Alimama.svg new file mode 100644 index 00000000..0c2163d3 --- /dev/null +++ b/src/images/icons/Alimama.svg @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Alinea.svg b/src/images/icons/Alinea.svg new file mode 100644 index 00000000..9364f695 --- /dev/null +++ b/src/images/icons/Alinea.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/AllClients.svg b/src/images/icons/AllClients.svg new file mode 100644 index 00000000..c59c3494 --- /dev/null +++ b/src/images/icons/AllClients.svg @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Allbookable.svg b/src/images/icons/Allbookable.svg new file mode 100644 index 00000000..d37ec053 --- /dev/null +++ b/src/images/icons/Allbookable.svg @@ -0,0 +1,17 @@ + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Alloka.svg b/src/images/icons/Alloka.svg new file mode 100644 index 00000000..24781201 --- /dev/null +++ b/src/images/icons/Alloka.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/Allstate.svg b/src/images/icons/Allstate.svg new file mode 100644 index 00000000..28918c44 --- /dev/null +++ b/src/images/icons/Allstate.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Alohome.svg b/src/images/icons/Alohome.svg new file mode 100644 index 00000000..9c45c6b1 --- /dev/null +++ b/src/images/icons/Alohome.svg @@ -0,0 +1,19 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/AlphaReview.svg b/src/images/icons/AlphaReview.svg new file mode 100644 index 00000000..b2fcd0c1 --- /dev/null +++ b/src/images/icons/AlphaReview.svg @@ -0,0 +1,186 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Alpharank.svg b/src/images/icons/Alpharank.svg new file mode 100644 index 00000000..b820ba40 --- /dev/null +++ b/src/images/icons/Alpharank.svg @@ -0,0 +1,203 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Altcha.svg b/src/images/icons/Altcha.svg new file mode 100644 index 00000000..4edfeb7c --- /dev/null +++ b/src/images/icons/Altcha.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/Amap.svg b/src/images/icons/Amap.svg new file mode 100644 index 00000000..642562a0 --- /dev/null +++ b/src/images/icons/Amap.svg @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/images/icons/Amasty.svg b/src/images/icons/Amasty.svg new file mode 100644 index 00000000..37a89efc --- /dev/null +++ b/src/images/icons/Amasty.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Amilia.svg b/src/images/icons/Amilia.svg new file mode 100644 index 00000000..68fe1bc5 --- /dev/null +++ b/src/images/icons/Amilia.svg @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Amped.svg b/src/images/icons/Amped.svg new file mode 100644 index 00000000..a54f2fe1 --- /dev/null +++ b/src/images/icons/Amped.svg @@ -0,0 +1,90 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Ampry.svg b/src/images/icons/Ampry.svg new file mode 100644 index 00000000..eabc2567 --- /dev/null +++ b/src/images/icons/Ampry.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/AnalyticOwl.svg b/src/images/icons/AnalyticOwl.svg new file mode 100644 index 00000000..794ce943 --- /dev/null +++ b/src/images/icons/AnalyticOwl.svg @@ -0,0 +1,33 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Analytick.svg b/src/images/icons/Analytick.svg new file mode 100644 index 00000000..f3742631 --- /dev/null +++ b/src/images/icons/Analytick.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/src/images/icons/AnalyticsConnect.svg b/src/images/icons/AnalyticsConnect.svg new file mode 100644 index 00000000..2cb7f003 --- /dev/null +++ b/src/images/icons/AnalyticsConnect.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Analyzati.svg b/src/images/icons/Analyzati.svg new file mode 100644 index 00000000..bad6aa02 --- /dev/null +++ b/src/images/icons/Analyzati.svg @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/images/icons/Analyzz.svg b/src/images/icons/Analyzz.svg new file mode 100644 index 00000000..118d528f --- /dev/null +++ b/src/images/icons/Analyzz.svg @@ -0,0 +1,397 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Anexis.svg b/src/images/icons/Anexis.svg new file mode 100644 index 00000000..cb921ee1 --- /dev/null +++ b/src/images/icons/Anexis.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Angler.svg b/src/images/icons/Angler.svg new file mode 100644 index 00000000..be08c525 --- /dev/null +++ b/src/images/icons/Angler.svg @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/images/icons/AnimalChat.svg b/src/images/icons/AnimalChat.svg new file mode 100644 index 00000000..69e43b8c --- /dev/null +++ b/src/images/icons/AnimalChat.svg @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Animation Addons.svg b/src/images/icons/Animation Addons.svg new file mode 100644 index 00000000..43a711d0 --- /dev/null +++ b/src/images/icons/Animation Addons.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/src/images/icons/Annoto.svg b/src/images/icons/Annoto.svg new file mode 100644 index 00000000..1673c121 --- /dev/null +++ b/src/images/icons/Annoto.svg @@ -0,0 +1,141 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Answerbase.svg b/src/images/icons/Answerbase.svg new file mode 100644 index 00000000..0c4814dc --- /dev/null +++ b/src/images/icons/Answerbase.svg @@ -0,0 +1,197 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Antavo.svg b/src/images/icons/Antavo.svg new file mode 100644 index 00000000..869d3ca0 --- /dev/null +++ b/src/images/icons/Antavo.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/AnyChat.svg b/src/images/icons/AnyChat.svg new file mode 100644 index 00000000..d581c51a --- /dev/null +++ b/src/images/icons/AnyChat.svg @@ -0,0 +1,17 @@ + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Apiary.svg b/src/images/icons/Apiary.svg new file mode 100644 index 00000000..839dec8e --- /dev/null +++ b/src/images/icons/Apiary.svg @@ -0,0 +1,176 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Apodle.svg b/src/images/icons/Apodle.svg new file mode 100644 index 00000000..3697959f --- /dev/null +++ b/src/images/icons/Apodle.svg @@ -0,0 +1,24 @@ + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/AppSell.svg b/src/images/icons/AppSell.svg new file mode 100644 index 00000000..ff45457a --- /dev/null +++ b/src/images/icons/AppSell.svg @@ -0,0 +1,147 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Appjustable.svg b/src/images/icons/Appjustable.svg new file mode 100644 index 00000000..0f8b6235 --- /dev/null +++ b/src/images/icons/Appjustable.svg @@ -0,0 +1,13 @@ + + + + + + + \ No newline at end of file diff --git a/src/images/icons/AppliedCSR24.svg b/src/images/icons/AppliedCSR24.svg new file mode 100644 index 00000000..210d33c7 --- /dev/null +++ b/src/images/icons/AppliedCSR24.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/Appstle.svg b/src/images/icons/Appstle.svg new file mode 100644 index 00000000..e756db56 --- /dev/null +++ b/src/images/icons/Appstle.svg @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/AppuOnline.svg b/src/images/icons/AppuOnline.svg new file mode 100644 index 00000000..3ffb051a --- /dev/null +++ b/src/images/icons/AppuOnline.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Appypie.svg b/src/images/icons/Appypie.svg new file mode 100644 index 00000000..7241fec3 --- /dev/null +++ b/src/images/icons/Appypie.svg @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Appzi.svg b/src/images/icons/Appzi.svg new file mode 100644 index 00000000..d3ba70a9 --- /dev/null +++ b/src/images/icons/Appzi.svg @@ -0,0 +1,22 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Aptania.svg b/src/images/icons/Aptania.svg new file mode 100644 index 00000000..91205506 --- /dev/null +++ b/src/images/icons/Aptania.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/images/icons/Arabot.svg b/src/images/icons/Arabot.svg new file mode 100644 index 00000000..8868fb7f --- /dev/null +++ b/src/images/icons/Arabot.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Arketa.svg b/src/images/icons/Arketa.svg new file mode 100644 index 00000000..011f0662 --- /dev/null +++ b/src/images/icons/Arketa.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/ArkoseLabs.svg b/src/images/icons/ArkoseLabs.svg new file mode 100644 index 00000000..0165e7fd --- /dev/null +++ b/src/images/icons/ArkoseLabs.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/Arlo.svg b/src/images/icons/Arlo.svg new file mode 100644 index 00000000..fea8092d --- /dev/null +++ b/src/images/icons/Arlo.svg @@ -0,0 +1,17 @@ + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Arnica.svg b/src/images/icons/Arnica.svg new file mode 100644 index 00000000..175f4b4e --- /dev/null +++ b/src/images/icons/Arnica.svg @@ -0,0 +1,17 @@ + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Arreva.png b/src/images/icons/Arreva.png deleted file mode 100644 index 57b1c0b8..00000000 Binary files a/src/images/icons/Arreva.png and /dev/null differ diff --git a/src/images/icons/Arreva.svg b/src/images/icons/Arreva.svg new file mode 100644 index 00000000..9d046113 --- /dev/null +++ b/src/images/icons/Arreva.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/ArrowChat.svg b/src/images/icons/ArrowChat.svg new file mode 100644 index 00000000..5bce033c --- /dev/null +++ b/src/images/icons/ArrowChat.svg @@ -0,0 +1,81 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/ArtSchema.svg b/src/images/icons/ArtSchema.svg new file mode 100644 index 00000000..e5175bfd --- /dev/null +++ b/src/images/icons/ArtSchema.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/ArtiBot.svg b/src/images/icons/ArtiBot.svg new file mode 100644 index 00000000..6c272fae --- /dev/null +++ b/src/images/icons/ArtiBot.svg @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Artplacer.svg b/src/images/icons/Artplacer.svg new file mode 100644 index 00000000..d98c98ea --- /dev/null +++ b/src/images/icons/Artplacer.svg @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Aryeo.svg b/src/images/icons/Aryeo.svg new file mode 100644 index 00000000..13a01065 --- /dev/null +++ b/src/images/icons/Aryeo.svg @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Asapp.svg b/src/images/icons/Asapp.svg new file mode 100644 index 00000000..3b12b4af --- /dev/null +++ b/src/images/icons/Asapp.svg @@ -0,0 +1,12 @@ + + + + + + \ No newline at end of file diff --git a/src/images/icons/Aseqbase.svg b/src/images/icons/Aseqbase.svg new file mode 100644 index 00000000..ad0b5002 --- /dev/null +++ b/src/images/icons/Aseqbase.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Ashop.svg b/src/images/icons/Ashop.svg new file mode 100644 index 00000000..896c7120 --- /dev/null +++ b/src/images/icons/Ashop.svg @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/AsisteClick.svg b/src/images/icons/AsisteClick.svg new file mode 100644 index 00000000..173eb006 --- /dev/null +++ b/src/images/icons/AsisteClick.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/AskNicely.svg b/src/images/icons/AskNicely.svg new file mode 100644 index 00000000..b0e4c11f --- /dev/null +++ b/src/images/icons/AskNicely.svg @@ -0,0 +1,12 @@ + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/AskSpot.svg b/src/images/icons/AskSpot.svg new file mode 100644 index 00000000..84751360 --- /dev/null +++ b/src/images/icons/AskSpot.svg @@ -0,0 +1,35 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Askas.svg b/src/images/icons/Askas.svg new file mode 100644 index 00000000..fcc4228b --- /dev/null +++ b/src/images/icons/Askas.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Asksuite.svg b/src/images/icons/Asksuite.svg new file mode 100644 index 00000000..294584b0 --- /dev/null +++ b/src/images/icons/Asksuite.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Aspin.svg b/src/images/icons/Aspin.svg new file mode 100644 index 00000000..416fd6b9 --- /dev/null +++ b/src/images/icons/Aspin.svg @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Aspio.svg b/src/images/icons/Aspio.svg new file mode 100644 index 00000000..3a573913 --- /dev/null +++ b/src/images/icons/Aspio.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Assemble.svg b/src/images/icons/Assemble.svg new file mode 100644 index 00000000..81a3c54c --- /dev/null +++ b/src/images/icons/Assemble.svg @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/AstraFit.svg b/src/images/icons/AstraFit.svg new file mode 100644 index 00000000..e51ffc72 --- /dev/null +++ b/src/images/icons/AstraFit.svg @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Astro.svg b/src/images/icons/Astro.svg index 9c1ced0b..cfb72904 100644 --- a/src/images/icons/Astro.svg +++ b/src/images/icons/Astro.svg @@ -1,4 +1,4 @@ - - - + + + diff --git a/src/images/icons/Atlasmic.svg b/src/images/icons/Atlasmic.svg new file mode 100644 index 00000000..9219847d --- /dev/null +++ b/src/images/icons/Atlasmic.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Atomseo.svg b/src/images/icons/Atomseo.svg new file mode 100644 index 00000000..46995571 --- /dev/null +++ b/src/images/icons/Atomseo.svg @@ -0,0 +1,99 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Attracta.svg b/src/images/icons/Attracta.svg new file mode 100644 index 00000000..6b40a87b --- /dev/null +++ b/src/images/icons/Attracta.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Auglio.svg b/src/images/icons/Auglio.svg new file mode 100644 index 00000000..19c01b2a --- /dev/null +++ b/src/images/icons/Auglio.svg @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Ausha.svg b/src/images/icons/Ausha.svg new file mode 100644 index 00000000..2ecb7313 --- /dev/null +++ b/src/images/icons/Ausha.svg @@ -0,0 +1,114 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Authy.svg b/src/images/icons/Authy.svg new file mode 100644 index 00000000..2074d8f6 --- /dev/null +++ b/src/images/icons/Authy.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/AutoHQ.svg b/src/images/icons/AutoHQ.svg new file mode 100644 index 00000000..fdaba4f0 --- /dev/null +++ b/src/images/icons/AutoHQ.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/AutoOps.svg b/src/images/icons/AutoOps.svg new file mode 100644 index 00000000..b6f0b01e --- /dev/null +++ b/src/images/icons/AutoOps.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/AutoVitals.svg b/src/images/icons/AutoVitals.svg new file mode 100644 index 00000000..f9bde5c1 --- /dev/null +++ b/src/images/icons/AutoVitals.svg @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Autocommerce.svg b/src/images/icons/Autocommerce.svg new file mode 100644 index 00000000..762abdf1 --- /dev/null +++ b/src/images/icons/Autocommerce.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/Autoconf.svg b/src/images/icons/Autoconf.svg new file mode 100644 index 00000000..a745740d --- /dev/null +++ b/src/images/icons/Autoconf.svg @@ -0,0 +1,12 @@ + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Automabots.svg b/src/images/icons/Automabots.svg new file mode 100644 index 00000000..d3a81cf8 --- /dev/null +++ b/src/images/icons/Automabots.svg @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/AutomatePro.svg b/src/images/icons/AutomatePro.svg new file mode 100644 index 00000000..7ad20f3a --- /dev/null +++ b/src/images/icons/AutomatePro.svg @@ -0,0 +1,305 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/AutomateWoo.svg b/src/images/icons/AutomateWoo.svg new file mode 100644 index 00000000..7971b498 --- /dev/null +++ b/src/images/icons/AutomateWoo.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/src/images/icons/AutomatedGrowth.svg b/src/images/icons/AutomatedGrowth.svg new file mode 100644 index 00000000..8babb99d --- /dev/null +++ b/src/images/icons/AutomatedGrowth.svg @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/AutomaticMembers.svg b/src/images/icons/AutomaticMembers.svg new file mode 100644 index 00000000..cc3f98b0 --- /dev/null +++ b/src/images/icons/AutomaticMembers.svg @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/AutomaticSales.svg b/src/images/icons/AutomaticSales.svg new file mode 100644 index 00000000..8e9443f9 --- /dev/null +++ b/src/images/icons/AutomaticSales.svg @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Avasize.png b/src/images/icons/Avasize.png deleted file mode 100755 index 753c8fcc..00000000 Binary files a/src/images/icons/Avasize.png and /dev/null differ diff --git a/src/images/icons/Avasize.svg b/src/images/icons/Avasize.svg new file mode 100644 index 00000000..93eea12c --- /dev/null +++ b/src/images/icons/Avasize.svg @@ -0,0 +1,93 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Avature.svg b/src/images/icons/Avature.svg new file mode 100644 index 00000000..f35972cf --- /dev/null +++ b/src/images/icons/Avature.svg @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/images/icons/AvidTrak.svg b/src/images/icons/AvidTrak.svg new file mode 100644 index 00000000..6c81db35 --- /dev/null +++ b/src/images/icons/AvidTrak.svg @@ -0,0 +1,26 @@ + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Avizi.svg b/src/images/icons/Avizi.svg new file mode 100644 index 00000000..3e7a7dee --- /dev/null +++ b/src/images/icons/Avizi.svg @@ -0,0 +1,16 @@ + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Awtomic.svg b/src/images/icons/Awtomic.svg new file mode 100644 index 00000000..ebecb031 --- /dev/null +++ b/src/images/icons/Awtomic.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/AzuraCast.svg b/src/images/icons/AzuraCast.svg new file mode 100644 index 00000000..f9be958d --- /dev/null +++ b/src/images/icons/AzuraCast.svg @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Azuriom.svg b/src/images/icons/Azuriom.svg new file mode 100644 index 00000000..2a7c895e --- /dev/null +++ b/src/images/icons/Azuriom.svg @@ -0,0 +1,9 @@ + + + + + + \ No newline at end of file diff --git a/src/images/icons/B12.svg b/src/images/icons/B12.svg new file mode 100644 index 00000000..5edf5262 --- /dev/null +++ b/src/images/icons/B12.svg @@ -0,0 +1,108 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/B2Chat.svg b/src/images/icons/B2Chat.svg new file mode 100644 index 00000000..bae21781 --- /dev/null +++ b/src/images/icons/B2Chat.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/BIGLIST.svg b/src/images/icons/BIGLIST.svg new file mode 100644 index 00000000..25ac5e6e --- /dev/null +++ b/src/images/icons/BIGLIST.svg @@ -0,0 +1,2238 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/BILLmanager.svg b/src/images/icons/BILLmanager.svg new file mode 100644 index 00000000..fe7ceb6c --- /dev/null +++ b/src/images/icons/BILLmanager.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/images/icons/BLAZE.svg b/src/images/icons/BLAZE.svg new file mode 100644 index 00000000..4b3b934b --- /dev/null +++ b/src/images/icons/BLAZE.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/BLiNKAI.svg b/src/images/icons/BLiNKAI.svg new file mode 100644 index 00000000..43d96d4a --- /dev/null +++ b/src/images/icons/BLiNKAI.svg @@ -0,0 +1,90 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/BMTMicro.svg b/src/images/icons/BMTMicro.svg new file mode 100644 index 00000000..814f8873 --- /dev/null +++ b/src/images/icons/BMTMicro.svg @@ -0,0 +1,32 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/BRYNK.svg b/src/images/icons/BRYNK.svg new file mode 100644 index 00000000..109ad544 --- /dev/null +++ b/src/images/icons/BRYNK.svg @@ -0,0 +1,17 @@ + + + + + + + \ No newline at end of file diff --git a/src/images/icons/BTOLEAD.svg b/src/images/icons/BTOLEAD.svg new file mode 100644 index 00000000..f2b637a6 --- /dev/null +++ b/src/images/icons/BTOLEAD.svg @@ -0,0 +1,14 @@ + + + + + + \ No newline at end of file diff --git a/src/images/icons/BUROGU.svg b/src/images/icons/BUROGU.svg new file mode 100644 index 00000000..fa37afa9 --- /dev/null +++ b/src/images/icons/BUROGU.svg @@ -0,0 +1,30 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Backstage.svg b/src/images/icons/Backstage.svg new file mode 100644 index 00000000..f729231e --- /dev/null +++ b/src/images/icons/Backstage.svg @@ -0,0 +1,177 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Bag.svg b/src/images/icons/Bag.svg new file mode 100644 index 00000000..da32b920 --- /dev/null +++ b/src/images/icons/Bag.svg @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Bagisto.svg b/src/images/icons/Bagisto.svg new file mode 100644 index 00000000..b92015be --- /dev/null +++ b/src/images/icons/Bagisto.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/Bahooosh.svg b/src/images/icons/Bahooosh.svg new file mode 100644 index 00000000..0811f1af --- /dev/null +++ b/src/images/icons/Bahooosh.svg @@ -0,0 +1,20 @@ + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Bandwango.svg b/src/images/icons/Bandwango.svg new file mode 100644 index 00000000..108230ff --- /dev/null +++ b/src/images/icons/Bandwango.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Banno.svg b/src/images/icons/Banno.svg new file mode 100644 index 00000000..696aae2b --- /dev/null +++ b/src/images/icons/Banno.svg @@ -0,0 +1,14 @@ + + + + + + \ No newline at end of file diff --git a/src/images/icons/Bant.svg b/src/images/icons/Bant.svg new file mode 100644 index 00000000..e2f30c0c --- /dev/null +++ b/src/images/icons/Bant.svg @@ -0,0 +1,14 @@ + + + + + + \ No newline at end of file diff --git a/src/images/icons/Base44.png b/src/images/icons/Base44.png new file mode 100644 index 00000000..70132eb6 Binary files /dev/null and b/src/images/icons/Base44.png differ diff --git a/src/images/icons/BaseUI.svg b/src/images/icons/BaseUI.svg new file mode 100644 index 00000000..c9997de2 --- /dev/null +++ b/src/images/icons/BaseUI.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/BaskHealth.svg b/src/images/icons/BaskHealth.svg new file mode 100644 index 00000000..2c182cec --- /dev/null +++ b/src/images/icons/BaskHealth.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Batch.svg b/src/images/icons/Batch.svg new file mode 100644 index 00000000..e83d9b76 --- /dev/null +++ b/src/images/icons/Batch.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/BatmanJS.svg b/src/images/icons/BatmanJS.svg new file mode 100644 index 00000000..b9702272 --- /dev/null +++ b/src/images/icons/BatmanJS.svg @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Baya.svg b/src/images/icons/Baya.svg new file mode 100644 index 00000000..5455666f --- /dev/null +++ b/src/images/icons/Baya.svg @@ -0,0 +1,154 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Beacons.svg b/src/images/icons/Beacons.svg new file mode 100644 index 00000000..dbad1127 --- /dev/null +++ b/src/images/icons/Beacons.svg @@ -0,0 +1,20 @@ + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Beae.svg b/src/images/icons/Beae.svg new file mode 100644 index 00000000..4c3ae057 --- /dev/null +++ b/src/images/icons/Beae.svg @@ -0,0 +1,12 @@ + + + + + + \ No newline at end of file diff --git a/src/images/icons/BeamImpact.svg b/src/images/icons/BeamImpact.svg new file mode 100644 index 00000000..d30650fa --- /dev/null +++ b/src/images/icons/BeamImpact.svg @@ -0,0 +1,642 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Beamery.svg b/src/images/icons/Beamery.svg new file mode 100644 index 00000000..c465feb1 --- /dev/null +++ b/src/images/icons/Beamery.svg @@ -0,0 +1,20 @@ + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Beeshop.svg b/src/images/icons/Beeshop.svg new file mode 100644 index 00000000..715cf292 --- /dev/null +++ b/src/images/icons/Beeshop.svg @@ -0,0 +1,100 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Beezer.svg b/src/images/icons/Beezer.svg new file mode 100644 index 00000000..829d7aa9 --- /dev/null +++ b/src/images/icons/Beezer.svg @@ -0,0 +1,140 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Behzi.svg b/src/images/icons/Behzi.svg new file mode 100644 index 00000000..f172c1f0 --- /dev/null +++ b/src/images/icons/Behzi.svg @@ -0,0 +1,14 @@ + + + + + + \ No newline at end of file diff --git a/src/images/icons/Bento.svg b/src/images/icons/Bento.svg new file mode 100644 index 00000000..5b87f4dd --- /dev/null +++ b/src/images/icons/Bento.svg @@ -0,0 +1,207 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/BernetCloud.svg b/src/images/icons/BernetCloud.svg new file mode 100644 index 00000000..9c6452ee --- /dev/null +++ b/src/images/icons/BernetCloud.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/BerqWP.svg b/src/images/icons/BerqWP.svg new file mode 100644 index 00000000..9462216d --- /dev/null +++ b/src/images/icons/BerqWP.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/BespokeChat.svg b/src/images/icons/BespokeChat.svg new file mode 100644 index 00000000..9e37b229 --- /dev/null +++ b/src/images/icons/BespokeChat.svg @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Bestie.svg b/src/images/icons/Bestie.svg new file mode 100644 index 00000000..708c6481 --- /dev/null +++ b/src/images/icons/Bestie.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/Bettermode.svg b/src/images/icons/Bettermode.svg new file mode 100644 index 00000000..88f5bd78 --- /dev/null +++ b/src/images/icons/Bettermode.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/Bevy.svg b/src/images/icons/Bevy.svg new file mode 100644 index 00000000..6a30d8be --- /dev/null +++ b/src/images/icons/Bevy.svg @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Beyond.svg b/src/images/icons/Beyond.svg new file mode 100644 index 00000000..d565732b --- /dev/null +++ b/src/images/icons/Beyond.svg @@ -0,0 +1,102 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Beyonk.svg b/src/images/icons/Beyonk.svg new file mode 100644 index 00000000..a49410d2 --- /dev/null +++ b/src/images/icons/Beyonk.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/BigMarker.svg b/src/images/icons/BigMarker.svg new file mode 100644 index 00000000..588f453a --- /dev/null +++ b/src/images/icons/BigMarker.svg @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Bigshop.svg b/src/images/icons/Bigshop.svg new file mode 100644 index 00000000..df68610b --- /dev/null +++ b/src/images/icons/Bigshop.svg @@ -0,0 +1,81 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Bileto.svg b/src/images/icons/Bileto.svg new file mode 100644 index 00000000..c411268c --- /dev/null +++ b/src/images/icons/Bileto.svg @@ -0,0 +1,14 @@ + + + + + + \ No newline at end of file diff --git a/src/images/icons/Billgang.svg b/src/images/icons/Billgang.svg new file mode 100644 index 00000000..b2158180 --- /dev/null +++ b/src/images/icons/Billgang.svg @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/BirdSeed.svg b/src/images/icons/BirdSeed.svg new file mode 100644 index 00000000..c5b5fbf2 --- /dev/null +++ b/src/images/icons/BirdSeed.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/BitPay.svg b/src/images/icons/BitPay.svg new file mode 100644 index 00000000..0ecebb05 --- /dev/null +++ b/src/images/icons/BitPay.svg @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/BizSpring.svg b/src/images/icons/BizSpring.svg new file mode 100644 index 00000000..756105c4 --- /dev/null +++ b/src/images/icons/BizSpring.svg @@ -0,0 +1,111 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/BlackBook.svg b/src/images/icons/BlackBook.svg new file mode 100644 index 00000000..886878c9 --- /dev/null +++ b/src/images/icons/BlackBook.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/BlackCrow.svg b/src/images/icons/BlackCrow.svg new file mode 100644 index 00000000..423d8379 --- /dev/null +++ b/src/images/icons/BlackCrow.svg @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/images/icons/Blackcart.svg b/src/images/icons/Blackcart.svg new file mode 100644 index 00000000..bdbba631 --- /dev/null +++ b/src/images/icons/Blackcart.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Blazor.png b/src/images/icons/Blazor.png deleted file mode 100644 index 08283f19..00000000 Binary files a/src/images/icons/Blazor.png and /dev/null differ diff --git a/src/images/icons/Blazor.svg b/src/images/icons/Blazor.svg new file mode 100644 index 00000000..2e4dc887 --- /dev/null +++ b/src/images/icons/Blazor.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Blendee.svg b/src/images/icons/Blendee.svg new file mode 100644 index 00000000..38b45249 --- /dev/null +++ b/src/images/icons/Blendee.svg @@ -0,0 +1,14 @@ + + + + + + \ No newline at end of file diff --git a/src/images/icons/Blendle.svg b/src/images/icons/Blendle.svg new file mode 100644 index 00000000..8b23baa1 --- /dev/null +++ b/src/images/icons/Blendle.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Blinklink.svg b/src/images/icons/Blinklink.svg new file mode 100644 index 00000000..d44db221 --- /dev/null +++ b/src/images/icons/Blinklink.svg @@ -0,0 +1,162 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Blip.svg b/src/images/icons/Blip.svg new file mode 100644 index 00000000..8a5dc9ae --- /dev/null +++ b/src/images/icons/Blip.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/Blippa.svg b/src/images/icons/Blippa.svg new file mode 100644 index 00000000..53c10f11 --- /dev/null +++ b/src/images/icons/Blippa.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/images/icons/Blogger.png b/src/images/icons/Blogger.png deleted file mode 100644 index 17bd56bd..00000000 Binary files a/src/images/icons/Blogger.png and /dev/null differ diff --git a/src/images/icons/Blogger.svg b/src/images/icons/Blogger.svg new file mode 100644 index 00000000..564432e1 --- /dev/null +++ b/src/images/icons/Blogger.svg @@ -0,0 +1,14 @@ + + + + + + \ No newline at end of file diff --git a/src/images/icons/BlokID.svg b/src/images/icons/BlokID.svg new file mode 100644 index 00000000..a485898a --- /dev/null +++ b/src/images/icons/BlokID.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/images/icons/Bloom.svg b/src/images/icons/Bloom.svg new file mode 100644 index 00000000..aa5db6df --- /dev/null +++ b/src/images/icons/Bloom.svg @@ -0,0 +1,17 @@ + + + + + + + \ No newline at end of file diff --git a/src/images/icons/BloomIO.svg b/src/images/icons/BloomIO.svg new file mode 100644 index 00000000..f6ab0418 --- /dev/null +++ b/src/images/icons/BloomIO.svg @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/BloomWine.svg b/src/images/icons/BloomWine.svg new file mode 100644 index 00000000..283aff9f --- /dev/null +++ b/src/images/icons/BloomWine.svg @@ -0,0 +1,32 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Bludit.svg b/src/images/icons/Bludit.svg new file mode 100644 index 00000000..8b2cdf78 --- /dev/null +++ b/src/images/icons/Bludit.svg @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Blutui.svg b/src/images/icons/Blutui.svg new file mode 100644 index 00000000..b92f30f8 --- /dev/null +++ b/src/images/icons/Blutui.svg @@ -0,0 +1,12 @@ + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/BoatChat.svg b/src/images/icons/BoatChat.svg new file mode 100644 index 00000000..dcef9d87 --- /dev/null +++ b/src/images/icons/BoatChat.svg @@ -0,0 +1,572 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Bobgo.svg b/src/images/icons/Bobgo.svg new file mode 100644 index 00000000..e5327f34 --- /dev/null +++ b/src/images/icons/Bobgo.svg @@ -0,0 +1,17 @@ + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Boei.svg b/src/images/icons/Boei.svg new file mode 100644 index 00000000..b2ae085c --- /dev/null +++ b/src/images/icons/Boei.svg @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Bogos.svg b/src/images/icons/Bogos.svg new file mode 100644 index 00000000..e40c14c2 --- /dev/null +++ b/src/images/icons/Bogos.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/BoldOptions.svg b/src/images/icons/BoldOptions.svg new file mode 100644 index 00000000..4bc726f8 --- /dev/null +++ b/src/images/icons/BoldOptions.svg @@ -0,0 +1,201 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Bonsai.svg b/src/images/icons/Bonsai.svg new file mode 100644 index 00000000..d4e73d11 --- /dev/null +++ b/src/images/icons/Bonsai.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/BookNPay.svg b/src/images/icons/BookNPay.svg new file mode 100644 index 00000000..4bef7724 --- /dev/null +++ b/src/images/icons/BookNPay.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/Bookboost.svg b/src/images/icons/Bookboost.svg new file mode 100644 index 00000000..ba1bf29f --- /dev/null +++ b/src/images/icons/Bookboost.svg @@ -0,0 +1,12 @@ + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Booked.svg b/src/images/icons/Booked.svg new file mode 100644 index 00000000..b20dd450 --- /dev/null +++ b/src/images/icons/Booked.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/BookingExperts.svg b/src/images/icons/BookingExperts.svg new file mode 100644 index 00000000..a187d0e4 --- /dev/null +++ b/src/images/icons/BookingExperts.svg @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/BookingFactory.svg b/src/images/icons/BookingFactory.svg new file mode 100644 index 00000000..fdb716a0 --- /dev/null +++ b/src/images/icons/BookingFactory.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/Bookitit.svg b/src/images/icons/Bookitit.svg new file mode 100644 index 00000000..bcb8ab69 --- /dev/null +++ b/src/images/icons/Bookitit.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/images/icons/Bookteq.svg b/src/images/icons/Bookteq.svg new file mode 100644 index 00000000..18116f43 --- /dev/null +++ b/src/images/icons/Bookteq.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/images/icons/BoolTypeScript.svg b/src/images/icons/BoolTypeScript.svg new file mode 100644 index 00000000..06f581d0 --- /dev/null +++ b/src/images/icons/BoolTypeScript.svg @@ -0,0 +1,12 @@ + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Bootpay.svg b/src/images/icons/Bootpay.svg new file mode 100644 index 00000000..ebdcaa14 --- /dev/null +++ b/src/images/icons/Bootpay.svg @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Bot9.svg b/src/images/icons/Bot9.svg new file mode 100644 index 00000000..39a2771d --- /dev/null +++ b/src/images/icons/Bot9.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/BotStar.svg b/src/images/icons/BotStar.svg new file mode 100644 index 00000000..c113bba8 --- /dev/null +++ b/src/images/icons/BotStar.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Bothive.svg b/src/images/icons/Bothive.svg new file mode 100644 index 00000000..0b7b87bd --- /dev/null +++ b/src/images/icons/Bothive.svg @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Botpress.svg b/src/images/icons/Botpress.svg new file mode 100644 index 00000000..e225d0e7 --- /dev/null +++ b/src/images/icons/Botpress.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/images/icons/Botsify.svg b/src/images/icons/Botsify.svg new file mode 100644 index 00000000..4f25ee60 --- /dev/null +++ b/src/images/icons/Botsify.svg @@ -0,0 +1,464 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Botsonic.svg b/src/images/icons/Botsonic.svg new file mode 100644 index 00000000..460b8945 --- /dev/null +++ b/src/images/icons/Botsonic.svg @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Bottle360.svg b/src/images/icons/Bottle360.svg new file mode 100644 index 00000000..5a8b3aa3 --- /dev/null +++ b/src/images/icons/Bottle360.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/src/images/icons/BounceCommerce.svg b/src/images/icons/BounceCommerce.svg new file mode 100644 index 00000000..df6b4318 --- /dev/null +++ b/src/images/icons/BounceCommerce.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Boxmode.svg b/src/images/icons/Boxmode.svg new file mode 100644 index 00000000..d7622933 --- /dev/null +++ b/src/images/icons/Boxmode.svg @@ -0,0 +1,32 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Brainlead.svg b/src/images/icons/Brainlead.svg new file mode 100644 index 00000000..c26adecc --- /dev/null +++ b/src/images/icons/Brainlead.svg @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/BrandBuilderAI.svg b/src/images/icons/BrandBuilderAI.svg new file mode 100644 index 00000000..7a5e3641 --- /dev/null +++ b/src/images/icons/BrandBuilderAI.svg @@ -0,0 +1,378 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Brandquiz.svg b/src/images/icons/Brandquiz.svg new file mode 100644 index 00000000..989e4851 --- /dev/null +++ b/src/images/icons/Brandquiz.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/BreadButter.svg b/src/images/icons/BreadButter.svg new file mode 100644 index 00000000..bbce4e38 --- /dev/null +++ b/src/images/icons/BreadButter.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Breeze.svg b/src/images/icons/Breeze.svg new file mode 100644 index 00000000..3fc95640 --- /dev/null +++ b/src/images/icons/Breeze.svg @@ -0,0 +1,14 @@ + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/BreezyHR.svg b/src/images/icons/BreezyHR.svg new file mode 100644 index 00000000..d36974d9 --- /dev/null +++ b/src/images/icons/BreezyHR.svg @@ -0,0 +1,84 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/BridgerPay.svg b/src/images/icons/BridgerPay.svg new file mode 100644 index 00000000..cc649d84 --- /dev/null +++ b/src/images/icons/BridgerPay.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Bringie.svg b/src/images/icons/Bringie.svg new file mode 100644 index 00000000..29cc8743 --- /dev/null +++ b/src/images/icons/Bringie.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/BrinkCommerce.svg b/src/images/icons/BrinkCommerce.svg new file mode 100644 index 00000000..24dc6907 --- /dev/null +++ b/src/images/icons/BrinkCommerce.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Briqpay.svg b/src/images/icons/Briqpay.svg new file mode 100644 index 00000000..5f82b843 --- /dev/null +++ b/src/images/icons/Briqpay.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Brizy.svg b/src/images/icons/Brizy.svg new file mode 100644 index 00000000..71ed6209 --- /dev/null +++ b/src/images/icons/Brizy.svg @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Browsee.svg b/src/images/icons/Browsee.svg new file mode 100644 index 00000000..e4b49823 --- /dev/null +++ b/src/images/icons/Browsee.svg @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Brushd.svg b/src/images/icons/Brushd.svg new file mode 100644 index 00000000..476db91e --- /dev/null +++ b/src/images/icons/Brushd.svg @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Builder.svg b/src/images/icons/Builder.svg index 2af96827..d6aa0326 100644 --- a/src/images/icons/Builder.svg +++ b/src/images/icons/Builder.svg @@ -1 +1,11 @@ - + + + + + \ No newline at end of file diff --git a/src/images/icons/Bunting.svg b/src/images/icons/Bunting.svg new file mode 100644 index 00000000..f98cfd0f --- /dev/null +++ b/src/images/icons/Bunting.svg @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Burst.svg b/src/images/icons/Burst.svg new file mode 100644 index 00000000..a672583f --- /dev/null +++ b/src/images/icons/Burst.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/src/images/icons/Busify.svg b/src/images/icons/Busify.svg new file mode 100644 index 00000000..a42e6bd1 --- /dev/null +++ b/src/images/icons/Busify.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/ButterMove.svg b/src/images/icons/ButterMove.svg new file mode 100644 index 00000000..dfa8c20b --- /dev/null +++ b/src/images/icons/ButterMove.svg @@ -0,0 +1,12 @@ + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Buyee.svg b/src/images/icons/Buyee.svg new file mode 100644 index 00000000..03c3ceac --- /dev/null +++ b/src/images/icons/Buyee.svg @@ -0,0 +1,23 @@ + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Buyist.svg b/src/images/icons/Buyist.svg new file mode 100644 index 00000000..ef700a54 --- /dev/null +++ b/src/images/icons/Buyist.svg @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/CAPYS.svg b/src/images/icons/CAPYS.svg new file mode 100644 index 00000000..c30f0fcc --- /dev/null +++ b/src/images/icons/CAPYS.svg @@ -0,0 +1,114 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/CATS.svg b/src/images/icons/CATS.svg new file mode 100644 index 00000000..f438013f --- /dev/null +++ b/src/images/icons/CATS.svg @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/CIMcloud.svg b/src/images/icons/CIMcloud.svg new file mode 100644 index 00000000..e5e19f80 --- /dev/null +++ b/src/images/icons/CIMcloud.svg @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/CINC.svg b/src/images/icons/CINC.svg new file mode 100644 index 00000000..13c8b0e8 --- /dev/null +++ b/src/images/icons/CINC.svg @@ -0,0 +1,26 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/CLIKdata.svg b/src/images/icons/CLIKdata.svg new file mode 100644 index 00000000..a0d4bee9 --- /dev/null +++ b/src/images/icons/CLIKdata.svg @@ -0,0 +1,138 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/CMSCaddy.svg b/src/images/icons/CMSCaddy.svg new file mode 100644 index 00000000..894f3eaa --- /dev/null +++ b/src/images/icons/CMSCaddy.svg @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/CMoffer.svg b/src/images/icons/CMoffer.svg new file mode 100644 index 00000000..1603e10a --- /dev/null +++ b/src/images/icons/CMoffer.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/COCON.svg b/src/images/icons/COCON.svg new file mode 100644 index 00000000..4f287d0b --- /dev/null +++ b/src/images/icons/COCON.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/CRMBOOST.svg b/src/images/icons/CRMBOOST.svg new file mode 100644 index 00000000..8d843afc --- /dev/null +++ b/src/images/icons/CRMBOOST.svg @@ -0,0 +1,17 @@ + + + + + + + \ No newline at end of file diff --git a/src/images/icons/CRMDoneBetter.svg b/src/images/icons/CRMDoneBetter.svg new file mode 100644 index 00000000..dc42e01e --- /dev/null +++ b/src/images/icons/CRMDoneBetter.svg @@ -0,0 +1,510 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/CTAwidget.svg b/src/images/icons/CTAwidget.svg new file mode 100644 index 00000000..4261d846 --- /dev/null +++ b/src/images/icons/CTAwidget.svg @@ -0,0 +1,26 @@ + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/CTRWow.svg b/src/images/icons/CTRWow.svg new file mode 100644 index 00000000..d0257f14 --- /dev/null +++ b/src/images/icons/CTRWow.svg @@ -0,0 +1,13 @@ + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/CUChat.svg b/src/images/icons/CUChat.svg new file mode 100644 index 00000000..99f11702 --- /dev/null +++ b/src/images/icons/CUChat.svg @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/src/images/icons/CUE.svg b/src/images/icons/CUE.svg new file mode 100644 index 00000000..7dab05ce --- /dev/null +++ b/src/images/icons/CUE.svg @@ -0,0 +1,105 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/CXDP.svg b/src/images/icons/CXDP.svg new file mode 100644 index 00000000..d9dad981 --- /dev/null +++ b/src/images/icons/CXDP.svg @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/CYBERBIZ.svg b/src/images/icons/CYBERBIZ.svg new file mode 100644 index 00000000..cfef3c33 --- /dev/null +++ b/src/images/icons/CYBERBIZ.svg @@ -0,0 +1,15 @@ + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Cackle.svg b/src/images/icons/Cackle.svg new file mode 100644 index 00000000..38ee80af --- /dev/null +++ b/src/images/icons/Cackle.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/CaliberMind.svg b/src/images/icons/CaliberMind.svg new file mode 100644 index 00000000..466f54e8 --- /dev/null +++ b/src/images/icons/CaliberMind.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/CallRoot.svg b/src/images/icons/CallRoot.svg new file mode 100644 index 00000000..9c72f19f --- /dev/null +++ b/src/images/icons/CallRoot.svg @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Campflow.svg b/src/images/icons/Campflow.svg new file mode 100644 index 00000000..42e327cb --- /dev/null +++ b/src/images/icons/Campflow.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/images/icons/CanJS.svg b/src/images/icons/CanJS.svg new file mode 100644 index 00000000..a7de7f36 --- /dev/null +++ b/src/images/icons/CanJS.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/images/icons/Candid.svg b/src/images/icons/Candid.svg new file mode 100644 index 00000000..1735350b --- /dev/null +++ b/src/images/icons/Candid.svg @@ -0,0 +1,777 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/CanopyConnect.svg b/src/images/icons/CanopyConnect.svg new file mode 100644 index 00000000..01e79fb8 --- /dev/null +++ b/src/images/icons/CanopyConnect.svg @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Canvy.svg b/src/images/icons/Canvy.svg new file mode 100644 index 00000000..df8034f7 --- /dev/null +++ b/src/images/icons/Canvy.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Capacity.svg b/src/images/icons/Capacity.svg new file mode 100644 index 00000000..b9a670cf --- /dev/null +++ b/src/images/icons/Capacity.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Captify.svg b/src/images/icons/Captify.svg new file mode 100644 index 00000000..6635f43b --- /dev/null +++ b/src/images/icons/Captify.svg @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Capturly.svg b/src/images/icons/Capturly.svg new file mode 100644 index 00000000..ca9c8c97 --- /dev/null +++ b/src/images/icons/Capturly.svg @@ -0,0 +1,12 @@ + + + + + + \ No newline at end of file diff --git a/src/images/icons/CarChat24.svg b/src/images/icons/CarChat24.svg new file mode 100644 index 00000000..55893fc4 --- /dev/null +++ b/src/images/icons/CarChat24.svg @@ -0,0 +1,158 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Caramella.svg b/src/images/icons/Caramella.svg new file mode 100644 index 00000000..9d13b9f2 --- /dev/null +++ b/src/images/icons/Caramella.svg @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/CarbonDesignSystem.svg b/src/images/icons/CarbonDesignSystem.svg new file mode 100644 index 00000000..1e53da53 --- /dev/null +++ b/src/images/icons/CarbonDesignSystem.svg @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Cardina.svg b/src/images/icons/Cardina.svg new file mode 100644 index 00000000..4264604e --- /dev/null +++ b/src/images/icons/Cardina.svg @@ -0,0 +1,125 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/CargoServer.svg b/src/images/icons/CargoServer.svg new file mode 100644 index 00000000..51119c4d --- /dev/null +++ b/src/images/icons/CargoServer.svg @@ -0,0 +1,17 @@ + + + + + + + \ No newline at end of file diff --git a/src/images/icons/CartBot.svg b/src/images/icons/CartBot.svg new file mode 100644 index 00000000..8fa9a1af --- /dev/null +++ b/src/images/icons/CartBot.svg @@ -0,0 +1,72 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/CartHook.svg b/src/images/icons/CartHook.svg new file mode 100644 index 00000000..2a11eb57 --- /dev/null +++ b/src/images/icons/CartHook.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/CartPops.svg b/src/images/icons/CartPops.svg new file mode 100644 index 00000000..a607d0b3 --- /dev/null +++ b/src/images/icons/CartPops.svg @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/CartRocket.svg b/src/images/icons/CartRocket.svg new file mode 100644 index 00000000..dc0c4b03 --- /dev/null +++ b/src/images/icons/CartRocket.svg @@ -0,0 +1,89 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Carta.svg b/src/images/icons/Carta.svg new file mode 100644 index 00000000..1dbbfbbd --- /dev/null +++ b/src/images/icons/Carta.svg @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/CarteraCommerce.svg b/src/images/icons/CarteraCommerce.svg new file mode 100644 index 00000000..0cbdb260 --- /dev/null +++ b/src/images/icons/CarteraCommerce.svg @@ -0,0 +1,123 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Cartflows.svg b/src/images/icons/Cartflows.svg new file mode 100644 index 00000000..6e484140 --- /dev/null +++ b/src/images/icons/Cartflows.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/Cartful.svg b/src/images/icons/Cartful.svg new file mode 100644 index 00000000..13cbdbed --- /dev/null +++ b/src/images/icons/Cartful.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/Carto.svg b/src/images/icons/Carto.svg new file mode 100644 index 00000000..fce7953e --- /dev/null +++ b/src/images/icons/Carto.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/Carussel.svg b/src/images/icons/Carussel.svg new file mode 100644 index 00000000..2022b3f5 --- /dev/null +++ b/src/images/icons/Carussel.svg @@ -0,0 +1,123 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Casafari.svg b/src/images/icons/Casafari.svg new file mode 100644 index 00000000..6c017aa9 --- /dev/null +++ b/src/images/icons/Casafari.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/CatchJS.svg b/src/images/icons/CatchJS.svg new file mode 100644 index 00000000..d435b572 --- /dev/null +++ b/src/images/icons/CatchJS.svg @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Celebros.svg b/src/images/icons/Celebros.svg new file mode 100644 index 00000000..c7a9d029 --- /dev/null +++ b/src/images/icons/Celebros.svg @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Celerant.svg b/src/images/icons/Celerant.svg new file mode 100644 index 00000000..691d7627 --- /dev/null +++ b/src/images/icons/Celerant.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/Cellxpert.svg b/src/images/icons/Cellxpert.svg new file mode 100644 index 00000000..7ae73ea8 --- /dev/null +++ b/src/images/icons/Cellxpert.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/src/images/icons/Cerkl.svg b/src/images/icons/Cerkl.svg new file mode 100644 index 00000000..5098067c --- /dev/null +++ b/src/images/icons/Cerkl.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Ceros.svg b/src/images/icons/Ceros.svg new file mode 100644 index 00000000..93c8eed5 --- /dev/null +++ b/src/images/icons/Ceros.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Certishopping.svg b/src/images/icons/Certishopping.svg new file mode 100644 index 00000000..ad9693ac --- /dev/null +++ b/src/images/icons/Certishopping.svg @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Cevoid.svg b/src/images/icons/Cevoid.svg new file mode 100644 index 00000000..6f4ea30b --- /dev/null +++ b/src/images/icons/Cevoid.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/Cfixe.svg b/src/images/icons/Cfixe.svg new file mode 100644 index 00000000..773fa0e7 --- /dev/null +++ b/src/images/icons/Cfixe.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/ChameleonPower.svg b/src/images/icons/ChameleonPower.svg new file mode 100644 index 00000000..864ceec9 --- /dev/null +++ b/src/images/icons/ChameleonPower.svg @@ -0,0 +1,392 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Chaser.svg b/src/images/icons/Chaser.svg new file mode 100644 index 00000000..3e6337e5 --- /dev/null +++ b/src/images/icons/Chaser.svg @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/src/images/icons/ChatBotBuilder.svg b/src/images/icons/ChatBotBuilder.svg new file mode 100644 index 00000000..d6626c82 --- /dev/null +++ b/src/images/icons/ChatBotBuilder.svg @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/ChatBullet.svg b/src/images/icons/ChatBullet.svg new file mode 100644 index 00000000..9dd3798b --- /dev/null +++ b/src/images/icons/ChatBullet.svg @@ -0,0 +1,72 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/ChatChasers.svg b/src/images/icons/ChatChasers.svg new file mode 100644 index 00000000..0510f2ba --- /dev/null +++ b/src/images/icons/ChatChasers.svg @@ -0,0 +1,30 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/ChatFood.svg b/src/images/icons/ChatFood.svg new file mode 100644 index 00000000..fa7dadb3 --- /dev/null +++ b/src/images/icons/ChatFood.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/ChatLab.svg b/src/images/icons/ChatLab.svg new file mode 100644 index 00000000..3c7b1cff --- /dev/null +++ b/src/images/icons/ChatLab.svg @@ -0,0 +1,769 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/ChatNode.svg b/src/images/icons/ChatNode.svg new file mode 100644 index 00000000..2b578640 --- /dev/null +++ b/src/images/icons/ChatNode.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/ChatThing.svg b/src/images/icons/ChatThing.svg new file mode 100644 index 00000000..aab5bfce --- /dev/null +++ b/src/images/icons/ChatThing.svg @@ -0,0 +1,75 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/ChatWING.svg b/src/images/icons/ChatWING.svg new file mode 100644 index 00000000..9c74db22 --- /dev/null +++ b/src/images/icons/ChatWING.svg @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/images/icons/Chatbaby.svg b/src/images/icons/Chatbaby.svg new file mode 100644 index 00000000..db3221fb --- /dev/null +++ b/src/images/icons/Chatbaby.svg @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Chatgo.svg b/src/images/icons/Chatgo.svg new file mode 100644 index 00000000..a221e0ab --- /dev/null +++ b/src/images/icons/Chatgo.svg @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Chative.svg b/src/images/icons/Chative.svg new file mode 100644 index 00000000..5b840a38 --- /dev/null +++ b/src/images/icons/Chative.svg @@ -0,0 +1,15 @@ + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Chatlio.svg b/src/images/icons/Chatlio.svg new file mode 100644 index 00000000..b4f9c3b8 --- /dev/null +++ b/src/images/icons/Chatlio.svg @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Chatlyn.svg b/src/images/icons/Chatlyn.svg new file mode 100644 index 00000000..899a8483 --- /dev/null +++ b/src/images/icons/Chatlyn.svg @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Chatroll.svg b/src/images/icons/Chatroll.svg new file mode 100644 index 00000000..0e82ac9f --- /dev/null +++ b/src/images/icons/Chatroll.svg @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Chatt.svg b/src/images/icons/Chatt.svg new file mode 100644 index 00000000..c6b7dec9 --- /dev/null +++ b/src/images/icons/Chatt.svg @@ -0,0 +1,23 @@ + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Chatway.svg b/src/images/icons/Chatway.svg new file mode 100644 index 00000000..d944d424 --- /dev/null +++ b/src/images/icons/Chatway.svg @@ -0,0 +1,23 @@ + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Chatwee.svg b/src/images/icons/Chatwee.svg new file mode 100644 index 00000000..5c80fb1e --- /dev/null +++ b/src/images/icons/Chatwee.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Chaty.svg b/src/images/icons/Chaty.svg new file mode 100644 index 00000000..84335f94 --- /dev/null +++ b/src/images/icons/Chaty.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Chayns.svg b/src/images/icons/Chayns.svg new file mode 100644 index 00000000..67a1b2aa --- /dev/null +++ b/src/images/icons/Chayns.svg @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Checkin.svg b/src/images/icons/Checkin.svg new file mode 100644 index 00000000..a4ebb56e --- /dev/null +++ b/src/images/icons/Checkin.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/CheckoutChamp.svg b/src/images/icons/CheckoutChamp.svg new file mode 100644 index 00000000..1d67a4ee --- /dev/null +++ b/src/images/icons/CheckoutChamp.svg @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/CheerPJ.svg b/src/images/icons/CheerPJ.svg new file mode 100644 index 00000000..9c7a327e --- /dev/null +++ b/src/images/icons/CheerPJ.svg @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Chefpreneur.svg b/src/images/icons/Chefpreneur.svg new file mode 100644 index 00000000..5764bdd2 --- /dev/null +++ b/src/images/icons/Chefpreneur.svg @@ -0,0 +1,390 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Circle.svg b/src/images/icons/Circle.svg index 4b09fb24..dd1c6a64 100644 --- a/src/images/icons/Circle.svg +++ b/src/images/icons/Circle.svg @@ -1,6 +1,11 @@ - - - - - + + + + + + + + + + diff --git a/src/images/icons/CitizenSpace.png b/src/images/icons/CitizenSpace.png deleted file mode 100644 index a4a626ba..00000000 Binary files a/src/images/icons/CitizenSpace.png and /dev/null differ diff --git a/src/images/icons/CitizenSpace.svg b/src/images/icons/CitizenSpace.svg new file mode 100644 index 00000000..884b4223 --- /dev/null +++ b/src/images/icons/CitizenSpace.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/CivicChamps.svg b/src/images/icons/CivicChamps.svg new file mode 100644 index 00000000..f1c839a5 --- /dev/null +++ b/src/images/icons/CivicChamps.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/CivicPlus.svg b/src/images/icons/CivicPlus.svg new file mode 100644 index 00000000..29645bdf --- /dev/null +++ b/src/images/icons/CivicPlus.svg @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Clarifai.svg b/src/images/icons/Clarifai.svg new file mode 100644 index 00000000..77f31d39 --- /dev/null +++ b/src/images/icons/Clarifai.svg @@ -0,0 +1,12 @@ + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Clarivoy.svg b/src/images/icons/Clarivoy.svg new file mode 100644 index 00000000..5f6753c3 --- /dev/null +++ b/src/images/icons/Clarivoy.svg @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/images/icons/Claspo.svg b/src/images/icons/Claspo.svg new file mode 100644 index 00000000..d5e1ca54 --- /dev/null +++ b/src/images/icons/Claspo.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/ClassCreator.svg b/src/images/icons/ClassCreator.svg new file mode 100644 index 00000000..05e2c040 --- /dev/null +++ b/src/images/icons/ClassCreator.svg @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/ClassFit.svg b/src/images/icons/ClassFit.svg new file mode 100644 index 00000000..0fe2b4b4 --- /dev/null +++ b/src/images/icons/ClassFit.svg @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Clayful.svg b/src/images/icons/Clayful.svg new file mode 100644 index 00000000..ceee9032 --- /dev/null +++ b/src/images/icons/Clayful.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/CleanCore.svg b/src/images/icons/CleanCore.svg new file mode 100644 index 00000000..721bf63a --- /dev/null +++ b/src/images/icons/CleanCore.svg @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/CleanTalk.svg b/src/images/icons/CleanTalk.svg new file mode 100644 index 00000000..16b0ee47 --- /dev/null +++ b/src/images/icons/CleanTalk.svg @@ -0,0 +1,14 @@ + + + + + + \ No newline at end of file diff --git a/src/images/icons/Clear.svg b/src/images/icons/Clear.svg new file mode 100644 index 00000000..cfe2a2fa --- /dev/null +++ b/src/images/icons/Clear.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/Clearlink.svg b/src/images/icons/Clearlink.svg new file mode 100644 index 00000000..db54e117 --- /dev/null +++ b/src/images/icons/Clearlink.svg @@ -0,0 +1,105 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Clearout.svg b/src/images/icons/Clearout.svg new file mode 100644 index 00000000..17846d5d --- /dev/null +++ b/src/images/icons/Clearout.svg @@ -0,0 +1,24 @@ + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Clearstream.svg b/src/images/icons/Clearstream.svg new file mode 100644 index 00000000..065ad979 --- /dev/null +++ b/src/images/icons/Clearstream.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/Cleeng.svg b/src/images/icons/Cleeng.svg new file mode 100644 index 00000000..0b4382dc --- /dev/null +++ b/src/images/icons/Cleeng.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/Clever.svg b/src/images/icons/Clever.svg new file mode 100644 index 00000000..244055a0 --- /dev/null +++ b/src/images/icons/Clever.svg @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/CleverData.svg b/src/images/icons/CleverData.svg new file mode 100644 index 00000000..9e5e2417 --- /dev/null +++ b/src/images/icons/CleverData.svg @@ -0,0 +1,21 @@ + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/CleverInsight.svg b/src/images/icons/CleverInsight.svg new file mode 100644 index 00000000..74e92e27 --- /dev/null +++ b/src/images/icons/CleverInsight.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/CleverReach.svg b/src/images/icons/CleverReach.svg new file mode 100644 index 00000000..ad88db03 --- /dev/null +++ b/src/images/icons/CleverReach.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Clevy.svg b/src/images/icons/Clevy.svg new file mode 100644 index 00000000..51cb8cdf --- /dev/null +++ b/src/images/icons/Clevy.svg @@ -0,0 +1,105 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/ClickBus.svg b/src/images/icons/ClickBus.svg new file mode 100644 index 00000000..19bf0b4b --- /dev/null +++ b/src/images/icons/ClickBus.svg @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/ClickChat.svg b/src/images/icons/ClickChat.svg new file mode 100644 index 00000000..0470964f --- /dev/null +++ b/src/images/icons/ClickChat.svg @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/ClickFreeze.svg b/src/images/icons/ClickFreeze.svg new file mode 100644 index 00000000..6198e931 --- /dev/null +++ b/src/images/icons/ClickFreeze.svg @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/images/icons/ClickGUARD.svg b/src/images/icons/ClickGUARD.svg new file mode 100644 index 00000000..8a3048f7 --- /dev/null +++ b/src/images/icons/ClickGUARD.svg @@ -0,0 +1,9 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/ClickReport.svg b/src/images/icons/ClickReport.svg new file mode 100644 index 00000000..9e4f5c85 --- /dev/null +++ b/src/images/icons/ClickReport.svg @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/src/images/icons/Clickaine.svg b/src/images/icons/Clickaine.svg new file mode 100644 index 00000000..7c3991d5 --- /dev/null +++ b/src/images/icons/Clickaine.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/Clickbrainiacs.svg b/src/images/icons/Clickbrainiacs.svg new file mode 100644 index 00000000..030aff76 --- /dev/null +++ b/src/images/icons/Clickbrainiacs.svg @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Clickskeks.svg b/src/images/icons/Clickskeks.svg new file mode 100644 index 00000000..ab249a79 --- /dev/null +++ b/src/images/icons/Clickskeks.svg @@ -0,0 +1,26 @@ + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Cliengo.svg b/src/images/icons/Cliengo.svg new file mode 100644 index 00000000..b19a55c7 --- /dev/null +++ b/src/images/icons/Cliengo.svg @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/ClientChatLive.svg b/src/images/icons/ClientChatLive.svg new file mode 100644 index 00000000..464159cf --- /dev/null +++ b/src/images/icons/ClientChatLive.svg @@ -0,0 +1,12 @@ + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/ClientDiary.svg b/src/images/icons/ClientDiary.svg new file mode 100644 index 00000000..0a509cee --- /dev/null +++ b/src/images/icons/ClientDiary.svg @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Clientacquisition.svg b/src/images/icons/Clientacquisition.svg new file mode 100644 index 00000000..8731d32d --- /dev/null +++ b/src/images/icons/Clientacquisition.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/images/icons/ClinicSense.svg b/src/images/icons/ClinicSense.svg new file mode 100644 index 00000000..a7cb9bf7 --- /dev/null +++ b/src/images/icons/ClinicSense.svg @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/ClinicSites.svg b/src/images/icons/ClinicSites.svg new file mode 100644 index 00000000..f26740f5 --- /dev/null +++ b/src/images/icons/ClinicSites.svg @@ -0,0 +1,80 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Clio.svg b/src/images/icons/Clio.svg new file mode 100644 index 00000000..c0d44099 --- /dev/null +++ b/src/images/icons/Clio.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/Clipara.svg b/src/images/icons/Clipara.svg new file mode 100644 index 00000000..ef065ea4 --- /dev/null +++ b/src/images/icons/Clipara.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Clonando.svg b/src/images/icons/Clonando.svg new file mode 100644 index 00000000..336d04a8 --- /dev/null +++ b/src/images/icons/Clonando.svg @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Clorder.svg b/src/images/icons/Clorder.svg new file mode 100644 index 00000000..093b35f4 --- /dev/null +++ b/src/images/icons/Clorder.svg @@ -0,0 +1,32 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/ClosingBoost.svg b/src/images/icons/ClosingBoost.svg new file mode 100644 index 00000000..ae1a02e7 --- /dev/null +++ b/src/images/icons/ClosingBoost.svg @@ -0,0 +1,487 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/CloudSponge.svg b/src/images/icons/CloudSponge.svg new file mode 100644 index 00000000..4185b59a --- /dev/null +++ b/src/images/icons/CloudSponge.svg @@ -0,0 +1,14 @@ + + + + + + \ No newline at end of file diff --git a/src/images/icons/Cloudfy.svg b/src/images/icons/Cloudfy.svg new file mode 100644 index 00000000..060d26db --- /dev/null +++ b/src/images/icons/Cloudfy.svg @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Clubcast.svg b/src/images/icons/Clubcast.svg new file mode 100644 index 00000000..63e6edfd --- /dev/null +++ b/src/images/icons/Clubcast.svg @@ -0,0 +1,81 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Cludo.svg b/src/images/icons/Cludo.svg new file mode 100644 index 00000000..16f2c9cb --- /dev/null +++ b/src/images/icons/Cludo.svg @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Clym.svg b/src/images/icons/Clym.svg new file mode 100644 index 00000000..76b7d652 --- /dev/null +++ b/src/images/icons/Clym.svg @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/CmonSite.svg b/src/images/icons/CmonSite.svg new file mode 100644 index 00000000..e74aa3ad --- /dev/null +++ b/src/images/icons/CmonSite.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Cnvert.svg b/src/images/icons/Cnvert.svg new file mode 100644 index 00000000..e007d3fd --- /dev/null +++ b/src/images/icons/Cnvert.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/CoCoAI.svg b/src/images/icons/CoCoAI.svg new file mode 100644 index 00000000..d449b5ce --- /dev/null +++ b/src/images/icons/CoCoAI.svg @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Coax.svg b/src/images/icons/Coax.svg new file mode 100644 index 00000000..76548e99 --- /dev/null +++ b/src/images/icons/Coax.svg @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/CodeClimate.svg b/src/images/icons/CodeClimate.svg new file mode 100644 index 00000000..65448101 --- /dev/null +++ b/src/images/icons/CodeClimate.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Codetipi.svg b/src/images/icons/Codetipi.svg new file mode 100644 index 00000000..911a383e --- /dev/null +++ b/src/images/icons/Codetipi.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/CoffeeCup.svg b/src/images/icons/CoffeeCup.svg new file mode 100644 index 00000000..1459cd9c --- /dev/null +++ b/src/images/icons/CoffeeCup.svg @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/CollectiveAudience.svg b/src/images/icons/CollectiveAudience.svg new file mode 100644 index 00000000..a657d7c6 --- /dev/null +++ b/src/images/icons/CollectiveAudience.svg @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/src/images/icons/ComarcheSklep.svg b/src/images/icons/ComarcheSklep.svg new file mode 100644 index 00000000..e292aac6 --- /dev/null +++ b/src/images/icons/ComarcheSklep.svg @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/CometChat.svg b/src/images/icons/CometChat.svg new file mode 100644 index 00000000..4b8fbd9e --- /dev/null +++ b/src/images/icons/CometChat.svg @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/CometD.svg b/src/images/icons/CometD.svg new file mode 100644 index 00000000..bd7fca69 --- /dev/null +++ b/src/images/icons/CometD.svg @@ -0,0 +1,180 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Comgem.svg b/src/images/icons/Comgem.svg new file mode 100644 index 00000000..26e23bf9 --- /dev/null +++ b/src/images/icons/Comgem.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/CommentSold.svg b/src/images/icons/CommentSold.svg new file mode 100644 index 00000000..914aab70 --- /dev/null +++ b/src/images/icons/CommentSold.svg @@ -0,0 +1,20 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Commerce Engine.svg b/src/images/icons/Commerce Engine.svg new file mode 100644 index 00000000..07899d3e --- /dev/null +++ b/src/images/icons/Commerce Engine.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/src/images/icons/CommerceHQ.svg b/src/images/icons/CommerceHQ.svg new file mode 100644 index 00000000..87750bc1 --- /dev/null +++ b/src/images/icons/CommerceHQ.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/CommerceVision.svg b/src/images/icons/CommerceVision.svg new file mode 100644 index 00000000..c58f886d --- /dev/null +++ b/src/images/icons/CommerceVision.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Commercio.svg b/src/images/icons/Commercio.svg new file mode 100644 index 00000000..ad8a4d9b --- /dev/null +++ b/src/images/icons/Commercio.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/CommonGround.svg b/src/images/icons/CommonGround.svg new file mode 100644 index 00000000..0e8b0a0b --- /dev/null +++ b/src/images/icons/CommonGround.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Comms.svg b/src/images/icons/Comms.svg new file mode 100644 index 00000000..b279bef6 --- /dev/null +++ b/src/images/icons/Comms.svg @@ -0,0 +1,95 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Community.svg b/src/images/icons/Community.svg new file mode 100644 index 00000000..cfea08e0 --- /dev/null +++ b/src/images/icons/Community.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/CommunityBox.svg b/src/images/icons/CommunityBox.svg new file mode 100644 index 00000000..c70e9afe --- /dev/null +++ b/src/images/icons/CommunityBox.svg @@ -0,0 +1,154 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/CompositeProducts.svg b/src/images/icons/CompositeProducts.svg new file mode 100644 index 00000000..39e7e46f --- /dev/null +++ b/src/images/icons/CompositeProducts.svg @@ -0,0 +1,78 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Conduit.svg b/src/images/icons/Conduit.svg new file mode 100644 index 00000000..8065a810 --- /dev/null +++ b/src/images/icons/Conduit.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/Conexa.svg b/src/images/icons/Conexa.svg new file mode 100644 index 00000000..dd6f4372 --- /dev/null +++ b/src/images/icons/Conexa.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Connectally.svg b/src/images/icons/Connectally.svg new file mode 100644 index 00000000..e19d70ab --- /dev/null +++ b/src/images/icons/Connectally.svg @@ -0,0 +1,32 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Conneqto.svg b/src/images/icons/Conneqto.svg new file mode 100644 index 00000000..f604db41 --- /dev/null +++ b/src/images/icons/Conneqto.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/Connexity.svg b/src/images/icons/Connexity.svg new file mode 100644 index 00000000..b627b99c --- /dev/null +++ b/src/images/icons/Connexity.svg @@ -0,0 +1,29 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Construct3.svg b/src/images/icons/Construct3.svg new file mode 100644 index 00000000..68e794b1 --- /dev/null +++ b/src/images/icons/Construct3.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/ConstructorIO.png b/src/images/icons/ConstructorIO.png new file mode 100644 index 00000000..d90eb5cb Binary files /dev/null and b/src/images/icons/ConstructorIO.png differ diff --git a/src/images/icons/ContactUs.svg b/src/images/icons/ContactUs.svg new file mode 100644 index 00000000..da89f310 --- /dev/null +++ b/src/images/icons/ContactUs.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/ContentBot.svg b/src/images/icons/ContentBot.svg new file mode 100644 index 00000000..9fc08f62 --- /dev/null +++ b/src/images/icons/ContentBot.svg @@ -0,0 +1,84 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/ContentGems.svg b/src/images/icons/ContentGems.svg new file mode 100644 index 00000000..bf6951de --- /dev/null +++ b/src/images/icons/ContentGems.svg @@ -0,0 +1,94 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Contentder.svg b/src/images/icons/Contentder.svg new file mode 100644 index 00000000..44ade771 --- /dev/null +++ b/src/images/icons/Contentder.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/Contento.svg b/src/images/icons/Contento.svg new file mode 100644 index 00000000..bdbced22 --- /dev/null +++ b/src/images/icons/Contento.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/Contents.svg b/src/images/icons/Contents.svg new file mode 100644 index 00000000..af391183 --- /dev/null +++ b/src/images/icons/Contents.svg @@ -0,0 +1,78 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Convead.svg b/src/images/icons/Convead.svg new file mode 100644 index 00000000..e6c60c50 --- /dev/null +++ b/src/images/icons/Convead.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/Converdiant.svg b/src/images/icons/Converdiant.svg new file mode 100644 index 00000000..35856b1d --- /dev/null +++ b/src/images/icons/Converdiant.svg @@ -0,0 +1,19 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Converge.svg b/src/images/icons/Converge.svg new file mode 100644 index 00000000..f27e6af1 --- /dev/null +++ b/src/images/icons/Converge.svg @@ -0,0 +1,135 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Convermax.svg b/src/images/icons/Convermax.svg new file mode 100644 index 00000000..b9dda62c --- /dev/null +++ b/src/images/icons/Convermax.svg @@ -0,0 +1,16 @@ + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/ConversionBear.svg b/src/images/icons/ConversionBear.svg new file mode 100644 index 00000000..48dffb35 --- /dev/null +++ b/src/images/icons/ConversionBear.svg @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/ConvertAndFlow.svg b/src/images/icons/ConvertAndFlow.svg new file mode 100644 index 00000000..85249133 --- /dev/null +++ b/src/images/icons/ConvertAndFlow.svg @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/images/icons/ConvertBox.svg b/src/images/icons/ConvertBox.svg new file mode 100644 index 00000000..dc46a123 --- /dev/null +++ b/src/images/icons/ConvertBox.svg @@ -0,0 +1,119 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Convertful.svg b/src/images/icons/Convertful.svg new file mode 100644 index 00000000..b7527d68 --- /dev/null +++ b/src/images/icons/Convertful.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Convertiser.svg b/src/images/icons/Convertiser.svg new file mode 100644 index 00000000..699b0078 --- /dev/null +++ b/src/images/icons/Convertiser.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Converzee.svg b/src/images/icons/Converzee.svg new file mode 100644 index 00000000..e8f8e181 --- /dev/null +++ b/src/images/icons/Converzee.svg @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Convincely.svg b/src/images/icons/Convincely.svg new file mode 100644 index 00000000..5b23f8db --- /dev/null +++ b/src/images/icons/Convincely.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/Convrrt.svg b/src/images/icons/Convrrt.svg new file mode 100644 index 00000000..4f3ae486 --- /dev/null +++ b/src/images/icons/Convrrt.svg @@ -0,0 +1,11 @@ + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Conword.svg b/src/images/icons/Conword.svg new file mode 100644 index 00000000..3c8b383f --- /dev/null +++ b/src/images/icons/Conword.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Cookie Seal.svg b/src/images/icons/Cookie Seal.svg index e8e7433f..9aabb5f6 100644 --- a/src/images/icons/Cookie Seal.svg +++ b/src/images/icons/Cookie Seal.svg @@ -1,20 +1,3 @@ - - - - - - - - - - - - - - - - - - - + + diff --git a/src/images/icons/Cooltix.svg b/src/images/icons/Cooltix.svg new file mode 100644 index 00000000..6e1066b5 --- /dev/null +++ b/src/images/icons/Cooltix.svg @@ -0,0 +1,9 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/Copernica.svg b/src/images/icons/Copernica.svg new file mode 100644 index 00000000..936b145e --- /dev/null +++ b/src/images/icons/Copernica.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/images/icons/CopilotAI.svg b/src/images/icons/CopilotAI.svg new file mode 100644 index 00000000..40d9d4dc --- /dev/null +++ b/src/images/icons/CopilotAI.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/CopilotLive.svg b/src/images/icons/CopilotLive.svg new file mode 100644 index 00000000..222611f3 --- /dev/null +++ b/src/images/icons/CopilotLive.svg @@ -0,0 +1,68 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Copiny.svg b/src/images/icons/Copiny.svg new file mode 100644 index 00000000..ddf53cb7 --- /dev/null +++ b/src/images/icons/Copiny.svg @@ -0,0 +1,32 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Cornerstone.svg b/src/images/icons/Cornerstone.svg new file mode 100644 index 00000000..bdeb0dfc --- /dev/null +++ b/src/images/icons/Cornerstone.svg @@ -0,0 +1,98 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Corso.svg b/src/images/icons/Corso.svg new file mode 100644 index 00000000..b8049b25 --- /dev/null +++ b/src/images/icons/Corso.svg @@ -0,0 +1,14 @@ + + + + + + \ No newline at end of file diff --git a/src/images/icons/CosmedCloud.svg b/src/images/icons/CosmedCloud.svg new file mode 100644 index 00000000..9d188b88 --- /dev/null +++ b/src/images/icons/CosmedCloud.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/CouchDB.png b/src/images/icons/CouchDB.png deleted file mode 100644 index a0a44225..00000000 Binary files a/src/images/icons/CouchDB.png and /dev/null differ diff --git a/src/images/icons/CouchDB.svg b/src/images/icons/CouchDB.svg new file mode 100644 index 00000000..1bdc3a4c --- /dev/null +++ b/src/images/icons/CouchDB.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/CounselingKit.svg b/src/images/icons/CounselingKit.svg new file mode 100644 index 00000000..4dcfc9ba --- /dev/null +++ b/src/images/icons/CounselingKit.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/Countable.svg b/src/images/icons/Countable.svg new file mode 100644 index 00000000..21455d56 --- /dev/null +++ b/src/images/icons/Countable.svg @@ -0,0 +1,23 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Cova.svg b/src/images/icons/Cova.svg new file mode 100644 index 00000000..941df210 --- /dev/null +++ b/src/images/icons/Cova.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/Cove.svg b/src/images/icons/Cove.svg new file mode 100644 index 00000000..1f81a97d --- /dev/null +++ b/src/images/icons/Cove.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Covery.svg b/src/images/icons/Covery.svg new file mode 100644 index 00000000..d5b69359 --- /dev/null +++ b/src/images/icons/Covery.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Creaitor.svg b/src/images/icons/Creaitor.svg new file mode 100644 index 00000000..a67defc9 --- /dev/null +++ b/src/images/icons/Creaitor.svg @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/CreateDemand.svg b/src/images/icons/CreateDemand.svg new file mode 100644 index 00000000..0a7c3a64 --- /dev/null +++ b/src/images/icons/CreateDemand.svg @@ -0,0 +1,572 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Creoline.svg b/src/images/icons/Creoline.svg new file mode 100644 index 00000000..7ccb93c9 --- /dev/null +++ b/src/images/icons/Creoline.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Crexi.svg b/src/images/icons/Crexi.svg new file mode 100644 index 00000000..345e3640 --- /dev/null +++ b/src/images/icons/Crexi.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/CriticalMention.svg b/src/images/icons/CriticalMention.svg new file mode 100644 index 00000000..aefd0f90 --- /dev/null +++ b/src/images/icons/CriticalMention.svg @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Croct.svg b/src/images/icons/Croct.svg new file mode 100644 index 00000000..ec6de122 --- /dev/null +++ b/src/images/icons/Croct.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Cronitor.svg b/src/images/icons/Cronitor.svg new file mode 100644 index 00000000..dd01ca3e --- /dev/null +++ b/src/images/icons/Cronitor.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Croogo.svg b/src/images/icons/Croogo.svg new file mode 100644 index 00000000..dc2f5a2c --- /dev/null +++ b/src/images/icons/Croogo.svg @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Crowdin.svg b/src/images/icons/Crowdin.svg new file mode 100644 index 00000000..58106517 --- /dev/null +++ b/src/images/icons/Crowdin.svg @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Crowdsignal.svg b/src/images/icons/Crowdsignal.svg new file mode 100644 index 00000000..bbb36e44 --- /dev/null +++ b/src/images/icons/Crowdsignal.svg @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/CuasalFunnel.svg b/src/images/icons/CuasalFunnel.svg new file mode 100644 index 00000000..a8de6729 --- /dev/null +++ b/src/images/icons/CuasalFunnel.svg @@ -0,0 +1,23 @@ + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Culqi.svg b/src/images/icons/Culqi.svg new file mode 100644 index 00000000..3ddfa48c --- /dev/null +++ b/src/images/icons/Culqi.svg @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Curaytor.svg b/src/images/icons/Curaytor.svg new file mode 100644 index 00000000..98aca488 --- /dev/null +++ b/src/images/icons/Curaytor.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Custobar.svg b/src/images/icons/Custobar.svg new file mode 100644 index 00000000..016f0a70 --- /dev/null +++ b/src/images/icons/Custobar.svg @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/CustomDonations.svg b/src/images/icons/CustomDonations.svg new file mode 100644 index 00000000..66f90208 --- /dev/null +++ b/src/images/icons/CustomDonations.svg @@ -0,0 +1,10 @@ + + + + + + \ No newline at end of file diff --git a/src/images/icons/CustomFit.svg b/src/images/icons/CustomFit.svg new file mode 100644 index 00000000..93df3eea --- /dev/null +++ b/src/images/icons/CustomFit.svg @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/CustomerStories.svg b/src/images/icons/CustomerStories.svg new file mode 100644 index 00000000..2fde086d --- /dev/null +++ b/src/images/icons/CustomerStories.svg @@ -0,0 +1,14 @@ + + + + + + \ No newline at end of file diff --git a/src/images/icons/CustomerSure.svg b/src/images/icons/CustomerSure.svg new file mode 100644 index 00000000..eed3f397 --- /dev/null +++ b/src/images/icons/CustomerSure.svg @@ -0,0 +1,14 @@ + + + + + + \ No newline at end of file diff --git a/src/images/icons/Cybot.svg b/src/images/icons/Cybot.svg new file mode 100644 index 00000000..56f799c9 --- /dev/null +++ b/src/images/icons/Cybot.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/DCKAPCommerce.svg b/src/images/icons/DCKAPCommerce.svg new file mode 100644 index 00000000..2ab8bb5f --- /dev/null +++ b/src/images/icons/DCKAPCommerce.svg @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/DESTOON.svg b/src/images/icons/DESTOON.svg new file mode 100644 index 00000000..e3fd890c --- /dev/null +++ b/src/images/icons/DESTOON.svg @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/DEUNA.svg b/src/images/icons/DEUNA.svg new file mode 100644 index 00000000..a440b84b --- /dev/null +++ b/src/images/icons/DEUNA.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/images/icons/DISH.svg b/src/images/icons/DISH.svg new file mode 100644 index 00000000..b98d9824 --- /dev/null +++ b/src/images/icons/DISH.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/DSpace.svg b/src/images/icons/DSpace.svg new file mode 100644 index 00000000..8b99b16d --- /dev/null +++ b/src/images/icons/DSpace.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Dable.svg b/src/images/icons/Dable.svg new file mode 100644 index 00000000..a7fe150f --- /dev/null +++ b/src/images/icons/Dable.svg @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Dakno.svg b/src/images/icons/Dakno.svg new file mode 100644 index 00000000..0b4469a0 --- /dev/null +++ b/src/images/icons/Dakno.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Daktela.svg b/src/images/icons/Daktela.svg new file mode 100644 index 00000000..b0053ba4 --- /dev/null +++ b/src/images/icons/Daktela.svg @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Dalue.svg b/src/images/icons/Dalue.svg new file mode 100644 index 00000000..eb738d83 --- /dev/null +++ b/src/images/icons/Dalue.svg @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/DanAds.svg b/src/images/icons/DanAds.svg new file mode 100644 index 00000000..a8f6d95a --- /dev/null +++ b/src/images/icons/DanAds.svg @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/DarwinPriicing.svg b/src/images/icons/DarwinPriicing.svg new file mode 100644 index 00000000..117184a4 --- /dev/null +++ b/src/images/icons/DarwinPriicing.svg @@ -0,0 +1,106 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/images/icons/DatHuis.svg b/src/images/icons/DatHuis.svg new file mode 100644 index 00000000..18a7d6da --- /dev/null +++ b/src/images/icons/DatHuis.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Data8.svg b/src/images/icons/Data8.svg new file mode 100644 index 00000000..97c72b23 --- /dev/null +++ b/src/images/icons/Data8.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/DataDojo.svg b/src/images/icons/DataDojo.svg new file mode 100644 index 00000000..9cb24567 --- /dev/null +++ b/src/images/icons/DataDojo.svg @@ -0,0 +1,79 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/DataNugget.svg b/src/images/icons/DataNugget.svg new file mode 100644 index 00000000..7f50e80d --- /dev/null +++ b/src/images/icons/DataNugget.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/images/icons/Datacrush.svg b/src/images/icons/Datacrush.svg new file mode 100644 index 00000000..a261bd44 --- /dev/null +++ b/src/images/icons/Datacrush.svg @@ -0,0 +1,26 @@ + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Datalitics.svg b/src/images/icons/Datalitics.svg new file mode 100644 index 00000000..ee64c1d8 --- /dev/null +++ b/src/images/icons/Datalitics.svg @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Datarize.svg b/src/images/icons/Datarize.svg new file mode 100644 index 00000000..d167ba88 --- /dev/null +++ b/src/images/icons/Datarize.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/Dataships.svg b/src/images/icons/Dataships.svg new file mode 100644 index 00000000..a6ff3b17 --- /dev/null +++ b/src/images/icons/Dataships.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/Datastar.svg b/src/images/icons/Datastar.svg new file mode 100644 index 00000000..0749dc42 --- /dev/null +++ b/src/images/icons/Datastar.svg @@ -0,0 +1,148 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Daxko.svg b/src/images/icons/Daxko.svg new file mode 100644 index 00000000..83e363ea --- /dev/null +++ b/src/images/icons/Daxko.svg @@ -0,0 +1,14 @@ + + + + + + \ No newline at end of file diff --git a/src/images/icons/DeadlineFunnel.svg b/src/images/icons/DeadlineFunnel.svg new file mode 100644 index 00000000..130a5f92 --- /dev/null +++ b/src/images/icons/DeadlineFunnel.svg @@ -0,0 +1,189 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/images/icons/DealAI.svg b/src/images/icons/DealAI.svg new file mode 100644 index 00000000..873d2f61 --- /dev/null +++ b/src/images/icons/DealAI.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Dealspotr.svg b/src/images/icons/Dealspotr.svg new file mode 100644 index 00000000..4ea118d3 --- /dev/null +++ b/src/images/icons/Dealspotr.svg @@ -0,0 +1,90 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/DearDoc.svg b/src/images/icons/DearDoc.svg new file mode 100644 index 00000000..5f5de7a4 --- /dev/null +++ b/src/images/icons/DearDoc.svg @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/DecapCMS.svg b/src/images/icons/DecapCMS.svg new file mode 100644 index 00000000..e3ca1224 --- /dev/null +++ b/src/images/icons/DecapCMS.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Deco.svg b/src/images/icons/Deco.svg new file mode 100644 index 00000000..efb397ee --- /dev/null +++ b/src/images/icons/Deco.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/DeepAR.svg b/src/images/icons/DeepAR.svg new file mode 100644 index 00000000..288fb996 --- /dev/null +++ b/src/images/icons/DeepAR.svg @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/DeepLawn.svg b/src/images/icons/DeepLawn.svg new file mode 100644 index 00000000..46a816f9 --- /dev/null +++ b/src/images/icons/DeepLawn.svg @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/DeepMarkit.svg b/src/images/icons/DeepMarkit.svg new file mode 100644 index 00000000..a671b8fd --- /dev/null +++ b/src/images/icons/DeepMarkit.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Deko.svg b/src/images/icons/Deko.svg new file mode 100644 index 00000000..8582d7a0 --- /dev/null +++ b/src/images/icons/Deko.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/images/icons/Delera.svg b/src/images/icons/Delera.svg new file mode 100644 index 00000000..d67c98e9 --- /dev/null +++ b/src/images/icons/Delera.svg @@ -0,0 +1,1079 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Delivra.svg b/src/images/icons/Delivra.svg new file mode 100644 index 00000000..efa2698b --- /dev/null +++ b/src/images/icons/Delivra.svg @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/DeltaMedia.svg b/src/images/icons/DeltaMedia.svg new file mode 100644 index 00000000..d2ea7020 --- /dev/null +++ b/src/images/icons/DeltaMedia.svg @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Dema.svg b/src/images/icons/Dema.svg new file mode 100644 index 00000000..266ce032 --- /dev/null +++ b/src/images/icons/Dema.svg @@ -0,0 +1,138 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Demandforce.svg b/src/images/icons/Demandforce.svg new file mode 100644 index 00000000..0723ba30 --- /dev/null +++ b/src/images/icons/Demandforce.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Dengage.svg b/src/images/icons/Dengage.svg new file mode 100644 index 00000000..7910b8c5 --- /dev/null +++ b/src/images/icons/Dengage.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Deriv.svg b/src/images/icons/Deriv.svg new file mode 100644 index 00000000..f647af75 --- /dev/null +++ b/src/images/icons/Deriv.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Descartes.svg b/src/images/icons/Descartes.svg new file mode 100644 index 00000000..ef91a767 --- /dev/null +++ b/src/images/icons/Descartes.svg @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Destini.svg b/src/images/icons/Destini.svg new file mode 100644 index 00000000..8db32bce --- /dev/null +++ b/src/images/icons/Destini.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Desty.svg b/src/images/icons/Desty.svg new file mode 100644 index 00000000..6e2499ea --- /dev/null +++ b/src/images/icons/Desty.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/DevRev.svg b/src/images/icons/DevRev.svg new file mode 100644 index 00000000..b26f4b1c --- /dev/null +++ b/src/images/icons/DevRev.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Develic.svg b/src/images/icons/Develic.svg new file mode 100644 index 00000000..79a97295 --- /dev/null +++ b/src/images/icons/Develic.svg @@ -0,0 +1,15 @@ + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/DevelopingAzerbaijan.svg b/src/images/icons/DevelopingAzerbaijan.svg new file mode 100644 index 00000000..df96dbcd --- /dev/null +++ b/src/images/icons/DevelopingAzerbaijan.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/images/icons/DevupUI.svg b/src/images/icons/DevupUI.svg new file mode 100644 index 00000000..73b90786 --- /dev/null +++ b/src/images/icons/DevupUI.svg @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/DevzCart.svg b/src/images/icons/DevzCart.svg new file mode 100644 index 00000000..0c189da6 --- /dev/null +++ b/src/images/icons/DevzCart.svg @@ -0,0 +1,19 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Dexem.svg b/src/images/icons/Dexem.svg new file mode 100644 index 00000000..f58dd65a --- /dev/null +++ b/src/images/icons/Dexem.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Dexter.svg b/src/images/icons/Dexter.svg new file mode 100644 index 00000000..70725ae0 --- /dev/null +++ b/src/images/icons/Dexter.svg @@ -0,0 +1,32 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/DialogInsight.svg b/src/images/icons/DialogInsight.svg new file mode 100644 index 00000000..731f4492 --- /dev/null +++ b/src/images/icons/DialogInsight.svg @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/DialogShift.svg b/src/images/icons/DialogShift.svg new file mode 100644 index 00000000..b739f838 --- /dev/null +++ b/src/images/icons/DialogShift.svg @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Dialogity.svg b/src/images/icons/Dialogity.svg new file mode 100644 index 00000000..55b08878 --- /dev/null +++ b/src/images/icons/Dialogity.svg @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Dice.svg b/src/images/icons/Dice.svg new file mode 100644 index 00000000..ad9a83b8 --- /dev/null +++ b/src/images/icons/Dice.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Didar.svg b/src/images/icons/Didar.svg new file mode 100644 index 00000000..865a836d --- /dev/null +++ b/src/images/icons/Didar.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Digioh.png b/src/images/icons/Digioh.png new file mode 100644 index 00000000..5e410320 Binary files /dev/null and b/src/images/icons/Digioh.png differ diff --git a/src/images/icons/Dimensions.svg b/src/images/icons/Dimensions.svg new file mode 100644 index 00000000..506f80f0 --- /dev/null +++ b/src/images/icons/Dimensions.svg @@ -0,0 +1,797 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Dimml.svg b/src/images/icons/Dimml.svg new file mode 100644 index 00000000..b04ba5e9 --- /dev/null +++ b/src/images/icons/Dimml.svg @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/DinaKunder.svg b/src/images/icons/DinaKunder.svg new file mode 100644 index 00000000..70ad7f09 --- /dev/null +++ b/src/images/icons/DinaKunder.svg @@ -0,0 +1,327 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Directorist.svg b/src/images/icons/Directorist.svg new file mode 100644 index 00000000..01970ccb --- /dev/null +++ b/src/images/icons/Directorist.svg @@ -0,0 +1,78 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Direktonline.svg b/src/images/icons/Direktonline.svg new file mode 100644 index 00000000..b03fb259 --- /dev/null +++ b/src/images/icons/Direktonline.svg @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Disciple.svg b/src/images/icons/Disciple.svg new file mode 100644 index 00000000..4f5a7584 --- /dev/null +++ b/src/images/icons/Disciple.svg @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/images/icons/Ditto.svg b/src/images/icons/Ditto.svg new file mode 100644 index 00000000..c668b9e2 --- /dev/null +++ b/src/images/icons/Ditto.svg @@ -0,0 +1,15 @@ + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Dixa.svg b/src/images/icons/Dixa.svg new file mode 100644 index 00000000..dee7f441 --- /dev/null +++ b/src/images/icons/Dixa.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/DocsBotAI.svg b/src/images/icons/DocsBotAI.svg new file mode 100644 index 00000000..4875d6e3 --- /dev/null +++ b/src/images/icons/DocsBotAI.svg @@ -0,0 +1,26 @@ + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Doctave.svg b/src/images/icons/Doctave.svg new file mode 100644 index 00000000..047d21ed --- /dev/null +++ b/src/images/icons/Doctave.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Dolead.svg b/src/images/icons/Dolead.svg new file mode 100644 index 00000000..1d59c54e --- /dev/null +++ b/src/images/icons/Dolead.svg @@ -0,0 +1,87 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/DoorLoop.svg b/src/images/icons/DoorLoop.svg new file mode 100644 index 00000000..3864b8dc --- /dev/null +++ b/src/images/icons/DoorLoop.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/Doorbell.svg b/src/images/icons/Doorbell.svg new file mode 100644 index 00000000..2f255646 --- /dev/null +++ b/src/images/icons/Doorbell.svg @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/DotGo.svg b/src/images/icons/DotGo.svg new file mode 100644 index 00000000..4302b974 --- /dev/null +++ b/src/images/icons/DotGo.svg @@ -0,0 +1,14 @@ + + + + + + \ No newline at end of file diff --git a/src/images/icons/DotPe.svg b/src/images/icons/DotPe.svg new file mode 100644 index 00000000..941b00b6 --- /dev/null +++ b/src/images/icons/DotPe.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/Douban.svg b/src/images/icons/Douban.svg new file mode 100644 index 00000000..214e2a69 --- /dev/null +++ b/src/images/icons/Douban.svg @@ -0,0 +1,102 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/DoubleTick.svg b/src/images/icons/DoubleTick.svg new file mode 100644 index 00000000..6d4d3686 --- /dev/null +++ b/src/images/icons/DoubleTick.svg @@ -0,0 +1,141 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Dover.svg b/src/images/icons/Dover.svg new file mode 100644 index 00000000..da628c43 --- /dev/null +++ b/src/images/icons/Dover.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/DrLeonardo.svg b/src/images/icons/DrLeonardo.svg new file mode 100644 index 00000000..d9cd92b0 --- /dev/null +++ b/src/images/icons/DrLeonardo.svg @@ -0,0 +1,282 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Drata.svg b/src/images/icons/Drata.svg new file mode 100644 index 00000000..924cfea6 --- /dev/null +++ b/src/images/icons/Drata.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Drinks.svg b/src/images/icons/Drinks.svg new file mode 100644 index 00000000..6b6590b6 --- /dev/null +++ b/src/images/icons/Drinks.svg @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Droip.svg b/src/images/icons/Droip.svg new file mode 100644 index 00000000..ea38d904 --- /dev/null +++ b/src/images/icons/Droip.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Droxy.svg b/src/images/icons/Droxy.svg new file mode 100644 index 00000000..613dbf34 --- /dev/null +++ b/src/images/icons/Droxy.svg @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Dukany.svg b/src/images/icons/Dukany.svg new file mode 100644 index 00000000..3e9a7baf --- /dev/null +++ b/src/images/icons/Dukany.svg @@ -0,0 +1,17 @@ + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Durable.svg b/src/images/icons/Durable.svg new file mode 100644 index 00000000..9d281315 --- /dev/null +++ b/src/images/icons/Durable.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/images/icons/DutchIS.svg b/src/images/icons/DutchIS.svg new file mode 100644 index 00000000..e0380794 --- /dev/null +++ b/src/images/icons/DutchIS.svg @@ -0,0 +1,132 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Dweet.svg b/src/images/icons/Dweet.svg new file mode 100644 index 00000000..b60b6410 --- /dev/null +++ b/src/images/icons/Dweet.svg @@ -0,0 +1,162 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Dwolla.svg b/src/images/icons/Dwolla.svg new file mode 100644 index 00000000..6561b891 --- /dev/null +++ b/src/images/icons/Dwolla.svg @@ -0,0 +1,12 @@ + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/E37.svg b/src/images/icons/E37.svg new file mode 100644 index 00000000..a313b32b --- /dev/null +++ b/src/images/icons/E37.svg @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/EADPlataforma.svg b/src/images/icons/EADPlataforma.svg new file mode 100644 index 00000000..e71672fa --- /dev/null +++ b/src/images/icons/EADPlataforma.svg @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/images/icons/ECBB.svg b/src/images/icons/ECBB.svg new file mode 100644 index 00000000..43ab7c45 --- /dev/null +++ b/src/images/icons/ECBB.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/Eagleview.svg b/src/images/icons/Eagleview.svg new file mode 100644 index 00000000..1c7bb9d8 --- /dev/null +++ b/src/images/icons/Eagleview.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/EarlyParrot.svg b/src/images/icons/EarlyParrot.svg new file mode 100644 index 00000000..15e13af0 --- /dev/null +++ b/src/images/icons/EarlyParrot.svg @@ -0,0 +1,75 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/EaselJS.svg b/src/images/icons/EaselJS.svg new file mode 100644 index 00000000..b5734bc5 --- /dev/null +++ b/src/images/icons/EaselJS.svg @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/EasiChat.svg b/src/images/icons/EasiChat.svg new file mode 100644 index 00000000..455a2012 --- /dev/null +++ b/src/images/icons/EasiChat.svg @@ -0,0 +1,15 @@ + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Easol.svg b/src/images/icons/Easol.svg new file mode 100644 index 00000000..c48749f7 --- /dev/null +++ b/src/images/icons/Easol.svg @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/EasyLiao.svg b/src/images/icons/EasyLiao.svg new file mode 100644 index 00000000..3dc29eca --- /dev/null +++ b/src/images/icons/EasyLiao.svg @@ -0,0 +1,26 @@ + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/EasyPolls.svg b/src/images/icons/EasyPolls.svg new file mode 100644 index 00000000..54673a8d --- /dev/null +++ b/src/images/icons/EasyPolls.svg @@ -0,0 +1,26 @@ + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/EasyRez.svg b/src/images/icons/EasyRez.svg new file mode 100644 index 00000000..842d73a9 --- /dev/null +++ b/src/images/icons/EasyRez.svg @@ -0,0 +1,14 @@ + + + + + + \ No newline at end of file diff --git a/src/images/icons/EasyWebinar.svg b/src/images/icons/EasyWebinar.svg new file mode 100644 index 00000000..0c694564 --- /dev/null +++ b/src/images/icons/EasyWebinar.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/EasyWeek.svg b/src/images/icons/EasyWeek.svg new file mode 100644 index 00000000..05630396 --- /dev/null +++ b/src/images/icons/EasyWeek.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/Easyling.svg b/src/images/icons/Easyling.svg new file mode 100644 index 00000000..a24ed146 --- /dev/null +++ b/src/images/icons/Easyling.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Easysize.svg b/src/images/icons/Easysize.svg new file mode 100644 index 00000000..db9d44c4 --- /dev/null +++ b/src/images/icons/Easysize.svg @@ -0,0 +1,7 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/EatStreet.svg b/src/images/icons/EatStreet.svg new file mode 100644 index 00000000..3b779fef --- /dev/null +++ b/src/images/icons/EatStreet.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/Eatself.svg b/src/images/icons/Eatself.svg new file mode 100644 index 00000000..fbb4da3f --- /dev/null +++ b/src/images/icons/Eatself.svg @@ -0,0 +1,131 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Eber.svg b/src/images/icons/Eber.svg new file mode 100644 index 00000000..7a556935 --- /dev/null +++ b/src/images/icons/Eber.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Ecal.svg b/src/images/icons/Ecal.svg new file mode 100644 index 00000000..49bda1a1 --- /dev/null +++ b/src/images/icons/Ecal.svg @@ -0,0 +1,24 @@ + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Ecbeing.svg b/src/images/icons/Ecbeing.svg new file mode 100644 index 00000000..7b15afba --- /dev/null +++ b/src/images/icons/Ecbeing.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/EcomCart.svg b/src/images/icons/EcomCart.svg new file mode 100644 index 00000000..dc4931ba --- /dev/null +++ b/src/images/icons/EcomCart.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/EcomX.svg b/src/images/icons/EcomX.svg new file mode 100644 index 00000000..cc12db44 --- /dev/null +++ b/src/images/icons/EcomX.svg @@ -0,0 +1,317 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Ecomtrack.svg b/src/images/icons/Ecomtrack.svg new file mode 100644 index 00000000..fdfd6576 --- /dev/null +++ b/src/images/icons/Ecomtrack.svg @@ -0,0 +1,17 @@ + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Ecomz.svg b/src/images/icons/Ecomz.svg new file mode 100644 index 00000000..fd033c68 --- /dev/null +++ b/src/images/icons/Ecomz.svg @@ -0,0 +1,106 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Edgemesh.png b/src/images/icons/Edgemesh.png new file mode 100644 index 00000000..8f3419f3 Binary files /dev/null and b/src/images/icons/Edgemesh.png differ diff --git a/src/images/icons/EditPlus.svg b/src/images/icons/EditPlus.svg new file mode 100644 index 00000000..23af434a --- /dev/null +++ b/src/images/icons/EditPlus.svg @@ -0,0 +1,315 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Edlio.svg b/src/images/icons/Edlio.svg new file mode 100644 index 00000000..4cfea8ec --- /dev/null +++ b/src/images/icons/Edlio.svg @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Edmingle.svg b/src/images/icons/Edmingle.svg new file mode 100644 index 00000000..9f148517 --- /dev/null +++ b/src/images/icons/Edmingle.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/Eggflow.svg b/src/images/icons/Eggflow.svg new file mode 100644 index 00000000..4d53f093 --- /dev/null +++ b/src/images/icons/Eggflow.svg @@ -0,0 +1,14 @@ + + + + + + \ No newline at end of file diff --git a/src/images/icons/ElasticPath.svg b/src/images/icons/ElasticPath.svg new file mode 100644 index 00000000..da193295 --- /dev/null +++ b/src/images/icons/ElasticPath.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Elenore.svg b/src/images/icons/Elenore.svg new file mode 100644 index 00000000..7de927c2 --- /dev/null +++ b/src/images/icons/Elenore.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/Elevio.svg b/src/images/icons/Elevio.svg new file mode 100644 index 00000000..768bcf2a --- /dev/null +++ b/src/images/icons/Elevio.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Elexio.svg b/src/images/icons/Elexio.svg new file mode 100644 index 00000000..9157e243 --- /dev/null +++ b/src/images/icons/Elexio.svg @@ -0,0 +1,14 @@ + + + + + + \ No newline at end of file diff --git a/src/images/icons/Elina.svg b/src/images/icons/Elina.svg new file mode 100644 index 00000000..ec73afb9 --- /dev/null +++ b/src/images/icons/Elina.svg @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Elromco.svg b/src/images/icons/Elromco.svg new file mode 100644 index 00000000..2660f133 --- /dev/null +++ b/src/images/icons/Elromco.svg @@ -0,0 +1,96 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Emaileri.svg b/src/images/icons/Emaileri.svg new file mode 100644 index 00000000..61c9d8a7 --- /dev/null +++ b/src/images/icons/Emaileri.svg @@ -0,0 +1,14 @@ + + + + + + \ No newline at end of file diff --git a/src/images/icons/Emergent.png b/src/images/icons/Emergent.png new file mode 100644 index 00000000..f3f58b6f Binary files /dev/null and b/src/images/icons/Emergent.png differ diff --git a/src/images/icons/Emfont.svg b/src/images/icons/Emfont.svg new file mode 100644 index 00000000..bb887a13 --- /dev/null +++ b/src/images/icons/Emfont.svg @@ -0,0 +1,11 @@ + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Emojicom.svg b/src/images/icons/Emojicom.svg new file mode 100644 index 00000000..ae7ff500 --- /dev/null +++ b/src/images/icons/Emojicom.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Enabase.svg b/src/images/icons/Enabase.svg new file mode 100644 index 00000000..384f158d --- /dev/null +++ b/src/images/icons/Enabase.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/Enagic.svg b/src/images/icons/Enagic.svg new file mode 100644 index 00000000..46ff87c3 --- /dev/null +++ b/src/images/icons/Enagic.svg @@ -0,0 +1,23 @@ + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Enecto.svg b/src/images/icons/Enecto.svg new file mode 100644 index 00000000..4dbd3343 --- /dev/null +++ b/src/images/icons/Enecto.svg @@ -0,0 +1,19 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Engaga.svg b/src/images/icons/Engaga.svg new file mode 100644 index 00000000..d6d5de65 --- /dev/null +++ b/src/images/icons/Engaga.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/Enjore.svg b/src/images/icons/Enjore.svg new file mode 100644 index 00000000..bb0e4f8b --- /dev/null +++ b/src/images/icons/Enjore.svg @@ -0,0 +1,95 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Enquisite.svg b/src/images/icons/Enquisite.svg new file mode 100644 index 00000000..8eb126a1 --- /dev/null +++ b/src/images/icons/Enquisite.svg @@ -0,0 +1,12 @@ + + + + + + \ No newline at end of file diff --git a/src/images/icons/Enrollware.svg b/src/images/icons/Enrollware.svg new file mode 100644 index 00000000..50805921 --- /dev/null +++ b/src/images/icons/Enrollware.svg @@ -0,0 +1,204 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Enterice.svg b/src/images/icons/Enterice.svg new file mode 100644 index 00000000..609ad66e --- /dev/null +++ b/src/images/icons/Enterice.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Entresoft.svg b/src/images/icons/Entresoft.svg new file mode 100644 index 00000000..743cdaf2 --- /dev/null +++ b/src/images/icons/Entresoft.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Enviopack.svg b/src/images/icons/Enviopack.svg new file mode 100644 index 00000000..e336bf1f --- /dev/null +++ b/src/images/icons/Enviopack.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Envoke.svg b/src/images/icons/Envoke.svg new file mode 100644 index 00000000..c96af613 --- /dev/null +++ b/src/images/icons/Envoke.svg @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/EnvolveTech.svg b/src/images/icons/EnvolveTech.svg new file mode 100644 index 00000000..fa629557 --- /dev/null +++ b/src/images/icons/EnvolveTech.svg @@ -0,0 +1,168 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Epicor.svg b/src/images/icons/Epicor.svg new file mode 100644 index 00000000..a8fadb34 --- /dev/null +++ b/src/images/icons/Epicor.svg @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/src/images/icons/Epoq.svg b/src/images/icons/Epoq.svg new file mode 100644 index 00000000..cf2fa112 --- /dev/null +++ b/src/images/icons/Epoq.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Erxes.svg b/src/images/icons/Erxes.svg new file mode 100644 index 00000000..fdc20b56 --- /dev/null +++ b/src/images/icons/Erxes.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/EspoCRM.svg b/src/images/icons/EspoCRM.svg index 79d96f8c..b0d719e5 100644 --- a/src/images/icons/EspoCRM.svg +++ b/src/images/icons/EspoCRM.svg @@ -1,82 +1,5 @@ - - - - - - - - - - - - - - - - - - - - - - + + + \ No newline at end of file diff --git a/src/images/icons/EstateTrack.svg b/src/images/icons/EstateTrack.svg new file mode 100644 index 00000000..12bd6274 --- /dev/null +++ b/src/images/icons/EstateTrack.svg @@ -0,0 +1,12 @@ + + + + + + \ No newline at end of file diff --git a/src/images/icons/Etch.svg b/src/images/icons/Etch.svg new file mode 100644 index 00000000..52517bd3 --- /dev/null +++ b/src/images/icons/Etch.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/images/icons/Etermio.svg b/src/images/icons/Etermio.svg new file mode 100644 index 00000000..6a38c6b4 --- /dev/null +++ b/src/images/icons/Etermio.svg @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Eveho.svg b/src/images/icons/Eveho.svg new file mode 100644 index 00000000..c0dd906e --- /dev/null +++ b/src/images/icons/Eveho.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/src/images/icons/Eventlink.svg b/src/images/icons/Eventlink.svg new file mode 100644 index 00000000..51b9bae4 --- /dev/null +++ b/src/images/icons/Eventlink.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/EverWeb.svg b/src/images/icons/EverWeb.svg new file mode 100644 index 00000000..47356623 --- /dev/null +++ b/src/images/icons/EverWeb.svg @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/EverWondr.svg b/src/images/icons/EverWondr.svg new file mode 100644 index 00000000..ab87adab --- /dev/null +++ b/src/images/icons/EverWondr.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/Evermos.svg b/src/images/icons/Evermos.svg new file mode 100644 index 00000000..0af1554d --- /dev/null +++ b/src/images/icons/Evermos.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Evernote.svg b/src/images/icons/Evernote.svg new file mode 100644 index 00000000..0ce4f38e --- /dev/null +++ b/src/images/icons/Evernote.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/Everviz.svg b/src/images/icons/Everviz.svg new file mode 100644 index 00000000..393ca028 --- /dev/null +++ b/src/images/icons/Everviz.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Evidence.svg b/src/images/icons/Evidence.svg new file mode 100644 index 00000000..19f4c232 --- /dev/null +++ b/src/images/icons/Evidence.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/images/icons/EvolveMedia.svg b/src/images/icons/EvolveMedia.svg new file mode 100644 index 00000000..a6498772 --- /dev/null +++ b/src/images/icons/EvolveMedia.svg @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/ExactVisitor.svg b/src/images/icons/ExactVisitor.svg new file mode 100644 index 00000000..caf2bacf --- /dev/null +++ b/src/images/icons/ExactVisitor.svg @@ -0,0 +1,9 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/Excentos.svg b/src/images/icons/Excentos.svg new file mode 100644 index 00000000..9969f992 --- /dev/null +++ b/src/images/icons/Excentos.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/ExitBee.svg b/src/images/icons/ExitBee.svg new file mode 100644 index 00000000..93a1b48d --- /dev/null +++ b/src/images/icons/ExitBee.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/Exitshop.svg b/src/images/icons/Exitshop.svg new file mode 100644 index 00000000..5d4ff9af --- /dev/null +++ b/src/images/icons/Exitshop.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/ExoPlatform.svg b/src/images/icons/ExoPlatform.svg new file mode 100644 index 00000000..6d7868a6 --- /dev/null +++ b/src/images/icons/ExoPlatform.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/ExtraWatch.svg b/src/images/icons/ExtraWatch.svg new file mode 100644 index 00000000..9a8f2ac0 --- /dev/null +++ b/src/images/icons/ExtraWatch.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/EyouCMS.svg b/src/images/icons/EyouCMS.svg new file mode 100644 index 00000000..83433b0f --- /dev/null +++ b/src/images/icons/EyouCMS.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/F5DistributedCloudServices.svg b/src/images/icons/F5DistributedCloudServices.svg new file mode 100644 index 00000000..00b04730 --- /dev/null +++ b/src/images/icons/F5DistributedCloudServices.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/FASO.svg b/src/images/icons/FASO.svg new file mode 100644 index 00000000..89e945be --- /dev/null +++ b/src/images/icons/FASO.svg @@ -0,0 +1,114 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/FC2Analyzer.svg b/src/images/icons/FC2Analyzer.svg new file mode 100644 index 00000000..50d32216 --- /dev/null +++ b/src/images/icons/FC2Analyzer.svg @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/FMGSuite.svg b/src/images/icons/FMGSuite.svg new file mode 100644 index 00000000..d9c30006 --- /dev/null +++ b/src/images/icons/FMGSuite.svg @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/FOCUSWebWall.svg b/src/images/icons/FOCUSWebWall.svg new file mode 100644 index 00000000..c61c27d8 --- /dev/null +++ b/src/images/icons/FOCUSWebWall.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/FUGU.svg b/src/images/icons/FUGU.svg new file mode 100644 index 00000000..c099e1de --- /dev/null +++ b/src/images/icons/FUGU.svg @@ -0,0 +1,15 @@ + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Facilita.svg b/src/images/icons/Facilita.svg new file mode 100644 index 00000000..7e36e0d4 --- /dev/null +++ b/src/images/icons/Facilita.svg @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Faire.svg b/src/images/icons/Faire.svg new file mode 100644 index 00000000..7fbfc574 --- /dev/null +++ b/src/images/icons/Faire.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Famewall.svg b/src/images/icons/Famewall.svg new file mode 100644 index 00000000..612c3c26 --- /dev/null +++ b/src/images/icons/Famewall.svg @@ -0,0 +1,318 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Famly.svg b/src/images/icons/Famly.svg new file mode 100644 index 00000000..d30eb4ef --- /dev/null +++ b/src/images/icons/Famly.svg @@ -0,0 +1,14 @@ + + + + + + \ No newline at end of file diff --git a/src/images/icons/FarCry.svg b/src/images/icons/FarCry.svg new file mode 100644 index 00000000..1e27259b --- /dev/null +++ b/src/images/icons/FarCry.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Farmakom.svg b/src/images/icons/Farmakom.svg new file mode 100644 index 00000000..f5d779a1 --- /dev/null +++ b/src/images/icons/Farmakom.svg @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Faslet.svg b/src/images/icons/Faslet.svg new file mode 100644 index 00000000..8324e1ee --- /dev/null +++ b/src/images/icons/Faslet.svg @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Fast Bundle.svg b/src/images/icons/Fast Bundle.svg index cff43c59..1c4c7853 100644 --- a/src/images/icons/Fast Bundle.svg +++ b/src/images/icons/Fast Bundle.svg @@ -1,10 +1 @@ - - - - - - - - - - + \ No newline at end of file diff --git a/src/images/icons/FastAPI.svg b/src/images/icons/FastAPI.svg new file mode 100644 index 00000000..32179ce2 --- /dev/null +++ b/src/images/icons/FastAPI.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/FastPixel.svg b/src/images/icons/FastPixel.svg new file mode 100644 index 00000000..6f3efaef --- /dev/null +++ b/src/images/icons/FastPixel.svg @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/FastSimon.svg b/src/images/icons/FastSimon.svg new file mode 100644 index 00000000..2211dc46 --- /dev/null +++ b/src/images/icons/FastSimon.svg @@ -0,0 +1,14 @@ + + + + + + \ No newline at end of file diff --git a/src/images/icons/Fatsoma.svg b/src/images/icons/Fatsoma.svg new file mode 100644 index 00000000..b33fe120 --- /dev/null +++ b/src/images/icons/Fatsoma.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Faveo.png b/src/images/icons/Faveo.png deleted file mode 100644 index 8f7698e8..00000000 Binary files a/src/images/icons/Faveo.png and /dev/null differ diff --git a/src/images/icons/Faveo.svg b/src/images/icons/Faveo.svg new file mode 100644 index 00000000..7bc5944a --- /dev/null +++ b/src/images/icons/Faveo.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/FeatherX.svg b/src/images/icons/FeatherX.svg index 85bf72c5..e468f21d 100644 --- a/src/images/icons/FeatherX.svg +++ b/src/images/icons/FeatherX.svg @@ -1,9 +1,305 @@ - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/FeedMagnet.svg b/src/images/icons/FeedMagnet.svg new file mode 100644 index 00000000..afb4acad --- /dev/null +++ b/src/images/icons/FeedMagnet.svg @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/FeedSpring.svg b/src/images/icons/FeedSpring.svg new file mode 100644 index 00000000..4ccd9103 --- /dev/null +++ b/src/images/icons/FeedSpring.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/FeedbackAutomatic.svg b/src/images/icons/FeedbackAutomatic.svg new file mode 100644 index 00000000..2ad873be --- /dev/null +++ b/src/images/icons/FeedbackAutomatic.svg @@ -0,0 +1,95 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Feedify.svg b/src/images/icons/Feedify.svg new file mode 100644 index 00000000..e888f773 --- /dev/null +++ b/src/images/icons/Feedify.svg @@ -0,0 +1,17 @@ + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Feedonomics.svg b/src/images/icons/Feedonomics.svg new file mode 100644 index 00000000..4019a47a --- /dev/null +++ b/src/images/icons/Feedonomics.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/Felmat.svg b/src/images/icons/Felmat.svg new file mode 100644 index 00000000..96e9d7ab --- /dev/null +++ b/src/images/icons/Felmat.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Feroot.svg b/src/images/icons/Feroot.svg new file mode 100644 index 00000000..f7bdda58 --- /dev/null +++ b/src/images/icons/Feroot.svg @@ -0,0 +1,14 @@ + + + + + + \ No newline at end of file diff --git a/src/images/icons/FerretOne.svg b/src/images/icons/FerretOne.svg new file mode 100644 index 00000000..b9dae692 --- /dev/null +++ b/src/images/icons/FerretOne.svg @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/src/images/icons/Ferron.svg b/src/images/icons/Ferron.svg new file mode 100644 index 00000000..079be575 --- /dev/null +++ b/src/images/icons/Ferron.svg @@ -0,0 +1,123 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Fever.svg b/src/images/icons/Fever.svg new file mode 100644 index 00000000..eca95c16 --- /dev/null +++ b/src/images/icons/Fever.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/FiboSearch.svg b/src/images/icons/FiboSearch.svg new file mode 100644 index 00000000..5e8864fc --- /dev/null +++ b/src/images/icons/FiboSearch.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/FieldStack.svg b/src/images/icons/FieldStack.svg new file mode 100644 index 00000000..6e07a291 --- /dev/null +++ b/src/images/icons/FieldStack.svg @@ -0,0 +1,17 @@ + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Filament.svg b/src/images/icons/Filament.svg new file mode 100644 index 00000000..34650d53 --- /dev/null +++ b/src/images/icons/Filament.svg @@ -0,0 +1,87 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/FileHippo.svg b/src/images/icons/FileHippo.svg new file mode 100644 index 00000000..c105748b --- /dev/null +++ b/src/images/icons/FileHippo.svg @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Filestack.svg b/src/images/icons/Filestack.svg new file mode 100644 index 00000000..7a388907 --- /dev/null +++ b/src/images/icons/Filestack.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/Finalsite.svg b/src/images/icons/Finalsite.svg new file mode 100644 index 00000000..51cd927a --- /dev/null +++ b/src/images/icons/Finalsite.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Finalytics.svg b/src/images/icons/Finalytics.svg new file mode 100644 index 00000000..10922f6b --- /dev/null +++ b/src/images/icons/Finalytics.svg @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Findigs.svg b/src/images/icons/Findigs.svg new file mode 100644 index 00000000..f42b6a0b --- /dev/null +++ b/src/images/icons/Findigs.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/Finsweet.svg b/src/images/icons/Finsweet.svg new file mode 100644 index 00000000..586a38b0 --- /dev/null +++ b/src/images/icons/Finsweet.svg @@ -0,0 +1,9 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/Fireflare.svg b/src/images/icons/Fireflare.svg new file mode 100644 index 00000000..e23afa32 --- /dev/null +++ b/src/images/icons/Fireflare.svg @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/FireflyReservations.svg b/src/images/icons/FireflyReservations.svg new file mode 100644 index 00000000..e7494b56 --- /dev/null +++ b/src/images/icons/FireflyReservations.svg @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Fitizzy.svg b/src/images/icons/Fitizzy.svg new file mode 100644 index 00000000..6d8be8f7 --- /dev/null +++ b/src/images/icons/Fitizzy.svg @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/images/icons/Fitle.svg b/src/images/icons/Fitle.svg new file mode 100644 index 00000000..32114f25 --- /dev/null +++ b/src/images/icons/Fitle.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Fitssey.svg b/src/images/icons/Fitssey.svg new file mode 100644 index 00000000..50015256 --- /dev/null +++ b/src/images/icons/Fitssey.svg @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Fittingbox.svg b/src/images/icons/Fittingbox.svg new file mode 100644 index 00000000..8c11562e --- /dev/null +++ b/src/images/icons/Fittingbox.svg @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/images/icons/Five9.svg b/src/images/icons/Five9.svg new file mode 100644 index 00000000..fbfa1ab8 --- /dev/null +++ b/src/images/icons/Five9.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/src/images/icons/Flable.svg b/src/images/icons/Flable.svg new file mode 100644 index 00000000..8854e945 --- /dev/null +++ b/src/images/icons/Flable.svg @@ -0,0 +1,113 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Flamp.svg b/src/images/icons/Flamp.svg new file mode 100644 index 00000000..734e8c9d --- /dev/null +++ b/src/images/icons/Flamp.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/src/images/icons/Flashchat.svg b/src/images/icons/Flashchat.svg new file mode 100644 index 00000000..4a749996 --- /dev/null +++ b/src/images/icons/Flashchat.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Fleetee.svg b/src/images/icons/Fleetee.svg new file mode 100644 index 00000000..1d77c174 --- /dev/null +++ b/src/images/icons/Fleetee.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/Flexbe.svg b/src/images/icons/Flexbe.svg new file mode 100644 index 00000000..e6f49160 --- /dev/null +++ b/src/images/icons/Flexbe.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/FlexiFunnels.svg b/src/images/icons/FlexiFunnels.svg new file mode 100644 index 00000000..179e21e8 --- /dev/null +++ b/src/images/icons/FlexiFunnels.svg @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Flexmls.svg b/src/images/icons/Flexmls.svg new file mode 100644 index 00000000..f10826e8 --- /dev/null +++ b/src/images/icons/Flexmls.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/src/images/icons/FlexyPe.svg b/src/images/icons/FlexyPe.svg new file mode 100644 index 00000000..2ead54d3 --- /dev/null +++ b/src/images/icons/FlexyPe.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/FlipPay.svg b/src/images/icons/FlipPay.svg new file mode 100644 index 00000000..7212b2fd --- /dev/null +++ b/src/images/icons/FlipPay.svg @@ -0,0 +1,93 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Flipdish.svg b/src/images/icons/Flipdish.svg new file mode 100644 index 00000000..0cbbb9b4 --- /dev/null +++ b/src/images/icons/Flipdish.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/FlippingPro.svg b/src/images/icons/FlippingPro.svg new file mode 100644 index 00000000..fcebd771 --- /dev/null +++ b/src/images/icons/FlippingPro.svg @@ -0,0 +1,23 @@ + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Flipshop.svg b/src/images/icons/Flipshop.svg new file mode 100644 index 00000000..840b9d97 --- /dev/null +++ b/src/images/icons/Flipshop.svg @@ -0,0 +1,120 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Flipsite.svg b/src/images/icons/Flipsite.svg new file mode 100644 index 00000000..07ba21f7 --- /dev/null +++ b/src/images/icons/Flipsite.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Flipsnack.svg b/src/images/icons/Flipsnack.svg new file mode 100644 index 00000000..3b3f1668 --- /dev/null +++ b/src/images/icons/Flipsnack.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/images/icons/FlockRocket.svg b/src/images/icons/FlockRocket.svg new file mode 100644 index 00000000..dd1b4fe9 --- /dev/null +++ b/src/images/icons/FlockRocket.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Flockler.svg b/src/images/icons/Flockler.svg new file mode 100644 index 00000000..2a5cb1ad --- /dev/null +++ b/src/images/icons/Flockler.svg @@ -0,0 +1,75 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Flodesk.svg b/src/images/icons/Flodesk.svg new file mode 100644 index 00000000..0dcc300d --- /dev/null +++ b/src/images/icons/Flodesk.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Floranext.svg b/src/images/icons/Floranext.svg new file mode 100644 index 00000000..58768f85 --- /dev/null +++ b/src/images/icons/Floranext.svg @@ -0,0 +1,168 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/FloristWindow.svg b/src/images/icons/FloristWindow.svg new file mode 100644 index 00000000..9e36479c --- /dev/null +++ b/src/images/icons/FloristWindow.svg @@ -0,0 +1,123 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Flot.png b/src/images/icons/Flot.png deleted file mode 100644 index 15f1f6e9..00000000 Binary files a/src/images/icons/Flot.png and /dev/null differ diff --git a/src/images/icons/Flot.svg b/src/images/icons/Flot.svg new file mode 100644 index 00000000..72a532e2 --- /dev/null +++ b/src/images/icons/Flot.svg @@ -0,0 +1,14 @@ + + + + + + \ No newline at end of file diff --git a/src/images/icons/FlowTrack.svg b/src/images/icons/FlowTrack.svg new file mode 100644 index 00000000..e27b2300 --- /dev/null +++ b/src/images/icons/FlowTrack.svg @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/FluidFramework.svg b/src/images/icons/FluidFramework.svg new file mode 100644 index 00000000..c301b988 --- /dev/null +++ b/src/images/icons/FluidFramework.svg @@ -0,0 +1,123 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/FluidPlayer.svg b/src/images/icons/FluidPlayer.svg new file mode 100644 index 00000000..90f215ed --- /dev/null +++ b/src/images/icons/FluidPlayer.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Fluro.svg b/src/images/icons/Fluro.svg new file mode 100644 index 00000000..ad417c32 --- /dev/null +++ b/src/images/icons/Fluro.svg @@ -0,0 +1,207 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Flurry.svg b/src/images/icons/Flurry.svg new file mode 100644 index 00000000..e62c5696 --- /dev/null +++ b/src/images/icons/Flurry.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Flybook.svg b/src/images/icons/Flybook.svg new file mode 100644 index 00000000..90f8e27b --- /dev/null +++ b/src/images/icons/Flybook.svg @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Flyvi.svg b/src/images/icons/Flyvi.svg new file mode 100644 index 00000000..cb837157 --- /dev/null +++ b/src/images/icons/Flyvi.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Flyzoo.svg b/src/images/icons/Flyzoo.svg new file mode 100644 index 00000000..f419fdfe --- /dev/null +++ b/src/images/icons/Flyzoo.svg @@ -0,0 +1,150 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Fohr.svg b/src/images/icons/Fohr.svg new file mode 100644 index 00000000..92b23f13 --- /dev/null +++ b/src/images/icons/Fohr.svg @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/FollowUpBoss.svg b/src/images/icons/FollowUpBoss.svg new file mode 100644 index 00000000..e2b66d2e --- /dev/null +++ b/src/images/icons/FollowUpBoss.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/Foratable.svg b/src/images/icons/Foratable.svg new file mode 100644 index 00000000..3c207276 --- /dev/null +++ b/src/images/icons/Foratable.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/Forento.svg b/src/images/icons/Forento.svg new file mode 100644 index 00000000..8e337816 --- /dev/null +++ b/src/images/icons/Forento.svg @@ -0,0 +1,10 @@ + + + + + + + \ No newline at end of file diff --git a/src/images/icons/FormDr.svg b/src/images/icons/FormDr.svg new file mode 100644 index 00000000..5dd80a69 --- /dev/null +++ b/src/images/icons/FormDr.svg @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/FormIO.svg b/src/images/icons/FormIO.svg new file mode 100644 index 00000000..9f0f6c30 --- /dev/null +++ b/src/images/icons/FormIO.svg @@ -0,0 +1,10 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/FormTaxi.svg b/src/images/icons/FormTaxi.svg new file mode 100644 index 00000000..6a7c13dc --- /dev/null +++ b/src/images/icons/FormTaxi.svg @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/images/icons/FormWise.svg b/src/images/icons/FormWise.svg new file mode 100644 index 00000000..0ba366a6 --- /dev/null +++ b/src/images/icons/FormWise.svg @@ -0,0 +1,480 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Format.svg b/src/images/icons/Format.svg new file mode 100644 index 00000000..a76f936a --- /dev/null +++ b/src/images/icons/Format.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/Formcake.svg b/src/images/icons/Formcake.svg new file mode 100644 index 00000000..ba7413cd --- /dev/null +++ b/src/images/icons/Formcake.svg @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Formcan.svg b/src/images/icons/Formcan.svg new file mode 100644 index 00000000..c3c05bbf --- /dev/null +++ b/src/images/icons/Formcan.svg @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Formester.svg b/src/images/icons/Formester.svg new file mode 100644 index 00000000..5788e024 --- /dev/null +++ b/src/images/icons/Formester.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/Formrun.svg b/src/images/icons/Formrun.svg new file mode 100644 index 00000000..2436b0f8 --- /dev/null +++ b/src/images/icons/Formrun.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/Formsite.svg b/src/images/icons/Formsite.svg new file mode 100644 index 00000000..7cbdd2f8 --- /dev/null +++ b/src/images/icons/Formsite.svg @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Formsort.svg b/src/images/icons/Formsort.svg new file mode 100644 index 00000000..ac5032a2 --- /dev/null +++ b/src/images/icons/Formsort.svg @@ -0,0 +1,93 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Formstone.svg b/src/images/icons/Formstone.svg new file mode 100644 index 00000000..66443912 --- /dev/null +++ b/src/images/icons/Formstone.svg @@ -0,0 +1,20 @@ + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Forsant.svg b/src/images/icons/Forsant.svg new file mode 100644 index 00000000..754f37ab --- /dev/null +++ b/src/images/icons/Forsant.svg @@ -0,0 +1,345 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/images/icons/FramerMotion.svg b/src/images/icons/FramerMotion.svg new file mode 100644 index 00000000..bbf54957 --- /dev/null +++ b/src/images/icons/FramerMotion.svg @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Framework7.svg b/src/images/icons/Framework7.svg new file mode 100644 index 00000000..f2a13592 --- /dev/null +++ b/src/images/icons/Framework7.svg @@ -0,0 +1,12 @@ + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/FraudBlocker.svg b/src/images/icons/FraudBlocker.svg new file mode 100644 index 00000000..37639aaf --- /dev/null +++ b/src/images/icons/FraudBlocker.svg @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Frederick.svg b/src/images/icons/Frederick.svg new file mode 100644 index 00000000..9bcca3f2 --- /dev/null +++ b/src/images/icons/Frederick.svg @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/FreedomFarmers.svg b/src/images/icons/FreedomFarmers.svg new file mode 100644 index 00000000..cb955817 --- /dev/null +++ b/src/images/icons/FreedomFarmers.svg @@ -0,0 +1,222 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/FreedomKit.svg b/src/images/icons/FreedomKit.svg new file mode 100644 index 00000000..79fdd44a --- /dev/null +++ b/src/images/icons/FreedomKit.svg @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Freemius.svg b/src/images/icons/Freemius.svg new file mode 100644 index 00000000..1327b717 --- /dev/null +++ b/src/images/icons/Freemius.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/FreshRelevance.svg b/src/images/icons/FreshRelevance.svg new file mode 100644 index 00000000..34ab9255 --- /dev/null +++ b/src/images/icons/FreshRelevance.svg @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Fresho.svg b/src/images/icons/Fresho.svg new file mode 100644 index 00000000..6c53b87d --- /dev/null +++ b/src/images/icons/Fresho.svg @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Friendly.svg b/src/images/icons/Friendly.svg new file mode 100644 index 00000000..e2b86fe6 --- /dev/null +++ b/src/images/icons/Friendly.svg @@ -0,0 +1,212 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Frill.svg b/src/images/icons/Frill.svg new file mode 100644 index 00000000..4a48e090 --- /dev/null +++ b/src/images/icons/Frill.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Frisbie.svg b/src/images/icons/Frisbie.svg new file mode 100644 index 00000000..2bd72a2c --- /dev/null +++ b/src/images/icons/Frisbie.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Froged.svg b/src/images/icons/Froged.svg new file mode 100644 index 00000000..60d22ec6 --- /dev/null +++ b/src/images/icons/Froged.svg @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/FrontAI.svg b/src/images/icons/FrontAI.svg new file mode 100644 index 00000000..13a53a16 --- /dev/null +++ b/src/images/icons/FrontAI.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/FrontStream.svg b/src/images/icons/FrontStream.svg new file mode 100644 index 00000000..4dc1f60e --- /dev/null +++ b/src/images/icons/FrontStream.svg @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Frontlead.svg b/src/images/icons/Frontlead.svg new file mode 100644 index 00000000..642067ba --- /dev/null +++ b/src/images/icons/Frontlead.svg @@ -0,0 +1,9 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/Froonze.svg b/src/images/icons/Froonze.svg new file mode 100644 index 00000000..8bfe8154 --- /dev/null +++ b/src/images/icons/Froonze.svg @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/images/icons/Fueled.svg b/src/images/icons/Fueled.svg new file mode 100644 index 00000000..7c4abd98 --- /dev/null +++ b/src/images/icons/Fueled.svg @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/FullSeats.svg b/src/images/icons/FullSeats.svg new file mode 100644 index 00000000..60400c84 --- /dev/null +++ b/src/images/icons/FullSeats.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/images/icons/FullSlate.svg b/src/images/icons/FullSlate.svg new file mode 100644 index 00000000..420d02f0 --- /dev/null +++ b/src/images/icons/FullSlate.svg @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Fullpath.svg b/src/images/icons/Fullpath.svg new file mode 100644 index 00000000..1141c851 --- /dev/null +++ b/src/images/icons/Fullpath.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/FunbutlerBooking.svg b/src/images/icons/FunbutlerBooking.svg new file mode 100644 index 00000000..0f00f49a --- /dev/null +++ b/src/images/icons/FunbutlerBooking.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/src/images/icons/FunnelScience.svg b/src/images/icons/FunnelScience.svg new file mode 100644 index 00000000..accdff15 --- /dev/null +++ b/src/images/icons/FunnelScience.svg @@ -0,0 +1,14 @@ + + + + + + \ No newline at end of file diff --git a/src/images/icons/FunnelsOfCourse.svg b/src/images/icons/FunnelsOfCourse.svg new file mode 100644 index 00000000..0d8739e5 --- /dev/null +++ b/src/images/icons/FunnelsOfCourse.svg @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Funnelytics.svg b/src/images/icons/Funnelytics.svg new file mode 100644 index 00000000..f0081436 --- /dev/null +++ b/src/images/icons/Funnelytics.svg @@ -0,0 +1,18 @@ + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Furo.svg b/src/images/icons/Furo.svg new file mode 100644 index 00000000..49c8c38d --- /dev/null +++ b/src/images/icons/Furo.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/Futy.svg b/src/images/icons/Futy.svg new file mode 100644 index 00000000..0952d9b4 --- /dev/null +++ b/src/images/icons/Futy.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Fuzey.svg b/src/images/icons/Fuzey.svg new file mode 100644 index 00000000..2855f10b --- /dev/null +++ b/src/images/icons/Fuzey.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Fygaro.svg b/src/images/icons/Fygaro.svg new file mode 100644 index 00000000..65672f48 --- /dev/null +++ b/src/images/icons/Fygaro.svg @@ -0,0 +1,14 @@ + + + + + + \ No newline at end of file diff --git a/src/images/icons/GBooking.svg b/src/images/icons/GBooking.svg new file mode 100644 index 00000000..b15f67ac --- /dev/null +++ b/src/images/icons/GBooking.svg @@ -0,0 +1,32 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/GDPRCookieConsent.svg b/src/images/icons/GDPRCookieConsent.svg new file mode 100644 index 00000000..901cdb21 --- /dev/null +++ b/src/images/icons/GDPRCookieConsent.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/images/icons/GReminders.svg b/src/images/icons/GReminders.svg new file mode 100644 index 00000000..aa1ad5d8 --- /dev/null +++ b/src/images/icons/GReminders.svg @@ -0,0 +1,72 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Gamma.svg b/src/images/icons/Gamma.svg new file mode 100644 index 00000000..37c2bf17 --- /dev/null +++ b/src/images/icons/Gamma.svg @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Gamooga.svg b/src/images/icons/Gamooga.svg new file mode 100644 index 00000000..31b30c88 --- /dev/null +++ b/src/images/icons/Gamooga.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/src/images/icons/GaniPara.svg b/src/images/icons/GaniPara.svg new file mode 100644 index 00000000..4092eee7 --- /dev/null +++ b/src/images/icons/GaniPara.svg @@ -0,0 +1,26 @@ + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Gannett.svg b/src/images/icons/Gannett.svg new file mode 100644 index 00000000..1ace4a4e --- /dev/null +++ b/src/images/icons/Gannett.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Gastronaut.svg b/src/images/icons/Gastronaut.svg new file mode 100644 index 00000000..deb715c5 --- /dev/null +++ b/src/images/icons/Gastronaut.svg @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Geggio.svg b/src/images/icons/Geggio.svg new file mode 100644 index 00000000..2b914c07 --- /dev/null +++ b/src/images/icons/Geggio.svg @@ -0,0 +1,132 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Gekosale.svg b/src/images/icons/Gekosale.svg new file mode 100644 index 00000000..859071e1 --- /dev/null +++ b/src/images/icons/Gekosale.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Gelato.svg b/src/images/icons/Gelato.svg new file mode 100644 index 00000000..3ad02e91 --- /dev/null +++ b/src/images/icons/Gelato.svg @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Gemius.png b/src/images/icons/Gemius.png deleted file mode 100644 index 80fc2341..00000000 Binary files a/src/images/icons/Gemius.png and /dev/null differ diff --git a/src/images/icons/Gemius.svg b/src/images/icons/Gemius.svg new file mode 100644 index 00000000..7cfad045 --- /dev/null +++ b/src/images/icons/Gemius.svg @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/GenieeChat.svg b/src/images/icons/GenieeChat.svg new file mode 100644 index 00000000..569d98ee --- /dev/null +++ b/src/images/icons/GenieeChat.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Genoo.svg b/src/images/icons/Genoo.svg new file mode 100644 index 00000000..d05b9d09 --- /dev/null +++ b/src/images/icons/Genoo.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/Geoapify.svg b/src/images/icons/Geoapify.svg new file mode 100644 index 00000000..2ac1ce37 --- /dev/null +++ b/src/images/icons/Geoapify.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Geonetric.svg b/src/images/icons/Geonetric.svg new file mode 100644 index 00000000..6165fc21 --- /dev/null +++ b/src/images/icons/Geonetric.svg @@ -0,0 +1,17 @@ + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Gesio.svg b/src/images/icons/Gesio.svg new file mode 100644 index 00000000..f04f1e3f --- /dev/null +++ b/src/images/icons/Gesio.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/Gestim.svg b/src/images/icons/Gestim.svg new file mode 100644 index 00000000..ab0f9e77 --- /dev/null +++ b/src/images/icons/Gestim.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/images/icons/GetAuto.svg b/src/images/icons/GetAuto.svg new file mode 100644 index 00000000..dd3ec705 --- /dev/null +++ b/src/images/icons/GetAuto.svg @@ -0,0 +1,294 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/GetCommerce.svg b/src/images/icons/GetCommerce.svg new file mode 100644 index 00000000..657d6d2e --- /dev/null +++ b/src/images/icons/GetCommerce.svg @@ -0,0 +1,23 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/GetReview.svg b/src/images/icons/GetReview.svg new file mode 100644 index 00000000..c190b82f --- /dev/null +++ b/src/images/icons/GetReview.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/GetSiimple.svg b/src/images/icons/GetSiimple.svg new file mode 100644 index 00000000..c04868e0 --- /dev/null +++ b/src/images/icons/GetSiimple.svg @@ -0,0 +1,25 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Getback.svg b/src/images/icons/Getback.svg new file mode 100644 index 00000000..4d059460 --- /dev/null +++ b/src/images/icons/Getback.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/Getgabs.svg b/src/images/icons/Getgabs.svg new file mode 100644 index 00000000..b8112a5c --- /dev/null +++ b/src/images/icons/Getgabs.svg @@ -0,0 +1,30 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Gevme.svg b/src/images/icons/Gevme.svg new file mode 100644 index 00000000..c0ab1b8d --- /dev/null +++ b/src/images/icons/Gevme.svg @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Giosg.svg b/src/images/icons/Giosg.svg new file mode 100644 index 00000000..20d18456 --- /dev/null +++ b/src/images/icons/Giosg.svg @@ -0,0 +1,12 @@ + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Gista.svg b/src/images/icons/Gista.svg new file mode 100644 index 00000000..21105849 --- /dev/null +++ b/src/images/icons/Gista.svg @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/GitLab.svg b/src/images/icons/GitLab.svg index 4e29ac86..4b8248af 100644 --- a/src/images/icons/GitLab.svg +++ b/src/images/icons/GitLab.svg @@ -1 +1,13 @@ -logo \ No newline at end of file + + + + + + + + + + + + + diff --git a/src/images/icons/Gitter.svg b/src/images/icons/Gitter.svg new file mode 100644 index 00000000..7f332a8f --- /dev/null +++ b/src/images/icons/Gitter.svg @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Giveffect.svg b/src/images/icons/Giveffect.svg new file mode 100644 index 00000000..c97726d7 --- /dev/null +++ b/src/images/icons/Giveffect.svg @@ -0,0 +1,84 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Glami.svg b/src/images/icons/Glami.svg new file mode 100644 index 00000000..71d02624 --- /dev/null +++ b/src/images/icons/Glami.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/GlampManager.svg b/src/images/icons/GlampManager.svg new file mode 100644 index 00000000..478f7262 --- /dev/null +++ b/src/images/icons/GlampManager.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/Glance.svg b/src/images/icons/Glance.svg new file mode 100644 index 00000000..06d39ca7 --- /dev/null +++ b/src/images/icons/Glance.svg @@ -0,0 +1,14 @@ + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/GlitchTip.svg b/src/images/icons/GlitchTip.svg new file mode 100644 index 00000000..8f6247d4 --- /dev/null +++ b/src/images/icons/GlitchTip.svg @@ -0,0 +1,19 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/GlobRes.svg b/src/images/icons/GlobRes.svg new file mode 100644 index 00000000..b5efa618 --- /dev/null +++ b/src/images/icons/GlobRes.svg @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/GlobalProtect.svg b/src/images/icons/GlobalProtect.svg new file mode 100644 index 00000000..d0497a08 --- /dev/null +++ b/src/images/icons/GlobalProtect.svg @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Glow.svg b/src/images/icons/Glow.svg new file mode 100644 index 00000000..3b72c502 --- /dev/null +++ b/src/images/icons/Glow.svg @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/GoSquared.svg b/src/images/icons/GoSquared.svg new file mode 100644 index 00000000..a333b9c9 --- /dev/null +++ b/src/images/icons/GoSquared.svg @@ -0,0 +1,14 @@ + + + + + + \ No newline at end of file diff --git a/src/images/icons/GoVedia.svg b/src/images/icons/GoVedia.svg new file mode 100644 index 00000000..55a5a0d7 --- /dev/null +++ b/src/images/icons/GoVedia.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/GoatSystems.svg b/src/images/icons/GoatSystems.svg new file mode 100644 index 00000000..bc20f2f7 --- /dev/null +++ b/src/images/icons/GoatSystems.svg @@ -0,0 +1,412 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/images/icons/GoldenVolunteer.svg b/src/images/icons/GoldenVolunteer.svg new file mode 100644 index 00000000..644dc211 --- /dev/null +++ b/src/images/icons/GoldenVolunteer.svg @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Gong.svg b/src/images/icons/Gong.svg new file mode 100644 index 00000000..9865e795 --- /dev/null +++ b/src/images/icons/Gong.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/GoodAPI.svg b/src/images/icons/GoodAPI.svg new file mode 100644 index 00000000..a80b8555 --- /dev/null +++ b/src/images/icons/GoodAPI.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/GoodApps.svg b/src/images/icons/GoodApps.svg new file mode 100644 index 00000000..959089db --- /dev/null +++ b/src/images/icons/GoodApps.svg @@ -0,0 +1,227 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/GoodEshop.svg b/src/images/icons/GoodEshop.svg new file mode 100644 index 00000000..4f8f114b --- /dev/null +++ b/src/images/icons/GoodEshop.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/GoodReview.svg b/src/images/icons/GoodReview.svg new file mode 100644 index 00000000..bfc880af --- /dev/null +++ b/src/images/icons/GoodReview.svg @@ -0,0 +1,14 @@ + + + + + + \ No newline at end of file diff --git a/src/images/icons/Goodbits.svg b/src/images/icons/Goodbits.svg new file mode 100644 index 00000000..1f584127 --- /dev/null +++ b/src/images/icons/Goodbits.svg @@ -0,0 +1,11 @@ + + + + + + \ No newline at end of file diff --git a/src/images/icons/Goodsearch.svg b/src/images/icons/Goodsearch.svg new file mode 100644 index 00000000..713b8947 --- /dev/null +++ b/src/images/icons/Goodsearch.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/Goope.svg b/src/images/icons/Goope.svg new file mode 100644 index 00000000..47b7e640 --- /dev/null +++ b/src/images/icons/Goope.svg @@ -0,0 +1,80 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/GorillaDash.svg b/src/images/icons/GorillaDash.svg new file mode 100644 index 00000000..07338557 --- /dev/null +++ b/src/images/icons/GorillaDash.svg @@ -0,0 +1,20 @@ + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Goshly.svg b/src/images/icons/Goshly.svg new file mode 100644 index 00000000..1506fbe1 --- /dev/null +++ b/src/images/icons/Goshly.svg @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/GrainData.svg b/src/images/icons/GrainData.svg new file mode 100644 index 00000000..4e610032 --- /dev/null +++ b/src/images/icons/GrainData.svg @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/GraphicsFlow.svg b/src/images/icons/GraphicsFlow.svg new file mode 100644 index 00000000..269dc1fa --- /dev/null +++ b/src/images/icons/GraphicsFlow.svg @@ -0,0 +1,12 @@ + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Graphly.svg b/src/images/icons/Graphly.svg new file mode 100644 index 00000000..71e5190d --- /dev/null +++ b/src/images/icons/Graphly.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/Graphy.svg b/src/images/icons/Graphy.svg new file mode 100644 index 00000000..0455ad36 --- /dev/null +++ b/src/images/icons/Graphy.svg @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Gravito.svg b/src/images/icons/Gravito.svg new file mode 100644 index 00000000..272df85d --- /dev/null +++ b/src/images/icons/Gravito.svg @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Gravity.svg b/src/images/icons/Gravity.svg new file mode 100644 index 00000000..65ede83a --- /dev/null +++ b/src/images/icons/Gravity.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/GreenRope.svg b/src/images/icons/GreenRope.svg new file mode 100644 index 00000000..c6794316 --- /dev/null +++ b/src/images/icons/GreenRope.svg @@ -0,0 +1,14 @@ + + + + + + \ No newline at end of file diff --git a/src/images/icons/GreydSuite.svg b/src/images/icons/GreydSuite.svg new file mode 100644 index 00000000..83076bb4 --- /dev/null +++ b/src/images/icons/GreydSuite.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Grivy.svg b/src/images/icons/Grivy.svg new file mode 100644 index 00000000..8906010c --- /dev/null +++ b/src/images/icons/Grivy.svg @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/GrooveCM.svg b/src/images/icons/GrooveCM.svg new file mode 100644 index 00000000..2a64b8f4 --- /dev/null +++ b/src/images/icons/GrooveCM.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/GrooveKart.svg b/src/images/icons/GrooveKart.svg new file mode 100644 index 00000000..608452ba --- /dev/null +++ b/src/images/icons/GrooveKart.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/src/images/icons/GrowSurf.svg b/src/images/icons/GrowSurf.svg new file mode 100644 index 00000000..00582282 --- /dev/null +++ b/src/images/icons/GrowSurf.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/Growcer.svg b/src/images/icons/Growcer.svg new file mode 100644 index 00000000..8224ae44 --- /dev/null +++ b/src/images/icons/Growcer.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/GrowingGood.svg b/src/images/icons/GrowingGood.svg new file mode 100644 index 00000000..9c99a207 --- /dev/null +++ b/src/images/icons/GrowingGood.svg @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/GuardFlame.svg b/src/images/icons/GuardFlame.svg new file mode 100644 index 00000000..97211dff --- /dev/null +++ b/src/images/icons/GuardFlame.svg @@ -0,0 +1,14 @@ + + + + + + \ No newline at end of file diff --git a/src/images/icons/GuestSuite.svg b/src/images/icons/GuestSuite.svg new file mode 100644 index 00000000..455b5410 --- /dev/null +++ b/src/images/icons/GuestSuite.svg @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Guesty.svg b/src/images/icons/Guesty.svg new file mode 100644 index 00000000..deb27c01 --- /dev/null +++ b/src/images/icons/Guesty.svg @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Gurucan.svg b/src/images/icons/Gurucan.svg new file mode 100644 index 00000000..d66137c7 --- /dev/null +++ b/src/images/icons/Gurucan.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Guuru.svg b/src/images/icons/Guuru.svg new file mode 100644 index 00000000..49d4282e --- /dev/null +++ b/src/images/icons/Guuru.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/Haku.svg b/src/images/icons/Haku.svg new file mode 100644 index 00000000..eebd8bfc --- /dev/null +++ b/src/images/icons/Haku.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Haloscan.svg b/src/images/icons/Haloscan.svg new file mode 100644 index 00000000..a174cf80 --- /dev/null +++ b/src/images/icons/Haloscan.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/Hanko.svg b/src/images/icons/Hanko.svg new file mode 100644 index 00000000..bbc82788 --- /dev/null +++ b/src/images/icons/Hanko.svg @@ -0,0 +1,14 @@ + + + + + + \ No newline at end of file diff --git a/src/images/icons/Hapana.svg b/src/images/icons/Hapana.svg new file mode 100644 index 00000000..8ed95042 --- /dev/null +++ b/src/images/icons/Hapana.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/HappySync.svg b/src/images/icons/HappySync.svg new file mode 100644 index 00000000..ae2711d9 --- /dev/null +++ b/src/images/icons/HappySync.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/HappyTalk.svg b/src/images/icons/HappyTalk.svg new file mode 100644 index 00000000..94743283 --- /dev/null +++ b/src/images/icons/HappyTalk.svg @@ -0,0 +1,117 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Harafunnel.svg b/src/images/icons/Harafunnel.svg new file mode 100644 index 00000000..f8049c8b --- /dev/null +++ b/src/images/icons/Harafunnel.svg @@ -0,0 +1,26 @@ + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/HarborByte.svg b/src/images/icons/HarborByte.svg new file mode 100644 index 00000000..c215d68b --- /dev/null +++ b/src/images/icons/HarborByte.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/src/images/icons/Harness.svg b/src/images/icons/Harness.svg new file mode 100644 index 00000000..e1e6527c --- /dev/null +++ b/src/images/icons/Harness.svg @@ -0,0 +1,9 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/HawkSearch.svg b/src/images/icons/HawkSearch.svg new file mode 100644 index 00000000..d317a10f --- /dev/null +++ b/src/images/icons/HawkSearch.svg @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Headway.svg b/src/images/icons/Headway.svg new file mode 100644 index 00000000..cf48f344 --- /dev/null +++ b/src/images/icons/Headway.svg @@ -0,0 +1,26 @@ + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Heeet.svg b/src/images/icons/Heeet.svg new file mode 100644 index 00000000..20ca5181 --- /dev/null +++ b/src/images/icons/Heeet.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/images/icons/HeightsPlatform.svg b/src/images/icons/HeightsPlatform.svg new file mode 100644 index 00000000..94bcae35 --- /dev/null +++ b/src/images/icons/HeightsPlatform.svg @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/HelixPay.svg b/src/images/icons/HelixPay.svg new file mode 100644 index 00000000..ccc4721f --- /dev/null +++ b/src/images/icons/HelixPay.svg @@ -0,0 +1,10 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/HelpOnClick.svg b/src/images/icons/HelpOnClick.svg new file mode 100644 index 00000000..1bbf5710 --- /dev/null +++ b/src/images/icons/HelpOnClick.svg @@ -0,0 +1,102 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Helpwise.svg b/src/images/icons/Helpwise.svg new file mode 100644 index 00000000..0178f6a7 --- /dev/null +++ b/src/images/icons/Helpwise.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/HeroUI.svg b/src/images/icons/HeroUI.svg new file mode 100644 index 00000000..7fe267ec --- /dev/null +++ b/src/images/icons/HeroUI.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Hexia.svg b/src/images/icons/Hexia.svg new file mode 100644 index 00000000..19658b69 --- /dev/null +++ b/src/images/icons/Hexia.svg @@ -0,0 +1,126 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/HeyLight.svg b/src/images/icons/HeyLight.svg new file mode 100644 index 00000000..d14a7144 --- /dev/null +++ b/src/images/icons/HeyLight.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/HeyPongo.svg b/src/images/icons/HeyPongo.svg new file mode 100644 index 00000000..156fdd9e --- /dev/null +++ b/src/images/icons/HeyPongo.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/src/images/icons/HiBob.svg b/src/images/icons/HiBob.svg new file mode 100644 index 00000000..175abc9d --- /dev/null +++ b/src/images/icons/HiBob.svg @@ -0,0 +1,14 @@ + + + + + + \ No newline at end of file diff --git a/src/images/icons/Hibu.svg b/src/images/icons/Hibu.svg new file mode 100644 index 00000000..a8c145b0 --- /dev/null +++ b/src/images/icons/Hibu.svg @@ -0,0 +1,24 @@ + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/HikaShop.svg b/src/images/icons/HikaShop.svg new file mode 100644 index 00000000..d3e445a6 --- /dev/null +++ b/src/images/icons/HikaShop.svg @@ -0,0 +1,108 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/HikariCS.svg b/src/images/icons/HikariCS.svg new file mode 100644 index 00000000..e12c2690 --- /dev/null +++ b/src/images/icons/HikariCS.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/HitMall.svg b/src/images/icons/HitMall.svg new file mode 100644 index 00000000..f4588be4 --- /dev/null +++ b/src/images/icons/HitMall.svg @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Hoiio.svg b/src/images/icons/Hoiio.svg new file mode 100644 index 00000000..44975035 --- /dev/null +++ b/src/images/icons/Hoiio.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/HoldMyTicket.svg b/src/images/icons/HoldMyTicket.svg new file mode 100644 index 00000000..6fc66440 --- /dev/null +++ b/src/images/icons/HoldMyTicket.svg @@ -0,0 +1,93 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/HolduixCMS.svg b/src/images/icons/HolduixCMS.svg new file mode 100644 index 00000000..2b2a61c0 --- /dev/null +++ b/src/images/icons/HolduixCMS.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/HollerBox.svg b/src/images/icons/HollerBox.svg new file mode 100644 index 00000000..e3c891aa --- /dev/null +++ b/src/images/icons/HollerBox.svg @@ -0,0 +1,13 @@ + + + + + + \ No newline at end of file diff --git a/src/images/icons/Homebot.svg b/src/images/icons/Homebot.svg new file mode 100644 index 00000000..492b27f4 --- /dev/null +++ b/src/images/icons/Homebot.svg @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Homefiniti.svg b/src/images/icons/Homefiniti.svg new file mode 100644 index 00000000..d780bcea --- /dev/null +++ b/src/images/icons/Homefiniti.svg @@ -0,0 +1,179 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Homerun.svg b/src/images/icons/Homerun.svg new file mode 100644 index 00000000..03f54d9b --- /dev/null +++ b/src/images/icons/Homerun.svg @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Hoory.svg b/src/images/icons/Hoory.svg new file mode 100644 index 00000000..a18609c6 --- /dev/null +++ b/src/images/icons/Hoory.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/src/images/icons/Hoowla.svg b/src/images/icons/Hoowla.svg new file mode 100644 index 00000000..5cbbe595 --- /dev/null +++ b/src/images/icons/Hoowla.svg @@ -0,0 +1,17 @@ + + + + + + + \ No newline at end of file diff --git a/src/images/icons/HotDoc.svg b/src/images/icons/HotDoc.svg new file mode 100644 index 00000000..b6c9b724 --- /dev/null +++ b/src/images/icons/HotDoc.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/HotelPropeller.svg b/src/images/icons/HotelPropeller.svg new file mode 100644 index 00000000..9047fe3c --- /dev/null +++ b/src/images/icons/HotelPropeller.svg @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/HousecallPro.svg b/src/images/icons/HousecallPro.svg new file mode 100644 index 00000000..8d0492c9 --- /dev/null +++ b/src/images/icons/HousecallPro.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/HubPlatform.svg b/src/images/icons/HubPlatform.svg new file mode 100644 index 00000000..b9bf034a --- /dev/null +++ b/src/images/icons/HubPlatform.svg @@ -0,0 +1,114 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Hubilo.svg b/src/images/icons/Hubilo.svg new file mode 100644 index 00000000..d1a3c42a --- /dev/null +++ b/src/images/icons/Hubilo.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Hubtiger.svg b/src/images/icons/Hubtiger.svg new file mode 100644 index 00000000..a4c7550f --- /dev/null +++ b/src/images/icons/Hubtiger.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Huggy.svg b/src/images/icons/Huggy.svg new file mode 100644 index 00000000..0f5c3c49 --- /dev/null +++ b/src/images/icons/Huggy.svg @@ -0,0 +1,12 @@ + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Hull.svg b/src/images/icons/Hull.svg new file mode 100644 index 00000000..6063b0d2 --- /dev/null +++ b/src/images/icons/Hull.svg @@ -0,0 +1,9 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/HumCommerce.svg b/src/images/icons/HumCommerce.svg new file mode 100644 index 00000000..ae382acc --- /dev/null +++ b/src/images/icons/HumCommerce.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Hummerce.svg b/src/images/icons/Hummerce.svg new file mode 100644 index 00000000..b842f820 --- /dev/null +++ b/src/images/icons/Hummerce.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/HypeLab.svg b/src/images/icons/HypeLab.svg new file mode 100644 index 00000000..ba17da55 --- /dev/null +++ b/src/images/icons/HypeLab.svg @@ -0,0 +1,163 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Hypercloudhost.svg b/src/images/icons/Hypercloudhost.svg new file mode 100644 index 00000000..9e187cc9 --- /dev/null +++ b/src/images/icons/Hypercloudhost.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Hyperia.svg b/src/images/icons/Hyperia.svg new file mode 100644 index 00000000..228f8325 --- /dev/null +++ b/src/images/icons/Hyperia.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/Hyperlane.svg b/src/images/icons/Hyperlane.svg new file mode 100644 index 00000000..a4df9b5d --- /dev/null +++ b/src/images/icons/Hyperlane.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/images/icons/IBM.svg b/src/images/icons/IBM.svg index 7bf427bc..791e5371 100644 --- a/src/images/icons/IBM.svg +++ b/src/images/icons/IBM.svg @@ -1 +1,8 @@ - \ No newline at end of file + + + + + + + + diff --git a/src/images/icons/Iconosquare.svg b/src/images/icons/Iconosquare.svg new file mode 100644 index 00000000..2bb55dd8 --- /dev/null +++ b/src/images/icons/Iconosquare.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/Icordis CMS.svg b/src/images/icons/Icordis CMS.svg new file mode 100644 index 00000000..e08356c2 --- /dev/null +++ b/src/images/icons/Icordis CMS.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/src/images/icons/IdentixwebiCart.svg b/src/images/icons/IdentixwebiCart.svg new file mode 100644 index 00000000..4786c75c --- /dev/null +++ b/src/images/icons/IdentixwebiCart.svg @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Ideta.svg b/src/images/icons/Ideta.svg new file mode 100644 index 00000000..d64dabfb --- /dev/null +++ b/src/images/icons/Ideta.svg @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Ifdo.svg b/src/images/icons/Ifdo.svg new file mode 100644 index 00000000..7dc13a3e --- /dev/null +++ b/src/images/icons/Ifdo.svg @@ -0,0 +1,32 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Iframely.svg b/src/images/icons/Iframely.svg new file mode 100644 index 00000000..4f37d850 --- /dev/null +++ b/src/images/icons/Iframely.svg @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Ikeono.svg b/src/images/icons/Ikeono.svg new file mode 100644 index 00000000..99bb8f5b --- /dev/null +++ b/src/images/icons/Ikeono.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Ilias.svg b/src/images/icons/Ilias.svg new file mode 100644 index 00000000..44400f7b --- /dev/null +++ b/src/images/icons/Ilias.svg @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/ImageKit.svg b/src/images/icons/ImageKit.svg new file mode 100644 index 00000000..bec30284 --- /dev/null +++ b/src/images/icons/ImageKit.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Imba.svg b/src/images/icons/Imba.svg new file mode 100644 index 00000000..31b018f8 --- /dev/null +++ b/src/images/icons/Imba.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/Imbox.svg b/src/images/icons/Imbox.svg new file mode 100644 index 00000000..7dbbe632 --- /dev/null +++ b/src/images/icons/Imbox.svg @@ -0,0 +1,20 @@ + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Immerss.svg b/src/images/icons/Immerss.svg new file mode 100644 index 00000000..982857c7 --- /dev/null +++ b/src/images/icons/Immerss.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Impresee.svg b/src/images/icons/Impresee.svg new file mode 100644 index 00000000..72108ffa --- /dev/null +++ b/src/images/icons/Impresee.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Impressure.svg b/src/images/icons/Impressure.svg new file mode 100644 index 00000000..50bba640 --- /dev/null +++ b/src/images/icons/Impressure.svg @@ -0,0 +1,66 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/InEvent.svg b/src/images/icons/InEvent.svg new file mode 100644 index 00000000..d1934224 --- /dev/null +++ b/src/images/icons/InEvent.svg @@ -0,0 +1,19 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Indexic.svg b/src/images/icons/Indexic.svg new file mode 100644 index 00000000..9992033a --- /dev/null +++ b/src/images/icons/Indexic.svg @@ -0,0 +1,102 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Infinity.svg b/src/images/icons/Infinity.svg new file mode 100644 index 00000000..0a943533 --- /dev/null +++ b/src/images/icons/Infinity.svg @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Infor.svg b/src/images/icons/Infor.svg new file mode 100644 index 00000000..9a1600ec --- /dev/null +++ b/src/images/icons/Infor.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/InformaMarkets.svg b/src/images/icons/InformaMarkets.svg new file mode 100644 index 00000000..dd11b83d --- /dev/null +++ b/src/images/icons/InformaMarkets.svg @@ -0,0 +1,247 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/InnoShop.svg b/src/images/icons/InnoShop.svg new file mode 100644 index 00000000..3ca13677 --- /dev/null +++ b/src/images/icons/InnoShop.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/images/icons/Inputflow.svg b/src/images/icons/Inputflow.svg new file mode 100644 index 00000000..b7eb1385 --- /dev/null +++ b/src/images/icons/Inputflow.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Inspectlet.svg b/src/images/icons/Inspectlet.svg new file mode 100644 index 00000000..ace87eeb --- /dev/null +++ b/src/images/icons/Inspectlet.svg @@ -0,0 +1,288 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Integrately.svg b/src/images/icons/Integrately.svg new file mode 100644 index 00000000..bf179428 --- /dev/null +++ b/src/images/icons/Integrately.svg @@ -0,0 +1,14 @@ + + + + + + \ No newline at end of file diff --git a/src/images/icons/InterRed.svg b/src/images/icons/InterRed.svg new file mode 100644 index 00000000..ec39430e --- /dev/null +++ b/src/images/icons/InterRed.svg @@ -0,0 +1,8 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/Intiaro.svg b/src/images/icons/Intiaro.svg new file mode 100644 index 00000000..818048f9 --- /dev/null +++ b/src/images/icons/Intiaro.svg @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Intice.svg b/src/images/icons/Intice.svg new file mode 100644 index 00000000..9e5fb8db --- /dev/null +++ b/src/images/icons/Intice.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Inveterate.svg b/src/images/icons/Inveterate.svg new file mode 100644 index 00000000..1a0cd502 --- /dev/null +++ b/src/images/icons/Inveterate.svg @@ -0,0 +1,222 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/InvisionCommunity.svg b/src/images/icons/InvisionCommunity.svg new file mode 100644 index 00000000..08a1ed02 --- /dev/null +++ b/src/images/icons/InvisionCommunity.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/Iress.svg b/src/images/icons/Iress.svg new file mode 100644 index 00000000..53488ae3 --- /dev/null +++ b/src/images/icons/Iress.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Italiaonline.svg b/src/images/icons/Italiaonline.svg new file mode 100644 index 00000000..280def26 --- /dev/null +++ b/src/images/icons/Italiaonline.svg @@ -0,0 +1,23 @@ + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Itoris.svg b/src/images/icons/Itoris.svg new file mode 100644 index 00000000..63160bcc --- /dev/null +++ b/src/images/icons/Itoris.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/src/images/icons/JBoard.svg b/src/images/icons/JBoard.svg new file mode 100644 index 00000000..0ba3e3e2 --- /dev/null +++ b/src/images/icons/JBoard.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Jabmo.svg b/src/images/icons/Jabmo.svg new file mode 100644 index 00000000..6a0e86ad --- /dev/null +++ b/src/images/icons/Jabmo.svg @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Jacklist.svg b/src/images/icons/Jacklist.svg new file mode 100644 index 00000000..af55a5f2 --- /dev/null +++ b/src/images/icons/Jacklist.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/JaduCentralContent.svg b/src/images/icons/JaduCentralContent.svg new file mode 100644 index 00000000..caaf0348 --- /dev/null +++ b/src/images/icons/JaduCentralContent.svg @@ -0,0 +1,167 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/JarvisAnalytics.svg b/src/images/icons/JarvisAnalytics.svg new file mode 100644 index 00000000..e84b74a3 --- /dev/null +++ b/src/images/icons/JarvisAnalytics.svg @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/JazzHR.svg b/src/images/icons/JazzHR.svg new file mode 100644 index 00000000..78530d9f --- /dev/null +++ b/src/images/icons/JazzHR.svg @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Jeeng.svg b/src/images/icons/Jeeng.svg new file mode 100644 index 00000000..9adc4ba9 --- /dev/null +++ b/src/images/icons/Jeeng.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/JetEngine.svg b/src/images/icons/JetEngine.svg new file mode 100644 index 00000000..ca9c9270 --- /dev/null +++ b/src/images/icons/JetEngine.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/JetTabs.svg b/src/images/icons/JetTabs.svg new file mode 100644 index 00000000..11ff5123 --- /dev/null +++ b/src/images/icons/JetTabs.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/Jetboost.svg b/src/images/icons/Jetboost.svg new file mode 100644 index 00000000..c562cb46 --- /dev/null +++ b/src/images/icons/Jetboost.svg @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Jiglu.svg b/src/images/icons/Jiglu.svg new file mode 100644 index 00000000..a481f203 --- /dev/null +++ b/src/images/icons/Jiglu.svg @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/JobBoardFire.svg b/src/images/icons/JobBoardFire.svg new file mode 100644 index 00000000..865da009 --- /dev/null +++ b/src/images/icons/JobBoardFire.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/Jobiqo.svg b/src/images/icons/Jobiqo.svg new file mode 100644 index 00000000..2c59c2a1 --- /dev/null +++ b/src/images/icons/Jobiqo.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/images/icons/Jobylon.svg b/src/images/icons/Jobylon.svg new file mode 100644 index 00000000..623f2a0e --- /dev/null +++ b/src/images/icons/Jobylon.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/JoinIt.svg b/src/images/icons/JoinIt.svg new file mode 100644 index 00000000..c277ebf5 --- /dev/null +++ b/src/images/icons/JoinIt.svg @@ -0,0 +1,396 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Joinchat.svg b/src/images/icons/Joinchat.svg new file mode 100644 index 00000000..ae2bb364 --- /dev/null +++ b/src/images/icons/Joinchat.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/Joonbot.svg b/src/images/icons/Joonbot.svg new file mode 100644 index 00000000..fb487a23 --- /dev/null +++ b/src/images/icons/Joonbot.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Jottful.svg b/src/images/icons/Jottful.svg new file mode 100644 index 00000000..37704d0b --- /dev/null +++ b/src/images/icons/Jottful.svg @@ -0,0 +1,138 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Jubna.svg b/src/images/icons/Jubna.svg new file mode 100644 index 00000000..134de423 --- /dev/null +++ b/src/images/icons/Jubna.svg @@ -0,0 +1,468 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Jugem.svg b/src/images/icons/Jugem.svg new file mode 100644 index 00000000..a30a7cac --- /dev/null +++ b/src/images/icons/Jugem.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/src/images/icons/Juicer.svg b/src/images/icons/Juicer.svg new file mode 100644 index 00000000..6129a030 --- /dev/null +++ b/src/images/icons/Juicer.svg @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/JumpCloud.svg b/src/images/icons/JumpCloud.svg new file mode 100644 index 00000000..6fbb6298 --- /dev/null +++ b/src/images/icons/JumpCloud.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Juphy.svg b/src/images/icons/Juphy.svg new file mode 100644 index 00000000..57cc1e67 --- /dev/null +++ b/src/images/icons/Juphy.svg @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/JuvoLeads.svg b/src/images/icons/JuvoLeads.svg new file mode 100644 index 00000000..0431f1f2 --- /dev/null +++ b/src/images/icons/JuvoLeads.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/KITCMS.svg b/src/images/icons/KITCMS.svg new file mode 100644 index 00000000..00ae8662 --- /dev/null +++ b/src/images/icons/KITCMS.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/KKTIX.svg b/src/images/icons/KKTIX.svg new file mode 100644 index 00000000..ab4ce4cc --- /dev/null +++ b/src/images/icons/KKTIX.svg @@ -0,0 +1,80 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/KUKUI.svg b/src/images/icons/KUKUI.svg new file mode 100644 index 00000000..72e819b8 --- /dev/null +++ b/src/images/icons/KUKUI.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Kalio.svg b/src/images/icons/Kalio.svg new file mode 100644 index 00000000..4f86f69e --- /dev/null +++ b/src/images/icons/Kalio.svg @@ -0,0 +1,23 @@ + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Kalix.svg b/src/images/icons/Kalix.svg new file mode 100644 index 00000000..84ce9efa --- /dev/null +++ b/src/images/icons/Kalix.svg @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Kamozi.svg b/src/images/icons/Kamozi.svg new file mode 100644 index 00000000..888e2fe0 --- /dev/null +++ b/src/images/icons/Kamozi.svg @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/KangarooRewards.svg b/src/images/icons/KangarooRewards.svg new file mode 100644 index 00000000..ae57555f --- /dev/null +++ b/src/images/icons/KangarooRewards.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/Kangle.svg b/src/images/icons/Kangle.svg new file mode 100644 index 00000000..65b18521 --- /dev/null +++ b/src/images/icons/Kangle.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/src/images/icons/KanzOboz.svg b/src/images/icons/KanzOboz.svg new file mode 100644 index 00000000..d82252e4 --- /dev/null +++ b/src/images/icons/KanzOboz.svg @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Kartify.svg b/src/images/icons/Kartify.svg new file mode 100644 index 00000000..8eddd8fd --- /dev/null +++ b/src/images/icons/Kartify.svg @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Kartmax.svg b/src/images/icons/Kartmax.svg new file mode 100644 index 00000000..22ddd1dc --- /dev/null +++ b/src/images/icons/Kartmax.svg @@ -0,0 +1,14 @@ + + + + + + \ No newline at end of file diff --git a/src/images/icons/Kartris.svg b/src/images/icons/Kartris.svg new file mode 100644 index 00000000..4f286da4 --- /dev/null +++ b/src/images/icons/Kartris.svg @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Kasika.svg b/src/images/icons/Kasika.svg new file mode 100644 index 00000000..28bcdfd4 --- /dev/null +++ b/src/images/icons/Kasika.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/KeaBuilder.svg b/src/images/icons/KeaBuilder.svg new file mode 100644 index 00000000..9841c909 --- /dev/null +++ b/src/images/icons/KeaBuilder.svg @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Keepeek.svg b/src/images/icons/Keepeek.svg new file mode 100644 index 00000000..8e8b7a8a --- /dev/null +++ b/src/images/icons/Keepeek.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/Kenect.svg b/src/images/icons/Kenect.svg new file mode 100644 index 00000000..0dafc8e2 --- /dev/null +++ b/src/images/icons/Kenect.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Kenlo.svg b/src/images/icons/Kenlo.svg new file mode 100644 index 00000000..1050760a --- /dev/null +++ b/src/images/icons/Kenlo.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Kerning.svg b/src/images/icons/Kerning.svg new file mode 100644 index 00000000..1fe1d548 --- /dev/null +++ b/src/images/icons/Kerning.svg @@ -0,0 +1,89 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/KeyReply.svg b/src/images/icons/KeyReply.svg new file mode 100644 index 00000000..3f1ce1fa --- /dev/null +++ b/src/images/icons/KeyReply.svg @@ -0,0 +1,78 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Keyvos.svg b/src/images/icons/Keyvos.svg new file mode 100644 index 00000000..00b277e6 --- /dev/null +++ b/src/images/icons/Keyvos.svg @@ -0,0 +1,73 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/images/icons/Keywee.svg b/src/images/icons/Keywee.svg new file mode 100644 index 00000000..8d63a4f1 --- /dev/null +++ b/src/images/icons/Keywee.svg @@ -0,0 +1,123 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Kickflip.svg b/src/images/icons/Kickflip.svg new file mode 100644 index 00000000..930b92b3 --- /dev/null +++ b/src/images/icons/Kickflip.svg @@ -0,0 +1,9 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/Kilkaya.svg b/src/images/icons/Kilkaya.svg new file mode 100644 index 00000000..a32b8ca7 --- /dev/null +++ b/src/images/icons/Kilkaya.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Kimonix.svg b/src/images/icons/Kimonix.svg new file mode 100644 index 00000000..90edd4ca --- /dev/null +++ b/src/images/icons/Kimonix.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/Kiosked.svg b/src/images/icons/Kiosked.svg new file mode 100644 index 00000000..d52e9d3f --- /dev/null +++ b/src/images/icons/Kiosked.svg @@ -0,0 +1,23 @@ + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Kites.svg b/src/images/icons/Kites.svg new file mode 100644 index 00000000..b31a8a60 --- /dev/null +++ b/src/images/icons/Kites.svg @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Kiva.svg b/src/images/icons/Kiva.svg new file mode 100644 index 00000000..93c86084 --- /dev/null +++ b/src/images/icons/Kiva.svg @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/images/icons/Klaro.png b/src/images/icons/Klaro.png deleted file mode 100644 index a9784ab2..00000000 Binary files a/src/images/icons/Klaro.png and /dev/null differ diff --git a/src/images/icons/Klaro.svg b/src/images/icons/Klaro.svg new file mode 100644 index 00000000..396875ee --- /dev/null +++ b/src/images/icons/Klaro.svg @@ -0,0 +1,14 @@ + + + + + + \ No newline at end of file diff --git a/src/images/icons/Kleer.svg b/src/images/icons/Kleer.svg new file mode 100644 index 00000000..fa37705a --- /dev/null +++ b/src/images/icons/Kleer.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/Kliken.svg b/src/images/icons/Kliken.svg new file mode 100644 index 00000000..33d02dd1 --- /dev/null +++ b/src/images/icons/Kliken.svg @@ -0,0 +1,270 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Klip.svg b/src/images/icons/Klip.svg new file mode 100644 index 00000000..86237d87 --- /dev/null +++ b/src/images/icons/Klip.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/Knitpay.svg b/src/images/icons/Knitpay.svg new file mode 100644 index 00000000..53704f41 --- /dev/null +++ b/src/images/icons/Knitpay.svg @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/KnoCommerce.svg b/src/images/icons/KnoCommerce.svg new file mode 100644 index 00000000..656b7ec5 --- /dev/null +++ b/src/images/icons/KnoCommerce.svg @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/KnockKnockApp.svg b/src/images/icons/KnockKnockApp.svg new file mode 100644 index 00000000..fdd24b86 --- /dev/null +++ b/src/images/icons/KnockKnockApp.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Knorish.svg b/src/images/icons/Knorish.svg new file mode 100644 index 00000000..8713eabf --- /dev/null +++ b/src/images/icons/Knorish.svg @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Kochava.svg b/src/images/icons/Kochava.svg new file mode 100644 index 00000000..74b617cb --- /dev/null +++ b/src/images/icons/Kochava.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/Kommand.svg b/src/images/icons/Kommand.svg new file mode 100644 index 00000000..9859d650 --- /dev/null +++ b/src/images/icons/Kommand.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/KonfidencyReviews.svg b/src/images/icons/KonfidencyReviews.svg new file mode 100644 index 00000000..b1f84ff8 --- /dev/null +++ b/src/images/icons/KonfidencyReviews.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/KoobCamp.svg b/src/images/icons/KoobCamp.svg new file mode 100644 index 00000000..71c00eb0 --- /dev/null +++ b/src/images/icons/KoobCamp.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/Kooomo.svg b/src/images/icons/Kooomo.svg index 2d82975d..2689516f 100644 --- a/src/images/icons/Kooomo.svg +++ b/src/images/icons/Kooomo.svg @@ -1,9 +1,10 @@ - - - - - - - - + + + + + + + + + diff --git a/src/images/icons/Kreatio.svg b/src/images/icons/Kreatio.svg new file mode 100644 index 00000000..da3f3274 --- /dev/null +++ b/src/images/icons/Kreatio.svg @@ -0,0 +1,172 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Krible.svg b/src/images/icons/Krible.svg new file mode 100644 index 00000000..91c85b3e --- /dev/null +++ b/src/images/icons/Krible.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/KrossBooking.svg b/src/images/icons/KrossBooking.svg new file mode 100644 index 00000000..a1446d6d --- /dev/null +++ b/src/images/icons/KrossBooking.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Kssib.svg b/src/images/icons/Kssib.svg new file mode 100644 index 00000000..a004fdff --- /dev/null +++ b/src/images/icons/Kssib.svg @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/KubioBuilder.svg b/src/images/icons/KubioBuilder.svg new file mode 100644 index 00000000..47909e53 --- /dev/null +++ b/src/images/icons/KubioBuilder.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Kueez.svg b/src/images/icons/Kueez.svg new file mode 100644 index 00000000..a29a2075 --- /dev/null +++ b/src/images/icons/Kueez.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/KuleaMarketing.svg b/src/images/icons/KuleaMarketing.svg new file mode 100644 index 00000000..4ebf2136 --- /dev/null +++ b/src/images/icons/KuleaMarketing.svg @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Kundo.svg b/src/images/icons/Kundo.svg new file mode 100644 index 00000000..69730784 --- /dev/null +++ b/src/images/icons/Kundo.svg @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Kuroco.svg b/src/images/icons/Kuroco.svg new file mode 100644 index 00000000..e58671c2 --- /dev/null +++ b/src/images/icons/Kuroco.svg @@ -0,0 +1,20 @@ + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/KuronekoServerCDN.svg b/src/images/icons/KuronekoServerCDN.svg new file mode 100644 index 00000000..762af3ab --- /dev/null +++ b/src/images/icons/KuronekoServerCDN.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Kustomer.svg b/src/images/icons/Kustomer.svg index 5ac89be4..827aad0a 100644 --- a/src/images/icons/Kustomer.svg +++ b/src/images/icons/Kustomer.svg @@ -1 +1,14 @@ - Kustomer_Logo Created with Sketch. \ No newline at end of file + + + + + + + + + + + + + + diff --git a/src/images/icons/Kwanko.svg b/src/images/icons/Kwanko.svg new file mode 100644 index 00000000..3ba0373d --- /dev/null +++ b/src/images/icons/Kwanko.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/Kwanzoo.svg b/src/images/icons/Kwanzoo.svg new file mode 100644 index 00000000..49a4f0db --- /dev/null +++ b/src/images/icons/Kwanzoo.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Kwipped.svg b/src/images/icons/Kwipped.svg new file mode 100644 index 00000000..ecc9c187 --- /dev/null +++ b/src/images/icons/Kwipped.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Kyvio.svg b/src/images/icons/Kyvio.svg new file mode 100644 index 00000000..611e3ad5 --- /dev/null +++ b/src/images/icons/Kyvio.svg @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/LEADIN.svg b/src/images/icons/LEADIN.svg new file mode 100644 index 00000000..1c57055a --- /dev/null +++ b/src/images/icons/LEADIN.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/LEVERADE.svg b/src/images/icons/LEVERADE.svg new file mode 100644 index 00000000..686ace6e --- /dev/null +++ b/src/images/icons/LEVERADE.svg @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/LPQV.svg b/src/images/icons/LPQV.svg new file mode 100644 index 00000000..1ae020b8 --- /dev/null +++ b/src/images/icons/LPQV.svg @@ -0,0 +1,14 @@ + + + + + + \ No newline at end of file diff --git a/src/images/icons/LTheme.svg b/src/images/icons/LTheme.svg new file mode 100644 index 00000000..be713d91 --- /dev/null +++ b/src/images/icons/LTheme.svg @@ -0,0 +1,9 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/LabradorCMS.svg b/src/images/icons/LabradorCMS.svg new file mode 100644 index 00000000..bc403f8b --- /dev/null +++ b/src/images/icons/LabradorCMS.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/LagaWidget.svg b/src/images/icons/LagaWidget.svg new file mode 100644 index 00000000..c5e32c01 --- /dev/null +++ b/src/images/icons/LagaWidget.svg @@ -0,0 +1,261 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Landingi.svg b/src/images/icons/Landingi.svg new file mode 100644 index 00000000..eee16f00 --- /dev/null +++ b/src/images/icons/Landingi.svg @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Lapis.svg b/src/images/icons/Lapis.svg new file mode 100644 index 00000000..e4b8f1ad --- /dev/null +++ b/src/images/icons/Lapis.svg @@ -0,0 +1,89 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/LaunchNotes.svg b/src/images/icons/LaunchNotes.svg new file mode 100644 index 00000000..b4dbf6b6 --- /dev/null +++ b/src/images/icons/LaunchNotes.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Lawmatics.svg b/src/images/icons/Lawmatics.svg new file mode 100644 index 00000000..bf405311 --- /dev/null +++ b/src/images/icons/Lawmatics.svg @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Layers.png b/src/images/icons/Layers.png new file mode 100644 index 00000000..868c71d3 Binary files /dev/null and b/src/images/icons/Layers.png differ diff --git a/src/images/icons/Laylo.svg b/src/images/icons/Laylo.svg new file mode 100644 index 00000000..6118e103 --- /dev/null +++ b/src/images/icons/Laylo.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/LeadByte.svg b/src/images/icons/LeadByte.svg new file mode 100644 index 00000000..9e4575d7 --- /dev/null +++ b/src/images/icons/LeadByte.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/LeadFinity.svg b/src/images/icons/LeadFinity.svg new file mode 100644 index 00000000..65c29549 --- /dev/null +++ b/src/images/icons/LeadFinity.svg @@ -0,0 +1,98 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/LeadForensics.svg b/src/images/icons/LeadForensics.svg new file mode 100644 index 00000000..8b741b34 --- /dev/null +++ b/src/images/icons/LeadForensics.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/LeadGenerated.svg b/src/images/icons/LeadGenerated.svg new file mode 100644 index 00000000..84c8bedd --- /dev/null +++ b/src/images/icons/LeadGenerated.svg @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/LeadProsper.svg b/src/images/icons/LeadProsper.svg new file mode 100644 index 00000000..4cc2ade5 --- /dev/null +++ b/src/images/icons/LeadProsper.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Leadbit.svg b/src/images/icons/Leadbit.svg new file mode 100644 index 00000000..e11b1aa5 --- /dev/null +++ b/src/images/icons/Leadbit.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/Leadferno.svg b/src/images/icons/Leadferno.svg new file mode 100644 index 00000000..bd9972b0 --- /dev/null +++ b/src/images/icons/Leadferno.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/src/images/icons/Leadific.svg b/src/images/icons/Leadific.svg new file mode 100644 index 00000000..36bbcd0f --- /dev/null +++ b/src/images/icons/Leadific.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Leadteh.svg b/src/images/icons/Leadteh.svg new file mode 100644 index 00000000..2e729c41 --- /dev/null +++ b/src/images/icons/Leadteh.svg @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Leady.svg b/src/images/icons/Leady.svg new file mode 100644 index 00000000..f37ed3ce --- /dev/null +++ b/src/images/icons/Leady.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Leafly.svg b/src/images/icons/Leafly.svg new file mode 100644 index 00000000..ebd885eb --- /dev/null +++ b/src/images/icons/Leafly.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/LeanData.svg b/src/images/icons/LeanData.svg new file mode 100644 index 00000000..b3039dea --- /dev/null +++ b/src/images/icons/LeanData.svg @@ -0,0 +1,19 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/LearnUpon.svg b/src/images/icons/LearnUpon.svg new file mode 100644 index 00000000..35295722 --- /dev/null +++ b/src/images/icons/LearnUpon.svg @@ -0,0 +1,12 @@ + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/LearnyBox.svg b/src/images/icons/LearnyBox.svg new file mode 100644 index 00000000..38ce15b0 --- /dev/null +++ b/src/images/icons/LearnyBox.svg @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/LeaseHawk.svg b/src/images/icons/LeaseHawk.svg new file mode 100644 index 00000000..c22c3266 --- /dev/null +++ b/src/images/icons/LeaseHawk.svg @@ -0,0 +1,78 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Lendi.svg b/src/images/icons/Lendi.svg new file mode 100644 index 00000000..0c37c862 --- /dev/null +++ b/src/images/icons/Lendi.svg @@ -0,0 +1,164 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Lenus.svg b/src/images/icons/Lenus.svg new file mode 100644 index 00000000..a4aa1839 --- /dev/null +++ b/src/images/icons/Lenus.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/LetsConnect.svg b/src/images/icons/LetsConnect.svg new file mode 100644 index 00000000..621697ea --- /dev/null +++ b/src/images/icons/LetsConnect.svg @@ -0,0 +1,28 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Lexer.svg b/src/images/icons/Lexer.svg new file mode 100644 index 00000000..6d86110c --- /dev/null +++ b/src/images/icons/Lexer.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/LifterApps.svg b/src/images/icons/LifterApps.svg new file mode 100644 index 00000000..27b7c46b --- /dev/null +++ b/src/images/icons/LifterApps.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/LightSPeedVT.svg b/src/images/icons/LightSPeedVT.svg new file mode 100644 index 00000000..d0eac94c --- /dev/null +++ b/src/images/icons/LightSPeedVT.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/Lightfolio.svg b/src/images/icons/Lightfolio.svg new file mode 100644 index 00000000..9557deac --- /dev/null +++ b/src/images/icons/Lightfolio.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Ligna.svg b/src/images/icons/Ligna.svg new file mode 100644 index 00000000..6ebccaa9 --- /dev/null +++ b/src/images/icons/Ligna.svg @@ -0,0 +1,92 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Liine.svg b/src/images/icons/Liine.svg new file mode 100644 index 00000000..80dcef57 --- /dev/null +++ b/src/images/icons/Liine.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Lily.svg b/src/images/icons/Lily.svg new file mode 100644 index 00000000..050a8e2c --- /dev/null +++ b/src/images/icons/Lily.svg @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Linda.svg b/src/images/icons/Linda.svg new file mode 100644 index 00000000..b4d43c88 --- /dev/null +++ b/src/images/icons/Linda.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Lindy.svg b/src/images/icons/Lindy.svg new file mode 100644 index 00000000..cee9a72b --- /dev/null +++ b/src/images/icons/Lindy.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Line2.svg b/src/images/icons/Line2.svg new file mode 100644 index 00000000..5fc6d53b --- /dev/null +++ b/src/images/icons/Line2.svg @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Linear.svg b/src/images/icons/Linear.svg new file mode 100644 index 00000000..227d94a9 --- /dev/null +++ b/src/images/icons/Linear.svg @@ -0,0 +1,23 @@ + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Linguana.svg b/src/images/icons/Linguana.svg new file mode 100644 index 00000000..4851a013 --- /dev/null +++ b/src/images/icons/Linguana.svg @@ -0,0 +1,14 @@ + + + + + + \ No newline at end of file diff --git a/src/images/icons/Linkfire.svg b/src/images/icons/Linkfire.svg new file mode 100644 index 00000000..a48f651b --- /dev/null +++ b/src/images/icons/Linkfire.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Linkz.svg b/src/images/icons/Linkz.svg new file mode 100644 index 00000000..64df8272 --- /dev/null +++ b/src/images/icons/Linkz.svg @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/ListTrac.svg b/src/images/icons/ListTrac.svg new file mode 100644 index 00000000..c5ee4114 --- /dev/null +++ b/src/images/icons/ListTrac.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Listagram.svg b/src/images/icons/Listagram.svg new file mode 100644 index 00000000..1d36f52c --- /dev/null +++ b/src/images/icons/Listagram.svg @@ -0,0 +1,12 @@ + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/LiteSpeed.svg b/src/images/icons/LiteSpeed.svg index 7c841b8c..36ea6f73 100644 --- a/src/images/icons/LiteSpeed.svg +++ b/src/images/icons/LiteSpeed.svg @@ -1,101 +1,10 @@ - - - -image/svg+xml \ No newline at end of file + + + + + + + + + + diff --git a/src/images/icons/LiveBooks.svg b/src/images/icons/LiveBooks.svg new file mode 100644 index 00000000..13f52c04 --- /dev/null +++ b/src/images/icons/LiveBooks.svg @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/LiveBy.svg b/src/images/icons/LiveBy.svg new file mode 100644 index 00000000..f0b6ef9a --- /dev/null +++ b/src/images/icons/LiveBy.svg @@ -0,0 +1,15 @@ + + + + + + + \ No newline at end of file diff --git a/src/images/icons/LiveSite.svg b/src/images/icons/LiveSite.svg new file mode 100644 index 00000000..e5075ffb --- /dev/null +++ b/src/images/icons/LiveSite.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/LiveTex.svg b/src/images/icons/LiveTex.svg new file mode 100644 index 00000000..06354c92 --- /dev/null +++ b/src/images/icons/LiveTex.svg @@ -0,0 +1,14 @@ + + + + + + \ No newline at end of file diff --git a/src/images/icons/LobbyPMS.svg b/src/images/icons/LobbyPMS.svg new file mode 100644 index 00000000..e41a4512 --- /dev/null +++ b/src/images/icons/LobbyPMS.svg @@ -0,0 +1,19 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/LocalGovDrupal.svg b/src/images/icons/LocalGovDrupal.svg new file mode 100644 index 00000000..e580ed0e --- /dev/null +++ b/src/images/icons/LocalGovDrupal.svg @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/LocaliQ.svg b/src/images/icons/LocaliQ.svg new file mode 100644 index 00000000..03ff8353 --- /dev/null +++ b/src/images/icons/LocaliQ.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/src/images/icons/Lofty.svg b/src/images/icons/Lofty.svg new file mode 100644 index 00000000..6d7a0505 --- /dev/null +++ b/src/images/icons/Lofty.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/LojasOnlineCTT.svg b/src/images/icons/LojasOnlineCTT.svg new file mode 100644 index 00000000..f232f8f9 --- /dev/null +++ b/src/images/icons/LojasOnlineCTT.svg @@ -0,0 +1,26 @@ + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Loloyal.svg b/src/images/icons/Loloyal.svg new file mode 100644 index 00000000..3bd3ce52 --- /dev/null +++ b/src/images/icons/Loloyal.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Looksize.svg b/src/images/icons/Looksize.svg new file mode 100644 index 00000000..d3961187 --- /dev/null +++ b/src/images/icons/Looksize.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/Loopi.svg b/src/images/icons/Loopi.svg new file mode 100644 index 00000000..c4c2a45d --- /dev/null +++ b/src/images/icons/Loopi.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/src/images/icons/Lovable.svg b/src/images/icons/Lovable.svg new file mode 100644 index 00000000..b9530200 --- /dev/null +++ b/src/images/icons/Lovable.svg @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/images/icons/Lovingly.svg b/src/images/icons/Lovingly.svg new file mode 100644 index 00000000..bbb071fc --- /dev/null +++ b/src/images/icons/Lovingly.svg @@ -0,0 +1,66 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/LoyaltyLoop.svg b/src/images/icons/LoyaltyLoop.svg new file mode 100644 index 00000000..6c9ee7d8 --- /dev/null +++ b/src/images/icons/LoyaltyLoop.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Loyalzoo.svg b/src/images/icons/Loyalzoo.svg new file mode 100644 index 00000000..0af23ee2 --- /dev/null +++ b/src/images/icons/Loyalzoo.svg @@ -0,0 +1,90 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Loyoly.svg b/src/images/icons/Loyoly.svg new file mode 100644 index 00000000..778c6abb --- /dev/null +++ b/src/images/icons/Loyoly.svg @@ -0,0 +1,29 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Luma.svg b/src/images/icons/Luma.svg new file mode 100644 index 00000000..e4905821 --- /dev/null +++ b/src/images/icons/Luma.svg @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Lumino.svg b/src/images/icons/Lumino.svg new file mode 100644 index 00000000..4616ae26 --- /dev/null +++ b/src/images/icons/Lumino.svg @@ -0,0 +1,86 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/LuveeduCloud.svg b/src/images/icons/LuveeduCloud.svg new file mode 100644 index 00000000..619e309b --- /dev/null +++ b/src/images/icons/LuveeduCloud.svg @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/MDirector.svg b/src/images/icons/MDirector.svg new file mode 100644 index 00000000..3fddb35b --- /dev/null +++ b/src/images/icons/MDirector.svg @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/MRIEagle.svg b/src/images/icons/MRISoftware.svg similarity index 100% rename from src/images/icons/MRIEagle.svg rename to src/images/icons/MRISoftware.svg diff --git a/src/images/icons/MSAAQ.svg b/src/images/icons/MSAAQ.svg new file mode 100644 index 00000000..df40f043 --- /dev/null +++ b/src/images/icons/MSAAQ.svg @@ -0,0 +1,14 @@ + + + + + + \ No newline at end of file diff --git a/src/images/icons/Maatoo.svg b/src/images/icons/Maatoo.svg new file mode 100644 index 00000000..46304aca --- /dev/null +++ b/src/images/icons/Maatoo.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/MacroActive.svg b/src/images/icons/MacroActive.svg new file mode 100644 index 00000000..c13a4ae4 --- /dev/null +++ b/src/images/icons/MacroActive.svg @@ -0,0 +1,1517 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/MadKudu.svg b/src/images/icons/MadKudu.svg new file mode 100644 index 00000000..d459472c --- /dev/null +++ b/src/images/icons/MadKudu.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/Maestra.svg b/src/images/icons/Maestra.svg new file mode 100644 index 00000000..5802bd7b --- /dev/null +++ b/src/images/icons/Maestra.svg @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Maestrus.svg b/src/images/icons/Maestrus.svg new file mode 100644 index 00000000..7ef2ddfb --- /dev/null +++ b/src/images/icons/Maestrus.svg @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/MageMail.svg b/src/images/icons/MageMail.svg new file mode 100644 index 00000000..1f6f6bf4 --- /dev/null +++ b/src/images/icons/MageMail.svg @@ -0,0 +1,32 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/MagicBell.svg b/src/images/icons/MagicBell.svg new file mode 100644 index 00000000..b0a3425e --- /dev/null +++ b/src/images/icons/MagicBell.svg @@ -0,0 +1,75 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/MagicLabs.svg b/src/images/icons/MagicLabs.svg new file mode 100644 index 00000000..feb6d327 --- /dev/null +++ b/src/images/icons/MagicLabs.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/MagicUI.svg b/src/images/icons/MagicUI.svg new file mode 100644 index 00000000..c5bb0989 --- /dev/null +++ b/src/images/icons/MagicUI.svg @@ -0,0 +1,207 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Magnews.svg b/src/images/icons/Magnews.svg new file mode 100644 index 00000000..7e62ac5d --- /dev/null +++ b/src/images/icons/Magnews.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Maho.svg b/src/images/icons/Maho.svg new file mode 100644 index 00000000..9ffc59c1 --- /dev/null +++ b/src/images/icons/Maho.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/images/icons/Mailocator.svg b/src/images/icons/Mailocator.svg new file mode 100644 index 00000000..042ce332 --- /dev/null +++ b/src/images/icons/Mailocator.svg @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Mainboard.svg b/src/images/icons/Mainboard.svg new file mode 100644 index 00000000..ea3f6e00 --- /dev/null +++ b/src/images/icons/Mainboard.svg @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Maisie.svg b/src/images/icons/Maisie.svg new file mode 100644 index 00000000..c9beb095 --- /dev/null +++ b/src/images/icons/Maisie.svg @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Makaira.svg b/src/images/icons/Makaira.svg new file mode 100644 index 00000000..8531f0c4 --- /dev/null +++ b/src/images/icons/Makaira.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/Makane.svg b/src/images/icons/Makane.svg new file mode 100644 index 00000000..4a6871e9 --- /dev/null +++ b/src/images/icons/Makane.svg @@ -0,0 +1,29 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Maker.svg b/src/images/icons/Maker.svg new file mode 100644 index 00000000..7dc336f0 --- /dev/null +++ b/src/images/icons/Maker.svg @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Makeswift.svg b/src/images/icons/Makeswift.svg new file mode 100644 index 00000000..eedbf648 --- /dev/null +++ b/src/images/icons/Makeswift.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/MangaReader.svg b/src/images/icons/MangaReader.svg new file mode 100644 index 00000000..1dc0c7a2 --- /dev/null +++ b/src/images/icons/MangaReader.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/MapLoco.svg b/src/images/icons/MapLoco.svg new file mode 100644 index 00000000..fb4d7d10 --- /dev/null +++ b/src/images/icons/MapLoco.svg @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/MapMyChannel.svg b/src/images/icons/MapMyChannel.svg new file mode 100644 index 00000000..7dd02030 --- /dev/null +++ b/src/images/icons/MapMyChannel.svg @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/images/icons/MapTrack.svg b/src/images/icons/MapTrack.svg new file mode 100644 index 00000000..0db827aa --- /dev/null +++ b/src/images/icons/MapTrack.svg @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Mapline.svg b/src/images/icons/Mapline.svg new file mode 100644 index 00000000..b2e7e4a7 --- /dev/null +++ b/src/images/icons/Mapline.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/src/images/icons/Mappedin.svg b/src/images/icons/Mappedin.svg new file mode 100644 index 00000000..f926a496 --- /dev/null +++ b/src/images/icons/Mappedin.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/Maptiler.svg b/src/images/icons/Maptiler.svg new file mode 100644 index 00000000..fc1d8f1b --- /dev/null +++ b/src/images/icons/Maptiler.svg @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/MarketHero.svg b/src/images/icons/MarketHero.svg new file mode 100644 index 00000000..b8970af7 --- /dev/null +++ b/src/images/icons/MarketHero.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Marsello.svg b/src/images/icons/Marsello.svg new file mode 100644 index 00000000..2b8ebe21 --- /dev/null +++ b/src/images/icons/Marsello.svg @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Marshal.svg b/src/images/icons/Marshal.svg new file mode 100644 index 00000000..412e182f --- /dev/null +++ b/src/images/icons/Marshal.svg @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/MashoreMethod.svg b/src/images/icons/MashoreMethod.svg new file mode 100644 index 00000000..a623920a --- /dev/null +++ b/src/images/icons/MashoreMethod.svg @@ -0,0 +1,20 @@ + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Masteriyo.svg b/src/images/icons/Masteriyo.svg new file mode 100644 index 00000000..738d7e17 --- /dev/null +++ b/src/images/icons/Masteriyo.svg @@ -0,0 +1,26 @@ + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/MasteryManager.svg b/src/images/icons/MasteryManager.svg new file mode 100644 index 00000000..b610c6da --- /dev/null +++ b/src/images/icons/MasteryManager.svg @@ -0,0 +1,14 @@ + + + + + + \ No newline at end of file diff --git a/src/images/icons/Matchi.svg b/src/images/icons/Matchi.svg new file mode 100644 index 00000000..183949ed --- /dev/null +++ b/src/images/icons/Matchi.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Matchlab.svg b/src/images/icons/Matchlab.svg new file mode 100644 index 00000000..35149e0e --- /dev/null +++ b/src/images/icons/Matchlab.svg @@ -0,0 +1,10 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/Mava.svg b/src/images/icons/Mava.svg new file mode 100644 index 00000000..5ef9872a --- /dev/null +++ b/src/images/icons/Mava.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Mavo.svg b/src/images/icons/Mavo.svg new file mode 100644 index 00000000..82d92a4e --- /dev/null +++ b/src/images/icons/Mavo.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/Maxemail.svg b/src/images/icons/Maxemail.svg old mode 100755 new mode 100644 diff --git a/src/images/icons/MaxiCMS.svg b/src/images/icons/MaxiCMS.svg new file mode 100644 index 00000000..70645bbc --- /dev/null +++ b/src/images/icons/MaxiCMS.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/images/icons/Maxxton.svg b/src/images/icons/Maxxton.svg new file mode 100644 index 00000000..1bb90e8f --- /dev/null +++ b/src/images/icons/Maxxton.svg @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Mazrica.svg b/src/images/icons/Mazrica.svg new file mode 100644 index 00000000..4f0518f5 --- /dev/null +++ b/src/images/icons/Mazrica.svg @@ -0,0 +1,32 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Meazy.svg b/src/images/icons/Meazy.svg new file mode 100644 index 00000000..54052a90 --- /dev/null +++ b/src/images/icons/Meazy.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Medchat.svg b/src/images/icons/Medchat.svg new file mode 100644 index 00000000..8a884734 --- /dev/null +++ b/src/images/icons/Medchat.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/MediaPlatform.svg b/src/images/icons/MediaPlatform.svg new file mode 100644 index 00000000..d3193dae --- /dev/null +++ b/src/images/icons/MediaPlatform.svg @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Medium.svg b/src/images/icons/Medium.svg old mode 100755 new mode 100644 diff --git a/src/images/icons/Medoc.svg b/src/images/icons/Medoc.svg new file mode 100644 index 00000000..f6f129d1 --- /dev/null +++ b/src/images/icons/Medoc.svg @@ -0,0 +1,90 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/MeetupExpress.svg b/src/images/icons/MeetupExpress.svg new file mode 100644 index 00000000..222badc6 --- /dev/null +++ b/src/images/icons/MeetupExpress.svg @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Melibo.svg b/src/images/icons/Melibo.svg new file mode 100644 index 00000000..705066e9 --- /dev/null +++ b/src/images/icons/Melibo.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Meltwater.svg b/src/images/icons/Meltwater.svg new file mode 100644 index 00000000..024eae95 --- /dev/null +++ b/src/images/icons/Meltwater.svg @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Mentaya.svg b/src/images/icons/Mentaya.svg new file mode 100644 index 00000000..eb619025 --- /dev/null +++ b/src/images/icons/Mentaya.svg @@ -0,0 +1,1757 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Mercer.svg b/src/images/icons/Mercer.svg new file mode 100644 index 00000000..82845bd8 --- /dev/null +++ b/src/images/icons/Mercer.svg @@ -0,0 +1,12 @@ + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Merchello.svg b/src/images/icons/Merchello.svg new file mode 100644 index 00000000..7be8f233 --- /dev/null +++ b/src/images/icons/Merchello.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Mercurycloud.svg b/src/images/icons/Mercurycloud.svg new file mode 100644 index 00000000..55837f70 --- /dev/null +++ b/src/images/icons/Mercurycloud.svg @@ -0,0 +1,578 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Merge.svg b/src/images/icons/Merge.svg new file mode 100644 index 00000000..168f49ce --- /dev/null +++ b/src/images/icons/Merge.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/Merlin.svg b/src/images/icons/Merlin.svg new file mode 100644 index 00000000..b84c55c1 --- /dev/null +++ b/src/images/icons/Merlin.svg @@ -0,0 +1,23 @@ + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/MessageGears.svg b/src/images/icons/MessageGears.svg new file mode 100644 index 00000000..a19ec51b --- /dev/null +++ b/src/images/icons/MessageGears.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/Meta.svg b/src/images/icons/Meta.svg new file mode 100644 index 00000000..7e3c26a8 --- /dev/null +++ b/src/images/icons/Meta.svg @@ -0,0 +1,127 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/MetaMap.svg b/src/images/icons/MetaMap.svg new file mode 100644 index 00000000..bbb24274 --- /dev/null +++ b/src/images/icons/MetaMap.svg @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Meticular.svg b/src/images/icons/Meticular.svg new file mode 100644 index 00000000..319780de --- /dev/null +++ b/src/images/icons/Meticular.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Metorik.svg b/src/images/icons/Metorik.svg new file mode 100644 index 00000000..7e6985c5 --- /dev/null +++ b/src/images/icons/Metorik.svg @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/MetricsKey.svg b/src/images/icons/MetricsKey.svg new file mode 100644 index 00000000..bc4ed063 --- /dev/null +++ b/src/images/icons/MetricsKey.svg @@ -0,0 +1,276 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Miappi.svg b/src/images/icons/Miappi.svg new file mode 100644 index 00000000..09b30304 --- /dev/null +++ b/src/images/icons/Miappi.svg @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/MicrosoftPowerBI.svg b/src/images/icons/MicrosoftPowerBI.svg new file mode 100644 index 00000000..e74dafe3 --- /dev/null +++ b/src/images/icons/MicrosoftPowerBI.svg @@ -0,0 +1,198 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/MicrosoftSilverlight.svg b/src/images/icons/MicrosoftSilverlight.svg new file mode 100644 index 00000000..a4bf7805 --- /dev/null +++ b/src/images/icons/MicrosoftSilverlight.svg @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/images/icons/Midtrans.svg b/src/images/icons/Midtrans.svg new file mode 100644 index 00000000..b561fc93 --- /dev/null +++ b/src/images/icons/Midtrans.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/Mieruca.svg b/src/images/icons/Mieruca.svg new file mode 100644 index 00000000..72e9b735 --- /dev/null +++ b/src/images/icons/Mieruca.svg @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/MiloTree.svg b/src/images/icons/MiloTree.svg new file mode 100644 index 00000000..af87949c --- /dev/null +++ b/src/images/icons/MiloTree.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Milonic.svg b/src/images/icons/Milonic.svg new file mode 100644 index 00000000..bea497e4 --- /dev/null +++ b/src/images/icons/Milonic.svg @@ -0,0 +1,14 @@ + + + + + + \ No newline at end of file diff --git a/src/images/icons/Milvus.svg b/src/images/icons/Milvus.svg new file mode 100644 index 00000000..c14ad8a0 --- /dev/null +++ b/src/images/icons/Milvus.svg @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Mimiran.svg b/src/images/icons/Mimiran.svg new file mode 100644 index 00000000..0682494b --- /dev/null +++ b/src/images/icons/Mimiran.svg @@ -0,0 +1,78 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/MindStudio.svg b/src/images/icons/MindStudio.svg new file mode 100644 index 00000000..45570815 --- /dev/null +++ b/src/images/icons/MindStudio.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/MineLabz.svg b/src/images/icons/MineLabz.svg new file mode 100644 index 00000000..7ad36f0e --- /dev/null +++ b/src/images/icons/MineLabz.svg @@ -0,0 +1,837 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Minerstat.svg b/src/images/icons/Minerstat.svg new file mode 100644 index 00000000..1830629a --- /dev/null +++ b/src/images/icons/Minerstat.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Minted.svg b/src/images/icons/Minted.svg new file mode 100644 index 00000000..be2cd9cc --- /dev/null +++ b/src/images/icons/Minted.svg @@ -0,0 +1,17 @@ + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Mintox.svg b/src/images/icons/Mintox.svg new file mode 100644 index 00000000..e799a959 --- /dev/null +++ b/src/images/icons/Mintox.svg @@ -0,0 +1,14 @@ + + + + + + \ No newline at end of file diff --git a/src/images/icons/Mintpay.svg b/src/images/icons/Mintpay.svg new file mode 100644 index 00000000..580074a7 --- /dev/null +++ b/src/images/icons/Mintpay.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Mioot.svg b/src/images/icons/Mioot.svg new file mode 100644 index 00000000..9fe34b77 --- /dev/null +++ b/src/images/icons/Mioot.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/src/images/icons/Mirador.svg b/src/images/icons/Mirador.svg new file mode 100644 index 00000000..bac0deb9 --- /dev/null +++ b/src/images/icons/Mirador.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/images/icons/Mirakl.svg b/src/images/icons/Mirakl.svg new file mode 100644 index 00000000..cfdacd3e --- /dev/null +++ b/src/images/icons/Mirakl.svg @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Mirus.svg b/src/images/icons/Mirus.svg new file mode 100644 index 00000000..cadf0617 --- /dev/null +++ b/src/images/icons/Mirus.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Mirvac.svg b/src/images/icons/Mirvac.svg new file mode 100644 index 00000000..d9710626 --- /dev/null +++ b/src/images/icons/Mirvac.svg @@ -0,0 +1,9 @@ + + + + + + + \ No newline at end of file diff --git a/src/images/icons/MissionSuite.svg b/src/images/icons/MissionSuite.svg new file mode 100644 index 00000000..cbbd2611 --- /dev/null +++ b/src/images/icons/MissionSuite.svg @@ -0,0 +1,29 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Moast.svg b/src/images/icons/Moast.svg new file mode 100644 index 00000000..ce14f74d --- /dev/null +++ b/src/images/icons/Moast.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Modelo.svg b/src/images/icons/Modelo.svg new file mode 100644 index 00000000..69b9eb62 --- /dev/null +++ b/src/images/icons/Modelo.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Modio.svg b/src/images/icons/Modio.svg new file mode 100644 index 00000000..9ed72027 --- /dev/null +++ b/src/images/icons/Modio.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Modulify.svg b/src/images/icons/Modulify.svg new file mode 100644 index 00000000..0107c399 --- /dev/null +++ b/src/images/icons/Modulify.svg @@ -0,0 +1,35 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/MoinAI.svg b/src/images/icons/MoinAI.svg new file mode 100644 index 00000000..deb1baef --- /dev/null +++ b/src/images/icons/MoinAI.svg @@ -0,0 +1,14 @@ + + + + + + \ No newline at end of file diff --git a/src/images/icons/MojoHelpdesk.svg b/src/images/icons/MojoHelpdesk.svg new file mode 100644 index 00000000..cad9fddd --- /dev/null +++ b/src/images/icons/MojoHelpdesk.svg @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Moka.svg b/src/images/icons/Moka.svg new file mode 100644 index 00000000..5afceb91 --- /dev/null +++ b/src/images/icons/Moka.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/Mokini.svg b/src/images/icons/Mokini.svg new file mode 100644 index 00000000..22baeec6 --- /dev/null +++ b/src/images/icons/Mokini.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/images/icons/MolinAI.svg b/src/images/icons/MolinAI.svg new file mode 100644 index 00000000..e2420e3b --- /dev/null +++ b/src/images/icons/MolinAI.svg @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/MonetizePro.svg b/src/images/icons/MonetizePro.svg new file mode 100644 index 00000000..16b346fb --- /dev/null +++ b/src/images/icons/MonetizePro.svg @@ -0,0 +1,249 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Monk.svg b/src/images/icons/Monk.svg new file mode 100644 index 00000000..56a4dc0f --- /dev/null +++ b/src/images/icons/Monk.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/MonoBill.svg b/src/images/icons/MonoBill.svg new file mode 100644 index 00000000..85b45bdd --- /dev/null +++ b/src/images/icons/MonoBill.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/src/images/icons/Monocle.svg b/src/images/icons/Monocle.svg new file mode 100644 index 00000000..799f2a77 --- /dev/null +++ b/src/images/icons/Monocle.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/MoonOrganizer.svg b/src/images/icons/MoonOrganizer.svg new file mode 100644 index 00000000..b7066b2b --- /dev/null +++ b/src/images/icons/MoonOrganizer.svg @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/images/icons/Moori.svg b/src/images/icons/Moori.svg new file mode 100644 index 00000000..dbd1f4db --- /dev/null +++ b/src/images/icons/Moori.svg @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Moosend.svg b/src/images/icons/Moosend.svg new file mode 100644 index 00000000..d7ea35dc --- /dev/null +++ b/src/images/icons/Moosend.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/images/icons/Moostik.svg b/src/images/icons/Moostik.svg new file mode 100644 index 00000000..c3a3129e --- /dev/null +++ b/src/images/icons/Moostik.svg @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Moovin.svg b/src/images/icons/Moovin.svg new file mode 100644 index 00000000..a26d8d87 --- /dev/null +++ b/src/images/icons/Moovin.svg @@ -0,0 +1,12 @@ + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Mopro.svg b/src/images/icons/Mopro.svg new file mode 100644 index 00000000..11689932 --- /dev/null +++ b/src/images/icons/Mopro.svg @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Morningtrain.svg b/src/images/icons/Morningtrain.svg new file mode 100644 index 00000000..6e2648ca --- /dev/null +++ b/src/images/icons/Morningtrain.svg @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Mosio.svg b/src/images/icons/Mosio.svg new file mode 100644 index 00000000..28b00056 --- /dev/null +++ b/src/images/icons/Mosio.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/Motive.svg b/src/images/icons/Motive.svg new file mode 100644 index 00000000..a0aeab37 --- /dev/null +++ b/src/images/icons/Motive.svg @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Mottle.svg b/src/images/icons/Mottle.svg new file mode 100644 index 00000000..09984807 --- /dev/null +++ b/src/images/icons/Mottle.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/MoverBase.svg b/src/images/icons/MoverBase.svg new file mode 100644 index 00000000..2997725d --- /dev/null +++ b/src/images/icons/MoverBase.svg @@ -0,0 +1,17 @@ + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Movylo.svg b/src/images/icons/Movylo.svg new file mode 100644 index 00000000..647a96ad --- /dev/null +++ b/src/images/icons/Movylo.svg @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Moyklass.svg b/src/images/icons/Moyklass.svg new file mode 100644 index 00000000..bb3eb0af --- /dev/null +++ b/src/images/icons/Moyklass.svg @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/MsCode.svg b/src/images/icons/MsCode.svg new file mode 100644 index 00000000..ac476438 --- /dev/null +++ b/src/images/icons/MsCode.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/Muchat.svg b/src/images/icons/Muchat.svg new file mode 100644 index 00000000..8487231b --- /dev/null +++ b/src/images/icons/Muchat.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Muscula.svg b/src/images/icons/Muscula.svg new file mode 100644 index 00000000..7b2e1638 --- /dev/null +++ b/src/images/icons/Muscula.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Musement.svg b/src/images/icons/Musement.svg new file mode 100644 index 00000000..8aa6ccb3 --- /dev/null +++ b/src/images/icons/Musement.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Muvi.svg b/src/images/icons/Muvi.svg new file mode 100644 index 00000000..b733ebdd --- /dev/null +++ b/src/images/icons/Muvi.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/MyAgilePrivacy.svg b/src/images/icons/MyAgilePrivacy.svg new file mode 100644 index 00000000..ca5a1ccb --- /dev/null +++ b/src/images/icons/MyAgilePrivacy.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/MyAlice.svg b/src/images/icons/MyAlice.svg new file mode 100644 index 00000000..d7d2df85 --- /dev/null +++ b/src/images/icons/MyAlice.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/images/icons/MyEsalon.svg b/src/images/icons/MyEsalon.svg new file mode 100644 index 00000000..9db7d373 --- /dev/null +++ b/src/images/icons/MyEsalon.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/MyRest.svg b/src/images/icons/MyRest.svg new file mode 100644 index 00000000..6ee85724 --- /dev/null +++ b/src/images/icons/MyRest.svg @@ -0,0 +1,102 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/MyStat.svg b/src/images/icons/MyStat.svg new file mode 100644 index 00000000..73ccfdcb --- /dev/null +++ b/src/images/icons/MyStat.svg @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/MyTime.svg b/src/images/icons/MyTime.svg new file mode 100644 index 00000000..03d479fa --- /dev/null +++ b/src/images/icons/MyTime.svg @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Myli.svg b/src/images/icons/Myli.svg new file mode 100644 index 00000000..950fbde0 --- /dev/null +++ b/src/images/icons/Myli.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Myma.svg b/src/images/icons/Myma.svg new file mode 100644 index 00000000..a91ee005 --- /dev/null +++ b/src/images/icons/Myma.svg @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/N1ED.svg b/src/images/icons/N1ED.svg new file mode 100644 index 00000000..13c63ae1 --- /dev/null +++ b/src/images/icons/N1ED.svg @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/NET-RESULTS.svg b/src/images/icons/NET-RESULTS.svg new file mode 100644 index 00000000..97f85240 --- /dev/null +++ b/src/images/icons/NET-RESULTS.svg @@ -0,0 +1,20 @@ + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Namastay.svg b/src/images/icons/Namastay.svg new file mode 100644 index 00000000..f3601ee8 --- /dev/null +++ b/src/images/icons/Namastay.svg @@ -0,0 +1,32 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/NativeForms.svg b/src/images/icons/NativeForms.svg new file mode 100644 index 00000000..c4505b94 --- /dev/null +++ b/src/images/icons/NativeForms.svg @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/src/images/icons/Navegg.png b/src/images/icons/Navegg.png deleted file mode 100644 index 037dc61f..00000000 Binary files a/src/images/icons/Navegg.png and /dev/null differ diff --git a/src/images/icons/Navegg.svg b/src/images/icons/Navegg.svg new file mode 100644 index 00000000..3df38de6 --- /dev/null +++ b/src/images/icons/Navegg.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Navu.svg b/src/images/icons/Navu.svg new file mode 100644 index 00000000..9487e4ca --- /dev/null +++ b/src/images/icons/Navu.svg @@ -0,0 +1,18 @@ + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/NebulaSites.svg b/src/images/icons/NebulaSites.svg new file mode 100644 index 00000000..c5b42379 --- /dev/null +++ b/src/images/icons/NebulaSites.svg @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/NeedStreet.svg b/src/images/icons/NeedStreet.svg new file mode 100644 index 00000000..83157512 --- /dev/null +++ b/src/images/icons/NeedStreet.svg @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/NeexaAI.svg b/src/images/icons/NeexaAI.svg new file mode 100644 index 00000000..81eed991 --- /dev/null +++ b/src/images/icons/NeexaAI.svg @@ -0,0 +1,143 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Negate.svg b/src/images/icons/Negate.svg new file mode 100644 index 00000000..fd517701 --- /dev/null +++ b/src/images/icons/Negate.svg @@ -0,0 +1,14 @@ + + + + + + \ No newline at end of file diff --git a/src/images/icons/Nemu.svg b/src/images/icons/Nemu.svg new file mode 100644 index 00000000..a4095718 --- /dev/null +++ b/src/images/icons/Nemu.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/images/icons/Neowize.svg b/src/images/icons/Neowize.svg new file mode 100644 index 00000000..0a27bfeb --- /dev/null +++ b/src/images/icons/Neowize.svg @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/images/icons/Neshan.svg b/src/images/icons/Neshan.svg new file mode 100644 index 00000000..2c840b22 --- /dev/null +++ b/src/images/icons/Neshan.svg @@ -0,0 +1,20 @@ + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Netop.svg b/src/images/icons/Netop.svg new file mode 100644 index 00000000..eea9899a --- /dev/null +++ b/src/images/icons/Netop.svg @@ -0,0 +1,77 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/NetroxSC.svg b/src/images/icons/NetroxSC.svg new file mode 100644 index 00000000..c6563fde --- /dev/null +++ b/src/images/icons/NetroxSC.svg @@ -0,0 +1,66 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Netvibes.svg b/src/images/icons/Netvibes.svg new file mode 100644 index 00000000..be29f7a2 --- /dev/null +++ b/src/images/icons/Netvibes.svg @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/NewUI.svg b/src/images/icons/NewUI.svg new file mode 100644 index 00000000..68a53f03 --- /dev/null +++ b/src/images/icons/NewUI.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Newo.svg b/src/images/icons/Newo.svg new file mode 100644 index 00000000..6c108203 --- /dev/null +++ b/src/images/icons/Newo.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Nexxt.svg b/src/images/icons/Nexxt.svg new file mode 100644 index 00000000..64c7ffbf --- /dev/null +++ b/src/images/icons/Nexxt.svg @@ -0,0 +1,168 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/NgageLiveChat.svg b/src/images/icons/NgageLiveChat.svg new file mode 100644 index 00000000..2bc346b3 --- /dev/null +++ b/src/images/icons/NgageLiveChat.svg @@ -0,0 +1,12 @@ + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Nibiru Ecommerce.svg b/src/images/icons/Nibiru Ecommerce.svg new file mode 100644 index 00000000..85b94b18 --- /dev/null +++ b/src/images/icons/Nibiru Ecommerce.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/src/images/icons/NidoTecnologia.svg b/src/images/icons/NidoTecnologia.svg new file mode 100644 index 00000000..24dee6bc --- /dev/null +++ b/src/images/icons/NidoTecnologia.svg @@ -0,0 +1,26 @@ + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/NightsBridge.svg b/src/images/icons/NightsBridge.svg new file mode 100644 index 00000000..d0f0b4fa --- /dev/null +++ b/src/images/icons/NightsBridge.svg @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/images/icons/Niice.svg b/src/images/icons/Niice.svg new file mode 100644 index 00000000..8bcb3090 --- /dev/null +++ b/src/images/icons/Niice.svg @@ -0,0 +1,102 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Nimbata.svg b/src/images/icons/Nimbata.svg new file mode 100644 index 00000000..ebe96010 --- /dev/null +++ b/src/images/icons/Nimbata.svg @@ -0,0 +1,9 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/Nimbu.svg b/src/images/icons/Nimbu.svg new file mode 100644 index 00000000..ec7bdb1f --- /dev/null +++ b/src/images/icons/Nimbu.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Ninchat.svg b/src/images/icons/Ninchat.svg new file mode 100644 index 00000000..c85cea9f --- /dev/null +++ b/src/images/icons/Ninchat.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/NoPaperForms.svg b/src/images/icons/NoPaperForms.svg new file mode 100644 index 00000000..83b2d870 --- /dev/null +++ b/src/images/icons/NoPaperForms.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/Nody.svg b/src/images/icons/Nody.svg new file mode 100644 index 00000000..2d654f9b --- /dev/null +++ b/src/images/icons/Nody.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/Nogin.png b/src/images/icons/Nogin.png deleted file mode 100644 index 3fb46359..00000000 Binary files a/src/images/icons/Nogin.png and /dev/null differ diff --git a/src/images/icons/Nogin.svg b/src/images/icons/Nogin.svg new file mode 100644 index 00000000..108e4202 --- /dev/null +++ b/src/images/icons/Nogin.svg @@ -0,0 +1,204 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Nolt.svg b/src/images/icons/Nolt.svg new file mode 100644 index 00000000..a93248b0 --- /dev/null +++ b/src/images/icons/Nolt.svg @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/NoodleFactory.svg b/src/images/icons/NoodleFactory.svg new file mode 100644 index 00000000..3a5a90e7 --- /dev/null +++ b/src/images/icons/NoodleFactory.svg @@ -0,0 +1,164 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Nookal.svg b/src/images/icons/Nookal.svg new file mode 100644 index 00000000..e7e6a98b --- /dev/null +++ b/src/images/icons/Nookal.svg @@ -0,0 +1,72 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Nordcraft.svg b/src/images/icons/Nordcraft.svg new file mode 100644 index 00000000..a5ea0c76 --- /dev/null +++ b/src/images/icons/Nordcraft.svg @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Normalize.svg b/src/images/icons/Normalize.svg new file mode 100644 index 00000000..31027e42 --- /dev/null +++ b/src/images/icons/Normalize.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/NorthStarCivic.svg b/src/images/icons/NorthStarCivic.svg new file mode 100644 index 00000000..1be64019 --- /dev/null +++ b/src/images/icons/NorthStarCivic.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/NorthstarClubManagement.svg b/src/images/icons/NorthstarClubManagement.svg new file mode 100644 index 00000000..c91699ef --- /dev/null +++ b/src/images/icons/NorthstarClubManagement.svg @@ -0,0 +1,7 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/Nostra.png b/src/images/icons/Nostra.png new file mode 100644 index 00000000..157c25b7 Binary files /dev/null and b/src/images/icons/Nostra.png differ diff --git a/src/images/icons/Noticeable.svg b/src/images/icons/Noticeable.svg new file mode 100644 index 00000000..b931fb0a --- /dev/null +++ b/src/images/icons/Noticeable.svg @@ -0,0 +1,79 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/NovaBusca.svg b/src/images/icons/NovaBusca.svg new file mode 100644 index 00000000..38c19daf --- /dev/null +++ b/src/images/icons/NovaBusca.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/Novel.svg b/src/images/icons/Novel.svg new file mode 100644 index 00000000..d973d90b --- /dev/null +++ b/src/images/icons/Novel.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/NowButtons.svg b/src/images/icons/NowButtons.svg new file mode 100644 index 00000000..7d09fc3b --- /dev/null +++ b/src/images/icons/NowButtons.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Nowfloats.svg b/src/images/icons/Nowfloats.svg new file mode 100644 index 00000000..06c73460 --- /dev/null +++ b/src/images/icons/Nowfloats.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/Nurture.svg b/src/images/icons/Nurture.svg new file mode 100644 index 00000000..1adcd8a5 --- /dev/null +++ b/src/images/icons/Nurture.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/NurtureBoss.svg b/src/images/icons/NurtureBoss.svg new file mode 100644 index 00000000..e590d3c2 --- /dev/null +++ b/src/images/icons/NurtureBoss.svg @@ -0,0 +1,23 @@ + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Nyehandel.svg b/src/images/icons/Nyehandel.svg new file mode 100644 index 00000000..ec1b25b3 --- /dev/null +++ b/src/images/icons/Nyehandel.svg @@ -0,0 +1,132 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/OCC.svg b/src/images/icons/OCC.svg new file mode 100644 index 00000000..92219c9e --- /dev/null +++ b/src/images/icons/OCC.svg @@ -0,0 +1,101 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/OClocher.svg b/src/images/icons/OClocher.svg new file mode 100644 index 00000000..236860d7 --- /dev/null +++ b/src/images/icons/OClocher.svg @@ -0,0 +1,105 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/ONiAD.svg b/src/images/icons/ONiAD.svg new file mode 100644 index 00000000..fbb603ea --- /dev/null +++ b/src/images/icons/ONiAD.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Oat.svg b/src/images/icons/Oat.svg new file mode 100644 index 00000000..6f960ed4 --- /dev/null +++ b/src/images/icons/Oat.svg @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Octane.svg b/src/images/icons/Octane.svg new file mode 100644 index 00000000..aeb8c98a --- /dev/null +++ b/src/images/icons/Octane.svg @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Oddcast.svg b/src/images/icons/Oddcast.svg new file mode 100644 index 00000000..036cf8db --- /dev/null +++ b/src/images/icons/Oddcast.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Offset.svg b/src/images/icons/Offset.svg new file mode 100644 index 00000000..0e50cef5 --- /dev/null +++ b/src/images/icons/Offset.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Ohava.svg b/src/images/icons/Ohava.svg new file mode 100644 index 00000000..55d709b5 --- /dev/null +++ b/src/images/icons/Ohava.svg @@ -0,0 +1,78 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Olark.png b/src/images/icons/Olark.png deleted file mode 100644 index 9dd473c5..00000000 Binary files a/src/images/icons/Olark.png and /dev/null differ diff --git a/src/images/icons/Olark.svg b/src/images/icons/Olark.svg new file mode 100644 index 00000000..78b50873 --- /dev/null +++ b/src/images/icons/Olark.svg @@ -0,0 +1,19 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Oleoshop.svg b/src/images/icons/Oleoshop.svg new file mode 100644 index 00000000..2544beeb --- /dev/null +++ b/src/images/icons/Oleoshop.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Olvy.svg b/src/images/icons/Olvy.svg new file mode 100644 index 00000000..73ffccc2 --- /dev/null +++ b/src/images/icons/Olvy.svg @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Omacro.svg b/src/images/icons/Omacro.svg new file mode 100644 index 00000000..83421965 --- /dev/null +++ b/src/images/icons/Omacro.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/Omeda.svg b/src/images/icons/Omeda.svg new file mode 100644 index 00000000..88fd8104 --- /dev/null +++ b/src/images/icons/Omeda.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/Ometrics.svg b/src/images/icons/Ometrics.svg new file mode 100644 index 00000000..e5d504ea --- /dev/null +++ b/src/images/icons/Ometrics.svg @@ -0,0 +1,76 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Omie.svg b/src/images/icons/Omie.svg new file mode 100644 index 00000000..e7724113 --- /dev/null +++ b/src/images/icons/Omie.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/Omnikick.svg b/src/images/icons/Omnikick.svg new file mode 100644 index 00000000..79905550 --- /dev/null +++ b/src/images/icons/Omnikick.svg @@ -0,0 +1,26 @@ + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/OnSip.svg b/src/images/icons/OnSip.svg new file mode 100644 index 00000000..059eb592 --- /dev/null +++ b/src/images/icons/OnSip.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/OnSiteSupport.svg b/src/images/icons/OnSiteSupport.svg new file mode 100644 index 00000000..20f1e2cc --- /dev/null +++ b/src/images/icons/OnSiteSupport.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/OnTheMap.svg b/src/images/icons/OnTheMap.svg new file mode 100644 index 00000000..c511d56d --- /dev/null +++ b/src/images/icons/OnTheMap.svg @@ -0,0 +1,66 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Ondestek.svg b/src/images/icons/Ondestek.svg new file mode 100644 index 00000000..c39baea5 --- /dev/null +++ b/src/images/icons/Ondestek.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/OneCommerce.svg b/src/images/icons/OneCommerce.svg new file mode 100644 index 00000000..00495ccf --- /dev/null +++ b/src/images/icons/OneCommerce.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/Onehub.svg b/src/images/icons/Onehub.svg new file mode 100644 index 00000000..03910c42 --- /dev/null +++ b/src/images/icons/Onehub.svg @@ -0,0 +1,26 @@ + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Onepage.svg b/src/images/icons/Onepage.svg new file mode 100644 index 00000000..b63e6a7d --- /dev/null +++ b/src/images/icons/Onepage.svg @@ -0,0 +1,86 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Onicon.svg b/src/images/icons/Onicon.svg new file mode 100644 index 00000000..a43d12f2 --- /dev/null +++ b/src/images/icons/Onicon.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Onlyfy.svg b/src/images/icons/Onlyfy.svg new file mode 100644 index 00000000..7b021445 --- /dev/null +++ b/src/images/icons/Onlyfy.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/OnsenUI.svg b/src/images/icons/OnsenUI.svg new file mode 100644 index 00000000..137a3c9c --- /dev/null +++ b/src/images/icons/OnsenUI.svg @@ -0,0 +1,14 @@ + + + + + + \ No newline at end of file diff --git a/src/images/icons/OpTuNE.svg b/src/images/icons/OpTuNE.svg new file mode 100644 index 00000000..8f8f4eef --- /dev/null +++ b/src/images/icons/OpTuNE.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/OpenChat.svg b/src/images/icons/OpenChat.svg new file mode 100644 index 00000000..197f02a6 --- /dev/null +++ b/src/images/icons/OpenChat.svg @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/OpenPanel.svg b/src/images/icons/OpenPanel.svg new file mode 100644 index 00000000..293b9151 --- /dev/null +++ b/src/images/icons/OpenPanel.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Opentracker.svg b/src/images/icons/Opentracker.svg new file mode 100644 index 00000000..912f349a --- /dev/null +++ b/src/images/icons/Opentracker.svg @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Opesta.svg b/src/images/icons/Opesta.svg new file mode 100644 index 00000000..5e1fea59 --- /dev/null +++ b/src/images/icons/Opesta.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/OpinionBar.svg b/src/images/icons/OpinionBar.svg new file mode 100644 index 00000000..2994aa4d --- /dev/null +++ b/src/images/icons/OpinionBar.svg @@ -0,0 +1,114 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Optimole.svg b/src/images/icons/Optimole.svg new file mode 100644 index 00000000..3d12fd05 --- /dev/null +++ b/src/images/icons/Optimole.svg @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/OptimxSports.svg b/src/images/icons/OptimxSports.svg new file mode 100644 index 00000000..be90d7d6 --- /dev/null +++ b/src/images/icons/OptimxSports.svg @@ -0,0 +1,1101 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Optimy.svg b/src/images/icons/Optimy.svg new file mode 100644 index 00000000..80d378fd --- /dev/null +++ b/src/images/icons/Optimy.svg @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/OrderPort.svg b/src/images/icons/OrderPort.svg new file mode 100644 index 00000000..72dae627 --- /dev/null +++ b/src/images/icons/OrderPort.svg @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/images/icons/Ordering.svg b/src/images/icons/Ordering.svg new file mode 100644 index 00000000..4ebbb69f --- /dev/null +++ b/src/images/icons/Ordering.svg @@ -0,0 +1,81 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Orimon.svg b/src/images/icons/Orimon.svg new file mode 100644 index 00000000..ae0be423 --- /dev/null +++ b/src/images/icons/Orimon.svg @@ -0,0 +1,84 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/OtterText.svg b/src/images/icons/OtterText.svg new file mode 100644 index 00000000..91c74f49 --- /dev/null +++ b/src/images/icons/OtterText.svg @@ -0,0 +1,81 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Otto.svg b/src/images/icons/Otto.svg new file mode 100644 index 00000000..dc4cc2fb --- /dev/null +++ b/src/images/icons/Otto.svg @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Outfindo.svg b/src/images/icons/Outfindo.svg new file mode 100644 index 00000000..884a2f1c --- /dev/null +++ b/src/images/icons/Outfindo.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/src/images/icons/Outfunnel.svg b/src/images/icons/Outfunnel.svg new file mode 100644 index 00000000..0995fe78 --- /dev/null +++ b/src/images/icons/Outfunnel.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Outplay.svg b/src/images/icons/Outplay.svg new file mode 100644 index 00000000..f9ab0a1b --- /dev/null +++ b/src/images/icons/Outplay.svg @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Ova.svg b/src/images/icons/Ova.svg new file mode 100644 index 00000000..b7716961 --- /dev/null +++ b/src/images/icons/Ova.svg @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/OverBlog.svg b/src/images/icons/OverBlog.svg new file mode 100644 index 00000000..e1e42833 --- /dev/null +++ b/src/images/icons/OverBlog.svg @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Overfull.svg b/src/images/icons/Overfull.svg new file mode 100644 index 00000000..0f875d87 --- /dev/null +++ b/src/images/icons/Overfull.svg @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Overloop.svg b/src/images/icons/Overloop.svg new file mode 100644 index 00000000..5df496cb --- /dev/null +++ b/src/images/icons/Overloop.svg @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Overwolf.svg b/src/images/icons/Overwolf.svg new file mode 100644 index 00000000..2f8721c1 --- /dev/null +++ b/src/images/icons/Overwolf.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Owids.svg b/src/images/icons/Owids.svg new file mode 100644 index 00000000..467d37c4 --- /dev/null +++ b/src/images/icons/Owids.svg @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/OxyShop.svg b/src/images/icons/OxyShop.svg new file mode 100644 index 00000000..f9669123 --- /dev/null +++ b/src/images/icons/OxyShop.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/P3chat.svg b/src/images/icons/P3chat.svg new file mode 100644 index 00000000..c169d3a5 --- /dev/null +++ b/src/images/icons/P3chat.svg @@ -0,0 +1,320 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/PAYTR.svg b/src/images/icons/PAYTR.svg new file mode 100644 index 00000000..2fa255a6 --- /dev/null +++ b/src/images/icons/PAYTR.svg @@ -0,0 +1,18 @@ + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/PHPWCMS.svg b/src/images/icons/PHPWCMS.svg new file mode 100644 index 00000000..da887c04 --- /dev/null +++ b/src/images/icons/PHPWCMS.svg @@ -0,0 +1,102 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/POINT.svg b/src/images/icons/POINT.svg new file mode 100644 index 00000000..806d9720 --- /dev/null +++ b/src/images/icons/POINT.svg @@ -0,0 +1,7 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/PSPad.svg b/src/images/icons/PSPad.svg new file mode 100644 index 00000000..6090c264 --- /dev/null +++ b/src/images/icons/PSPad.svg @@ -0,0 +1,129 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Pabbly.svg b/src/images/icons/Pabbly.svg new file mode 100644 index 00000000..fb63ce43 --- /dev/null +++ b/src/images/icons/Pabbly.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/PackageAI.svg b/src/images/icons/PackageAI.svg new file mode 100644 index 00000000..c2d08861 --- /dev/null +++ b/src/images/icons/PackageAI.svg @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Packman.svg b/src/images/icons/Packman.svg new file mode 100644 index 00000000..6dc9b0d2 --- /dev/null +++ b/src/images/icons/Packman.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Paessler.svg b/src/images/icons/Paessler.svg new file mode 100644 index 00000000..c960b130 --- /dev/null +++ b/src/images/icons/Paessler.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Pagemaker.svg b/src/images/icons/Pagemaker.svg new file mode 100644 index 00000000..a13ba8bf --- /dev/null +++ b/src/images/icons/Pagemaker.svg @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Palbin.svg b/src/images/icons/Palbin.svg new file mode 100644 index 00000000..fdaf0f78 --- /dev/null +++ b/src/images/icons/Palbin.svg @@ -0,0 +1,105 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/PandaCSS.svg b/src/images/icons/PandaCSS.svg index 27d033a6..be9459f3 100644 --- a/src/images/icons/PandaCSS.svg +++ b/src/images/icons/PandaCSS.svg @@ -1,4 +1,4 @@ - - + + diff --git a/src/images/icons/PandaVideo.svg b/src/images/icons/PandaVideo.svg new file mode 100644 index 00000000..3765c7ee --- /dev/null +++ b/src/images/icons/PandaVideo.svg @@ -0,0 +1,29 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Pandectes.svg b/src/images/icons/Pandectes.svg new file mode 100644 index 00000000..5a796b82 --- /dev/null +++ b/src/images/icons/Pandectes.svg @@ -0,0 +1,12 @@ + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/PapaParse.svg b/src/images/icons/PapaParse.svg new file mode 100644 index 00000000..2d63745c --- /dev/null +++ b/src/images/icons/PapaParse.svg @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/PaperlessPipeline.svg b/src/images/icons/PaperlessPipeline.svg new file mode 100644 index 00000000..bf65e45c --- /dev/null +++ b/src/images/icons/PaperlessPipeline.svg @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/ParaglideJS.svg b/src/images/icons/ParaglideJS.svg new file mode 100644 index 00000000..e53756d1 --- /dev/null +++ b/src/images/icons/ParaglideJS.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/ParcelPanel.svg b/src/images/icons/ParcelPanel.svg new file mode 100644 index 00000000..41d8964d --- /dev/null +++ b/src/images/icons/ParcelPanel.svg @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Parentapps.svg b/src/images/icons/Parentapps.svg new file mode 100644 index 00000000..2a956b9d --- /dev/null +++ b/src/images/icons/Parentapps.svg @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/ParkFlow.svg b/src/images/icons/ParkFlow.svg new file mode 100644 index 00000000..5905180a --- /dev/null +++ b/src/images/icons/ParkFlow.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/ParsePlatform.svg b/src/images/icons/ParsePlatform.svg new file mode 100644 index 00000000..c695dded --- /dev/null +++ b/src/images/icons/ParsePlatform.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/PartnerDriven.svg b/src/images/icons/PartnerDriven.svg new file mode 100644 index 00000000..21bbd2ce --- /dev/null +++ b/src/images/icons/PartnerDriven.svg @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/PartsSquare.svg b/src/images/icons/PartsSquare.svg new file mode 100644 index 00000000..db239dd1 --- /dev/null +++ b/src/images/icons/PartsSquare.svg @@ -0,0 +1,229 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/images/icons/Passle.svg b/src/images/icons/Passle.svg new file mode 100644 index 00000000..5ab3c99a --- /dev/null +++ b/src/images/icons/Passle.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/Passport.svg b/src/images/icons/Passport.svg new file mode 100644 index 00000000..1e5e68e8 --- /dev/null +++ b/src/images/icons/Passport.svg @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Pathful.svg b/src/images/icons/Pathful.svg new file mode 100644 index 00000000..12da3c11 --- /dev/null +++ b/src/images/icons/Pathful.svg @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/PatientPrism.svg b/src/images/icons/PatientPrism.svg new file mode 100644 index 00000000..1ba7c9a6 --- /dev/null +++ b/src/images/icons/PatientPrism.svg @@ -0,0 +1,80 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/PayHere.svg b/src/images/icons/PayHere.svg new file mode 100644 index 00000000..3939ab0e --- /dev/null +++ b/src/images/icons/PayHere.svg @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/PayNL.svg b/src/images/icons/PayNL.svg new file mode 100644 index 00000000..447ccf3d --- /dev/null +++ b/src/images/icons/PayNL.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/PayU.svg b/src/images/icons/PayU.svg new file mode 100644 index 00000000..d4d3e67d --- /dev/null +++ b/src/images/icons/PayU.svg @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Paydock.svg b/src/images/icons/Paydock.svg new file mode 100644 index 00000000..565bf8fc --- /dev/null +++ b/src/images/icons/Paydock.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Payhip.svg b/src/images/icons/Payhip.svg new file mode 100644 index 00000000..5c382bc2 --- /dev/null +++ b/src/images/icons/Payhip.svg @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/PayloadCMS.svg b/src/images/icons/PayloadCMS.svg new file mode 100644 index 00000000..43572c80 --- /dev/null +++ b/src/images/icons/PayloadCMS.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Paymentus.svg b/src/images/icons/Paymentus.svg new file mode 100644 index 00000000..36c9be3d --- /dev/null +++ b/src/images/icons/Paymentus.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Peachs.svg b/src/images/icons/Peachs.svg new file mode 100644 index 00000000..c300d74a --- /dev/null +++ b/src/images/icons/Peachs.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/PearCommerce.svg b/src/images/icons/PearCommerce.svg new file mode 100644 index 00000000..ce5e085b --- /dev/null +++ b/src/images/icons/PearCommerce.svg @@ -0,0 +1,17 @@ + + + + + + + \ No newline at end of file diff --git a/src/images/icons/PeckaDesignPublicator.svg b/src/images/icons/PeckaDesignPublicator.svg new file mode 100644 index 00000000..5138a57e --- /dev/null +++ b/src/images/icons/PeckaDesignPublicator.svg @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Peddle.svg b/src/images/icons/Peddle.svg new file mode 100644 index 00000000..aa4e112f --- /dev/null +++ b/src/images/icons/Peddle.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Peecho.svg b/src/images/icons/Peecho.svg new file mode 100644 index 00000000..5fd79b2c --- /dev/null +++ b/src/images/icons/Peecho.svg @@ -0,0 +1,15 @@ + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Peel.svg b/src/images/icons/Peel.svg new file mode 100644 index 00000000..858a122d --- /dev/null +++ b/src/images/icons/Peel.svg @@ -0,0 +1,12 @@ + + + + + + \ No newline at end of file diff --git a/src/images/icons/PeerJS.svg b/src/images/icons/PeerJS.svg new file mode 100644 index 00000000..3589d3bf --- /dev/null +++ b/src/images/icons/PeerJS.svg @@ -0,0 +1,162 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/PeerPal.svg b/src/images/icons/PeerPal.svg new file mode 100644 index 00000000..aef10184 --- /dev/null +++ b/src/images/icons/PeerPal.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Peftrust.svg b/src/images/icons/Peftrust.svg new file mode 100644 index 00000000..783364cc --- /dev/null +++ b/src/images/icons/Peftrust.svg @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Pelcro.svg b/src/images/icons/Pelcro.svg new file mode 100644 index 00000000..71538db2 --- /dev/null +++ b/src/images/icons/Pelcro.svg @@ -0,0 +1,12 @@ + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/PepperCloud.svg b/src/images/icons/PepperCloud.svg new file mode 100644 index 00000000..93f5c65d --- /dev/null +++ b/src/images/icons/PepperCloud.svg @@ -0,0 +1,23 @@ + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Percy.svg b/src/images/icons/Percy.svg new file mode 100644 index 00000000..e43ccc20 --- /dev/null +++ b/src/images/icons/Percy.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/PerfectCorp.svg b/src/images/icons/PerfectCorp.svg new file mode 100644 index 00000000..22103aa5 --- /dev/null +++ b/src/images/icons/PerfectCorp.svg @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/PerfectStorm.svg b/src/images/icons/PerfectStorm.svg new file mode 100644 index 00000000..231a91a4 --- /dev/null +++ b/src/images/icons/PerfectStorm.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/Persona.svg b/src/images/icons/Persona.svg new file mode 100644 index 00000000..ffcf302a --- /dev/null +++ b/src/images/icons/Persona.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/Phenom.svg b/src/images/icons/Phenom.svg new file mode 100644 index 00000000..1ae3b378 --- /dev/null +++ b/src/images/icons/Phenom.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/PhoenixCart.svg b/src/images/icons/PhoenixCart.svg new file mode 100644 index 00000000..0457219a --- /dev/null +++ b/src/images/icons/PhoenixCart.svg @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Phonon.svg b/src/images/icons/Phonon.svg new file mode 100644 index 00000000..887b146d --- /dev/null +++ b/src/images/icons/Phonon.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/PiAds.svg b/src/images/icons/PiAds.svg new file mode 100644 index 00000000..48524761 --- /dev/null +++ b/src/images/icons/PiAds.svg @@ -0,0 +1,95 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Picatcha.svg b/src/images/icons/Picatcha.svg new file mode 100644 index 00000000..360d6bc0 --- /dev/null +++ b/src/images/icons/Picatcha.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Pickaxe.svg b/src/images/icons/Pickaxe.svg new file mode 100644 index 00000000..183fa308 --- /dev/null +++ b/src/images/icons/Pickaxe.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Pickrr.svg b/src/images/icons/Pickrr.svg new file mode 100644 index 00000000..579fdb58 --- /dev/null +++ b/src/images/icons/Pickrr.svg @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Pickzen.svg b/src/images/icons/Pickzen.svg new file mode 100644 index 00000000..d64c6368 --- /dev/null +++ b/src/images/icons/Pickzen.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/PictureIt.svg b/src/images/icons/PictureIt.svg new file mode 100644 index 00000000..798b0292 --- /dev/null +++ b/src/images/icons/PictureIt.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/PieEye.svg b/src/images/icons/PieEye.svg new file mode 100644 index 00000000..12a53b27 --- /dev/null +++ b/src/images/icons/PieEye.svg @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Piggy.svg b/src/images/icons/Piggy.svg new file mode 100644 index 00000000..588954b1 --- /dev/null +++ b/src/images/icons/Piggy.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/Pimster.svg b/src/images/icons/Pimster.svg new file mode 100644 index 00000000..f00571e2 --- /dev/null +++ b/src/images/icons/Pimster.svg @@ -0,0 +1,90 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Pinboard.svg b/src/images/icons/Pinboard.svg new file mode 100644 index 00000000..83e5ece1 --- /dev/null +++ b/src/images/icons/Pinboard.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/PineappleBuilder.svg b/src/images/icons/PineappleBuilder.svg new file mode 100644 index 00000000..ee123f6c --- /dev/null +++ b/src/images/icons/PineappleBuilder.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Pinpoll.svg b/src/images/icons/Pinpoll.svg new file mode 100644 index 00000000..f4fa04e1 --- /dev/null +++ b/src/images/icons/Pinpoll.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Piperun.svg b/src/images/icons/Piperun.svg new file mode 100644 index 00000000..5dcbbb4f --- /dev/null +++ b/src/images/icons/Piperun.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/Pixelesq.svg b/src/images/icons/Pixelesq.svg new file mode 100644 index 00000000..97bc7af5 --- /dev/null +++ b/src/images/icons/Pixelesq.svg @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/images/icons/Pixenio.svg b/src/images/icons/Pixenio.svg new file mode 100644 index 00000000..39a1dcd3 --- /dev/null +++ b/src/images/icons/Pixenio.svg @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Placed.svg b/src/images/icons/Placed.svg new file mode 100644 index 00000000..edeeed13 --- /dev/null +++ b/src/images/icons/Placed.svg @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Placester.svg b/src/images/icons/Placester.svg new file mode 100644 index 00000000..061a2949 --- /dev/null +++ b/src/images/icons/Placester.svg @@ -0,0 +1,8 @@ + + + + + + \ No newline at end of file diff --git a/src/images/icons/Plait.svg b/src/images/icons/Plait.svg new file mode 100644 index 00000000..b8ea4a7f --- /dev/null +++ b/src/images/icons/Plait.svg @@ -0,0 +1,9 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/Planfy.svg b/src/images/icons/Planfy.svg new file mode 100644 index 00000000..a2b5348b --- /dev/null +++ b/src/images/icons/Planfy.svg @@ -0,0 +1,102 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Planio.svg b/src/images/icons/Planio.svg new file mode 100644 index 00000000..bc7f3294 --- /dev/null +++ b/src/images/icons/Planio.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/images/icons/Planne.svg b/src/images/icons/Planne.svg new file mode 100644 index 00000000..c270c4c2 --- /dev/null +++ b/src/images/icons/Planne.svg @@ -0,0 +1,29 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/PlanningPod.svg b/src/images/icons/PlanningPod.svg new file mode 100644 index 00000000..f4f616e0 --- /dev/null +++ b/src/images/icons/PlanningPod.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Planoplan.svg b/src/images/icons/Planoplan.svg new file mode 100644 index 00000000..d25492e8 --- /dev/null +++ b/src/images/icons/Planoplan.svg @@ -0,0 +1,86 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Planway.svg b/src/images/icons/Planway.svg new file mode 100644 index 00000000..6b4f4478 --- /dev/null +++ b/src/images/icons/Planway.svg @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Planyo.svg b/src/images/icons/Planyo.svg new file mode 100644 index 00000000..97464a29 --- /dev/null +++ b/src/images/icons/Planyo.svg @@ -0,0 +1,74 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Planzer.svg b/src/images/icons/Planzer.svg new file mode 100644 index 00000000..12f2dba1 --- /dev/null +++ b/src/images/icons/Planzer.svg @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Plate.svg b/src/images/icons/Plate.svg new file mode 100644 index 00000000..0363c1f5 --- /dev/null +++ b/src/images/icons/Plate.svg @@ -0,0 +1,23 @@ + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Platformly.svg b/src/images/icons/Platformly.svg new file mode 100644 index 00000000..f08dbf3f --- /dev/null +++ b/src/images/icons/Platformly.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Plattar.svg b/src/images/icons/Plattar.svg new file mode 100644 index 00000000..ac2b9036 --- /dev/null +++ b/src/images/icons/Plattar.svg @@ -0,0 +1,12 @@ + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Plenigo.svg b/src/images/icons/Plenigo.svg new file mode 100644 index 00000000..222b1048 --- /dev/null +++ b/src/images/icons/Plenigo.svg @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/PlentyONE.svg b/src/images/icons/PlentyONE.svg new file mode 100644 index 00000000..72e0979d --- /dev/null +++ b/src/images/icons/PlentyONE.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/images/icons/Plerdy.svg b/src/images/icons/Plerdy.svg new file mode 100644 index 00000000..5c35bde4 --- /dev/null +++ b/src/images/icons/Plerdy.svg @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Plices.svg b/src/images/icons/Plices.svg new file mode 100644 index 00000000..63c7e2ac --- /dev/null +++ b/src/images/icons/Plices.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/Plivo.svg b/src/images/icons/Plivo.svg new file mode 100644 index 00000000..6989bd81 --- /dev/null +++ b/src/images/icons/Plivo.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Plotch.svg b/src/images/icons/Plotch.svg new file mode 100644 index 00000000..7c039ea5 --- /dev/null +++ b/src/images/icons/Plotch.svg @@ -0,0 +1,14 @@ + + + + + + \ No newline at end of file diff --git a/src/images/icons/Pluglin.svg b/src/images/icons/Pluglin.svg new file mode 100644 index 00000000..75189acc --- /dev/null +++ b/src/images/icons/Pluglin.svg @@ -0,0 +1,29 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Plugo.svg b/src/images/icons/Plugo.svg new file mode 100644 index 00000000..c35ee289 --- /dev/null +++ b/src/images/icons/Plugo.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Plum.svg b/src/images/icons/Plum.svg new file mode 100644 index 00000000..3224c6bd --- /dev/null +++ b/src/images/icons/Plum.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Plupload.svg b/src/images/icons/Plupload.svg new file mode 100644 index 00000000..6848ce55 --- /dev/null +++ b/src/images/icons/Plupload.svg @@ -0,0 +1,96 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Pluralo.svg b/src/images/icons/Pluralo.svg new file mode 100644 index 00000000..2be79fcd --- /dev/null +++ b/src/images/icons/Pluralo.svg @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/PlusProComponents.svg b/src/images/icons/PlusProComponents.svg new file mode 100644 index 00000000..35e6543d --- /dev/null +++ b/src/images/icons/PlusProComponents.svg @@ -0,0 +1,14 @@ + + + + + + \ No newline at end of file diff --git a/src/images/icons/PlusThis.svg b/src/images/icons/PlusThis.svg new file mode 100644 index 00000000..89976be4 --- /dev/null +++ b/src/images/icons/PlusThis.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Plytix.svg b/src/images/icons/Plytix.svg new file mode 100644 index 00000000..54c70788 --- /dev/null +++ b/src/images/icons/Plytix.svg @@ -0,0 +1,14 @@ + + + + + + \ No newline at end of file diff --git a/src/images/icons/Pobo.svg b/src/images/icons/Pobo.svg new file mode 100644 index 00000000..9b1ac0ec --- /dev/null +++ b/src/images/icons/Pobo.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Pobuca.svg b/src/images/icons/Pobuca.svg new file mode 100644 index 00000000..5a1e7613 --- /dev/null +++ b/src/images/icons/Pobuca.svg @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Pocus.svg b/src/images/icons/Pocus.svg new file mode 100644 index 00000000..660e9c5e --- /dev/null +++ b/src/images/icons/Pocus.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/src/images/icons/Podio.svg b/src/images/icons/Podio.svg new file mode 100644 index 00000000..9a5a70c3 --- /dev/null +++ b/src/images/icons/Podio.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Podpage.svg b/src/images/icons/Podpage.svg new file mode 100644 index 00000000..0b4563ae --- /dev/null +++ b/src/images/icons/Podpage.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/PolarAnalytics.svg b/src/images/icons/PolarAnalytics.svg new file mode 100644 index 00000000..0c704014 --- /dev/null +++ b/src/images/icons/PolarAnalytics.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/PollEverywhere.svg b/src/images/icons/PollEverywhere.svg new file mode 100644 index 00000000..c64a7178 --- /dev/null +++ b/src/images/icons/PollEverywhere.svg @@ -0,0 +1,14 @@ + + + + + + \ No newline at end of file diff --git a/src/images/icons/PollMaker.svg b/src/images/icons/PollMaker.svg new file mode 100644 index 00000000..8c3b310a --- /dev/null +++ b/src/images/icons/PollMaker.svg @@ -0,0 +1,20 @@ + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Pollster.svg b/src/images/icons/Pollster.svg new file mode 100644 index 00000000..b30ac76f --- /dev/null +++ b/src/images/icons/Pollster.svg @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/PolodaAI.svg b/src/images/icons/PolodaAI.svg new file mode 100644 index 00000000..dfbef8e3 --- /dev/null +++ b/src/images/icons/PolodaAI.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/images/icons/PopcornCRM.svg b/src/images/icons/PopcornCRM.svg new file mode 100644 index 00000000..c5ef9cc7 --- /dev/null +++ b/src/images/icons/PopcornCRM.svg @@ -0,0 +1,14 @@ + + + + + + \ No newline at end of file diff --git a/src/images/icons/Poper.svg b/src/images/icons/Poper.svg new file mode 100644 index 00000000..669ebc17 --- /dev/null +++ b/src/images/icons/Poper.svg @@ -0,0 +1,84 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Popify.svg b/src/images/icons/Popify.svg new file mode 100644 index 00000000..77f6bcb3 --- /dev/null +++ b/src/images/icons/Popify.svg @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/PopmixCRM.svg b/src/images/icons/PopmixCRM.svg new file mode 100644 index 00000000..d975d8cd --- /dev/null +++ b/src/images/icons/PopmixCRM.svg @@ -0,0 +1,107 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Poppins.svg b/src/images/icons/Poppins.svg new file mode 100644 index 00000000..dbc49b01 --- /dev/null +++ b/src/images/icons/Poppins.svg @@ -0,0 +1,81 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Popsy.svg b/src/images/icons/Popsy.svg new file mode 100644 index 00000000..92e51b33 --- /dev/null +++ b/src/images/icons/Popsy.svg @@ -0,0 +1,26 @@ + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Poptin.svg b/src/images/icons/Poptin.svg new file mode 100644 index 00000000..d20923dd --- /dev/null +++ b/src/images/icons/Poptin.svg @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Popvox.svg b/src/images/icons/Popvox.svg new file mode 100644 index 00000000..56b0cdb2 --- /dev/null +++ b/src/images/icons/Popvox.svg @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Porch.svg b/src/images/icons/Porch.svg new file mode 100644 index 00000000..411012a9 --- /dev/null +++ b/src/images/icons/Porch.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Posh.svg b/src/images/icons/Posh.svg new file mode 100644 index 00000000..c7d80770 --- /dev/null +++ b/src/images/icons/Posh.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/Poshmark.svg b/src/images/icons/Poshmark.svg new file mode 100644 index 00000000..ba7332a5 --- /dev/null +++ b/src/images/icons/Poshmark.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Posify.svg b/src/images/icons/Posify.svg new file mode 100644 index 00000000..3ee7072a --- /dev/null +++ b/src/images/icons/Posify.svg @@ -0,0 +1,307 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Poski.svg b/src/images/icons/Poski.svg new file mode 100644 index 00000000..e8c60d4f --- /dev/null +++ b/src/images/icons/Poski.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/PostDolphin.svg b/src/images/icons/PostDolphin.svg new file mode 100644 index 00000000..a1c0cd65 --- /dev/null +++ b/src/images/icons/PostDolphin.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Postach.svg b/src/images/icons/Postach.svg new file mode 100644 index 00000000..45e938cd --- /dev/null +++ b/src/images/icons/Postach.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/Postano.svg b/src/images/icons/Postano.svg new file mode 100644 index 00000000..fcdbebea --- /dev/null +++ b/src/images/icons/Postano.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Poster.svg b/src/images/icons/Poster.svg new file mode 100644 index 00000000..7545fb26 --- /dev/null +++ b/src/images/icons/Poster.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/PouchDB.svg b/src/images/icons/PouchDB.svg new file mode 100644 index 00000000..cf8c9292 --- /dev/null +++ b/src/images/icons/PouchDB.svg @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Powa.svg b/src/images/icons/Powa.svg new file mode 100644 index 00000000..caf7df09 --- /dev/null +++ b/src/images/icons/Powa.svg @@ -0,0 +1,14 @@ + + + + + + \ No newline at end of file diff --git a/src/images/icons/PowerCRM.svg b/src/images/icons/PowerCRM.svg new file mode 100644 index 00000000..7bb6bf93 --- /dev/null +++ b/src/images/icons/PowerCRM.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/PowerPay.svg b/src/images/icons/PowerPay.svg new file mode 100644 index 00000000..c568e8e8 --- /dev/null +++ b/src/images/icons/PowerPay.svg @@ -0,0 +1,370 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/PowerfulForm.svg b/src/images/icons/PowerfulForm.svg new file mode 100644 index 00000000..da60f0b6 --- /dev/null +++ b/src/images/icons/PowerfulForm.svg @@ -0,0 +1,17 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Powtoon.svg b/src/images/icons/Powtoon.svg new file mode 100644 index 00000000..b9dcf085 --- /dev/null +++ b/src/images/icons/Powtoon.svg @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/PracticePerfect.svg b/src/images/icons/PracticePerfect.svg new file mode 100644 index 00000000..10cc59e2 --- /dev/null +++ b/src/images/icons/PracticePerfect.svg @@ -0,0 +1,20 @@ + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Practo.svg b/src/images/icons/Practo.svg new file mode 100644 index 00000000..c2334eb9 --- /dev/null +++ b/src/images/icons/Practo.svg @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/PraterRaines.svg b/src/images/icons/PraterRaines.svg new file mode 100644 index 00000000..d0811690 --- /dev/null +++ b/src/images/icons/PraterRaines.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/PreProduct.svg b/src/images/icons/PreProduct.svg new file mode 100644 index 00000000..f37ddd68 --- /dev/null +++ b/src/images/icons/PreProduct.svg @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Preeco.svg b/src/images/icons/Preeco.svg new file mode 100644 index 00000000..5a3c7efc --- /dev/null +++ b/src/images/icons/Preeco.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Preezie.svg b/src/images/icons/Preezie.svg new file mode 100644 index 00000000..c882cab7 --- /dev/null +++ b/src/images/icons/Preezie.svg @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Premmerce.svg b/src/images/icons/Premmerce.svg new file mode 100644 index 00000000..a0548244 --- /dev/null +++ b/src/images/icons/Premmerce.svg @@ -0,0 +1,35 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Pressero.svg b/src/images/icons/Pressero.svg new file mode 100644 index 00000000..538b8a7a --- /dev/null +++ b/src/images/icons/Pressero.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/PrettyDamnQuick.png b/src/images/icons/PrettyDamnQuick.png new file mode 100644 index 00000000..628897a3 Binary files /dev/null and b/src/images/icons/PrettyDamnQuick.png differ diff --git a/src/images/icons/Priice.svg b/src/images/icons/Priice.svg new file mode 100644 index 00000000..943e0121 --- /dev/null +++ b/src/images/icons/Priice.svg @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/PrimaSoftware.svg b/src/images/icons/PrimaSoftware.svg new file mode 100644 index 00000000..a5d3387a --- /dev/null +++ b/src/images/icons/PrimaSoftware.svg @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/src/images/icons/PrimeAI.svg b/src/images/icons/PrimeAI.svg new file mode 100644 index 00000000..b837a2f8 --- /dev/null +++ b/src/images/icons/PrimeAI.svg @@ -0,0 +1,131 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Prisme.svg b/src/images/icons/Prisme.svg new file mode 100644 index 00000000..6f2dc977 --- /dev/null +++ b/src/images/icons/Prisme.svg @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Prive.svg b/src/images/icons/Prive.svg new file mode 100644 index 00000000..7d14a430 --- /dev/null +++ b/src/images/icons/Prive.svg @@ -0,0 +1,14 @@ + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/PriviaHealth.svg b/src/images/icons/PriviaHealth.svg new file mode 100644 index 00000000..dc0ecd82 --- /dev/null +++ b/src/images/icons/PriviaHealth.svg @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/ProProfs.svg b/src/images/icons/ProProfs.svg new file mode 100644 index 00000000..4592a148 --- /dev/null +++ b/src/images/icons/ProProfs.svg @@ -0,0 +1,17 @@ + + + + + + + \ No newline at end of file diff --git a/src/images/icons/ProSites.svg b/src/images/icons/ProSites.svg new file mode 100644 index 00000000..10aff72c --- /dev/null +++ b/src/images/icons/ProSites.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Probance.svg b/src/images/icons/Probance.svg new file mode 100644 index 00000000..0209f653 --- /dev/null +++ b/src/images/icons/Probance.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/ProcessOut.svg b/src/images/icons/ProcessOut.svg new file mode 100644 index 00000000..8daf0484 --- /dev/null +++ b/src/images/icons/ProcessOut.svg @@ -0,0 +1,17 @@ + + + + + + + \ No newline at end of file diff --git a/src/images/icons/ProdPad.svg b/src/images/icons/ProdPad.svg new file mode 100644 index 00000000..37b4caa5 --- /dev/null +++ b/src/images/icons/ProdPad.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/ProductDyno.svg b/src/images/icons/ProductDyno.svg new file mode 100644 index 00000000..e71e237e --- /dev/null +++ b/src/images/icons/ProductDyno.svg @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/ProfitFlo.svg b/src/images/icons/ProfitFlo.svg new file mode 100644 index 00000000..348bb36d --- /dev/null +++ b/src/images/icons/ProfitFlo.svg @@ -0,0 +1,399 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/ProfitLifter.svg b/src/images/icons/ProfitLifter.svg new file mode 100644 index 00000000..376ee359 --- /dev/null +++ b/src/images/icons/ProfitLifter.svg @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Progreda.svg b/src/images/icons/Progreda.svg new file mode 100644 index 00000000..d854e3c2 --- /dev/null +++ b/src/images/icons/Progreda.svg @@ -0,0 +1,29 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/ProloFinder.svg b/src/images/icons/ProloFinder.svg new file mode 100644 index 00000000..b4585aa5 --- /dev/null +++ b/src/images/icons/ProloFinder.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/images/icons/Prom.svg b/src/images/icons/Prom.svg new file mode 100644 index 00000000..eff9631a --- /dev/null +++ b/src/images/icons/Prom.svg @@ -0,0 +1,11 @@ + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Promio.svg b/src/images/icons/Promio.svg new file mode 100644 index 00000000..2ce9fe5d --- /dev/null +++ b/src/images/icons/Promio.svg @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Promo.svg b/src/images/icons/Promo.svg new file mode 100644 index 00000000..6e5890bc --- /dev/null +++ b/src/images/icons/Promo.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/PromoTix.svg b/src/images/icons/PromoTix.svg new file mode 100644 index 00000000..120e87e6 --- /dev/null +++ b/src/images/icons/PromoTix.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/ProofFactor.svg b/src/images/icons/ProofFactor.svg new file mode 100644 index 00000000..648834ad --- /dev/null +++ b/src/images/icons/ProofFactor.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Proofdy.svg b/src/images/icons/Proofdy.svg new file mode 100644 index 00000000..274ab5f1 --- /dev/null +++ b/src/images/icons/Proofdy.svg @@ -0,0 +1,82 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Prooven.svg b/src/images/icons/Prooven.svg new file mode 100644 index 00000000..72b453b0 --- /dev/null +++ b/src/images/icons/Prooven.svg @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/PropFlo.svg b/src/images/icons/PropFlo.svg new file mode 100644 index 00000000..9eee5532 --- /dev/null +++ b/src/images/icons/PropFlo.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/Propcart.svg b/src/images/icons/Propcart.svg new file mode 100644 index 00000000..0c174605 --- /dev/null +++ b/src/images/icons/Propcart.svg @@ -0,0 +1,15 @@ + + + + + + + \ No newline at end of file diff --git a/src/images/icons/PropertyShell.svg b/src/images/icons/PropertyShell.svg new file mode 100644 index 00000000..c8ec8e0e --- /dev/null +++ b/src/images/icons/PropertyShell.svg @@ -0,0 +1,12 @@ + + + + + + \ No newline at end of file diff --git a/src/images/icons/Proposify.svg b/src/images/icons/Proposify.svg new file mode 100644 index 00000000..c98ebc79 --- /dev/null +++ b/src/images/icons/Proposify.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/Prospa.svg b/src/images/icons/Prospa.svg new file mode 100644 index 00000000..4755c1b2 --- /dev/null +++ b/src/images/icons/Prospa.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Prostoy.svg b/src/images/icons/Prostoy.svg new file mode 100644 index 00000000..53500902 --- /dev/null +++ b/src/images/icons/Prostoy.svg @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Proticaret.svg b/src/images/icons/Proticaret.svg new file mode 100644 index 00000000..6bf2a943 --- /dev/null +++ b/src/images/icons/Proticaret.svg @@ -0,0 +1,18 @@ + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/ProtoAICX.svg b/src/images/icons/ProtoAICX.svg new file mode 100644 index 00000000..eeb84dc5 --- /dev/null +++ b/src/images/icons/ProtoAICX.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Provely.svg b/src/images/icons/Provely.svg new file mode 100644 index 00000000..199bbc9a --- /dev/null +++ b/src/images/icons/Provely.svg @@ -0,0 +1,17 @@ + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Psyma.svg b/src/images/icons/Psyma.svg new file mode 100644 index 00000000..f97074b0 --- /dev/null +++ b/src/images/icons/Psyma.svg @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/PubNub.svg b/src/images/icons/PubNub.svg new file mode 100644 index 00000000..0d3a5fe9 --- /dev/null +++ b/src/images/icons/PubNub.svg @@ -0,0 +1,9 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/PubTech.png b/src/images/icons/PubTech.png new file mode 100644 index 00000000..dcdb2462 Binary files /dev/null and b/src/images/icons/PubTech.png differ diff --git a/src/images/icons/Pubble.svg b/src/images/icons/Pubble.svg new file mode 100644 index 00000000..e4f6d1f0 --- /dev/null +++ b/src/images/icons/Pubble.svg @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/images/icons/Pubfunnels.svg b/src/images/icons/Pubfunnels.svg new file mode 100644 index 00000000..70f8aa6c --- /dev/null +++ b/src/images/icons/Pubfunnels.svg @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Publii.png b/src/images/icons/Publii.png deleted file mode 100644 index 227fe2bd..00000000 Binary files a/src/images/icons/Publii.png and /dev/null differ diff --git a/src/images/icons/Publii.svg b/src/images/icons/Publii.svg new file mode 100644 index 00000000..bfa32d4e --- /dev/null +++ b/src/images/icons/Publii.svg @@ -0,0 +1,72 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Pubperf.svg b/src/images/icons/Pubperf.svg new file mode 100644 index 00000000..a61f03c5 --- /dev/null +++ b/src/images/icons/Pubperf.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/images/icons/PukiWiki.svg b/src/images/icons/PukiWiki.svg new file mode 100644 index 00000000..1582538c --- /dev/null +++ b/src/images/icons/PukiWiki.svg @@ -0,0 +1,29 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Pulse.svg b/src/images/icons/Pulse.svg new file mode 100644 index 00000000..551b8a29 --- /dev/null +++ b/src/images/icons/Pulse.svg @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/PulseInsights.svg b/src/images/icons/PulseInsights.svg new file mode 100644 index 00000000..7054d1ab --- /dev/null +++ b/src/images/icons/PulseInsights.svg @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/PulseM.svg b/src/images/icons/PulseM.svg new file mode 100644 index 00000000..d7f2b768 --- /dev/null +++ b/src/images/icons/PulseM.svg @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/PunchTab.svg b/src/images/icons/PunchTab.svg new file mode 100644 index 00000000..aaae051e --- /dev/null +++ b/src/images/icons/PunchTab.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/src/images/icons/Punchpass.svg b/src/images/icons/Punchpass.svg new file mode 100644 index 00000000..26801e90 --- /dev/null +++ b/src/images/icons/Punchpass.svg @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/PuppetVendors.svg b/src/images/icons/PuppetVendors.svg new file mode 100644 index 00000000..8b8b0c35 --- /dev/null +++ b/src/images/icons/PuppetVendors.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/PureClarity.svg b/src/images/icons/PureClarity.svg new file mode 100644 index 00000000..3cbf2881 --- /dev/null +++ b/src/images/icons/PureClarity.svg @@ -0,0 +1,32 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/PushAlert.svg b/src/images/icons/PushAlert.svg new file mode 100644 index 00000000..249b5899 --- /dev/null +++ b/src/images/icons/PushAlert.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/PushBots.svg b/src/images/icons/PushBots.svg new file mode 100644 index 00000000..cf54d39a --- /dev/null +++ b/src/images/icons/PushBots.svg @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/PushWoosh.svg b/src/images/icons/PushWoosh.svg new file mode 100644 index 00000000..22d2e50d --- /dev/null +++ b/src/images/icons/PushWoosh.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/Pushe.svg b/src/images/icons/Pushe.svg new file mode 100644 index 00000000..dfc1afb5 --- /dev/null +++ b/src/images/icons/Pushe.svg @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Pusher.svg b/src/images/icons/Pusher.svg new file mode 100644 index 00000000..c8ba31da --- /dev/null +++ b/src/images/icons/Pusher.svg @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Pushnami.svg b/src/images/icons/Pushnami.svg old mode 100755 new mode 100644 diff --git a/src/images/icons/Pushouse.svg b/src/images/icons/Pushouse.svg new file mode 100644 index 00000000..40963ab9 --- /dev/null +++ b/src/images/icons/Pushouse.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Pushpad.svg b/src/images/icons/Pushpad.svg new file mode 100644 index 00000000..096c46bd --- /dev/null +++ b/src/images/icons/Pushpad.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/src/images/icons/PuterJS.svg b/src/images/icons/PuterJS.svg new file mode 100644 index 00000000..6e1861e6 --- /dev/null +++ b/src/images/icons/PuterJS.svg @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Pxxl App.svg b/src/images/icons/Pxxl App.svg new file mode 100644 index 00000000..03c94368 --- /dev/null +++ b/src/images/icons/Pxxl App.svg @@ -0,0 +1,409 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/images/icons/PyWebIO.svg b/src/images/icons/PyWebIO.svg new file mode 100644 index 00000000..229ffcd7 --- /dev/null +++ b/src/images/icons/PyWebIO.svg @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Pyze.svg b/src/images/icons/Pyze.svg new file mode 100644 index 00000000..8ce11b71 --- /dev/null +++ b/src/images/icons/Pyze.svg @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/images/icons/Q1Media.svg b/src/images/icons/Q1Media.svg new file mode 100644 index 00000000..1a739fe2 --- /dev/null +++ b/src/images/icons/Q1Media.svg @@ -0,0 +1,1941 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/images/icons/QForm.svg b/src/images/icons/QForm.svg new file mode 100644 index 00000000..7e5cdbfd --- /dev/null +++ b/src/images/icons/QForm.svg @@ -0,0 +1,22 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/QUV.svg b/src/images/icons/QUV.svg new file mode 100644 index 00000000..f94a4b3e --- /dev/null +++ b/src/images/icons/QUV.svg @@ -0,0 +1,26 @@ + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Qiyeku.svg b/src/images/icons/Qiyeku.svg new file mode 100644 index 00000000..20793b99 --- /dev/null +++ b/src/images/icons/Qiyeku.svg @@ -0,0 +1,714 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Qomon.svg b/src/images/icons/Qomon.svg new file mode 100644 index 00000000..4d7eeb5d --- /dev/null +++ b/src/images/icons/Qomon.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Qooqie.svg b/src/images/icons/Qooqie.svg new file mode 100644 index 00000000..203d2b08 --- /dev/null +++ b/src/images/icons/Qooqie.svg @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/QoreAI.svg b/src/images/icons/QoreAI.svg new file mode 100644 index 00000000..70b5726d --- /dev/null +++ b/src/images/icons/QoreAI.svg @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Qpien.svg b/src/images/icons/Qpien.svg new file mode 100644 index 00000000..7c03319f --- /dev/null +++ b/src/images/icons/Qpien.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/src/images/icons/Qshop.svg b/src/images/icons/Qshop.svg new file mode 100644 index 00000000..bfe06047 --- /dev/null +++ b/src/images/icons/Qshop.svg @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Qualitelis.svg b/src/images/icons/Qualitelis.svg new file mode 100644 index 00000000..43abb308 --- /dev/null +++ b/src/images/icons/Qualitelis.svg @@ -0,0 +1,21 @@ + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/QualityUnitHelpDesk.svg b/src/images/icons/QualityUnitHelpDesk.svg new file mode 100644 index 00000000..a5dbb6c4 --- /dev/null +++ b/src/images/icons/QualityUnitHelpDesk.svg @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Quandoo.svg b/src/images/icons/Quandoo.svg new file mode 100644 index 00000000..ad27fa48 --- /dev/null +++ b/src/images/icons/Quandoo.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Quant.svg b/src/images/icons/Quant.svg new file mode 100644 index 00000000..ab5eac80 --- /dev/null +++ b/src/images/icons/Quant.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/Quarto.svg b/src/images/icons/Quarto.svg new file mode 100644 index 00000000..b81ef372 --- /dev/null +++ b/src/images/icons/Quarto.svg @@ -0,0 +1,14 @@ + + + + + + \ No newline at end of file diff --git a/src/images/icons/Qubit.png b/src/images/icons/Qubit.png deleted file mode 100644 index 15553de7..00000000 Binary files a/src/images/icons/Qubit.png and /dev/null differ diff --git a/src/images/icons/Qubit.svg b/src/images/icons/Qubit.svg new file mode 100644 index 00000000..607bc28a --- /dev/null +++ b/src/images/icons/Qubit.svg @@ -0,0 +1,14 @@ + + + + + + \ No newline at end of file diff --git a/src/images/icons/Quform.svg b/src/images/icons/Quform.svg new file mode 100644 index 00000000..41109b63 --- /dev/null +++ b/src/images/icons/Quform.svg @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/QuickCEP.svg b/src/images/icons/QuickCEP.svg new file mode 100644 index 00000000..e3d1e5b7 --- /dev/null +++ b/src/images/icons/QuickCEP.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/QuiqMessaging.svg b/src/images/icons/QuiqMessaging.svg new file mode 100644 index 00000000..208c61e8 --- /dev/null +++ b/src/images/icons/QuiqMessaging.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Quizitri.svg b/src/images/icons/Quizitri.svg new file mode 100644 index 00000000..1265e9fc --- /dev/null +++ b/src/images/icons/Quizitri.svg @@ -0,0 +1,296 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Qumra.svg b/src/images/icons/Qumra.svg new file mode 100644 index 00000000..dc292878 --- /dev/null +++ b/src/images/icons/Qumra.svg @@ -0,0 +1,12 @@ + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/QuoteMedia.svg b/src/images/icons/QuoteMedia.svg new file mode 100644 index 00000000..2cdfd993 --- /dev/null +++ b/src/images/icons/QuoteMedia.svg @@ -0,0 +1,20 @@ + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/REIChat.svg b/src/images/icons/REIChat.svg new file mode 100644 index 00000000..b0762b90 --- /dev/null +++ b/src/images/icons/REIChat.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/REVEChat.svg b/src/images/icons/REVEChat.svg new file mode 100644 index 00000000..3a7131ce --- /dev/null +++ b/src/images/icons/REVEChat.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/RMZ.svg b/src/images/icons/RMZ.svg new file mode 100644 index 00000000..a06a6a31 --- /dev/null +++ b/src/images/icons/RMZ.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/ROCCommerce.svg b/src/images/icons/ROCCommerce.svg new file mode 100644 index 00000000..9bb88cdf --- /dev/null +++ b/src/images/icons/ROCCommerce.svg @@ -0,0 +1,29 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Raaft.svg b/src/images/icons/Raaft.svg new file mode 100644 index 00000000..e536d6e5 --- /dev/null +++ b/src/images/icons/Raaft.svg @@ -0,0 +1,87 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Rabfy.svg b/src/images/icons/Rabfy.svg new file mode 100644 index 00000000..f7932e59 --- /dev/null +++ b/src/images/icons/Rabfy.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/RaceRoster.svg b/src/images/icons/RaceRoster.svg new file mode 100644 index 00000000..f3ec5ad8 --- /dev/null +++ b/src/images/icons/RaceRoster.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/Radar.svg b/src/images/icons/Radar.svg new file mode 100644 index 00000000..b548bc8b --- /dev/null +++ b/src/images/icons/Radar.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Radario.svg b/src/images/icons/Radario.svg new file mode 100644 index 00000000..d0a3cb57 --- /dev/null +++ b/src/images/icons/Radario.svg @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Radial.svg b/src/images/icons/Radial.svg new file mode 100644 index 00000000..0f02318e --- /dev/null +++ b/src/images/icons/Radial.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/RafflePress.svg b/src/images/icons/RafflePress.svg new file mode 100644 index 00000000..a48ded7f --- /dev/null +++ b/src/images/icons/RafflePress.svg @@ -0,0 +1,88 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Rake.svg b/src/images/icons/Rake.svg new file mode 100644 index 00000000..844aaf7b --- /dev/null +++ b/src/images/icons/Rake.svg @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Rally.svg b/src/images/icons/Rally.svg new file mode 100644 index 00000000..7f7ba173 --- /dev/null +++ b/src/images/icons/Rally.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/Rambler.svg b/src/images/icons/Rambler.svg new file mode 100644 index 00000000..597f5c07 --- /dev/null +++ b/src/images/icons/Rambler.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Ramper.svg b/src/images/icons/Ramper.svg new file mode 100644 index 00000000..d6e49bb2 --- /dev/null +++ b/src/images/icons/Ramper.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/RandemRetail.svg b/src/images/icons/RandemRetail.svg new file mode 100644 index 00000000..69558529 --- /dev/null +++ b/src/images/icons/RandemRetail.svg @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Raneto.svg b/src/images/icons/Raneto.svg new file mode 100644 index 00000000..857e1e4c --- /dev/null +++ b/src/images/icons/Raneto.svg @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/images/icons/RankScience.svg b/src/images/icons/RankScience.svg new file mode 100644 index 00000000..7c1ecb90 --- /dev/null +++ b/src/images/icons/RankScience.svg @@ -0,0 +1,16 @@ + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/RapidActiveCRM.svg b/src/images/icons/RapidActiveCRM.svg new file mode 100644 index 00000000..5b4fe2ee --- /dev/null +++ b/src/images/icons/RapidActiveCRM.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/RapidSearch.svg b/src/images/icons/RapidSearch.svg new file mode 100644 index 00000000..24459e71 --- /dev/null +++ b/src/images/icons/RapidSearch.svg @@ -0,0 +1,13 @@ + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/RapidWeaver.svg b/src/images/icons/RapidWeaver.svg new file mode 100644 index 00000000..6c89de76 --- /dev/null +++ b/src/images/icons/RapidWeaver.svg @@ -0,0 +1,440 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Rasayel.svg b/src/images/icons/Rasayel.svg new file mode 100644 index 00000000..b4ebe037 --- /dev/null +++ b/src/images/icons/Rasayel.svg @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/RawGit.svg b/src/images/icons/RawGit.svg new file mode 100644 index 00000000..2e1ee83e --- /dev/null +++ b/src/images/icons/RawGit.svg @@ -0,0 +1,78 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Reactful.svg b/src/images/icons/Reactful.svg new file mode 100644 index 00000000..06ae2f5b --- /dev/null +++ b/src/images/icons/Reactful.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/src/images/icons/Reaktion.svg b/src/images/icons/Reaktion.svg new file mode 100644 index 00000000..50a66508 --- /dev/null +++ b/src/images/icons/Reaktion.svg @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Real Geeks.svg b/src/images/icons/Real Geeks.svg new file mode 100644 index 00000000..cae6e0d1 --- /dev/null +++ b/src/images/icons/Real Geeks.svg @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/images/icons/RealNex.svg b/src/images/icons/RealNex.svg new file mode 100644 index 00000000..1d04163f --- /dev/null +++ b/src/images/icons/RealNex.svg @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/RealSatisfied.svg b/src/images/icons/RealSatisfied.svg new file mode 100644 index 00000000..d952981e --- /dev/null +++ b/src/images/icons/RealSatisfied.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/Realytics.svg b/src/images/icons/Realytics.svg new file mode 100644 index 00000000..b96a66c0 --- /dev/null +++ b/src/images/icons/Realytics.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Recolize.svg b/src/images/icons/Recolize.svg new file mode 100644 index 00000000..2b8cf9ab --- /dev/null +++ b/src/images/icons/Recolize.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Reconline.svg b/src/images/icons/Reconline.svg new file mode 100644 index 00000000..6aad911a --- /dev/null +++ b/src/images/icons/Reconline.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/images/icons/Recooty.svg b/src/images/icons/Recooty.svg new file mode 100644 index 00000000..a8718084 --- /dev/null +++ b/src/images/icons/Recooty.svg @@ -0,0 +1,24 @@ + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Recop.svg b/src/images/icons/Recop.svg new file mode 100644 index 00000000..387a5e0e --- /dev/null +++ b/src/images/icons/Recop.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Recruition.svg b/src/images/icons/Recruition.svg new file mode 100644 index 00000000..aaba3baf --- /dev/null +++ b/src/images/icons/Recruition.svg @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/src/images/icons/RediRedi.svg b/src/images/icons/RediRedi.svg new file mode 100644 index 00000000..67ce6586 --- /dev/null +++ b/src/images/icons/RediRedi.svg @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Redicom.svg b/src/images/icons/Redicom.svg new file mode 100644 index 00000000..9eb3fc79 --- /dev/null +++ b/src/images/icons/Redicom.svg @@ -0,0 +1,14 @@ + + + + + + \ No newline at end of file diff --git a/src/images/icons/Reditus.svg b/src/images/icons/Reditus.svg new file mode 100644 index 00000000..dd30c634 --- /dev/null +++ b/src/images/icons/Reditus.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/src/images/icons/Redmine.png b/src/images/icons/Redmine.png deleted file mode 100644 index f29fee62..00000000 Binary files a/src/images/icons/Redmine.png and /dev/null differ diff --git a/src/images/icons/Redmine.svg b/src/images/icons/Redmine.svg new file mode 100644 index 00000000..be6b87f8 --- /dev/null +++ b/src/images/icons/Redmine.svg @@ -0,0 +1,26 @@ + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Redrive.svg b/src/images/icons/Redrive.svg new file mode 100644 index 00000000..0b91e904 --- /dev/null +++ b/src/images/icons/Redrive.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/images/icons/Refari.svg b/src/images/icons/Refari.svg new file mode 100644 index 00000000..0e1621e4 --- /dev/null +++ b/src/images/icons/Refari.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/ReferralRocket.svg b/src/images/icons/ReferralRocket.svg new file mode 100644 index 00000000..82c72b85 --- /dev/null +++ b/src/images/icons/ReferralRocket.svg @@ -0,0 +1,393 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Reflex.svg b/src/images/icons/Reflex.svg new file mode 100644 index 00000000..621a9e03 --- /dev/null +++ b/src/images/icons/Reflex.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Reform.svg b/src/images/icons/Reform.svg new file mode 100644 index 00000000..ba2129e9 --- /dev/null +++ b/src/images/icons/Reform.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Registria.svg b/src/images/icons/Registria.svg new file mode 100644 index 00000000..e7aa3e04 --- /dev/null +++ b/src/images/icons/Registria.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Regula.svg b/src/images/icons/Regula.svg new file mode 100644 index 00000000..9455db47 --- /dev/null +++ b/src/images/icons/Regula.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Rela.svg b/src/images/icons/Rela.svg new file mode 100644 index 00000000..4d24b4ac --- /dev/null +++ b/src/images/icons/Rela.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/Relap.svg b/src/images/icons/Relap.svg new file mode 100644 index 00000000..8172adac --- /dev/null +++ b/src/images/icons/Relap.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Released.svg b/src/images/icons/Released.svg new file mode 100644 index 00000000..096296b5 --- /dev/null +++ b/src/images/icons/Released.svg @@ -0,0 +1,9 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/Releasit.svg b/src/images/icons/Releasit.svg new file mode 100644 index 00000000..02dae741 --- /dev/null +++ b/src/images/icons/Releasit.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/images/icons/Releva.svg b/src/images/icons/Releva.svg new file mode 100644 index 00000000..7260f797 --- /dev/null +++ b/src/images/icons/Releva.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Reloop.svg b/src/images/icons/Reloop.svg new file mode 100644 index 00000000..078c8e02 --- /dev/null +++ b/src/images/icons/Reloop.svg @@ -0,0 +1,9 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/Remind.svg b/src/images/icons/Remind.svg new file mode 100644 index 00000000..5927bffb --- /dev/null +++ b/src/images/icons/Remind.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/RentCafe.svg b/src/images/icons/RentCafe.svg new file mode 100644 index 00000000..bed71be4 --- /dev/null +++ b/src/images/icons/RentCafe.svg @@ -0,0 +1,138 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/RentSyst.svg b/src/images/icons/RentSyst.svg new file mode 100644 index 00000000..bdba6ccf --- /dev/null +++ b/src/images/icons/RentSyst.svg @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Repco.svg b/src/images/icons/Repco.svg new file mode 100644 index 00000000..cbf2e4da --- /dev/null +++ b/src/images/icons/Repco.svg @@ -0,0 +1,29 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Repuso.svg b/src/images/icons/Repuso.svg new file mode 100644 index 00000000..9f93c748 --- /dev/null +++ b/src/images/icons/Repuso.svg @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/RequestMetrics.svg b/src/images/icons/RequestMetrics.svg new file mode 100644 index 00000000..679443df --- /dev/null +++ b/src/images/icons/RequestMetrics.svg @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/ReservaINK.svg b/src/images/icons/ReservaINK.svg new file mode 100644 index 00000000..c6a3e5d0 --- /dev/null +++ b/src/images/icons/ReservaINK.svg @@ -0,0 +1,15 @@ + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Reshop.svg b/src/images/icons/Reshop.svg new file mode 100644 index 00000000..0d08910f --- /dev/null +++ b/src/images/icons/Reshop.svg @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/ResolvePay.svg b/src/images/icons/ResolvePay.svg new file mode 100644 index 00000000..2575b20b --- /dev/null +++ b/src/images/icons/ResolvePay.svg @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Respondi.svg b/src/images/icons/Respondi.svg new file mode 100644 index 00000000..3225b5c7 --- /dev/null +++ b/src/images/icons/Respondi.svg @@ -0,0 +1,99 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Responsa.svg b/src/images/icons/Responsa.svg new file mode 100644 index 00000000..07fd96c5 --- /dev/null +++ b/src/images/icons/Responsa.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Resultify.svg b/src/images/icons/Resultify.svg new file mode 100644 index 00000000..c7e55d44 --- /dev/null +++ b/src/images/icons/Resultify.svg @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Resupply.svg b/src/images/icons/Resupply.svg new file mode 100644 index 00000000..fc18bc94 --- /dev/null +++ b/src/images/icons/Resupply.svg @@ -0,0 +1,72 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Retisio.svg b/src/images/icons/Retisio.svg new file mode 100644 index 00000000..ce8eca3d --- /dev/null +++ b/src/images/icons/Retisio.svg @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/RetrinaBuilder.svg b/src/images/icons/RetrinaBuilder.svg new file mode 100644 index 00000000..564054cd --- /dev/null +++ b/src/images/icons/RetrinaBuilder.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Reuzenpanda.svg b/src/images/icons/Reuzenpanda.svg new file mode 100644 index 00000000..4e3df046 --- /dev/null +++ b/src/images/icons/Reuzenpanda.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/RevBid.svg b/src/images/icons/RevBid.svg new file mode 100644 index 00000000..eb5560ef --- /dev/null +++ b/src/images/icons/RevBid.svg @@ -0,0 +1,149 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/RevCent.svg b/src/images/icons/RevCent.svg new file mode 100644 index 00000000..ad8beb7d --- /dev/null +++ b/src/images/icons/RevCent.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/RevTrax.svg b/src/images/icons/RevTrax.svg new file mode 100644 index 00000000..8c1d279f --- /dev/null +++ b/src/images/icons/RevTrax.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/RevenueRoll.svg b/src/images/icons/RevenueRoll.svg new file mode 100644 index 00000000..a6742909 --- /dev/null +++ b/src/images/icons/RevenueRoll.svg @@ -0,0 +1,9 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/Reviefy.svg b/src/images/icons/Reviefy.svg new file mode 100644 index 00000000..d5c0aaba --- /dev/null +++ b/src/images/icons/Reviefy.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/ReviewGrower.svg b/src/images/icons/ReviewGrower.svg new file mode 100644 index 00000000..f2cdc926 --- /dev/null +++ b/src/images/icons/ReviewGrower.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/ReviewLead.svg b/src/images/icons/ReviewLead.svg new file mode 100644 index 00000000..e2e0ea4d --- /dev/null +++ b/src/images/icons/ReviewLead.svg @@ -0,0 +1,35 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/ReviewPro.svg b/src/images/icons/ReviewPro.svg new file mode 100644 index 00000000..5f8dc5f7 --- /dev/null +++ b/src/images/icons/ReviewPro.svg @@ -0,0 +1,23 @@ + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Reviewdoku.svg b/src/images/icons/Reviewdoku.svg new file mode 100644 index 00000000..7e681098 --- /dev/null +++ b/src/images/icons/Reviewdoku.svg @@ -0,0 +1,18 @@ + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/ReviewsUp.svg b/src/images/icons/ReviewsUp.svg new file mode 100644 index 00000000..668ef472 --- /dev/null +++ b/src/images/icons/ReviewsUp.svg @@ -0,0 +1,14 @@ + + + + + + \ No newline at end of file diff --git a/src/images/icons/Revinate.svg b/src/images/icons/Revinate.svg new file mode 100644 index 00000000..f2325181 --- /dev/null +++ b/src/images/icons/Revinate.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Revize.svg b/src/images/icons/Revize.svg new file mode 100644 index 00000000..9729eb37 --- /dev/null +++ b/src/images/icons/Revize.svg @@ -0,0 +1,369 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Rewix.svg b/src/images/icons/Rewix.svg new file mode 100644 index 00000000..26c7e6f2 --- /dev/null +++ b/src/images/icons/Rewix.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/Rhymix.svg b/src/images/icons/Rhymix.svg new file mode 100644 index 00000000..619b5c71 --- /dev/null +++ b/src/images/icons/Rhymix.svg @@ -0,0 +1,19 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/RightMessage.svg b/src/images/icons/RightMessage.svg new file mode 100644 index 00000000..bff766a9 --- /dev/null +++ b/src/images/icons/RightMessage.svg @@ -0,0 +1,20 @@ + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/RingCaptcha.svg b/src/images/icons/RingCaptcha.svg new file mode 100644 index 00000000..44775bf6 --- /dev/null +++ b/src/images/icons/RingCaptcha.svg @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Ringba.svg b/src/images/icons/Ringba.svg new file mode 100644 index 00000000..6f0a15d5 --- /dev/null +++ b/src/images/icons/Ringba.svg @@ -0,0 +1,121 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Ringostat.svg b/src/images/icons/Ringostat.svg new file mode 100644 index 00000000..8ad72620 --- /dev/null +++ b/src/images/icons/Ringostat.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/RioSEO.svg b/src/images/icons/RioSEO.svg new file mode 100644 index 00000000..e58a5295 --- /dev/null +++ b/src/images/icons/RioSEO.svg @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/RiteKit.svg b/src/images/icons/RiteKit.svg new file mode 100644 index 00000000..c3d6bac7 --- /dev/null +++ b/src/images/icons/RiteKit.svg @@ -0,0 +1,23 @@ + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/RoasFunnels.svg b/src/images/icons/RoasFunnels.svg new file mode 100644 index 00000000..316a62f8 --- /dev/null +++ b/src/images/icons/RoasFunnels.svg @@ -0,0 +1,125 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Robixcm.png b/src/images/icons/Robixcm.png new file mode 100644 index 00000000..40cf679d Binary files /dev/null and b/src/images/icons/Robixcm.png differ diff --git a/src/images/icons/Robly.svg b/src/images/icons/Robly.svg new file mode 100644 index 00000000..0ec83f91 --- /dev/null +++ b/src/images/icons/Robly.svg @@ -0,0 +1,74 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/RoboReception.svg b/src/images/icons/RoboReception.svg new file mode 100644 index 00000000..5c611335 --- /dev/null +++ b/src/images/icons/RoboReception.svg @@ -0,0 +1,26 @@ + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Robofy.svg b/src/images/icons/Robofy.svg new file mode 100644 index 00000000..3bfa20ae --- /dev/null +++ b/src/images/icons/Robofy.svg @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Rockee.svg b/src/images/icons/Rockee.svg new file mode 100644 index 00000000..0ede6e4e --- /dev/null +++ b/src/images/icons/Rockee.svg @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/RocketTools.svg b/src/images/icons/RocketTools.svg new file mode 100644 index 00000000..f4fbfd54 --- /dev/null +++ b/src/images/icons/RocketTools.svg @@ -0,0 +1,153 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Rocketspark.svg b/src/images/icons/Rocketspark.svg new file mode 100644 index 00000000..52c88477 --- /dev/null +++ b/src/images/icons/Rocketspark.svg @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Rollick.svg b/src/images/icons/Rollick.svg new file mode 100644 index 00000000..5e83774b --- /dev/null +++ b/src/images/icons/Rollick.svg @@ -0,0 +1,147 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/RoninSport.svg b/src/images/icons/RoninSport.svg new file mode 100644 index 00000000..ab3b7db4 --- /dev/null +++ b/src/images/icons/RoninSport.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/Roof.svg b/src/images/icons/Roof.svg new file mode 100644 index 00000000..8bdd72ff --- /dev/null +++ b/src/images/icons/Roof.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Rosana.svg b/src/images/icons/Rosana.svg new file mode 100644 index 00000000..bc260145 --- /dev/null +++ b/src/images/icons/Rosana.svg @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Rtoaster.svg b/src/images/icons/Rtoaster.svg new file mode 100644 index 00000000..fcc3af33 --- /dev/null +++ b/src/images/icons/Rtoaster.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Rual.svg b/src/images/icons/Rual.svg new file mode 100644 index 00000000..fe95f3e8 --- /dev/null +++ b/src/images/icons/Rual.svg @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Rubic.svg b/src/images/icons/Rubic.svg new file mode 100644 index 00000000..d63d9233 --- /dev/null +++ b/src/images/icons/Rubic.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/RubyChat.svg b/src/images/icons/RubyChat.svg new file mode 100644 index 00000000..e7ecaf65 --- /dev/null +++ b/src/images/icons/RubyChat.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/RulerAnalytics.svg b/src/images/icons/RulerAnalytics.svg new file mode 100644 index 00000000..bc3944c0 --- /dev/null +++ b/src/images/icons/RulerAnalytics.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Rumvision.png b/src/images/icons/Rumvision.png new file mode 100644 index 00000000..bad505b4 Binary files /dev/null and b/src/images/icons/Rumvision.png differ diff --git a/src/images/icons/Rybbit.svg b/src/images/icons/Rybbit.svg new file mode 100644 index 00000000..0ece1158 --- /dev/null +++ b/src/images/icons/Rybbit.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/images/icons/Ryzeo.svg b/src/images/icons/Ryzeo.svg new file mode 100644 index 00000000..716bbe3a --- /dev/null +++ b/src/images/icons/Ryzeo.svg @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/S&PGlobalMobility.svg b/src/images/icons/S&PGlobalMobility.svg new file mode 100644 index 00000000..3ce19793 --- /dev/null +++ b/src/images/icons/S&PGlobalMobility.svg @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/SEOManager.svg b/src/images/icons/SEOManager.svg new file mode 100644 index 00000000..00be5041 --- /dev/null +++ b/src/images/icons/SEOManager.svg @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/SEOPress.svg b/src/images/icons/SEOPress.svg new file mode 100644 index 00000000..5c47c701 --- /dev/null +++ b/src/images/icons/SEOPress.svg @@ -0,0 +1,106 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/SEOSamba.svg b/src/images/icons/SEOSamba.svg new file mode 100644 index 00000000..84ccbc7d --- /dev/null +++ b/src/images/icons/SEOSamba.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/SEPPlatform.svg b/src/images/icons/SEPPlatform.svg new file mode 100644 index 00000000..36f4b431 --- /dev/null +++ b/src/images/icons/SEPPlatform.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/SHE Media.png b/src/images/icons/SHE Media.png deleted file mode 100644 index da1b837b..00000000 Binary files a/src/images/icons/SHE Media.png and /dev/null differ diff --git a/src/images/icons/SIGELoja.svg b/src/images/icons/SIGELoja.svg new file mode 100644 index 00000000..21a2f7a4 --- /dev/null +++ b/src/images/icons/SIGELoja.svg @@ -0,0 +1,66 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/SMARTLGov.svg b/src/images/icons/SMARTLGov.svg new file mode 100644 index 00000000..d4dd1484 --- /dev/null +++ b/src/images/icons/SMARTLGov.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/SMSold.svg b/src/images/icons/SMSold.svg new file mode 100644 index 00000000..86c49e0d --- /dev/null +++ b/src/images/icons/SMSold.svg @@ -0,0 +1,9 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/SOCi.svg b/src/images/icons/SOCi.svg new file mode 100644 index 00000000..a115c349 --- /dev/null +++ b/src/images/icons/SOCi.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/src/images/icons/SOPlanning.svg b/src/images/icons/SOPlanning.svg new file mode 100644 index 00000000..31cff372 --- /dev/null +++ b/src/images/icons/SOPlanning.svg @@ -0,0 +1,293 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/SOTACRM.svg b/src/images/icons/SOTACRM.svg new file mode 100644 index 00000000..8fc65816 --- /dev/null +++ b/src/images/icons/SOTACRM.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/SPREAD.svg b/src/images/icons/SPREAD.svg new file mode 100644 index 00000000..031e4fd9 --- /dev/null +++ b/src/images/icons/SPREAD.svg @@ -0,0 +1,23 @@ + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Saabu.svg b/src/images/icons/Saabu.svg new file mode 100644 index 00000000..769234a1 --- /dev/null +++ b/src/images/icons/Saabu.svg @@ -0,0 +1,124 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/SafeBase.svg b/src/images/icons/SafeBase.svg new file mode 100644 index 00000000..4fa587ce --- /dev/null +++ b/src/images/icons/SafeBase.svg @@ -0,0 +1,14 @@ + + + + + + \ No newline at end of file diff --git a/src/images/icons/SafeBuy.svg b/src/images/icons/SafeBuy.svg new file mode 100644 index 00000000..5b68cdf2 --- /dev/null +++ b/src/images/icons/SafeBuy.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/Saffire.svg b/src/images/icons/Saffire.svg new file mode 100644 index 00000000..9536d7a8 --- /dev/null +++ b/src/images/icons/Saffire.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/SalesAutomator.svg b/src/images/icons/SalesAutomator.svg new file mode 100644 index 00000000..83b8cec9 --- /dev/null +++ b/src/images/icons/SalesAutomator.svg @@ -0,0 +1,128 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/SalesCandy.svg b/src/images/icons/SalesCandy.svg new file mode 100644 index 00000000..2a69dc67 --- /dev/null +++ b/src/images/icons/SalesCandy.svg @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/SalesMatch.svg b/src/images/icons/SalesMatch.svg new file mode 100644 index 00000000..ed1c761e --- /dev/null +++ b/src/images/icons/SalesMatch.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/SalesWings.svg b/src/images/icons/SalesWings.svg new file mode 100644 index 00000000..c2f00bf2 --- /dev/null +++ b/src/images/icons/SalesWings.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/Salesbeat.svg b/src/images/icons/Salesbeat.svg new file mode 100644 index 00000000..9bef9eb1 --- /dev/null +++ b/src/images/icons/Salesbeat.svg @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Salesmachine.svg b/src/images/icons/Salesmachine.svg new file mode 100644 index 00000000..fcc5a942 --- /dev/null +++ b/src/images/icons/Salesmachine.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Salespype.svg b/src/images/icons/Salespype.svg new file mode 100644 index 00000000..d220a0ce --- /dev/null +++ b/src/images/icons/Salespype.svg @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/images/icons/SamsungFood.svg b/src/images/icons/SamsungFood.svg new file mode 100644 index 00000000..b592ba8d --- /dev/null +++ b/src/images/icons/SamsungFood.svg @@ -0,0 +1,68 @@ + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Sardine.svg b/src/images/icons/Sardine.svg new file mode 100644 index 00000000..30f88f64 --- /dev/null +++ b/src/images/icons/Sardine.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Sardius.svg b/src/images/icons/Sardius.svg new file mode 100644 index 00000000..24092ade --- /dev/null +++ b/src/images/icons/Sardius.svg @@ -0,0 +1,72 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Sare.svg b/src/images/icons/Sare.svg new file mode 100644 index 00000000..13357d65 --- /dev/null +++ b/src/images/icons/Sare.svg @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/SauceSocialCommerce.svg b/src/images/icons/SauceSocialCommerce.svg new file mode 100644 index 00000000..b06ea723 --- /dev/null +++ b/src/images/icons/SauceSocialCommerce.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/src/images/icons/SavvyCal.svg b/src/images/icons/SavvyCal.svg new file mode 100644 index 00000000..6544cab9 --- /dev/null +++ b/src/images/icons/SavvyCal.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/SayAC.svg b/src/images/icons/SayAC.svg new file mode 100644 index 00000000..a20307b5 --- /dev/null +++ b/src/images/icons/SayAC.svg @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/SberCRM.svg b/src/images/icons/SberCRM.svg new file mode 100644 index 00000000..9f782f6e --- /dev/null +++ b/src/images/icons/SberCRM.svg @@ -0,0 +1,287 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/ScanNetWebshop.svg b/src/images/icons/ScanNetWebshop.svg new file mode 100644 index 00000000..429af8c8 --- /dev/null +++ b/src/images/icons/ScanNetWebshop.svg @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/ScapBot.svg b/src/images/icons/ScapBot.svg new file mode 100644 index 00000000..c7289394 --- /dev/null +++ b/src/images/icons/ScapBot.svg @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/images/icons/Scayle.svg b/src/images/icons/Scayle.svg new file mode 100644 index 00000000..47afb609 --- /dev/null +++ b/src/images/icons/Scayle.svg @@ -0,0 +1,26 @@ + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Sched.svg b/src/images/icons/Sched.svg new file mode 100644 index 00000000..29f1a888 --- /dev/null +++ b/src/images/icons/Sched.svg @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/ScheduleAnyone.svg b/src/images/icons/ScheduleAnyone.svg new file mode 100644 index 00000000..57f122d3 --- /dev/null +++ b/src/images/icons/ScheduleAnyone.svg @@ -0,0 +1,14 @@ + + + + + + \ No newline at end of file diff --git a/src/images/icons/SchoolKiwi.svg b/src/images/icons/SchoolKiwi.svg new file mode 100644 index 00000000..5c03c6fe --- /dev/null +++ b/src/images/icons/SchoolKiwi.svg @@ -0,0 +1,274 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/ScoreApp.svg b/src/images/icons/ScoreApp.svg new file mode 100644 index 00000000..cd54d426 --- /dev/null +++ b/src/images/icons/ScoreApp.svg @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Screets.svg b/src/images/icons/Screets.svg new file mode 100644 index 00000000..430bdb5f --- /dev/null +++ b/src/images/icons/Screets.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/SearchMagic.svg b/src/images/icons/SearchMagic.svg new file mode 100644 index 00000000..03ebe837 --- /dev/null +++ b/src/images/icons/SearchMagic.svg @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Searchtap.svg b/src/images/icons/Searchtap.svg new file mode 100644 index 00000000..2c38527d --- /dev/null +++ b/src/images/icons/Searchtap.svg @@ -0,0 +1,14 @@ + + + + + + \ No newline at end of file diff --git a/src/images/icons/Seated.svg b/src/images/icons/Seated.svg new file mode 100644 index 00000000..1fc2ef0b --- /dev/null +++ b/src/images/icons/Seated.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Seatics.svg b/src/images/icons/Seatics.svg new file mode 100644 index 00000000..871d6bc8 --- /dev/null +++ b/src/images/icons/Seatics.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/images/icons/Securiti.svg b/src/images/icons/Securiti.svg new file mode 100644 index 00000000..a435abf8 --- /dev/null +++ b/src/images/icons/Securiti.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/SecurityMetrics.svg b/src/images/icons/SecurityMetrics.svg new file mode 100644 index 00000000..10d45462 --- /dev/null +++ b/src/images/icons/SecurityMetrics.svg @@ -0,0 +1,15 @@ + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Seel.svg b/src/images/icons/Seel.svg new file mode 100644 index 00000000..27efd232 --- /dev/null +++ b/src/images/icons/Seel.svg @@ -0,0 +1,14 @@ + + + + + + \ No newline at end of file diff --git a/src/images/icons/Seline.svg b/src/images/icons/Seline.svg new file mode 100644 index 00000000..9bab8683 --- /dev/null +++ b/src/images/icons/Seline.svg @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/SellBe.svg b/src/images/icons/SellBe.svg new file mode 100644 index 00000000..0ce27491 --- /dev/null +++ b/src/images/icons/SellBe.svg @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/SellSite.svg b/src/images/icons/SellSite.svg new file mode 100644 index 00000000..70d342ad --- /dev/null +++ b/src/images/icons/SellSite.svg @@ -0,0 +1,29 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Sellbrite.svg b/src/images/icons/Sellbrite.svg new file mode 100644 index 00000000..6bfe199f --- /dev/null +++ b/src/images/icons/Sellbrite.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/Sellful.svg b/src/images/icons/Sellful.svg new file mode 100644 index 00000000..8cfcc242 --- /dev/null +++ b/src/images/icons/Sellful.svg @@ -0,0 +1,14 @@ + + + + + + \ No newline at end of file diff --git a/src/images/icons/Sellwild.svg b/src/images/icons/Sellwild.svg new file mode 100644 index 00000000..40574d3e --- /dev/null +++ b/src/images/icons/Sellwild.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Selzy.svg b/src/images/icons/Selzy.svg new file mode 100644 index 00000000..7a1804a4 --- /dev/null +++ b/src/images/icons/Selzy.svg @@ -0,0 +1,225 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Send.svg b/src/images/icons/Send.svg new file mode 100644 index 00000000..4623d913 --- /dev/null +++ b/src/images/icons/Send.svg @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/SendHeap.svg b/src/images/icons/SendHeap.svg new file mode 100644 index 00000000..aaa0861d --- /dev/null +++ b/src/images/icons/SendHeap.svg @@ -0,0 +1,15 @@ + + + + + + + \ No newline at end of file diff --git a/src/images/icons/SendOwl.svg b/src/images/icons/SendOwl.svg new file mode 100644 index 00000000..b3ae2d9c --- /dev/null +++ b/src/images/icons/SendOwl.svg @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Sendland.png b/src/images/icons/Sendland.png new file mode 100644 index 00000000..2d787392 Binary files /dev/null and b/src/images/icons/Sendland.png differ diff --git a/src/images/icons/Sendloop.svg b/src/images/icons/Sendloop.svg new file mode 100644 index 00000000..43f0c103 --- /dev/null +++ b/src/images/icons/Sendloop.svg @@ -0,0 +1,77 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Sendpad.svg b/src/images/icons/Sendpad.svg new file mode 100644 index 00000000..c6f3f831 --- /dev/null +++ b/src/images/icons/Sendpad.svg @@ -0,0 +1,17 @@ + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Sendtex.svg b/src/images/icons/Sendtex.svg new file mode 100644 index 00000000..1689b91a --- /dev/null +++ b/src/images/icons/Sendtex.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/Senja.svg b/src/images/icons/Senja.svg new file mode 100644 index 00000000..b77920ac --- /dev/null +++ b/src/images/icons/Senja.svg @@ -0,0 +1,77 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/SensaiMetrics.svg b/src/images/icons/SensaiMetrics.svg new file mode 100644 index 00000000..6b4e0a6a --- /dev/null +++ b/src/images/icons/SensaiMetrics.svg @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/SensorTower.svg b/src/images/icons/SensorTower.svg new file mode 100644 index 00000000..d0a1353c --- /dev/null +++ b/src/images/icons/SensorTower.svg @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Sentara.svg b/src/images/icons/Sentara.svg new file mode 100644 index 00000000..b8e79b47 --- /dev/null +++ b/src/images/icons/Sentara.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Sentifi.svg b/src/images/icons/Sentifi.svg new file mode 100644 index 00000000..6cb5d6cd --- /dev/null +++ b/src/images/icons/Sentifi.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Seon.svg b/src/images/icons/Seon.svg new file mode 100644 index 00000000..69af8129 --- /dev/null +++ b/src/images/icons/Seon.svg @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Seosphera.svg b/src/images/icons/Seosphera.svg new file mode 100644 index 00000000..6bef2d73 --- /dev/null +++ b/src/images/icons/Seosphera.svg @@ -0,0 +1,86 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/ServiceCore.svg b/src/images/icons/ServiceCore.svg new file mode 100644 index 00000000..7762d4d0 --- /dev/null +++ b/src/images/icons/ServiceCore.svg @@ -0,0 +1,17 @@ + + + + + + + \ No newline at end of file diff --git a/src/images/icons/SessionRewind.svg b/src/images/icons/SessionRewind.svg new file mode 100644 index 00000000..dc7db84e --- /dev/null +++ b/src/images/icons/SessionRewind.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Sharing.svg b/src/images/icons/Sharing.svg new file mode 100644 index 00000000..a00053ab --- /dev/null +++ b/src/images/icons/Sharing.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Sharpay.svg b/src/images/icons/Sharpay.svg new file mode 100644 index 00000000..d73b1df7 --- /dev/null +++ b/src/images/icons/Sharpay.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/Sharpen.svg b/src/images/icons/Sharpen.svg new file mode 100644 index 00000000..e8355b4f --- /dev/null +++ b/src/images/icons/Sharpen.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/SharperMMS.svg b/src/images/icons/SharperMMS.svg new file mode 100644 index 00000000..6b6f5041 --- /dev/null +++ b/src/images/icons/SharperMMS.svg @@ -0,0 +1,12 @@ + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/SheMedia.svg b/src/images/icons/SheMedia.svg new file mode 100644 index 00000000..bd7cbf06 --- /dev/null +++ b/src/images/icons/SheMedia.svg @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/images/icons/Sherpa.svg b/src/images/icons/Sherpa.svg new file mode 100644 index 00000000..4a4c7e96 --- /dev/null +++ b/src/images/icons/Sherpa.svg @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/ShineCommerce.svg b/src/images/icons/ShineCommerce.svg new file mode 100644 index 00000000..e596260f --- /dev/null +++ b/src/images/icons/ShineCommerce.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/ShionImporter.svg b/src/images/icons/ShionImporter.svg new file mode 100644 index 00000000..1e77e315 --- /dev/null +++ b/src/images/icons/ShionImporter.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Shipup.svg b/src/images/icons/Shipup.svg new file mode 100644 index 00000000..af32c58b --- /dev/null +++ b/src/images/icons/Shipup.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Shoopy.svg b/src/images/icons/Shoopy.svg new file mode 100644 index 00000000..f3607b58 --- /dev/null +++ b/src/images/icons/Shoopy.svg @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/ShopApplication.svg b/src/images/icons/ShopApplication.svg new file mode 100644 index 00000000..9d1535bc --- /dev/null +++ b/src/images/icons/ShopApplication.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/images/icons/ShopKeeper.svg b/src/images/icons/ShopKeeper.svg new file mode 100644 index 00000000..eec746a7 --- /dev/null +++ b/src/images/icons/ShopKeeper.svg @@ -0,0 +1,29 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/ShopPHP.svg b/src/images/icons/ShopPHP.svg new file mode 100644 index 00000000..906f10cd --- /dev/null +++ b/src/images/icons/ShopPHP.svg @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/ShopRoller.svg b/src/images/icons/ShopRoller.svg new file mode 100644 index 00000000..6f637121 --- /dev/null +++ b/src/images/icons/ShopRoller.svg @@ -0,0 +1,12 @@ + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/ShopStorm.svg b/src/images/icons/ShopStorm.svg new file mode 100644 index 00000000..8adb6512 --- /dev/null +++ b/src/images/icons/ShopStorm.svg @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/ShopVOX.svg b/src/images/icons/ShopVOX.svg new file mode 100644 index 00000000..2faf671c --- /dev/null +++ b/src/images/icons/ShopVOX.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/ShopX.svg b/src/images/icons/ShopX.svg new file mode 100644 index 00000000..7bc4a1a4 --- /dev/null +++ b/src/images/icons/ShopX.svg @@ -0,0 +1,32 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/ShopboxAI.svg b/src/images/icons/ShopboxAI.svg new file mode 100644 index 00000000..b6ae93e3 --- /dev/null +++ b/src/images/icons/ShopboxAI.svg @@ -0,0 +1,19 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Shopix.svg b/src/images/icons/Shopix.svg new file mode 100644 index 00000000..1bf94df1 --- /dev/null +++ b/src/images/icons/Shopix.svg @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Shoplift.svg b/src/images/icons/Shoplift.svg new file mode 100644 index 00000000..0649f79f --- /dev/null +++ b/src/images/icons/Shoplift.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Shopmaker.svg b/src/images/icons/Shopmaker.svg new file mode 100644 index 00000000..319b4c0e --- /dev/null +++ b/src/images/icons/Shopmaker.svg @@ -0,0 +1,29 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/ShopperApproved.svg b/src/images/icons/ShopperApproved.svg new file mode 100644 index 00000000..1098818b --- /dev/null +++ b/src/images/icons/ShopperApproved.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/ShoppingFeed.svg b/src/images/icons/ShoppingFeed.svg new file mode 100644 index 00000000..fa419dcc --- /dev/null +++ b/src/images/icons/ShoppingFeed.svg @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Shoprocket.svg b/src/images/icons/Shoprocket.svg new file mode 100644 index 00000000..78aac42f --- /dev/null +++ b/src/images/icons/Shoprocket.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Shoptimized.svg b/src/images/icons/Shoptimized.svg new file mode 100644 index 00000000..c44a9a23 --- /dev/null +++ b/src/images/icons/Shoptimized.svg @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Shoptrader.svg b/src/images/icons/Shoptrader.svg new file mode 100644 index 00000000..ce1bf7fe --- /dev/null +++ b/src/images/icons/Shoptrader.svg @@ -0,0 +1,12 @@ + + + + + + \ No newline at end of file diff --git a/src/images/icons/Shore.svg b/src/images/icons/Shore.svg new file mode 100644 index 00000000..4e46c1e9 --- /dev/null +++ b/src/images/icons/Shore.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/ShoutCMS.svg b/src/images/icons/ShoutCMS.svg new file mode 100644 index 00000000..87d4abda --- /dev/null +++ b/src/images/icons/ShoutCMS.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/ShoutoutTestimonial.svg b/src/images/icons/ShoutoutTestimonial.svg new file mode 100644 index 00000000..b33873a6 --- /dev/null +++ b/src/images/icons/ShoutoutTestimonial.svg @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/ShowClix.svg b/src/images/icons/ShowClix.svg new file mode 100644 index 00000000..ea75e140 --- /dev/null +++ b/src/images/icons/ShowClix.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/ShowRecentOrders.svg b/src/images/icons/ShowRecentOrders.svg new file mode 100644 index 00000000..58a5e588 --- /dev/null +++ b/src/images/icons/ShowRecentOrders.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Showdigs.svg b/src/images/icons/Showdigs.svg new file mode 100644 index 00000000..4681ea78 --- /dev/null +++ b/src/images/icons/Showdigs.svg @@ -0,0 +1,19 @@ + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/SidePanda.svg b/src/images/icons/SidePanda.svg new file mode 100644 index 00000000..739930f0 --- /dev/null +++ b/src/images/icons/SidePanda.svg @@ -0,0 +1,357 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/images/icons/SierraInteractive.svg b/src/images/icons/SierraInteractive.svg new file mode 100644 index 00000000..a258dcd2 --- /dev/null +++ b/src/images/icons/SierraInteractive.svg @@ -0,0 +1,189 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/SightCall.svg b/src/images/icons/SightCall.svg new file mode 100644 index 00000000..47fb7ded --- /dev/null +++ b/src/images/icons/SightCall.svg @@ -0,0 +1,9 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/SigmaJs.svg b/src/images/icons/SigmaJs.svg new file mode 100644 index 00000000..beb5ad2f --- /dev/null +++ b/src/images/icons/SigmaJs.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/SignCustomiser.svg b/src/images/icons/SignCustomiser.svg new file mode 100644 index 00000000..51d43413 --- /dev/null +++ b/src/images/icons/SignCustomiser.svg @@ -0,0 +1,558 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/SignalZen.svg b/src/images/icons/SignalZen.svg new file mode 100644 index 00000000..f860d46b --- /dev/null +++ b/src/images/icons/SignalZen.svg @@ -0,0 +1,35 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Signalayer.svg b/src/images/icons/Signalayer.svg new file mode 100644 index 00000000..ccec6ccd --- /dev/null +++ b/src/images/icons/Signalayer.svg @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Signalize.svg b/src/images/icons/Signalize.svg new file mode 100644 index 00000000..d6133c57 --- /dev/null +++ b/src/images/icons/Signalize.svg @@ -0,0 +1,9 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/Signals.svg b/src/images/icons/Signals.svg new file mode 100644 index 00000000..5f788e07 --- /dev/null +++ b/src/images/icons/Signals.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Silex.svg b/src/images/icons/Silex.svg new file mode 100644 index 00000000..94c17adc --- /dev/null +++ b/src/images/icons/Silex.svg @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Silktide.svg b/src/images/icons/Silktide.svg new file mode 100644 index 00000000..602505e6 --- /dev/null +++ b/src/images/icons/Silktide.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/Simbla.svg b/src/images/icons/Simbla.svg new file mode 100644 index 00000000..e25fe7c9 --- /dev/null +++ b/src/images/icons/Simbla.svg @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Sirv.svg b/src/images/icons/Sirv.svg new file mode 100644 index 00000000..242aa913 --- /dev/null +++ b/src/images/icons/Sirv.svg @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Sistem.svg b/src/images/icons/Sistem.svg new file mode 100644 index 00000000..02bdaef4 --- /dev/null +++ b/src/images/icons/Sistem.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/SiteBooster.svg b/src/images/icons/SiteBooster.svg new file mode 100644 index 00000000..8eb6c972 --- /dev/null +++ b/src/images/icons/SiteBooster.svg @@ -0,0 +1,133 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/SiteWrench.svg b/src/images/icons/SiteWrench.svg new file mode 100644 index 00000000..a38f6321 --- /dev/null +++ b/src/images/icons/SiteWrench.svg @@ -0,0 +1,10 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/SiteWright.svg b/src/images/icons/SiteWright.svg new file mode 100644 index 00000000..688b6420 --- /dev/null +++ b/src/images/icons/SiteWright.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Sitehood.svg b/src/images/icons/Sitehood.svg new file mode 100644 index 00000000..b973ce7f --- /dev/null +++ b/src/images/icons/Sitehood.svg @@ -0,0 +1,87 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Siter.svg b/src/images/icons/Siter.svg new file mode 100644 index 00000000..fd562777 --- /dev/null +++ b/src/images/icons/Siter.svg @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Sitey.svg b/src/images/icons/Sitey.svg new file mode 100644 index 00000000..217d6c90 --- /dev/null +++ b/src/images/icons/Sitey.svg @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Sitoo.svg b/src/images/icons/Sitoo.svg new file mode 100644 index 00000000..2624f7f4 --- /dev/null +++ b/src/images/icons/Sitoo.svg @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Siweb.svg b/src/images/icons/Siweb.svg new file mode 100644 index 00000000..62160ab1 --- /dev/null +++ b/src/images/icons/Siweb.svg @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Sixads.svg b/src/images/icons/Sixads.svg new file mode 100644 index 00000000..52aa621e --- /dev/null +++ b/src/images/icons/Sixads.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/Sixshop.svg b/src/images/icons/Sixshop.svg new file mode 100644 index 00000000..0627f8d5 --- /dev/null +++ b/src/images/icons/Sixshop.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/SizeMe.svg b/src/images/icons/SizeMe.svg new file mode 100644 index 00000000..de055a8a --- /dev/null +++ b/src/images/icons/SizeMe.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/Sizekick.svg b/src/images/icons/Sizekick.svg new file mode 100644 index 00000000..1478ee1d --- /dev/null +++ b/src/images/icons/Sizekick.svg @@ -0,0 +1,14 @@ + + + + + + \ No newline at end of file diff --git a/src/images/icons/Sizey.svg b/src/images/icons/Sizey.svg new file mode 100644 index 00000000..50dde279 --- /dev/null +++ b/src/images/icons/Sizey.svg @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Skeeks.svg b/src/images/icons/Skeeks.svg new file mode 100644 index 00000000..34824617 --- /dev/null +++ b/src/images/icons/Skeeks.svg @@ -0,0 +1,29 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Skeep.svg b/src/images/icons/Skeep.svg new file mode 100644 index 00000000..3255f110 --- /dev/null +++ b/src/images/icons/Skeep.svg @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Skeepers.svg b/src/images/icons/Skeepers.svg new file mode 100644 index 00000000..666a4569 --- /dev/null +++ b/src/images/icons/Skeepers.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/Skiperformance.svg b/src/images/icons/Skiperformance.svg new file mode 100644 index 00000000..153f3a75 --- /dev/null +++ b/src/images/icons/Skiperformance.svg @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Skitter.svg b/src/images/icons/Skitter.svg new file mode 100644 index 00000000..4b59fe07 --- /dev/null +++ b/src/images/icons/Skitter.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Skool.svg b/src/images/icons/Skool.svg new file mode 100644 index 00000000..15dc33d6 --- /dev/null +++ b/src/images/icons/Skool.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/SkyGlue.svg b/src/images/icons/SkyGlue.svg new file mode 100644 index 00000000..88736a2a --- /dev/null +++ b/src/images/icons/SkyGlue.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/SkyPilot.svg b/src/images/icons/SkyPilot.svg new file mode 100644 index 00000000..3638f63d --- /dev/null +++ b/src/images/icons/SkyPilot.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Slaask.svg b/src/images/icons/Slaask.svg new file mode 100644 index 00000000..d10dc711 --- /dev/null +++ b/src/images/icons/Slaask.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/Slapform.svg b/src/images/icons/Slapform.svg new file mode 100644 index 00000000..b1b3953c --- /dev/null +++ b/src/images/icons/Slapform.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/Slim-SEO.svg b/src/images/icons/Slim-SEO.svg new file mode 100644 index 00000000..30d58bcf --- /dev/null +++ b/src/images/icons/Slim-SEO.svg @@ -0,0 +1 @@ + diff --git a/src/images/icons/Slingshot.svg b/src/images/icons/Slingshot.svg new file mode 100644 index 00000000..96cf93fd --- /dev/null +++ b/src/images/icons/Slingshot.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Smaily.svg b/src/images/icons/Smaily.svg new file mode 100644 index 00000000..e179f909 --- /dev/null +++ b/src/images/icons/Smaily.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/Smallbox.svg b/src/images/icons/Smallbox.svg new file mode 100644 index 00000000..e299727f --- /dev/null +++ b/src/images/icons/Smallbox.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/images/icons/Smallchat.svg b/src/images/icons/Smallchat.svg new file mode 100644 index 00000000..88f82043 --- /dev/null +++ b/src/images/icons/Smallchat.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/SmartAnalytics.svg b/src/images/icons/SmartAnalytics.svg new file mode 100644 index 00000000..49812aac --- /dev/null +++ b/src/images/icons/SmartAnalytics.svg @@ -0,0 +1,13 @@ + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/SmartLink.svg b/src/images/icons/SmartLink.svg new file mode 100644 index 00000000..2357d31e --- /dev/null +++ b/src/images/icons/SmartLink.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/SmartPoint.svg b/src/images/icons/SmartPoint.svg new file mode 100644 index 00000000..99d3438a --- /dev/null +++ b/src/images/icons/SmartPoint.svg @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/SmileVirtual.svg b/src/images/icons/SmileVirtual.svg new file mode 100644 index 00000000..c8f42fab --- /dev/null +++ b/src/images/icons/SmileVirtual.svg @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/images/icons/Smilee.svg b/src/images/icons/Smilee.svg new file mode 100644 index 00000000..04192877 --- /dev/null +++ b/src/images/icons/Smilee.svg @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Smilii.svg b/src/images/icons/Smilii.svg new file mode 100644 index 00000000..9fbd70eb --- /dev/null +++ b/src/images/icons/Smilii.svg @@ -0,0 +1,110 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Smootify.svg b/src/images/icons/Smootify.svg new file mode 100644 index 00000000..004a8167 --- /dev/null +++ b/src/images/icons/Smootify.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/SnapCall.svg b/src/images/icons/SnapCall.svg new file mode 100644 index 00000000..efb636da --- /dev/null +++ b/src/images/icons/SnapCall.svg @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/SnapHop.svg b/src/images/icons/SnapHop.svg new file mode 100644 index 00000000..659b4730 --- /dev/null +++ b/src/images/icons/SnapHop.svg @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/SnapSea.svg b/src/images/icons/SnapSea.svg new file mode 100644 index 00000000..4e01dada --- /dev/null +++ b/src/images/icons/SnapSea.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Snapps.svg b/src/images/icons/Snapps.svg new file mode 100644 index 00000000..ccb47e6f --- /dev/null +++ b/src/images/icons/Snapps.svg @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/SniffURL.svg b/src/images/icons/SniffURL.svg new file mode 100644 index 00000000..f4c9e72f --- /dev/null +++ b/src/images/icons/SniffURL.svg @@ -0,0 +1,150 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/SniperCRM.svg b/src/images/icons/SniperCRM.svg new file mode 100644 index 00000000..9c1051e2 --- /dev/null +++ b/src/images/icons/SniperCRM.svg @@ -0,0 +1,191 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Sobot.svg b/src/images/icons/Sobot.svg new file mode 100644 index 00000000..c33a584a --- /dev/null +++ b/src/images/icons/Sobot.svg @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Socedo.svg b/src/images/icons/Socedo.svg new file mode 100644 index 00000000..dd5c813b --- /dev/null +++ b/src/images/icons/Socedo.svg @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Sociavore.svg b/src/images/icons/Sociavore.svg new file mode 100644 index 00000000..3f5f2c15 --- /dev/null +++ b/src/images/icons/Sociavore.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/Socioh.svg b/src/images/icons/Socioh.svg new file mode 100644 index 00000000..0799e805 --- /dev/null +++ b/src/images/icons/Socioh.svg @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/SocraftUI.svg b/src/images/icons/SocraftUI.svg new file mode 100644 index 00000000..f966cf95 --- /dev/null +++ b/src/images/icons/SocraftUI.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Sogecommerce.svg b/src/images/icons/Sogecommerce.svg new file mode 100644 index 00000000..419cfd12 --- /dev/null +++ b/src/images/icons/Sogecommerce.svg @@ -0,0 +1,20 @@ + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Sokrati.svg b/src/images/icons/Sokrati.svg new file mode 100644 index 00000000..0c057412 --- /dev/null +++ b/src/images/icons/Sokrati.svg @@ -0,0 +1,29 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Soldsie.svg b/src/images/icons/Soldsie.svg new file mode 100644 index 00000000..1bdd74d2 --- /dev/null +++ b/src/images/icons/Soldsie.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Solitics.svg b/src/images/icons/Solitics.svg new file mode 100644 index 00000000..eeb63d9b --- /dev/null +++ b/src/images/icons/Solitics.svg @@ -0,0 +1,66 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Solo.svg b/src/images/icons/Solo.svg new file mode 100644 index 00000000..1255286e --- /dev/null +++ b/src/images/icons/Solo.svg @@ -0,0 +1,18 @@ + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/SolutionReach.svg b/src/images/icons/SolutionReach.svg new file mode 100644 index 00000000..ac132f85 --- /dev/null +++ b/src/images/icons/SolutionReach.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Sonar.svg b/src/images/icons/Sonar.svg new file mode 100644 index 00000000..38550e8f --- /dev/null +++ b/src/images/icons/Sonar.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/sonar.svg b/src/images/icons/SonarQube.svg similarity index 100% rename from src/images/icons/sonar.svg rename to src/images/icons/SonarQube.svg diff --git a/src/images/icons/Sonetel.svg b/src/images/icons/Sonetel.svg new file mode 100644 index 00000000..3a292afd --- /dev/null +++ b/src/images/icons/Sonetel.svg @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Sonline.svg b/src/images/icons/Sonline.svg new file mode 100644 index 00000000..71102077 --- /dev/null +++ b/src/images/icons/Sonline.svg @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Sophi.svg b/src/images/icons/Sophi.svg new file mode 100644 index 00000000..38560f6b --- /dev/null +++ b/src/images/icons/Sophi.svg @@ -0,0 +1,329 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Sorry.svg b/src/images/icons/Sorry.svg new file mode 100644 index 00000000..a21fc9dc --- /dev/null +++ b/src/images/icons/Sorry.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/SparkLoop.svg b/src/images/icons/SparkLoop.svg new file mode 100644 index 00000000..28a0c38e --- /dev/null +++ b/src/images/icons/SparkLoop.svg @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/SpatialChat.svg b/src/images/icons/SpatialChat.svg new file mode 100644 index 00000000..a171bb6a --- /dev/null +++ b/src/images/icons/SpatialChat.svg @@ -0,0 +1,93 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Spayee.svg b/src/images/icons/Spayee.svg new file mode 100644 index 00000000..4507fcf2 --- /dev/null +++ b/src/images/icons/Spayee.svg @@ -0,0 +1,35 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/SpeakPipe.svg b/src/images/icons/SpeakPipe.svg new file mode 100644 index 00000000..d87db558 --- /dev/null +++ b/src/images/icons/SpeakPipe.svg @@ -0,0 +1,26 @@ + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Speca.svg b/src/images/icons/Speca.svg new file mode 100644 index 00000000..4018659d --- /dev/null +++ b/src/images/icons/Speca.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/src/images/icons/Spectate.svg b/src/images/icons/Spectate.svg new file mode 100644 index 00000000..321b7b9f --- /dev/null +++ b/src/images/icons/Spectate.svg @@ -0,0 +1,120 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/SpeedOfMe.svg b/src/images/icons/SpeedOfMe.svg new file mode 100644 index 00000000..f5cf9e11 --- /dev/null +++ b/src/images/icons/SpeedOfMe.svg @@ -0,0 +1,246 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/SpeedyCache.svg b/src/images/icons/SpeedyCache.svg new file mode 100644 index 00000000..0f79cc04 --- /dev/null +++ b/src/images/icons/SpeedyCache.svg @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/images/icons/SpexoAddons.svg b/src/images/icons/SpexoAddons.svg new file mode 100644 index 00000000..9030809f --- /dev/null +++ b/src/images/icons/SpexoAddons.svg @@ -0,0 +1,165 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/SpiffyStores.svg b/src/images/icons/SpiffyStores.svg new file mode 100644 index 00000000..f644ab9d --- /dev/null +++ b/src/images/icons/SpiffyStores.svg @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Spikmi.svg b/src/images/icons/Spikmi.svg new file mode 100644 index 00000000..f6ed9af6 --- /dev/null +++ b/src/images/icons/Spikmi.svg @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/SpiralCMS.svg b/src/images/icons/SpiralCMS.svg new file mode 100644 index 00000000..18b5a212 --- /dev/null +++ b/src/images/icons/SpiralCMS.svg @@ -0,0 +1,7392 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Spline.svg b/src/images/icons/Spline.svg new file mode 100644 index 00000000..1171b45b --- /dev/null +++ b/src/images/icons/Spline.svg @@ -0,0 +1,144 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/SplitHero.svg b/src/images/icons/SplitHero.svg new file mode 100644 index 00000000..a0f40f86 --- /dev/null +++ b/src/images/icons/SplitHero.svg @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/SplutterAI.svg b/src/images/icons/SplutterAI.svg new file mode 100644 index 00000000..6da55382 --- /dev/null +++ b/src/images/icons/SplutterAI.svg @@ -0,0 +1,1297 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Spotii.svg b/src/images/icons/Spotii.svg index a4feaa40..f41b82b7 100644 --- a/src/images/icons/Spotii.svg +++ b/src/images/icons/Spotii.svg @@ -1,9 +1,6 @@ - - - - - - - - + + + + + diff --git a/src/images/icons/Spreadr.svg b/src/images/icons/Spreadr.svg new file mode 100644 index 00000000..1e054fc1 --- /dev/null +++ b/src/images/icons/Spreadr.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Sprii.svg b/src/images/icons/Sprii.svg new file mode 100644 index 00000000..6179fd79 --- /dev/null +++ b/src/images/icons/Sprii.svg @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Springbig.svg b/src/images/icons/Springbig.svg new file mode 100644 index 00000000..b7e4d0de --- /dev/null +++ b/src/images/icons/Springbig.svg @@ -0,0 +1,204 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Springnest.svg b/src/images/icons/Springnest.svg new file mode 100644 index 00000000..5b52bee7 --- /dev/null +++ b/src/images/icons/Springnest.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Spruce.svg b/src/images/icons/Spruce.svg new file mode 100644 index 00000000..0f9b7334 --- /dev/null +++ b/src/images/icons/Spruce.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/Sqimple.svg b/src/images/icons/Sqimple.svg new file mode 100644 index 00000000..92b3a136 --- /dev/null +++ b/src/images/icons/Sqimple.svg @@ -0,0 +1,9 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/SqualoMail.svg b/src/images/icons/SqualoMail.svg new file mode 100644 index 00000000..3b5b8faf --- /dev/null +++ b/src/images/icons/SqualoMail.svg @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/StackAdapt.svg b/src/images/icons/StackAdapt.svg new file mode 100644 index 00000000..149d8a7e --- /dev/null +++ b/src/images/icons/StackAdapt.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Staffbase.svg b/src/images/icons/Staffbase.svg new file mode 100644 index 00000000..7e392c5b --- /dev/null +++ b/src/images/icons/Staffbase.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Stammer.svg b/src/images/icons/Stammer.svg new file mode 100644 index 00000000..bd9edb2c --- /dev/null +++ b/src/images/icons/Stammer.svg @@ -0,0 +1,216 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/StarboardSuite.svg b/src/images/icons/StarboardSuite.svg new file mode 100644 index 00000000..504b9af0 --- /dev/null +++ b/src/images/icons/StarboardSuite.svg @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/images/icons/Stardekk.svg b/src/images/icons/Stardekk.svg new file mode 100644 index 00000000..c05bed3f --- /dev/null +++ b/src/images/icons/Stardekk.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Starlight.svg b/src/images/icons/Starlight.svg new file mode 100644 index 00000000..da208e94 --- /dev/null +++ b/src/images/icons/Starlight.svg @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/StartiApp.svg b/src/images/icons/StartiApp.svg new file mode 100644 index 00000000..1b1af3f7 --- /dev/null +++ b/src/images/icons/StartiApp.svg @@ -0,0 +1,14 @@ + + + + + + \ No newline at end of file diff --git a/src/images/icons/StatusCake.svg b/src/images/icons/StatusCake.svg new file mode 100644 index 00000000..08a9ffd1 --- /dev/null +++ b/src/images/icons/StatusCake.svg @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/StayAI.svg b/src/images/icons/StayAI.svg new file mode 100644 index 00000000..d925f9d2 --- /dev/null +++ b/src/images/icons/StayAI.svg @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/SteerHealth.svg b/src/images/icons/SteerHealth.svg new file mode 100644 index 00000000..c98ac59d --- /dev/null +++ b/src/images/icons/SteerHealth.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Stellantis.svg b/src/images/icons/Stellantis.svg new file mode 100644 index 00000000..3d66f6b2 --- /dev/null +++ b/src/images/icons/Stellantis.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Stetic.svg b/src/images/icons/Stetic.svg new file mode 100644 index 00000000..45d0b604 --- /dev/null +++ b/src/images/icons/Stetic.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Stibo.svg b/src/images/icons/Stibo.svg new file mode 100644 index 00000000..afd4c737 --- /dev/null +++ b/src/images/icons/Stibo.svg @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Stonly.svg b/src/images/icons/Stonly.svg new file mode 100644 index 00000000..f86521e5 --- /dev/null +++ b/src/images/icons/Stonly.svg @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Storagely.svg b/src/images/icons/Storagely.svg new file mode 100644 index 00000000..1e1da004 --- /dev/null +++ b/src/images/icons/Storagely.svg @@ -0,0 +1,12 @@ + + + + + + \ No newline at end of file diff --git a/src/images/icons/Storbie.svg b/src/images/icons/Storbie.svg new file mode 100644 index 00000000..42090558 --- /dev/null +++ b/src/images/icons/Storbie.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Storefront.svg b/src/images/icons/Storefront.svg new file mode 100644 index 00000000..5ca81eab --- /dev/null +++ b/src/images/icons/Storefront.svg @@ -0,0 +1,97 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Storeify.svg b/src/images/icons/Storeify.svg new file mode 100644 index 00000000..e308dc9e --- /dev/null +++ b/src/images/icons/Storeify.svg @@ -0,0 +1,9 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/Storrea.svg b/src/images/icons/Storrea.svg new file mode 100644 index 00000000..7f4a8bb6 --- /dev/null +++ b/src/images/icons/Storrea.svg @@ -0,0 +1,96 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Straiv.svg b/src/images/icons/Straiv.svg new file mode 100644 index 00000000..2bb35ce7 --- /dev/null +++ b/src/images/icons/Straiv.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/Strands.svg b/src/images/icons/Strands.svg new file mode 100644 index 00000000..efdf7527 --- /dev/null +++ b/src/images/icons/Strands.svg @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Strava.svg b/src/images/icons/Strava.svg new file mode 100644 index 00000000..8c607911 --- /dev/null +++ b/src/images/icons/Strava.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Streamlyne.svg b/src/images/icons/Streamlyne.svg new file mode 100644 index 00000000..e3bc6dc8 --- /dev/null +++ b/src/images/icons/Streamlyne.svg @@ -0,0 +1,146 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Streamroll.svg b/src/images/icons/Streamroll.svg new file mode 100644 index 00000000..6640fdfa --- /dev/null +++ b/src/images/icons/Streamroll.svg @@ -0,0 +1,189 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Strife.svg b/src/images/icons/Strife.svg new file mode 100644 index 00000000..db57d421 --- /dev/null +++ b/src/images/icons/Strife.svg @@ -0,0 +1,24 @@ + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Struq.svg b/src/images/icons/Struq.svg new file mode 100644 index 00000000..0ee3e53d --- /dev/null +++ b/src/images/icons/Struq.svg @@ -0,0 +1,23 @@ + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Styla.svg b/src/images/icons/Styla.svg new file mode 100644 index 00000000..ce0cc738 --- /dev/null +++ b/src/images/icons/Styla.svg @@ -0,0 +1,23 @@ + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Subiz.svg b/src/images/icons/Subiz.svg new file mode 100644 index 00000000..7d7ce271 --- /dev/null +++ b/src/images/icons/Subiz.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/SubmitExpress.svg b/src/images/icons/SubmitExpress.svg new file mode 100644 index 00000000..c4de6253 --- /dev/null +++ b/src/images/icons/SubmitExpress.svg @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Subscribfy.svg b/src/images/icons/Subscribfy.svg new file mode 100644 index 00000000..abfc68ef --- /dev/null +++ b/src/images/icons/Subscribfy.svg @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Sugar.svg b/src/images/icons/Sugar.svg new file mode 100644 index 00000000..1958e088 --- /dev/null +++ b/src/images/icons/Sugar.svg @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/SugarWOD.svg b/src/images/icons/SugarWOD.svg new file mode 100644 index 00000000..4de92bd1 --- /dev/null +++ b/src/images/icons/SugarWOD.svg @@ -0,0 +1,141 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Sugester.svg b/src/images/icons/Sugester.svg new file mode 100644 index 00000000..e52111b0 --- /dev/null +++ b/src/images/icons/Sugester.svg @@ -0,0 +1,26 @@ + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/SuiteCRM.svg b/src/images/icons/SuiteCRM.svg new file mode 100644 index 00000000..a620c51d --- /dev/null +++ b/src/images/icons/SuiteCRM.svg @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/SumUp.svg b/src/images/icons/SumUp.svg new file mode 100644 index 00000000..3f96b2cd --- /dev/null +++ b/src/images/icons/SumUp.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/Sunshop.svg b/src/images/icons/Sunshop.svg new file mode 100644 index 00000000..1d467f80 --- /dev/null +++ b/src/images/icons/Sunshop.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/images/icons/Supademo.svg b/src/images/icons/Supademo.svg new file mode 100644 index 00000000..153a323f --- /dev/null +++ b/src/images/icons/Supademo.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/src/images/icons/SuperBuzz.svg b/src/images/icons/SuperBuzz.svg new file mode 100644 index 00000000..8a22661a --- /dev/null +++ b/src/images/icons/SuperBuzz.svg @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/SuperHote.svg b/src/images/icons/SuperHote.svg new file mode 100644 index 00000000..3781d71b --- /dev/null +++ b/src/images/icons/SuperHote.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/SuperPlural.svg b/src/images/icons/SuperPlural.svg new file mode 100644 index 00000000..3c2865bd --- /dev/null +++ b/src/images/icons/SuperPlural.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Superblog.svg b/src/images/icons/Superblog.svg new file mode 100644 index 00000000..fc3c2988 --- /dev/null +++ b/src/images/icons/Superblog.svg @@ -0,0 +1,12 @@ + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Supsystic.svg b/src/images/icons/Supsystic.svg new file mode 100644 index 00000000..e0c1d8fc --- /dev/null +++ b/src/images/icons/Supsystic.svg @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Surfside.svg b/src/images/icons/Surfside.svg new file mode 100644 index 00000000..7c301c88 --- /dev/null +++ b/src/images/icons/Surfside.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Survale.svg b/src/images/icons/Survale.svg new file mode 100644 index 00000000..8288dc24 --- /dev/null +++ b/src/images/icons/Survale.svg @@ -0,0 +1,17 @@ + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Swapcard.svg b/src/images/icons/Swapcard.svg new file mode 100644 index 00000000..89a8c1ae --- /dev/null +++ b/src/images/icons/Swapcard.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/SweetAnalytics.svg b/src/images/icons/SweetAnalytics.svg new file mode 100644 index 00000000..902f490f --- /dev/null +++ b/src/images/icons/SweetAnalytics.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/SweetUpsell.svg b/src/images/icons/SweetUpsell.svg new file mode 100644 index 00000000..ecb2a58b --- /dev/null +++ b/src/images/icons/SweetUpsell.svg @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/SwellCX.svg b/src/images/icons/SwellCX.svg new file mode 100644 index 00000000..309ee344 --- /dev/null +++ b/src/images/icons/SwellCX.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/Swetrix.svg b/src/images/icons/Swetrix.svg new file mode 100644 index 00000000..ba2256cb --- /dev/null +++ b/src/images/icons/Swetrix.svg @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Swifty.svg b/src/images/icons/Swifty.svg new file mode 100644 index 00000000..fbda4c26 --- /dev/null +++ b/src/images/icons/Swifty.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Swup.svg b/src/images/icons/Swup.svg index bdc0e31e..98306472 100644 --- a/src/images/icons/Swup.svg +++ b/src/images/icons/Swup.svg @@ -1,14 +1,12 @@ - - - - - - + + + + + + + + + + diff --git a/src/images/icons/Symbolset.svg b/src/images/icons/Symbolset.svg new file mode 100644 index 00000000..6626484a --- /dev/null +++ b/src/images/icons/Symbolset.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/SynBird.svg b/src/images/icons/SynBird.svg new file mode 100644 index 00000000..b92a9f6d --- /dev/null +++ b/src/images/icons/SynBird.svg @@ -0,0 +1,18 @@ + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Synamate.svg b/src/images/icons/Synamate.svg new file mode 100644 index 00000000..c077d735 --- /dev/null +++ b/src/images/icons/Synamate.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/Syncee.svg b/src/images/icons/Syncee.svg new file mode 100644 index 00000000..ebc82285 --- /dev/null +++ b/src/images/icons/Syncee.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Syncle.svg b/src/images/icons/Syncle.svg new file mode 100644 index 00000000..1a51dfee --- /dev/null +++ b/src/images/icons/Syncle.svg @@ -0,0 +1,7 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/Synctrack.svg b/src/images/icons/Synctrack.svg new file mode 100644 index 00000000..31e519a0 --- /dev/null +++ b/src/images/icons/Synctrack.svg @@ -0,0 +1,306 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Synerise.svg b/src/images/icons/Synerise.svg index 81c4f03a..42bb764a 100644 --- a/src/images/icons/Synerise.svg +++ b/src/images/icons/Synerise.svg @@ -1 +1,8 @@ - \ No newline at end of file + + + + + + + + diff --git a/src/images/icons/Synology DiskStation.svg b/src/images/icons/Synology DiskStation.svg index 80d9e379..777c80f3 100644 --- a/src/images/icons/Synology DiskStation.svg +++ b/src/images/icons/Synology DiskStation.svg @@ -1 +1,8 @@ - \ No newline at end of file + + + + + + + + diff --git a/src/images/icons/Synup.svg b/src/images/icons/Synup.svg new file mode 100644 index 00000000..7e7d33b0 --- /dev/null +++ b/src/images/icons/Synup.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Systema.svg b/src/images/icons/Systema.svg new file mode 100644 index 00000000..2d85e3e6 --- /dev/null +++ b/src/images/icons/Systema.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/SystemsAccel.svg b/src/images/icons/SystemsAccel.svg new file mode 100644 index 00000000..6f99aa12 --- /dev/null +++ b/src/images/icons/SystemsAccel.svg @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/TGTrack.svg b/src/images/icons/TGTrack.svg new file mode 100644 index 00000000..5c1e1efe --- /dev/null +++ b/src/images/icons/TGTrack.svg @@ -0,0 +1,474 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/TIEIT.svg b/src/images/icons/TIEIT.svg new file mode 100644 index 00000000..3287e680 --- /dev/null +++ b/src/images/icons/TIEIT.svg @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/TINT.svg b/src/images/icons/TINT.svg new file mode 100644 index 00000000..fe530050 --- /dev/null +++ b/src/images/icons/TINT.svg @@ -0,0 +1,17 @@ + + + + + + + \ No newline at end of file diff --git a/src/images/icons/TRIBUS.svg b/src/images/icons/TRIBUS.svg new file mode 100644 index 00000000..179b49ad --- /dev/null +++ b/src/images/icons/TRIBUS.svg @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/TSACommerce.svg b/src/images/icons/TSACommerce.svg new file mode 100644 index 00000000..3e1eb86e --- /dev/null +++ b/src/images/icons/TSACommerce.svg @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/TableFever.svg b/src/images/icons/TableFever.svg new file mode 100644 index 00000000..10e5d505 --- /dev/null +++ b/src/images/icons/TableFever.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Tableau.svg b/src/images/icons/Tableau.svg new file mode 100644 index 00000000..17447240 --- /dev/null +++ b/src/images/icons/Tableau.svg @@ -0,0 +1,26 @@ + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Tableo.svg b/src/images/icons/Tableo.svg new file mode 100644 index 00000000..fc302bdf --- /dev/null +++ b/src/images/icons/Tableo.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Tactful.svg b/src/images/icons/Tactful.svg new file mode 100644 index 00000000..9f38221e --- /dev/null +++ b/src/images/icons/Tactful.svg @@ -0,0 +1,501 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Tagnology.svg b/src/images/icons/Tagnology.svg new file mode 100644 index 00000000..2cdf4cf8 --- /dev/null +++ b/src/images/icons/Tagnology.svg @@ -0,0 +1,20 @@ + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Tagtoo.svg b/src/images/icons/Tagtoo.svg new file mode 100644 index 00000000..4320309b --- /dev/null +++ b/src/images/icons/Tagtoo.svg @@ -0,0 +1,20 @@ + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/TakeTheme.svg b/src/images/icons/TakeTheme.svg new file mode 100644 index 00000000..7c824ab9 --- /dev/null +++ b/src/images/icons/TakeTheme.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/TalentBrew.svg b/src/images/icons/TalentBrew.svg new file mode 100644 index 00000000..df9e60eb --- /dev/null +++ b/src/images/icons/TalentBrew.svg @@ -0,0 +1,83 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/TalentClue.svg b/src/images/icons/TalentClue.svg new file mode 100644 index 00000000..eaf8ca50 --- /dev/null +++ b/src/images/icons/TalentClue.svg @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Talentegy.svg b/src/images/icons/Talentegy.svg new file mode 100644 index 00000000..c5160668 --- /dev/null +++ b/src/images/icons/Talentegy.svg @@ -0,0 +1,123 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Talention.svg b/src/images/icons/Talention.svg new file mode 100644 index 00000000..dbbb07c0 --- /dev/null +++ b/src/images/icons/Talention.svg @@ -0,0 +1,17 @@ + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Talex.svg b/src/images/icons/Talex.svg new file mode 100644 index 00000000..05c3ee54 --- /dev/null +++ b/src/images/icons/Talex.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/TalkJS.svg b/src/images/icons/TalkJS.svg new file mode 100644 index 00000000..a7a6f9d4 --- /dev/null +++ b/src/images/icons/TalkJS.svg @@ -0,0 +1,20 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/TalkMe.svg b/src/images/icons/TalkMe.svg new file mode 100644 index 00000000..e3d906cb --- /dev/null +++ b/src/images/icons/TalkMe.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/TanStack.svg b/src/images/icons/TanStack.svg new file mode 100644 index 00000000..7e785cb4 --- /dev/null +++ b/src/images/icons/TanStack.svg @@ -0,0 +1,258 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/images/icons/TapMango.svg b/src/images/icons/TapMango.svg new file mode 100644 index 00000000..f2ad80c2 --- /dev/null +++ b/src/images/icons/TapMango.svg @@ -0,0 +1,150 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Tapatalk.svg b/src/images/icons/Tapatalk.svg new file mode 100644 index 00000000..05792aa7 --- /dev/null +++ b/src/images/icons/Tapatalk.svg @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Tapsell.svg b/src/images/icons/Tapsell.svg new file mode 100644 index 00000000..b0d5e4f3 --- /dev/null +++ b/src/images/icons/Tapsell.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Tapstream.svg b/src/images/icons/Tapstream.svg new file mode 100644 index 00000000..87cf5ac9 --- /dev/null +++ b/src/images/icons/Tapstream.svg @@ -0,0 +1,606 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Taptop.svg b/src/images/icons/Taptop.svg new file mode 100644 index 00000000..fab8a125 --- /dev/null +++ b/src/images/icons/Taptop.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/TargetBay.svg b/src/images/icons/TargetBay.svg new file mode 100644 index 00000000..c48d61a0 --- /dev/null +++ b/src/images/icons/TargetBay.svg @@ -0,0 +1,14 @@ + + + + + + \ No newline at end of file diff --git a/src/images/icons/Tashi.svg b/src/images/icons/Tashi.svg new file mode 100644 index 00000000..874dd36c --- /dev/null +++ b/src/images/icons/Tashi.svg @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/TaskAnalytics.svg b/src/images/icons/TaskAnalytics.svg new file mode 100644 index 00000000..ea846e81 --- /dev/null +++ b/src/images/icons/TaskAnalytics.svg @@ -0,0 +1,150 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/TaurosMedia.svg b/src/images/icons/TaurosMedia.svg new file mode 100644 index 00000000..9f0fd881 --- /dev/null +++ b/src/images/icons/TaurosMedia.svg @@ -0,0 +1,9 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/Taxdome.svg b/src/images/icons/Taxdome.svg new file mode 100644 index 00000000..905b2ee5 --- /dev/null +++ b/src/images/icons/Taxdome.svg @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Tebra.svg b/src/images/icons/Tebra.svg new file mode 100644 index 00000000..6c42b5ab --- /dev/null +++ b/src/images/icons/Tebra.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/TechTarget.svg b/src/images/icons/TechTarget.svg new file mode 100644 index 00000000..678b7952 --- /dev/null +++ b/src/images/icons/TechTarget.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/TeeChart.svg b/src/images/icons/TeeChart.svg new file mode 100644 index 00000000..271bcc64 --- /dev/null +++ b/src/images/icons/TeeChart.svg @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Tekion.svg b/src/images/icons/Tekion.svg new file mode 100644 index 00000000..c6938292 --- /dev/null +++ b/src/images/icons/Tekion.svg @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Tend.svg b/src/images/icons/Tend.svg new file mode 100644 index 00000000..99b17139 --- /dev/null +++ b/src/images/icons/Tend.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/Tendenci.svg b/src/images/icons/Tendenci.svg new file mode 100644 index 00000000..4554837e --- /dev/null +++ b/src/images/icons/Tendenci.svg @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/TerMed.svg b/src/images/icons/TerMed.svg new file mode 100644 index 00000000..e27e3b5e --- /dev/null +++ b/src/images/icons/TerMed.svg @@ -0,0 +1,17 @@ + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Terminalfour.svg b/src/images/icons/Terminalfour.svg new file mode 100644 index 00000000..d421fa58 --- /dev/null +++ b/src/images/icons/Terminalfour.svg @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Terminus.svg b/src/images/icons/Terminus.svg new file mode 100644 index 00000000..82a86f4e --- /dev/null +++ b/src/images/icons/Terminus.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Testflow.svg b/src/images/icons/Testflow.svg new file mode 100644 index 00000000..daa0955f --- /dev/null +++ b/src/images/icons/Testflow.svg @@ -0,0 +1,17 @@ + + + + + + + \ No newline at end of file diff --git a/src/images/icons/TestimonialRobot.svg b/src/images/icons/TestimonialRobot.svg new file mode 100644 index 00000000..9950e922 --- /dev/null +++ b/src/images/icons/TestimonialRobot.svg @@ -0,0 +1,101 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/TextInChurch.svg b/src/images/icons/TextInChurch.svg new file mode 100644 index 00000000..9c0a1b8b --- /dev/null +++ b/src/images/icons/TextInChurch.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/TextMarketer.svg b/src/images/icons/TextMarketer.svg new file mode 100644 index 00000000..fcbf9008 --- /dev/null +++ b/src/images/icons/TextMarketer.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Textalk.svg b/src/images/icons/Textalk.svg new file mode 100644 index 00000000..b88c69fd --- /dev/null +++ b/src/images/icons/Textalk.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Textline.svg b/src/images/icons/Textline.svg new file mode 100644 index 00000000..4dd02b66 --- /dev/null +++ b/src/images/icons/Textline.svg @@ -0,0 +1,4 @@ + + + \ No newline at end of file diff --git a/src/images/icons/Textmagic.svg b/src/images/icons/Textmagic.svg new file mode 100644 index 00000000..ecf9d230 --- /dev/null +++ b/src/images/icons/Textmagic.svg @@ -0,0 +1,507 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/ThankYouAnalytics.svg b/src/images/icons/ThankYouAnalytics.svg new file mode 100644 index 00000000..e6a05864 --- /dev/null +++ b/src/images/icons/ThankYouAnalytics.svg @@ -0,0 +1,16 @@ + + + + + + + \ No newline at end of file diff --git a/src/images/icons/TheBotForge.svg b/src/images/icons/TheBotForge.svg new file mode 100644 index 00000000..ba2b8971 --- /dev/null +++ b/src/images/icons/TheBotForge.svg @@ -0,0 +1,357 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/TheMonetyzer.svg b/src/images/icons/TheMonetyzer.svg new file mode 100644 index 00000000..025ae352 --- /dev/null +++ b/src/images/icons/TheMonetyzer.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/TheRave.svg b/src/images/icons/TheRave.svg new file mode 100644 index 00000000..3aa9836d --- /dev/null +++ b/src/images/icons/TheRave.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/Theasys.svg b/src/images/icons/Theasys.svg new file mode 100644 index 00000000..3331850a --- /dev/null +++ b/src/images/icons/Theasys.svg @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Theatre.js.svg b/src/images/icons/Theatre.js.svg index f53fe299..14f6e296 100644 --- a/src/images/icons/Theatre.js.svg +++ b/src/images/icons/Theatre.js.svg @@ -1,2 +1,17 @@ - - \ No newline at end of file + + + + + + + + + + + + + + + + + diff --git a/src/images/icons/ThemezHut.png b/src/images/icons/ThemezHut.png deleted file mode 100644 index 2f75314f..00000000 Binary files a/src/images/icons/ThemezHut.png and /dev/null differ diff --git a/src/images/icons/ThemezHut.svg b/src/images/icons/ThemezHut.svg new file mode 100644 index 00000000..3ae6548b --- /dev/null +++ b/src/images/icons/ThemezHut.svg @@ -0,0 +1,323 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/TheraLink.svg b/src/images/icons/TheraLink.svg new file mode 100644 index 00000000..b55c3f2c --- /dev/null +++ b/src/images/icons/TheraLink.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/ThingPark.svg b/src/images/icons/ThingPark.svg new file mode 100644 index 00000000..f2a7fd16 --- /dev/null +++ b/src/images/icons/ThingPark.svg @@ -0,0 +1,141 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/ThingsSolver.svg b/src/images/icons/ThingsSolver.svg new file mode 100644 index 00000000..8d5b3c70 --- /dev/null +++ b/src/images/icons/ThingsSolver.svg @@ -0,0 +1,84 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/ThoughtIndustries.svg b/src/images/icons/ThoughtIndustries.svg new file mode 100644 index 00000000..8e14729f --- /dev/null +++ b/src/images/icons/ThoughtIndustries.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/src/images/icons/ThoughtMetric.svg b/src/images/icons/ThoughtMetric.svg new file mode 100644 index 00000000..61e84be1 --- /dev/null +++ b/src/images/icons/ThoughtMetric.svg @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Threadles.svg b/src/images/icons/Threadles.svg new file mode 100644 index 00000000..5ce8833b --- /dev/null +++ b/src/images/icons/Threadles.svg @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Thridify.svg b/src/images/icons/Thridify.svg new file mode 100644 index 00000000..fbe99ac4 --- /dev/null +++ b/src/images/icons/Thridify.svg @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Thrillshare.svg b/src/images/icons/Thrillshare.svg new file mode 100644 index 00000000..73fac06d --- /dev/null +++ b/src/images/icons/Thrillshare.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/Thrinacia.svg b/src/images/icons/Thrinacia.svg new file mode 100644 index 00000000..a83f222e --- /dev/null +++ b/src/images/icons/Thrinacia.svg @@ -0,0 +1,77 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Tickera.svg b/src/images/icons/Tickera.svg new file mode 100644 index 00000000..86232b96 --- /dev/null +++ b/src/images/icons/Tickera.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/TicketSpice.svg b/src/images/icons/TicketSpice.svg new file mode 100644 index 00000000..7754c8db --- /dev/null +++ b/src/images/icons/TicketSpice.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Ticketbro.svg b/src/images/icons/Ticketbro.svg new file mode 100644 index 00000000..5c8a6970 --- /dev/null +++ b/src/images/icons/Ticketbro.svg @@ -0,0 +1,144 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Ticketmeo.svg b/src/images/icons/Ticketmeo.svg new file mode 100644 index 00000000..3759ad12 --- /dev/null +++ b/src/images/icons/Ticketmeo.svg @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Ticketure.svg b/src/images/icons/Ticketure.svg new file mode 100644 index 00000000..744c8da6 --- /dev/null +++ b/src/images/icons/Ticketure.svg @@ -0,0 +1,131 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Tiendy.svg b/src/images/icons/Tiendy.svg new file mode 100644 index 00000000..f9928531 --- /dev/null +++ b/src/images/icons/Tiendy.svg @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/TikShop.svg b/src/images/icons/TikShop.svg new file mode 100644 index 00000000..e576a853 --- /dev/null +++ b/src/images/icons/TikShop.svg @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Timeago.svg b/src/images/icons/Timeago.svg new file mode 100644 index 00000000..cf716411 --- /dev/null +++ b/src/images/icons/Timeago.svg @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Timesact.svg b/src/images/icons/Timesact.svg new file mode 100644 index 00000000..c91db189 --- /dev/null +++ b/src/images/icons/Timesact.svg @@ -0,0 +1,173 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Timma.svg b/src/images/icons/Timma.svg new file mode 100644 index 00000000..bd2d62c7 --- /dev/null +++ b/src/images/icons/Timma.svg @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Tipso.svg b/src/images/icons/Tipso.svg new file mode 100644 index 00000000..d7848950 --- /dev/null +++ b/src/images/icons/Tipso.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/Tiptap.svg b/src/images/icons/Tiptap.svg new file mode 100644 index 00000000..d7ff7445 --- /dev/null +++ b/src/images/icons/Tiptap.svg @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Tito.svg b/src/images/icons/Tito.svg new file mode 100644 index 00000000..02298743 --- /dev/null +++ b/src/images/icons/Tito.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/Tix.svg b/src/images/icons/Tix.svg new file mode 100644 index 00000000..c76ea764 --- /dev/null +++ b/src/images/icons/Tix.svg @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/TocToc.svg b/src/images/icons/TocToc.svg new file mode 100644 index 00000000..2fbf653a --- /dev/null +++ b/src/images/icons/TocToc.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Tockify.svg b/src/images/icons/Tockify.svg new file mode 100644 index 00000000..2724a6d9 --- /dev/null +++ b/src/images/icons/Tockify.svg @@ -0,0 +1,147 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/TogetherJS.svg b/src/images/icons/TogetherJS.svg new file mode 100644 index 00000000..e976a5a0 --- /dev/null +++ b/src/images/icons/TogetherJS.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Tokeet.svg b/src/images/icons/Tokeet.svg new file mode 100644 index 00000000..a083cb1e --- /dev/null +++ b/src/images/icons/Tokeet.svg @@ -0,0 +1,78 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/TokenOfTrust.svg b/src/images/icons/TokenOfTrust.svg new file mode 100644 index 00000000..feb4b71b --- /dev/null +++ b/src/images/icons/TokenOfTrust.svg @@ -0,0 +1,23 @@ + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Toky.svg b/src/images/icons/Toky.svg new file mode 100644 index 00000000..e0f2bd82 --- /dev/null +++ b/src/images/icons/Toky.svg @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Tolk.svg b/src/images/icons/Tolk.svg new file mode 100644 index 00000000..217a6879 --- /dev/null +++ b/src/images/icons/Tolk.svg @@ -0,0 +1,144 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Tolstoy.svg b/src/images/icons/Tolstoy.svg new file mode 100644 index 00000000..65a0eefd --- /dev/null +++ b/src/images/icons/Tolstoy.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/Tomi.svg b/src/images/icons/Tomi.svg new file mode 100644 index 00000000..946f4842 --- /dev/null +++ b/src/images/icons/Tomi.svg @@ -0,0 +1,17 @@ + + + + + + + \ No newline at end of file diff --git a/src/images/icons/ToneDen.svg b/src/images/icons/ToneDen.svg new file mode 100644 index 00000000..4ffe0301 --- /dev/null +++ b/src/images/icons/ToneDen.svg @@ -0,0 +1,23 @@ + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Tontine.svg b/src/images/icons/Tontine.svg new file mode 100644 index 00000000..7e6f8a82 --- /dev/null +++ b/src/images/icons/Tontine.svg @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Toolbx.svg b/src/images/icons/Toolbx.svg new file mode 100644 index 00000000..92ff4580 --- /dev/null +++ b/src/images/icons/Toolbx.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Tooltip.svg b/src/images/icons/Tooltip.svg new file mode 100644 index 00000000..e511503c --- /dev/null +++ b/src/images/icons/Tooltip.svg @@ -0,0 +1,201 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Toonimo.svg b/src/images/icons/Toonimo.svg new file mode 100644 index 00000000..43a6967a --- /dev/null +++ b/src/images/icons/Toonimo.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Tooning.svg b/src/images/icons/Tooning.svg new file mode 100644 index 00000000..7faddd0e --- /dev/null +++ b/src/images/icons/Tooning.svg @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/TopProducer.svg b/src/images/icons/TopProducer.svg new file mode 100644 index 00000000..7079a3b5 --- /dev/null +++ b/src/images/icons/TopProducer.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/TopicIntelligence.svg b/src/images/icons/TopicIntelligence.svg new file mode 100644 index 00000000..b351954f --- /dev/null +++ b/src/images/icons/TopicIntelligence.svg @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/TopicIt.svg b/src/images/icons/TopicIt.svg new file mode 100644 index 00000000..4a3da98e --- /dev/null +++ b/src/images/icons/TopicIt.svg @@ -0,0 +1,29 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/ToplinePro.svg b/src/images/icons/ToplinePro.svg new file mode 100644 index 00000000..4815031b --- /dev/null +++ b/src/images/icons/ToplinePro.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/Tossdown.svg b/src/images/icons/Tossdown.svg new file mode 100644 index 00000000..5513529f --- /dev/null +++ b/src/images/icons/Tossdown.svg @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/TourCMS.svg b/src/images/icons/TourCMS.svg new file mode 100644 index 00000000..08e46384 --- /dev/null +++ b/src/images/icons/TourCMS.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Tracify.svg b/src/images/icons/Tracify.svg new file mode 100644 index 00000000..8a0a3608 --- /dev/null +++ b/src/images/icons/Tracify.svg @@ -0,0 +1,167 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Track123.svg b/src/images/icons/Track123.svg index 8db020f5..55171a2e 100644 --- a/src/images/icons/Track123.svg +++ b/src/images/icons/Track123.svg @@ -1,11 +1,9 @@ - - - - + + + + + + + - - - - - diff --git a/src/images/icons/TrackHS.svg b/src/images/icons/TrackHS.svg new file mode 100644 index 00000000..8127f7d2 --- /dev/null +++ b/src/images/icons/TrackHS.svg @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Trackbee.svg b/src/images/icons/Trackbee.svg new file mode 100644 index 00000000..3e50c2a1 --- /dev/null +++ b/src/images/icons/Trackbee.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/Trackboxx.svg b/src/images/icons/Trackboxx.svg new file mode 100644 index 00000000..2c97f9f1 --- /dev/null +++ b/src/images/icons/Trackboxx.svg @@ -0,0 +1,354 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/TradableBits.svg b/src/images/icons/TradableBits.svg new file mode 100644 index 00000000..5f5bc228 --- /dev/null +++ b/src/images/icons/TradableBits.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/TradePro.svg b/src/images/icons/TradePro.svg new file mode 100644 index 00000000..5b7c786c --- /dev/null +++ b/src/images/icons/TradePro.svg @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Tradift.svg b/src/images/icons/Tradift.svg new file mode 100644 index 00000000..39f0dfbe --- /dev/null +++ b/src/images/icons/Tradift.svg @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/TrafficGuard.svg b/src/images/icons/TrafficGuard.svg new file mode 100644 index 00000000..54011ee2 --- /dev/null +++ b/src/images/icons/TrafficGuard.svg @@ -0,0 +1,10 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/Trak.svg b/src/images/icons/Trak.svg new file mode 100644 index 00000000..2d734598 --- /dev/null +++ b/src/images/icons/Trak.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Tramoce.svg b/src/images/icons/Tramoce.svg new file mode 100644 index 00000000..bcb3e7d4 --- /dev/null +++ b/src/images/icons/Tramoce.svg @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Transax.svg b/src/images/icons/Transax.svg new file mode 100644 index 00000000..6ec58200 --- /dev/null +++ b/src/images/icons/Transax.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/TranslatePress.svg b/src/images/icons/TranslatePress.svg new file mode 100644 index 00000000..4c7929b5 --- /dev/null +++ b/src/images/icons/TranslatePress.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/Transloadit.svg b/src/images/icons/Transloadit.svg new file mode 100644 index 00000000..c7b445ff --- /dev/null +++ b/src/images/icons/Transloadit.svg @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/TravPRO.svg b/src/images/icons/TravPRO.svg new file mode 100644 index 00000000..657b96de --- /dev/null +++ b/src/images/icons/TravPRO.svg @@ -0,0 +1,201 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/TravelJoy.svg b/src/images/icons/TravelJoy.svg new file mode 100644 index 00000000..d3d1ab0b --- /dev/null +++ b/src/images/icons/TravelJoy.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/TravelPayouts.svg b/src/images/icons/TravelPayouts.svg new file mode 100644 index 00000000..dcbacc67 --- /dev/null +++ b/src/images/icons/TravelPayouts.svg @@ -0,0 +1,16 @@ + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Tremor.svg b/src/images/icons/Tremor.svg new file mode 100644 index 00000000..0eb2b5c5 --- /dev/null +++ b/src/images/icons/Tremor.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/Trezor.svg b/src/images/icons/Trezor.svg new file mode 100644 index 00000000..ae9eea91 --- /dev/null +++ b/src/images/icons/Trezor.svg @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Tribox.svg b/src/images/icons/Tribox.svg new file mode 100644 index 00000000..06888f3c --- /dev/null +++ b/src/images/icons/Tribox.svg @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/TridentAB.svg b/src/images/icons/TridentAB.svg new file mode 100644 index 00000000..946cf2c7 --- /dev/null +++ b/src/images/icons/TridentAB.svg @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/TripIt.svg b/src/images/icons/TripIt.svg new file mode 100644 index 00000000..e7d16e8a --- /dev/null +++ b/src/images/icons/TripIt.svg @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Tripleseat.svg b/src/images/icons/Tripleseat.svg new file mode 100644 index 00000000..d85dd1c3 --- /dev/null +++ b/src/images/icons/Tripleseat.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Triptease.svg b/src/images/icons/Triptease.svg new file mode 100644 index 00000000..af8c8e7b --- /dev/null +++ b/src/images/icons/Triptease.svg @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Trovit.svg b/src/images/icons/Trovit.svg new file mode 100644 index 00000000..3ee38103 --- /dev/null +++ b/src/images/icons/Trovit.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/images/icons/Trovo.svg b/src/images/icons/Trovo.svg new file mode 100644 index 00000000..623c7f63 --- /dev/null +++ b/src/images/icons/Trovo.svg @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Trumpia.svg b/src/images/icons/Trumpia.svg new file mode 100644 index 00000000..8bc33517 --- /dev/null +++ b/src/images/icons/Trumpia.svg @@ -0,0 +1,66 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/TrustLock.svg b/src/images/icons/TrustLock.svg new file mode 100644 index 00000000..d53ab86b --- /dev/null +++ b/src/images/icons/TrustLock.svg @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/TrustPulse.svg b/src/images/icons/TrustPulse.svg new file mode 100644 index 00000000..bd2ce230 --- /dev/null +++ b/src/images/icons/TrustPulse.svg @@ -0,0 +1,20 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Trustify.svg b/src/images/icons/Trustify.svg new file mode 100644 index 00000000..64564cde --- /dev/null +++ b/src/images/icons/Trustify.svg @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Trustio.svg b/src/images/icons/Trustio.svg new file mode 100644 index 00000000..284f4bea --- /dev/null +++ b/src/images/icons/Trustio.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Tryzens.svg b/src/images/icons/Tryzens.svg new file mode 100644 index 00000000..ebc068bf --- /dev/null +++ b/src/images/icons/Tryzens.svg @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/TuCalendi.svg b/src/images/icons/TuCalendi.svg new file mode 100644 index 00000000..3bf5b82c --- /dev/null +++ b/src/images/icons/TuCalendi.svg @@ -0,0 +1,20 @@ + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Turbopack.svg b/src/images/icons/Turbopack.svg new file mode 100644 index 00000000..07310009 --- /dev/null +++ b/src/images/icons/Turbopack.svg @@ -0,0 +1,46 @@ + + + + + + + + + + + + + diff --git a/src/images/icons/TuriTop.svg b/src/images/icons/TuriTop.svg new file mode 100644 index 00000000..40320b25 --- /dev/null +++ b/src/images/icons/TuriTop.svg @@ -0,0 +1,23 @@ + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/TutorLMS.svg b/src/images/icons/TutorLMS.svg new file mode 100644 index 00000000..93f47c11 --- /dev/null +++ b/src/images/icons/TutorLMS.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Twiago.svg b/src/images/icons/Twiago.svg new file mode 100644 index 00000000..4b585257 --- /dev/null +++ b/src/images/icons/Twiago.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/images/icons/Twingle.svg b/src/images/icons/Twingle.svg new file mode 100644 index 00000000..058e5bd7 --- /dev/null +++ b/src/images/icons/Twingle.svg @@ -0,0 +1,18 @@ + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Twitter.svg b/src/images/icons/Twitter.svg index dbd04420..04658bba 100644 --- a/src/images/icons/Twitter.svg +++ b/src/images/icons/Twitter.svg @@ -1 +1,3 @@ - \ No newline at end of file + + + diff --git a/src/images/icons/Twyne.svg b/src/images/icons/Twyne.svg new file mode 100644 index 00000000..76573d2a --- /dev/null +++ b/src/images/icons/Twyne.svg @@ -0,0 +1,162 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Typeflo.svg b/src/images/icons/Typeflo.svg new file mode 100644 index 00000000..9b8f6055 --- /dev/null +++ b/src/images/icons/Typeflo.svg @@ -0,0 +1,15 @@ + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Typesense.svg b/src/images/icons/Typesense.svg new file mode 100644 index 00000000..c742653a --- /dev/null +++ b/src/images/icons/Typesense.svg @@ -0,0 +1,127 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/images/icons/Typo00.svg b/src/images/icons/Typo00.svg new file mode 100644 index 00000000..9171bd8e --- /dev/null +++ b/src/images/icons/Typo00.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/UIAvenue.svg b/src/images/icons/UIAvenue.svg new file mode 100644 index 00000000..a962c35b --- /dev/null +++ b/src/images/icons/UIAvenue.svg @@ -0,0 +1,12 @@ + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/UMAI.svg b/src/images/icons/UMAI.svg new file mode 100644 index 00000000..9842bbb6 --- /dev/null +++ b/src/images/icons/UMAI.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/UltimateTables.svg b/src/images/icons/UltimateTables.svg new file mode 100644 index 00000000..a0df908e --- /dev/null +++ b/src/images/icons/UltimateTables.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Umni.svg b/src/images/icons/Umni.svg new file mode 100644 index 00000000..5b8eb5d3 --- /dev/null +++ b/src/images/icons/Umni.svg @@ -0,0 +1,23 @@ + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/UnchainedEngine.svg b/src/images/icons/UnchainedEngine.svg new file mode 100644 index 00000000..224b3164 --- /dev/null +++ b/src/images/icons/UnchainedEngine.svg @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Unipag.svg b/src/images/icons/Unipag.svg new file mode 100644 index 00000000..b40b78d7 --- /dev/null +++ b/src/images/icons/Unipag.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/UnitoHub.svg b/src/images/icons/UnitoHub.svg new file mode 100644 index 00000000..3f0cfc75 --- /dev/null +++ b/src/images/icons/UnitoHub.svg @@ -0,0 +1,138 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Unity.svg b/src/images/icons/Unity.svg new file mode 100644 index 00000000..6f75cb30 --- /dev/null +++ b/src/images/icons/Unity.svg @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/UniverseSoft.svg b/src/images/icons/UniverseSoft.svg new file mode 100644 index 00000000..7d37ac96 --- /dev/null +++ b/src/images/icons/UniverseSoft.svg @@ -0,0 +1,89 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Untree.svg b/src/images/icons/Untree.svg new file mode 100644 index 00000000..77d6c42d --- /dev/null +++ b/src/images/icons/Untree.svg @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/UpScale.svg b/src/images/icons/UpScale.svg new file mode 100644 index 00000000..5afc46c4 --- /dev/null +++ b/src/images/icons/UpScale.svg @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Uplifter.svg b/src/images/icons/Uplifter.svg new file mode 100644 index 00000000..ba1faf15 --- /dev/null +++ b/src/images/icons/Uplifter.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Uplisting.svg b/src/images/icons/Uplisting.svg new file mode 100644 index 00000000..c30508d6 --- /dev/null +++ b/src/images/icons/Uplisting.svg @@ -0,0 +1,19 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Uplynk.svg b/src/images/icons/Uplynk.svg new file mode 100644 index 00000000..c1a36bc3 --- /dev/null +++ b/src/images/icons/Uplynk.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/images/icons/Uppy.svg b/src/images/icons/Uppy.svg new file mode 100644 index 00000000..01904d8d --- /dev/null +++ b/src/images/icons/Uppy.svg @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Upscribe.svg b/src/images/icons/Upscribe.svg new file mode 100644 index 00000000..d25a79e3 --- /dev/null +++ b/src/images/icons/Upscribe.svg @@ -0,0 +1,12 @@ + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/UpsellPlus.svg b/src/images/icons/UpsellPlus.svg new file mode 100644 index 00000000..f5cd8c4c --- /dev/null +++ b/src/images/icons/UpsellPlus.svg @@ -0,0 +1,468 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/UpstackData.svg b/src/images/icons/UpstackData.svg new file mode 100644 index 00000000..bb355f06 --- /dev/null +++ b/src/images/icons/UpstackData.svg @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Upsy.svg b/src/images/icons/Upsy.svg new file mode 100644 index 00000000..1a5a9ac0 --- /dev/null +++ b/src/images/icons/Upsy.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Urllo.svg b/src/images/icons/Urllo.svg new file mode 100644 index 00000000..def0943b --- /dev/null +++ b/src/images/icons/Urllo.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/UseInbox.svg b/src/images/icons/UseInbox.svg new file mode 100644 index 00000000..32969232 --- /dev/null +++ b/src/images/icons/UseInbox.svg @@ -0,0 +1,131 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Userlane.svg b/src/images/icons/Userlane.svg new file mode 100644 index 00000000..edbef66b --- /dev/null +++ b/src/images/icons/Userlane.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/images/icons/Userlink.svg b/src/images/icons/Userlink.svg new file mode 100644 index 00000000..15222cd9 --- /dev/null +++ b/src/images/icons/Userlink.svg @@ -0,0 +1,9 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/Utiq.svg b/src/images/icons/Utiq.svg new file mode 100644 index 00000000..edfdc66f --- /dev/null +++ b/src/images/icons/Utiq.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/src/images/icons/VBMedia.svg b/src/images/icons/VBMedia.svg new file mode 100644 index 00000000..a107cebc --- /dev/null +++ b/src/images/icons/VBMedia.svg @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/VClasses.svg b/src/images/icons/VClasses.svg new file mode 100644 index 00000000..52015ee6 --- /dev/null +++ b/src/images/icons/VClasses.svg @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/VNNSports.svg b/src/images/icons/VNNSports.svg new file mode 100644 index 00000000..54e9b086 --- /dev/null +++ b/src/images/icons/VNNSports.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/VacationLabs.svg b/src/images/icons/VacationLabs.svg new file mode 100644 index 00000000..3a5ff0d3 --- /dev/null +++ b/src/images/icons/VacationLabs.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Valuad.svg b/src/images/icons/Valuad.svg new file mode 100644 index 00000000..026f1a13 --- /dev/null +++ b/src/images/icons/Valuad.svg @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Varify.svg b/src/images/icons/Varify.svg new file mode 100644 index 00000000..ace8b3be --- /dev/null +++ b/src/images/icons/Varify.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/Varos.svg b/src/images/icons/Varos.svg new file mode 100644 index 00000000..0975d38b --- /dev/null +++ b/src/images/icons/Varos.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Vaven.svg b/src/images/icons/Vaven.svg new file mode 100644 index 00000000..46f4823b --- /dev/null +++ b/src/images/icons/Vaven.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Velaro.svg b/src/images/icons/Velaro.svg new file mode 100644 index 00000000..4a431ee6 --- /dev/null +++ b/src/images/icons/Velaro.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Veloce.svg b/src/images/icons/Veloce.svg new file mode 100644 index 00000000..68e6f720 --- /dev/null +++ b/src/images/icons/Veloce.svg @@ -0,0 +1,17 @@ + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Vendaecia.svg b/src/images/icons/Vendaecia.svg new file mode 100644 index 00000000..ee99c36b --- /dev/null +++ b/src/images/icons/Vendaecia.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Venngage.svg b/src/images/icons/Venngage.svg new file mode 100644 index 00000000..aa093ef8 --- /dev/null +++ b/src/images/icons/Venngage.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/VentasxMayor.svg b/src/images/icons/VentasxMayor.svg new file mode 100644 index 00000000..71a0e395 --- /dev/null +++ b/src/images/icons/VentasxMayor.svg @@ -0,0 +1,12 @@ + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Veonr.svg b/src/images/icons/Veonr.svg new file mode 100644 index 00000000..7493cc27 --- /dev/null +++ b/src/images/icons/Veonr.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Veoxa.png b/src/images/icons/Veoxa.png deleted file mode 100644 index 9cc61203..00000000 Binary files a/src/images/icons/Veoxa.png and /dev/null differ diff --git a/src/images/icons/Veoxa.svg b/src/images/icons/Veoxa.svg new file mode 100644 index 00000000..7c45272a --- /dev/null +++ b/src/images/icons/Veoxa.svg @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/VeraSafe.svg b/src/images/icons/VeraSafe.svg new file mode 100644 index 00000000..482e19bb --- /dev/null +++ b/src/images/icons/VeraSafe.svg @@ -0,0 +1,237 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Verfacto.svg b/src/images/icons/Verfacto.svg new file mode 100644 index 00000000..7480db54 --- /dev/null +++ b/src/images/icons/Verfacto.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/VergeCloud.svg b/src/images/icons/VergeCloud.svg new file mode 100644 index 00000000..c01f4e4f --- /dev/null +++ b/src/images/icons/VergeCloud.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/VerifyPress.svg b/src/images/icons/VerifyPress.svg new file mode 100644 index 00000000..395ef84c --- /dev/null +++ b/src/images/icons/VerifyPress.svg @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/VersaTailor.svg b/src/images/icons/VersaTailor.svg new file mode 100644 index 00000000..75ebc82f --- /dev/null +++ b/src/images/icons/VersaTailor.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/ViArtShop.svg b/src/images/icons/ViArtShop.svg new file mode 100644 index 00000000..c37a7e05 --- /dev/null +++ b/src/images/icons/ViArtShop.svg @@ -0,0 +1,18 @@ + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/VideooTv.svg b/src/images/icons/VideooTv.svg new file mode 100644 index 00000000..f42e914d --- /dev/null +++ b/src/images/icons/VideooTv.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Vidjet.svg b/src/images/icons/Vidjet.svg new file mode 100644 index 00000000..6c98ed0d --- /dev/null +++ b/src/images/icons/Vidjet.svg @@ -0,0 +1,174 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Vidscrip.svg b/src/images/icons/Vidscrip.svg new file mode 100644 index 00000000..656676ac --- /dev/null +++ b/src/images/icons/Vidscrip.svg @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Vikreta.svg b/src/images/icons/Vikreta.svg new file mode 100644 index 00000000..49623db7 --- /dev/null +++ b/src/images/icons/Vikreta.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/images/icons/Viloud.svg b/src/images/icons/Viloud.svg new file mode 100644 index 00000000..2f95d168 --- /dev/null +++ b/src/images/icons/Viloud.svg @@ -0,0 +1,24 @@ + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Vimos.svg b/src/images/icons/Vimos.svg new file mode 100644 index 00000000..7b089fe7 --- /dev/null +++ b/src/images/icons/Vimos.svg @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Vincere.svg b/src/images/icons/Vincere.svg new file mode 100644 index 00000000..7ba5bbd3 --- /dev/null +++ b/src/images/icons/Vincere.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Visenze.svg b/src/images/icons/Visenze.svg new file mode 100644 index 00000000..d44eb3ce --- /dev/null +++ b/src/images/icons/Visenze.svg @@ -0,0 +1,19 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Visitor.svg b/src/images/icons/Visitor.svg new file mode 100644 index 00000000..e1537f02 --- /dev/null +++ b/src/images/icons/Visitor.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/images/icons/Viskan.svg b/src/images/icons/Viskan.svg new file mode 100644 index 00000000..5499cb1b --- /dev/null +++ b/src/images/icons/Viskan.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/VocalReferences.svg b/src/images/icons/VocalReferences.svg new file mode 100644 index 00000000..5c4b01d5 --- /dev/null +++ b/src/images/icons/VocalReferences.svg @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/VoiceIntuitive.svg b/src/images/icons/VoiceIntuitive.svg new file mode 100644 index 00000000..22c60137 --- /dev/null +++ b/src/images/icons/VoiceIntuitive.svg @@ -0,0 +1,122 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Volley.svg b/src/images/icons/Volley.svg new file mode 100644 index 00000000..c10e0ff7 --- /dev/null +++ b/src/images/icons/Volley.svg @@ -0,0 +1,19 @@ + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Voltage.svg b/src/images/icons/Voltage.svg new file mode 100644 index 00000000..7717bd03 --- /dev/null +++ b/src/images/icons/Voltage.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Vondera.svg b/src/images/icons/Vondera.svg new file mode 100644 index 00000000..167b777c --- /dev/null +++ b/src/images/icons/Vondera.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Voomly.svg b/src/images/icons/Voomly.svg new file mode 100644 index 00000000..19e37951 --- /dev/null +++ b/src/images/icons/Voomly.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/Vouched.svg b/src/images/icons/Vouched.svg new file mode 100644 index 00000000..01f1287f --- /dev/null +++ b/src/images/icons/Vouched.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Voximplant.svg b/src/images/icons/Voximplant.svg new file mode 100644 index 00000000..f9059441 --- /dev/null +++ b/src/images/icons/Voximplant.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Vrio.svg b/src/images/icons/Vrio.svg new file mode 100644 index 00000000..34e783f4 --- /dev/null +++ b/src/images/icons/Vrio.svg @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Vuture.svg b/src/images/icons/Vuture.svg new file mode 100644 index 00000000..46a852f7 --- /dev/null +++ b/src/images/icons/Vuture.svg @@ -0,0 +1,28 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Vyper.svg b/src/images/icons/Vyper.svg new file mode 100644 index 00000000..b29e48bc --- /dev/null +++ b/src/images/icons/Vyper.svg @@ -0,0 +1,9 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/Vyve.svg b/src/images/icons/Vyve.svg new file mode 100644 index 00000000..48ad87ec --- /dev/null +++ b/src/images/icons/Vyve.svg @@ -0,0 +1,120 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/WARPE.svg b/src/images/icons/WARPE.svg new file mode 100644 index 00000000..27ca85db --- /dev/null +++ b/src/images/icons/WARPE.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/WOMO.svg b/src/images/icons/WOMO.svg new file mode 100644 index 00000000..3be7b514 --- /dev/null +++ b/src/images/icons/WOMO.svg @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/WORKetc.svg b/src/images/icons/WORKetc.svg new file mode 100644 index 00000000..0d1906e8 --- /dev/null +++ b/src/images/icons/WORKetc.svg @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/images/icons/WPProjectManager.svg b/src/images/icons/WPProjectManager.svg new file mode 100644 index 00000000..c4a9d9e9 --- /dev/null +++ b/src/images/icons/WPProjectManager.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/WSHOP.svg b/src/images/icons/WSHOP.svg new file mode 100644 index 00000000..9a4f609b --- /dev/null +++ b/src/images/icons/WSHOP.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/WWPass.svg b/src/images/icons/WWPass.svg new file mode 100644 index 00000000..83934b7b --- /dev/null +++ b/src/images/icons/WWPass.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/src/images/icons/Waaship.svg b/src/images/icons/Waaship.svg new file mode 100644 index 00000000..6ea478d6 --- /dev/null +++ b/src/images/icons/Waaship.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Walla.svg b/src/images/icons/Walla.svg new file mode 100644 index 00000000..fae10dbf --- /dev/null +++ b/src/images/icons/Walla.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/Wally.svg b/src/images/icons/Wally.svg new file mode 100644 index 00000000..7d81c0e7 --- /dev/null +++ b/src/images/icons/Wally.svg @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/WarmWelcome.svg b/src/images/icons/WarmWelcome.svg new file mode 100644 index 00000000..2420492b --- /dev/null +++ b/src/images/icons/WarmWelcome.svg @@ -0,0 +1,235 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Warmly.svg b/src/images/icons/Warmly.svg new file mode 100644 index 00000000..f021ea05 --- /dev/null +++ b/src/images/icons/Warmly.svg @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Warply.svg b/src/images/icons/Warply.svg new file mode 100644 index 00000000..55055798 --- /dev/null +++ b/src/images/icons/Warply.svg @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/WasteConnections.svg b/src/images/icons/WasteConnections.svg new file mode 100644 index 00000000..3f5b2ba3 --- /dev/null +++ b/src/images/icons/WasteConnections.svg @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/WaveCommerce.svg b/src/images/icons/WaveCommerce.svg new file mode 100644 index 00000000..b16d6ec4 --- /dev/null +++ b/src/images/icons/WaveCommerce.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/WeBlocks.svg b/src/images/icons/WeBlocks.svg new file mode 100644 index 00000000..07ae4b6c --- /dev/null +++ b/src/images/icons/WeBlocks.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Weatherstack.svg b/src/images/icons/Weatherstack.svg new file mode 100644 index 00000000..06b3405c --- /dev/null +++ b/src/images/icons/Weatherstack.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/Web4Realty.svg b/src/images/icons/Web4Realty.svg new file mode 100644 index 00000000..3e3c7f25 --- /dev/null +++ b/src/images/icons/Web4Realty.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/WebBoss.svg b/src/images/icons/WebBoss.svg new file mode 100644 index 00000000..0b0d884a --- /dev/null +++ b/src/images/icons/WebBoss.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/WebCEO.svg b/src/images/icons/WebCEO.svg new file mode 100644 index 00000000..c2da12a2 --- /dev/null +++ b/src/images/icons/WebCEO.svg @@ -0,0 +1,17 @@ + + + + + + + \ No newline at end of file diff --git a/src/images/icons/WebQnA.svg b/src/images/icons/WebQnA.svg new file mode 100644 index 00000000..a1ca4e86 --- /dev/null +++ b/src/images/icons/WebQnA.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/WebSTAT.svg b/src/images/icons/WebSTAT.svg new file mode 100644 index 00000000..4cff3d64 --- /dev/null +++ b/src/images/icons/WebSTAT.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/WebWave.svg b/src/images/icons/WebWave.svg index 418602ef..d6eca496 100644 --- a/src/images/icons/WebWave.svg +++ b/src/images/icons/WebWave.svg @@ -1,18 +1,6 @@ - - - - - - - + + + + + diff --git a/src/images/icons/Webareal.svg b/src/images/icons/Webareal.svg new file mode 100644 index 00000000..7c0251f2 --- /dev/null +++ b/src/images/icons/Webareal.svg @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Webbotify.svg b/src/images/icons/Webbotify.svg new file mode 100644 index 00000000..48a8ec6f --- /dev/null +++ b/src/images/icons/Webbotify.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Webcake.svg b/src/images/icons/Webcake.svg new file mode 100644 index 00000000..d90eefb8 --- /dev/null +++ b/src/images/icons/Webcake.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/WebcoolCMS.svg b/src/images/icons/WebcoolCMS.svg new file mode 100644 index 00000000..a7367757 --- /dev/null +++ b/src/images/icons/WebcoolCMS.svg @@ -0,0 +1,237 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Webestools.svg b/src/images/icons/Webestools.svg new file mode 100644 index 00000000..7154fcb0 --- /dev/null +++ b/src/images/icons/Webestools.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/Webhealer.svg b/src/images/icons/Webhealer.svg new file mode 100644 index 00000000..21f1452a --- /dev/null +++ b/src/images/icons/Webhealer.svg @@ -0,0 +1,14 @@ + + + + + + \ No newline at end of file diff --git a/src/images/icons/Webinaris.svg b/src/images/icons/Webinaris.svg new file mode 100644 index 00000000..ad2045c0 --- /dev/null +++ b/src/images/icons/Webinaris.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Webinato.svg b/src/images/icons/Webinato.svg new file mode 100644 index 00000000..42e9c4d6 --- /dev/null +++ b/src/images/icons/Webinato.svg @@ -0,0 +1,14 @@ + + + + + + \ No newline at end of file diff --git a/src/images/icons/Webito.svg b/src/images/icons/Webito.svg new file mode 100644 index 00000000..ec09ea0b --- /dev/null +++ b/src/images/icons/Webito.svg @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Webotit.svg b/src/images/icons/Webotit.svg new file mode 100644 index 00000000..ee26be45 --- /dev/null +++ b/src/images/icons/Webotit.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Webready.svg b/src/images/icons/Webready.svg new file mode 100644 index 00000000..9e13f6c1 --- /dev/null +++ b/src/images/icons/Webready.svg @@ -0,0 +1,23 @@ + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Webreed.svg b/src/images/icons/Webreed.svg new file mode 100644 index 00000000..9e65fe2f --- /dev/null +++ b/src/images/icons/Webreed.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Webscribble.svg b/src/images/icons/Webscribble.svg new file mode 100644 index 00000000..a6bc7e87 --- /dev/null +++ b/src/images/icons/Webscribble.svg @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/WebsiteSpeedy.svg b/src/images/icons/WebsiteSpeedy.svg new file mode 100644 index 00000000..0aafc444 --- /dev/null +++ b/src/images/icons/WebsiteSpeedy.svg @@ -0,0 +1,225 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Webstudio.svg b/src/images/icons/Webstudio.svg new file mode 100644 index 00000000..e2604380 --- /dev/null +++ b/src/images/icons/Webstudio.svg @@ -0,0 +1,174 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Webware.svg b/src/images/icons/Webware.svg new file mode 100644 index 00000000..4737b15c --- /dev/null +++ b/src/images/icons/Webware.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/Webydo.svg b/src/images/icons/Webydo.svg new file mode 100644 index 00000000..6a943021 --- /dev/null +++ b/src/images/icons/Webydo.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/src/images/icons/WeeBnB.svg b/src/images/icons/WeeBnB.svg new file mode 100644 index 00000000..e0571589 --- /dev/null +++ b/src/images/icons/WeeBnB.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Weekdone.svg b/src/images/icons/Weekdone.svg new file mode 100644 index 00000000..c84960ea --- /dev/null +++ b/src/images/icons/Weekdone.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/images/icons/Weezbe.svg b/src/images/icons/Weezbe.svg new file mode 100644 index 00000000..257a932c --- /dev/null +++ b/src/images/icons/Weezbe.svg @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Wfolio.svg b/src/images/icons/Wfolio.svg new file mode 100644 index 00000000..c47bec83 --- /dev/null +++ b/src/images/icons/Wfolio.svg @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/WheelOfPopups.svg b/src/images/icons/WheelOfPopups.svg new file mode 100644 index 00000000..c4bb8425 --- /dev/null +++ b/src/images/icons/WheelOfPopups.svg @@ -0,0 +1,165 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/images/icons/WheelSales.svg b/src/images/icons/WheelSales.svg new file mode 100644 index 00000000..a3c9fce7 --- /dev/null +++ b/src/images/icons/WheelSales.svg @@ -0,0 +1,114 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Wherewolf.svg b/src/images/icons/Wherewolf.svg new file mode 100644 index 00000000..3261d6be --- /dev/null +++ b/src/images/icons/Wherewolf.svg @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/WhitelabelMD.svg b/src/images/icons/WhitelabelMD.svg new file mode 100644 index 00000000..980f6207 --- /dev/null +++ b/src/images/icons/WhitelabelMD.svg @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Whitespark.svg b/src/images/icons/Whitespark.svg new file mode 100644 index 00000000..0060e195 --- /dev/null +++ b/src/images/icons/Whitespark.svg @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Whova.svg b/src/images/icons/Whova.svg new file mode 100644 index 00000000..13dffd5a --- /dev/null +++ b/src/images/icons/Whova.svg @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/images/icons/WickedReports.svg b/src/images/icons/WickedReports.svg new file mode 100644 index 00000000..14ebc54b --- /dev/null +++ b/src/images/icons/WickedReports.svg @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/images/icons/Widde.svg b/src/images/icons/Widde.svg new file mode 100644 index 00000000..4cdec57f --- /dev/null +++ b/src/images/icons/Widde.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/src/images/icons/Wikit.svg b/src/images/icons/Wikit.svg new file mode 100644 index 00000000..7dae1ea1 --- /dev/null +++ b/src/images/icons/Wikit.svg @@ -0,0 +1,32 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/WineAround.svg b/src/images/icons/WineAround.svg new file mode 100644 index 00000000..800f0483 --- /dev/null +++ b/src/images/icons/WineAround.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/src/images/icons/WinseCommerce.svg b/src/images/icons/WinseCommerce.svg new file mode 100644 index 00000000..f4167b8d --- /dev/null +++ b/src/images/icons/WinseCommerce.svg @@ -0,0 +1,26 @@ + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Wiqhit.svg b/src/images/icons/Wiqhit.svg new file mode 100644 index 00000000..1028629a --- /dev/null +++ b/src/images/icons/Wiqhit.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/Wiremo.svg b/src/images/icons/Wiremo.svg new file mode 100644 index 00000000..c43516be --- /dev/null +++ b/src/images/icons/Wiremo.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/images/icons/WiseAgent.svg b/src/images/icons/WiseAgent.svg new file mode 100644 index 00000000..5e4fa4f6 --- /dev/null +++ b/src/images/icons/WiseAgent.svg @@ -0,0 +1,14 @@ + + + + + + \ No newline at end of file diff --git a/src/images/icons/Wisetracker.svg b/src/images/icons/Wisetracker.svg new file mode 100644 index 00000000..f545351e --- /dev/null +++ b/src/images/icons/Wisetracker.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Wishi.svg b/src/images/icons/Wishi.svg new file mode 100644 index 00000000..20c72f3c --- /dev/null +++ b/src/images/icons/Wishi.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Witbooking.svg b/src/images/icons/Witbooking.svg new file mode 100644 index 00000000..2b207480 --- /dev/null +++ b/src/images/icons/Witbooking.svg @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Wodify.svg b/src/images/icons/Wodify.svg new file mode 100644 index 00000000..22793190 --- /dev/null +++ b/src/images/icons/Wodify.svg @@ -0,0 +1,26 @@ + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Wolf CMS.png b/src/images/icons/Wolf CMS.png index 67815a97..781b92e2 100644 Binary files a/src/images/icons/Wolf CMS.png and b/src/images/icons/Wolf CMS.png differ diff --git a/src/images/icons/WoltersKluwer.svg b/src/images/icons/WoltersKluwer.svg new file mode 100644 index 00000000..703a5ddd --- /dev/null +++ b/src/images/icons/WoltersKluwer.svg @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Woorise.svg b/src/images/icons/Woorise.svg new file mode 100644 index 00000000..4d6962dd --- /dev/null +++ b/src/images/icons/Woorise.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Wootric.svg b/src/images/icons/Wootric.svg new file mode 100644 index 00000000..ae30e263 --- /dev/null +++ b/src/images/icons/Wootric.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/Workadu.svg b/src/images/icons/Workadu.svg new file mode 100644 index 00000000..7bbfb410 --- /dev/null +++ b/src/images/icons/Workadu.svg @@ -0,0 +1,14 @@ + + + + + + \ No newline at end of file diff --git a/src/images/icons/Workbooks.svg b/src/images/icons/Workbooks.svg new file mode 100644 index 00000000..b521f169 --- /dev/null +++ b/src/images/icons/Workbooks.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Workday.svg b/src/images/icons/Workday.svg new file mode 100644 index 00000000..73c0ee41 --- /dev/null +++ b/src/images/icons/Workday.svg @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/WuBook.svg b/src/images/icons/WuBook.svg new file mode 100644 index 00000000..d51ca1e2 --- /dev/null +++ b/src/images/icons/WuBook.svg @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Xenioo.svg b/src/images/icons/Xenioo.svg new file mode 100644 index 00000000..1b0f2f4b --- /dev/null +++ b/src/images/icons/Xenioo.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Xeno.svg b/src/images/icons/Xeno.svg new file mode 100644 index 00000000..7f98fe8e --- /dev/null +++ b/src/images/icons/Xeno.svg @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Xsolla.svg b/src/images/icons/Xsolla.svg new file mode 100644 index 00000000..7a7c0785 --- /dev/null +++ b/src/images/icons/Xsolla.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Xtremepush.svg b/src/images/icons/Xtremepush.svg old mode 100755 new mode 100644 diff --git a/src/images/icons/XtrixUI.svg b/src/images/icons/XtrixUI.svg new file mode 100644 index 00000000..143e8d11 --- /dev/null +++ b/src/images/icons/XtrixUI.svg @@ -0,0 +1,282 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Xverify.svg b/src/images/icons/Xverify.svg new file mode 100644 index 00000000..4780d429 --- /dev/null +++ b/src/images/icons/Xverify.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/XzeroJS.svg b/src/images/icons/XzeroJS.svg new file mode 100644 index 00000000..2a27d13c --- /dev/null +++ b/src/images/icons/XzeroJS.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/YMCart.svg b/src/images/icons/YMCart.svg new file mode 100644 index 00000000..48c1e63a --- /dev/null +++ b/src/images/icons/YMCart.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/YOAPress.svg b/src/images/icons/YOAPress.svg new file mode 100644 index 00000000..7bd162d0 --- /dev/null +++ b/src/images/icons/YOAPress.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/YachtSys.svg b/src/images/icons/YachtSys.svg new file mode 100644 index 00000000..04f11944 --- /dev/null +++ b/src/images/icons/YachtSys.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/YamadaUI.svg b/src/images/icons/YamadaUI.svg new file mode 100644 index 00000000..179eac09 --- /dev/null +++ b/src/images/icons/YamadaUI.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/YayForms.svg b/src/images/icons/YayForms.svg new file mode 100644 index 00000000..ea70c6ec --- /dev/null +++ b/src/images/icons/YayForms.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Yever.svg b/src/images/icons/Yever.svg new file mode 100644 index 00000000..9066fc95 --- /dev/null +++ b/src/images/icons/Yever.svg @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Yo!Coach.svg b/src/images/icons/Yo!Coach.svg new file mode 100644 index 00000000..959061d5 --- /dev/null +++ b/src/images/icons/Yo!Coach.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/YoPlanning.svg b/src/images/icons/YoPlanning.svg new file mode 100644 index 00000000..9201edf5 --- /dev/null +++ b/src/images/icons/YoPlanning.svg @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/YogaTrail.svg b/src/images/icons/YogaTrail.svg new file mode 100644 index 00000000..b099e31a --- /dev/null +++ b/src/images/icons/YogaTrail.svg @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/images/icons/Youzan.svg b/src/images/icons/Youzan.svg new file mode 100644 index 00000000..bbbf64cf --- /dev/null +++ b/src/images/icons/Youzan.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Yuno.svg b/src/images/icons/Yuno.svg new file mode 100644 index 00000000..82d38c1b --- /dev/null +++ b/src/images/icons/Yuno.svg @@ -0,0 +1,118 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Yupop.svg b/src/images/icons/Yupop.svg new file mode 100644 index 00000000..d6b0c1c4 --- /dev/null +++ b/src/images/icons/Yupop.svg @@ -0,0 +1,17 @@ + + + + + + + \ No newline at end of file diff --git a/src/images/icons/ZURB Foundation.png b/src/images/icons/ZURB Foundation.png deleted file mode 100644 index 700895b6..00000000 Binary files a/src/images/icons/ZURB Foundation.png and /dev/null differ diff --git a/src/images/icons/ZURBFoundation.svg b/src/images/icons/ZURBFoundation.svg new file mode 100644 index 00000000..c78df20c --- /dev/null +++ b/src/images/icons/ZURBFoundation.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Zalify.svg b/src/images/icons/Zalify.svg new file mode 100644 index 00000000..7d71b4c0 --- /dev/null +++ b/src/images/icons/Zalify.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Zarla.svg b/src/images/icons/Zarla.svg new file mode 100644 index 00000000..ec0f4010 --- /dev/null +++ b/src/images/icons/Zarla.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/Zaxaa.svg b/src/images/icons/Zaxaa.svg new file mode 100644 index 00000000..7038a0a0 --- /dev/null +++ b/src/images/icons/Zaxaa.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/ZeeMaps.svg b/src/images/icons/ZeeMaps.svg new file mode 100644 index 00000000..f22b0f7f --- /dev/null +++ b/src/images/icons/ZeeMaps.svg @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/ZenMaid.svg b/src/images/icons/ZenMaid.svg new file mode 100644 index 00000000..35eda100 --- /dev/null +++ b/src/images/icons/ZenMaid.svg @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Zenbooker.svg b/src/images/icons/Zenbooker.svg new file mode 100644 index 00000000..8208fc0d --- /dev/null +++ b/src/images/icons/Zenbooker.svg @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/ZendApps.svg b/src/images/icons/ZendApps.svg new file mode 100644 index 00000000..e07cf708 --- /dev/null +++ b/src/images/icons/ZendApps.svg @@ -0,0 +1,107 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Zenler.svg b/src/images/icons/Zenler.svg new file mode 100644 index 00000000..9fbaa5a1 --- /dev/null +++ b/src/images/icons/Zenler.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/Zenoti.svg b/src/images/icons/Zenoti.svg new file mode 100644 index 00000000..df53871e --- /dev/null +++ b/src/images/icons/Zenoti.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Zenrez.svg b/src/images/icons/Zenrez.svg new file mode 100644 index 00000000..af476d1f --- /dev/null +++ b/src/images/icons/Zenrez.svg @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Zentap.svg b/src/images/icons/Zentap.svg new file mode 100644 index 00000000..c33a2090 --- /dev/null +++ b/src/images/icons/Zentap.svg @@ -0,0 +1,12 @@ + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Zenu.svg b/src/images/icons/Zenu.svg new file mode 100644 index 00000000..049fe7ad --- /dev/null +++ b/src/images/icons/Zenu.svg @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Zenvia.svg b/src/images/icons/Zenvia.svg new file mode 100644 index 00000000..626c8f02 --- /dev/null +++ b/src/images/icons/Zenvia.svg @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Zenzzen.svg b/src/images/icons/Zenzzen.svg new file mode 100644 index 00000000..dde60382 --- /dev/null +++ b/src/images/icons/Zenzzen.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/Zepio.svg b/src/images/icons/Zepio.svg new file mode 100644 index 00000000..4fe643db --- /dev/null +++ b/src/images/icons/Zepio.svg @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Zeppelin.svg b/src/images/icons/Zeppelin.svg new file mode 100644 index 00000000..06ca0d0a --- /dev/null +++ b/src/images/icons/Zeppelin.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Zestard.svg b/src/images/icons/Zestard.svg new file mode 100644 index 00000000..f0f3563b --- /dev/null +++ b/src/images/icons/Zestard.svg @@ -0,0 +1,26 @@ + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/ZetaProducer.svg b/src/images/icons/ZetaProducer.svg new file mode 100644 index 00000000..0acedd4d --- /dev/null +++ b/src/images/icons/ZetaProducer.svg @@ -0,0 +1,13 @@ + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Zevi.svg b/src/images/icons/Zevi.svg new file mode 100644 index 00000000..e003ab59 --- /dev/null +++ b/src/images/icons/Zevi.svg @@ -0,0 +1,386 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Ziadah.svg b/src/images/icons/Ziadah.svg new file mode 100644 index 00000000..7b5f5e1f --- /dev/null +++ b/src/images/icons/Ziadah.svg @@ -0,0 +1,102 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Zieny.svg b/src/images/icons/Zieny.svg new file mode 100644 index 00000000..2cc982fa --- /dev/null +++ b/src/images/icons/Zieny.svg @@ -0,0 +1,14 @@ + + + + + + \ No newline at end of file diff --git a/src/images/icons/ZipWP.svg b/src/images/icons/ZipWP.svg new file mode 100644 index 00000000..93cee7cc --- /dev/null +++ b/src/images/icons/ZipWP.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/Zipchat.svg b/src/images/icons/Zipchat.svg new file mode 100644 index 00000000..e34e8b88 --- /dev/null +++ b/src/images/icons/Zipchat.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/ZolaPlanner.svg b/src/images/icons/ZolaPlanner.svg new file mode 100644 index 00000000..1183af34 --- /dev/null +++ b/src/images/icons/ZolaPlanner.svg @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Zonal.svg b/src/images/icons/Zonal.svg new file mode 100644 index 00000000..d97c9d81 --- /dev/null +++ b/src/images/icons/Zonal.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/images/icons/Zurple.svg b/src/images/icons/Zurple.svg new file mode 100644 index 00000000..e21fe604 --- /dev/null +++ b/src/images/icons/Zurple.svg @@ -0,0 +1,120 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/aScEduPage.svg b/src/images/icons/aScEduPage.svg new file mode 100644 index 00000000..cd18b2bd --- /dev/null +++ b/src/images/icons/aScEduPage.svg @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/adCAPTCHA.svg b/src/images/icons/adCAPTCHA.svg new file mode 100644 index 00000000..c9b27486 --- /dev/null +++ b/src/images/icons/adCAPTCHA.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/aircall.png b/src/images/icons/aircall.png deleted file mode 100644 index de76b397..00000000 Binary files a/src/images/icons/aircall.png and /dev/null differ diff --git a/src/images/icons/akinon.png b/src/images/icons/akinon.png deleted file mode 100644 index 18a47843..00000000 Binary files a/src/images/icons/akinon.png and /dev/null differ diff --git a/src/images/icons/authorizedby.svg b/src/images/icons/authorizedby.svg new file mode 100644 index 00000000..4abf3f92 --- /dev/null +++ b/src/images/icons/authorizedby.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/bbPress.svg b/src/images/icons/bbPress.svg new file mode 100644 index 00000000..e39ebfc9 --- /dev/null +++ b/src/images/icons/bbPress.svg @@ -0,0 +1,23 @@ + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/biskoui.svg b/src/images/icons/biskoui.svg new file mode 100644 index 00000000..526be09d --- /dev/null +++ b/src/images/icons/biskoui.svg @@ -0,0 +1,27 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/bluebarry.svg b/src/images/icons/bluebarry.svg new file mode 100644 index 00000000..a5a1d8a2 --- /dev/null +++ b/src/images/icons/bluebarry.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/boomtime.svg b/src/images/icons/boomtime.svg new file mode 100644 index 00000000..c4ea5773 --- /dev/null +++ b/src/images/icons/boomtime.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/botBrains.svg b/src/images/icons/botBrains.svg new file mode 100644 index 00000000..bc43e80f --- /dev/null +++ b/src/images/icons/botBrains.svg @@ -0,0 +1,15 @@ + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/c15t.svg b/src/images/icons/c15t.svg new file mode 100644 index 00000000..1da5207d --- /dev/null +++ b/src/images/icons/c15t.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/coUrbanize.svg b/src/images/icons/coUrbanize.svg new file mode 100644 index 00000000..47d42f23 --- /dev/null +++ b/src/images/icons/coUrbanize.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/cside.svg b/src/images/icons/cside.svg new file mode 100644 index 00000000..77eb17d9 --- /dev/null +++ b/src/images/icons/cside.svg @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/demandbase.svg b/src/images/icons/demandbase.svg index 1389b30e..4a196c8b 100644 --- a/src/images/icons/demandbase.svg +++ b/src/images/icons/demandbase.svg @@ -1,10 +1,16 @@ - - - - - - - - - + + + + + + + + + + + + + + + diff --git a/src/images/icons/dominant-color-images.svg b/src/images/icons/dominant-color-images.svg new file mode 100644 index 00000000..922019a5 --- /dev/null +++ b/src/images/icons/dominant-color-images.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/images/icons/eCShop.svg b/src/images/icons/eCShop.svg new file mode 100644 index 00000000..1c7c0361 --- /dev/null +++ b/src/images/icons/eCShop.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/src/images/icons/eChalk.svg b/src/images/icons/eChalk.svg new file mode 100644 index 00000000..a3af576f --- /dev/null +++ b/src/images/icons/eChalk.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/eComchain.svg b/src/images/icons/eComchain.svg new file mode 100644 index 00000000..24e1e87b --- /dev/null +++ b/src/images/icons/eComchain.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/eDirectory.svg b/src/images/icons/eDirectory.svg new file mode 100644 index 00000000..feba0706 --- /dev/null +++ b/src/images/icons/eDirectory.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/ePublishing.svg b/src/images/icons/ePublishing.svg new file mode 100644 index 00000000..a3d3008f --- /dev/null +++ b/src/images/icons/ePublishing.svg @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/eTrigue.svg b/src/images/icons/eTrigue.svg new file mode 100644 index 00000000..fa2e344d --- /dev/null +++ b/src/images/icons/eTrigue.svg @@ -0,0 +1,21 @@ + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/embed-optimizer.svg b/src/images/icons/embed-optimizer.svg new file mode 100644 index 00000000..fd1c9ba2 --- /dev/null +++ b/src/images/icons/embed-optimizer.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/images/icons/enhanced-image-sizes.svg b/src/images/icons/enhanced-image-sizes.svg new file mode 100644 index 00000000..b74a90c8 --- /dev/null +++ b/src/images/icons/enhanced-image-sizes.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/images/icons/essential-blocks.png b/src/images/icons/essential-blocks.png new file mode 100644 index 00000000..5e37b2ed Binary files /dev/null and b/src/images/icons/essential-blocks.png differ diff --git a/src/images/icons/ewizcommerce.svg b/src/images/icons/ewizcommerce.svg new file mode 100644 index 00000000..5872bdc4 --- /dev/null +++ b/src/images/icons/ewizcommerce.svg @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/fraudblocker.png b/src/images/icons/fraudblocker.png deleted file mode 100644 index bbfb5f06..00000000 Binary files a/src/images/icons/fraudblocker.png and /dev/null differ diff --git a/src/images/icons/genesis-blocks.png b/src/images/icons/genesis-blocks.png new file mode 100644 index 00000000..25801de7 Binary files /dev/null and b/src/images/icons/genesis-blocks.png differ diff --git a/src/images/icons/iCIMS.svg b/src/images/icons/iCIMS.svg new file mode 100644 index 00000000..49b30163 --- /dev/null +++ b/src/images/icons/iCIMS.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/iClosed.svg b/src/images/icons/iClosed.svg new file mode 100644 index 00000000..3949e689 --- /dev/null +++ b/src/images/icons/iClosed.svg @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/iEntry.svg b/src/images/icons/iEntry.svg new file mode 100644 index 00000000..7bd2dbcf --- /dev/null +++ b/src/images/icons/iEntry.svg @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/iPaper.svg b/src/images/icons/iPaper.svg new file mode 100644 index 00000000..c9870cb1 --- /dev/null +++ b/src/images/icons/iPaper.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/iRaiser.svg b/src/images/icons/iRaiser.svg new file mode 100644 index 00000000..ba9f5dc7 --- /dev/null +++ b/src/images/icons/iRaiser.svg @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/iSET.svg b/src/images/icons/iSET.svg new file mode 100644 index 00000000..1dfd8c20 --- /dev/null +++ b/src/images/icons/iSET.svg @@ -0,0 +1,12 @@ + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/iWink.svg b/src/images/icons/iWink.svg new file mode 100644 index 00000000..7c1b676b --- /dev/null +++ b/src/images/icons/iWink.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/src/images/icons/icomm.svg b/src/images/icons/icomm.svg new file mode 100644 index 00000000..caa2a3ef --- /dev/null +++ b/src/images/icons/icomm.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/iiQCheck.svg b/src/images/icons/iiQCheck.svg new file mode 100644 index 00000000..1c6474bd --- /dev/null +++ b/src/images/icons/iiQCheck.svg @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/image-prioritizer.svg b/src/images/icons/image-prioritizer.svg new file mode 100644 index 00000000..69e7407e --- /dev/null +++ b/src/images/icons/image-prioritizer.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/images/icons/immediaCMS.svg b/src/images/icons/immediaCMS.svg new file mode 100644 index 00000000..18066261 --- /dev/null +++ b/src/images/icons/immediaCMS.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/inspectlet.png b/src/images/icons/inspectlet.png deleted file mode 100644 index 96cd2155..00000000 Binary files a/src/images/icons/inspectlet.png and /dev/null differ diff --git a/src/images/icons/iugu.svg b/src/images/icons/iugu.svg new file mode 100644 index 00000000..370de51b --- /dev/null +++ b/src/images/icons/iugu.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/src/images/icons/jsPDF.svg b/src/images/icons/jsPDF.svg new file mode 100644 index 00000000..5ec6f04d --- /dev/null +++ b/src/images/icons/jsPDF.svg @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/miniCal.svg b/src/images/icons/miniCal.svg new file mode 100644 index 00000000..dc6ad989 --- /dev/null +++ b/src/images/icons/miniCal.svg @@ -0,0 +1,26 @@ + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/modern-image-formats.svg b/src/images/icons/modern-image-formats.svg new file mode 100644 index 00000000..44c0b659 --- /dev/null +++ b/src/images/icons/modern-image-formats.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/images/icons/nopCommerce.png b/src/images/icons/nopCommerce.png deleted file mode 100644 index f010de06..00000000 Binary files a/src/images/icons/nopCommerce.png and /dev/null differ diff --git a/src/images/icons/nopCommerce.svg b/src/images/icons/nopCommerce.svg new file mode 100644 index 00000000..ae128df5 --- /dev/null +++ b/src/images/icons/nopCommerce.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/optimization-detective.svg b/src/images/icons/optimization-detective.svg new file mode 100644 index 00000000..597b2599 --- /dev/null +++ b/src/images/icons/optimization-detective.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/images/icons/ostr.svg b/src/images/icons/ostr.svg new file mode 100644 index 00000000..4bf9c006 --- /dev/null +++ b/src/images/icons/ostr.svg @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/otter-blocks.png b/src/images/icons/otter-blocks.png new file mode 100644 index 00000000..52076ebd Binary files /dev/null and b/src/images/icons/otter-blocks.png differ diff --git a/src/images/icons/p5.js.svg b/src/images/icons/p5.js.svg index 8aa73b81..49949696 100644 --- a/src/images/icons/p5.js.svg +++ b/src/images/icons/p5.js.svg @@ -1,17 +1,3 @@ - - - - - - - + + diff --git a/src/images/icons/performant-translations.svg b/src/images/icons/performant-translations.svg new file mode 100644 index 00000000..6f7a5509 --- /dev/null +++ b/src/images/icons/performant-translations.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/images/icons/plentyShop LTS.svg b/src/images/icons/plentyShop LTS.svg deleted file mode 100644 index e3bcd809..00000000 --- a/src/images/icons/plentyShop LTS.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/src/images/icons/plupload.png b/src/images/icons/plupload.png deleted file mode 100644 index 648f23f2..00000000 Binary files a/src/images/icons/plupload.png and /dev/null differ diff --git a/src/images/icons/publishpress-blocks.png b/src/images/icons/publishpress-blocks.png new file mode 100644 index 00000000..6e60eae2 Binary files /dev/null and b/src/images/icons/publishpress-blocks.png differ diff --git a/src/images/icons/punBB.png b/src/images/icons/punBB.png deleted file mode 100644 index f45aeea7..00000000 Binary files a/src/images/icons/punBB.png and /dev/null differ diff --git a/src/images/icons/punBB.svg b/src/images/icons/punBB.svg new file mode 100644 index 00000000..96d42987 --- /dev/null +++ b/src/images/icons/punBB.svg @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/rSchoolToday.svg b/src/images/icons/rSchoolToday.svg new file mode 100644 index 00000000..329e732c --- /dev/null +++ b/src/images/icons/rSchoolToday.svg @@ -0,0 +1,169 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/really-simple-ssl.png b/src/images/icons/really-simple-ssl.png new file mode 100644 index 00000000..1e0d0098 Binary files /dev/null and b/src/images/icons/really-simple-ssl.png differ diff --git a/src/images/icons/scrollreveal.svg b/src/images/icons/scrollreveal.svg index 8e0dd8e8..9e2ea012 100644 --- a/src/images/icons/scrollreveal.svg +++ b/src/images/icons/scrollreveal.svg @@ -1,16 +1,14 @@ - - - - - - - - - + + + + + + + + + + + + + diff --git a/src/images/icons/speculation-rules.svg b/src/images/icons/speculation-rules.svg new file mode 100644 index 00000000..49492ae3 --- /dev/null +++ b/src/images/icons/speculation-rules.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/images/icons/themify-builder.png b/src/images/icons/themify-builder.png new file mode 100644 index 00000000..5dda984f Binary files /dev/null and b/src/images/icons/themify-builder.png differ diff --git a/src/images/icons/tinyAlbert.svg b/src/images/icons/tinyAlbert.svg new file mode 100644 index 00000000..9175cb77 --- /dev/null +++ b/src/images/icons/tinyAlbert.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/trackthemetric.svg b/src/images/icons/trackthemetric.svg new file mode 100644 index 00000000..8a2e10e8 --- /dev/null +++ b/src/images/icons/trackthemetric.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/typecho.svg b/src/images/icons/typecho.svg index e43dcb1f..658bb5bc 100644 --- a/src/images/icons/typecho.svg +++ b/src/images/icons/typecho.svg @@ -1 +1,3 @@ -typecho-logo \ No newline at end of file + + + diff --git a/src/images/icons/uhChat.svg b/src/images/icons/uhChat.svg new file mode 100644 index 00000000..24fc25f9 --- /dev/null +++ b/src/images/icons/uhChat.svg @@ -0,0 +1,20 @@ + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/vChat.svg b/src/images/icons/vChat.svg new file mode 100644 index 00000000..8863ade0 --- /dev/null +++ b/src/images/icons/vChat.svg @@ -0,0 +1,29 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/vFairs.svg b/src/images/icons/vFairs.svg new file mode 100644 index 00000000..94b3c846 --- /dev/null +++ b/src/images/icons/vFairs.svg @@ -0,0 +1,12 @@ + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/vinSUITE.svg b/src/images/icons/vinSUITE.svg new file mode 100644 index 00000000..e3fac92a --- /dev/null +++ b/src/images/icons/vinSUITE.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/visiopt.png b/src/images/icons/visiopt.png new file mode 100644 index 00000000..7a54048b Binary files /dev/null and b/src/images/icons/visiopt.png differ diff --git a/src/images/icons/vue.svg b/src/images/icons/vue.svg index 71c1cfb9..82823fc2 100644 --- a/src/images/icons/vue.svg +++ b/src/images/icons/vue.svg @@ -1,4 +1,12 @@ - - - + + + + + + + + + + + diff --git a/src/images/icons/wakecommerce.svg b/src/images/icons/wakecommerce.svg new file mode 100644 index 00000000..4cb6eb12 --- /dev/null +++ b/src/images/icons/wakecommerce.svg @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/web-worker-offloading.svg b/src/images/icons/web-worker-offloading.svg new file mode 100644 index 00000000..504ae19c --- /dev/null +++ b/src/images/icons/web-worker-offloading.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/images/icons/webflow.svg b/src/images/icons/webflow.svg index 99a3ac24..60f2ee2d 100644 --- a/src/images/icons/webflow.svg +++ b/src/images/icons/webflow.svg @@ -1,4 +1,4 @@ - - - - + + + + \ No newline at end of file diff --git a/src/images/icons/websphere.svg b/src/images/icons/websphere.svg new file mode 100644 index 00000000..2b3553fe --- /dev/null +++ b/src/images/icons/websphere.svg @@ -0,0 +1,21 @@ + + + + + + + + + + diff --git a/src/images/icons/wp-cloud.png b/src/images/icons/wp-cloud.png new file mode 100644 index 00000000..6b5c3568 Binary files /dev/null and b/src/images/icons/wp-cloud.png differ diff --git a/src/images/icons/youCMS.svg b/src/images/icons/youCMS.svg new file mode 100644 index 00000000..6ec7dad3 --- /dev/null +++ b/src/images/icons/youCMS.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/zenbasket.svg b/src/images/icons/zenbasket.svg new file mode 100644 index 00000000..97a19471 --- /dev/null +++ b/src/images/icons/zenbasket.svg @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/technologies/_.json b/src/technologies/_.json index f2027864..6182e085 100644 --- a/src/technologies/_.json +++ b/src/technologies/_.json @@ -141,7 +141,9 @@ ], "description": "34SP.com specialises in website hosting, discount domain names, low cost VPS servers and dedicated servers.", "dns": { - "SOA": "ns(?:\\d+)?\\.34sp\\.com" + "SOA": [ + "ns(?:\\d+)?\\.34sp\\.com" + ] }, "icon": "34SP.com.svg", "pricing": [ @@ -173,15 +175,27 @@ ], "website": "https://4-tell.com" }, + "42Chat": { + "cats": [ + 52 + ], + "description": "42Chat is a provider of conversational AI solutions and text-based chatbots designed to connect clients with their communities.", + "icon": "42Chat.svg", + "saas": true, + "scriptSrc": [ + "api\\.42chat\\.com" + ], + "website": "https://www.42chat.com" + }, "42stores": { "cats": [ 6 ], "description": "42stores is a French SaaS ecommerce solution that was established in 2008. It offers a range of features such as monitoring, customer support, and regular updates. The platform is known for its flexibility and modularity, making it possible to integrate with various ERP systems.", - "icon": "42stores.svg", "headers": { "Powered-By": "^42stores$" }, + "icon": "42stores.svg", "pricing": [ "poa", "recurring" @@ -236,6 +250,27 @@ "saas": true, "website": "https://www.51.la" }, + "52Degrees": { + "cats": [ + 10 + ], + "description": "52Degrees is a data platform formerly known as Handset Detection, providing real-time device and data insights for digital businesses.", + "icon": "52Degrees.svg", + "pricing": [ + "freemium", + "mid", + "recurring", + "poa" + ], + "saas": true, + "scriptSrc": [ + "api\\.handsetdetection\\.com" + ], + "scripts": [ + "'api\\.handsetdetection\\.com" + ], + "website": "https://51degrees.com" + }, "5centsCDN": { "cats": [ 31 @@ -257,6 +292,24 @@ ], "website": "https://www.5centscdn.net" }, + "6Valley eCommerce CMS": { + "cats": [ + 1, + 6 + ], + "cookies": { + "6valley_session": "" + }, + "description": "6Valley eCommerce CMS is a multi-vendor platform designed to facilitate business launches by providing tools for managing vendors, products, and transactions within an ecommerce ecosystem.", + "icon": "6ValleyEcommerceCMS.svg", + "pricing": [ + "onetime" + ], + "scripts": [ + "6valley_cookie_consent" + ], + "website": "https://6valley.app" + }, "6sense": { "cats": [ 32, @@ -295,6 +348,19 @@ "saas": true, "website": "https://www.7shifts.com" }, + "7moor": { + "cats": [ + 32, + 53 + ], + "description": "7moor is an integrated customer service marketing solution that combines communication, customer support, and marketing tools.", + "icon": "7moor.svg", + "js": { + "moor7Source": "" + }, + "saas": true, + "website": "https://www.7moor.com" + }, "8base": { "cats": [ 3, @@ -313,6 +379,54 @@ "api\\.8base\\.com" ] }, + "8x8": { + "cats": [ + 52 + ], + "description": "8x8 is a communication tool offering chat functionality for streamlined business communication.", + "icon": "8x8.svg", + "js": { + "Chat8x8": "", + "__8x8Chat": "" + }, + "pricing": [ + "poa" + ], + "saas": true, + "website": "https://www.8x8.com" + }, + "91App": { + "cats": [ + 6 + ], + "description": "91App is a Taiwan-based platform that provides solutions for retail stores.", + "icon": "91App.svg", + "saas": true, + "scriptSrc": [ + "cdn\\.91app\\.com/" + ], + "website": "https://91app.com" + }, + "99minds": { + "cats": [ + 84 + ], + "description": "99minds is an online platform for managing and scaling gift cards, store credit, digital wallets, and loyalty programs.", + "icon": "99minds.svg", + "js": { + "_99mindsDataLayer": "" + }, + "pricing": [ + "low", + "recurring", + "poa" + ], + "saas": true, + "scriptSrc": [ + "\\.99minds\\.io" + ], + "website": "https://www.99minds.io" + }, "": { "cats": [ 105 diff --git a/src/technologies/a.json b/src/technologies/a.json index d45b6ed6..d2eb9a4f 100644 --- a/src/technologies/a.json +++ b/src/technologies/a.json @@ -1,8 +1,10 @@ { "A-Frame": { "cats": [ - 25 + 25, + 105 ], + "description": "A-Frame is an open-source web framework that simplifies building cross-platform virtual reality (VR) experiences using HTML and JavaScript.", "html": [ "]*>" ], @@ -11,8 +13,10 @@ "Three.js" ], "js": { - "AFRAME.version": "^(.+)$\\;version:\\1" + "AFRAME.version": "^(.+)$\\;version:\\1", + "aframeStats": "" }, + "oss": true, "scriptSrc": [ "/?([\\d.]+)?/aframe(?:\\.min)?\\.js\\;version:\\1" ], @@ -73,6 +77,25 @@ ], "website": "https://www.abtasty.com" }, + "ABLyft": { + "cats": [ + 74 + ], + "description": "ABlyft is an A/B-Testing Platform made for developers.", + "icon": "ABlyft.svg", + "js": { + "ablyft.get": "", + "ablyftClickListener": "", + "ablyftEventQueueInterv": "", + "ablyftStopQueue": "" + }, + "pricing": [ + "freemium", + "poa" + ], + "saas": true, + "website": "https://ablyft.com" + }, "ABOUT YOU Commerce Suite": { "cats": [ 6 @@ -217,13 +240,35 @@ "oss": true, "website": "https://aimeos.org" }, + "AINIRO": { + "cats": [ + 52 + ], + "description": "AINIRO is a provider of AI chatbots, AI agents, and custom AI solutions designed for various applications.", + "icon": "AINIRO.svg", + "js": { + "ainiro.init": "", + "ainiro_faq_question": "" + }, + "pricing": [ + "mid", + "recurring" + ], + "saas": true, + "scriptSrc": [ + "\\.ainiro\\.io" + ], + "website": "https://ainiro.io" + }, "ALL-INKL": { "cats": [ 88 ], "description": "ALL-INKL is a German-based web hosting provider that promises to offer high-performance services for fair prices.", "dns": { - "SOA": "\\.kasserver\\.com" + "SOA": [ + "\\.kasserver\\.com" + ] }, "icon": "ALL-INKL.svg", "pricing": [ @@ -242,11 +287,6 @@ " ([\\d.]+)\\;version:\\1", "onclick=\"bodyClick\\(event\\);\" onload=\"verifyVersion\\('([\\d.]+)'\\);\">\\;version:\\1" @@ -1746,6 +2151,7 @@ "implies": [ "PHP" ], + "oss": true, "website": "https://www.adminer.org" }, "Admiral": { @@ -1858,6 +2264,21 @@ ], "website": "https://adnegah.net" }, + "Adnymics": { + "cats": [ + 76 + ], + "description": "Adnymics is a platform that enables personalization in ecommerce by tailoring content, recommendations, and experiences to individual users based on their behavior and preferences.", + "icon": "Adnymics.svg", + "pricing": [ + "poa" + ], + "saas": true, + "scriptSrc": [ + "trac\\.adnymics\\.com" + ], + "website": "https://adnymics.com" + }, "Adobe Analytics": { "cats": [ 10 @@ -1913,7 +2334,11 @@ "cats": [ 18 ], + "cookies": { + "CFID|CFTOKEN|CFMAGIC|CFGLOBALS": "" + }, "cpe": "cpe:2.3:a:adobe:coldfusion:*:*:*:*:*:*:*:*", + "description": "Adobe ColdFusion is a server-side scripting platform for building web applications and APIs, using a language called CFML (ColdFusion Markup Language).", "headers": { "Cookie": "CFTOKEN=" }, @@ -1968,6 +2393,9 @@ ], "cpe": "cpe:2.3:a:adobe:experience_manager:*:*:*:*:*:*:*:*", "description": "Adobe Experience Manager (AEM) is a content management solution for building websites, mobile apps and forms.", + "dom": [ + "div[class*='parbase'], div[data-component-path*='jcr:'], div[class*='aem-Grid']" + ], "html": [ "
]+data-component-path=\"[^\"+]jcr:", @@ -1987,12 +2415,22 @@ "/etc\\.clientlibs/" ], "scripts": [ - "aem-(?:GridColumn|apps/)" + "aem-(?:GridColumn|apps/)|AEMMode" ], - "website": "https://www.adobe.com/marketing/experience-manager.html", - "dom": [ - "div[class*='parbase'], div[data-component-path*='jcr:'], div[class*='aem-Grid']" - ] + "website": "https://www.adobe.com/marketing/experience-manager.html" + }, + "Adobe Experience Manager Edge Delivery Services": { + "cats": [ + 1 + ], + "cpe": "cpe:2.3:a:adobe:experience_manager:*:*:*:*:*:*:*:*", + "description": "Edge Delivery Services in Adobe Experience Manager Sites as a Cloud Service, also know as Helix, Franklin, Next-Generation Composability is a fast and lightweight content management system from Adobe.", + "icon": "Adobe Experience Platform.svg", + "scriptSrc": [ + "^.+/scripts/aem\\.js$", + "^.+/scripts/lib-franklin\\.js$" + ], + "website": "https://www.aem.live" }, "Adobe Experience Manager Franklin": { "cats": [ @@ -2000,10 +2438,13 @@ ], "cpe": "cpe:2.3:a:adobe:experience_manager:*:*:*:*:*:*:*:*", "description": "Adobe Experience Manager Franklin, also known as Project Helix or Composability, is a new way to publish AEM pages using Google Drive or Microsoft Office via Sharepoint. Instead of components, Franklin uses blocks to build pages. Blocks are pieces of a document that will be transformed into web page content.", - "icon": "Adobe Experience Manager Franklin.svg", "excludes": [ "Adobe Experience Manager" ], + "icon": "Adobe Experience Manager Franklin.svg", + "js": { + "hlx.RUM_MANUAL_ENHANCE": "" + }, "scriptSrc": [ "^.+/scripts/lib-franklin\\.js$" ], @@ -2054,6 +2495,9 @@ 17 ], "description": "Adobe Fonts is a web-based service providing access to a vast library of high-quality fonts for web and print design.", + "dom": [ + "link[href*='use.typekit.net'], link[href*='use.typekit.com']" + ], "html": [ "]*href=\"[^\"]+use\\.typekit\\.(?:net|com)" ], @@ -2176,16 +2620,16 @@ "adonis-session": "", "adonis-session-values": "" }, + "description": "AdonisJS is a Node.js web application framework that follows the MVC pattern, simplifying web development with features like ORM, authentication, and WebSockets.", + "dom": [ + "link[href*='adonisjs.com/'][rel='canonical']" + ], "icon": "AdonisJS.svg", "implies": [ "Node.js" ], - "website": "https://adonisjs.com", "oss": true, - "dom": [ - "link[href*='adonisjs.com/'][rel='canonical']" - ], - "description": "AdonisJS is a Node.js web application framework that follows the MVC pattern, simplifying web development with features like ORM, authentication, and WebSockets." + "website": "https://adonisjs.com" }, "Adoric": { "cats": [ @@ -2211,6 +2655,18 @@ ], "website": "https://adoric.com" }, + "Adtriba": { + "cats": [ + 32 + ], + "description": "Adtriba is a platform that captures all marketing touchpoints and calculates the profitability of each campaign using big data technology and AI.", + "icon": "Adtriba.svg", + "saas": true, + "scripts": [ + "\\.adtriba\\.com" + ], + "website": "https://funnel.io/adtriba" + }, "Adtribute": { "cats": [ 10 @@ -2498,6 +2954,18 @@ ], "website": "https://www.affirm.com" }, + "Aforest LMS": { + "cats": [ + 21 + ], + "description": "AFOREST LMS is a training management system that supports the entire training cycle, including client needs assessment, course organization, learner tracking, quality control, assessments, certification, and e-learning integration, with invoicing capabilities.", + "icon": "AforestLMS.svg", + "meta": { + "publisher": "^Aforest Lux - C.I.D.$" + }, + "saas": true, + "website": "https://www.groupe-aforest.com" + }, "Afosto": { "cats": [ 6 @@ -2506,6 +2974,9 @@ "X-Powered-By": "Afosto SaaS BV\\;version:2.0" }, "icon": "Afosto.svg", + "scripts": [ + "\\.afosto\\.nl/" + ], "website": "https://afosto.com" }, "AfterBuy": { @@ -2576,6 +3047,7 @@ ], "icon": "afterpay.svg", "js": { + "AfterPay": "", "Afterpay": "", "Afterpay.version": "([\\d\\.]+)\\;version:\\1", "AfterpayAttractWidget": "", @@ -2595,6 +3067,9 @@ "afterpay-products\\.min\\.js", "js\\.stripe\\.com/v3/fingerprinted/js/elements-afterpay-clearpay-message-.+\\.js" ], + "scripts": [ + "AFTERPAY" + ], "website": "https://www.afterpay.com/" }, "Age Gate": { @@ -2618,6 +3093,76 @@ ], "website": "https://wordpress.org/plugins/age-gate" }, + "AgentFire": { + "cats": [ + 32 + ], + "description": "AgentFire is a platform designed for the real estate industry, offering tools and features that help agents capitalize on digital opportunities for marketing, lead generation, and client engagement.", + "icon": "AgentFire.svg", + "js": { + "AgentFire.Api": "", + "AgentFire_Oauth2": "", + "AgentFire_Settings": "" + }, + "pricing": [ + "poa" + ], + "saas": true, + "website": "https://agentfire.com" + }, + "Agile CRM": { + "cats": [ + 53 + ], + "description": "Agile CRM is a software for Customer Relationship Management (CRM) that provides sales and marketing automation features for businesses.", + "icon": "AgileCRM.svg", + "js": { + "AgileCRMTracker": "", + "Agile_API": "" + }, + "pricing": [ + "freemium", + "low", + "recurring" + ], + "saas": true, + "website": "https://www.agilecrm.com" + }, + "Agility CMS": { + "cats": [ + 1 + ], + "description": "Agility CMS is an enterprise-level content management system provider offering scalable solutions for managing digital content across multiple platforms.", + "icon": "Agility.svg", + "meta": { + "generator": "^Agility CMS$" + }, + "pricing": [ + "high", + "recurring", + "poa" + ], + "saas": true, + "scriptSrc": [ + "cdn\\.agilitycms\\.com/" + ], + "website": "https://agilitycms.com" + }, + "Agillic": { + "cats": [ + 32 + ], + "description": "Agillic is a Nordic marketing automation platform that delivers scalable, personalized campaigns while ensuring operational efficiency and full GDPR compliance.", + "icon": "Agillic.svg", + "saas": true, + "scriptSrc": [ + "\\.agilliccdn\\.com" + ], + "scripts": [ + "\\.agillic\\.eu" + ], + "website": "https://agillic.com" + }, "Agoda": { "cats": [ 104 @@ -2637,6 +3182,35 @@ "saas": true, "website": "https://www.agoda.com" }, + "Agora": { + "cats": [ + 62 + ], + "description": "Agora is a real-time engagement platform that provides infrastructure for interactive communication across applications.", + "headers": { + "Content-Security-Policy": "\\.agora\\.io" + }, + "icon": "Agora.svg", + "pricing": [ + "mid", + "recurring", + "payg", + "poa" + ], + "website": "https://www.agora.io" + }, + "Agorize": { + "cats": [ + 101 + ], + "description": "Agorize is a platform that enables businesses to identify and connect with talent through innovation challenges and collaborative programs.", + "icon": "Agorize.svg", + "saas": true, + "scriptSrc": [ + "\\.fs\\.agorize\\.com" + ], + "website": "https://www.agorize.com" + }, "Ahoy": { "cats": [ 10 @@ -2743,6 +3317,21 @@ "saas": true, "website": "https://www.aiden.cx" }, + "Aimbase": { + "cats": [ + 32 + ], + "description": "Aimbase is a marketing automation platform designed to streamline campaign management, customer engagement, and data-driven decision-making.", + "icon": "Aimbase.svg", + "js": { + "Aimbase.Analytics": "" + }, + "saas": true, + "scriptSrc": [ + "ws\\.aimbase\\.com" + ], + "website": "https://aimbase.com" + }, "Aimerce": { "cats": [ 32, @@ -2783,6 +3372,25 @@ ], "website": "https://aimtell.com" }, + "Aimy": { + "cats": [ + 72 + ], + "description": "Aimy is a salon management platform that provides scheduling tools, a virtual assistant, and calendar maintenance features to streamline salon operations.", + "icon": "Aimy.svg", + "js": { + "MeetAimyMeta": "" + }, + "pricing": [ + "low", + "recurring" + ], + "saas": true, + "scriptSrc": [ + "widget\\.meetaimy\\.com" + ], + "website": "https://meetaimy.com" + }, "Air360": { "cats": [ 10 @@ -2838,29 +3446,45 @@ 52 ], "description": "Aircall is a cloud-based phone system for customer support and sales teams.", - "icon": "aircall.png", + "icon": "Aircall.svg", "saas": true, "scriptSrc": [ - "^https?://cdn\\.aircall\\.io/" + "cdn\\.aircall\\.io" ], "website": "https://aircall.io" }, + "Airdata": { + "cats": [ + 104 + ], + "description": "Airdata is a ticket booking system for agents in Vietnam, offering unique features to maximize benefits for businesses in managing and selling flight tickets.", + "icon": "Airdata.svg", + "js": { + "BOOKING_BASE_API_URL": "api\\.airdata\\.vn" + }, + "pricing": [ + "low", + "recurring" + ], + "saas": true, + "website": "https://airdata.vn" + }, "Airee": { "cats": [ 31, 88 ], + "description": "Airee offers scalable web hosting solutions tailored for internet shops and websites, with enhanced performance, DDoS protection, high availability, and detailed speed and security analytics.", "headers": { "Server": "^Airee" }, "icon": "Airee.svg", - "website": "https://xn--80aqc2a.xn--p1ai", - "description": "Airee offers scalable web hosting solutions tailored for internet shops and websites, with enhanced performance, DDoS protection, high availability, and detailed speed and security analytics.", - "saas": true, "pricing": [ "recurring", "mid" - ] + ], + "saas": true, + "website": "https://xn--80aqc2a.xn--p1ai" }, "Airform": { "cats": [ @@ -2890,6 +3514,23 @@ ], "website": "https://www.airship.com" }, + "Airship CRM": { + "cats": [ + 53 + ], + "description": "Airship CRM is a hospitality-focused platform that centralizes data, enables tailored email communication, and enhances visit frequency.", + "icon": "AirshipCRM.svg", + "pricing": [ + "high", + "recurring", + "poa" + ], + "saas": true, + "scriptSrc": [ + "\\.airship\\.co\\.uk/" + ], + "website": "https://airship.co.uk" + }, "Airtable": { "cats": [ 5 @@ -2931,6 +3572,24 @@ "saas": true, "website": "https://www.ait-themes.club" }, + "Aiva": { + "cats": [ + 53 + ], + "description": "Aiva is a real estate lead conversion platform that qualifies and engages leads 24/7.", + "icon": "Aiva.svg", + "js": { + "__AivaLiveChat": "" + }, + "pricing": [ + "poa" + ], + "saas": true, + "scriptSrc": [ + "\\.hireaiva\\.com" + ], + "website": "https://hireaiva.com" + }, "Aivo": { "cats": [ 52, @@ -2951,6 +3610,18 @@ "saas": true, "website": "https://www.aivo.co" }, + "Ajax.NET Professional": { + "cats": [ + 12 + ], + "description": "Ajax.NET Professional is a legacy framework that generates JavaScript proxies to call .NET server-side methods via AJAX.", + "js": { + "AjaxPro": "", + "AjaxPro.version": "^([\\d\\.]+)$\\;version:\\1" + }, + "oss": true, + "website": "https://github.com/michaelschwarz/Ajax.NET-Professional" + }, "Akamai": { "cats": [ 31 @@ -2988,6 +3659,26 @@ "saas": true, "website": "https://www.akamai.com/us/en/products/security/bot-manager.jsp" }, + "Akamai Connected Cloud": { + "cats": [ + 62 + ], + "description": "Akamai Connected Cloud is a distributed cloud platform that combines core compute, edge services, and security to run applications at global scale.", + "headers": { + "server": "^volt-adc$", + "x-volterra-location": "" + }, + "icon": "Akamai.svg", + "implies": [ + "Akamai" + ], + "pricing": [ + "payg", + "recurring" + ], + "saas": false, + "website": "https://www.akamai.com/solutions/cloud-computing" + }, "Akamai Web Application Protector": { "cats": [ 16 @@ -3018,6 +3709,9 @@ "akaas_AB-Testing": "" }, "description": "Akamai mPulse is a real user monitoring (RUM) solution that enables companies to monitor, find, and fix website and application performance issues.", + "dom": [ + "script#boomr-if-as, script#boomr-scr-as, link[href*='s.go-mpulse.net/boomerang/'][rel='preload']" + ], "html": [ "" ], @@ -3032,15 +3726,13 @@ "poa" ], "saas": true, - "website": "https://developer.akamai.com/akamai-mpulse-real-user-monitoring-solution", - "dom": [ - "script#boomr-if-as, script#boomr-scr-as, link[href*='s.go-mpulse.net/boomerang/'][rel='preload']" - ] + "website": "https://developer.akamai.com/akamai-mpulse-real-user-monitoring-solution" }, "Akaunting": { "cats": [ 55 ], + "cpe": "cpe:2.3:a:akaunting:akaunting:*:*:*:*:*:*:*:*", "description": "Akaunting is a free and online accounting software.", "headers": { "X-Akaunting": "^Free Accounting Software$" @@ -3053,22 +3745,46 @@ "implies": [ "Laravel" ], - "cpe": "cpe:2.3:a:akaunting:akaunting:*:*:*:*:*:*:*:*", "oss": true, "website": "https://akaunting.com" }, - "Akilli Ticaret": { + "Akavita": { "cats": [ - 6 - ], - "description": "Akilli Ticaret is an all-in-one ecommerce platform from Turkey.", - "icon": "Akilli Ticaret.svg", - "js": { - "akillitel": "" - }, - "pricing": [ - "mid", - "recurring" + 10, + 36 + ], + "description": "Akavita is a Russian-based service offering analytics and advertising solutions.", + "icon": "Akavita.svg", + "saas": true, + "scriptSrc": [ + "adlik\\.akavita\\.com/" + ], + "website": "https://akavita.com" + }, + "Akero": { + "cats": [ + 32 + ], + "description": "Akero is a platform that provides marketing and admissions technology designed for educational institutions.", + "icon": "Akero.svg", + "saas": true, + "scripts": [ + "\\.akerolabs\\.com" + ], + "website": "https://akerolabs.com" + }, + "Akilli Ticaret": { + "cats": [ + 6 + ], + "description": "Akilli Ticaret is an all-in-one ecommerce platform from Turkey.", + "icon": "Akilli Ticaret.svg", + "js": { + "akillitel": "" + }, + "pricing": [ + "mid", + "recurring" ], "requires": [ "Microsoft ASP.NET" @@ -3084,13 +3800,16 @@ 6 ], "description": "Akinon is a cloud-based headless commerce platform with an integrated application suite including omnichannel and marketplace capabilities, mobile and in-store solutions, and an OMS.", - "icon": "akinon.png", + "icon": "Akinon.svg", "pricing": [ "poa" ], "scriptSrc": [ "cdn-mgsm\\.akinon\\.net/" ], + "scripts": [ + "\\.akinoncloud\\.com" + ], "website": "https://www.akinon.com/" }, "Akismet": { @@ -3152,6 +3871,21 @@ ], "website": "https://www.aklamio.com" }, + "AkoCommerce": { + "cats": [ + 6 + ], + "description": "AkoCommerce is a Shopify partner based in Taiwan that provides website planning and construction, as well as ecommerce store opening consultation services.", + "icon": "AkoCommerce.svg", + "requires": [ + "Shopify" + ], + "saas": true, + "scriptSrc": [ + "app\\.akocommerce\\.com" + ], + "website": "https://akocommerce.com" + }, "Aksara CMS": { "cats": [ 1 @@ -3209,6 +3943,40 @@ ], "website": "https://albacross.com" }, + "Alboom Proof": { + "cats": [ + 7 + ], + "description": "Alboom Proof is a platform that provides client photo galleries, photo sales, and proofing services in one location, enabling photographers and visual artists to deliver their work.", + "dom": [ + "img[data-original*='alfred.alboompro.com/']" + ], + "icon": "Alboom.svg", + "pricing": [ + "freemium", + "low", + "recurring" + ], + "saas": true, + "website": "https://www.alboompro.com/ferramentas/alboom-proof" + }, + "Alboom Prosite": { + "cats": [ + 51 + ], + "description": "Alboom Prosite is a website and landing page builder for businesses.", + "icon": "Alboom.svg", + "pricing": [ + "freemium", + "low", + "recurring" + ], + "saas": true, + "scriptSrc": [ + "bifrost\\.alboompro\\.com" + ], + "website": "https://www.alboompro.com/ferramentas/alboom-prosite" + }, "Alchemer Mobile": { "cats": [ 90 @@ -3308,6 +4076,9 @@ "payg" ], "saas": true, + "scripts": [ + "algoliasearch" + ], "website": "https://www.algolia.com" }, "Algolia DocSearch": { @@ -3315,6 +4086,9 @@ 5 ], "description": "Algolia DocSearch is a search widget specifically designed for documentation websites.", + "dom": [ + "link[href*='.algolia.net'][rel='preconnect']" + ], "icon": "DocSearch.svg", "implies": [ "Algolia" @@ -3328,10 +4102,7 @@ "recurring" ], "saas": true, - "website": "https://docsearch.algolia.com", - "dom": [ - "link[href*='.algolia.net'][rel='preconnect']" - ] + "website": "https://docsearch.algolia.com" }, "Ali Reviews": { "cats": [ @@ -3346,6 +4117,21 @@ "saas": true, "website": "https://apps.shopify.com/ali-reviews" }, + "Alia": { + "cats": [ + 100, + 110 + ], + "description": "Alia is a Shopify app to design Email and SMS sign-up pop-up units", + "icon": "Alia.png", + "implies": [ + "Shopify" + ], + "js": { + "alia": "" + }, + "website": "https://www.alialearn.com/" + }, "Alibaba Cloud CDN": { "cats": [ 31 @@ -3388,6 +4174,36 @@ ], "website": "https://help.aliyun.com/document_detail/193141.html" }, + "Alimama": { + "cats": [ + 32 + ], + "description": "Alimama is a data-driven marketing technology platform that enables businesses to optimize campaigns and audience engagement through advanced analytics.", + "icon": "Alimama.svg", + "saas": true, + "scriptSrc": [ + "\\.alimama\\.com" + ], + "scripts": [ + "\\.alimama\\.com" + ], + "website": "https://www.alimama.com" + }, + "Alinea": { + "cats": [ + 1 + ], + "description": "Alinea is a Git-based content management system designed specifically for integration with Next.js projects.", + "icon": "Alinea.svg", + "meta": { + "generator": "^ALinea ([\\d.]+)\\;version:\\1" + }, + "oss": true, + "pricing": [ + "freemium" + ], + "website": "https://alinea.sh" + }, "Alive5": { "cats": [ 52 @@ -3428,6 +4244,30 @@ ], "website": "https://www.skynettechnologies.com/all-in-one-accessibility" }, + "All in One SEO": { + "cats": [ + 54, + 87 + ], + "cpe": "cpe:2.3:a:aioseo:all_in_one_seo:*:*:*:*:*:wordpress:*:*", + "description": "All in One SEO optimizes a WordPress website and its content for search engines.", + "dom": { + "script.aioseo-schema": {} + }, + "html": [ + "|" ], - "icon": "inspectlet.png", + "icon": "Inspectlet.svg", "js": { "__insp": "", "__inspld": "" @@ -1251,6 +1720,7 @@ ], "icon": "Instant.svg", "js": { + "Instant.initialized": "", "Instant.initializedVersion": "([\\d\\.]+)\\;version:\\1", "__instantInitSliders": "" }, @@ -1416,6 +1886,26 @@ ], "website": "https://integralads.com" }, + "Integrately": { + "cats": [ + 32 + ], + "description": "Integrately is a click automation software that enables connection of multiple applications.", + "dom": [ + "input[value*='app.integrately.com']" + ], + "icon": "Integrately.svg", + "pricing": [ + "freemium", + "low", + "recurring" + ], + "saas": true, + "scripts": [ + "app\\.integrately\\.com" + ], + "website": "https://integrately.com" + }, "Intel Active Management Technology": { "cats": [ 22, @@ -1479,6 +1969,25 @@ ], "website": "https://intensedebate.com" }, + "InterRed": { + "cats": [ + 1 + ], + "description": "InterRed is a software platform that provides integrated, future-proof publishing solutions for digital and print media management.", + "dom": [ + "div[id*='footer__interred'] > a[href*='www.interred.de']" + ], + "icon": "InterRed.svg", + "meta": { + "generator": "^InterRed" + }, + "pricing": [ + "mid", + "recurring" + ], + "saas": true, + "website": "https://www.interred.de" + }, "Interact": { "cats": [ 5 @@ -1568,6 +2077,7 @@ "]+>We run on Intercom" ], "icon": "Intercom.svg", + "saas": true, "website": "https://www.intercom.com/articles" }, "Internet Brands": { @@ -1620,6 +2130,36 @@ ], "website": "https://intershop.com" }, + "Intiaro": { + "cats": [ + 6 + ], + "description": "Intiaro is a provider of home decor and furniture products designed to support the creation of stylish living spaces.", + "icon": "Intiaro.svg", + "saas": true, + "scriptSrc": [ + "libs\\.intiaro\\.com" + ], + "website": "https://en.intiaro.com" + }, + "Intice": { + "cats": [ + 32 + ], + "description": "Intice is a lead conversion tool designed for the automotive industry, streamlining customer engagement and improving the conversion process from inquiries to sales.", + "icon": "Intice.svg", + "js": { + "intice": "", + "inticeAllEvents": "", + "inticeIMP": "", + "inticeLeadmakerAnalytics": "" + }, + "saas": true, + "scriptSrc": [ + "tools\\.inticeinc\\.com" + ], + "website": "https://intice.com" + }, "Invenio": { "cats": [ 50 @@ -1632,8 +2172,8 @@ "(?:Powered by|System)\\s+(?:CERN )?(?:CDS )?Invenio\\s*v?([\\d\\.]+)?\\;version:\\1" ], "icon": "Invenio.svg", - "website": "https://invenio-software.org", - "oss": true + "oss": true, + "website": "https://invenio-software.org" }, "Inventrue": { "cats": [ @@ -1671,6 +2211,44 @@ ], "website": "https://www.inveon.com" }, + "Inveterate": { + "cats": [ + 84 + ], + "description": "Inveterate is a loyalty platform designed to support flexible, scalable loyalty programs across various industries.", + "icon": "Inveterate.svg", + "js": { + "Inveterate": "", + "inveterate": "" + }, + "pricing": [ + "freemium", + "mid", + "recurring" + ], + "saas": true, + "scriptSrc": [ + "\\.inveterate\\.js" + ], + "website": "https://www.inveterate.com" + }, + "Invision Community": { + "cats": [ + 1 + ], + "description": "Invision Community is a scalable and customizable platform designed to build and grow online communities.", + "icon": "InvisionCommunity.svg", + "pricing": [ + "mid", + "recurring", + "poa" + ], + "saas": true, + "scriptSrc": [ + "\\.invisioncic\\.com/" + ], + "website": "https://invisioncommunity.com" + }, "Invision Power Board": { "cats": [ 2 @@ -1700,6 +2278,9 @@ "scriptSrc": [ "jscripts/ips_" ], + "scripts": [ + "ipb_url_filter_option" + ], "website": "https://invisioncommunity.com" }, "Invitario": { @@ -1763,6 +2344,18 @@ "oss": true, "website": "https://ionicons.com" }, + "Iress": { + "cats": [ + 55 + ], + "description": "Iress is a platform that provides software solutions for the financial services industry.", + "icon": "Iress.svg", + "js": { + "IRESSWebToolbox": "" + }, + "saas": true, + "website": "https://www.iress.com" + }, "IrisLMS": { "cats": [ 21 @@ -1786,6 +2379,11 @@ "]*href=\"https://www\\.irroba\\.com\\.br" ], "icon": "irroba.svg", + "meta": { + "copyright": "^IRROBA E-COMMERCE$", + "generator": "^IRROBA E-COMMERCE$", + "webmaster": "^IRROBA E-COMMERCE$" + }, "website": "https://www.irroba.com.br/" }, "Isotope": { @@ -1811,12 +2409,12 @@ 15 ], "description": "Isso is a lightweight commenting server written in Python and JavaScript, referred to as \"Ich schrei sonst\" in German.", - "js": { - "Isso.fetchComments": "" - }, "implies": [ "Python" ], + "js": { + "Isso.fetchComments": "" + }, "oss": true, "website": "https://github.com/posativ/isso/" }, @@ -1861,6 +2459,18 @@ "saas": true, "website": "https://itseeze.com/" }, + "Italiaonline": { + "cats": [ + 51 + ], + "description": "Italiaonline is a web platform that provides tools and services for building and managing websites.", + "icon": "Italiaonline.svg", + "saas": true, + "scripts": [ + "\\.italiaonline\\.it" + ], + "website": "https://www.italiaonline.it" + }, "Iterable": { "cats": [ 32 @@ -1896,6 +2506,21 @@ ], "website": "https://iteratehq.com" }, + "Itoris": { + "cats": [ + 6 + ], + "description": "Itoris is a developer specializing in widgets for ecommerce platforms, creating tools that enhance online store functionality.", + "icon": "Itoris.svg", + "saas": true, + "scriptSrc": [ + "\\.itoris\\.com" + ], + "scripts": [ + "\\.itoris\\.com" + ], + "website": "https://www.itoris.com" + }, "Ivory Search": { "cats": [ 87 @@ -2011,6 +2636,46 @@ ], "website": "https://www.iadvize.com" }, + "iCIMS": { + "cats": [ + 101 + ], + "description": "iCIMS is a talent acquisition and internal mobility platform that delivers solutions to build, retain, and scale your workforce.", + "icon": "iCIMS.svg", + "saas": true, + "scripts": [ + "icims\\.com" + ], + "website": "https://www.icims.com" + }, + "iCheck": { + "cats": [ + 59 + ], + "description": "iCheck is a library for customizable checkboxes and radio buttons.", + "oss": true, + "scriptSrc": [ + "/(?:js|iCheck)/icheck\\.min\\.js" + ], + "website": "https://github.com/drgullin/icheck" + }, + "iClose": { + "cats": [ + 72 + ], + "description": "iClose is an appointment scheduling tool that helps businesses streamline lead generation and meeting coordination without additional advertising expenses.", + "icon": "iClosed.svg", + "pricing": [ + "low", + "recurring", + "poa" + ], + "saas": true, + "scriptSrc": [ + "\\.iclosed\\.io/" + ], + "website": "https://iclosed.io" + }, "iEXExchanger": { "cats": [ 1 @@ -2029,6 +2694,18 @@ }, "website": "https://exchanger.iexbase.com" }, + "iEntry": { + "cats": [ + 75 + ], + "description": "iEntry is a full-service email marketing platform offering campaign management, list building, analytics, and targeted messaging for businesses.", + "icon": "iEntry.svg", + "saas": true, + "scriptSrc": [ + "www\\.ientry\\.com" + ], + "website": "https://www.ientry.com" + }, "iGoDigital": { "cats": [ 76 @@ -2059,6 +2736,26 @@ ], "website": "https://www.ihomefinder.com" }, + "iPaper": { + "cats": [ + 95 + ], + "description": "iPaper is a platform that converts printed materials into interactive digital catalogs designed to enhance customer engagement and support sales.", + "icon": "iPaper.svg", + "js": { + "iPaper.API": "", + "iPaperDebugger": "" + }, + "pricing": [ + "high", + "recurring" + ], + "saas": true, + "scriptSrc": [ + "embeds\\.ipaper\\.io" + ], + "website": "https://www.ipaper.io" + }, "iPresta": { "cats": [ 6 @@ -2073,6 +2770,42 @@ }, "website": "https://ipresta.ir" }, + "iRaiser": { + "cats": [ + 111 + ], + "description": "iRaiser is a platform that provides charities with tailored solutions to optimize and manage fundraising activities.", + "icon": "iRaiser.svg", + "js": { + "iRaiser.PaymentStartDate": "", + "iraiser_counter": "" + }, + "pricing": [ + "low", + "recurring" + ], + "saas": true, + "scripts": [ + "\\.iraiser\\.eu" + ], + "website": "https://www.iraiser.com" + }, + "iSET": { + "cats": [ + 6 + ], + "description": "iSET is an ecommerce platform providing tools to start, grow, and scale online stores.", + "icon": "iSET.svg", + "pricing": [ + "low", + "recurring" + ], + "saas": true, + "scripts": [ + "cdn\\.iset\\.io/" + ], + "website": "https://www.iset.com.br" + }, "iScripts": { "cats": [ 1 @@ -2140,24 +2873,96 @@ }, "website": "https://www.apple.com/welcomescreen/ilife/iweb-3/" }, + "iWiki": { + "cats": [ + 1 + ], + "description": "iWiki is a Dutch-based content management system provider, formerly known as Kirra.", + "icon": "iWink.svg", + "js": { + "Kirra": "", + "KirraActiveMenuItems": "" + }, + "saas": true, + "scriptSrc": [ + "\\.kirra\\.nl" + ], + "website": "https://www.iwink.nl" + }, + "icomm": { + "cats": [ + 32 + ], + "description": "icomm is a platform that helps companies manage their marketing automation strategy using AI-powered tools.", + "headers": { + "Content-Security-Policy": "\\.icommarketing\\.com", + "Server": "^ICOMMKT$" + }, + "icon": "icomm.svg", + "pricing": [ + "poa" + ], + "saas": true, + "website": "https://icommkt.com" + }, + "icomm - Notifications Hub": { + "cats": [ + 32 + ], + "description": "Notifications Hub is an omnichannel marketing automation platform powered by AI.0", + "excludes": [ + "TITANPush" + ], + "icon": "icomm.svg", + "implies": [ + "icomm" + ], + "js": { + "wpnObject.origin": "2" + }, + "pricing": [ + "poa" + ], + "saas": true, + "website": "https://icommkt.com" + }, "idCloudHost": { "cats": [ 88 ], "description": "idCloudHost is a local web service provider based in Indonesia that offer a wide range of services including domain name registration and cloud hosting.", "dns": { - "NS": "ns\\d+\\.cloudhost\\.id", - "SOA": "ns\\d+\\.cloudhost\\.id" + "NS": [ + "ns\\d+\\.cloudhost\\.id" + ], + "SOA": [ + "ns\\d+\\.cloudhost\\.id" + ] }, "icon": "idCloudHost.svg", "website": "https://idcloudhost.com" }, + "iiQ Check": { + "cats": [ + 90 + ], + "description": "iiQ Check is a system designed to optimize hotel guest communication and manage review distribution.", + "icon": "iiQCheck.svg", + "saas": true, + "scriptSrc": [ + "app\\.iiq-check\\.de" + ], + "website": "https://www.iiq-check.de" + }, "ikiwiki": { "cats": [ 8 ], "cpe": "cpe:2.3:a:ikiwiki:ikiwiki:*:*:*:*:*:*:*:*", "description": "ikiwiki is a free and open-source wiki application.", + "dom": [ + "link[rel='alternate'][type='application/x-wiki'][title='Edit this page'][href*='/ikiwiki.cgi']" + ], "html": [ "]+name=\"JTLSHOP| a[href='https://jenkins.io/']" + ], "headers": { "X-Jenkins": "([\\d.]+)\\;version:\\1" }, @@ -437,6 +556,68 @@ ], "website": "https://www.getjenny.com" }, + "JetEngine": { + "cats": [ + 87 + ], + "description": "JetEngine is a content plugin for WordPress that allows users to create custom post types, taxonomies, and meta boxes, offering flexibility in building complex websites without requiring coding skills.", + "icon": "JetEngine.svg", + "pricing": [ + "freemium", + "low", + "recurring", + "onetime" + ], + "requires": [ + "WordPress" + ], + "saas": true, + "scriptSrc": [ + "/wp-content/plugins/jet-engine/" + ], + "website": "https://crocoblock.com/plugins/jetengine" + }, + "JetTabs": { + "cats": [ + 87 + ], + "description": "JetTabs is a plugin for Elementor that enables the creation of customizable tabs and accordion widgets for organizing content within web pages.", + "icon": "JetTabs.svg", + "implies": [ + "Elementor" + ], + "js": { + "JetTabs.accordionInit": "", + "JetTabsSettings": "" + }, + "pricing": [ + "low", + "recurring" + ], + "saas": true, + "website": "https://crocoblock.com/plugins/jettabs" + }, + "Jetboost": { + "cats": [ + 5 + ], + "description": "Jetboost is a tool that enables real-time search, dynamic filtering, and other features for Webflow sites without requiring code.", + "icon": "Jetboost.svg", + "js": { + "JETBOOST_SITE_ID": "", + "Jetboost.loaded": "" + }, + "pricing": [ + "freemium", + "low", + "recurring" + ], + "requires": [ + "Webflow" + ], + "saas": true, + "website": "https://www.jetboost.io" + }, "Jetpack": { "cats": [ 87 @@ -493,6 +674,8 @@ "cats": [ 22 ], + "cpe": "cpe:2.3:a:eclipse:jetty:*:*:*:*:*:*:*:*", + "description": "Jetty is an open-source web server and servlet container known for its scalability and efficiency, supporting protocols like HTTP and WebSocket for various applications from development tools to cloud services.", "headers": { "Server": "Jetty(?:\\(([\\d\\.]*\\d+))?\\;version:\\1" }, @@ -500,9 +683,8 @@ "implies": [ "Java" ], - "website": "https://www.eclipse.org/jetty", "oss": true, - "description": "Jetty is an open-source web server and servlet container known for its scalability and efficiency, supporting protocols like HTTP and WebSocket for various applications from development tools to cloud services." + "website": "https://www.eclipse.org/jetty" }, "Jibres": { "cats": [ @@ -528,6 +710,24 @@ ], "website": "https://jibres.com" }, + "Jiglu": { + "cats": [ + 2 + ], + "description": "Jiglu is a collaboration and communities suite that connects enterprise content with conversations to support improved communication.", + "icon": "Jiglu.svg", + "pricing": [ + "freemium", + "low", + "recurring", + "poa" + ], + "saas": true, + "scriptSrc": [ + "\\.jiglu\\.com/" + ], + "website": "https://www.jiglu.com" + }, "Jilt App": { "cats": [ 100, @@ -603,11 +803,11 @@ "cpe": "cpe:2.3:a:jitsi:jitsi:*:*:*:*:*:*:*:*", "description": "Jitsi is a free and open-source multiplatform voice (VoIP), videoconferencing and instant messaging applications for the web platform.", "icon": "Jitsi.svg", + "oss": true, "scriptSrc": [ "lib-jitsi-meet.*\\.js" ], - "website": "https://jitsi.org", - "oss": true + "website": "https://jitsi.org" }, "Jive": { "cats": [ @@ -663,6 +863,23 @@ ], "website": "https://jivox.com" }, + "Job Board Fire": { + "cats": [ + 101 + ], + "description": "JobBoardFire is a platform that provides software for managing job boards, connecting entrepreneurs and community members.", + "icon": "JobBoardFire.svg", + "pricing": [ + "mid", + "recurring", + "poa" + ], + "saas": true, + "scripts": [ + "jobboardfire\\.twic\\.pics" + ], + "website": "https://www.jobboardfire.com" + }, "JobAdder": { "cats": [ 101 @@ -701,6 +918,22 @@ "oss": true, "website": "https://www.jobberbase.com" }, + "Jobiqo": { + "cats": [ + 101 + ], + "description": "Jobiqo is a job board platform that enables publishers to expand reach and increase recruitment advertising revenue.", + "icon": "Jobiqo.svg", + "meta": { + "owner": "^Jobiqo$" + }, + "pricing": [ + "low", + "recurring" + ], + "saas": true, + "website": "https://www.jobiqo.com" + }, "Jobvite": { "cats": [ 101 @@ -721,6 +954,49 @@ "saas": true, "website": "https://www.jobvite.com" }, + "Jobylon": { + "cats": [ + 101 + ], + "description": "Jobylon is a flexible talent acquisition platform designed to help leading employers streamline recruitment and manage hiring processes.", + "icon": "Jobylon.svg", + "saas": true, + "scriptSrc": [ + "\\.jobylon\\.com" + ], + "website": "https://www.jobylon.com" + }, + "Join It": { + "cats": [ + 53 + ], + "description": "Join It is a membership management platform that helps nonprofits, clubs, and growing organizations manage members, track payments, and streamline administrative tasks.", + "icon": "JoinIt.svg", + "saas": true, + "scripts": [ + "app\\.joinit\\.com" + ], + "website": "https://joinit.com" + }, + "Joinchat": { + "cats": [ + 52 + ], + "description": "Joinchat is a tool that enables businesses to convert customer conversations into sales or leads through integrated communication features.", + "icon": "Joinchat.svg", + "js": { + "joinchat_obj": "" + }, + "pricing": [ + "low", + "recurring" + ], + "saas": true, + "scriptSrc": [ + "/js/joinchat\\.min\\.js" + ], + "website": "https://join.chat" + }, "Jonas Club Software": { "cats": [ 53 @@ -763,8 +1039,14 @@ "cats": [ 1 ], + "cookies": { + "joomla_[a-z0-9]+": "" + }, "cpe": "cpe:2.3:a:joomla:joomla\\!:*:*:*:*:*:*:*:*", "description": "Joomla is a free and open-source content management system for publishing web content.", + "dom": [ + "div[id*='wrapper_r'], link[href*='feed/com_'], link[href*='components/com_'], table[class*='pill']" + ], "headers": { "X-Content-Encoded-By": "Joomla! ([\\d.]+)\\;version:\\1" }, @@ -783,11 +1065,33 @@ "generator": "Joomla!(?: ([\\d.]+))?\\;version:\\1" }, "oss": true, + "scriptSrc": [ + "(?:^|/)(feed/com_|components/com_)" + ], "url": [ "option=com_" ], "website": "https://www.joomla.org/" }, + "Joonbot": { + "cats": [ + 52 + ], + "description": "Joonbot is a chatbot builder that enables users to create automated conversational flows without programming knowledge.", + "icon": "Joonbot.svg", + "js": { + "JOONBOT_WIDGET_ID": "", + "joonbot.hide": "" + }, + "pricing": [ + "freemium", + "low", + "recurring", + "poa" + ], + "saas": true, + "website": "https://joonbot.com" + }, "Jotform": { "cats": [ 110 @@ -811,6 +1115,22 @@ ], "website": "https://www.jotform.com" }, + "Jottful": { + "cats": [ + 51 + ], + "description": "Jottful is a platform that enables small businesses to create and manage professional websites.", + "icon": "Jottful.svg", + "meta": { + "web_author": "^Jottful" + }, + "pricing": [ + "low", + "recurring" + ], + "saas": true, + "website": "https://jottful.com" + }, "JouwWeb": { "cats": [ 1, @@ -872,6 +1192,22 @@ ], "website": "https://www.jsviews.com/#jsviews" }, + "Jubna": { + "cats": [ + 76 + ], + "description": "Jubna is a content recommendation engine that delivers personalized suggestions by analyzing user behavior and preferences.", + "icon": "Jubna.svg", + "pricing": [ + "low", + "recurring" + ], + "saas": true, + "scriptSrc": [ + "cdn\\.jubna\\.com" + ], + "website": "https://www.jubna.com" + }, "Judge.me": { "cats": [ 90 @@ -892,6 +1228,40 @@ ], "website": "https://judge.me" }, + "Jugem": { + "cats": [ + 11 + ], + "description": "Jugem is a blogging software from Japan that allows users to create, manage, and publish online content.", + "icon": "Jugem.svg", + "saas": true, + "scriptSrc": [ + "imaging\\.jugem\\.jp" + ], + "website": "https://jugem.jp" + }, + "Juicer": { + "cats": [ + 96 + ], + "description": "Juicer is a tool that aggregates brand hashtags and social media posts into a unified feed for websites, enabling moderation and content curation.", + "icon": "Juicer.svg", + "js": { + "Juicer.Active": "", + "JuicerBackbone.$": "" + }, + "pricing": [ + "freemium", + "low", + "recurring", + "payg" + ], + "saas": true, + "scriptSrc": [ + "\\.juicer\\.io/" + ], + "website": "https://www.juicer.io" + }, "JuicyAds": { "cats": [ 36 @@ -941,6 +1311,26 @@ "saas": true, "website": "https://www.jumio.com" }, + "JumpCloud": { + "cats": [ + 69 + ], + "cookies": { + "_jumpcloud_user_console_": "" + }, + "description": "JumpCloud is a cloud-based directory services platform offering single sign-on (SSO) and Active Directory-as-a-Service (ADaaS) functionalities.", + "icon": "JumpCloud.svg", + "pricing": [ + "low", + "recurring", + "poa" + ], + "saas": true, + "scriptSrc": [ + "\\.jumpcloud\\.com/" + ], + "website": "https://jumpcloud.com" + }, "Jumpseller": { "cats": [ 6 @@ -1024,6 +1414,25 @@ ], "website": "https://get.juo.io" }, + "Juphy": { + "cats": [ + 100 + ], + "description": "Juphy is an AI sales assistant designed for Shopify stores, enabling businesses to increase sales through automated customer engagement and support.", + "icon": "Juphy.svg", + "pricing": [ + "mid", + "recurring" + ], + "requires": [ + "Shopify" + ], + "saas": true, + "scriptSrc": [ + "static\\.juphy\\.com/" + ], + "website": "https://juphy.com" + }, "Juspay": { "cats": [ 41 @@ -1110,11 +1519,30 @@ ], "website": "https://apps.shopify.com/justuno-pop-ups-email-conversion" }, + "Juvo Leads": { + "cats": [ + 10, + 52 + ], + "description": "Juvo Leads is a platform that integrates hosted chat, call tracking, and form tracking into a unified reporting system.", + "icon": "JuvoLeads.svg", + "pricing": [ + "low", + "recurring", + "payg" + ], + "saas": true, + "scripts": [ + "cdn\\.juvoleads\\.com" + ], + "website": "https://juvoleads.com" + }, "jComponent": { "cats": [ 12, 59 ], + "description": "jComponent is a platform offering open-source web components and icons for easy integration into web projects.", "icon": "jComponent.svg", "implies": [ "jQuery" @@ -1122,9 +1550,8 @@ "js": { "MAIN.version": "(.*)\\;version:\\1" }, - "website": "https://componentator.com", "oss": true, - "description": "jComponent is a platform offering open-source web components and icons for easy integration into web projects." + "website": "https://componentator.com" }, "jPlayer": { "cats": [ @@ -1171,12 +1598,13 @@ "icon": "jQuery.svg", "js": { "$.fn.jquery": "([\\d.]+)\\;version:\\1", - "jQuery.fn.jquery": "([\\d.]+)\\;version:\\1" + "jQuery.fn.jquery": "([\\d.]+)\\;version:\\1", + "jQuery.prototype.jquery": "([\\d.]+)\\;version:\\1" }, "scriptSrc": [ "jquery", "/jquery(?:-(\\d+\\.\\d+\\.\\d+))[/.-]\\;version:\\1", - "/(\\d+\\.\\d+\\.\\d+)/jquery[/.-][^u]\\;version:\\1" + "/(\\d+\\.\\d+\\.\\d+)/jquery(?!\\.popupoverlay\\.js)[/.-][^u]\\;version:\\1" ], "website": "https://jquery.com" }, @@ -1223,7 +1651,7 @@ "jQuery" ], "js": { - "jQuery.migrateVersion": "((?:\\d+\\.){1,2}\\d+)\\;version:\\1", + "jQuery.migrateVersion": "([\\d.]+)\\;version:\\1", "jQuery.migrateWarnings": "", "jqueryMigrate": "" }, @@ -1269,6 +1697,31 @@ ], "website": "https://jquerymodal.com" }, + "jQuery Payment": { + "cats": [ + 41 + ], + "description": "jQuery Payment is a general-purpose library for building credit card forms, validating input fields, and formatting card numbers.", + "icon": "jQuery.svg", + "oss": true, + "requires": [ + "jQuery" + ], + "scriptSrc": [ + "/jquery-payment/jquery\\.payment\\.min\\.js" + ], + "website": "https://plugins.jquery.com/payment" + }, + "jQuery Popup Overlay": { + "cats": [ + 59 + ], + "description": "jQuery Popup Overlay is a responsive overlay which lets you create modal windows, tooltips, and more.", + "scriptSrc": [ + "(\\d+\\.\\d+\\.\\d+)/jquery\\.popupoverlay\\.js\\;version:\\1" + ], + "website": "https://www.npmjs.com/package/jquery-popup-overlay" + }, "jQuery Sparklines": { "cats": [ 25 @@ -1356,5 +1809,23 @@ "xhr": [ "cdn\\.jsdelivr\\.net" ] + }, + "jsPDF": { + "cats": [ + 59 + ], + "description": "jsPDF is a HTML5 client-side solution for generating PDF documents directly within web browsers.", + "icon": "jsPDF.svg", + "js": { + "jsPDF.API": "" + }, + "oss": true, + "pricing": [ + "freemium" + ], + "scriptSrc": [ + "/jspdf\\.min\\.js" + ], + "website": "https://parall.ax/products/jspdf" } } \ No newline at end of file diff --git a/src/technologies/k.json b/src/technologies/k.json index f30a9b1e..154d5ff3 100644 --- a/src/technologies/k.json +++ b/src/technologies/k.json @@ -18,6 +18,7 @@ "cats": [ 19 ], + "description": "K2 is a content management extension for Joomla, developed by JoomlaWorks, that enhances Joomla's capabilities by providing features like rich content forms, nested categories, tags, comments, and more.", "html": [ "", @@ -2051,11 +2884,7 @@ "]+\\blocalfocus\\b" ], @@ -2174,19 +3022,39 @@ "Angular", "D3" ], - "website": "https://www.localfocus.nl/en/", - "saas": true, - "dom": [ - "iframe[src*='//localfocus2.appspot.com/']" - ], "js": { "LFlegacyManipulate": "" }, - "description": "LocalFocus is a data visualization platform that allows users to create interactive maps, charts, and infographics from various data sources.", "pricing": [ "mid", "recurring" - ] + ], + "saas": true, + "website": "https://www.localfocus.nl/en/" + }, + "LocalGov Drupal": { + "cats": [ + 1 + ], + "description": "LocalGov Drupal is a web publishing platform for councils designed to enhance citizen experience, improve service delivery, and reduce operational costs.", + "icon": "LocalGovDrupal.svg", + "oss": true, + "requires": [ + "Drupal" + ], + "website": "https://localgovdrupal.org/products/localgov-drupal-cms" + }, + "LocaliQ Live Chat": { + "cats": [ + 32 + ], + "description": "LocaliQ Live Chat is a customer support tool that enables real-time responses to questions while capturing essential customer information.", + "icon": "LocaliQ.svg", + "saas": true, + "scriptSrc": [ + "\\.reachlocallivechat\\.com" + ], + "website": "https://localiq.com" }, "Localised": { "cats": [ @@ -2239,6 +3107,9 @@ 59 ], "description": "Locomotive Scroll is an opinionated JavaScript library that provides smooth scrolling animations and advanced scroll interactions for web applications.", + "dom": [ + "div[data-scroll-section]" + ], "icon": "Locomotive Scroll.png", "implies": [ "Lenis" @@ -2256,6 +3127,7 @@ "cats": [ 1 ], + "description": "LocomotiveCMS is a Ruby on Rails-based content management system (CMS) known for its flexibility and developer-friendly approach to building and managing websites.", "html": [ "]*/sites/[a-z\\d]{24}/theme/stylesheets" ], @@ -2264,9 +3136,11 @@ "Ruby on Rails", "MongoDB" ], - "website": "https://www.locomotivecms.com", "oss": true, - "description": "LocomotiveCMS is a Ruby on Rails-based content management system (CMS) known for its flexibility and developer-friendly approach to building and managing websites." + "scriptSrc": [ + "cdn\\.locomotive\\.works/" + ], + "website": "https://www.locomotivecms.com" }, "Lodash": { "cats": [ @@ -2314,10 +3188,22 @@ ], "saas": true, "scriptSrc": [ - "websites-static\\.lodgify\\.com/" + "\\.lodgify\\.com/" ], "website": "https://www.lodgify.com" }, + "Lofty": { + "cats": [ + 32 + ], + "description": "Lofty is an all-in-one platform for real estate professionals that automates marketing campaigns and facilitates lead capture and conversion.", + "icon": "Lofty.svg", + "saas": true, + "scripts": [ + "cdn\\.lofty\\.com" + ], + "website": "https://lofty.com" + }, "LogRocket": { "cats": [ 10 @@ -2422,13 +3308,13 @@ "description": "Loglib is a Open Source and Privacy-First web analytics that aims to provide simple yet can be powerful based on your needs.", "icon": "Loglib.svg", "js": { - "lli": "", - "llc": "" + "llc": "", + "lli": "" }, + "oss": true, "pricing": [ "freemium" ], - "oss": true, "saas": true, "website": "https://www.loglib.io" }, @@ -2450,6 +3336,7 @@ "cats": [ 6 ], + "description": "Loja Integrada is an all-in-one platform for building and managing online stores, tailored for the Brazilian market.", "headers": { "X-Powered-By": "vtex-integrated-store" }, @@ -2457,14 +3344,13 @@ "js": { "LOJA_ID": "" }, - "website": "https://lojaintegrada.com.br", - "saas": true, - "description": "Loja Integrada is an all-in-one platform for building and managing online stores, tailored for the Brazilian market.", "pricing": [ "freemium", "low", "recurring" - ] + ], + "saas": true, + "website": "https://lojaintegrada.com.br" }, "Loja Mestre": { "cats": [ @@ -2524,12 +3410,92 @@ ], "website": "https://www.loja2.com.br" }, + "Lojas Online CTT": { + "cats": [ + 6 + ], + "description": "Lojas Online CTT is an ecommerce website builder that provides an online storefront with deliveries insured by CTT.", + "icon": "LojasOnlineCTT.svg", + "meta": { + "author": "Lojas Online CTT" + }, + "pricing": [ + "low", + "recurring" + ], + "saas": true, + "scriptSrc": [ + "cdn\\.lojasonlinectt\\.pt" + ], + "website": "https://www.ctt.pt/empresas/e-commerce-e-logistica/e-commerce/lojas-online-ctt/index" + }, + "Loloyal": { + "cats": [ + 84 + ], + "description": "Loloyal is a loyalty and rewards program for Shopify that helps small businesses increase customer engagement and retention through user-friendly features.", + "icon": "Loloyal.svg", + "js": { + "LOLOYAL_ONSITE": "", + "LOLOYAL_ONSITE_ALL_LOCALE": "" + }, + "pricing": [ + "low", + "recurring" + ], + "saas": true, + "scriptSrc": [ + "static\\.loloyal\\.com" + ], + "scripts": [ + "static\\.loloyal\\.com" + ], + "website": "https://www.loloyal.com" + }, + "Looker": { + "cats": [ + 10 + ], + "description": "Looker is a data platform used to analyze governed data, generate business insights, and develop AI-powered applications.", + "headers": { + "Content-Security-Policy": "\\.cloud\\.looker\\.com" + }, + "icon": "Google Cloud.svg", + "pricing": [ + "payg", + "poa" + ], + "saas": true, + "website": "https://cloud.google.com/looker" + }, + "Looksize": { + "cats": [ + 6 + ], + "description": "Looksize is a virtual fitting room solution for ecommerce that allows customers to try on clothes digitally before making a purchase, enhancing the online shopping experience.", + "icon": "Looksize.svg", + "js": { + "LS.api_key": "" + }, + "pricing": [ + "low", + "recurring", + "payg" + ], + "saas": true, + "scriptSrc": [ + "www\\.looksize\\.com/" + ], + "website": "https://www.looksize.com" + }, "Loom": { "cats": [ 103 ], "dns": { - "TXT": "loom-verification" + "TXT": [ + "loom-verification" + ] }, "icon": "Loom.svg", "pricing": [ @@ -2623,6 +3589,18 @@ ], "website": "https://www.loopedin.io" }, + "Loopi": { + "cats": [ + 93 + ], + "description": "Loopi is a digital ecosystem offering tools, integrations, and resources for tourism professionals to create, manage, and distribute multimodal tourist circuits.", + "icon": "Loopi.svg", + "saas": true, + "scriptSrc": [ + "widget\\.loopi-velo\\.fr/" + ], + "website": "https://www.loopi.fr" + }, "Loops": { "cats": [ 32 @@ -2739,6 +3717,61 @@ ], "website": "https://lottiefiles.com" }, + "Lovable": { + "cats": [ + 51 + ], + "cookies": { + "lovable-preview-mode": "" + }, + "description": "Lovable is an AI-powered collaborative page builder for generating UI components, projects, and templates in real time.", + "dom": { + "link[href*='/lovable-uploads/']": { + "exists": "" + } + }, + "icon": "Lovable.svg", + "js": { + "LOV_SELECTOR_SCRIPT_VERSION": "^[\\d\\.]+$" + }, + "meta": { + "author": "lovable" + }, + "pricing": [ + "freemium", + "low", + "recurring" + ], + "saas": true, + "website": "https://lovable.dev" + }, + "Lovingly": { + "cats": [ + 6 + ], + "description": "Lovingly is a florist website resource builder that provides tools for creating and managing online floral business platforms.", + "icon": "Lovingly.svg", + "pricing": [ + "low", + "recurring" + ], + "saas": true, + "scripts": [ + "api\\.lovingly\\.com" + ], + "website": "https://www.lovingly.com" + }, + "Loyalis": { + "cats": [ + 84 + ], + "description": "Loyalis is a loyalty program for ecommerce that enables businesses to reward customers based on purchases and engagement.", + "js": { + "loyalisOptions.key": "" + }, + "saas": true, + "website": "https://www.loyalis.nl" + }, "LoyaltyLion": { "cats": [ 84 @@ -2758,6 +3791,60 @@ ], "website": "https://loyaltylion.com" }, + "LoyaltyLoop": { + "cats": [ + 90 + ], + "description": "LoyaltyLoop is an online review management platform that leverages customer loyalty surveys and Net Promoter Score tracking to enhance business reputation and strengthen customer relationships.", + "icon": "LoyaltyLoop.svg", + "js": { + "LoyaltyLoopEventListenerInitialized": "", + "countOfLoyaltyLoopTestimonialWidgets": "" + }, + "pricing": [ + "low", + "recurring", + "poa" + ], + "saas": true, + "scriptSrc": [ + "app\\.loyaltyloop\\.com/" + ], + "website": "https://loyaltyloop.com" + }, + "Loyalzoo": { + "cats": [ + 84 + ], + "description": "Loyalzoo is a platform that enables businesses to manage customer loyalty, marketing campaigns, and subscription services.", + "icon": "Loyalzoo.svg", + "pricing": [ + "low", + "recurring" + ], + "saas": true, + "scripts": [ + "\\.loyalzoo\\.com" + ], + "website": "https://loyalzoo.com" + }, + "Loyoly": { + "cats": [ + 84 + ], + "description": "Loyoly is a loyalty and referral platform integrating user-generated content and reviews, enabling customer engagement with brands.", + "icon": "Loyoly.svg", + "pricing": [ + "mid", + "recurring", + "poa" + ], + "saas": true, + "scriptSrc": [ + "assets\\.loyoly\\.io/" + ], + "website": "https://www.loyoly.io" + }, "Lozad.js": { "cats": [ 59, @@ -2814,8 +3901,8 @@ "implies": [ "Java" ], - "website": "https://lucene.apache.org/core/", - "oss": true + "oss": true, + "website": "https://lucene.apache.org/core/" }, "Lucide": { "cats": [ @@ -2859,10 +3946,26 @@ ], "icon": "Luigisbox.svg", "js": { - "Luigis": "" + "Luigis": "", + "LuigisBox": "" }, "website": "https://www.luigisbox.com" }, + "Luma": { + "cats": [ + 104 + ], + "description": "Luma is a platform for creating event pages, sending invites, and managing tickets.", + "icon": "Luma.svg", + "js": { + "luma.initCheckout": "" + }, + "saas": true, + "scriptSrc": [ + "embed\\.lu\\.ma" + ], + "website": "https://lu.ma" + }, "Lume": { "cats": [ 57 @@ -2878,6 +3981,21 @@ "oss": true, "website": "https://lume.land" }, + "Lumino": { + "cats": [ + 10 + ], + "description": "Lumino is a data platform that helps Shopify brands optimize marketing, conversions, and user experience by leveraging data.", + "icon": "Lumino.svg", + "requires": [ + "Shopify" + ], + "saas": true, + "scripts": [ + "api\\.getlumino\\.ai" + ], + "website": "https://getlumino.ai" + }, "Lumio": { "cats": [ 10 @@ -2985,6 +4103,22 @@ ], "website": "https://lunrjs.com/" }, + "Luveedu Cloud": { + "cats": [ + 88 + ], + "description": "Luveedu Cloud is a domain and web hosting platform.", + "icon": "LuveeduCloud.svg", + "pricing": [ + "low", + "recurring" + ], + "saas": true, + "scriptSrc": [ + "cdn\\.luveedu\\.com/" + ], + "website": "https://cloud.luveedu.com" + }, "Lychee": { "cats": [ 7 diff --git a/src/technologies/m.json b/src/technologies/m.json index bdc06fa8..ed1dd1fa 100644 --- a/src/technologies/m.json +++ b/src/technologies/m.json @@ -111,8 +111,34 @@ "mdui.Drawer": "" }, "oss": true, + "scripts": [ + "www\\.mdui\\.org" + ], "website": "https://www.mdui.org" }, + "MDirector": { + "cats": [ + 32 + ], + "description": "MDirector is an all-in-one digital marketing platform that centralizes email, SMS, and automation tools to manage campaigns and analyze audience engagement.", + "icon": "MDirector.svg", + "pricing": [ + "freemium", + "low", + "recurring" + ], + "requires": [ + "WordPress" + ], + "saas": true, + "scriptSrc": [ + "/wp-content/plugins/mdirector-newsletter/public/js/mdirector-newsletter-public\\.js" + ], + "scripts": [ + "app\\.mdirector\\.com" + ], + "website": "https://www.mdirector.com" + }, "MGID": { "cats": [ 36 @@ -211,6 +237,10 @@ ], "cpe": "cpe:2.3:a:modx:modx_revolution:*:*:*:*:*:*:*:*", "description": "MODX (originally MODx) is an open source content management system and web application framework for publishing content on the World Wide Web and intranets.", + "dom": [ + "form[id*='ajaxSearch_form']", + "input[id*='ajaxSearch_input']" + ], "headers": { "X-Powered-By": "^MODX" }, @@ -227,7 +257,8 @@ ], "js": { "MODX": "", - "MODX_MEDIA_PATH": "" + "MODX_MEDIA_PATH": "", + "miniShop2Config.actionUrl": "/assets/components/minishop2/" }, "meta": { "generator": "MODX[^\\d.]*([\\d.]+)?\\;version:\\1" @@ -242,6 +273,18 @@ ], "website": "https://modx.com/content-management-framework" }, + "MRI Box and Dice": { + "cats": [ + 53 + ], + "description": "MRI Box and Dice is a CRM platform designed for real estate agencies, providing tools for managing client relationships, property listings, and transactions.", + "icon": "MRISoftware.svg", + "saas": true, + "scriptSrc": [ + "assets\\.boxdice\\.com\\.au" + ], + "website": "https://www.mrisoftware.com/au/products/box-and-dice/" + }, "MRI Eagle": { "cats": [ 53 @@ -250,7 +293,7 @@ "dom": [ "link[href*='cdn.eaglesoftware.com.au']" ], - "icon": "MRIEagle.svg", + "icon": "MRISoftware.svg", "pricing": [ "poa" ], @@ -274,6 +317,22 @@ ], "website": "https://www.mrw.es" }, + "MSAAQ": { + "cats": [ + 6 + ], + "description": "MSAAQ is a platform that allows users to create, sell, and manage their products or services from a single location.", + "icon": "MSAAQ.svg", + "meta": { + "generator": "msaaq\\.com" + }, + "pricing": [ + "low", + "recurring" + ], + "saas": true, + "website": "https://msaaq.com" + }, "MSHOP": { "cats": [ 6 @@ -334,6 +393,23 @@ "saas": true, "website": "https://mui.com" }, + "Maatoo": { + "cats": [ + 32 + ], + "description": "Maatoo is an all-in-one marketing tool designed to streamline campaign management, customer engagement, and analytics in a single platform.", + "icon": "Maatoo.svg", + "pricing": [ + "mid", + "recurring", + "poa" + ], + "saas": true, + "scripts": [ + "\\.maatoo\\.io" + ], + "website": "https://maatoo.io" + }, "Mabisy": { "cats": [ 6 @@ -355,12 +431,12 @@ "cats": [ 18 ], + "cpe": "cpe:2.3:a:go-macaron:macaron:*:*:*:*:*:*:*:*", "description": "Macaron is a high productive and modular web framework in Go.", "icon": "Macaron.svg", "implies": [ "Go" ], - "cpe": "cpe:2.3:a:go-macaron:macaron:*:*:*:*:*:*:*:*", "website": "https://go-macaron.com" }, "MachoThemes NewsMag": { @@ -384,6 +460,22 @@ ], "website": "https://www.machothemes.com/item/newsmag-lite" }, + "MacroActive": { + "cats": [ + 1 + ], + "description": "MacroActive is a customizable coaching platform designed to help professionals build and manage their own branded programs and client communities.", + "dom": [ + "link[href*='.macroactivemvp.com']" + ], + "icon": "MacroActive.svg", + "js": { + "MA.customerToken": "", + "MAnalytics": "" + }, + "saas": true, + "website": "https://macroactive.com" + }, "MadAdsMedia": { "cats": [ 36 @@ -416,6 +508,56 @@ "saas": true, "website": "https://www.madcapsoftware.com" }, + "MadKudu": { + "cats": [ + 32 + ], + "description": "MadKudu is a platform that enhances sales and marketing systems by providing actionable predictive analytics, enabling businesses to optimize strategies with data-driven insights.", + "dom": [ + "link[href*='cdn.madkudu.com']" + ], + "icon": "MadKudu.svg", + "saas": true, + "scriptSrc": [ + "cdn\\.madkudu\\.com" + ], + "website": "https://www.madkudu.com" + }, + "Maestra": { + "cats": [ + 32 + ], + "description": "Maestra is an all-in-one marketing platform designed to support the growth and scaling of brands.", + "icon": "Maestra.svg", + "js": { + "maestra.queue": "" + }, + "pricing": [ + "high", + "recurring" + ], + "saas": true, + "scriptSrc": [ + "api\\.maestra\\.io" + ], + "website": "https://maestra.io" + }, + "Maestrus": { + "cats": [ + 21 + ], + "description": "Maestrus is a complete EAD platform that enables course sales, employee training, and secure content delivery with personalization.", + "dom": [ + "div#maestrus-carousel > div#myMaestrus-carousel" + ], + "icon": "Maestrus.svg", + "pricing": [ + "mid", + "recurring" + ], + "saas": true, + "website": "https://maestrus.com" + }, "Magazord": { "cats": [ 6 @@ -431,6 +573,23 @@ "saas": true, "website": "https://www.magazord.com.br" }, + "MageMail": { + "cats": [ + 75 + ], + "description": "MageMail is a triggered email application for Magento that helps online retailers enhance customer engagement and increase revenue.", + "icon": "MageMail.svg", + "js": { + "Mage.Cookies": "", + "MageMailData.capture_email": "", + "MageRewards": "" + }, + "requires": [ + "Magento" + ], + "saas": true, + "website": "https://magemail.co" + }, "MageWorx Search Autocomplete": { "cats": [ 29 @@ -508,6 +667,57 @@ "oss": true, "website": "https://github.com/magewirephp/magewire" }, + "Magic UI": { + "cats": [ + 66 + ], + "description": "Magic UI is a UI library featuring open-source animated components built with React, TypeScript, Tailwind CSS, and Framer Motion.", + "dom": [ + "iframe[src*='.magicui.design']", + "a[href*='magicui.design'] > video[src*='cdn.magicui.design']" + ], + "icon": "MagicUI.svg", + "oss": true, + "website": "https://magicui.design/" + }, + "MagicBell": { + "cats": [ + 5 + ], + "description": "MagicBell is an embeddable notification inbox that allows applications to display and manage user notifications within their interfaces.", + "headers": { + "Content-Security-Policy": "\\.magicbell\\.com" + }, + "icon": "MagicBell.svg", + "pricing": [ + "freemium", + "mid", + "recurring" + ], + "saas": true, + "website": "https://www.magicbell.com" + }, + "MagicLabs": { + "cats": [ + 69 + ], + "description": "MagicLabs is a platform that simplifies creating and using Web3 wallets by eliminating the need for seed phrases or downloads, providing a way to build on-chain solutions.", + "icon": "MagicLabs.svg", + "js": { + "Magic.AuthEventOnReceived": "" + }, + "pricing": [ + "freemium", + "mid", + "recurring", + "poa" + ], + "saas": true, + "scriptSrc": [ + "\\.auth\\.magic\\.link" + ], + "website": "https://magic.link" + }, "Magisto": { "cats": [ 14 @@ -563,6 +773,18 @@ ], "website": "https://www.maglr.com" }, + "Magnews": { + "cats": [ + 32 + ], + "description": "Magnews is an AI-driven marketing platform designed to support omnichannel customer journey management.", + "dom": [ + "form[action*='.magnews.net/']" + ], + "icon": "Magnews.svg", + "saas": true, + "website": "https://www.magnews.it" + }, "Magnific Popup": { "cats": [ 59 @@ -640,6 +862,30 @@ "saas": true, "website": "https://mahara.org" }, + "Maho": { + "cats": [ + 6, + 1 + ], + "cookies": { + "maho_session": "" + }, + "description": "Maho is a modern, open-source ecommerce platform forked from OpenMage, offering enhanced developer experience while maintaining Magento 1 compatibility.", + "icon": "Maho.svg", + "implies": [ + "MySQL", + "PHP" + ], + "scriptSrc": [ + "js/maho-autocomplete\\.js", + "js/maho-captcha\\.js", + "js/maho-dialog\\.js", + "js/maho-load-on-intent\\.js", + "js/maho-passkey-tools\\.js", + "js/maho-tree\\.js" + ], + "website": "https://mahocommerce.com" + }, "MailChimp": { "cats": [ 32, @@ -655,7 +901,8 @@ "dom": [ "form#mc-embedded-subscribe-form", "form[name*='mc-embedded-subscribe-form']", - "form[class*='mailchimp-ext-']" + "form[class*='mailchimp-ext-']", + "input#mc-email" ], "html": [ "]*id=\"mc-email\"\\;confidence:20", @@ -903,6 +1150,27 @@ "saas": true, "website": "https://www.mailmunch.com" }, + "Mailocator": { + "cats": [ + 32 + ], + "description": "Mailocator is a display platform designed to enhance conversions by facilitating lead collection, data gathering, and sales growth.", + "icon": "Mailocator.svg", + "js": { + "Mailocator5": "", + "MailocatorTestDisplay": "" + }, + "pricing": [ + "low", + "recurring", + "payg" + ], + "saas": true, + "scripts": [ + "app\\.mailocator\\.com" + ], + "website": "https://mailocator.com" + }, "MainAd": { "cats": [ 36 @@ -918,6 +1186,18 @@ ], "website": "https://www.mainad.com" }, + "Mainboard": { + "cats": [ + 72 + ], + "description": "Mainboard is a software platform designed to manage, schedule, and book talent.", + "headers": { + "server": "Mainboard\\.com" + }, + "icon": "Mainboard.svg", + "saas": true, + "website": "https://www.mainboard.com" + }, "Mainstay": { "cats": [ 52, @@ -947,6 +1227,62 @@ "saas": true, "website": "https://www.maisey.co" }, + "Maisie": { + "cats": [ + 52 + ], + "description": "Maisie is an AI-powered conversational assistant that provides automated sales and customer support by handling queries around the clock.", + "icon": "Maisie.svg", + "js": { + "maisieChatBotContext": "", + "maisieWebpackJsonpFunction": "" + }, + "pricing": [ + "low", + "recurring", + "poa" + ], + "saas": true, + "scriptSrc": [ + "app\\.mymaisie\\.com" + ], + "website": "https://www.maisieai.com" + }, + "Makaira": { + "cats": [ + 108 + ], + "description": "Makaira is a commerce frontend designed for headless shop systems.", + "headers": { + "Content-Security-Policy": "\\.makaira\\.io", + "X-Makaira-Scenario": "" + }, + "icon": "Makaira.svg", + "pricing": [ + "high", + "recurring" + ], + "saas": true, + "scriptSrc": [ + "\\.makaira\\.io" + ], + "website": "https://www.makaira.io" + }, + "Makane": { + "cats": [ + 6 + ], + "description": "Makane is a platform for creating websites and online stores.", + "icon": "Makane.svg", + "pricing": [ + "poa" + ], + "saas": true, + "scriptSrc": [ + "cdn\\.makane\\.com" + ], + "website": "https://makane.com" + }, "Make-Sense": { "cats": [ 68 @@ -989,6 +1325,46 @@ }, "website": "https://www.makeshop.co.kr" }, + "Maker": { + "cats": [ + 6 + ], + "description": "Maker is a platform that enables the creation, management, and optimization of ecommerce content without requiring coding knowledge.", + "icon": "Maker.svg", + "js": { + "MakerEmbeds.run": "", + "MakerEnhance": "", + "MakerEnhanceEmbed": "", + "MakerExperiment": "" + }, + "pricing": [ + "poa" + ], + "saas": true, + "website": "https://www.maker.co" + }, + "Makeswift": { + "cats": [ + 51 + ], + "description": "Makeswift is a no-code website builder with the power and detail of a design tool.", + "headers": { + "Access-Control-Allow-Origin": "app\\.makeswift\\.com", + "Content-Security-Policy": "app\\.makeswift\\.com" + }, + "icon": "Makeswift.svg", + "pricing": [ + "freemium", + "mid", + "recurring", + "poa" + ], + "saas": true, + "scripts": [ + "app\\.makeswift\\.com" + ], + "website": "https://www.makeswift.com" + }, "Malomo": { "cats": [ 107 @@ -1039,6 +1415,24 @@ ], "website": "https://www.manatee.io" }, + "MangaReader": { + "cats": [ + 80 + ], + "description": "MangaReader is a WordPress theme designed for creating websites, offering customizable layouts and responsive design.", + "icon": "MangaReader.svg", + "pricing": [ + "onetime", + "low" + ], + "requires": [ + "WordPress" + ], + "scripts": [ + "mangareader\\.themesia" + ], + "website": "https://themesia.com/mangareader-wordpress-theme" + }, "Mangeznotez": { "cats": [ 5, @@ -1175,9 +1569,41 @@ ], "website": "https://github.com/maplibre/maplibre-gl-js" }, - "MapPress": { + "MapLoco": { "cats": [ - 5, + 35 + ], + "description": "MapLoco is a tool that displays website visitor locations on an interactive map for analysis and tracking.", + "dom": [ + "a[href*='m.maploco.com'] > img[src*='www.maploco.com']" + ], + "icon": "MapLoco.svg", + "saas": true, + "website": "https://maploco.com" + }, + "MapMyChannel": { + "cats": [ + 107 + ], + "description": "MapMyChannel is a cloud-based fulfillment platform that integrates with ecommerce systems to automate inventory, shipping, and order management.", + "icon": "MapMyChannel.svg", + "pricing": [ + "freemium", + "mid", + "recurring" + ], + "requiresCategory": [ + 6 + ], + "saas": true, + "scriptSrc": [ + "\\.mapmychannel\\.com/" + ], + "website": "https://www.mapmychannel.com" + }, + "MapPress": { + "cats": [ + 5, 87 ], "description": "MapPress is a WordPress plugin that provides easy integration of interactive maps into WordPress websites.", @@ -1195,6 +1621,21 @@ ], "website": "https://mappresspro.com" }, + "MapTrack": { + "cats": [ + 45 + ], + "description": "MapTack is a platform to audit and manage assets from a single interface.", + "icon": "MapTrack.svg", + "pricing": [ + "poa" + ], + "saas": true, + "scripts": [ + "app\\.maptrackpro\\.com" + ], + "website": "https://maptrack.com" + }, "Mapbox GL JS": { "cats": [ 35 @@ -1234,6 +1675,24 @@ ], "website": "https://github.com/mapbox/mapbox.js" }, + "Mapline": { + "cats": [ + 35 + ], + "description": "Mapline is a geo-powered analytics platform designed to deliver location-based insights worldwide.", + "dom": [ + "iframe[src*='app.mapline.com']" + ], + "headers": { + "Access-Control-Allow-Origin": "app\\.mapline\\.com" + }, + "icon": "Mapline.svg", + "pricing": [ + "poa" + ], + "saas": true, + "website": "https://mapline.com" + }, "Mapme": { "cats": [ 35 @@ -1276,6 +1735,24 @@ "saas": true, "website": "https://mapp.com" }, + "Mappedin": { + "cats": [ + 35 + ], + "description": "Mappedin is an all-in-one indoor mapping platform designed for scalability.", + "headers": { + "Content-Security-Policy": "\\.mappedin\\.com" + }, + "icon": "Mappedin.svg", + "pricing": [ + "freemium", + "low", + "recurring", + "poa" + ], + "saas": true, + "website": "https://www.mappedin.com" + }, "Mapplic": { "cats": [ 35 @@ -1312,6 +1789,24 @@ "oss": true, "website": "https://maptalks.org" }, + "Maptiler": { + "cats": [ + 35 + ], + "description": "Maptiler is a mapping platform offering visual tools, global data, SDKs, and APIs for enterprise application development.", + "icon": "Maptiler.svg", + "pricing": [ + "freemium", + "low", + "recurring", + "poa" + ], + "saas": true, + "scripts": [ + "api\\.maptiler\\.com" + ], + "website": "https://www.maptiler.com" + }, "Marcando": { "cats": [ 6 @@ -1450,6 +1945,18 @@ ], "website": "https://marker.io" }, + "MarketHero": { + "cats": [ + 32 + ], + "description": "Market Hero is a platform that automates ROI calculations for ecommerce businesses, streamlining financial performance tracking and providing data-driven insights.", + "icon": "MarketHero.svg", + "saas": true, + "scripts": [ + "tracking\\.markethero\\.io" + ], + "website": "https://markethero.io" + }, "MarketPlan": { "cats": [ 10, @@ -1471,10 +1978,24 @@ ], "website": "https://www.gomarketplan.io" }, + "Marketify": { + "cats": [ + 32 + ], + "description": "Marketify is an app designed to engage audiences, expand email lists, and increase conversion rates.", + "saas": true, + "scripts": [ + "\\.marketify\\.co" + ], + "website": "https://marketify.co" + }, "Marketo": { "cats": [ 32 ], + "cookies": { + "_mkto_trk": "" + }, "description": "Marketo develops and sells marketing automation software for account-based marketing and other marketing services and products including SEO and content creation.", "icon": "Marketo.svg", "js": { @@ -1598,6 +2119,65 @@ ], "website": "https://www.marsx.dev" }, + "Marsello": { + "cats": [ + 84 + ], + "cookies": { + "marselloExitPopup": "" + }, + "description": "Marsello is an omnichannel loyalty platform that integrates with sales channels, enhancing customer engagement and retention by providing a unified experience across various points of sale.", + "icon": "Marsello.svg", + "pricing": [ + "mid", + "recurring", + "poa" + ], + "saas": true, + "scripts": [ + "app\\.marsello\\.com" + ], + "website": "https://www.marsello.com" + }, + "Marshal": { + "cats": [ + 68 + ], + "description": "Marshal is a platform that ensures businesses achieve compliance and accessibility.", + "icon": "Marshal.svg", + "pricing": [ + "low", + "recurring" + ], + "saas": true, + "scriptSrc": [ + "app\\.usemarshal\\.co" + ], + "website": "https://usemarshal.co" + }, + "Mashore Method": { + "cats": [ + 53 + ], + "description": "Mashore Method is a CRM software designed for real estate businesses to manage customer relationships in one centralized platform.", + "icon": "MashoreMethod.svg", + "saas": true, + "scripts": [ + "app\\.mashoremethod\\.com" + ], + "website": "https://mashoremethod.com" + }, + "Masonry": { + "cats": [ + 59 + ], + "description": "Masonry is a JavaScript library that enables a cascading grid layout, positioning elements based on available vertical space for an optimized, gap-free arrangement.", + "js": { + "Masonry.Item": "" + }, + "oss": true, + "website": "https://masonry.desandro.com" + }, "Massflow": { "cats": [ 10 @@ -1659,6 +2239,29 @@ "icon": "Mastercard.svg", "website": "https://www.mastercard.com" }, + "Masteriyo": { + "cats": [ + 21 + ], + "description": "Masteriyo is a course creation and monetization tool for WordPress.", + "dom": [ + "style[id*='masteriyo-public-inline-css']" + ], + "icon": "Masteriyo.svg", + "js": { + "_MASTERIYO_WISHLIST_ADDON_": "" + }, + "pricing": [ + "freemium", + "low", + "recurring", + "onetime" + ], + "requires": [ + "WordPress" + ], + "website": "https://masteriyo.com" + }, "MasterkinG32 Framework": { "cats": [ 18 @@ -1673,6 +2276,18 @@ }, "website": "https://masterking32.com" }, + "Mastery Manager": { + "cats": [ + 21 + ], + "description": "Mastery Manager is a student learning system designed to track academic progress, evaluate performance, and support data-driven instructional planning.", + "icon": "MasteryManager.svg", + "saas": true, + "scriptSrc": [ + "cdn\\.masterymanager\\.com" + ], + "website": "https://masterymanager.com" + }, "Mastodon": { "cats": [ 2 @@ -1680,11 +2295,11 @@ "cookies": { "_mastodon_session": "" }, + "cpe": "cpe:2.3:a:joinmastodon:mastodon:*:*:*:*:*:*:*:*", "description": "Mastodon is a free and open-source self-hosted social networking service.", "headers": { "Server": "^Mastodon$" }, - "cpe": "cpe:2.3:a:joinmastodon:mastodon:*:*:*:*:*:*:*:*", "icon": "Mastodon.svg", "website": "https://joinmastodon.org" }, @@ -1704,6 +2319,30 @@ ], "website": "https://mapp.sa" }, + "Matchi": { + "cats": [ + 72 + ], + "description": "Matchi is a platform for racket sports enthusiasts to search, book, and play tennis, badminton, table tennis, squash, or padel.", + "icon": "Matchi.svg", + "saas": true, + "scriptSrc": [ + "\\.matchi\\.com/" + ], + "website": "https://www.matchi.se" + }, + "Matchlab": { + "cats": [ + 101 + ], + "description": "Matchlab is a recruitment platform that enables employers to attract top talent by directly identifying and engaging the best candidates.", + "icon": "Matchlab.svg", + "saas": true, + "scripts": [ + "matchlabSections" + ], + "website": "https://match-lab.nl" + }, "Material Design Lite": { "cats": [ 66 @@ -1714,13 +2353,42 @@ ], "icon": "Material Design Lite.svg", "js": { - "MaterialIconToggle": "" + "MaterialButton": "", + "MaterialIconToggle": "", + "MaterialLayout": "" }, "scriptSrc": [ "(?:/([\\d.]+))?/material(?:\\.min)?\\.js\\;version:\\1" ], "website": "https://getmdl.io" }, + "Material UI": { + "cats": [ + 66 + ], + "css": [ + "\\.MuiPaper-root", + "\\.Mui-disabled" + ], + "description": "Material UI is a simple and customisable component library to build faster, beautiful, and more accessible React applications.", + "dom": [ + "style[data-meta='MuiPaper'], div.MuiBox-root, div.MuiPaper-root, style[data-meta='MuiButton'], input.MuiInputBase-input, div.MuiContainer-root, .MuiButton-root" + ], + "icon": "MUI.svg", + "implies": [ + "React" + ], + "oss": true, + "pricing": [ + "freemium", + "payg" + ], + "saas": true, + "scripts": [ + "https://mui\\.com" + ], + "website": "https://mui.com" + }, "Materialize CSS": { "cats": [ 66 @@ -1740,6 +2408,7 @@ "cats": [ 25 ], + "cpe": "cpe:2.3:a:mathjax:mathjax:*:*:*:*:*:*:*:*", "description": "MathJax is a cross-browser JavaScript library that displays mathematical notation in web browsers, using MathML, LaTeX and ASCIIMathML markup.", "icon": "MathJax.svg", "js": { @@ -1749,7 +2418,6 @@ "scriptSrc": [ "([\\d.]+)?/mathjax\\.js\\;version:\\1" ], - "cpe": "cpe:2.3:a:mathjax:mathjax:*:*:*:*:*:*:*:*", "website": "https://www.mathjax.org" }, "Matjrah": { @@ -1780,7 +2448,9 @@ "icon": "Matomo.svg", "js": { "Matomo": "", - "Piwik": "" + "Piwik": "", + "matomoSitesIDS": "", + "matomoTrackPage": "" }, "meta": { "apple-itunes-app": "app-id=737216887", @@ -1795,6 +2465,9 @@ "scriptSrc": [ "piwik\\.js|piwik\\.php" ], + "scripts": [ + "matomo\\.js" + ], "website": "https://matomo.org" }, "Matomo Tag Manager": { @@ -1832,15 +2505,15 @@ ], "description": "Matter.js is a JavaScript 2D rigid body physics engine for the web.", "icon": "MatterJs.svg", + "js": { + "Matter.version": "^(.+)$\\;version:\\1" + }, "oss": true, + "saas": true, "scriptSrc": [ "matter(?:-wrap)?(?:\\/demo\\/js\\/lib(?:\\/matter-tools\\/jquery)?(?:\\/decomp)?)?(?:\\/?-?((?:\\d+\\.)+\\d+))?(?:\\.min)?\\.js\\;version:\\1" ], - "website": "https://brm.io/matter-js", - "saas": true, - "js": { - "Matter.version": "^(.+)$\\;version:\\1" - } + "website": "https://brm.io/matter-js" }, "Mattermost": { "cats": [ @@ -1863,8 +2536,6 @@ "mm_user": "", "webpackChunkmattermost_webapp": "" }, - "website": "https://about.mattermost.com", - "saas": true, "meta": { "application-name": "^Mattermost$" }, @@ -1873,7 +2544,9 @@ "low", "recurring", "poa" - ] + ], + "saas": true, + "website": "https://about.mattermost.com" }, "Mautic": { "cats": [ @@ -1892,12 +2565,31 @@ ], "website": "https://www.mautic.org/" }, + "Mava": { + "cats": [ + 52 + ], + "description": "Mava is an AI-driven customer support platform that scales customer support and success by connecting to private, group, and community channels.", + "icon": "Mava.svg", + "js": { + "Mava.identify": "", + "MavaWebChatToggle": "" + }, + "pricing": [ + "freemium", + "mid", + "recurring", + "poa" + ], + "saas": true, + "website": "https://www.mava.app" + }, "Mavo": { "cats": [ 59 ], "description": "Mavo is a JavaScript library that enables web developers to turn regular HTML into reactive web applications without the need for writing custom JavaScript.", - "icon": "default.svg", + "icon": "Mavo.svg", "js": { "Mavo": "", "Mavo.version": "v([\\d\\.]+)\\;version:\\1" @@ -1969,6 +2661,7 @@ "cats": [ 1 ], + "description": "MaxSite CMS is a PHP-based content management system from Ukraine.", "icon": "MaxSite CMS.svg", "implies": [ "PHP" @@ -1976,9 +2669,8 @@ "meta": { "generator": "MaxSite CMS" }, - "website": "https://max-3000.com", "oss": true, - "description": "MaxSite CMS is a PHP-based content management system from Ukraine." + "website": "https://max-3000.com" }, "Maxemail": { "cats": [ @@ -2008,6 +2700,48 @@ "oss": true, "website": "https://cms.maxencedev.fr" }, + "MaxiCMS": { + "cats": [ + 1 + ], + "description": "MaxiCMS is a content management system (CMS) that allows website owners to manage and update content independently.", + "icon": "MaxiCMS.svg", + "pricing": [ + "poa" + ], + "saas": true, + "scriptSrc": [ + "cdn\\.maxicms\\.nl" + ], + "website": "https://www.maxicms.nl" + }, + "Maxxton": { + "cats": [ + 93 + ], + "description": "Maxxton is a reservation and property management system.", + "icon": "Maxxton.svg", + "saas": true, + "scriptSrc": [ + "\\.maxxton\\.net" + ], + "scripts": [ + "\\.maxxton\\.net" + ], + "website": "https://maxxton.com" + }, + "Mazrica": { + "cats": [ + 53 + ], + "description": "Mazrica is a sales support tool that leverages organizational knowledge, using AI algorithms to analyze accumulated sales data and evaluate success and failure cases.", + "icon": "Mazrica.svg", + "saas": true, + "scriptSrc": [ + "\\.mazrica\\.com/" + ], + "website": "https://mazrica.com" + }, "Measured": { "cats": [ 10 @@ -2023,6 +2757,18 @@ ], "website": "https://www.measured.com" }, + "Meazy": { + "cats": [ + 77 + ], + "description": "Meazy is a tool that provides automated remarketing solutions tailored for online stores.", + "icon": "Meazy.svg", + "saas": true, + "scripts": [ + "cdn\\.meazy\\.co/" + ], + "website": "https://meazy.co" + }, "Medallia": { "cats": [ 10, @@ -2044,6 +2790,22 @@ ], "website": "https://www.medallia.com" }, + "Medchat": { + "cats": [ + 52 + ], + "description": "Medchat is a HIPAA-compliant platform that provides patient chat services powered by AI agents.", + "icon": "Medchat.svg", + "js": { + "MedChat": "", + "MedChatApp": "" + }, + "saas": true, + "scriptSrc": [ + "widget-ui\\.medchatapp\\.com/" + ], + "website": "https://medchatapp.com" + }, "Media.net": { "cats": [ 36 @@ -2071,12 +2833,30 @@ }, "website": "https://www.mediaelementjs.com" }, + "MediaPlatform": { + "cats": [ + 103 + ], + "description": "MediaPlatform is enterprise video and webcasting software designed for corporate communications.", + "icon": "MediaPlatform.svg", + "js": { + "mediaPlatformLoginUrl": "" + }, + "saas": true, + "website": "https://www.mediaplatform.com" + }, "MediaWiki": { "cats": [ 8 ], + "cookies": { + "wiki\\d+_session": "" + }, "cpe": "cpe:2.3:a:mediawiki:mediawiki:*:*:*:*:*:*:*:*", "description": "MediaWiki is a free and open-source wiki engine.", + "dom": [ + "body[class*='mediawiki']" + ], "html": [ "]+class=\"mediawiki\"", "<(?:a|img)[^>]+>Powered by MediaWiki", @@ -2153,26 +2933,48 @@ ], "website": "https://medium.com" }, + "Medoc": { + "cats": [ + 6 + ], + "description": "Medoc is a retail and ecommerce system.", + "icon": "Medoc.svg", + "meta": { + "copyright": "Copyright \\(C\\) \\d{4}-\\d{4} Medoc Computers Ltd" + }, + "saas": true, + "website": "https://medoc.co.uk" + }, "Medusajs": { "cats": [ 6 ], + "cookies": { + "medusa.sid": "" + }, "description": "Medusa is an open-source ecommerce platform that enables users to create online stores.", "dom": [ "div.content-container > a[href*='www.medusajs.com'], a[href*='mailto:hello@medusajs.com']" ], "icon": "MedusaJs.svg", "oss": true, - "website": "https://medusajs.com/" + "website": "https://medusajs.com" }, "Meebo": { "cats": [ 5 ], + "description": "Meebo is a widget that is integrated into websites to facilitate link sharing.", "html": [ "(?: