diff --git a/Prompt_Generator/.github/ISSUE_TEMPLATE/bug_report.md b/Prompt_Generator/.github/ISSUE_TEMPLATE/bug_report.md new file mode 100644 index 0000000000000000000000000000000000000000..5f0fb531d6dcfe85f5572ff2b55d4accd6f5566b --- /dev/null +++ b/Prompt_Generator/.github/ISSUE_TEMPLATE/bug_report.md @@ -0,0 +1,30 @@ +--- +name: Bug report +about: Create a report to help us improve +title: '' +labels: '' +assignees: '' + +--- + +**Describe the bug** +A clear and concise description of what the bug is. + +**To Reproduce** +Steps to reproduce the behavior: +1. Go to '...' +2. Click on '....' +3. Scroll down to '....' +4. See error + +**Expected behavior** +A clear and concise description of what you expected to happen. + +**Screenshots** +If applicable, add screenshots to help explain your problem. + +**What fork of Webui are you using (Eg: Automatic1111, vladmandic):** + + +**Additional context** +Add any other context about the problem here. diff --git a/Prompt_Generator/.github/ISSUE_TEMPLATE/custom.md b/Prompt_Generator/.github/ISSUE_TEMPLATE/custom.md new file mode 100644 index 0000000000000000000000000000000000000000..48d5f81fa422964dd1eea360efdecfc5dc9a6c87 --- /dev/null +++ b/Prompt_Generator/.github/ISSUE_TEMPLATE/custom.md @@ -0,0 +1,10 @@ +--- +name: Custom issue template +about: Describe this issue template's purpose here. +title: '' +labels: '' +assignees: '' + +--- + + diff --git a/Prompt_Generator/.github/ISSUE_TEMPLATE/feature_request.md b/Prompt_Generator/.github/ISSUE_TEMPLATE/feature_request.md new file mode 100644 index 0000000000000000000000000000000000000000..bbcbbe7d61558adde3cbfd0c7a63a67c27ed6d30 --- /dev/null +++ b/Prompt_Generator/.github/ISSUE_TEMPLATE/feature_request.md @@ -0,0 +1,20 @@ +--- +name: Feature request +about: Suggest an idea for this project +title: '' +labels: '' +assignees: '' + +--- + +**Is your feature request related to a problem? Please describe.** +A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] + +**Describe the solution you'd like** +A clear and concise description of what you want to happen. + +**Describe alternatives you've considered** +A clear and concise description of any alternative solutions or features you've considered. + +**Additional context** +Add any other context or screenshots about the feature request here. diff --git a/Prompt_Generator/.gitignore b/Prompt_Generator/.gitignore new file mode 100644 index 0000000000000000000000000000000000000000..a955dcd77bdcb17122cbb73ee977991e505c74c6 --- /dev/null +++ b/Prompt_Generator/.gitignore @@ -0,0 +1 @@ +/style.css \ No newline at end of file diff --git a/Prompt_Generator/README.md b/Prompt_Generator/README.md new file mode 100644 index 0000000000000000000000000000000000000000..ef3e98d142ed4209abc709aa73208cab71edf3a6 --- /dev/null +++ b/Prompt_Generator/README.md @@ -0,0 +1,60 @@ +# Prompt Generator + +Adds a tab to the webui that allows the user to generate a prompt from a small base prompt. Based on [FredZhang7/distilgpt2-stable-diffusion-v2](https://huggingface.co/FredZhang7/distilgpt2-stable-diffusion-v2) and [Gustavosta/MagicPrompt-Stable-Diffusion](https://huggingface.co/Gustavosta/MagicPrompt-Stable-Diffusion). I did nothing apart from porting it to [AUTOMATIC1111 WebUI](https://github.com/AUTOMATIC1111/stable-diffusion-webui) + + + +![Screenshot 2023-04-29 000027](https://user-images.githubusercontent.com/8998556/235261664-2c92689d-9915-4543-8d6a-57a8ecd0f484.png) + + +## Installation + +1. Install [AUTOMATIC1111's Stable Diffusion Webui](https://github.com/AUTOMATIC1111/stable-diffusion-webui) +2. Clone this repository into the `extensions` folder inside the webui + +## Usage + +1. Write in the prompt in the *Start of the prompt* text box +2. Select which model you want to use +3. Click Generate and wait + +The initial use of the model may take longer as it needs to be downloaded to your machine for offline use. The model will be used on your device and will be stored in the default location of `*username*/.cache/huggingface/hub/models`. The entire process of generating results will be done on your local machine and not require internet access. + +## Parameters Explanation + +- **Start of the prompt**: As the name suggests, the start of the prompt that the generator should start with +- **Temperature**: A higher temperature will produce more diverse results, but with a higher risk of less coherent text +- **Top K**: Strategy is to sample from a shortlist of the top K tokens. This approach allows the other high-scoring tokens a chance of being picked. +- **Max Length**: the maximum number of tokens for the output of the model +- **Repetition Penalty**: The parameter for repetition penalty. 1.0 means no penalty. See [this paper](https://arxiv.org/pdf/1909.05858.pdf) for more details. Default setting is 1.2 +- **How Many To Generate**: The number of results to generate +- **Use blacklist?**: Using `.\extensions\stable-diffusion-webui-Prompt_Generator\blacklist.txt`. It will delete any matches to the generated result (case insensitive). Each item to be filtered out should be on a new line. *Be aware that it simply deletes it and doesn't generate more to make up for the lost words* +- **Use punctuation**: Allows the use of commas in the output + +## Models + +There are two 'default' models provided: + +### FredZhang7 + +Made by [FredZhang7](https://huggingface.co/FredZhang7) under creativeml-openrail-m license. + +Useful to get styles for a prompt. Eg: "A cat sitting" -> "A cat sitting on a chair, digital art. The room is made of clay and metal with the sun shining through in front trending at Artstation 4k uhd..." + +### MagicPrompt + +Made by [Gustavosta](https://huggingface.co/Gustavosta) under the MIT license. + +Useful to get more natural language prompts. Eg: "A cat sitting" -> "A cat sitting in a chair, wearing pair of sunglasses" + +*Be aware that sometimes the model fails to produce anything or less than the wanted amount, either try again or use a new prompt in that case* + +## Install more models + +To install more model to use, ensure that the models are hosted on [huggingface.co](https://huggingface.co) and edit the json file at `.\extensions\stable-diffusion-webui-Prompt_Generator\models.json` with the relevant information. Use the models in the file as an example + +You might need to restart the extension/reload the UI if new items are added onto the list + +## Credits + +Credits to both [FredZhang7](https://huggingface.co/FredZhang7) and [Gustavosta](https://huggingface.co/Gustavosta) diff --git a/Prompt_Generator/blacklist.txt b/Prompt_Generator/blacklist.txt new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/Prompt_Generator/install.py b/Prompt_Generator/install.py new file mode 100644 index 0000000000000000000000000000000000000000..c22dc0899df5b489bf4ef88e8f5fbdb1dccf9924 --- /dev/null +++ b/Prompt_Generator/install.py @@ -0,0 +1,5 @@ +import launch +if not launch.is_installed("transformers"): + launch.run_pip("install --upgrade transformers", "Requirement of Prompt-Maker") +if not launch.is_installed("torch"): + launch.run_pip("install --upgrade torch", "Requirement of Prompt-Maker") \ No newline at end of file diff --git a/Prompt_Generator/javascript/prompt_generator_hints.js b/Prompt_Generator/javascript/prompt_generator_hints.js new file mode 100644 index 0000000000000000000000000000000000000000..f2d1821d2595a2d4fdb5872126584b4f4c3e0901 --- /dev/null +++ b/Prompt_Generator/javascript/prompt_generator_hints.js @@ -0,0 +1,42 @@ +//Basically copied and adapted from AUTOMATIC1111 implementation of the main UI +// mouseover tooltips for various UI elements in the form of "UI element label"="Tooltip text". + +prompt_generator_titles = { + "Temperature": "A higher temperature will produce more diverse results, but with a higher risk of less coherent text", + "Max Length": "The maximum number of tokens for the output of the model", + "Top K": "Strategy is to sample from a shortlist of the top K tokens. This approach allows the other high-scoring tokens a chance of being picked.", + "Repetition Penalty": "The parameter for repetition penalty. 1.0 means no penalty. Default setting is 1.2. Paper explaining it is linked to Github's readme", + "How Many To Generate":"The number of results to generate. Not guaranteed if models fails to create them", + "Generate Using Magic Prompt":"Be aware that sometimes the model fails to produce anything or less than the wanted amount, either try again or use a new prompt in that case" +} + +onUiUpdate(function(){ + gradioApp().querySelectorAll('span, button, select, p').forEach(function(span){ + tooltip = prompt_generator_titles[span.textContent]; + + if(!tooltip){ + tooltip = prompt_generator_titles[span.value]; + } + + if(!tooltip){ + for (const c of span.classList) { + if (c in prompt_generator_titles) { + tooltip = prompt_generator_titles[c]; + break; + } + } + } + + if(tooltip){ + span.title = tooltip; + } + }) + + gradioApp().querySelectorAll('select').forEach(function(select){ + if (select.onchange != null) return; + + select.onchange = function(){ + select.title = prompt_generator_titles[select.value] || ""; + } + }) +}) diff --git a/Prompt_Generator/licence b/Prompt_Generator/licence new file mode 100644 index 0000000000000000000000000000000000000000..ff52a7ccbf10e7650135b038763b836277b4c97b --- /dev/null +++ b/Prompt_Generator/licence @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2023 imrayya + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. \ No newline at end of file diff --git a/Prompt_Generator/models.json b/Prompt_Generator/models.json new file mode 100644 index 0000000000000000000000000000000000000000..6080a8fd1dd393c57543c9b8b45b0e203c6e0dcb --- /dev/null +++ b/Prompt_Generator/models.json @@ -0,0 +1,12 @@ +[ + { + "Title":"Gustavosta", + "Tokenizer":"gpt2", + "Model":"Gustavosta/MagicPrompt-Dalle" + }, + { + "Title":"FredZhang7", + "Tokenizer":"distilgpt2", + "Model":"FredZhang7/distilgpt2-stable-diffusion-v2" + } +] \ No newline at end of file diff --git a/Prompt_Generator/scripts/prompt_generator.py b/Prompt_Generator/scripts/prompt_generator.py new file mode 100644 index 0000000000000000000000000000000000000000..9e301703ae7d46da90cabd3153f21af1383264dc --- /dev/null +++ b/Prompt_Generator/scripts/prompt_generator.py @@ -0,0 +1,270 @@ +""" +Copyright 2023 Imrayya + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +""" + + +import json +import re + +import gradio as gr +import modules +from pathlib import Path +from modules import script_callbacks +import modules.scripts as scripts +from transformers import GPT2LMHeadModel, GPT2Tokenizer + +result_prompt = "" +models = {} +max_no_results = 20 # TODO move to setting panel +base_dir = scripts.basedir() +model_file = Path(base_dir, "models.json") + + +class Model: + ''' + Small strut to hold data for the text generator + ''' + + def __init__(self, name, model, tokenizer) -> None: + self.name = name + self.model = model + self.tokenizer = tokenizer + pass + + +def populate_models(): + """Get the models that this extension can use via models.json + """ + # TODO add button to refresh and update model list + path = model_file + with open(path, 'r') as f: + data = json.load(f) + for item in data: + name = item["Title"] + model = item["Model"] + tokenizer = item["Tokenizer"] + models[name] = Model(name, model, tokenizer) + + +def add_to_prompt(prompt): # A holder TODO figure out how to get rid of it + return prompt + + +def get_list_blacklist(): + # Set the directory you want to start from + file_path = './extensions/stable-diffusion-webui-Prompt_Generator/blacklist.txt' + things_to_black_list = [] + with open(file_path, 'r') as f: + # Read each line in the file and append it to the list + for line in f: + things_to_black_list.append(line.rstrip()) + + return things_to_black_list + + +def on_ui_tabs(): + # Method to create the extended prompt + def generate_longer_generic(prompt, temperature, top_k, + max_length, repetition_penalty, + num_return_sequences, name, use_punctuation=False, + use_blacklist=False): # TODO make the progress bar work + """Generates a longer string from the input + + Args: + prompt (str): As the name suggests, the start of the prompt that the generator should start with. + + temperature (float): A higher temperature will produce more diverse results, but with a higher risk of less coherent text + + top_k (float): Strategy is to sample from a shortlist of the top K tokens. This approach allows the other high-scoring tokens a chance of being picked. + + max_length (int): the maximum number of tokens for the output of the model + + repetition_penalty (float): The parameter for repetition penalty. 1.0 means no penalty. Default setting is 1.2 + + num_return_sequences (int): The number of results to generate + + name (str): Which Model to use + + use_punctuation (bool): Allows the use of commas in the output. Defaults to False. + + use_blacklist (bool): It will delete any matches to the generated result (case insensitive). Each item to be filtered out should be on a new line. Defaults to False. + + Returns: + Returns only an error otherwise saves it in result_prompt + """ + try: + print("[Prompt_Generator]:","Loading Tokenizer") + tokenizer = GPT2Tokenizer.from_pretrained(models[name].tokenizer) + tokenizer.add_special_tokens({'pad_token': '[PAD]'}) + print("[Prompt_Generator]:","Loading Model") + model = GPT2LMHeadModel.from_pretrained(models[name].model) + except Exception as e: + print("[Prompt_Generator]:",f"Exception encountered while attempting to install tokenizer") + return gr.update(), f"Error: {e}" + try: + print("[Prompt_Generator]:",f"Generate new prompt from: \"{prompt}\" with {name}") + input_ids = tokenizer(prompt, return_tensors='pt').input_ids + if (use_punctuation): + output = model.generate(input_ids, do_sample=True, temperature=temperature, + top_k=round(top_k), max_length=max_length, + num_return_sequences=num_return_sequences, + repetition_penalty=float( + repetition_penalty), + early_stopping=True) + else: + output = model.generate(input_ids, do_sample=True, temperature=temperature, + top_k=round(top_k), max_length=max_length, + num_return_sequences=num_return_sequences, + repetition_penalty=float( + repetition_penalty), + penalty_alpha=0.6, no_repeat_ngram_size=1, + early_stopping=True) + print("[Prompt_Generator]:","Generation complete!") + tempString = "" + if (use_blacklist): + blacklist = get_list_blacklist() + for i in range(len(output)): + + tempString += tokenizer.decode( + output[i], skip_special_tokens=True) + "\n" + + if (use_blacklist): + for to_check in blacklist: + tempString = re.sub( + to_check, "", tempString, flags=re.IGNORECASE) + if (i == 0): + global result_prompt + + result_prompt = tempString + # print(result_prompt) + except Exception as e: + print("[Prompt_Generator]:", + f"Exception encountered while attempting to generate prompt: {e}") + return gr.update(), f"Error: {e}" + + def ui_dynamic_result_visible(num): + """Makes the results visible""" + k = int(num) + return [gr.Row.update(visible=True)]*k + [gr.Row.update(visible=False)]*(max_no_results-k) + + def ui_dynamic_result_prompts(): + """Populates the results with the prompts""" + + lines = result_prompt.splitlines() + num = len(lines) + result_list = [] + for i in range(int(max_no_results)): + if (i < num): + result_list.append(lines[i]) + else: + result_list.append("") + return result_list + + def ui_dynamic_result_batch(): + return result_prompt + + def save_prompt_to_file(path, append: bool): + if len(result_prompt) == 0: + print("[Prompt_Generator]:","Prompt is empty") + return + with open(path, encoding="utf-8", mode="a" if append else "w") as f: + f.write(result_prompt) + print("[Prompt_Generator]:","Prompt written to: ", path) + + # ---------------------------------------------------------------------------- + # UI structure + txt2img_prompt = modules.ui.txt2img_paste_fields[0][0] + img2img_prompt = modules.ui.img2img_paste_fields[0][0] + + with gr.Blocks(analytics_enabled=False) as prompt_generator: + # Handles UI for prompt creation + with gr.Column(): + with gr.Row(): + prompt_textbox = gr.Textbox( + lines=2, elem_id="promptTxt", label="Start of the prompt") + with gr.Column(): + gr.HTML( + "Mouse over the labels to access tooltips that provide explanations for the parameters.") + with gr.Row(): + temp_slider = gr.Slider( + elem_id="temp_slider", label="Temperature", interactive=True, minimum=0, maximum=1, value=0.9) + maxLength_slider = gr.Slider( + elem_id="max_length_slider", label="Max Length", interactive=True, minimum=1, maximum=200, step=1, value=90) + topK_slider = gr.Slider( + elem_id="top_k_slider", label="Top K", value=8, minimum=1, maximum=20, step=1, interactive=True) + with gr.Column(): + with gr.Row(): + repetitionPenalty_slider = gr.Slider( + elem_id="repetition_penalty_slider", label="Repetition Penalty", value=1.2, minimum=0.1, maximum=10, interactive=True) + numReturnSequences_slider = gr.Slider( + elem_id="num_return_sequences_slider", label="How Many To Generate", value=5, minimum=1, maximum=max_no_results, interactive=True, step=1) + with gr.Column(): + with gr.Row(): + useBlacklist_checkbox = gr.Checkbox(label="Use blacklist?") + gr.HTML(value="
Using \".\extensions\stable-diffusion-webui-Prompt_Generator\\blacklist.txt\".
It will delete any matches to the generated result (case insensitive).
") + with gr.Column(): + with gr.Row(): + populate_models() + generate_dropdown = gr.Dropdown(choices=list(models.keys()), value=list(models.keys())[ + 1 if len(models) > 0 else 0], label="Which model to use?", show_label=True) # TODO Add default to setting page + use_punctuation_check = gr.Checkbox(label="Use punctuation?") + generate_button = gr.Button( + value="Generate", elem_id="generate_button") # TODO Add element to show that it is working in the background so users don't think nothing is happening + + # Handles UI for results + results_vis = [] + results_txt_list = [] + with gr.Tab("Results"): + with gr.Column(): + for i in range(max_no_results): + with gr.Row(visible=False) as row: + # Doesn't seem to do anything + row.style(equal_height=True) + with gr.Column(scale=3): # Guessing at the scale + textBox = gr.Textbox(label="", lines=3) + with gr.Column(scale=1): + txt2img = gr.Button("send to txt2img") + img2img = gr.Button("send to img2img") + # Handles ___2img buttons + txt2img.click(add_to_prompt, inputs=[ + textBox], outputs=[txt2img_prompt]).then(None, _js='switch_to_txt2img', + inputs=None, outputs=None) + img2img.click(add_to_prompt, inputs=[ + textBox], outputs=[img2img_prompt]).then(None, _js='switch_to_img2img', + inputs=None, outputs=None) + results_txt_list.append(textBox) + results_vis.append(row) + with gr.Tab("Batch"): + with gr.Column(): + batch_texbox = gr.Textbox("", label="Results") + with gr.Row(): + with gr.Column(scale=4): + savePathText = gr.Textbox( + Path(base_dir, "batch_prompt.txt"), label="Path", interactive=True) + with gr.Column(scale=1): + append_checkBox = gr.Checkbox(label="Append") + save_button = gr.Button("Save To file") + + # ---------------------------------------------------------------------------------- + # Handle buttons + save_button.click(fn=save_prompt_to_file, inputs=[ + savePathText, append_checkBox]) + # Please note that we use `.then()` to run other ui elements after the generation is done + generate_button.click(fn=generate_longer_generic, inputs=[ + prompt_textbox, temp_slider, topK_slider, maxLength_slider, + repetitionPenalty_slider, numReturnSequences_slider, + generate_dropdown, use_punctuation_check, useBlacklist_checkbox]).then( + fn=ui_dynamic_result_visible, inputs=numReturnSequences_slider, + outputs=results_vis).then( + fn=ui_dynamic_result_prompts, outputs=results_txt_list).then(fn=ui_dynamic_result_batch, outputs=batch_texbox) + return (prompt_generator, "Prompt Generator", "Prompt Generator"), + + +script_callbacks.on_ui_tabs(on_ui_tabs) diff --git a/adetailer/.github/ISSUE_TEMPLATE/bug_report.yaml b/adetailer/.github/ISSUE_TEMPLATE/bug_report.yaml new file mode 100644 index 0000000000000000000000000000000000000000..90a577252d7fb16397fd1b1da4117ca28343c622 --- /dev/null +++ b/adetailer/.github/ISSUE_TEMPLATE/bug_report.yaml @@ -0,0 +1,53 @@ +name: Bug report +description: Create a report +title: "[Bug]: " +labels: + - bug + +body: + - type: textarea + attributes: + label: Describe the bug + description: A clear and concise description of what the bug is. + placeholder: | + Any language accepted + 아무 언어 사용가능 + すべての言語に対応 + 接受所有语言 + Se aceptan todos los idiomas + Alle Sprachen werden akzeptiert + Toutes les langues sont acceptées + Принимаются все языки + + - type: textarea + attributes: + label: Screenshots + description: Screenshots related to the issue. + + - type: textarea + attributes: + label: Console logs, from start to end. + description: | + The full console log of your terminal. + placeholder: | + Python ... + Version: ... + Commit hash: ... + Installing requirements + ... + + Launching Web UI with arguments: ... + [-] ADetailer initialized. version: ... + ... + ... + + Traceback (most recent call last): + ... + ... + render: Shell + validations: + required: true + + - type: textarea + attributes: + label: List of installed extensions diff --git a/adetailer/.github/ISSUE_TEMPLATE/feature_request.yaml b/adetailer/.github/ISSUE_TEMPLATE/feature_request.yaml new file mode 100644 index 0000000000000000000000000000000000000000..c496137ce397dd21082f674eb4772edc529ee74e --- /dev/null +++ b/adetailer/.github/ISSUE_TEMPLATE/feature_request.yaml @@ -0,0 +1,24 @@ +name: Feature request +description: Suggest an idea for this project +title: "[Feature Request]: " + +body: + - type: textarea + attributes: + label: Is your feature request related to a problem? Please describe. + description: A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] + + - type: textarea + attributes: + label: Describe the solution you'd like + description: A clear and concise description of what you want to happen. + + - type: textarea + attributes: + label: Describe alternatives you've considered + description: A clear and concise description of any alternative solutions or features you've considered. + + - type: textarea + attributes: + label: Additional context + description: Add any other context or screenshots about the feature request here. diff --git a/adetailer/.github/ISSUE_TEMPLATE/question.yaml b/adetailer/.github/ISSUE_TEMPLATE/question.yaml new file mode 100644 index 0000000000000000000000000000000000000000..3c7945407890bc48dc5305fa979047a2bf2f58e8 --- /dev/null +++ b/adetailer/.github/ISSUE_TEMPLATE/question.yaml @@ -0,0 +1,10 @@ +name: Question +description: Write a question +labels: + - question + +body: + - type: textarea + attributes: + label: Question + description: Please do not write bug reports or feature requests here. diff --git a/adetailer/.github/workflows/stale.yml b/adetailer/.github/workflows/stale.yml new file mode 100644 index 0000000000000000000000000000000000000000..79ab8faf57a9e958a3cf784b5ada4994e8c528d2 --- /dev/null +++ b/adetailer/.github/workflows/stale.yml @@ -0,0 +1,13 @@ +name: 'Close stale issues and PRs' +on: + schedule: + - cron: '30 1 * * *' + +jobs: + stale: + runs-on: ubuntu-latest + steps: + - uses: actions/stale@v8 + with: + days-before-stale: 23 + days-before-close: 3 diff --git a/adetailer/.gitignore b/adetailer/.gitignore new file mode 100644 index 0000000000000000000000000000000000000000..ce19e6c13e7687fe5bb70cb1138f8a7cb65162d9 --- /dev/null +++ b/adetailer/.gitignore @@ -0,0 +1,196 @@ +# Created by https://www.toptal.com/developers/gitignore/api/python,visualstudiocode +# Edit at https://www.toptal.com/developers/gitignore?templates=python,visualstudiocode + +### Python ### +# Byte-compiled / optimized / DLL files +__pycache__/ +*.py[cod] +*$py.class + +# C extensions +*.so + +# Distribution / packaging +.Python +build/ +develop-eggs/ +dist/ +downloads/ +eggs/ +.eggs/ +lib/ +lib64/ +parts/ +sdist/ +var/ +wheels/ +share/python-wheels/ +*.egg-info/ +.installed.cfg +*.egg +MANIFEST + +# PyInstaller +# Usually these files are written by a python script from a template +# before PyInstaller builds the exe, so as to inject date/other infos into it. +*.manifest +*.spec + +# Installer logs +pip-log.txt +pip-delete-this-directory.txt + +# Unit test / coverage reports +htmlcov/ +.tox/ +.nox/ +.coverage +.coverage.* +.cache +nosetests.xml +coverage.xml +*.cover +*.py,cover +.hypothesis/ +.pytest_cache/ +cover/ + +# Translations +*.mo +*.pot + +# Django stuff: +*.log +local_settings.py +db.sqlite3 +db.sqlite3-journal + +# Flask stuff: +instance/ +.webassets-cache + +# Scrapy stuff: +.scrapy + +# Sphinx documentation +docs/_build/ + +# PyBuilder +.pybuilder/ +target/ + +# Jupyter Notebook +.ipynb_checkpoints + +# IPython +profile_default/ +ipython_config.py + +# pyenv +# For a library or package, you might want to ignore these files since the code is +# intended to run in multiple environments; otherwise, check them in: +# .python-version + +# pipenv +# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control. +# However, in case of collaboration, if having platform-specific dependencies or dependencies +# having no cross-platform support, pipenv may install dependencies that don't work, or not +# install all needed dependencies. +#Pipfile.lock + +# poetry +# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control. +# This is especially recommended for binary packages to ensure reproducibility, and is more +# commonly ignored for libraries. +# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control +#poetry.lock + +# pdm +# Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control. +#pdm.lock +# pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it +# in version control. +# https://pdm.fming.dev/#use-with-ide +.pdm.toml + +# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm +__pypackages__/ + +# Celery stuff +celerybeat-schedule +celerybeat.pid + +# SageMath parsed files +*.sage.py + +# Environments +.env +.venv +env/ +venv/ +ENV/ +env.bak/ +venv.bak/ + +# Spyder project settings +.spyderproject +.spyproject + +# Rope project settings +.ropeproject + +# mkdocs documentation +/site + +# mypy +.mypy_cache/ +.dmypy.json +dmypy.json + +# Pyre type checker +.pyre/ + +# pytype static type analyzer +.pytype/ + +# Cython debug symbols +cython_debug/ + +# PyCharm +# JetBrains specific template is maintained in a separate JetBrains.gitignore that can +# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore +# and can be added to the global gitignore or merged into this file. For a more nuclear +# option (not recommended) you can uncomment the following to ignore the entire idea folder. +#.idea/ + +### Python Patch ### +# Poetry local configuration file - https://python-poetry.org/docs/configuration/#local-configuration +poetry.toml + +# ruff +.ruff_cache/ + +# LSP config files +pyrightconfig.json + +### VisualStudioCode ### +.vscode/* +!.vscode/settings.json +!.vscode/tasks.json +!.vscode/launch.json +!.vscode/extensions.json +!.vscode/*.code-snippets + +# Local History for Visual Studio Code +.history/ + +# Built Visual Studio Code Extensions +*.vsix + +### VisualStudioCode Patch ### +# Ignore all local history of files +.history +.ionide + +# End of https://www.toptal.com/developers/gitignore/api/python,visualstudiocode +*.ipynb diff --git a/adetailer/.pre-commit-config.yaml b/adetailer/.pre-commit-config.yaml new file mode 100644 index 0000000000000000000000000000000000000000..59ce3b21a4b2263e3c05564d417c2644e6a98e31 --- /dev/null +++ b/adetailer/.pre-commit-config.yaml @@ -0,0 +1,19 @@ +repos: + - repo: https://github.com/pre-commit/pre-commit-hooks + rev: v4.4.0 + hooks: + - id: trailing-whitespace + args: [--markdown-linebreak-ext=md] + - id: end-of-file-fixer + - id: mixed-line-ending + + - repo: https://github.com/astral-sh/ruff-pre-commit + rev: "v0.0.280" + hooks: + - id: ruff + args: [--fix, --exit-non-zero-on-fix] + + - repo: https://github.com/psf/black + rev: 23.7.0 + hooks: + - id: black diff --git a/adetailer/CHANGELOG.md b/adetailer/CHANGELOG.md new file mode 100644 index 0000000000000000000000000000000000000000..f6e41a8ddae1dfd77d8b4653f70cec437cc8cfed --- /dev/null +++ b/adetailer/CHANGELOG.md @@ -0,0 +1,275 @@ +# Changelog + +## 2023-07-31 + +- v23.7.11 +- separate clip skip 옵션 추가 +- install requirements 정리 (ultralytics 새 버전, mediapipe~=3.20) + +## 2023-07-28 + +- v23.7.10 +- ultralytics, mediapipe import문 정리 +- traceback에서 컬러를 없앰 (api 때문), 라이브러리 버전도 보여주게 설정. +- huggingface_hub, pydantic을 install.py에서 없앰 +- 안쓰는 컨트롤넷 관련 코드 삭제 + + +## 2023-07-23 + +- v23.7.9 +- `ultralytics.utils` ModuleNotFoundError 해결 (https://github.com/ultralytics/ultralytics/issues/3856) +- `pydantic` 2.0 이상 버전 설치안되도록 함 +- `controlnet_dir` cmd args 문제 수정 (PR #107) + +## 2023-07-20 + +- v23.7.8 +- `paste_field_names` 추가했던 것을 되돌림 + +## 2023-07-19 + +- v23.7.7 +- 인페인팅 단계에서 별도의 샘플러를 선택할 수 있게 옵션을 추가함 (xyz그리드에도 추가) +- webui 1.0.0-pre 이하 버전에서 batch index 문제 수정 +- 스크립트에 `paste_field_names`을 추가함. 사용되는지는 모르겠음 + +## 2023-07-16 + +- v23.7.6 +- `ultralytics 8.0.135`에 추가된 cpuinfo 기능을 위해 `py-cpuinfo`를 미리 설치하게 함. (미리 설치 안하면 cpu나 mps사용할 때 재시작해야함) +- init_image가 RGB 모드가 아닐 때 RGB로 변경. + +## 2023-07-07 + +- v23.7.4 +- batch count > 1일때 프롬프트의 인덱스 문제 수정 + +- v23.7.5 +- i2i의 `cached_uc`와 `cached_c`가 p의 `cached_uc`와 `cached_c`가 다른 인스턴스가 되도록 수정 + +## 2023-07-05 + +- v23.7.3 +- 버그 수정 + - `object()`가 json 직렬화 안되는 문제 + - `process`를 호출함에 따라 배치 카운트가 2이상일 때, all_prompts가 고정되는 문제 + - `ad-before`와 `ad-preview` 이미지 파일명이 실제 파일명과 다른 문제 + - pydantic 2.0 호환성 문제 + +## 2023-07-04 + +- v23.7.2 +- `mediapipe_face_mesh_eyes_only` 모델 추가: `mediapipe_face_mesh`로 감지한 뒤 눈만 사용함. +- 매 배치 시작 전에 `scripts.postprocess`를, 후에 `scripts.process`를 호출함. + - 컨트롤넷을 사용하면 소요 시간이 조금 늘어나지만 몇몇 문제 해결에 도움이 됨. +- `lora_block_weight`를 스크립트 화이트리스트에 추가함. + - 한번이라도 ADetailer를 사용한 사람은 수동으로 추가해야함. + +## 2023-07-03 + +- v23.7.1 +- `process_images`를 진행한 뒤 `StableDiffusionProcessing` 오브젝트의 close를 호출함 +- api 호출로 사용했는지 확인하는 속성 추가 +- `NansException`이 발생했을 때 중지하지 않고 남은 과정 계속 진행함 + +## 2023-07-02 + +- v23.7.0 +- `NansException`이 발생하면 로그에 표시하고 원본 이미지를 반환하게 설정 +- `rich`를 사용한 에러 트레이싱 + - install.py에 `rich` 추가 +- 생성 중에 컴포넌트의 값을 변경하면 args의 값도 함께 변경되는 문제 수정 (issue #180) +- 터미널 로그로 ad_prompt와 ad_negative_prompt에 적용된 실제 프롬프트 확인할 수 있음 (입력과 다를 경우에만) + +## 2023-06-28 + +- v23.6.4 +- 최대 모델 수 5 -> 10개 +- ad_prompt와 ad_negative_prompt에 빈칸으로 놔두면 입력 프롬프트가 사용된다는 문구 추가 +- huggingface 모델 다운로드 실패시 로깅 +- 1st 모델이 `None`일 경우 나머지 입력을 무시하던 문제 수정 +- `--use-cpu` 에 `adetailer` 입력 시 cpu로 yolo모델을 사용함 + +## 2023-06-20 + +- v23.6.3 +- 컨트롤넷 inpaint 모델에 대해, 3가지 모듈을 사용할 수 있도록 함 +- Noise Multiplier 옵션 추가 (PR #149) +- pydantic 최소 버전 1.10.8로 설정 (Issue #146) + +## 2023-06-05 + +- v23.6.2 +- xyz_grid에서 ADetailer를 사용할 수 있게함. + - 8가지 옵션만 1st 탭에 적용되도록 함. + +## 2023-06-01 + +- v23.6.1 +- `inpaint, scribble, lineart, openpose, tile` 5가지 컨트롤넷 모델 지원 (PR #107) +- controlnet guidance start, end 인자 추가 (PR #107) +- `modules.extensions`를 사용하여 컨트롤넷 확장을 불러오고 경로를 알아내로록 변경 +- ui에서 컨트롤넷을 별도 함수로 분리 + +## 2023-05-30 + +- v23.6.0 +- 스크립트의 이름을 `After Detailer`에서 `ADetailer`로 변경 + - API 사용자는 변경 필요함 +- 몇몇 설정 변경 + - `ad_conf` → `ad_confidence`. 0~100 사이의 int → 0.0~1.0 사이의 float + - `ad_inpaint_full_res` → `ad_inpaint_only_masked` + - `ad_inpaint_full_res_padding` → `ad_inpaint_only_masked_padding` +- mediapipe face mesh 모델 추가 + - mediapipe 최소 버전 `0.10.0` + +- rich traceback 제거함 +- huggingface 다운로드 실패할 때 에러가 나지 않게 하고 해당 모델을 제거함 + +## 2023-05-26 + +- v23.5.19 +- 1번째 탭에도 `None` 옵션을 추가함 +- api로 ad controlnet model에 inpaint가 아닌 다른 컨트롤넷 모델을 사용하지 못하도록 막음 +- adetailer 진행중에 total tqdm 진행바 업데이트를 멈춤 +- state.inturrupted 상태에서 adetailer 과정을 중지함 +- 컨트롤넷 process를 각 batch가 끝난 순간에만 호출하도록 변경 + +### 2023-05-25 + +- v23.5.18 +- 컨트롤넷 관련 수정 + - unit의 `input_mode`를 `SIMPLE`로 모두 변경 + - 컨트롤넷 유넷 훅과 하이잭 함수들을 adetailer를 실행할 때에만 되돌리는 기능 추가 + - adetailer 처리가 끝난 뒤 컨트롤넷 스크립트의 process를 다시 진행함. (batch count 2 이상일때의 문제 해결) +- 기본 활성 스크립트 목록에서 컨트롤넷을 뺌 + +### 2023-05-22 + +- v23.5.17 +- 컨트롤넷 확장이 있으면 컨트롤넷 스크립트를 활성화함. (컨트롤넷 관련 문제 해결) +- 모든 컴포넌트에 elem_id 설정 +- ui에 버전을 표시함 + + +### 2023-05-19 + +- v23.5.16 +- 추가한 옵션 + - Mask min/max ratio + - Mask merge mode + - Restore faces after ADetailer +- 옵션들을 Accordion으로 묶음 + +### 2023-05-18 + +- v23.5.15 +- 필요한 것만 임포트하도록 변경 (vae 로딩 오류 없어짐. 로딩 속도 빨라짐) + +### 2023-05-17 + +- v23.5.14 +- `[SKIP]`으로 ad prompt 일부를 건너뛰는 기능 추가 +- bbox 정렬 옵션 추가 +- sd_webui 타입힌트를 만들어냄 +- enable checker와 관련된 api 오류 수정? + +### 2023-05-15 + +- v23.5.13 +- `[SEP]`으로 ad prompt를 분리하여 적용하는 기능 추가 +- enable checker를 다시 pydantic으로 변경함 +- ui 관련 함수를 adetailer.ui 폴더로 분리함 +- controlnet을 사용할 때 모든 controlnet unit 비활성화 +- adetailer 폴더가 없으면 만들게 함 + +### 2023-05-13 + +- v23.5.12 +- `ad_enable`을 제외한 입력이 dict타입으로 들어오도록 변경 + - web api로 사용할 때에 특히 사용하기 쉬움 + - web api breaking change +- `mask_preprocess` 인자를 넣지 않았던 오류 수정 (PR #47) +- huggingface에서 모델을 다운로드하지 않는 옵션 추가 `--ad-no-huggingface` + +### 2023-05-12 + +- v23.5.11 +- `ultralytics` 알람 제거 +- 필요없는 exif 인자 더 제거함 +- `use separate steps` 옵션 추가 +- ui 배치를 조정함 + +### 2023-05-09 + +- v23.5.10 +- 선택한 스크립트만 ADetailer에 적용하는 옵션 추가, 기본값 `True`. 설정 탭에서 지정가능. + - 기본값: `dynamic_prompting,dynamic_thresholding,wildcards,wildcard_recursive` +- `person_yolov8s-seg.pt` 모델 추가 +- `ultralytics`의 최소 버전을 `8.0.97`로 설정 (C:\\ 문제 해결된 버전) + +### 2023-05-08 + +- v23.5.9 +- 2가지 이상의 모델을 사용할 수 있음. 기본값: 2, 최대: 5 +- segment 모델을 사용할 수 있게 함. `person_yolov8n-seg.pt` 추가 + +### 2023-05-07 + +- v23.5.8 +- 프롬프트와 네거티브 프롬프트에 방향키 지원 (PR #24) +- `mask_preprocess`를 추가함. 이전 버전과 시드값이 달라질 가능성 있음! +- 이미지 처리가 일어났을 때에만 before이미지를 저장함 +- 설정창의 레이블을 ADetailer 대신 더 적절하게 수정함 + +### 2023-05-06 + +- v23.5.7 +- `ad_use_cfg_scale` 옵션 추가. cfg 스케일을 따로 사용할지 말지 결정함. +- `ad_enable` 기본값을 `True`에서 `False`로 변경 +- `ad_model`의 기본값을 `None`에서 첫번째 모델로 변경 +- 최소 2개의 입력(ad_enable, ad_model)만 들어오면 작동하게 변경. + +- v23.5.7.post0 +- `init_controlnet_ext`을 controlnet_exists == True일때에만 실행 +- webui를 C드라이브 바로 밑에 설치한 사람들에게 `ultralytics` 경고 표시 + +### 2023-05-05 (어린이날) + +- v23.5.5 +- `Save images before ADetailer` 옵션 추가 +- 입력으로 들어온 인자와 ALL_ARGS의 길이가 다르면 에러메세지 +- README.md에 설치방법 추가 + +- v23.5.6 +- get_args에서 IndexError가 발생하면 자세한 에러메세지를 볼 수 있음 +- AdetailerArgs에 extra_params 내장 +- scripts_args를 딥카피함 +- postprocess_image를 약간 분리함 + +- v23.5.6.post0 +- `init_controlnet_ext`에서 에러메세지를 자세히 볼 수 있음 + +### 2023-05-04 + +- v23.5.4 +- use pydantic for arguments validation +- revert: ad_model to `None` as default +- revert: `__future__` imports +- lazily import yolo and mediapipe + +### 2023-05-03 + +- v23.5.3.post0 +- remove `__future__` imports +- change to copy scripts and scripts args + +- v23.5.3.post1 +- change default ad_model from `None` + +### 2023-05-02 + +- v23.5.3 +- Remove `None` from model list and add `Enable ADetailer` checkbox. +- install.py `skip_install` fix. diff --git a/adetailer/LICENSE.md b/adetailer/LICENSE.md new file mode 100644 index 0000000000000000000000000000000000000000..15bc112be2418653138c879e8f15c7b001229324 --- /dev/null +++ b/adetailer/LICENSE.md @@ -0,0 +1,662 @@ + + GNU AFFERO GENERAL PUBLIC LICENSE + Version 3, 19 November 2007 + + Copyright (C) 2007 Free Software Foundation, Inc. + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The GNU Affero General Public License is a free, copyleft license for +software and other kinds of works, specifically designed to ensure +cooperation with the community in the case of network server software. + + The licenses for most software and other practical works are designed +to take away your freedom to share and change the works. By contrast, +our General Public Licenses are intended to guarantee your freedom to +share and change all versions of a program--to make sure it remains free +software for all its users. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +them if you wish), that you receive source code or can get it if you +want it, that you can change the software or use pieces of it in new +free programs, and that you know you can do these things. + + Developers that use our General Public Licenses protect your rights +with two steps: (1) assert copyright on the software, and (2) offer +you this License which gives you legal permission to copy, distribute +and/or modify the software. + + A secondary benefit of defending all users' freedom is that +improvements made in alternate versions of the program, if they +receive widespread use, become available for other developers to +incorporate. Many developers of free software are heartened and +encouraged by the resulting cooperation. However, in the case of +software used on network servers, this result may fail to come about. +The GNU General Public License permits making a modified version and +letting the public access it on a server without ever releasing its +source code to the public. + + The GNU Affero General Public License is designed specifically to +ensure that, in such cases, the modified source code becomes available +to the community. It requires the operator of a network server to +provide the source code of the modified version running there to the +users of that server. Therefore, public use of a modified version, on +a publicly accessible server, gives the public access to the source +code of the modified version. + + An older license, called the Affero General Public License and +published by Affero, was designed to accomplish similar goals. This is +a different license, not a version of the Affero GPL, but Affero has +released a new version of the Affero GPL which permits relicensing under +this license. + + The precise terms and conditions for copying, distribution and +modification follow. + + TERMS AND CONDITIONS + + 0. Definitions. + + "This License" refers to version 3 of the GNU Affero General Public License. + + "Copyright" also means copyright-like laws that apply to other kinds of +works, such as semiconductor masks. + + "The Program" refers to any copyrightable work licensed under this +License. Each licensee is addressed as "you". "Licensees" and +"recipients" may be individuals or organizations. + + To "modify" a work means to copy from or adapt all or part of the work +in a fashion requiring copyright permission, other than the making of an +exact copy. The resulting work is called a "modified version" of the +earlier work or a work "based on" the earlier work. + + A "covered work" means either the unmodified Program or a work based +on the Program. + + To "propagate" a work means to do anything with it that, without +permission, would make you directly or secondarily liable for +infringement under applicable copyright law, except executing it on a +computer or modifying a private copy. Propagation includes copying, +distribution (with or without modification), making available to the +public, and in some countries other activities as well. + + To "convey" a work means any kind of propagation that enables other +parties to make or receive copies. Mere interaction with a user through +a computer network, with no transfer of a copy, is not conveying. + + An interactive user interface displays "Appropriate Legal Notices" +to the extent that it includes a convenient and prominently visible +feature that (1) displays an appropriate copyright notice, and (2) +tells the user that there is no warranty for the work (except to the +extent that warranties are provided), that licensees may convey the +work under this License, and how to view a copy of this License. If +the interface presents a list of user commands or options, such as a +menu, a prominent item in the list meets this criterion. + + 1. Source Code. + + The "source code" for a work means the preferred form of the work +for making modifications to it. "Object code" means any non-source +form of a work. + + A "Standard Interface" means an interface that either is an official +standard defined by a recognized standards body, or, in the case of +interfaces specified for a particular programming language, one that +is widely used among developers working in that language. + + The "System Libraries" of an executable work include anything, other +than the work as a whole, that (a) is included in the normal form of +packaging a Major Component, but which is not part of that Major +Component, and (b) serves only to enable use of the work with that +Major Component, or to implement a Standard Interface for which an +implementation is available to the public in source code form. A +"Major Component", in this context, means a major essential component +(kernel, window system, and so on) of the specific operating system +(if any) on which the executable work runs, or a compiler used to +produce the work, or an object code interpreter used to run it. + + The "Corresponding Source" for a work in object code form means all +the source code needed to generate, install, and (for an executable +work) run the object code and to modify the work, including scripts to +control those activities. However, it does not include the work's +System Libraries, or general-purpose tools or generally available free +programs which are used unmodified in performing those activities but +which are not part of the work. For example, Corresponding Source +includes interface definition files associated with source files for +the work, and the source code for shared libraries and dynamically +linked subprograms that the work is specifically designed to require, +such as by intimate data communication or control flow between those +subprograms and other parts of the work. + + The Corresponding Source need not include anything that users +can regenerate automatically from other parts of the Corresponding +Source. + + The Corresponding Source for a work in source code form is that +same work. + + 2. Basic Permissions. + + All rights granted under this License are granted for the term of +copyright on the Program, and are irrevocable provided the stated +conditions are met. This License explicitly affirms your unlimited +permission to run the unmodified Program. The output from running a +covered work is covered by this License only if the output, given its +content, constitutes a covered work. This License acknowledges your +rights of fair use or other equivalent, as provided by copyright law. + + You may make, run and propagate covered works that you do not +convey, without conditions so long as your license otherwise remains +in force. You may convey covered works to others for the sole purpose +of having them make modifications exclusively for you, or provide you +with facilities for running those works, provided that you comply with +the terms of this License in conveying all material for which you do +not control copyright. Those thus making or running the covered works +for you must do so exclusively on your behalf, under your direction +and control, on terms that prohibit them from making any copies of +your copyrighted material outside their relationship with you. + + Conveying under any other circumstances is permitted solely under +the conditions stated below. Sublicensing is not allowed; section 10 +makes it unnecessary. + + 3. Protecting Users' Legal Rights From Anti-Circumvention Law. + + No covered work shall be deemed part of an effective technological +measure under any applicable law fulfilling obligations under article +11 of the WIPO copyright treaty adopted on 20 December 1996, or +similar laws prohibiting or restricting circumvention of such +measures. + + When you convey a covered work, you waive any legal power to forbid +circumvention of technological measures to the extent such circumvention +is effected by exercising rights under this License with respect to +the covered work, and you disclaim any intention to limit operation or +modification of the work as a means of enforcing, against the work's +users, your or third parties' legal rights to forbid circumvention of +technological measures. + + 4. Conveying Verbatim Copies. + + You may convey verbatim copies of the Program's source code as you +receive it, in any medium, provided that you conspicuously and +appropriately publish on each copy an appropriate copyright notice; +keep intact all notices stating that this License and any +non-permissive terms added in accord with section 7 apply to the code; +keep intact all notices of the absence of any warranty; and give all +recipients a copy of this License along with the Program. + + You may charge any price or no price for each copy that you convey, +and you may offer support or warranty protection for a fee. + + 5. Conveying Modified Source Versions. + + You may convey a work based on the Program, or the modifications to +produce it from the Program, in the form of source code under the +terms of section 4, provided that you also meet all of these conditions: + + a) The work must carry prominent notices stating that you modified + it, and giving a relevant date. + + b) The work must carry prominent notices stating that it is + released under this License and any conditions added under section + 7. This requirement modifies the requirement in section 4 to + "keep intact all notices". + + c) You must license the entire work, as a whole, under this + License to anyone who comes into possession of a copy. This + License will therefore apply, along with any applicable section 7 + additional terms, to the whole of the work, and all its parts, + regardless of how they are packaged. This License gives no + permission to license the work in any other way, but it does not + invalidate such permission if you have separately received it. + + d) If the work has interactive user interfaces, each must display + Appropriate Legal Notices; however, if the Program has interactive + interfaces that do not display Appropriate Legal Notices, your + work need not make them do so. + + A compilation of a covered work with other separate and independent +works, which are not by their nature extensions of the covered work, +and which are not combined with it such as to form a larger program, +in or on a volume of a storage or distribution medium, is called an +"aggregate" if the compilation and its resulting copyright are not +used to limit the access or legal rights of the compilation's users +beyond what the individual works permit. Inclusion of a covered work +in an aggregate does not cause this License to apply to the other +parts of the aggregate. + + 6. Conveying Non-Source Forms. + + You may convey a covered work in object code form under the terms +of sections 4 and 5, provided that you also convey the +machine-readable Corresponding Source under the terms of this License, +in one of these ways: + + a) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by the + Corresponding Source fixed on a durable physical medium + customarily used for software interchange. + + b) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by a + written offer, valid for at least three years and valid for as + long as you offer spare parts or customer support for that product + model, to give anyone who possesses the object code either (1) a + copy of the Corresponding Source for all the software in the + product that is covered by this License, on a durable physical + medium customarily used for software interchange, for a price no + more than your reasonable cost of physically performing this + conveying of source, or (2) access to copy the + Corresponding Source from a network server at no charge. + + c) Convey individual copies of the object code with a copy of the + written offer to provide the Corresponding Source. This + alternative is allowed only occasionally and noncommercially, and + only if you received the object code with such an offer, in accord + with subsection 6b. + + d) Convey the object code by offering access from a designated + place (gratis or for a charge), and offer equivalent access to the + Corresponding Source in the same way through the same place at no + further charge. You need not require recipients to copy the + Corresponding Source along with the object code. If the place to + copy the object code is a network server, the Corresponding Source + may be on a different server (operated by you or a third party) + that supports equivalent copying facilities, provided you maintain + clear directions next to the object code saying where to find the + Corresponding Source. Regardless of what server hosts the + Corresponding Source, you remain obligated to ensure that it is + available for as long as needed to satisfy these requirements. + + e) Convey the object code using peer-to-peer transmission, provided + you inform other peers where the object code and Corresponding + Source of the work are being offered to the general public at no + charge under subsection 6d. + + A separable portion of the object code, whose source code is excluded +from the Corresponding Source as a System Library, need not be +included in conveying the object code work. + + A "User Product" is either (1) a "consumer product", which means any +tangible personal property which is normally used for personal, family, +or household purposes, or (2) anything designed or sold for incorporation +into a dwelling. In determining whether a product is a consumer product, +doubtful cases shall be resolved in favor of coverage. For a particular +product received by a particular user, "normally used" refers to a +typical or common use of that class of product, regardless of the status +of the particular user or of the way in which the particular user +actually uses, or expects or is expected to use, the product. A product +is a consumer product regardless of whether the product has substantial +commercial, industrial or non-consumer uses, unless such uses represent +the only significant mode of use of the product. + + "Installation Information" for a User Product means any methods, +procedures, authorization keys, or other information required to install +and execute modified versions of a covered work in that User Product from +a modified version of its Corresponding Source. The information must +suffice to ensure that the continued functioning of the modified object +code is in no case prevented or interfered with solely because +modification has been made. + + If you convey an object code work under this section in, or with, or +specifically for use in, a User Product, and the conveying occurs as +part of a transaction in which the right of possession and use of the +User Product is transferred to the recipient in perpetuity or for a +fixed term (regardless of how the transaction is characterized), the +Corresponding Source conveyed under this section must be accompanied +by the Installation Information. But this requirement does not apply +if neither you nor any third party retains the ability to install +modified object code on the User Product (for example, the work has +been installed in ROM). + + The requirement to provide Installation Information does not include a +requirement to continue to provide support service, warranty, or updates +for a work that has been modified or installed by the recipient, or for +the User Product in which it has been modified or installed. Access to a +network may be denied when the modification itself materially and +adversely affects the operation of the network or violates the rules and +protocols for communication across the network. + + Corresponding Source conveyed, and Installation Information provided, +in accord with this section must be in a format that is publicly +documented (and with an implementation available to the public in +source code form), and must require no special password or key for +unpacking, reading or copying. + + 7. Additional Terms. + + "Additional permissions" are terms that supplement the terms of this +License by making exceptions from one or more of its conditions. +Additional permissions that are applicable to the entire Program shall +be treated as though they were included in this License, to the extent +that they are valid under applicable law. If additional permissions +apply only to part of the Program, that part may be used separately +under those permissions, but the entire Program remains governed by +this License without regard to the additional permissions. + + When you convey a copy of a covered work, you may at your option +remove any additional permissions from that copy, or from any part of +it. (Additional permissions may be written to require their own +removal in certain cases when you modify the work.) You may place +additional permissions on material, added by you to a covered work, +for which you have or can give appropriate copyright permission. + + Notwithstanding any other provision of this License, for material you +add to a covered work, you may (if authorized by the copyright holders of +that material) supplement the terms of this License with terms: + + a) Disclaiming warranty or limiting liability differently from the + terms of sections 15 and 16 of this License; or + + b) Requiring preservation of specified reasonable legal notices or + author attributions in that material or in the Appropriate Legal + Notices displayed by works containing it; or + + c) Prohibiting misrepresentation of the origin of that material, or + requiring that modified versions of such material be marked in + reasonable ways as different from the original version; or + + d) Limiting the use for publicity purposes of names of licensors or + authors of the material; or + + e) Declining to grant rights under trademark law for use of some + trade names, trademarks, or service marks; or + + f) Requiring indemnification of licensors and authors of that + material by anyone who conveys the material (or modified versions of + it) with contractual assumptions of liability to the recipient, for + any liability that these contractual assumptions directly impose on + those licensors and authors. + + All other non-permissive additional terms are considered "further +restrictions" within the meaning of section 10. If the Program as you +received it, or any part of it, contains a notice stating that it is +governed by this License along with a term that is a further +restriction, you may remove that term. If a license document contains +a further restriction but permits relicensing or conveying under this +License, you may add to a covered work material governed by the terms +of that license document, provided that the further restriction does +not survive such relicensing or conveying. + + If you add terms to a covered work in accord with this section, you +must place, in the relevant source files, a statement of the +additional terms that apply to those files, or a notice indicating +where to find the applicable terms. + + Additional terms, permissive or non-permissive, may be stated in the +form of a separately written license, or stated as exceptions; +the above requirements apply either way. + + 8. Termination. + + You may not propagate or modify a covered work except as expressly +provided under this License. Any attempt otherwise to propagate or +modify it is void, and will automatically terminate your rights under +this License (including any patent licenses granted under the third +paragraph of section 11). + + However, if you cease all violation of this License, then your +license from a particular copyright holder is reinstated (a) +provisionally, unless and until the copyright holder explicitly and +finally terminates your license, and (b) permanently, if the copyright +holder fails to notify you of the violation by some reasonable means +prior to 60 days after the cessation. + + Moreover, your license from a particular copyright holder is +reinstated permanently if the copyright holder notifies you of the +violation by some reasonable means, this is the first time you have +received notice of violation of this License (for any work) from that +copyright holder, and you cure the violation prior to 30 days after +your receipt of the notice. + + Termination of your rights under this section does not terminate the +licenses of parties who have received copies or rights from you under +this License. If your rights have been terminated and not permanently +reinstated, you do not qualify to receive new licenses for the same +material under section 10. + + 9. Acceptance Not Required for Having Copies. + + You are not required to accept this License in order to receive or +run a copy of the Program. Ancillary propagation of a covered work +occurring solely as a consequence of using peer-to-peer transmission +to receive a copy likewise does not require acceptance. However, +nothing other than this License grants you permission to propagate or +modify any covered work. These actions infringe copyright if you do +not accept this License. Therefore, by modifying or propagating a +covered work, you indicate your acceptance of this License to do so. + + 10. Automatic Licensing of Downstream Recipients. + + Each time you convey a covered work, the recipient automatically +receives a license from the original licensors, to run, modify and +propagate that work, subject to this License. You are not responsible +for enforcing compliance by third parties with this License. + + An "entity transaction" is a transaction transferring control of an +organization, or substantially all assets of one, or subdividing an +organization, or merging organizations. If propagation of a covered +work results from an entity transaction, each party to that +transaction who receives a copy of the work also receives whatever +licenses to the work the party's predecessor in interest had or could +give under the previous paragraph, plus a right to possession of the +Corresponding Source of the work from the predecessor in interest, if +the predecessor has it or can get it with reasonable efforts. + + You may not impose any further restrictions on the exercise of the +rights granted or affirmed under this License. For example, you may +not impose a license fee, royalty, or other charge for exercise of +rights granted under this License, and you may not initiate litigation +(including a cross-claim or counterclaim in a lawsuit) alleging that +any patent claim is infringed by making, using, selling, offering for +sale, or importing the Program or any portion of it. + + 11. Patents. + + A "contributor" is a copyright holder who authorizes use under this +License of the Program or a work on which the Program is based. The +work thus licensed is called the contributor's "contributor version". + + A contributor's "essential patent claims" are all patent claims +owned or controlled by the contributor, whether already acquired or +hereafter acquired, that would be infringed by some manner, permitted +by this License, of making, using, or selling its contributor version, +but do not include claims that would be infringed only as a +consequence of further modification of the contributor version. For +purposes of this definition, "control" includes the right to grant +patent sublicenses in a manner consistent with the requirements of +this License. + + Each contributor grants you a non-exclusive, worldwide, royalty-free +patent license under the contributor's essential patent claims, to +make, use, sell, offer for sale, import and otherwise run, modify and +propagate the contents of its contributor version. + + In the following three paragraphs, a "patent license" is any express +agreement or commitment, however denominated, not to enforce a patent +(such as an express permission to practice a patent or covenant not to +sue for patent infringement). To "grant" such a patent license to a +party means to make such an agreement or commitment not to enforce a +patent against the party. + + If you convey a covered work, knowingly relying on a patent license, +and the Corresponding Source of the work is not available for anyone +to copy, free of charge and under the terms of this License, through a +publicly available network server or other readily accessible means, +then you must either (1) cause the Corresponding Source to be so +available, or (2) arrange to deprive yourself of the benefit of the +patent license for this particular work, or (3) arrange, in a manner +consistent with the requirements of this License, to extend the patent +license to downstream recipients. "Knowingly relying" means you have +actual knowledge that, but for the patent license, your conveying the +covered work in a country, or your recipient's use of the covered work +in a country, would infringe one or more identifiable patents in that +country that you have reason to believe are valid. + + If, pursuant to or in connection with a single transaction or +arrangement, you convey, or propagate by procuring conveyance of, a +covered work, and grant a patent license to some of the parties +receiving the covered work authorizing them to use, propagate, modify +or convey a specific copy of the covered work, then the patent license +you grant is automatically extended to all recipients of the covered +work and works based on it. + + A patent license is "discriminatory" if it does not include within +the scope of its coverage, prohibits the exercise of, or is +conditioned on the non-exercise of one or more of the rights that are +specifically granted under this License. You may not convey a covered +work if you are a party to an arrangement with a third party that is +in the business of distributing software, under which you make payment +to the third party based on the extent of your activity of conveying +the work, and under which the third party grants, to any of the +parties who would receive the covered work from you, a discriminatory +patent license (a) in connection with copies of the covered work +conveyed by you (or copies made from those copies), or (b) primarily +for and in connection with specific products or compilations that +contain the covered work, unless you entered into that arrangement, +or that patent license was granted, prior to 28 March 2007. + + Nothing in this License shall be construed as excluding or limiting +any implied license or other defenses to infringement that may +otherwise be available to you under applicable patent law. + + 12. No Surrender of Others' Freedom. + + If conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot convey a +covered work so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you may +not convey it at all. For example, if you agree to terms that obligate you +to collect a royalty for further conveying from those to whom you convey +the Program, the only way you could satisfy both those terms and this +License would be to refrain entirely from conveying the Program. + + 13. Remote Network Interaction; Use with the GNU General Public License. + + Notwithstanding any other provision of this License, if you modify the +Program, your modified version must prominently offer all users +interacting with it remotely through a computer network (if your version +supports such interaction) an opportunity to receive the Corresponding +Source of your version by providing access to the Corresponding Source +from a network server at no charge, through some standard or customary +means of facilitating copying of software. This Corresponding Source +shall include the Corresponding Source for any work covered by version 3 +of the GNU General Public License that is incorporated pursuant to the +following paragraph. + + Notwithstanding any other provision of this License, you have +permission to link or combine any covered work with a work licensed +under version 3 of the GNU General Public License into a single +combined work, and to convey the resulting work. The terms of this +License will continue to apply to the part which is the covered work, +but the work with which it is combined will remain governed by version +3 of the GNU General Public License. + + 14. Revised Versions of this License. + + The Free Software Foundation may publish revised and/or new versions of +the GNU Affero General Public License from time to time. Such new versions +will be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + + Each version is given a distinguishing version number. If the +Program specifies that a certain numbered version of the GNU Affero General +Public License "or any later version" applies to it, you have the +option of following the terms and conditions either of that numbered +version or of any later version published by the Free Software +Foundation. If the Program does not specify a version number of the +GNU Affero General Public License, you may choose any version ever published +by the Free Software Foundation. + + If the Program specifies that a proxy can decide which future +versions of the GNU Affero General Public License can be used, that proxy's +public statement of acceptance of a version permanently authorizes you +to choose that version for the Program. + + Later license versions may give you additional or different +permissions. However, no additional obligations are imposed on any +author or copyright holder as a result of your choosing to follow a +later version. + + 15. Disclaimer of Warranty. + + THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY +APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT +HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY +OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, +THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM +IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF +ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + + 16. Limitation of Liability. + + IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS +THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY +GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE +USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF +DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD +PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), +EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF +SUCH DAMAGES. + + 17. Interpretation of Sections 15 and 16. + + If the disclaimer of warranty and limitation of liability provided +above cannot be given local legal effect according to their terms, +reviewing courts shall apply local law that most closely approximates +an absolute waiver of all civil liability in connection with the +Program, unless a warranty or assumption of liability accompanies a +copy of the Program in return for a fee. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Programs + + If you develop a new program, and you want it to be of the greatest +possible use to the public, the best way to achieve this is to make it +free software which everyone can redistribute and change under these terms. + + To do so, attach the following notices to the program. It is safest +to attach them to the start of each source file to most effectively +state the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU Affero General Public License as published + by the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU Affero General Public License for more details. + + You should have received a copy of the GNU Affero General Public License + along with this program. If not, see . + +Also add information on how to contact you by electronic and paper mail. + + If your software can interact with users remotely through a computer +network, you should also make sure that it provides a way for users to +get its source. For example, if your program is a web application, its +interface could display a "Source" link that leads users to an archive +of the code. There are many ways you could offer source, and different +solutions will be better for different programs; see section 13 for the +specific requirements. + + You should also get your employer (if you work as a programmer) or school, +if any, to sign a "copyright disclaimer" for the program, if necessary. +For more information on this, and how to apply and follow the GNU AGPL, see +. diff --git a/adetailer/README.md b/adetailer/README.md new file mode 100644 index 0000000000000000000000000000000000000000..d6fe5e446bfc159e75d332ee72061ccca5a473f8 --- /dev/null +++ b/adetailer/README.md @@ -0,0 +1,94 @@ +# !After Detailer + +!After Detailer is a extension for stable diffusion webui, similar to Detection Detailer, except it uses ultralytics instead of the mmdet. + +## Install + +(from Mikubill/sd-webui-controlnet) + +1. Open "Extensions" tab. +2. Open "Install from URL" tab in the tab. +3. Enter `https://github.com/Bing-su/adetailer.git` to "URL for extension's git repository". +4. Press "Install" button. +5. Wait 5 seconds, and you will see the message "Installed into stable-diffusion-webui\extensions\adetailer. Use Installed tab to restart". +6. Go to "Installed" tab, click "Check for updates", and then click "Apply and restart UI". (The next time you can also use this method to update extensions.) +7. Completely restart A1111 webui including your terminal. (If you do not know what is a "terminal", you can reboot your computer: turn your computer off and turn it on again.) + +You can now install it directly from the Extensions tab. + +![image](https://i.imgur.com/g6GdRBT.png) + +You **DON'T** need to download any model from huggingface. + +## Options + +| Model, Prompts | | | +| --------------------------------- | ------------------------------------- | ------------------------------------------------- | +| ADetailer model | Determine what to detect. | `None` = disable | +| ADetailer prompt, negative prompt | Prompts and negative prompts to apply | If left blank, it will use the same as the input. | + +| Detection | | | +| ------------------------------------ | -------------------------------------------------------------------------------------------- | --- | +| Detection model confidence threshold | Only objects with a detection model confidence above this threshold are used for inpainting. | | +| Mask min/max ratio | Only use masks whose area is between those ratios for the area of the entire image. | | + +If you want to exclude objects in the background, try setting the min ratio to around `0.01`. + +| Mask Preprocessing | | | +| ------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------- | +| Mask x, y offset | Moves the mask horizontally and vertically by | | +| Mask erosion (-) / dilation (+) | Enlarge or reduce the detected mask. | [opencv example](https://docs.opencv.org/4.7.0/db/df6/tutorial_erosion_dilatation.html) | +| Mask merge mode | `None`: Inpaint each mask
`Merge`: Merge all masks and inpaint
`Merge and Invert`: Merge all masks and Invert, then inpaint | | + +Applied in this order: x, y offset → erosion/dilation → merge/invert. + +#### Inpainting + +Each option corresponds to a corresponding option on the inpaint tab. Therefore, please refer to the inpaint tab for usage details on how to use each option. + +## ControlNet Inpainting + +You can use the ControlNet extension if you have ControlNet installed and ControlNet models. + +Support `inpaint, scribble, lineart, openpose, tile` controlnet models. Once you choose a model, the preprocessor is set automatically. It works separately from the model set by the Controlnet extension. + +## Advanced Options + +API request example: [wiki/API](https://github.com/Bing-su/adetailer/wiki/API) + +`ui-config.json` entries: [wiki/ui-config.json](https://github.com/Bing-su/adetailer/wiki/ui-config.json) + +`[SEP], [SKIP]` tokens: [wiki/Advanced](https://github.com/Bing-su/adetailer/wiki/Advanced) + +## Media + +- 🎥 [どこよりも詳しいAfter Detailer (adetailer)の使い方① 【Stable Diffusion】](https://youtu.be/sF3POwPUWCE) +- 🎥 [どこよりも詳しいAfter Detailer (adetailer)の使い方② 【Stable Diffusion】](https://youtu.be/urNISRdbIEg) + +## Model + +| Model | Target | mAP 50 | mAP 50-95 | +| --------------------- | --------------------- | ----------------------------- | ----------------------------- | +| face_yolov8n.pt | 2D / realistic face | 0.660 | 0.366 | +| face_yolov8s.pt | 2D / realistic face | 0.713 | 0.404 | +| hand_yolov8n.pt | 2D / realistic hand | 0.767 | 0.505 | +| person_yolov8n-seg.pt | 2D / realistic person | 0.782 (bbox)
0.761 (mask) | 0.555 (bbox)
0.460 (mask) | +| person_yolov8s-seg.pt | 2D / realistic person | 0.824 (bbox)
0.809 (mask) | 0.605 (bbox)
0.508 (mask) | +| mediapipe_face_full | realistic face | - | - | +| mediapipe_face_short | realistic face | - | - | +| mediapipe_face_mesh | realistic face | - | - | + +The yolo models can be found on huggingface [Bingsu/adetailer](https://huggingface.co/Bingsu/adetailer). + +### Additional Model + +Put your [ultralytics](https://github.com/ultralytics/ultralytics) yolo model in `webui/models/adetailer`. The model name should end with `.pt` or `.pth`. + +It must be a bbox detection or segment model and use all label. + +## Example + +![image](https://i.imgur.com/38RSxSO.png) +![image](https://i.imgur.com/2CYgjLx.png) + +[![ko-fi](https://ko-fi.com/img/githubbutton_sm.svg)](https://ko-fi.com/F1F1L7V2N) diff --git a/adetailer/Taskfile.yml b/adetailer/Taskfile.yml new file mode 100644 index 0000000000000000000000000000000000000000..9c9f45ed9431f14002b8be9d85e1ce41f4313b26 --- /dev/null +++ b/adetailer/Taskfile.yml @@ -0,0 +1,25 @@ +# https://taskfile.dev + +version: "3" + +dotenv: + - .env + +vars: + SHELL: '{{if eq .OS "Windows_NT"}}powershell{{end}}' + +tasks: + default: + cmds: + - echo "$PYTHON" + - echo "$WEBUI" + silent: true + + launch: + dir: "{{.WEBUI}}" + cmds: + - "{{.PYTHON}} launch.py --xformers --api --autolaunch" + + lint: + cmds: + - pre-commit run -a diff --git a/adetailer/adetailer/__init__.py b/adetailer/adetailer/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..dae6181e4042e320e7854837ed8e96b1da583c83 --- /dev/null +++ b/adetailer/adetailer/__init__.py @@ -0,0 +1,20 @@ +from .__version__ import __version__ +from .args import AD_ENABLE, ALL_ARGS, ADetailerArgs, EnableChecker +from .common import PredictOutput, get_models +from .mediapipe import mediapipe_predict +from .ultralytics import ultralytics_predict + +AFTER_DETAILER = "ADetailer" + +__all__ = [ + "__version__", + "AD_ENABLE", + "ADetailerArgs", + "AFTER_DETAILER", + "ALL_ARGS", + "EnableChecker", + "PredictOutput", + "get_models", + "mediapipe_predict", + "ultralytics_predict", +] diff --git a/adetailer/adetailer/__version__.py b/adetailer/adetailer/__version__.py new file mode 100644 index 0000000000000000000000000000000000000000..3810b2140fc76ab8656d62fb7cf6ed85f0574587 --- /dev/null +++ b/adetailer/adetailer/__version__.py @@ -0,0 +1 @@ +__version__ = "23.7.11" diff --git a/adetailer/adetailer/args.py b/adetailer/adetailer/args.py new file mode 100644 index 0000000000000000000000000000000000000000..f12e4b2c647c11f32c1d8860eec93418962c3da3 --- /dev/null +++ b/adetailer/adetailer/args.py @@ -0,0 +1,232 @@ +from __future__ import annotations + +from collections import UserList +from functools import cached_property, partial +from typing import Any, Literal, NamedTuple, Optional, Union + +import pydantic +from pydantic import ( + BaseModel, + Extra, + NonNegativeFloat, + NonNegativeInt, + PositiveInt, + confloat, + conint, + constr, + root_validator, + validator, +) + +cn_model_regex = r".*(inpaint|tile|scribble|lineart|openpose).*|^None$" + + +class Arg(NamedTuple): + attr: str + name: str + + +class ArgsList(UserList): + @cached_property + def attrs(self) -> tuple[str]: + return tuple(attr for attr, _ in self) + + @cached_property + def names(self) -> tuple[str]: + return tuple(name for _, name in self) + + +class ADetailerArgs(BaseModel, extra=Extra.forbid): + ad_model: str = "None" + ad_prompt: str = "" + ad_negative_prompt: str = "" + ad_confidence: confloat(ge=0.0, le=1.0) = 0.3 + ad_mask_min_ratio: confloat(ge=0.0, le=1.0) = 0.0 + ad_mask_max_ratio: confloat(ge=0.0, le=1.0) = 1.0 + ad_dilate_erode: int = 4 + ad_x_offset: int = 0 + ad_y_offset: int = 0 + ad_mask_merge_invert: Literal["None", "Merge", "Merge and Invert"] = "None" + ad_mask_blur: NonNegativeInt = 4 + ad_denoising_strength: confloat(ge=0.0, le=1.0) = 0.4 + ad_inpaint_only_masked: bool = True + ad_inpaint_only_masked_padding: NonNegativeInt = 32 + ad_use_inpaint_width_height: bool = False + ad_inpaint_width: PositiveInt = 512 + ad_inpaint_height: PositiveInt = 512 + ad_use_steps: bool = False + ad_steps: PositiveInt = 28 + ad_use_cfg_scale: bool = False + ad_cfg_scale: NonNegativeFloat = 7.0 + ad_use_sampler: bool = False + ad_sampler: str = "DPM++ 2M Karras" + ad_use_noise_multiplier: bool = False + ad_noise_multiplier: confloat(ge=0.5, le=1.5) = 1.0 + ad_use_clip_skip: bool = False + ad_clip_skip: conint(ge=1, le=12) = 1 + ad_restore_face: bool = False + ad_controlnet_model: constr(regex=cn_model_regex) = "None" + ad_controlnet_module: Optional[constr(regex=r".*inpaint.*|^None$")] = None + ad_controlnet_weight: confloat(ge=0.0, le=1.0) = 1.0 + ad_controlnet_guidance_start: confloat(ge=0.0, le=1.0) = 0.0 + ad_controlnet_guidance_end: confloat(ge=0.0, le=1.0) = 1.0 + is_api: bool = True + + @root_validator(skip_on_failure=True) + def ad_controlnt_module_validator(cls, values): # noqa: N805 + cn_model = values.get("ad_controlnet_model", "None") + cn_module = values.get("ad_controlnet_module", None) + if "inpaint" not in cn_model or cn_module == "None": + values["ad_controlnet_module"] = None + return values + + @validator("is_api", pre=True) + def is_api_validator(cls, v: Any): # noqa: N805 + "tuple is json serializable but cannot be made with json deserialize." + return type(v) is not tuple + + @staticmethod + def ppop( + p: dict[str, Any], + key: str, + pops: list[str] | None = None, + cond: Any = None, + ) -> None: + if pops is None: + pops = [key] + if key not in p: + return + value = p[key] + cond = (not bool(value)) if cond is None else value == cond + + if cond: + for k in pops: + p.pop(k, None) + + def extra_params(self, suffix: str = "") -> dict[str, Any]: + if self.ad_model == "None": + return {} + + p = {name: getattr(self, attr) for attr, name in ALL_ARGS} + ppop = partial(self.ppop, p) + + ppop("ADetailer prompt") + ppop("ADetailer negative prompt") + ppop("ADetailer mask min ratio", cond=0.0) + ppop("ADetailer mask max ratio", cond=1.0) + ppop("ADetailer x offset", cond=0) + ppop("ADetailer y offset", cond=0) + ppop("ADetailer mask merge/invert", cond="None") + ppop("ADetailer inpaint only masked", ["ADetailer inpaint padding"]) + ppop( + "ADetailer use inpaint width/height", + [ + "ADetailer use inpaint width/height", + "ADetailer inpaint width", + "ADetailer inpaint height", + ], + ) + ppop( + "ADetailer use separate steps", + ["ADetailer use separate steps", "ADetailer steps"], + ) + ppop( + "ADetailer use separate CFG scale", + ["ADetailer use separate CFG scale", "ADetailer CFG scale"], + ) + ppop( + "ADetailer use separate sampler", + ["ADetailer use separate sampler", "ADetailer sampler"], + ) + ppop( + "ADetailer use separate noise multiplier", + ["ADetailer use separate noise multiplier", "ADetailer noise multiplier"], + ) + + ppop( + "ADetailer use separate CLIP skip", + ["ADetailer use separate CLIP skip", "ADetailer CLIP skip"], + ) + + ppop("ADetailer restore face") + ppop( + "ADetailer ControlNet model", + [ + "ADetailer ControlNet model", + "ADetailer ControlNet module", + "ADetailer ControlNet weight", + "ADetailer ControlNet guidance start", + "ADetailer ControlNet guidance end", + ], + cond="None", + ) + ppop("ADetailer ControlNet module") + ppop("ADetailer ControlNet weight", cond=1.0) + ppop("ADetailer ControlNet guidance start", cond=0.0) + ppop("ADetailer ControlNet guidance end", cond=1.0) + + if suffix: + p = {k + suffix: v for k, v in p.items()} + + return p + + +class EnableChecker(BaseModel): + enable: bool + arg_list: list + + def is_enabled(self) -> bool: + ad_model = ALL_ARGS[0].attr + if not self.enable: + return False + return any(arg.get(ad_model, "None") != "None" for arg in self.arg_list) + + +_all_args = [ + ("ad_enable", "ADetailer enable"), + ("ad_model", "ADetailer model"), + ("ad_prompt", "ADetailer prompt"), + ("ad_negative_prompt", "ADetailer negative prompt"), + ("ad_confidence", "ADetailer confidence"), + ("ad_mask_min_ratio", "ADetailer mask min ratio"), + ("ad_mask_max_ratio", "ADetailer mask max ratio"), + ("ad_x_offset", "ADetailer x offset"), + ("ad_y_offset", "ADetailer y offset"), + ("ad_dilate_erode", "ADetailer dilate/erode"), + ("ad_mask_merge_invert", "ADetailer mask merge/invert"), + ("ad_mask_blur", "ADetailer mask blur"), + ("ad_denoising_strength", "ADetailer denoising strength"), + ("ad_inpaint_only_masked", "ADetailer inpaint only masked"), + ("ad_inpaint_only_masked_padding", "ADetailer inpaint padding"), + ("ad_use_inpaint_width_height", "ADetailer use inpaint width/height"), + ("ad_inpaint_width", "ADetailer inpaint width"), + ("ad_inpaint_height", "ADetailer inpaint height"), + ("ad_use_steps", "ADetailer use separate steps"), + ("ad_steps", "ADetailer steps"), + ("ad_use_cfg_scale", "ADetailer use separate CFG scale"), + ("ad_cfg_scale", "ADetailer CFG scale"), + ("ad_use_sampler", "ADetailer use separate sampler"), + ("ad_sampler", "ADetailer sampler"), + ("ad_use_noise_multiplier", "ADetailer use separate noise multiplier"), + ("ad_noise_multiplier", "ADetailer noise multiplier"), + ("ad_use_clip_skip", "ADetailer use separate CLIP skip"), + ("ad_clip_skip", "ADetailer CLIP skip"), + ("ad_restore_face", "ADetailer restore face"), + ("ad_controlnet_model", "ADetailer ControlNet model"), + ("ad_controlnet_module", "ADetailer ControlNet module"), + ("ad_controlnet_weight", "ADetailer ControlNet weight"), + ("ad_controlnet_guidance_start", "ADetailer ControlNet guidance start"), + ("ad_controlnet_guidance_end", "ADetailer ControlNet guidance end"), +] + +AD_ENABLE = Arg(*_all_args[0]) +_args = [Arg(*args) for args in _all_args[1:]] +ALL_ARGS = ArgsList(_args) + +BBOX_SORTBY = [ + "None", + "Position (left to right)", + "Position (center to edge)", + "Area (large to small)", +] +MASK_MERGE_INVERT = ["None", "Merge", "Merge and Invert"] diff --git a/adetailer/adetailer/common.py b/adetailer/adetailer/common.py new file mode 100644 index 0000000000000000000000000000000000000000..a29bdd5beb2ac3e1f027398dc176e70fb77d082d --- /dev/null +++ b/adetailer/adetailer/common.py @@ -0,0 +1,127 @@ +from __future__ import annotations + +from collections import OrderedDict +from dataclasses import dataclass, field +from pathlib import Path +from typing import Optional, Union + +from huggingface_hub import hf_hub_download +from PIL import Image, ImageDraw +from rich import print + +repo_id = "Bingsu/adetailer" + + +@dataclass +class PredictOutput: + bboxes: list[list[int | float]] = field(default_factory=list) + masks: list[Image.Image] = field(default_factory=list) + preview: Optional[Image.Image] = None + + +def hf_download(file: str): + try: + path = hf_hub_download(repo_id, file) + except Exception: + msg = f"[-] ADetailer: Failed to load model {file!r} from huggingface" + print(msg) + path = "INVALID" + return path + + +def get_models( + model_dir: Union[str, Path], huggingface: bool = True +) -> OrderedDict[str, Optional[str]]: + model_dir = Path(model_dir) + if model_dir.is_dir(): + model_paths = [ + p + for p in model_dir.rglob("*") + if p.is_file() and p.suffix in (".pt", ".pth") + ] + else: + model_paths = [] + + models = OrderedDict() + if huggingface: + models.update( + { + "face_yolov8n.pt": hf_download("face_yolov8n.pt"), + "face_yolov8s.pt": hf_download("face_yolov8s.pt"), + "hand_yolov8n.pt": hf_download("hand_yolov8n.pt"), + "person_yolov8n-seg.pt": hf_download("person_yolov8n-seg.pt"), + "person_yolov8s-seg.pt": hf_download("person_yolov8s-seg.pt"), + } + ) + models.update( + { + "mediapipe_face_full": None, + "mediapipe_face_short": None, + "mediapipe_face_mesh": None, + "mediapipe_face_mesh_eyes_only": None, + } + ) + + invalid_keys = [k for k, v in models.items() if v == "INVALID"] + for key in invalid_keys: + models.pop(key) + + for path in model_paths: + if path.name in models: + continue + models[path.name] = str(path) + + return models + + +def create_mask_from_bbox( + bboxes: list[list[float]], shape: tuple[int, int] +) -> list[Image.Image]: + """ + Parameters + ---------- + bboxes: list[list[float]] + list of [x1, y1, x2, y2] + bounding boxes + shape: tuple[int, int] + shape of the image (width, height) + + Returns + ------- + masks: list[Image.Image] + A list of masks + + """ + masks = [] + for bbox in bboxes: + mask = Image.new("L", shape, 0) + mask_draw = ImageDraw.Draw(mask) + mask_draw.rectangle(bbox, fill=255) + masks.append(mask) + return masks + + +def create_bbox_from_mask( + masks: list[Image.Image], shape: tuple[int, int] +) -> list[list[int]]: + """ + Parameters + ---------- + masks: list[Image.Image] + A list of masks + shape: tuple[int, int] + shape of the image (width, height) + + Returns + ------- + bboxes: list[list[float]] + A list of bounding boxes + + """ + bboxes = [] + for mask in masks: + mask = mask.resize(shape) + bbox = mask.getbbox() + if bbox is not None: + bboxes.append(list(bbox)) + return bboxes diff --git a/adetailer/adetailer/mask.py b/adetailer/adetailer/mask.py new file mode 100644 index 0000000000000000000000000000000000000000..9209b456fac2d7fda987c0b076874e3bb2cd7ee8 --- /dev/null +++ b/adetailer/adetailer/mask.py @@ -0,0 +1,245 @@ +from __future__ import annotations + +from enum import IntEnum +from functools import partial, reduce +from math import dist + +import cv2 +import numpy as np +from PIL import Image, ImageChops + +from adetailer.args import MASK_MERGE_INVERT +from adetailer.common import PredictOutput + + +class SortBy(IntEnum): + NONE = 0 + LEFT_TO_RIGHT = 1 + CENTER_TO_EDGE = 2 + AREA = 3 + + +class MergeInvert(IntEnum): + NONE = 0 + MERGE = 1 + MERGE_INVERT = 2 + + +def _dilate(arr: np.ndarray, value: int) -> np.ndarray: + kernel = cv2.getStructuringElement(cv2.MORPH_RECT, (value, value)) + return cv2.dilate(arr, kernel, iterations=1) + + +def _erode(arr: np.ndarray, value: int) -> np.ndarray: + kernel = cv2.getStructuringElement(cv2.MORPH_RECT, (value, value)) + return cv2.erode(arr, kernel, iterations=1) + + +def dilate_erode(img: Image.Image, value: int) -> Image.Image: + """ + The dilate_erode function takes an image and a value. + If the value is positive, it dilates the image by that amount. + If the value is negative, it erodes the image by that amount. + + Parameters + ---------- + img: PIL.Image.Image + the image to be processed + value: int + kernel size of dilation or erosion + + Returns + ------- + PIL.Image.Image + The image that has been dilated or eroded + """ + if value == 0: + return img + + arr = np.array(img) + arr = _dilate(arr, value) if value > 0 else _erode(arr, -value) + + return Image.fromarray(arr) + + +def offset(img: Image.Image, x: int = 0, y: int = 0) -> Image.Image: + """ + The offset function takes an image and offsets it by a given x(→) and y(↑) value. + + Parameters + ---------- + mask: Image.Image + Pass the mask image to the function + x: int + → + y: int + ↑ + + Returns + ------- + PIL.Image.Image + A new image that is offset by x and y + """ + return ImageChops.offset(img, x, -y) + + +def is_all_black(img: Image.Image) -> bool: + arr = np.array(img) + return cv2.countNonZero(arr) == 0 + + +def bbox_area(bbox: list[float]): + return (bbox[2] - bbox[0]) * (bbox[3] - bbox[1]) + + +def mask_preprocess( + masks: list[Image.Image], + kernel: int = 0, + x_offset: int = 0, + y_offset: int = 0, + merge_invert: int | MergeInvert | str = MergeInvert.NONE, +) -> list[Image.Image]: + """ + The mask_preprocess function takes a list of masks and preprocesses them. + It dilates and erodes the masks, and offsets them by x_offset and y_offset. + + Parameters + ---------- + masks: list[Image.Image] + A list of masks + kernel: int + kernel size of dilation or erosion + x_offset: int + → + y_offset: int + ↑ + + Returns + ------- + list[Image.Image] + A list of processed masks + """ + if not masks: + return [] + + if x_offset != 0 or y_offset != 0: + masks = [offset(m, x_offset, y_offset) for m in masks] + + if kernel != 0: + masks = [dilate_erode(m, kernel) for m in masks] + masks = [m for m in masks if not is_all_black(m)] + + return mask_merge_invert(masks, mode=merge_invert) + + +# Bbox sorting +def _key_left_to_right(bbox: list[float]) -> float: + """ + Left to right + + Parameters + ---------- + bbox: list[float] + list of [x1, y1, x2, y2] + """ + return bbox[0] + + +def _key_center_to_edge(bbox: list[float], *, center: tuple[float, float]) -> float: + """ + Center to edge + + Parameters + ---------- + bbox: list[float] + list of [x1, y1, x2, y2] + image: Image.Image + the image + """ + bbox_center = ((bbox[0] + bbox[2]) / 2, (bbox[1] + bbox[3]) / 2) + return dist(center, bbox_center) + + +def _key_area(bbox: list[float]) -> float: + """ + Large to small + + Parameters + ---------- + bbox: list[float] + list of [x1, y1, x2, y2] + """ + return -bbox_area(bbox) + + +def sort_bboxes( + pred: PredictOutput, order: int | SortBy = SortBy.NONE +) -> PredictOutput: + if order == SortBy.NONE or len(pred.bboxes) <= 1: + return pred + + if order == SortBy.LEFT_TO_RIGHT: + key = _key_left_to_right + elif order == SortBy.CENTER_TO_EDGE: + width, height = pred.preview.size + center = (width / 2, height / 2) + key = partial(_key_center_to_edge, center=center) + elif order == SortBy.AREA: + key = _key_area + else: + raise RuntimeError + + items = len(pred.bboxes) + idx = sorted(range(items), key=lambda i: key(pred.bboxes[i])) + pred.bboxes = [pred.bboxes[i] for i in idx] + pred.masks = [pred.masks[i] for i in idx] + return pred + + +# Filter by ratio +def is_in_ratio(bbox: list[float], low: float, high: float, orig_area: int) -> bool: + area = bbox_area(bbox) + return low <= area / orig_area <= high + + +def filter_by_ratio(pred: PredictOutput, low: float, high: float) -> PredictOutput: + if not pred.bboxes: + return pred + + w, h = pred.preview.size + orig_area = w * h + items = len(pred.bboxes) + idx = [i for i in range(items) if is_in_ratio(pred.bboxes[i], low, high, orig_area)] + pred.bboxes = [pred.bboxes[i] for i in idx] + pred.masks = [pred.masks[i] for i in idx] + return pred + + +# Merge / Invert +def mask_merge(masks: list[Image.Image]) -> list[Image.Image]: + arrs = [np.array(m) for m in masks] + arr = reduce(cv2.bitwise_or, arrs) + return [Image.fromarray(arr)] + + +def mask_invert(masks: list[Image.Image]) -> list[Image.Image]: + return [ImageChops.invert(m) for m in masks] + + +def mask_merge_invert( + masks: list[Image.Image], mode: int | MergeInvert | str +) -> list[Image.Image]: + if isinstance(mode, str): + mode = MASK_MERGE_INVERT.index(mode) + + if mode == MergeInvert.NONE or not masks: + return masks + + if mode == MergeInvert.MERGE: + return mask_merge(masks) + + if mode == MergeInvert.MERGE_INVERT: + merged = mask_merge(masks) + return mask_invert(merged) + + raise RuntimeError diff --git a/adetailer/adetailer/mediapipe.py b/adetailer/adetailer/mediapipe.py new file mode 100644 index 0000000000000000000000000000000000000000..e52b620883b6e7360a3ad5e332cdd03f24d6daab --- /dev/null +++ b/adetailer/adetailer/mediapipe.py @@ -0,0 +1,179 @@ +from __future__ import annotations + +from functools import partial + +import mediapipe as mp +import numpy as np +from PIL import Image, ImageDraw + +from adetailer import PredictOutput +from adetailer.common import create_bbox_from_mask, create_mask_from_bbox + + +def mediapipe_predict( + model_type: str, image: Image.Image, confidence: float = 0.3 +) -> PredictOutput: + mapping = { + "mediapipe_face_short": partial(mediapipe_face_detection, 0), + "mediapipe_face_full": partial(mediapipe_face_detection, 1), + "mediapipe_face_mesh": mediapipe_face_mesh, + "mediapipe_face_mesh_eyes_only": mediapipe_face_mesh_eyes_only, + } + if model_type in mapping: + func = mapping[model_type] + return func(image, confidence) + msg = f"[-] ADetailer: Invalid mediapipe model type: {model_type}, Available: {list(mapping.keys())!r}" + raise RuntimeError(msg) + + +def mediapipe_face_detection( + model_type: int, image: Image.Image, confidence: float = 0.3 +) -> PredictOutput: + img_width, img_height = image.size + + mp_face_detection = mp.solutions.face_detection + draw_util = mp.solutions.drawing_utils + + img_array = np.array(image) + + with mp_face_detection.FaceDetection( + model_selection=model_type, min_detection_confidence=confidence + ) as face_detector: + pred = face_detector.process(img_array) + + if pred.detections is None: + return PredictOutput() + + preview_array = img_array.copy() + + bboxes = [] + for detection in pred.detections: + draw_util.draw_detection(preview_array, detection) + + bbox = detection.location_data.relative_bounding_box + x1 = bbox.xmin * img_width + y1 = bbox.ymin * img_height + w = bbox.width * img_width + h = bbox.height * img_height + x2 = x1 + w + y2 = y1 + h + + bboxes.append([x1, y1, x2, y2]) + + masks = create_mask_from_bbox(bboxes, image.size) + preview = Image.fromarray(preview_array) + + return PredictOutput(bboxes=bboxes, masks=masks, preview=preview) + + +def get_convexhull(points: np.ndarray) -> list[tuple[int, int]]: + """ + Parameters + ---------- + points: An ndarray of shape (n, 2) containing the 2D points. + + Returns + ------- + list[tuple[int, int]]: Input for the draw.polygon function + """ + from scipy.spatial import ConvexHull + + hull = ConvexHull(points) + vertices = hull.vertices + return list(zip(points[vertices, 0], points[vertices, 1])) + + +def mediapipe_face_mesh(image: Image.Image, confidence: float = 0.3) -> PredictOutput: + mp_face_mesh = mp.solutions.face_mesh + draw_util = mp.solutions.drawing_utils + drawing_styles = mp.solutions.drawing_styles + + w, h = image.size + + with mp_face_mesh.FaceMesh( + static_image_mode=True, max_num_faces=20, min_detection_confidence=confidence + ) as face_mesh: + arr = np.array(image) + pred = face_mesh.process(arr) + + if pred.multi_face_landmarks is None: + return PredictOutput() + + preview = arr.copy() + masks = [] + + for landmarks in pred.multi_face_landmarks: + draw_util.draw_landmarks( + image=preview, + landmark_list=landmarks, + connections=mp_face_mesh.FACEMESH_TESSELATION, + landmark_drawing_spec=None, + connection_drawing_spec=drawing_styles.get_default_face_mesh_tesselation_style(), + ) + + points = np.array([(land.x * w, land.y * h) for land in landmarks.landmark]) + outline = get_convexhull(points) + + mask = Image.new("L", image.size, "black") + draw = ImageDraw.Draw(mask) + draw.polygon(outline, fill="white") + masks.append(mask) + + bboxes = create_bbox_from_mask(masks, image.size) + preview = Image.fromarray(preview) + return PredictOutput(bboxes=bboxes, masks=masks, preview=preview) + + +def mediapipe_face_mesh_eyes_only( + image: Image.Image, confidence: float = 0.3 +) -> PredictOutput: + mp_face_mesh = mp.solutions.face_mesh + + left_idx = np.array(list(mp_face_mesh.FACEMESH_LEFT_EYE)).flatten() + right_idx = np.array(list(mp_face_mesh.FACEMESH_RIGHT_EYE)).flatten() + + w, h = image.size + + with mp_face_mesh.FaceMesh( + static_image_mode=True, max_num_faces=20, min_detection_confidence=confidence + ) as face_mesh: + arr = np.array(image) + pred = face_mesh.process(arr) + + if pred.multi_face_landmarks is None: + return PredictOutput() + + preview = image.copy() + masks = [] + + for landmarks in pred.multi_face_landmarks: + points = np.array([(land.x * w, land.y * h) for land in landmarks.landmark]) + left_eyes = points[left_idx] + right_eyes = points[right_idx] + left_outline = get_convexhull(left_eyes) + right_outline = get_convexhull(right_eyes) + + mask = Image.new("L", image.size, "black") + draw = ImageDraw.Draw(mask) + for outline in (left_outline, right_outline): + draw.polygon(outline, fill="white") + masks.append(mask) + + bboxes = create_bbox_from_mask(masks, image.size) + preview = draw_preview(preview, bboxes, masks) + return PredictOutput(bboxes=bboxes, masks=masks, preview=preview) + + +def draw_preview( + preview: Image.Image, bboxes: list[list[int]], masks: list[Image.Image] +) -> Image.Image: + red = Image.new("RGB", preview.size, "red") + for mask in masks: + masked = Image.composite(red, preview, mask) + preview = Image.blend(preview, masked, 0.25) + + draw = ImageDraw.Draw(preview) + for bbox in bboxes: + draw.rectangle(bbox, outline="red", width=2) + + return preview diff --git a/adetailer/adetailer/traceback.py b/adetailer/adetailer/traceback.py new file mode 100644 index 0000000000000000000000000000000000000000..e3fcd9e8cd8a56281fbc02c83406f636c1c590c0 --- /dev/null +++ b/adetailer/adetailer/traceback.py @@ -0,0 +1,161 @@ +from __future__ import annotations + +import io +import platform +import sys +from importlib.metadata import version +from typing import Any, Callable + +from rich.console import Console, Group +from rich.panel import Panel +from rich.table import Table +from rich.traceback import Traceback + +from adetailer.__version__ import __version__ + + +def processing(*args: Any) -> dict[str, Any]: + try: + from modules.processing import ( + StableDiffusionProcessingImg2Img, + StableDiffusionProcessingTxt2Img, + ) + except ImportError: + return {} + + p = None + for arg in args: + if isinstance( + arg, (StableDiffusionProcessingTxt2Img, StableDiffusionProcessingImg2Img) + ): + p = arg + break + + if p is None: + return {} + + info = { + "prompt": p.prompt, + "negative_prompt": p.negative_prompt, + "n_iter": p.n_iter, + "batch_size": p.batch_size, + "width": p.width, + "height": p.height, + "sampler_name": p.sampler_name, + "enable_hr": getattr(p, "enable_hr", False), + "hr_upscaler": getattr(p, "hr_upscaler", ""), + } + + info.update(sd_models()) + return info + + +def sd_models() -> dict[str, str]: + try: + from modules import shared + + opts = shared.opts + except Exception: + return {} + + return { + "checkpoint": getattr(opts, "sd_model_checkpoint", "------"), + "vae": getattr(opts, "sd_vae", "------"), + "unet": getattr(opts, "sd_unet", "------"), + } + + +def ad_args(*args: Any) -> dict[str, Any]: + ad_args = [ + arg + for arg in args + if isinstance(arg, dict) and arg.get("ad_model", "None") != "None" + ] + if not ad_args: + return {} + + arg0 = ad_args[0] + is_api = arg0.get("is_api", True) + return { + "version": __version__, + "ad_model": arg0["ad_model"], + "ad_prompt": arg0.get("ad_prompt", ""), + "ad_negative_prompt": arg0.get("ad_negative_prompt", ""), + "ad_controlnet_model": arg0.get("ad_controlnet_model", "None"), + "is_api": type(is_api) is not tuple, + } + + +def library_version(): + libraries = ["torch", "torchvision", "ultralytics", "mediapipe"] + d = {} + for lib in libraries: + try: + d[lib] = version(lib) + except Exception: + d[lib] = "Unknown" + return d + + +def sys_info() -> dict[str, Any]: + try: + import launch + + version = launch.git_tag() + commit = launch.commit_hash() + except Exception: + version = "Unknown (too old or vladmandic)" + commit = "Unknown" + + return { + "Platform": platform.platform(), + "Python": sys.version, + "Version": version, + "Commit": commit, + "Commandline": sys.argv, + "Libraries": library_version(), + } + + +def get_table(title: str, data: dict[str, Any]) -> Table: + table = Table(title=title, highlight=True) + table.add_column(" ", justify="right", style="dim") + table.add_column("Value") + for key, value in data.items(): + if not isinstance(value, str): + value = repr(value) + table.add_row(key, value) + + return table + + +def rich_traceback(func: Callable) -> Callable: + def wrapper(*args, **kwargs): + string = io.StringIO() + width = Console().width + width = width - 4 if width > 4 else None + console = Console(file=string, width=width) + try: + return func(*args, **kwargs) + except Exception as e: + tables = [ + get_table(title, data) + for title, data in [ + ("System info", sys_info()), + ("Inputs", processing(*args)), + ("ADetailer", ad_args(*args)), + ] + if data + ] + tables.append(Traceback()) + + console.print(Panel(Group(*tables))) + output = "\n" + string.getvalue() + + try: + error = e.__class__(output) + except Exception: + error = RuntimeError(output) + raise error from None + + return wrapper diff --git a/adetailer/adetailer/ui.py b/adetailer/adetailer/ui.py new file mode 100644 index 0000000000000000000000000000000000000000..b4e585eb751f9a0ca3e2cd220c2f8a2f9c35a291 --- /dev/null +++ b/adetailer/adetailer/ui.py @@ -0,0 +1,558 @@ +from __future__ import annotations + +from functools import partial +from types import SimpleNamespace +from typing import Any + +import gradio as gr + +from adetailer import AFTER_DETAILER, __version__ +from adetailer.args import AD_ENABLE, ALL_ARGS, MASK_MERGE_INVERT +from controlnet_ext import controlnet_exists, get_cn_models + +cn_module_choices = [ + "inpaint_global_harmonious", + "inpaint_only", + "inpaint_only+lama", +] + + +class Widgets(SimpleNamespace): + def tolist(self): + return [getattr(self, attr) for attr in ALL_ARGS.attrs] + + +def gr_interactive(value: bool = True): + return gr.update(interactive=value) + + +def ordinal(n: int) -> str: + d = {1: "st", 2: "nd", 3: "rd"} + return str(n) + ("th" if 11 <= n % 100 <= 13 else d.get(n % 10, "th")) + + +def suffix(n: int, c: str = " ") -> str: + return "" if n == 0 else c + ordinal(n + 1) + + +def on_widget_change(state: dict, value: Any, *, attr: str): + state[attr] = value + return state + + +def on_generate_click(state: dict, *values: Any): + for attr, value in zip(ALL_ARGS.attrs, values): + state[attr] = value + state["is_api"] = () + return state + + +def on_cn_model_update(cn_model: str): + if "inpaint" in cn_model: + return gr.update( + visible=True, choices=cn_module_choices, value=cn_module_choices[0] + ) + return gr.update(visible=False, choices=["None"], value="None") + + +def elem_id(item_id: str, n: int, is_img2img: bool) -> str: + tap = "img2img" if is_img2img else "txt2img" + suf = suffix(n, "_") + return f"script_{tap}_adetailer_{item_id}{suf}" + + +def adui( + num_models: int, + is_img2img: bool, + model_list: list[str], + samplers: list[str], + t2i_button: gr.Button, + i2i_button: gr.Button, +): + states = [] + infotext_fields = [] + eid = partial(elem_id, n=0, is_img2img=is_img2img) + + with gr.Accordion(AFTER_DETAILER, open=False, elem_id=eid("ad_main_accordion")): + with gr.Row(): + with gr.Column(scale=6): + ad_enable = gr.Checkbox( + label="Enable ADetailer", + value=False, + visible=True, + elem_id=eid("ad_enable"), + ) + + with gr.Column(scale=1, min_width=180): + gr.Markdown( + f"v{__version__}", + elem_id=eid("ad_version"), + ) + + infotext_fields.append((ad_enable, AD_ENABLE.name)) + + with gr.Group(), gr.Tabs(): + for n in range(num_models): + with gr.Tab(ordinal(n + 1)): + state, infofields = one_ui_group( + n=n, + is_img2img=is_img2img, + model_list=model_list, + samplers=samplers, + t2i_button=t2i_button, + i2i_button=i2i_button, + ) + + states.append(state) + infotext_fields.extend(infofields) + + # components: [bool, dict, dict, ...] + components = [ad_enable, *states] + return components, infotext_fields + + +def one_ui_group( + n: int, + is_img2img: bool, + model_list: list[str], + samplers: list[str], + t2i_button: gr.Button, + i2i_button: gr.Button, +): + w = Widgets() + state = gr.State({}) + eid = partial(elem_id, n=n, is_img2img=is_img2img) + + with gr.Row(): + model_choices = [*model_list, "None"] if n == 0 else ["None", *model_list] + + w.ad_model = gr.Dropdown( + label="ADetailer model" + suffix(n), + choices=model_choices, + value=model_choices[0], + visible=True, + type="value", + elem_id=eid("ad_model"), + ) + + with gr.Group(): + with gr.Row(elem_id=eid("ad_toprow_prompt")): + w.ad_prompt = gr.Textbox( + label="ad_prompt" + suffix(n), + show_label=False, + lines=3, + placeholder="ADetailer prompt" + + suffix(n) + + "\nIf blank, the main prompt is used.", + elem_id=eid("ad_prompt"), + ) + + with gr.Row(elem_id=eid("ad_toprow_negative_prompt")): + w.ad_negative_prompt = gr.Textbox( + label="ad_negative_prompt" + suffix(n), + show_label=False, + lines=2, + placeholder="ADetailer negative prompt" + + suffix(n) + + "\nIf blank, the main negative prompt is used.", + elem_id=eid("ad_negative_prompt"), + ) + + with gr.Group(): + with gr.Accordion( + "Detection", open=False, elem_id=eid("ad_detection_accordion") + ): + detection(w, n, is_img2img) + + with gr.Accordion( + "Mask Preprocessing", + open=False, + elem_id=eid("ad_mask_preprocessing_accordion"), + ): + mask_preprocessing(w, n, is_img2img) + + with gr.Accordion( + "Inpainting", open=False, elem_id=eid("ad_inpainting_accordion") + ): + inpainting(w, n, is_img2img, samplers) + + with gr.Group(): + controlnet(w, n, is_img2img) + + all_inputs = [state, *w.tolist()] + target_button = i2i_button if is_img2img else t2i_button + target_button.click( + fn=on_generate_click, inputs=all_inputs, outputs=state, queue=False + ) + + infotext_fields = [(getattr(w, attr), name + suffix(n)) for attr, name in ALL_ARGS] + + return state, infotext_fields + + +def detection(w: Widgets, n: int, is_img2img: bool): + eid = partial(elem_id, n=n, is_img2img=is_img2img) + + with gr.Row(): + with gr.Column(): + w.ad_confidence = gr.Slider( + label="Detection model confidence threshold" + suffix(n), + minimum=0.0, + maximum=1.0, + step=0.01, + value=0.3, + visible=True, + elem_id=eid("ad_confidence"), + ) + + with gr.Column(variant="compact"): + w.ad_mask_min_ratio = gr.Slider( + label="Mask min area ratio" + suffix(n), + minimum=0.0, + maximum=1.0, + step=0.001, + value=0.0, + visible=True, + elem_id=eid("ad_mask_min_ratio"), + ) + w.ad_mask_max_ratio = gr.Slider( + label="Mask max area ratio" + suffix(n), + minimum=0.0, + maximum=1.0, + step=0.001, + value=1.0, + visible=True, + elem_id=eid("ad_mask_max_ratio"), + ) + + +def mask_preprocessing(w: Widgets, n: int, is_img2img: bool): + eid = partial(elem_id, n=n, is_img2img=is_img2img) + + with gr.Group(): + with gr.Row(): + with gr.Column(variant="compact"): + w.ad_x_offset = gr.Slider( + label="Mask x(→) offset" + suffix(n), + minimum=-200, + maximum=200, + step=1, + value=0, + visible=True, + elem_id=eid("ad_x_offset"), + ) + w.ad_y_offset = gr.Slider( + label="Mask y(↑) offset" + suffix(n), + minimum=-200, + maximum=200, + step=1, + value=0, + visible=True, + elem_id=eid("ad_y_offset"), + ) + + with gr.Column(variant="compact"): + w.ad_dilate_erode = gr.Slider( + label="Mask erosion (-) / dilation (+)" + suffix(n), + minimum=-128, + maximum=128, + step=4, + value=4, + visible=True, + elem_id=eid("ad_dilate_erode"), + ) + + with gr.Row(): + w.ad_mask_merge_invert = gr.Radio( + label="Mask merge mode" + suffix(n), + choices=MASK_MERGE_INVERT, + value="None", + elem_id=eid("ad_mask_merge_invert"), + ) + + +def inpainting(w: Widgets, n: int, is_img2img: bool, samplers: list[str]): + eid = partial(elem_id, n=n, is_img2img=is_img2img) + + with gr.Group(): + with gr.Row(): + w.ad_mask_blur = gr.Slider( + label="Inpaint mask blur" + suffix(n), + minimum=0, + maximum=64, + step=1, + value=4, + visible=True, + elem_id=eid("ad_mask_blur"), + ) + + w.ad_denoising_strength = gr.Slider( + label="Inpaint denoising strength" + suffix(n), + minimum=0.0, + maximum=1.0, + step=0.01, + value=0.4, + visible=True, + elem_id=eid("ad_denoising_strength"), + ) + + with gr.Row(): + with gr.Column(variant="compact"): + w.ad_inpaint_only_masked = gr.Checkbox( + label="Inpaint only masked" + suffix(n), + value=True, + visible=True, + elem_id=eid("ad_inpaint_only_masked"), + ) + w.ad_inpaint_only_masked_padding = gr.Slider( + label="Inpaint only masked padding, pixels" + suffix(n), + minimum=0, + maximum=256, + step=4, + value=32, + visible=True, + elem_id=eid("ad_inpaint_only_masked_padding"), + ) + + w.ad_inpaint_only_masked.change( + gr_interactive, + inputs=w.ad_inpaint_only_masked, + outputs=w.ad_inpaint_only_masked_padding, + queue=False, + ) + + with gr.Column(variant="compact"): + w.ad_use_inpaint_width_height = gr.Checkbox( + label="Use separate width/height" + suffix(n), + value=False, + visible=True, + elem_id=eid("ad_use_inpaint_width_height"), + ) + + w.ad_inpaint_width = gr.Slider( + label="inpaint width" + suffix(n), + minimum=64, + maximum=2048, + step=4, + value=512, + visible=True, + elem_id=eid("ad_inpaint_width"), + ) + + w.ad_inpaint_height = gr.Slider( + label="inpaint height" + suffix(n), + minimum=64, + maximum=2048, + step=4, + value=512, + visible=True, + elem_id=eid("ad_inpaint_height"), + ) + + w.ad_use_inpaint_width_height.change( + lambda value: (gr_interactive(value), gr_interactive(value)), + inputs=w.ad_use_inpaint_width_height, + outputs=[w.ad_inpaint_width, w.ad_inpaint_height], + queue=False, + ) + + with gr.Row(): + with gr.Column(variant="compact"): + w.ad_use_steps = gr.Checkbox( + label="Use separate steps" + suffix(n), + value=False, + visible=True, + elem_id=eid("ad_use_steps"), + ) + + w.ad_steps = gr.Slider( + label="ADetailer steps" + suffix(n), + minimum=1, + maximum=150, + step=1, + value=28, + visible=True, + elem_id=eid("ad_steps"), + ) + + w.ad_use_steps.change( + gr_interactive, + inputs=w.ad_use_steps, + outputs=w.ad_steps, + queue=False, + ) + + with gr.Column(variant="compact"): + w.ad_use_cfg_scale = gr.Checkbox( + label="Use separate CFG scale" + suffix(n), + value=False, + visible=True, + elem_id=eid("ad_use_cfg_scale"), + ) + + w.ad_cfg_scale = gr.Slider( + label="ADetailer CFG scale" + suffix(n), + minimum=0.0, + maximum=30.0, + step=0.5, + value=7.0, + visible=True, + elem_id=eid("ad_cfg_scale"), + ) + + w.ad_use_cfg_scale.change( + gr_interactive, + inputs=w.ad_use_cfg_scale, + outputs=w.ad_cfg_scale, + queue=False, + ) + + with gr.Row(): + with gr.Column(variant="compact"): + w.ad_use_sampler = gr.Checkbox( + label="Use separate sampler" + suffix(n), + value=False, + visible=True, + elem_id=eid("ad_use_sampler"), + ) + + w.ad_sampler = gr.Dropdown( + label="ADetailer sampler" + suffix(n), + choices=samplers, + value=samplers[0], + visible=True, + elem_id=eid("ad_sampler"), + ) + + w.ad_use_sampler.change( + gr_interactive, + inputs=w.ad_use_sampler, + outputs=w.ad_sampler, + queue=False, + ) + + with gr.Column(variant="compact"): + w.ad_use_noise_multiplier = gr.Checkbox( + label="Use separate noise multiplier" + suffix(n), + value=False, + visible=True, + elem_id=eid("ad_use_noise_multiplier"), + ) + + w.ad_noise_multiplier = gr.Slider( + label="Noise multiplier for img2img" + suffix(n), + minimum=0.5, + maximum=1.5, + step=0.01, + value=1.0, + visible=True, + elem_id=eid("ad_noise_multiplier"), + ) + + w.ad_use_noise_multiplier.change( + gr_interactive, + inputs=w.ad_use_noise_multiplier, + outputs=w.ad_noise_multiplier, + queue=False, + ) + + with gr.Row(): + with gr.Column(variant="compact"): + w.ad_use_clip_skip = gr.Checkbox( + label="Use separate CLIP skip" + suffix(n), + value=False, + visible=True, + elem_id=eid("ad_use_clip_skip"), + ) + + w.ad_clip_skip = gr.Slider( + label="ADetailer CLIP skip" + suffix(n), + minimum=1, + maximum=12, + step=1, + value=1, + visible=True, + elem_id=eid("ad_clip_skip"), + ) + + w.ad_use_clip_skip.change( + gr_interactive, + inputs=w.ad_use_clip_skip, + outputs=w.ad_clip_skip, + queue=False, + ) + + with gr.Column(variant="compact"): + w.ad_restore_face = gr.Checkbox( + label="Restore faces after ADetailer" + suffix(n), + value=False, + elem_id=eid("ad_restore_face"), + ) + + +def controlnet(w: Widgets, n: int, is_img2img: bool): + eid = partial(elem_id, n=n, is_img2img=is_img2img) + cn_models = ["None", *get_cn_models()] + + with gr.Row(variant="panel"): + with gr.Column(variant="compact"): + w.ad_controlnet_model = gr.Dropdown( + label="ControlNet model" + suffix(n), + choices=cn_models, + value="None", + visible=True, + type="value", + interactive=controlnet_exists, + elem_id=eid("ad_controlnet_model"), + ) + + w.ad_controlnet_module = gr.Dropdown( + label="ControlNet module" + suffix(n), + choices=cn_module_choices, + value="inpaint_global_harmonious", + visible=False, + type="value", + interactive=controlnet_exists, + elem_id=eid("ad_controlnet_module"), + ) + + w.ad_controlnet_weight = gr.Slider( + label="ControlNet weight" + suffix(n), + minimum=0.0, + maximum=1.0, + step=0.01, + value=1.0, + visible=True, + interactive=controlnet_exists, + elem_id=eid("ad_controlnet_weight"), + ) + + w.ad_controlnet_model.change( + on_cn_model_update, + inputs=w.ad_controlnet_model, + outputs=w.ad_controlnet_module, + queue=False, + ) + + with gr.Column(variant="compact"): + w.ad_controlnet_guidance_start = gr.Slider( + label="ControlNet guidance start" + suffix(n), + minimum=0.0, + maximum=1.0, + step=0.01, + value=0.0, + visible=True, + interactive=controlnet_exists, + elem_id=eid("ad_controlnet_guidance_start"), + ) + + w.ad_controlnet_guidance_end = gr.Slider( + label="ControlNet guidance end" + suffix(n), + minimum=0.0, + maximum=1.0, + step=0.01, + value=1.0, + visible=True, + interactive=controlnet_exists, + elem_id=eid("ad_controlnet_guidance_end"), + ) diff --git a/adetailer/adetailer/ultralytics.py b/adetailer/adetailer/ultralytics.py new file mode 100644 index 0000000000000000000000000000000000000000..addd0f5c01435a03d899a562d5e5e8b113fabcbc --- /dev/null +++ b/adetailer/adetailer/ultralytics.py @@ -0,0 +1,50 @@ +from __future__ import annotations + +from pathlib import Path + +import cv2 +from PIL import Image +from torchvision.transforms.functional import to_pil_image +from ultralytics import YOLO + +from adetailer import PredictOutput +from adetailer.common import create_mask_from_bbox + + +def ultralytics_predict( + model_path: str | Path, + image: Image.Image, + confidence: float = 0.3, + device: str = "", +) -> PredictOutput: + model = YOLO(model_path) + pred = model(image, conf=confidence, device=device) + + bboxes = pred[0].boxes.xyxy.cpu().numpy() + if bboxes.size == 0: + return PredictOutput() + bboxes = bboxes.tolist() + + if pred[0].masks is None: + masks = create_mask_from_bbox(bboxes, image.size) + else: + masks = mask_to_pil(pred[0].masks.data, image.size) + preview = pred[0].plot() + preview = cv2.cvtColor(preview, cv2.COLOR_BGR2RGB) + preview = Image.fromarray(preview) + + return PredictOutput(bboxes=bboxes, masks=masks, preview=preview) + + +def mask_to_pil(masks, shape: tuple[int, int]) -> list[Image.Image]: + """ + Parameters + ---------- + masks: torch.Tensor, dtype=torch.float32, shape=(N, H, W). + The device can be CUDA, but `to_pil_image` takes care of that. + + shape: tuple[int, int] + (width, height) of the original image + """ + n = masks.shape[0] + return [to_pil_image(masks[i], mode="L").resize(shape) for i in range(n)] diff --git a/adetailer/controlnet_ext/__init__.py b/adetailer/controlnet_ext/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..0ab666835157561426d684d798735e724a5a4dbe --- /dev/null +++ b/adetailer/controlnet_ext/__init__.py @@ -0,0 +1,7 @@ +from .controlnet_ext import ControlNetExt, controlnet_exists, get_cn_models + +__all__ = [ + "ControlNetExt", + "controlnet_exists", + "get_cn_models", +] diff --git a/adetailer/controlnet_ext/controlnet_ext.py b/adetailer/controlnet_ext/controlnet_ext.py new file mode 100644 index 0000000000000000000000000000000000000000..ec86d46b713c2ee39d9bdd615411494cfe05aba3 --- /dev/null +++ b/adetailer/controlnet_ext/controlnet_ext.py @@ -0,0 +1,140 @@ +from __future__ import annotations + +import importlib +import re +from functools import lru_cache +from pathlib import Path + +from modules import extensions, sd_models, shared +from modules.paths import data_path, models_path, script_path + +ext_path = Path(data_path, "extensions") +ext_builtin_path = Path(script_path, "extensions-builtin") +controlnet_exists = False +controlnet_path = None +cn_base_path = "" + +for extension in extensions.active(): + if not extension.enabled: + continue + # For cases like sd-webui-controlnet-master + if "sd-webui-controlnet" in extension.name: + controlnet_exists = True + controlnet_path = Path(extension.path) + cn_base_path = ".".join(controlnet_path.parts[-2:]) + break + +cn_model_module = { + "inpaint": "inpaint_global_harmonious", + "scribble": "t2ia_sketch_pidi", + "lineart": "lineart_coarse", + "openpose": "openpose_full", + "tile": None, +} +cn_model_regex = re.compile("|".join(cn_model_module.keys())) + + +class ControlNetExt: + def __init__(self): + self.cn_models = ["None"] + self.cn_available = False + self.external_cn = None + + def init_controlnet(self): + import_path = cn_base_path + ".scripts.external_code" + + self.external_cn = importlib.import_module(import_path, "external_code") + self.cn_available = True + models = self.external_cn.get_models() + self.cn_models.extend(m for m in models if cn_model_regex.search(m)) + + def update_scripts_args( + self, + p, + model: str, + module: str | None, + weight: float, + guidance_start: float, + guidance_end: float, + ): + if (not self.cn_available) or model == "None": + return + + if module is None: + for m, v in cn_model_module.items(): + if m in model: + module = v + break + + cn_units = [ + self.external_cn.ControlNetUnit( + model=model, + weight=weight, + control_mode=self.external_cn.ControlMode.BALANCED, + module=module, + guidance_start=guidance_start, + guidance_end=guidance_end, + pixel_perfect=True, + ) + ] + + self.external_cn.update_cn_script_in_processing(p, cn_units) + + +def get_cn_model_dirs() -> list[Path]: + cn_model_dir = Path(models_path, "ControlNet") + if controlnet_path is not None: + cn_model_dir_old = controlnet_path.joinpath("models") + else: + cn_model_dir_old = None + ext_dir1 = shared.opts.data.get("control_net_models_path", "") + ext_dir2 = getattr(shared.cmd_opts, "controlnet_dir", "") + + dirs = [cn_model_dir] + for ext_dir in [cn_model_dir_old, ext_dir1, ext_dir2]: + if ext_dir: + dirs.append(Path(ext_dir)) + + return dirs + + +@lru_cache +def _get_cn_models() -> list[str]: + """ + Since we can't import ControlNet, we use a function that does something like + controlnet's `list(global_state.cn_models_names.values())`. + """ + cn_model_exts = (".pt", ".pth", ".ckpt", ".safetensors") + dirs = get_cn_model_dirs() + name_filter = shared.opts.data.get("control_net_models_name_filter", "") + name_filter = name_filter.strip(" ").lower() + + model_paths = [] + + for base in dirs: + if not base.exists(): + continue + + for p in base.rglob("*"): + if ( + p.is_file() + and p.suffix in cn_model_exts + and cn_model_regex.search(p.name) + ): + if name_filter and name_filter not in p.name.lower(): + continue + model_paths.append(p) + model_paths.sort(key=lambda p: p.name) + + models = [] + for p in model_paths: + model_hash = sd_models.model_hash(p) + name = f"{p.stem} [{model_hash}]" + models.append(name) + return models + + +def get_cn_models() -> list[str]: + if controlnet_exists: + return _get_cn_models() + return [] diff --git a/adetailer/controlnet_ext/restore.py b/adetailer/controlnet_ext/restore.py new file mode 100644 index 0000000000000000000000000000000000000000..152ffd0a9732b5512e4440b795a1ad89bcb27cab --- /dev/null +++ b/adetailer/controlnet_ext/restore.py @@ -0,0 +1,43 @@ +from __future__ import annotations + +from contextlib import contextmanager + +from modules import img2img, processing, shared + + +class CNHijackRestore: + def __init__(self): + self.process = hasattr(processing, "__controlnet_original_process_images_inner") + self.img2img = hasattr(img2img, "__controlnet_original_process_batch") + + def __enter__(self): + if self.process: + self.orig_process = processing.process_images_inner + processing.process_images_inner = getattr( + processing, "__controlnet_original_process_images_inner" + ) + if self.img2img: + self.orig_img2img = img2img.process_batch + img2img.process_batch = getattr( + img2img, "__controlnet_original_process_batch" + ) + + def __exit__(self, *args, **kwargs): + if self.process: + processing.process_images_inner = self.orig_process + if self.img2img: + img2img.process_batch = self.orig_img2img + + +@contextmanager +def cn_allow_script_control(): + orig = False + if "control_net_allow_script_control" in shared.opts.data: + try: + orig = shared.opts.data["control_net_allow_script_control"] + shared.opts.data["control_net_allow_script_control"] = True + yield + finally: + shared.opts.data["control_net_allow_script_control"] = orig + else: + yield diff --git a/adetailer/install.py b/adetailer/install.py new file mode 100644 index 0000000000000000000000000000000000000000..fbbf26ba9b91232fb6297e264571e2c4d105b72a --- /dev/null +++ b/adetailer/install.py @@ -0,0 +1,78 @@ +from __future__ import annotations + +import importlib.util +import subprocess +import sys +from importlib.metadata import version # python >= 3.8 + +from packaging.version import parse + +import_name = {"py-cpuinfo": "cpuinfo", "protobuf": "google.protobuf"} + + +def is_installed( + package: str, min_version: str | None = None, max_version: str | None = None +): + name = import_name.get(package, package) + try: + spec = importlib.util.find_spec(name) + except ModuleNotFoundError: + return False + + if spec is None: + return False + + if not min_version and not max_version: + return True + + if not min_version: + min_version = "0.0.0" + if not max_version: + max_version = "99999999.99999999.99999999" + + try: + pkg_version = version(package) + return parse(min_version) <= parse(pkg_version) <= parse(max_version) + except Exception: + return False + + +def run_pip(*args): + subprocess.run([sys.executable, "-m", "pip", "install", *args]) + + +def install(): + deps = [ + # requirements + ("ultralytics", "8.0.145", None), + ("mediapipe", "0.10.2", None), + ("rich", "13.4.2", None), + # ultralytics + ("py-cpuinfo", None, None), + # mediapipe + ("protobuf", "3.20", "3.9999"), + ] + + for pkg, low, high in deps: + if not is_installed(pkg, low, high): + if low and high: + cmd = f"{pkg}>={low},<={high}" + elif low: + cmd = f"{pkg}>={low}" + elif high: + cmd = f"{pkg}<={high}" + else: + cmd = pkg + + run_pip("-U", cmd) + + +try: + import launch + + skip_install = launch.args.skip_install +except Exception: + skip_install = False + +if not skip_install: + install() diff --git a/adetailer/preload.py b/adetailer/preload.py new file mode 100644 index 0000000000000000000000000000000000000000..10be161f22b0a5ef7083609829a21b547eae9aea --- /dev/null +++ b/adetailer/preload.py @@ -0,0 +1,9 @@ +import argparse + + +def preload(parser: argparse.ArgumentParser): + parser.add_argument( + "--ad-no-huggingface", + action="store_true", + help="Don't use adetailer models from huggingface", + ) diff --git a/adetailer/pyproject.toml b/adetailer/pyproject.toml new file mode 100644 index 0000000000000000000000000000000000000000..be1fc0c9bea946d9d1dabd2514f573b5117ae683 --- /dev/null +++ b/adetailer/pyproject.toml @@ -0,0 +1,26 @@ +[project] +name = "adetailer" +description = "An object detection and auto-mask extension for stable diffusion webui." +authors = [ + {name = "dowon", email = "ks2515@naver.com"}, +] +requires-python = ">=3.8,<3.12" +readme = "README.md" +license = {text = "AGPL-3.0"} + +[project.urls] +repository = "https://github.com/Bing-su/adetailer" + +[tool.isort] +profile = "black" +known_first_party = ["launch", "modules"] + +[tool.ruff] +select = ["A", "B", "C4", "C90", "E", "EM", "F", "FA", "I001", "ISC", "N", "PIE", "PT", "RET", "RUF", "SIM", "UP", "W"] +ignore = ["B008", "B905", "E501", "F401", "UP007"] + +[tool.ruff.isort] +known-first-party = ["launch", "modules"] + +[tool.ruff.per-file-ignores] +"sd_webui/*.py" = ["B027", "F403"] diff --git a/adetailer/scripts/!adetailer.py b/adetailer/scripts/!adetailer.py new file mode 100644 index 0000000000000000000000000000000000000000..228b984d2d6587714dbfdb45411a1b6dd2871295 --- /dev/null +++ b/adetailer/scripts/!adetailer.py @@ -0,0 +1,808 @@ +from __future__ import annotations + +import os +import platform +import re +import sys +import traceback +from contextlib import contextmanager +from copy import copy, deepcopy +from functools import partial +from pathlib import Path +from textwrap import dedent +from typing import Any + +import gradio as gr +import torch +from rich import print + +import modules +from adetailer import ( + AFTER_DETAILER, + __version__, + get_models, + mediapipe_predict, + ultralytics_predict, +) +from adetailer.args import ALL_ARGS, BBOX_SORTBY, ADetailerArgs, EnableChecker +from adetailer.common import PredictOutput +from adetailer.mask import filter_by_ratio, mask_preprocess, sort_bboxes +from adetailer.traceback import rich_traceback +from adetailer.ui import adui, ordinal, suffix +from controlnet_ext import ControlNetExt, controlnet_exists, get_cn_models +from controlnet_ext.restore import ( + CNHijackRestore, + cn_allow_script_control, +) +from sd_webui import images, safe, script_callbacks, scripts, shared +from sd_webui.devices import NansException +from sd_webui.paths import data_path, models_path +from sd_webui.processing import ( + Processed, + StableDiffusionProcessingImg2Img, + create_infotext, + process_images, +) +from sd_webui.sd_samplers import all_samplers +from sd_webui.shared import cmd_opts, opts, state + +no_huggingface = getattr(cmd_opts, "ad_no_huggingface", False) +adetailer_dir = Path(models_path, "adetailer") +model_mapping = get_models(adetailer_dir, huggingface=not no_huggingface) +txt2img_submit_button = img2img_submit_button = None +SCRIPT_DEFAULT = "dynamic_prompting,dynamic_thresholding,wildcard_recursive,wildcards,lora_block_weight" + +if ( + not adetailer_dir.exists() + and adetailer_dir.parent.exists() + and os.access(adetailer_dir.parent, os.W_OK) +): + adetailer_dir.mkdir() + +print( + f"[-] ADetailer initialized. version: {__version__}, num models: {len(model_mapping)}" +) + + +@contextmanager +def change_torch_load(): + orig = torch.load + try: + torch.load = safe.unsafe_torch_load + yield + finally: + torch.load = orig + + +@contextmanager +def pause_total_tqdm(): + orig = opts.data.get("multiple_tqdm", True) + try: + opts.data["multiple_tqdm"] = False + yield + finally: + opts.data["multiple_tqdm"] = orig + + +@contextmanager +def preseve_prompts(p): + all_pt = copy(p.all_prompts) + all_ng = copy(p.all_negative_prompts) + try: + yield + finally: + p.all_prompts = all_pt + p.all_negative_prompts = all_ng + + +class AfterDetailerScript(scripts.Script): + def __init__(self): + super().__init__() + self.ultralytics_device = self.get_ultralytics_device() + + self.controlnet_ext = None + + def __repr__(self): + return f"{self.__class__.__name__}(version={__version__})" + + def title(self): + return AFTER_DETAILER + + def show(self, is_img2img): + return scripts.AlwaysVisible + + def ui(self, is_img2img): + num_models = opts.data.get("ad_max_models", 2) + model_list = list(model_mapping.keys()) + samplers = [sampler.name for sampler in all_samplers] + + components, infotext_fields = adui( + num_models, + is_img2img, + model_list, + samplers, + txt2img_submit_button, + img2img_submit_button, + ) + + self.infotext_fields = infotext_fields + return components + + def init_controlnet_ext(self) -> None: + if self.controlnet_ext is not None: + return + self.controlnet_ext = ControlNetExt() + + if controlnet_exists: + try: + self.controlnet_ext.init_controlnet() + except ImportError: + error = traceback.format_exc() + print( + f"[-] ADetailer: ControlNetExt init failed:\n{error}", + file=sys.stderr, + ) + + def update_controlnet_args(self, p, args: ADetailerArgs) -> None: + if self.controlnet_ext is None: + self.init_controlnet_ext() + + if ( + self.controlnet_ext is not None + and self.controlnet_ext.cn_available + and args.ad_controlnet_model != "None" + ): + self.controlnet_ext.update_scripts_args( + p, + model=args.ad_controlnet_model, + module=args.ad_controlnet_module, + weight=args.ad_controlnet_weight, + guidance_start=args.ad_controlnet_guidance_start, + guidance_end=args.ad_controlnet_guidance_end, + ) + + def is_ad_enabled(self, *args_) -> bool: + arg_list = [arg for arg in args_ if isinstance(arg, dict)] + if not args_ or not arg_list or not isinstance(args_[0], (bool, dict)): + message = f""" + [-] ADetailer: Invalid arguments passed to ADetailer. + input: {args_!r} + """ + raise ValueError(dedent(message)) + enable = args_[0] if isinstance(args_[0], bool) else True + checker = EnableChecker(enable=enable, arg_list=arg_list) + return checker.is_enabled() + + def get_args(self, p, *args_) -> list[ADetailerArgs]: + """ + `args_` is at least 1 in length by `is_ad_enabled` immediately above + """ + args = [arg for arg in args_ if isinstance(arg, dict)] + + if not args: + message = f"[-] ADetailer: Invalid arguments passed to ADetailer: {args_!r}" + raise ValueError(message) + + if hasattr(p, "adetailer_xyz"): + args[0].update(p.adetailer_xyz) + + all_inputs = [] + + for n, arg_dict in enumerate(args, 1): + try: + inp = ADetailerArgs(**arg_dict) + except ValueError as e: + msgs = [ + f"[-] ADetailer: ValidationError when validating {ordinal(n)} arguments: {e}\n" + ] + for attr in ALL_ARGS.attrs: + arg = arg_dict.get(attr) + dtype = type(arg) + arg = "DEFAULT" if arg is None else repr(arg) + msgs.append(f" {attr}: {arg} ({dtype})") + raise ValueError("\n".join(msgs)) from e + + all_inputs.append(inp) + + return all_inputs + + def extra_params(self, arg_list: list[ADetailerArgs]) -> dict: + params = {} + for n, args in enumerate(arg_list): + params.update(args.extra_params(suffix=suffix(n))) + params["ADetailer version"] = __version__ + return params + + @staticmethod + def get_ultralytics_device() -> str: + if "adetailer" in shared.cmd_opts.use_cpu: + return "cpu" + + if platform.system() == "Darwin": + return "" + + if any(getattr(cmd_opts, vram, False) for vram in ["lowvram", "medvram"]): + return "cpu" + + return "" + + def prompt_blank_replacement( + self, all_prompts: list[str], i: int, default: str + ) -> str: + if not all_prompts: + return default + if i < len(all_prompts): + return all_prompts[i] + j = i % len(all_prompts) + return all_prompts[j] + + def _get_prompt( + self, ad_prompt: str, all_prompts: list[str], i: int, default: str + ) -> list[str]: + prompts = re.split(r"\s*\[SEP\]\s*", ad_prompt) + blank_replacement = self.prompt_blank_replacement(all_prompts, i, default) + for n in range(len(prompts)): + if not prompts[n]: + prompts[n] = blank_replacement + return prompts + + def get_prompt(self, p, args: ADetailerArgs) -> tuple[list[str], list[str]]: + i = p._ad_idx + + prompt = self._get_prompt(args.ad_prompt, p.all_prompts, i, p.prompt) + negative_prompt = self._get_prompt( + args.ad_negative_prompt, p.all_negative_prompts, i, p.negative_prompt + ) + + return prompt, negative_prompt + + def get_seed(self, p) -> tuple[int, int]: + i = p._ad_idx + + if not p.all_seeds: + seed = p.seed + elif i < len(p.all_seeds): + seed = p.all_seeds[i] + else: + j = i % len(p.all_seeds) + seed = p.all_seeds[j] + + if not p.all_subseeds: + subseed = p.subseed + elif i < len(p.all_subseeds): + subseed = p.all_subseeds[i] + else: + j = i % len(p.all_subseeds) + subseed = p.all_subseeds[j] + + return seed, subseed + + def get_width_height(self, p, args: ADetailerArgs) -> tuple[int, int]: + if args.ad_use_inpaint_width_height: + width = args.ad_inpaint_width + height = args.ad_inpaint_height + else: + width = p.width + height = p.height + + return width, height + + def get_steps(self, p, args: ADetailerArgs) -> int: + if args.ad_use_steps: + return args.ad_steps + return p.steps + + def get_cfg_scale(self, p, args: ADetailerArgs) -> float: + if args.ad_use_cfg_scale: + return args.ad_cfg_scale + return p.cfg_scale + + def get_sampler(self, p, args: ADetailerArgs) -> str: + sampler_name = args.ad_sampler if args.ad_use_sampler else p.sampler_name + + if sampler_name in ["PLMS", "UniPC"]: + sampler_name = "Euler" + return sampler_name + + def get_override_settings(self, p, args: ADetailerArgs) -> dict[str, Any]: + d = {} + if args.ad_use_clip_skip: + d["CLIP_stop_at_last_layers"] = args.ad_clip_skip + return d + + def get_initial_noise_multiplier(self, p, args: ADetailerArgs) -> float | None: + if args.ad_use_noise_multiplier: + return args.ad_noise_multiplier + return None + + @staticmethod + def infotext(p) -> str: + return create_infotext( + p, p.all_prompts, p.all_seeds, p.all_subseeds, None, 0, 0 + ) + + def write_params_txt(self, p) -> None: + infotext = self.infotext(p) + params_txt = Path(data_path, "params.txt") + params_txt.write_text(infotext, encoding="utf-8") + + def script_filter(self, p, args: ADetailerArgs): + script_runner = copy(p.scripts) + script_args = deepcopy(p.script_args) + self.disable_controlnet_units(script_args) + + ad_only_seleted_scripts = opts.data.get("ad_only_seleted_scripts", True) + if not ad_only_seleted_scripts: + return script_runner, script_args + + ad_script_names = opts.data.get("ad_script_names", SCRIPT_DEFAULT) + script_names_set = { + name + for script_name in ad_script_names.split(",") + for name in (script_name, script_name.strip()) + } + + if args.ad_controlnet_model != "None": + script_names_set.add("controlnet") + + filtered_alwayson = [] + for script_object in script_runner.alwayson_scripts: + filepath = script_object.filename + filename = Path(filepath).stem + if filename in script_names_set: + filtered_alwayson.append(script_object) + + script_runner.alwayson_scripts = filtered_alwayson + return script_runner, script_args + + def disable_controlnet_units(self, script_args: list[Any]) -> None: + for obj in script_args: + if "controlnet" in obj.__class__.__name__.lower(): + if hasattr(obj, "enabled"): + obj.enabled = False + if hasattr(obj, "input_mode"): + obj.input_mode = getattr(obj.input_mode, "SIMPLE", "simple") + + elif isinstance(obj, dict) and "module" in obj: + obj["enabled"] = False + + def get_i2i_p(self, p, args: ADetailerArgs, image): + seed, subseed = self.get_seed(p) + width, height = self.get_width_height(p, args) + steps = self.get_steps(p, args) + cfg_scale = self.get_cfg_scale(p, args) + initial_noise_multiplier = self.get_initial_noise_multiplier(p, args) + sampler_name = self.get_sampler(p, args) + override_settings = self.get_override_settings(p, args) + + i2i = StableDiffusionProcessingImg2Img( + init_images=[image], + resize_mode=0, + denoising_strength=args.ad_denoising_strength, + mask=None, + mask_blur=args.ad_mask_blur, + inpainting_fill=1, + inpaint_full_res=args.ad_inpaint_only_masked, + inpaint_full_res_padding=args.ad_inpaint_only_masked_padding, + inpainting_mask_invert=0, + initial_noise_multiplier=initial_noise_multiplier, + sd_model=p.sd_model, + outpath_samples=p.outpath_samples, + outpath_grids=p.outpath_grids, + prompt="", # replace later + negative_prompt="", + styles=p.styles, + seed=seed, + subseed=subseed, + subseed_strength=p.subseed_strength, + seed_resize_from_h=p.seed_resize_from_h, + seed_resize_from_w=p.seed_resize_from_w, + sampler_name=sampler_name, + batch_size=1, + n_iter=1, + steps=steps, + cfg_scale=cfg_scale, + width=width, + height=height, + restore_faces=args.ad_restore_face, + tiling=p.tiling, + extra_generation_params=p.extra_generation_params, + do_not_save_samples=True, + do_not_save_grid=True, + override_settings=override_settings, + ) + + i2i.cached_c = [None, None] + i2i.cached_uc = [None, None] + i2i.scripts, i2i.script_args = self.script_filter(p, args) + i2i._disable_adetailer = True + + if args.ad_controlnet_model != "None": + self.update_controlnet_args(i2i, args) + else: + i2i.control_net_enabled = False + + return i2i + + def save_image(self, p, image, *, condition: str, suffix: str) -> None: + i = p._ad_idx + if p.all_prompts: + i %= len(p.all_prompts) + save_prompt = p.all_prompts[i] + else: + save_prompt = p.prompt + seed, _ = self.get_seed(p) + + if opts.data.get(condition, False): + images.save_image( + image=image, + path=p.outpath_samples, + basename="", + seed=seed, + prompt=save_prompt, + extension=opts.samples_format, + info=self.infotext(p), + p=p, + suffix=suffix, + ) + + def get_ad_model(self, name: str): + if name not in model_mapping: + msg = f"[-] ADetailer: Model {name!r} not found. Available models: {list(model_mapping.keys())}" + raise ValueError(msg) + return model_mapping[name] + + def sort_bboxes(self, pred: PredictOutput) -> PredictOutput: + sortby = opts.data.get("ad_bbox_sortby", BBOX_SORTBY[0]) + sortby_idx = BBOX_SORTBY.index(sortby) + return sort_bboxes(pred, sortby_idx) + + def pred_preprocessing(self, pred: PredictOutput, args: ADetailerArgs): + pred = filter_by_ratio( + pred, low=args.ad_mask_min_ratio, high=args.ad_mask_max_ratio + ) + pred = self.sort_bboxes(pred) + return mask_preprocess( + pred.masks, + kernel=args.ad_dilate_erode, + x_offset=args.ad_x_offset, + y_offset=args.ad_y_offset, + merge_invert=args.ad_mask_merge_invert, + ) + + @staticmethod + def ensure_rgb_image(image: Any): + if hasattr(image, "mode") and image.mode != "RGB": + image = image.convert("RGB") + return image + + @staticmethod + def i2i_prompts_replace( + i2i, prompts: list[str], negative_prompts: list[str], j: int + ) -> None: + i1 = min(j, len(prompts) - 1) + i2 = min(j, len(negative_prompts) - 1) + prompt = prompts[i1] + negative_prompt = negative_prompts[i2] + i2i.prompt = prompt + i2i.negative_prompt = negative_prompt + + @staticmethod + def compare_prompt(p, processed, n: int = 0): + if p.prompt != processed.all_prompts[0]: + print( + f"[-] ADetailer: applied {ordinal(n + 1)} ad_prompt: {processed.all_prompts[0]!r}" + ) + + if p.negative_prompt != processed.all_negative_prompts[0]: + print( + f"[-] ADetailer: applied {ordinal(n + 1)} ad_negative_prompt: {processed.all_negative_prompts[0]!r}" + ) + + @staticmethod + def need_call_process(p) -> bool: + i = p._ad_idx + bs = p.batch_size + return i % bs == bs - 1 + + @staticmethod + def need_call_postprocess(p) -> bool: + i = p._ad_idx + bs = p.batch_size + return i % bs == 0 + + @rich_traceback + def process(self, p, *args_): + if getattr(p, "_disable_adetailer", False): + return + + if self.is_ad_enabled(*args_): + arg_list = self.get_args(p, *args_) + extra_params = self.extra_params(arg_list) + p.extra_generation_params.update(extra_params) + + def _postprocess_image(self, p, pp, args: ADetailerArgs, *, n: int = 0) -> bool: + """ + Returns + ------- + bool + + `True` if image was processed, `False` otherwise. + """ + if state.interrupted: + return False + + i = p._ad_idx + + i2i = self.get_i2i_p(p, args, pp.image) + seed, subseed = self.get_seed(p) + ad_prompts, ad_negatives = self.get_prompt(p, args) + + is_mediapipe = args.ad_model.lower().startswith("mediapipe") + + kwargs = {} + if is_mediapipe: + predictor = mediapipe_predict + ad_model = args.ad_model + else: + predictor = ultralytics_predict + ad_model = self.get_ad_model(args.ad_model) + kwargs["device"] = self.ultralytics_device + + with change_torch_load(): + pred = predictor(ad_model, pp.image, args.ad_confidence, **kwargs) + + masks = self.pred_preprocessing(pred, args) + + if not masks: + print( + f"[-] ADetailer: nothing detected on image {i + 1} with {ordinal(n + 1)} settings." + ) + return False + + self.save_image( + p, + pred.preview, + condition="ad_save_previews", + suffix="-ad-preview" + suffix(n, "-"), + ) + + steps = len(masks) + processed = None + state.job_count += steps + + if is_mediapipe: + print(f"mediapipe: {steps} detected.") + + p2 = copy(i2i) + for j in range(steps): + p2.image_mask = masks[j] + p2.init_images[0] = self.ensure_rgb_image(p2.init_images[0]) + self.i2i_prompts_replace(p2, ad_prompts, ad_negatives, j) + + if re.match(r"^\s*\[SKIP\]\s*$", p2.prompt): + continue + + p2.seed = seed + j + p2.subseed = subseed + j + + try: + processed = process_images(p2) + except NansException as e: + msg = f"[-] ADetailer: 'NansException' occurred with {ordinal(n + 1)} settings.\n{e}" + print(msg, file=sys.stderr) + continue + finally: + p2.close() + + self.compare_prompt(p2, processed, n=n) + p2 = copy(i2i) + p2.init_images = [processed.images[0]] + + if processed is not None: + pp.image = processed.images[0] + return True + + return False + + @rich_traceback + def postprocess_image(self, p, pp, *args_): + if getattr(p, "_disable_adetailer", False): + return + + if not self.is_ad_enabled(*args_): + return + + p._ad_idx = getattr(p, "_ad_idx", -1) + 1 + init_image = copy(pp.image) + arg_list = self.get_args(p, *args_) + + if p.scripts is not None and self.need_call_postprocess(p): + dummy = Processed(p, [], p.seed, "") + with preseve_prompts(p): + p.scripts.postprocess(copy(p), dummy) + + is_processed = False + with CNHijackRestore(), pause_total_tqdm(), cn_allow_script_control(): + for n, args in enumerate(arg_list): + if args.ad_model == "None": + continue + is_processed |= self._postprocess_image(p, pp, args, n=n) + + if is_processed: + self.save_image( + p, init_image, condition="ad_save_images_before", suffix="-ad-before" + ) + + if p.scripts is not None and self.need_call_process(p): + with preseve_prompts(p): + p.scripts.process(copy(p)) + + try: + ia = p._ad_idx + lenp = len(p.all_prompts) + if ia % lenp == lenp - 1: + self.write_params_txt(p) + except Exception: + pass + + +def on_after_component(component, **_kwargs): + global txt2img_submit_button, img2img_submit_button + if getattr(component, "elem_id", None) == "txt2img_generate": + txt2img_submit_button = component + return + + if getattr(component, "elem_id", None) == "img2img_generate": + img2img_submit_button = component + + +def on_ui_settings(): + section = ("ADetailer", AFTER_DETAILER) + shared.opts.add_option( + "ad_max_models", + shared.OptionInfo( + default=2, + label="Max models", + component=gr.Slider, + component_args={"minimum": 1, "maximum": 10, "step": 1}, + section=section, + ), + ) + + shared.opts.add_option( + "ad_save_previews", + shared.OptionInfo(False, "Save mask previews", section=section), + ) + + shared.opts.add_option( + "ad_save_images_before", + shared.OptionInfo(False, "Save images before ADetailer", section=section), + ) + + shared.opts.add_option( + "ad_only_seleted_scripts", + shared.OptionInfo( + True, "Apply only selected scripts to ADetailer", section=section + ), + ) + + textbox_args = { + "placeholder": "comma-separated list of script names", + "interactive": True, + } + + shared.opts.add_option( + "ad_script_names", + shared.OptionInfo( + default=SCRIPT_DEFAULT, + label="Script names to apply to ADetailer (separated by comma)", + component=gr.Textbox, + component_args=textbox_args, + section=section, + ), + ) + + shared.opts.add_option( + "ad_bbox_sortby", + shared.OptionInfo( + default="None", + label="Sort bounding boxes by", + component=gr.Radio, + component_args={"choices": BBOX_SORTBY}, + section=section, + ), + ) + + +# xyz_grid + + +def make_axis_on_xyz_grid(): + xyz_grid = None + for script in scripts.scripts_data: + if script.script_class.__module__ == "xyz_grid.py": + xyz_grid = script.module + break + + if xyz_grid is None: + return + + model_list = ["None", *model_mapping.keys()] + samplers = [sampler.name for sampler in all_samplers] + + def set_value(p, x, xs, *, field: str): + if not hasattr(p, "adetailer_xyz"): + p.adetailer_xyz = {} + p.adetailer_xyz[field] = x + + axis = [ + xyz_grid.AxisOption( + "[ADetailer] ADetailer model 1st", + str, + partial(set_value, field="ad_model"), + choices=lambda: model_list, + ), + xyz_grid.AxisOption( + "[ADetailer] ADetailer prompt 1st", + str, + partial(set_value, field="ad_prompt"), + ), + xyz_grid.AxisOption( + "[ADetailer] ADetailer negative prompt 1st", + str, + partial(set_value, field="ad_negative_prompt"), + ), + xyz_grid.AxisOption( + "[ADetailer] Mask erosion / dilation 1st", + int, + partial(set_value, field="ad_dilate_erode"), + ), + xyz_grid.AxisOption( + "[ADetailer] Inpaint denoising strength 1st", + float, + partial(set_value, field="ad_denoising_strength"), + ), + xyz_grid.AxisOption( + "[ADetailer] Inpaint only masked 1st", + str, + partial(set_value, field="ad_inpaint_only_masked"), + choices=lambda: ["True", "False"], + ), + xyz_grid.AxisOption( + "[ADetailer] Inpaint only masked padding 1st", + int, + partial(set_value, field="ad_inpaint_only_masked_padding"), + ), + xyz_grid.AxisOption( + "[ADetailer] ADetailer sampler 1st", + str, + partial(set_value, field="ad_sampler"), + choices=lambda: samplers, + ), + xyz_grid.AxisOption( + "[ADetailer] ControlNet model 1st", + str, + partial(set_value, field="ad_controlnet_model"), + choices=lambda: ["None", *get_cn_models()], + ), + ] + + if not any(x.label.startswith("[ADetailer]") for x in xyz_grid.axis_options): + xyz_grid.axis_options.extend(axis) + + +def on_before_ui(): + try: + make_axis_on_xyz_grid() + except Exception: + error = traceback.format_exc() + print( + f"[-] ADetailer: xyz_grid error:\n{error}", + file=sys.stderr, + ) + + +script_callbacks.on_ui_settings(on_ui_settings) +script_callbacks.on_after_component(on_after_component) +script_callbacks.on_before_ui(on_before_ui) diff --git a/adetailer/sd_webui/__init__.py b/adetailer/sd_webui/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/adetailer/sd_webui/devices.py b/adetailer/sd_webui/devices.py new file mode 100644 index 0000000000000000000000000000000000000000..51d0569a8ea9dda869ac43ac338835e2fbb27782 --- /dev/null +++ b/adetailer/sd_webui/devices.py @@ -0,0 +1,11 @@ +from __future__ import annotations + +from typing import TYPE_CHECKING + +if TYPE_CHECKING: + + class NansException(Exception): # noqa: N818 + pass + +else: + from modules.devices import NansException diff --git a/adetailer/sd_webui/images.py b/adetailer/sd_webui/images.py new file mode 100644 index 0000000000000000000000000000000000000000..b4a2dbce09ad3583f3aac4624c969657103c145e --- /dev/null +++ b/adetailer/sd_webui/images.py @@ -0,0 +1,62 @@ +from __future__ import annotations + +from typing import TYPE_CHECKING + +if TYPE_CHECKING: + from PIL import Image, PngImagePlugin + + from sd_webui.processing import StableDiffusionProcessing + + def save_image( + image: Image.Image, + path: str, + basename: str, + seed: int | None = None, + prompt: str = "", + extension: str = "png", + info: str | PngImagePlugin.iTXt = "", + short_filename: bool = False, + no_prompt: bool = False, + grid: bool = False, + pnginfo_section_name: str = "parameters", + p: StableDiffusionProcessing | None = None, + existing_info: dict | None = None, + forced_filename: str | None = None, + suffix: str = "", + save_to_dirs: bool = False, + ) -> tuple[str, str | None]: + """Save an image. + + Args: + image (`PIL.Image`): + The image to be saved. + path (`str`): + The directory to save the image. Note, the option `save_to_dirs` will make the image to be saved into a sub directory. + basename (`str`): + The base filename which will be applied to `filename pattern`. + seed, prompt, short_filename, + extension (`str`): + Image file extension, default is `png`. + pngsectionname (`str`): + Specify the name of the section which `info` will be saved in. + info (`str` or `PngImagePlugin.iTXt`): + PNG info chunks. + existing_info (`dict`): + Additional PNG info. `existing_info == {pngsectionname: info, ...}` + no_prompt: + TODO I don't know its meaning. + p (`StableDiffusionProcessing`) + forced_filename (`str`): + If specified, `basename` and filename pattern will be ignored. + save_to_dirs (bool): + If true, the image will be saved into a subdirectory of `path`. + + Returns: (fullfn, txt_fullfn) + fullfn (`str`): + The full path of the saved imaged. + txt_fullfn (`str` or None): + If a text file is saved for this image, this will be its full path. Otherwise None. + """ + +else: + from modules.images import save_image diff --git a/adetailer/sd_webui/paths.py b/adetailer/sd_webui/paths.py new file mode 100644 index 0000000000000000000000000000000000000000..8050ba080788f291a3c717016798f3c6531e655e --- /dev/null +++ b/adetailer/sd_webui/paths.py @@ -0,0 +1,14 @@ +from __future__ import annotations + +from typing import TYPE_CHECKING + +if TYPE_CHECKING: + import os + + models_path = os.path.join(os.path.dirname(__file__), "1") + script_path = os.path.join(os.path.dirname(__file__), "2") + data_path = os.path.join(os.path.dirname(__file__), "3") + extensions_dir = os.path.join(os.path.dirname(__file__), "4") + extensions_builtin_dir = os.path.join(os.path.dirname(__file__), "5") +else: + from modules.paths import data_path, models_path, script_path diff --git a/adetailer/sd_webui/processing.py b/adetailer/sd_webui/processing.py new file mode 100644 index 0000000000000000000000000000000000000000..9787d02c0759ca8eb1d0dcc74455c0682a402cd5 --- /dev/null +++ b/adetailer/sd_webui/processing.py @@ -0,0 +1,179 @@ +from __future__ import annotations + +from typing import TYPE_CHECKING + +if TYPE_CHECKING: + from dataclasses import dataclass, field + from typing import Any, Callable + + import numpy as np + import torch + from PIL import Image + + def _image(): + return Image.new("L", (512, 512)) + + @dataclass + class StableDiffusionProcessing: + sd_model: torch.nn.Module = field(default_factory=lambda: torch.nn.Linear(1, 1)) + outpath_samples: str = "" + outpath_grids: str = "" + prompt: str = "" + prompt_for_display: str = "" + negative_prompt: str = "" + styles: list[str] = field(default_factory=list) + seed: int = -1 + subseed: int = -1 + subseed_strength: float = 0.0 + seed_resize_from_h: int = -1 + seed_resize_from_w: int = -1 + sampler_name: str | None = None + batch_size: int = 1 + n_iter: int = 1 + steps: int = 50 + cfg_scale: float = 7.0 + width: int = 512 + height: int = 512 + restore_faces: bool = False + tiling: bool = False + do_not_save_samples: bool = False + do_not_save_grid: bool = False + extra_generation_params: dict[str, Any] = field(default_factory=dict) + overlay_images: list[Image.Image] = field(default_factory=list) + eta: float = 0.0 + do_not_reload_embeddings: bool = False + paste_to: tuple[int | float, ...] = (0, 0, 0, 0) + color_corrections: list[np.ndarray] = field(default_factory=list) + denoising_strength: float = 0.0 + sampler_noise_scheduler_override: Callable | None = None + ddim_discretize: str = "" + s_min_uncond: float = 0.0 + s_churn: float = 0.0 + s_tmin: float = 0.0 + s_tmax: float = 0.0 + s_noise: float = 0.0 + override_settings: dict[str, Any] = field(default_factory=dict) + override_settings_restore_afterwards: bool = False + is_using_inpainting_conditioning: bool = False + disable_extra_networks: bool = False + scripts: Any = None + script_args: list[Any] = field(default_factory=list) + all_prompts: list[str] = field(default_factory=list) + all_negative_prompts: list[str] = field(default_factory=list) + all_seeds: list[int] = field(default_factory=list) + all_subseeds: list[int] = field(default_factory=list) + iteration: int = 1 + is_hr_pass: bool = False + + def close(self) -> None: + pass + + @dataclass + class StableDiffusionProcessingTxt2Img(StableDiffusionProcessing): + sampler: Callable | None = None + enable_hr: bool = False + denoising_strength: float = 0.75 + hr_scale: float = 2.0 + hr_upscaler: str = "" + hr_second_pass_steps: int = 0 + hr_resize_x: int = 0 + hr_resize_y: int = 0 + hr_upscale_to_x: int = 0 + hr_upscale_to_y: int = 0 + width: int = 512 + height: int = 512 + truncate_x: int = 512 + truncate_y: int = 512 + applied_old_hires_behavior_to: tuple[int, int] = (512, 512) + + @dataclass + class StableDiffusionProcessingImg2Img(StableDiffusionProcessing): + sampler: Callable | None = None + init_images: list[Image.Image] = field(default_factory=list) + resize_mode: int = 0 + denoising_strength: float = 0.75 + image_cfg_scale: float | None = None + init_latent: torch.Tensor | None = None + image_mask: Image.Image = field(default_factory=_image) + latent_mask: Image.Image = field(default_factory=_image) + mask_for_overlay: Image.Image = field(default_factory=_image) + mask_blur: int = 4 + inpainting_fill: int = 0 + inpaint_full_res: bool = True + inpaint_full_res_padding: int = 0 + inpainting_mask_invert: int | bool = 0 + initial_noise_multiplier: float = 1.0 + mask: torch.Tensor | None = None + nmask: torch.Tensor | None = None + image_conditioning: torch.Tensor | None = None + + @dataclass + class Processed: + images: list[Image.Image] = field(default_factory=list) + prompt: list[str] = field(default_factory=list) + negative_prompt: list[str] = field(default_factory=list) + seed: list[int] = field(default_factory=list) + subseed: list[int] = field(default_factory=list) + subseed_strength: float = 0.0 + info: str = "" + comments: str = "" + width: int = 512 + height: int = 512 + sampler_name: str = "" + cfg_scale: float = 7.0 + image_cfg_scale: float | None = None + steps: int = 50 + batch_size: int = 1 + restore_faces: bool = False + face_restoration_model: str | None = None + sd_model_hash: str = "" + seed_resize_from_w: int = -1 + seed_resize_from_h: int = -1 + denoising_strength: float = 0.0 + extra_generation_params: dict[str, Any] = field(default_factory=dict) + index_of_first_image: int = 0 + styles: list[str] = field(default_factory=list) + job_timestamp: str = "" + clip_skip: int = 1 + eta: float = 0.0 + ddim_discretize: str = "" + s_churn: float = 0.0 + s_tmin: float = 0.0 + s_tmax: float = 0.0 + s_noise: float = 0.0 + sampler_noise_scheduler_override: Callable | None = None + is_using_inpainting_conditioning: bool = False + all_prompts: list[str] = field(default_factory=list) + all_negative_prompts: list[str] = field(default_factory=list) + all_seeds: list[int] = field(default_factory=list) + all_subseeds: list[int] = field(default_factory=list) + infotexts: list[str] = field(default_factory=list) + + def create_infotext( + p: StableDiffusionProcessingTxt2Img | StableDiffusionProcessingImg2Img, + all_prompts: list[str], + all_seeds: list[int], + all_subseeds: list[int], + comments: Any, + iteration: int = 0, + position_in_batch: int = 0, + use_main_prompt: bool = False, + index: int | None = None, + all_negative_prompts: list[str] | None = None, + ) -> str: + pass + + def process_images( + p: StableDiffusionProcessingTxt2Img | StableDiffusionProcessingImg2Img, + ) -> Processed: + pass + +else: + from modules.processing import ( + Processed, + StableDiffusionProcessing, + StableDiffusionProcessingImg2Img, + StableDiffusionProcessingTxt2Img, + create_infotext, + process_images, + ) diff --git a/adetailer/sd_webui/safe.py b/adetailer/sd_webui/safe.py new file mode 100644 index 0000000000000000000000000000000000000000..c17a1b97d3ce1590d0ecfa49373a826a300404d1 --- /dev/null +++ b/adetailer/sd_webui/safe.py @@ -0,0 +1,10 @@ +from __future__ import annotations + +from typing import TYPE_CHECKING + +if TYPE_CHECKING: + import torch + + unsafe_torch_load = torch.load +else: + from modules.safe import unsafe_torch_load diff --git a/adetailer/sd_webui/script_callbacks.py b/adetailer/sd_webui/script_callbacks.py new file mode 100644 index 0000000000000000000000000000000000000000..ebb3ac0507bd32a8b6f962e9796829f539cd31a1 --- /dev/null +++ b/adetailer/sd_webui/script_callbacks.py @@ -0,0 +1,26 @@ +from __future__ import annotations + +from typing import TYPE_CHECKING + +if TYPE_CHECKING: + from typing import Callable + + def on_app_started(callback: Callable): + pass + + def on_ui_settings(callback: Callable): + pass + + def on_after_component(callback: Callable): + pass + + def on_before_ui(callback: Callable): + pass + +else: + from modules.script_callbacks import ( + on_after_component, + on_app_started, + on_before_ui, + on_ui_settings, + ) diff --git a/adetailer/sd_webui/scripts.py b/adetailer/sd_webui/scripts.py new file mode 100644 index 0000000000000000000000000000000000000000..e515bbb70e5e6f880892b80a9af62f96efe87dea --- /dev/null +++ b/adetailer/sd_webui/scripts.py @@ -0,0 +1,94 @@ +from __future__ import annotations + +from typing import TYPE_CHECKING + +if TYPE_CHECKING: + from abc import ABC, abstractmethod + from collections import namedtuple + from dataclasses import dataclass + from typing import Any + + import gradio as gr + from PIL import Image + + from sd_webui.processing import ( + Processed, + StableDiffusionProcessingImg2Img, + StableDiffusionProcessingTxt2Img, + ) + + SDPType = StableDiffusionProcessingImg2Img | StableDiffusionProcessingTxt2Img + AlwaysVisible = object() + + @dataclass + class PostprocessImageArgs: + image: Image.Image + + class Script(ABC): + filename: str + args_from: int + args_to: int + alwayson: bool + + is_txt2img: bool + is_img2img: bool + + group: gr.Group + infotext_fields: list[tuple[str, str]] + paste_field_names: list[str] + + @abstractmethod + def title(self): + raise NotImplementedError + + def ui(self, is_img2img: bool): + pass + + def show(self, is_img2img: bool): + return True + + def run(self, p: SDPType, *args): + pass + + def process(self, p: SDPType, *args): + pass + + def before_process_batch(self, p: SDPType, *args, **kwargs): + pass + + def process_batch(self, p: SDPType, *args, **kwargs): + pass + + def postprocess_batch(self, p: SDPType, *args, **kwargs): + pass + + def postprocess_image(self, p: SDPType, pp: PostprocessImageArgs, *args): + pass + + def postprocess(self, p: SDPType, processed: Processed, *args): + pass + + def before_component(self, component, **kwargs): + pass + + def after_component(self, component, **kwargs): + pass + + def describe(self): + return "" + + def elem_id(self, item_id: Any) -> str: + pass + + ScriptClassData = namedtuple( + "ScriptClassData", ["script_class", "path", "basedir", "module"] + ) + scripts_data: list[ScriptClassData] = [] + +else: + from modules.scripts import ( + AlwaysVisible, + PostprocessImageArgs, + Script, + scripts_data, + ) diff --git a/adetailer/sd_webui/sd_samplers.py b/adetailer/sd_webui/sd_samplers.py new file mode 100644 index 0000000000000000000000000000000000000000..168198f25ad7b4e88bd0077aba61a38c66897058 --- /dev/null +++ b/adetailer/sd_webui/sd_samplers.py @@ -0,0 +1,17 @@ +from __future__ import annotations + +from typing import TYPE_CHECKING + +if TYPE_CHECKING: + from typing import Any, Callable, NamedTuple + + class SamplerData(NamedTuple): + name: str + constructor: Callable + aliases: list[str] + options: dict[str, Any] + + all_samplers: list[SamplerData] = [] + +else: + from modules.sd_samplers import all_samplers diff --git a/adetailer/sd_webui/shared.py b/adetailer/sd_webui/shared.py new file mode 100644 index 0000000000000000000000000000000000000000..18b0cd0801e652340c86dc6e7074fb0c92b99cc4 --- /dev/null +++ b/adetailer/sd_webui/shared.py @@ -0,0 +1,66 @@ +from __future__ import annotations + +from typing import TYPE_CHECKING + +if TYPE_CHECKING: + import argparse + from dataclasses import dataclass + from typing import Any, Callable + + import torch + from PIL import Image + + @dataclass + class State: + skipped: bool = False + interrupted: bool = False + job: str = "" + job_no: int = 0 + job_count: int = 0 + processing_has_refined_job_count: bool = False + job_timestamp: str = "0" + sampling_step: int = 0 + sampling_steps: int = 0 + current_latent: torch.Tensor | None = None + current_image: Image.Image | None = None + current_image_sampling_step: int = 0 + id_live_preview: int = 0 + textinfo: str | None = None + time_start: float | None = None + need_restart: bool = False + server_start: float | None = None + + @dataclass + class OptionInfo: + default: Any = None + label: str = "" + component: Any = None + component_args: Callable[[], dict] | dict[str, Any] | None = None + onchange: Callable[[], None] | None = None + section: tuple[str, str] | None = None + refresh: Callable[[], None] | None = None + + class Option: + data_labels: dict[str, OptionInfo] + + def __init__(self): + self.data: dict[str, Any] = {} + + def add_option(self, key: str, info: OptionInfo): + pass + + def __getattr__(self, item: str): + if self.data is not None and item in self.data: + return self.data[item] + + if item in self.data_labels: + return self.data_labels[item].default + + return super().__getattribute__(item) + + opts = Option() + cmd_opts = argparse.Namespace() + state = State() + +else: + from modules.shared import OptionInfo, cmd_opts, opts, state diff --git a/artists-to-study/.github/FUNDING.yml b/artists-to-study/.github/FUNDING.yml new file mode 100644 index 0000000000000000000000000000000000000000..2cba5d94b1f7872a97dc2293bf4c0f5dbfd55ac0 --- /dev/null +++ b/artists-to-study/.github/FUNDING.yml @@ -0,0 +1,13 @@ +# These are supported funding model platforms + +github: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2] +patreon: camenduru +open_collective: # Replace with a single Open Collective username +ko_fi: camenduru +tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel +community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry +liberapay: # Replace with a single Liberapay username +issuehunt: # Replace with a single IssueHunt username +otechie: # Replace with a single Otechie username +lfx_crowdfunding: # Replace with a single LFX Crowdfunding project-name e.g., cloud-foundry +custom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2'] diff --git a/artists-to-study/LICENSE b/artists-to-study/LICENSE new file mode 100644 index 0000000000000000000000000000000000000000..fdddb29aa445bf3d6a5d843d6dd77e10a9f99657 --- /dev/null +++ b/artists-to-study/LICENSE @@ -0,0 +1,24 @@ +This is free and unencumbered software released into the public domain. + +Anyone is free to copy, modify, publish, use, compile, sell, or +distribute this software, either in source code form or as a compiled +binary, for any purpose, commercial or non-commercial, and by any +means. + +In jurisdictions that recognize copyright laws, the author or authors +of this software dedicate any and all copyright interest in the +software to the public domain. We make this dedication for the benefit +of the public at large and to the detriment of our heirs and +successors. We intend this dedication to be an overt act of +relinquishment in perpetuity of all present and future rights to this +software under copyright law. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR +OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, +ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR +OTHER DEALINGS IN THE SOFTWARE. + +For more information, please refer to diff --git a/artists-to-study/README.md b/artists-to-study/README.md new file mode 100644 index 0000000000000000000000000000000000000000..a4b50722fb2384f4f3a5698234cf7da7d83ad476 --- /dev/null +++ b/artists-to-study/README.md @@ -0,0 +1,15 @@ +🐣 Please follow me for new updates https://twitter.com/camenduru
+🔥 Please join our discord server https://discord.gg/k5BwmmvJJU
+🥳 Please join my patreon community https://patreon.com/camenduru
+ +# Artists To Study + +![artists-to-study](https://user-images.githubusercontent.com/54370274/197829512-e7d30d44-2697-4ecd-b9a7-3665217918c7.jpg) + +https://artiststostudy.pages.dev addapted to an extension for [web ui](https://github.com/AUTOMATIC1111/stable-diffusion-webui). + +To install it, clone the repo into the `extensions` directory and restart the web ui: + +`git clone https://github.com/camenduru/stable-diffusion-webui-artists-to-study` + +You can add the artist name to the clipboard by clicking on it. (thanks for the idea @gmaciocci) diff --git a/artists-to-study/artists.csv b/artists-to-study/artists.csv new file mode 100644 index 0000000000000000000000000000000000000000..97cc5f6f7d1dae481b0ca6e3eb70542185fffe64 --- /dev/null +++ b/artists-to-study/artists.csv @@ -0,0 +1,3041 @@ +artist,score,category +Peter Max,0.99715996,weird +Roy Lichtenstein,0.98272276,cartoon +Romero Britto,0.9498342,scribbles +Keith Haring,0.9431302,weird +Hiroshige,0.93995106,ukioe +Joan Miró,0.9169429,scribbles +Jean-Michel Basquiat,0.90080947,scribbles +Katsushika Hokusai,0.8887236,ukioe +Paul Klee,0.8868682,scribbles +Marc Chagall,0.8868168,scribbles +Karl Schmidt-Rottluff,0.88444495,scribbles +Howard Hodgkin,0.8808578,scribbles +Jean Metzinger,0.88056004,scribbles +Alma Thomas,0.87658304,weird +Rufino Tamayo,0.8749848,scribbles +Utagawa Hiroshige,0.8728796,ukioe +Chagall,0.8718535,scribbles +Harumi Hironaka,0.86914605,scribbles +Hans Hofmann,0.8686159,scribbles +Kawanabe Kyōsai,0.86612236,ukioe +Andy Warhol,0.8654825,scribbles +Barbara Takenaga,0.86223894,scribbles +Tatsuro Kiuchi,0.8597267,cartoon +Vincent Van Gogh,0.85538065,scribbles +Wassily Kandinsky,0.85490596,scribbles +Georges Seurat,0.8534801,scribbles +Karel Appel,0.8529153,scribbles +Sonia Delaunay,0.8506156,scribbles +Hokusai,0.85046995,ukioe +Eduardo Kobra,0.85036755,weird +Fra Angelico,0.84984255,fineart +Milton Avery,0.849746,scribbles +David Hockney,0.8496144,scribbles +Hiroshi Nagai,0.847129,cartoon +Aristarkh Lentulov,0.846537,scribbles +Lyonel Feininger,0.84573764,scribbles +Mary Blair,0.845709,scribbles +Ellsworth Kelly,0.8455428,scribbles +Jun Kaneko,0.8448367,scribbles +Roz Chast,0.8432013,weird +Ida Rentoul Outhwaite,0.84275174,scribbles +Robert Motherwell,0.8409468,scribbles +Garry Winogrand,0.83994275,black-white +Andrei Rublev,0.83950496,fineart +Alexander Calder,0.83832693,scribbles +Tomokazu Matsuyama,0.8376121,scribbles +August Macke,0.8362022,scribbles +Kazimir Malevich,0.8356527,scribbles +Richard Scarry,0.83554685,scribbles +Victor Vasarely,0.8335438,scribbles +Kitagawa Utamaro,0.83333457,ukioe +Matt Bors,0.83252287,scribbles +Emil Nolde,0.8323225,scribbles +Patrick Caulfield,0.8322225,scribbles +Charles Blackman,0.83200824,scribbles +Peter Doig,0.83111644,scribbles +Alexej von Jawlensky,0.8308932,scribbles +Rumiko Takahashi,0.8301817,anime +Eileen Agar,0.82945526,scribbles +Ernst Ludwig Kirchner,0.82756275,scribbles +Nicolas Delort,0.8261329,scribbles +Marsden Hartley,0.8250993,scribbles +Keith Negley,0.8212553,scribbles +Jamini Roy,0.8212199,scribbles +Quentin Blake,0.82115215,scribbles +Andy Kehoe,0.82063186,cartoon +George barbier,0.82046914,fineart +Frans Masereel,0.81997275,scribbles +Umberto Boccioni,0.81921184,scribbles +Conrad Roset,0.8190752,cartoon +Paul Ranson,0.81903255,scribbles +Yayoi Kusama,0.81886625,weird +Tomi Ungerer,0.81848705,scribbles +Saul Steinberg,0.81778854,scribbles +Jon Klassen,0.81773067,scribbles +W.W. Denslow,0.81708044,fineart +Helen Frankenthaler,0.81704986,scribbles +Jean Jullien,0.816437,scribbles +Brett Whiteley,0.81601924,scribbles +Giotto Di Bondone,0.81427747,fineart +Takashi Murakami,0.81338763,weird +Howard Finster,0.81333554,scribbles +Eduardo Paolozzi,0.81312317,scribbles +Charles Rennie Mackintosh,0.81297064,scribbles +Brandon Mably,0.8128239,weird +Rebecca Louise Law,0.81214285,weird +Victo Ngai,0.81195843,cartoon +Hanabusa Itchō II,0.81187993,ukioe +Edmund Dulac,0.81104875,scribbles +Ben Shahn,0.8104582,scribbles +Howard Arkley,0.8103746,scribbles +Wilfredo Lam,0.8096211,scribbles +Michael Deforge,0.8095954,scribbles +John Hoyland,0.8094592,fineart +Francesco Clemente,0.8090387,scribbles +Leonetto Cappiello,0.8087691,scribbles +Norman Ackroyd,0.80788493,scribbles +Bhupen Khakhar,0.8077607,scribbles +Jeremiah Ketner,0.8075384,cartoon +Chris Ofili,0.8073793,scribbles +Banksy,0.80695426,scribbles +Tom Whalen,0.805867,scribbles +Ernst Wilhelm Nay,0.805295,scribbles +Henri Rousseau,0.8049866,scribbles +Kunisada,0.80493814,ukioe +Naoko Takeuchi,0.80482674,anime +Kaethe Butcher,0.80406916,scribbles +Hasui Kawase,0.8040483,ukioe +Alvin Langdon Coburn,0.8035004,black-white +Stanley Donwood,0.8033054,scribbles +Agnes Martin,0.8028028,scribbles +Osamu Tezuka,0.8005524,cartoon +Frank Stella,0.80049455,scribbles +Dale Chihuly,0.79982775,digipa-high-impact +Evgeni Gordiets,0.79967916,scribbles +Janek Sedlar,0.7993992,fineart +Alasdair Gray,0.7992301,scribbles +Yasuo Kuniyoshi,0.79870003,ukioe +Edward Gorey,0.7984938,scribbles +Johannes Itten,0.798481,scribbles +Cuno Amiet,0.7979497,scribbles +M.C. Escher,0.7976657,scribbles +Albert Irvin,0.79688835,scribbles +Jack Gaughan,0.79443675,scribbles +Ravi Zupa,0.7939542,scribbles +Kay Nielsen,0.79385525,scribbles +Agnolo Gaddi,0.79369193,fineart +Alessandro Gottardo,0.79321593,scribbles +Paul Laffoley,0.79196846,scribbles +Giovanni Battista Piranesi,0.79111177,fineart +Adrian Tomine,0.79109013,scribbles +Adolph Gottlieb,0.79061794,scribbles +Milton Caniff,0.7905358,cartoon +Philip Guston,0.78994095,scribbles +Debbie Criswell,0.7895031,cartoon +Alice Pasquini,0.78949904,cartoon +Johannes Vermeer,0.78931487,fineart +Lisa Frank,0.7892591,cartoon +Patrick Heron,0.78889126,scribbles +Mikhail Nesterov,0.78814346,fineart +Cézanne,0.7879481,scribbles +Tristan Eaton,0.787513,scribbles +Jillian Tamaki,0.7868066,scribbles +Takato Yamamoto,0.78460765,ukioe +Martiros Saryan,0.7844924,scribbles +Emil Orlik,0.7842625,scribbles +Armand Guillaumin,0.7840431,scribbles +Jane Newland,0.7837676,scribbles +Paul Cézanne,0.78368753,scribbles +Tove Jansson,0.78356475,scribbles +Guido Crepax,0.7835321,cartoon +OSGEMEOS,0.7829088,weird +Albert Watson,0.48901254,digipa-med-impact +Emory Douglas,0.78179604,scribbles +Chris Van Allsburg,0.66413003,fineart +Ohara Koson,0.78132576,ukioe +Nicolas de Stael,0.7802779,scribbles +Aubrey Beardsley,0.77970016,scribbles +Hishikawa Moronobu,0.7794119,ukioe +Alfred Wallis,0.77926695,scribbles +Friedensreich Hundertwasser,0.7791805,scribbles +Eyvind Earle,0.7788089,scribbles +Giotto,0.7785216,fineart +Simone Martini,0.77843,fineart +Ivan Bilibin,0.77720606,fineart +Karl Blossfeldt,0.77652574,black-white +Duy Huynh,0.77634746,scribbles +Giovanni da Udina,0.7763063,fineart +Henri-Edmond Cross,0.7762994,fineart +Barry McGee,0.77618384,scribbles +William Kentridge,0.77615225,scribbles +Alexander Archipenko,0.7759824,scribbles +Jaume Plensa,0.7756799,weird +Bill Jacklin,0.77504414,fineart +Alberto Vargas,0.7747376,cartoon +Jean Dubuffet,0.7744374,scribbles +Eugène Grasset,0.7741958,fineart +Arthur Rackham,0.77418125,fineart +Yves Tanguy,0.77380997,scribbles +Elsa Beskow,0.7736908,fineart +Georgia O’Keeffe,0.77368987,scribbles +Georgia O'Keeffe,0.77368987,scribbles +Henri Cartier-Bresson,0.7735415,black-white +Andrea del Verrocchio,0.77307427,fineart +Mark Rothko,0.77294236,scribbles +Bruce Gilden,0.7256681,black-white +Gino Severini,0.77247965,scribbles +Delphin Enjolras,0.5594248,fineart +Alena Aenami,0.77210015,cartoon +Ed Freeman,0.42526615,digipa-low-impact +Apollonia Saintclair,0.7718383,anime +László Moholy-Nagy,0.771497,scribbles +Louis Glackens,0.7713224,fineart +Fang Lijun,0.77097225,fineart +Alfred Kubin,0.74409986,fineart +David Wojnarowicz,0.7705802,scribbles +Tara McPherson,0.77023256,scribbles +Gustav Doré,0.7367536,fineart +Patricia Polacco,0.7696109,scribbles +Norman Bluhm,0.7692634,fineart +Elizabeth Gadd,0.7691194,digipa-high-impact +Gabriele Münter,0.7690926,scribbles +David Inshaw,0.76905304,scribbles +Maurice Sendak,0.7690118,cartoon +Harry Clarke,0.7688428,cartoon +Howardena Pindell,0.7686921,n +Jamie Hewlett,0.7680373,scribbles +Steve Ditko,0.76725733,scribbles +Annie Soudain,0.7671485,scribbles +Albert Gleizes,0.76658314,scribbles +Henry Fuseli,0.69147265,fineart +Alain Laboile,0.67634284,c +Albrecht Altdorfer,0.7663378,fineart +Jack Butler Yeats,0.7661406,fineart +Yue Minjun,0.76583517,scribbles +Art Spiegelman,0.7656343,scribbles +Grete Stern,0.7656276,fineart +Mordecai Ardon,0.7648692,scribbles +Joel Sternfeld,0.76456416,digipa-high-impact +Milton Glaser,0.7641823,scribbles +Eishōsai Chōki,0.7639659,scribbles +Domenico Ghirlandaio,0.76372653,fineart +Alex Timmermans,0.64443207,digipa-high-impact +Andreas Vesalius,0.763446,fineart +Bruce McLean,0.76335883,scribbles +Jacob Lawrence,0.76330304,scribbles +Alex Katz,0.76317835,scribbles +Henri de Toulouse-Lautrec,0.76268333,scribbles +Franz Sedlacek,0.762062,scribbles +Paul Lehr,0.70854837,cartoon +Nicholas Roerich,0.76117516,scribbles +Henri Matisse,0.76110923,scribbles +Colin McCahon,0.76086944,scribbles +Max Dupain,0.6661642,black-white +Stephen Gammell,0.74001735,weird +Alberto Giacometti,0.7596302,scribbles +Goyō Hashiguchi,0.7595048,ukioe +Gustave Doré,0.7018832,fineart +Butcher Billy,0.7593378,cartoon +Pieter de Hooch,0.75916564,fineart +Gaetano Pesce,0.75906265,scribbles +Winsor McCay,0.7589382,scribbles +Claude Cahun,0.7588153,weird +Roger Ballen,0.64683115,black-white +Ellen Gallagher,0.758621,scribbles +Anton Corbijn,0.5550669,digipa-high-impact +Margaret Macdonald Mackintosh,0.75781375,fineart +Franz Kline,0.7576461,scribbles +Cimabue,0.75720495,fineart +André Kertész,0.7319392,black-white +Hans Hartung,0.75718236,scribbles +J. J. Grandville,0.7321584,fineart +David Octavius Hill,0.6333561,digipa-high-impact +teamLab,0.7566472,digipa-high-impact +Paul Gauguin,0.75635266,scribbles +Etel Adnan,0.75631833,scribbles +Barbara Kruger,0.7562784,scribbles +Franz Marc,0.75538874,scribbles +Saul Bass,0.75496316,scribbles +El Lissitzky,0.7549487,scribbles +Thomas Moran,0.6507399,fineart +Claude Monet,0.7541377,fineart +David Young Cameron,0.7541016,scribbles +W. Heath Robinson,0.75374347,cartoon +Yves Klein,0.7536262,fineart +Albert Pinkham Ryder,0.7338848,fineart +Elizabeth Shippen Green,0.7533686,fineart +Robert Stivers,0.5516287,fineart +Emily Kame Kngwarreye,0.7532016,weird +Charline von Heyl,0.753142,scribbles +Frida Kahlo,0.75303876,scribbles +Amy Sillman,0.752921,scribbles +Emperor Huizong of Song,0.7525214,ukioe +Edward Burne-Jones,0.75220466,fineart +Brett Weston,0.6891357,black-white +Charles E. Burchfield,0.75174403,scribbles +Hishida Shunsō,0.751617,fareast +Elaine de Kooning,0.7514996,scribbles +Gary Panter,0.7514598,scribbles +Frederick Hammersley,0.7514268,scribbles +Gustave Dore,0.6735896,fineart +Ephraim Moses Lilien,0.7510494,fineart +Hannah Hoch,0.7509496,scribbles +Shepard Fairey,0.7508583,scribbles +Richard Burlet,0.7506659,scribbles +Bill Brandt,0.6833408,black-white +Herbert List,0.68455493,black-white +Joseph Cornell,0.75023884,nudity +Nathan Wirth,0.6436741,black-white +John Kenn Mortensen,0.74758303,anime +Andre De Dienes,0.5683014,digipa-high-impact +Albert Robida,0.7485741,cartoon +Shintaro Kago,0.7484431,anime +Sidney Nolan,0.74809414,scribbles +Patrice Murciano,0.61973965,fineart +Brian Stelfreeze,0.7478351,scribbles +Francisco De Goya,0.6954584,fineart +William Morris,0.7478111,fineart +Honoré Daumier,0.74767774,scribbles +Hubert Robert,0.6863421,fineart +Marianne von Werefkin,0.7475825,fineart +Edvard Munch,0.74719715,scribbles +Victor Brauner,0.74719006,scribbles +George Inness,0.7470588,fineart +Naoki Urasawa,0.7469665,anime +Kilian Eng,0.7468486,scribbles +Bordalo II,0.7467364,digipa-high-impact +Katsuhiro Otomo,0.746364,anime +Maximilien Luce,0.74609685,fineart +Amy Earles,0.74603415,fineart +Jeanloup Sieff,0.7196009,black-white +William Zorach,0.74574494,scribbles +Pascale Campion,0.74516207,fineart +Dorothy Lathrop,0.74418795,fineart +Sofonisba Anguissola,0.74418664,fineart +Natalia Goncharova,0.74414873,scribbles +August Sander,0.6644566,black-white +Jasper Johns,0.74395454,scribbles +Arthur Dove,0.74383533,scribbles +Darwyn Cooke,0.7435789,scribbles +Leonardo Da Vinci,0.6825216,fineart +Fra Filippo Lippi,0.7433891,fineart +Pierre-Auguste Renoir,0.742464,fineart +Jeff Lemire,0.7422893,scribbles +Al Williamson,0.742113,cartoon +Childe Hassam,0.7418015,fineart +Francisco Goya,0.69522625,fineart +Alphonse Mucha,0.74171394,special +Cleon Peterson,0.74163914,scribbles +J.M.W. Turner,0.65582645,fineart +Walter Crane,0.74146044,fineart +Brassaï,0.6361966,digipa-high-impact +Virgil Finlay,0.74133486,fineart +Fernando Botero,0.7412504,nudity +Ben Nicholson,0.7411573,scribbles +Robert Rauschenberg,0.7410054,fineart +David Wiesner,0.7406237,scribbles +Bartolome Esteban Murillo,0.6933951,fineart +Jean Arp,0.7403873,scribbles +Andre Kertesz,0.7228358,black-white +Simeon Solomon,0.66441345,fineart +Hugh Ferriss,0.72443527,black-white +Agnes Lawrence Pelton,0.73960555,scribbles +Charles Camoin,0.7395686,scribbles +Paul Strand,0.7080332,black-white +Charles Gwathmey,0.7394747,scribbles +Bartolomé Esteban Murillo,0.7011274,fineart +Oskar Kokoschka,0.7392038,scribbles +Bruno Munari,0.73918355,weird +Willem de Kooning,0.73916197,scribbles +Hans Memling,0.7387886,fineart +Chris Mars,0.5861489,digipa-high-impact +Hiroshi Yoshida,0.73787534,ukioe +Hundertwasser,0.7377672,fineart +David Bowie,0.73773724,weird +Ettore Sottsass,0.7376095,digipa-high-impact +Antanas Sutkus,0.7369492,black-white +Leonora Carrington,0.73726475,scribbles +Hieronymus Bosch,0.7369955,scribbles +A. J. Casson,0.73666203,scribbles +Chaim Soutine,0.73662066,scribbles +Artur Bordalo,0.7364549,weird +Thomas Allom,0.68792284,fineart +Louis Comfort Tiffany,0.7363504,fineart +Philippe Druillet,0.7363382,cartoon +Jan Van Eyck,0.7360621,fineart +Sandro Botticelli,0.7359395,fineart +Hieronim Bosch,0.7359308,scribbles +Everett Shinn,0.7355817,fineart +Camille Corot,0.7355603,fineart +Nick Sharratt,0.73470485,scribbles +Fernand Léger,0.7079839,scribbles +Robert S. Duncanson,0.7346282,fineart +Hieronymous Bosch,0.73453265,scribbles +Charles Addams,0.7344034,scribbles +Studio Ghibli,0.73439026,anime +Archibald Motley,0.7343683,scribbles +Anton Fadeev,0.73433846,cartoon +Uemura Shoen,0.7342118,ukioe +Ando Fuchs,0.73406494,black-white +Jessie Willcox Smith,0.73398125,fineart +Alex Garant,0.7333658,scribbles +Lawren Harris,0.73331416,scribbles +Anne Truitt,0.73297834,scribbles +Richard Lindner,0.7328564,scribbles +Sailor Moon,0.73281246,anime +Bridget Bate Tichenor,0.73274165,scribbles +Ralph Steadman,0.7325864,scribbles +Annibale Carracci,0.73251307,fineart +Dürer,0.7324789,fineart +Abigail Larson,0.7319012,cartoon +Bill Traylor,0.73189163,scribbles +Louis Rhead,0.7318623,fineart +David Burliuk,0.731803,scribbles +Camille Pissarro,0.73172396,fineart +Catrin Welz-Stein,0.73117495,scribbles +William Etty,0.6497544,nudity +Pierre Bonnard,0.7310132,scribbles +Benoit B. Mandelbrot,0.5033001,digipa-med-impact +Théodore Géricault,0.692039,fineart +Andy Goldsworthy,0.7307565,digipa-high-impact +Alfred Sisley,0.7306032,fineart +Charles-Francois Daubigny,0.73057353,fineart +Karel Thole,0.7305395,cartoon +Andre Derain,0.73050404,scribbles +Larry Poons,0.73023695,fineart +Beauford Delaney,0.72999024,scribbles +Ruth Bernhard,0.72990334,black-white +David Alfaro Siqueiros,0.7297947,scribbles +Gaugin,0.729636,fineart +Carl Larsson,0.7296195,cartoon +Albrecht Dürer,0.72946966,fineart +Henri De Toulouse Lautrec,0.7294263,cartoon +Shotaro Ishinomori,0.7292093,anime +Hope Gangloff,0.729082,scribbles +Vivian Maier,0.72897506,digipa-high-impact +Alex Andreev,0.6442978,digipa-high-impact +Julie Blackmon,0.72862685,c +Arthur Melville,0.7286146,fineart +Henri Michaux,0.599607,fineart +William Steig,0.7283096,scribbles +Octavio Ocampo,0.72814554,scribbles +Cy Twombly,0.72814107,scribbles +Guy Denning,0.67375445,fineart +Maxfield Parrish,0.7280283,fineart +Randolph Caldecott,0.7279564,fineart +Duccio,0.72795,fineart +Ray Donley,0.5837457,fineart +Hiroshi Sugimoto,0.6497892,digipa-high-impact +Daniela Uhlig,0.4691466,special +Go Nagai,0.72770613,anime +Carlo Crivelli,0.72764605,fineart +Helmut Newton,0.44433144,digipa-low-impact +Josef Albers,0.7061394,scribbles +Henry Moret,0.7274567,fineart +André Masson,0.727404,scribbles +Henri Fantin Latour,0.72732764,fineart +Theo van Rysselberghe,0.7272843,fineart +John Wayne Gacy,0.72686327,scribbles +Carlos Schwabe,0.7267612,fineart +Herbert Bayer,0.7094297,scribbles +Domenichino,0.72667265,fineart +Liam Wong,0.7262276,special +George Caleb Bingham,0.7262154,digipa-high-impact +Gigadō Ashiyuki,0.7261864,fineart +Chaïm Soutine,0.72603923,scribbles +Ary Scheffer,0.64913243,fineart +Rockwell Kent,0.7257272,scribbles +Jean-Paul Riopelle,0.72570604,fineart +Ed Mell,0.6637067,cartoon +Ismail Inceoglu,0.72561014,special +Edgar Degas,0.72538006,fineart +Giorgione,0.7252798,fineart +Charles-François Daubigny,0.7252482,fineart +Arthur Lismer,0.7251765,scribbles +Aaron Siskind,0.4852289,digipa-med-impact +Arkhip Kuindzhi,0.7249981,fineart +Joseph Mallord William Turner,0.6834406,fineart +Dante Gabriel Rossetti,0.7244541,fineart +Ernst Haeckel,0.6660129,fineart +Rebecca Guay,0.72439146,cartoon +Anthony Gerace,0.636678,digipa-high-impact +Martin Kippenberger,0.72418386,scribbles +Diego Giacometti,0.72415763,scribbles +Dmitry Kustanovich,0.7241322,cartoon +Dora Carrington,0.7239633,scribbles +Shusei Nagaoko,0.7238965,anime +Odilon Redon,0.72381747,scribbles +Shohei Otomo,0.7132803,nudity +Barnett Newman,0.7236389,scribbles +Jean Fouquet,0.7235963,fineart +Gustav Klimt,0.72356784,nudity +Francisco Josè de Goya,0.6589663,fineart +Bonnard Pierre,0.72309464,nudity +Brooke Shaden,0.61281693,digipa-high-impact +Mao Hamaguchi,0.7228292,scribbles +Frederick Edwin Church,0.64416,fineart +Asher Brown Durand,0.72264796,fineart +George Baselitz,0.7223453,scribbles +Sam Bosma,0.7223237,fineart +Asaf Hanuka,0.72222745,scribbles +David Teniers the Younger,0.7221168,fineart +Nicola Samori,0.68747556,nudity +Claude Lorrain,0.7217102,fineart +Hermenegildo Anglada Camarasa,0.7214374,nudity +Pablo Picasso,0.72142905,scribbles +Howard Chaykin,0.7213998,cartoon +Ferdinand Hodler,0.7213758,nudity +Farel Dalrymple,0.7213298,fineart +Lyubov Popova,0.7213024,scribbles +Albin Egger-Lienz,0.72120845,fineart +Geertgen tot Sint Jans,0.72107565,fineart +Kate Greenaway,0.72069687,fineart +Louise Bourgeois,0.7206516,fineart +Miriam Schapiro,0.72026414,fineart +Pieter Claesz,0.7200939,fineart +George B. Bridgman,0.5592567,fineart +Piet Mondrian,0.71990657,scribbles +Michelangelo Merisi Da Caravaggio,0.7094674,fineart +Marie Spartali Stillman,0.71986604,fineart +Gertrude Abercrombie,0.7196962,scribbles +Louis Icart,0.7195913,fineart +David Driskell,0.719564,scribbles +Paula Modersohn-Becker,0.7193769,scribbles +George Hurrell,0.57496595,digipa-high-impact +Andrea Mantegna,0.7190254,fineart +Silvestro Lega,0.71891177,fineart +Junji Ito,0.7188978,anime +Jacob Hashimoto,0.7186867,digipa-high-impact +Benjamin West,0.6642946,fineart +David Teniers the Elder,0.7181293,fineart +Roberto Matta,0.71808386,fineart +Chiho Aoshima,0.71801454,anime +Amedeo Modigliani,0.71788836,scribbles +Raja Ravi Varma,0.71788085,fineart +Roberto Ferri,0.538221,nudity +Winslow Homer,0.7176876,fineart +Horace Vernet,0.65729,fineart +Lucas Cranach the Elder,0.71738195,fineart +Godfried Schalcken,0.625893,fineart +Affandi,0.7170285,nudity +Diane Arbus,0.655138,digipa-high-impact +Joseph Ducreux,0.65247905,digipa-high-impact +Berthe Morisot,0.7165984,fineart +Hilma af Klint,0.71643853,scribbles +Filippino Lippi,0.7163017,fineart +Leonid Afremov,0.7163005,fineart +Chris Ware,0.71628594,scribbles +Marius Borgeaud,0.7162446,scribbles +M.W. Kaluta,0.71612585,cartoon +Govert Flinck,0.68975246,fineart +Charles Demuth,0.71605396,scribbles +Coles Phillips,0.7158309,scribbles +Oskar Fischinger,0.6721027,digipa-high-impact +David Teniers III,0.71569765,fineart +Jean Delville,0.7156771,fineart +Antonio Saura,0.7155949,scribbles +Bridget Riley,0.7155669,fineart +Gordon Parks,0.5759978,digipa-high-impact +Anselm Kiefer,0.71514887,scribbles +Remedios Varo,0.7150927,weird +Franz Hegi,0.71495223,scribbles +Kati Horna,0.71486115,black-white +Arshile Gorky,0.71459055,scribbles +David LaChapelle,0.7144903,scribbles +Fritz von Dardel,0.71446383,scribbles +Edward Ruscha,0.71438885,fineart +Blanche Hoschedé Monet,0.7143073,fineart +Alexandre Calame,0.5735474,fineart +Sean Scully,0.714154,fineart +Alexandre Benois,0.7141515,fineart +Sally Mann,0.6534312,black-white +Thomas Eakins,0.7141104,fineart +Arnold Böcklin,0.71407956,fineart +Alfonse Mucha,0.7139052,special +Damien Hirst,0.7136273,scribbles +Lee Krasner,0.71362555,scribbles +Dorothea Lange,0.71361613,black-white +Juan Gris,0.7132987,scribbles +Bernardo Bellotto,0.70720065,fineart +John Martin,0.5376847,fineart +Harriet Backer,0.7131594,fineart +Arnold Newman,0.5736342,digipa-high-impact +Gjon Mili,0.46520913,digipa-low-impact +Asger Jorn,0.7129575,scribbles +Chesley Bonestell,0.6063316,fineart +Agostino Carracci,0.7128167,fineart +Peter Wileman,0.71271706,cartoon +Chen Hongshou,0.71268153,ukioe +Catherine Hyde,0.71266896,scribbles +Andrea Pozzo,0.626546,fineart +Kitty Lange Kielland,0.7125735,fineart +Cornelis Saftleven,0.6684047,fineart +Félix Vallotton,0.71237606,fineart +Albrecht Durer,0.7122327,fineart +Jackson Pollock,0.71222305,scribbles +John Bratby,0.7122171,scribbles +Beksinski,0.71218586,fineart +James Thomas Watts,0.5959548,fineart +Konstantin Korovin,0.71188873,fineart +Gustave Caillebotte,0.71181154,fineart +Dean Ellis,0.50233585,fineart +Friedrich von Amerling,0.6420181,fineart +Christopher Balaskas,0.67935324,special +Alexander Rodchenko,0.67415404,scribbles +Alfred Cheney Johnston,0.6647291,fineart +Mikalojus Konstantinas Ciurlionis,0.710677,scribbles +Jean-Antoine Watteau,0.71061164,fineart +Paul Delvaux,0.7105914,scribbles +Francesco del Cossa,0.7104901,nudity +Isaac Cordal,0.71046066,weird +Hikari Shimoda,0.7104546,weird +François Boucher,0.67153126,fineart +Akos Major,0.7103802,digipa-high-impact +Bernard Buffet,0.7103491,cartoon +Brandon Woelfel,0.6727086,digipa-high-impact +Edouard Manet,0.7101296,fineart +Auguste Herbin,0.6866145,scribbles +Eugene Delacroix,0.70995826,fineart +L. Birge Harrison,0.70989627,fineart +Howard Pyle,0.70979863,fineart +Diane Dillon,0.70968723,scribbles +Hans Erni,0.7096618,scribbles +Richard Diebenkorn,0.7096184,scribbles +Thomas Gainsborough,0.6759419,fineart +Maria Sibylla Merian,0.7093275,fineart +François Joseph Heim,0.6175854,fineart +E. H. Shepard,0.7091189,cartoon +Hsiao-Ron Cheng,0.7090618,scribbles +Canaletto,0.7090392,fineart +John Atkinson Grimshaw,0.7087531,fineart +Giovanni Battista Tiepolo,0.6754107,fineart +Cornelis van Poelenburgh,0.69821274,fineart +Raina Telgemeier,0.70846486,scribbles +Francesco Hayez,0.6960006,fineart +Gilbert Stuart,0.659772,fineart +Konstantin Yuon,0.7081486,fineart +Antonello da Messina,0.70806944,fineart +Austin Osman Spare,0.7079903,fineart +James Ensor,0.70781446,scribbles +Claude Bonin-Pissarro,0.70739406,fineart +Mikhail Vrubel,0.70738363,fineart +Angelica Kauffman,0.6748828,fineart +Viktor Vasnetsov,0.7072422,fineart +Alphonse Osbert,0.70724136,fineart +Tsutomu Nihei,0.7070495,anime +Harvey Quaytman,0.63613266,fineart +Jamie Hawkesworth,0.706914,digipa-high-impact +Francesco Guardi,0.70682615,fineart +Jean-Honoré Fragonard,0.6518248,fineart +Brice Marden,0.70673287,digipa-high-impact +Charles-Amédée-Philippe van Loo,0.6725916,fineart +Mati Klarwein,0.7066092,n +Gerard ter Borch,0.706589,fineart +Dan Hillier,0.48966256,digipa-med-impact +Federico Barocci,0.682664,fineart +Henri Le Sidaner,0.70637953,fineart +Olivier Bonhomme,0.7063748,scribbles +Edward Weston,0.7061382,black-white +Giovanni Paolo Cavagna,0.6840265,fineart +Germaine Krull,0.6621777,black-white +Hans Holbein the Younger,0.70590156,fineart +François Bocion,0.6272365,fineart +Georg Baselitz,0.7053314,scribbles +Caravaggio,0.7050303,fineart +Anne Rothenstein,0.70502245,scribbles +Wadim Kashin,0.43714935,digipa-low-impact +Heinrich Lefler,0.7048054,fineart +Jacob van Ruisdael,0.7047918,fineart +Bartholomeus van Bassen,0.6676872,fineart +Jeffrey Smith art,0.56750107,fineart +Anne Packard,0.7046703,weird +Jean-François Millet,0.7045456,fineart +Andrey Remnev,0.7041204,digipa-high-impact +Fujiwara Takanobu,0.70410216,ukioe +Elliott Erwitt,0.69950557,black-white +Fern Coppedge,0.7036215,fineart +Bartholomeus van der Helst,0.66411966,fineart +Rembrandt Van Rijn,0.6979987,fineart +Rene Magritte,0.703457,scribbles +Aelbert Cuyp,0.7033657,fineart +Gerda Wegener,0.70319015,scribbles +Graham Sutherland,0.7031714,scribbles +Gerrit Dou,0.7029986,fineart +August Friedrich Schenck,0.6801586,fineart +George Herriman,0.7028568,scribbles +Stanisław Szukalski,0.6903354,fineart +Slim Aarons,0.70222545,digipa-high-impact +Ernst Thoms,0.70221686,fineart +Louis Wain,0.702186,fineart +Artemisia Gentileschi,0.70198226,fineart +Eugène Delacroix,0.70155394,fineart +Peter Bagge,0.70127463,scribbles +Jeffrey Catherine Jones,0.7012148,cartoon +Eugène Carrière,0.65272695,fineart +Alexander Millar,0.7011144,scribbles +Nobuyoshi Araki,0.70108867,fareast +Tintoretto,0.6702795,fineart +André Derain,0.7009005,scribbles +Charles Maurice Detmold,0.70079994,fineart +Francisco de Zurbarán,0.7007234,fineart +Laurie Greasley,0.70072114,cartoon +Lynda Benglis,0.7006948,digipa-high-impact +Cecil Beaton,0.66362655,black-white +Gustaf Tenggren,0.7006041,cartoon +Abdur Rahman Chughtai,0.7004994,ukioe +Constantin Brancusi,0.7004367,scribbles +Mikhail Larionov,0.7004066,fineart +Jan van Kessel the Elder,0.70040506,fineart +Chantal Joffe,0.70036674,scribbles +Charles-André van Loo,0.6830367,fineart +Reginald Marsh,0.6301042,fineart +Elsa Bleda,0.70005083,digipa-high-impact +Peter Paul Rubens,0.65745676,fineart +Eugène Boudin,0.70001304,fineart +Charles Willson Peale,0.66907954,fineart +Brian Mashburn,0.63395154,digipa-high-impact +Barkley L. Hendricks,0.69986427,n +Yoshiyuki Tomino,0.6998095,anime +Guido Reni,0.6416875,fineart +Lynd Ward,0.69958556,fineart +John Constable,0.6907788,fineart +František Kupka,0.6993329,fineart +Pieter Bruegel The Elder,0.6992879,scribbles +Benjamin Gerritsz Cuyp,0.6992173,fineart +Nicolas Mignard,0.6988214,fineart +Augustus Edwin Mulready,0.6482165,fineart +Andrea del Sarto,0.698532,fineart +Edward Steichen,0.69837445,black-white +James Abbott McNeill Whistler,0.69836813,fineart +Alphonse Legros,0.6983243,fineart +Ivan Aivazovsky,0.64588225,fineart +Giovanni Francesco Barbieri,0.6981316,fineart +Grace Cossington Smith,0.69811064,fineart +Bert Stern,0.53411555,scribbles +Mary Cassatt,0.6980135,fineart +Jules Bastien-Lepage,0.69796044,fineart +Max Ernst,0.69777006,fineart +Kentaro Miura,0.697743,anime +Georges Rouault,0.69758564,scribbles +Josephine Wall,0.6973667,fineart +Anne-Louis Girodet,0.58104825,nudity +Bert Hardy,0.6972966,black-white +Adriaen van de Velde,0.69716156,fineart +Andreas Achenbach,0.61108655,fineart +Hayv Kahraman,0.69705284,fineart +Beatrix Potter,0.6969851,fineart +Elmer Bischoff,0.6968948,fineart +Cornelis de Heem,0.6968436,fineart +Inio Asano,0.6965007,anime +Alfred Henry Maurer,0.6964837,fineart +Gottfried Helnwein,0.6962953,digipa-high-impact +Paul Barson,0.54196984,digipa-high-impact +Roger de La Fresnaye,0.69620967,fineart +Abraham Mignon,0.60605425,fineart +Albert Bloch,0.69573116,nudity +Charles Dana Gibson,0.67155975,fineart +Alexandre-Évariste Fragonard,0.6507174,fineart +Ernst Fuchs,0.6953538,nudity +Alfredo Jaar,0.6952965,digipa-high-impact +Judy Chicago,0.6952246,weird +Frans van Mieris the Younger,0.6951849,fineart +Aertgen van Leyden,0.6951305,fineart +Emily Carr,0.69512105,fineart +Frances MacDonald,0.6950408,scribbles +Hannah Höch,0.69495845,scribbles +Gillis Rombouts,0.58770025,fineart +Käthe Kollwitz,0.6947756,fineart +Barbara Stauffacher Solomon,0.6920825,fineart +Georges Lacombe,0.6944455,fineart +Gwen John,0.6944161,fineart +Terada Katsuya,0.6944026,cartoon +James Gillray,0.6871335,fineart +Robert Crumb,0.69420326,fineart +Bruce Pennington,0.6545669,fineart +David Firth,0.69400465,scribbles +Arthur Boyd,0.69399726,fineart +Antonin Artaud,0.67321455,fineart +Giuseppe Arcimboldo,0.6937329,fineart +Jim Mahfood,0.6936606,cartoon +Ossip Zadkine,0.6494374,scribbles +Atelier Olschinsky,0.69349927,fineart +Carl Frederik von Breda,0.57274634,fineart +Ken Sugimori,0.6932626,anime +Chris Friel,0.5399168,fineart +Andrew Macara,0.69307995,fineart +Alexander Jansson,0.69298327,scribbles +Anne Brigman,0.6865817,black-white +George Ault,0.66756654,fineart +Arkhyp Kuindzhi,0.6928072,digipa-high-impact +Emiliano Ponzi,0.69278395,scribbles +William Holman Hunt,0.6927663,fineart +Tamara Lempicka,0.6386007,scribbles +Mark Ryden,0.69259655,fineart +Giovanni Paolo Pannini,0.6802902,fineart +Carl Barks,0.6923666,cartoon +Fritz Bultman,0.6318746,fineart +Salomon van Ruysdael,0.690313,fineart +Carrie Mae Weems,0.6645416,n +Agostino Arrivabene,0.61166185,fineart +Gustave Boulanger,0.655797,fineart +Henry Justice Ford,0.51214355,fareast +Bernardo Strozzi,0.63510317,fineart +André Lhote,0.68718815,scribbles +Paul Corfield,0.6915611,scribbles +Gifford Beal,0.6914777,fineart +Hirohiko Araki,0.6914078,anime +Emil Carlsen,0.691326,fineart +Frans van Mieris the Elder,0.6912799,fineart +Simon Stalenhag,0.6912775,special +Henry van de Velde,0.64838886,fineart +Eleanor Fortescue-Brickdale,0.6909729,fineart +Thomas W Schaller,0.69093937,special +NHK Animation,0.6907677,cartoon +Euan Uglow,0.69060403,scribbles +Hendrick Goltzius,0.69058937,fineart +William Blake,0.69038224,fineart +Vito Acconci,0.58409876,digipa-high-impact +Billy Childish,0.6902057,scribbles +Ben Quilty,0.6875855,fineart +Mark Briscoe,0.69010437,fineart +Adriaen van de Venne,0.6899867,fineart +Alasdair McLellan,0.6898454,digipa-high-impact +Ed Paschke,0.68974686,scribbles +Guy Rose,0.68960273,fineart +Barbara Hepworth,0.68958247,fineart +Edward Henry Potthast,0.6895703,fineart +Francis Bacon,0.6895397,scribbles +Pawel Kuczynski,0.6894536,fineart +Bjarke Ingels,0.68933153,digipa-high-impact +Henry Ossawa Tanner,0.68932164,fineart +Alessandro Allori,0.6892961,fineart +Abraham van Calraet,0.63841593,fineart +Egon Schiele,0.6891415,scribbles +Tim Doyle,0.5474768,digipa-high-impact +Grandma Moses,0.6890782,fineart +John Frederick Kensett,0.61981744,fineart +Giacomo Balla,0.68893707,fineart +Jamie Baldridge,0.6546651,digipa-high-impact +Max Beckmann,0.6884731,scribbles +Cornelis van Haarlem,0.6677613,fineart +Edward Hopper,0.6884258,special +Barkley Hendricks,0.6883637,n +Patrick Dougherty,0.688321,digipa-high-impact +Karol Bak,0.6367705,fineart +Pierre Puvis de Chavannes,0.6880703,fineart +Antoni Tàpies,0.685689,fineart +Alexander Nasmyth,0.57695735,fineart +Laurent Grasso,0.5793272,fineart +Camille Walala,0.6076875,digipa-high-impact +Fairfield Porter,0.68790644,fineart +Alex Colville,0.68787855,fineart +Herb Ritts,0.51471305,scribbles +Gerhard Munthe,0.687658,fineart +Susan Seddon Boulet,0.68762136,scribbles +Liu Ye,0.68760437,fineart +Robert Antoine Pinchon,0.68744636,fineart +Fujiwara Nobuzane,0.6873439,fineart +Frederick Carl Frieseke,0.6873361,fineart +Aert van der Neer,0.6159286,fineart +Allen Jones,0.6869935,scribbles +Anja Millen,0.6064488,digipa-high-impact +Esaias van de Velde,0.68673944,fineart +Gyoshū Hayami,0.68665624,anime +William Hogarth,0.6720842,fineart +Frederic Church,0.6865637,fineart +Cyril Rolando,0.68644965,cartoon +Frederic Edwin Church,0.6863009,fineart +Thomas Rowlandson,0.66726154,fineart +Joachim Brohm,0.68601763,digipa-high-impact +Cristofano Allori,0.6858083,fineart +Adrianus Eversen,0.58259964,fineart +Richard Dadd,0.68546164,fineart +Ambrosius Bosschaert II,0.6854217,fineart +Paolo Veronese,0.68422073,fineart +Abraham van den Tempel,0.66463804,fineart +Duncan Grant,0.6852565,scribbles +Hendrick Cornelisz. van Vliet,0.6851691,fineart +Geof Darrow,0.6851174,scribbles +Émile Bernard,0.6850957,fineart +Brian Bolland,0.68496394,scribbles +James Gilleard,0.6849431,cartoon +Anton Raphael Mengs,0.6689196,fineart +Augustus Jansson,0.6845705,digipa-high-impact +Hendrik Goltzius,0.6843367,fineart +Domenico Quaglio the Younger,0.65769434,fineart +Cicely Mary Barker,0.6841806,fineart +William Eggleston,0.6840795,digipa-high-impact +David Choe,0.6840449,scribbles +Adam Elsheimer,0.6716068,fineart +Heinrich Danioth,0.5390186,fineart +Franz Stuck,0.6836468,fineart +Bernie Wrightson,0.64101505,fineart +Dorina Costras,0.6835419,fineart +El Greco,0.68343943,fineart +Gatōken Shunshi,0.6833314,anime +Giovanni Bellini,0.67622876,fineart +Aron Wiesenfeld,0.68331146,nudity +Boris Kustodiev,0.68329334,fineart +Alec Soth,0.5597321,digipa-high-impact +Artus Scheiner,0.6313348,fineart +Kelly Vivanco,0.6830933,scribbles +Shaun Tan,0.6830649,fineart +Anthony van Dyck,0.6577681,fineart +Neil Welliver,0.68297863,nudity +Robert McCall,0.68294585,fineart +Sandra Chevrier,0.68284667,scribbles +Yinka Shonibare,0.68256056,n +Arthur Tress,0.6301861,digipa-high-impact +Richard McGuire,0.6820089,scribbles +Anni Albers,0.65708244,digipa-high-impact +Aleksey Savrasov,0.65207493,fineart +Wayne Barlowe,0.6537874,fineart +Giorgio de Chirico,0.6815907,fineart +Ernest Procter,0.6815795,fineart +Adriaen Brouwer,0.6815058,fineart +Ilya Glazunov,0.6813533,fineart +Alison Bechdel,0.68096143,scribbles +Carl Holsoe,0.68082225,fineart +Alfred Edward Chalon,0.6464571,fineart +Gerard David,0.68058,fineart +Basil Blackshaw,0.6805679,fineart +Gerrit Adriaenszoon Berckheyde,0.67340267,fineart +George Hendrik Breitner,0.6804209,fineart +Abraham Bloemaert,0.68036544,fineart +Ferdinand Van Kessel,0.67742276,fineart +Hugo Simberg,0.68031186,fineart +Gaston Bussière,0.665221,fineart +Shawn Coss,0.42407864,digipa-low-impact +Hanabusa Itchō,0.68023074,ukioe +Magnus Enckell,0.6801553,fineart +Gary Larson,0.6801336,scribbles +George Manson,0.68013126,digipa-high-impact +Hayao Miyazaki,0.6800754,anime +Carl Spitzweg,0.66581815,fineart +Ambrosius Holbein,0.6798341,fineart +Domenico Pozzi,0.6434162,fineart +Dorothea Tanning,0.6797955,fineart +Jeannette Guichard-Bunel,0.5251578,digipa-high-impact +Victor Moscoso,0.62962687,fineart +Francis Picabia,0.6795391,scribbles +Charles W. Bartlett,0.67947805,fineart +David A Hardy,0.5554935,fineart +C. R. W. Nevinson,0.67946506,fineart +Man Ray,0.6507145,scribbles +Albert Bierstadt,0.67935765,fineart +Charles Le Brun,0.6758479,fineart +Lovis Corinth,0.67913896,fineart +Herbert Abrams,0.5507507,digipa-high-impact +Giorgio Morandi,0.6789025,fineart +Agnolo Bronzino,0.6787985,fineart +Abraham Pether,0.66922426,fineart +John Bauer,0.6786695,fineart +Arthur Stanley Wilkinson,0.67860866,fineart +Arthur Wardle,0.5510789,fineart +George Romney,0.62868094,fineart +Laurie Lipton,0.5201844,fineart +Mickalene Thomas,0.45433685,digipa-low-impact +Alice Rahon,0.6777824,scribbles +Gustave Van de Woestijne,0.6777346,scribbles +Laurel Burch,0.67766285,fineart +Hendrik Gerritsz Pot,0.67750573,fineart +John William Waterhouse,0.677472,fineart +Conor Harrington,0.5967809,fineart +Gabriel Ba,0.6773366,cartoon +Franz Xaver Winterhalter,0.62229514,fineart +George Cruikshank,0.6473593,fineart +Hyacinthe Rigaud,0.67717785,fineart +Cornelis Claesz van Wieringen,0.6770269,fineart +Adriaen van Outrecht,0.67682564,fineart +Yaacov Agam,0.6767926,fineart +Franz von Lenbach,0.61948,fineart +Clyfford Still,0.67667866,fineart +Alexander Roslin,0.66719526,fineart +Barry Windsor Smith,0.6765375,cartoon +Takeshi Obata,0.67643225,anime +John Harris,0.47712502,fineart +Bruce Davidson,0.6763525,digipa-high-impact +Hendrik Willem Mesdag,0.6762745,fineart +Makoto Shinkai,0.67610705,anime +Andreas Gursky,0.67610145,digipa-high-impact +Mike Winkelmann (Beeple),0.6510196,digipa-high-impact +Gustave Moreau,0.67607844,fineart +Frank Weston Benson,0.6760142,fineart +Eduardo Kingman,0.6759026,fineart +Benjamin Williams Leader,0.5611925,fineart +Hervé Guibert,0.55973417,black-white +Cornelis Dusart,0.6753622,fineart +Amédée Guillemin,0.6752696,fineart +Alessio Albi,0.6752633,digipa-high-impact +Matthias Grünewald,0.6751779,fineart +Fujishima Takeji,0.6751577,anime +Georges Braque,0.67514753,scribbles +John Salminen,0.67498183,fineart +Atey Ghailan,0.674873,scribbles +Giovanni Antonio Galli,0.657484,fineart +Julie Mehretu,0.6748382,fineart +Jean Auguste Dominique Ingres,0.6746286,fineart +Francesco Albani,0.6621554,fineart +Anato Finnstark,0.6744919,digipa-high-impact +Giovanni Bernardino Mazzolini,0.64416045,fineart +Antoine Le Nain,0.6233709,fineart +Ford Madox Brown,0.6743224,fineart +Gerhard Richter,0.67426133,fineart +theCHAMBA,0.6742506,cartoon +Edward Julius Detmold,0.67421955,fineart +George Stubbs,0.6209227,fineart +George Tooker,0.6740602,scribbles +Faith Ringgold,0.6739976,scribbles +Giambattista Pittoni,0.5792371,fineart +George Bellows,0.6737008,fineart +Aldus Manutius,0.67366326,fineart +Ambrosius Bosschaert,0.67364097,digipa-high-impact +Michael Parkes,0.6133628,fineart +Hans Bellmer,0.6735973,nudity +Sir James Guthrie,0.67359626,fineart +Charles Spencelayh,0.67356884,fineart +Ivan Shishkin,0.6734136,fineart +Hans Holbein the Elder,0.6733856,fineart +Filip Hodas,0.60053295,digipa-high-impact +Herman Saftleven,0.6732188,digipa-high-impact +Dirck de Quade van Ravesteyn,0.67309594,fineart +Joe Fenton,0.6730916,scribbles +Arnold Bocklin,0.6730706,fineart +Baiōken Eishun,0.6730663,anime +Giovanni Giacometti,0.6730505,fineart +Giovanni Battista Gaulli,0.65036476,fineart +William Stout,0.672887,fineart +Gavin Hamilton,0.5982757,fineart +John Stezaker,0.6726847,black-white +Frederick McCubbin,0.67263377,fineart +Christoph Ludwig Agricola,0.62750757,fineart +Alice Neel,0.67255914,scribbles +Giovanni Battista Venanzi,0.61996603,fineart +Miho Hirano,0.6724092,anime +Tom Thomson,0.6723876,fineart +Alfred Munnings,0.6723851,fineart +David Wilkie,0.6722781,fineart +Adriaen van Ostade,0.67220736,fineart +Alfred Eisenstaedt,0.67213774,black-white +Leon Kossoff,0.67208946,fineart +Georges de La Tour,0.6421979,fineart +Chuck Close,0.6719756,digipa-high-impact +Herbert MacNair,0.6719506,scribbles +Edward Atkinson Hornel,0.6719265,fineart +Becky Cloonan,0.67192084,cartoon +Gian Lorenzo Bernini,0.58210254,fineart +Hein Gorny,0.4982776,digipa-med-impact +Joe Webb,0.6714884,fineart +Cornelis Pietersz Bega,0.64423996,fineart +Christian Krohg,0.6713641,fineart +Cornelia Parker,0.6712246,fineart +Anna Mary Robertson Moses,0.6709144,fineart +Quentin Tarantino,0.6708354,digipa-high-impact +Frederic Remington,0.67074275,fineart +Barent Fabritius,0.6707407,fineart +Oleg Oprisco,0.6707388,digipa-high-impact +Hendrick van Streeck,0.670666,fineart +Bakemono Zukushi,0.67051035,anime +Lucy Madox Brown,0.67032814,fineart +Paul Wonner,0.6700563,scribbles +Guido Borelli Da Caluso,0.66966087,digipa-high-impact +Emil Alzamora,0.5844039,nudity +Heinrich Brocksieper,0.64469147,fineart +Dan Smith,0.669563,digipa-high-impact +Lois van Baarle,0.6695091,scribbles +Arthur Garfield Dove,0.6694996,scribbles +Matthias Jung,0.66936135,digipa-high-impact +José Clemente Orozco,0.6693544,scribbles +Don Bluth,0.6693046,cartoon +Akseli Gallen-Kallela,0.66927314,fineart +Alex Howitt,0.52858865,digipa-high-impact +Giovanni Bernardino Asoleni,0.6635405,fineart +Frederick Goodall,0.6690712,fineart +Francesco Bartolozzi,0.63431,fineart +Edmund Leighton,0.6689639,fineart +Abraham Willaerts,0.5966594,fineart +François Louis Thomas Francia,0.6207474,fineart +Carel Fabritius,0.6688478,fineart +Flora Macdonald Reid,0.6687404,fineart +Bartholomeus Breenbergh,0.6163084,fineart +Bernardino Mei,0.6486895,fineart +Carel Weight,0.6684968,fineart +Aristide Maillol,0.66843045,scribbles +Chris Leib,0.60567486,fineart +Giovanni Battista Piazzetta,0.65012705,fineart +Daniel Maclise,0.6678073,fineart +Giovanni Bernardino Azzolini,0.65774256,fineart +Aaron Horkey,0.6676864,fineart +Otto Dix,0.667294,scribbles +Ferdinand Bol,0.6414797,fineart +Adriaen Coorte,0.6670663,fineart +William Gropper,0.6669881,scribbles +Gerard de Lairesse,0.6639489,fineart +Mab Graves,0.6668356,scribbles +Fernando Amorsolo,0.66683346,fineart +Pixar Concept Artists,0.6667752,cartoon +Alfred Augustus Glendening,0.64009607,fineart +Diego Velázquez,0.6666799,fineart +Jerry Pinkney,0.6665478,fineart +Antoine Wiertz,0.6143825,fineart +Alberto Burri,0.6618252,scribbles +Max Weber,0.6664029,fineart +Hans Baluschek,0.66636246,fineart +Annie Swynnerton,0.6663346,fineart +Albert Dubois-Pillet,0.57526016,fineart +Dora Maar,0.62862253,digipa-high-impact +Kay Sage,0.5614823,fineart +David A. Hardy,0.51376164,fineart +Alberto Biasi,0.42917693,digipa-low-impact +Fra Bartolomeo,0.6661105,fineart +Hendrick van Balen,0.65754294,fineart +Edwin Austin Abbey,0.66596496,fineart +George Frederic Watts,0.66595024,fineart +Alexei Kondratyevich Savrasov,0.6470352,fineart +Anna Ancher,0.66581213,fineart +Irma Stern,0.66580737,fineart +Frédéric Bazille,0.6657115,fineart +Awataguchi Takamitsu,0.6656272,anime +Edward Sorel,0.6655388,fineart +Edward Lear,0.6655078,fineart +Gabriel Metsu,0.6654555,fineart +Giovanni Battista Innocenzo Colombo,0.6653655,fineart +Scott Naismith,0.6650656,fineart +John Perceval,0.6650283,fineart +Girolamo Muziano,0.64234406,fineart +Cornelis de Man,0.66494393,fineart +Cornelis Bisschop,0.64119905,digipa-high-impact +Hans Leu the Elder,0.64770013,fineart +Michael Hutter,0.62479556,fineart +Cornelia MacIntyre Foley,0.6510235,fineart +Todd McFarlane,0.6647763,cartoon +John James Audubon,0.6279882,digipa-high-impact +William Henry Hunt,0.57340264,fineart +John Anster Fitzgerald,0.6644317,fineart +Tomer Hanuka,0.6643152,cartoon +Alex Prager,0.6641814,fineart +Heinrich Kley,0.6641148,fineart +Anne Redpath,0.66407835,scribbles +Marianne North,0.6640104,fineart +Daniel Merriam,0.6639365,fineart +Bill Carman,0.66390574,fineart +Méret Oppenheim,0.66387725,digipa-high-impact +Erich Heckel,0.66384083,fineart +Iryna Yermolova,0.663623,fineart +Antoine Ignace Melling,0.61502695,fineart +Akira Toriyama,0.6635002,anime +Gregory Crewdson,0.59810174,digipa-high-impact +Helene Schjerfbeck,0.66333634,fineart +Antonio Mancini,0.6631618,fineart +Zanele Muholi,0.58554715,n +Balthasar van der Ast,0.66294503,fineart +Toei Animations,0.6629127,anime +Arthur Quartley,0.6628106,fineart +Diego Rivera,0.6625808,fineart +Hendrik van Steenwijk II,0.6623777,fineart +James Tissot,0.6623415,fineart +Kehinde Wiley,0.66218376,n +Chiharu Shiota,0.6621249,digipa-high-impact +George Grosz,0.6620224,fineart +Peter De Seve,0.6616659,cartoon +Ryan Hewett,0.6615638,fineart +Hasegawa Tōhaku,0.66146004,anime +Apollinary Vasnetsov,0.6613177,fineart +Francis Cadell,0.66119456,fineart +Henri Harpignies,0.6611012,fineart +Henry Macbeth-Raeburn,0.6213787,fineart +Christoffel van den Berghe,0.6609149,fineart +Leiji Matsumoto,0.66089404,anime +Adriaen van der Werff,0.638286,fineart +Ramon Casas,0.6606529,fineart +Arthur Hacker,0.66062653,fineart +Edward Willis Redfield,0.66058433,fineart +Carl Gustav Carus,0.65355223,fineart +Francesca Woodman,0.60435605,digipa-high-impact +Hans Makart,0.5881955,fineart +Carne Griffiths,0.660091,weird +Will Barnet,0.65995145,scribbles +Fitz Henry Lane,0.659841,fineart +Masaaki Sasamoto,0.6597158,anime +Salvador Dali,0.6290813,scribbles +Walt Kelly,0.6596993,digipa-high-impact +Charlotte Nasmyth,0.56481636,fineart +Ferdinand Knab,0.6596528,fineart +Steve Lieber,0.6596117,scribbles +Zhang Kechun,0.6595939,fareast +Olivier Valsecchi,0.5324838,digipa-high-impact +Joel Meyerowitz,0.65937585,digipa-high-impact +Arthur Streeton,0.6592294,fineart +Henriett Seth F.,0.6592273,fineart +Genndy Tartakovsky,0.6591695,scribbles +Otto Marseus van Schrieck,0.65890455,fineart +Hanna-Barbera,0.6588123,cartoon +Mary Anning,0.6588001,fineart +Pamela Colman Smith,0.6587648,fineart +Anton Mauve,0.6586873,fineart +Hendrick Avercamp,0.65866685,fineart +Max Pechstein,0.65860206,scribbles +Franciszek Żmurko,0.56855476,fineart +Felice Casorati,0.6584761,fineart +Louis Janmot,0.65298057,fineart +Thomas Cole,0.5408042,fineart +Peter Mohrbacher,0.58273685,fineart +Arnold Franz Brasz,0.65834284,nudity +Christian Rohlfs,0.6582814,fineart +Basil Gogos,0.658105,fineart +Fitz Hugh Lane,0.657923,fineart +Liubov Sergeevna Popova,0.62325525,fineart +Elizabeth MacNicol,0.65773135,fineart +Zinaida Serebriakova,0.6577016,fineart +Ernest Lawson,0.6575238,fineart +Bruno Catalano,0.6574354,fineart +Albert Namatjira,0.6573372,fineart +Fritz von Uhde,0.6572697,fineart +Edwin Henry Landseer,0.62363374,fineart +Naoto Hattori,0.621745,fareast +Reylia Slaby,0.65709853,fineart +Arthur Burdett Frost,0.6147318,fineart +Frank Miller,0.65707314,digipa-high-impact +Algernon Talmage,0.65702903,fineart +Itō Jakuchū,0.6570199,digipa-high-impact +Billie Waters,0.65684533,digipa-high-impact +Ingrid Baars,0.58558,digipa-high-impact +Pieter Jansz Saenredam,0.6566058,fineart +Egbert van Heemskerck,0.6125889,fineart +John French Sloan,0.6362145,fineart +Craola,0.65639997,scribbles +Benjamin Marra,0.61809736,nudity +Anthony Thieme,0.65609205,fineart +Satoshi Kon,0.65606606,anime +Masamune Shirow,0.65592873,anime +Alfred Stevens,0.6557321,fineart +Hariton Pushwagner,0.6556745,anime +Carlo Carrà,0.6556279,fineart +Stuart Davis,0.6050534,digipa-high-impact +David Shrigley,0.6553904,digipa-high-impact +Albrecht Anker,0.65531695,fineart +Anton Semenov,0.6552501,digipa-high-impact +Fabio Hurtado,0.5955889,fineart +Donald Judd,0.6552257,fineart +Francisco de Burgos Mantilla,0.65516514,fineart +Barthel Bruyn the Younger,0.6551433,fineart +Abram Arkhipov,0.6550962,fineart +Paulus Potter,0.65498203,fineart +Edward Lamson Henry,0.6549521,fineart +Audrey Kawasaki,0.654843,fineart +George Catlin,0.6547183,fineart +Adélaïde Labille-Guiard,0.6066263,fineart +Sandy Skoglund,0.6546999,digipa-high-impact +Hans Baldung,0.654431,fineart +Ethan Van Sciver,0.65442884,cartoon +Frans Hals,0.6542338,fineart +Caspar David Friedrich,0.6542175,fineart +Charles Conder,0.65420866,fineart +Betty Churcher,0.65387225,fineart +Claes Corneliszoon Moeyaert,0.65386075,fineart +David Bomberg,0.6537477,fineart +Abraham Bosschaert,0.6535562,fineart +Giuseppe de Nittis,0.65354455,fineart +John La Farge,0.65342575,fineart +Frits Thaulow,0.65341854,fineart +John Duncan,0.6532379,fineart +Floris van Dyck,0.64900756,fineart +Anton Pieck,0.65310377,fineart +Roger Dean,0.6529647,nudity +Maximilian Pirner,0.65280807,fineart +Dorothy Johnstone,0.65267503,fineart +Govert Dircksz Camphuysen,0.65258145,fineart +Ryohei Hase,0.6168618,fineart +Hans von Aachen,0.62437224,fineart +Gustaf Munch-Petersen,0.6522485,fineart +Earnst Haeckel,0.6344333,fineart +Giovanni Battista Bracelli,0.62635326,fineart +Hendrick Goudt,0.6521433,fineart +Aneurin Jones,0.65191466,fineart +Bryan Hitch,0.6518333,cartoon +Coby Whitmore,0.6515695,fineart +Barthélemy d'Eyck,0.65156406,fineart +Quint Buchholz,0.65151155,fineart +Adriaen Hanneman,0.6514815,fineart +Tom Roberts,0.5855832,fineart +Fernand Khnopff,0.6512954,nudity +Charles Vess,0.6512271,cartoon +Carlo Galli Bibiena,0.6511681,nudity +Alexander Milne Calder,0.6081027,fineart +Josan Gonzalez,0.6193469,cartoon +Barthel Bruyn the Elder,0.6509954,fineart +Jon Whitcomb,0.6046063,fineart +Arcimboldo,0.6509897,fineart +Hendrik van Steenwijk I,0.65086293,fineart +Albert Joseph Pénot,0.65085316,fineart +Edward Wadsworth,0.6308917,scribbles +Andrew Wyeth,0.6507103,fineart +Correggio,0.650689,fineart +Frances Currey,0.65068,fineart +Henryk Siemiradzki,0.56721973,fineart +Worthington Whittredge,0.6504713,fineart +Federico Zandomeneghi,0.65033823,fineart +Isaac Levitan,0.6503356,fineart +Russ Mills,0.65012795,fineart +Edith Lawrence,0.65010095,fineart +Gil Elvgren,0.5614284,digipa-high-impact +Chris Foss,0.56495357,fineart +Francesco Zuccarelli,0.612805,fineart +Hendrick Bloemaert,0.64962655,fineart +Egon von Vietinghoff,0.57180583,fineart +Pixar,0.6495793,cartoon +Daniel Clowes,0.6495775,fineart +Friedrich Ritter von Friedländer-Malheim,0.6493772,fineart +Rebecca Sugar,0.6492679,scribbles +Chen Daofu,0.6492026,fineart +Dustin Nguyen,0.64909416,cartoon +Raymond Duchamp-Villon,0.6489605,nudity +Daniel Garber,0.6489332,fineart +Antonio Canova,0.58764786,fineart +Algernon Blackwood,0.59256804,fineart +Betye Saar,0.64877665,fineart +William S. Burroughs,0.5505619,fineart +Rodney Matthews,0.64844495,fineart +Michelangelo Buonarroti,0.6484401,fineart +Posuka Demizu,0.64843124,anime +Joao Ruas,0.6484134,fineart +Andy Fairhurst,0.6480388,special +"Andries Stock, Dutch Baroque painter",0.6479797,fineart +Antonio de la Gandara,0.6479292,fineart +Bruce Timm,0.6477877,scribbles +Harvey Kurtzman,0.64772683,cartoon +Eiichiro Oda,0.64772165,anime +Edwin Landseer,0.6166703,fineart +Carl Heinrich Bloch,0.64755356,fineart +Adriaen Isenbrant,0.6475428,fineart +Santiago Caruso,0.6473954,fineart +Alfred Guillou,0.6472603,fineart +Clara Peeters,0.64725095,fineart +Kim Jung Gi,0.6472225,cartoon +Milo Manara,0.6471776,cartoon +Phil Noto,0.6470769,anime +Kaws,0.6470336,cartoon +Desmond Morris,0.5951916,fineart +Gediminas Pranckevicius,0.6467787,fineart +Jack Kirby,0.6467424,cartoon +Claes Jansz. Visscher,0.6466888,fineart +Augustin Meinrad Bächtiger,0.6465789,fineart +John Lavery,0.64643383,fineart +Anne Bachelier,0.6464065,fineart +Giuseppe Bernardino Bison,0.64633006,fineart +E. T. A. Hoffmann,0.5887251,fineart +Ambrosius Benson,0.6457839,fineart +Cornelis Verbeeck,0.645782,fineart +H. R. Giger,0.6456823,weird +Adolph Menzel,0.6455246,fineart +Aliza Razell,0.5863178,digipa-high-impact +Gerard Seghers,0.6205679,fineart +David Aja,0.62812066,scribbles +Gustave Courbet,0.64476407,fineart +Alexandre Cabanel,0.63849115,fineart +Albert Marquet,0.64471006,fineart +Harold Harvey,0.64464307,fineart +William Wegman,0.6446265,scribbles +Harold Gilman,0.6445966,fineart +Jeremy Geddes,0.57839495,digipa-high-impact +Abraham van Beijeren,0.6356113,fineart +Eugène Isabey,0.6160607,fineart +Jorge Jacinto,0.58618563,fineart +Frederic Leighton,0.64383554,fineart +Dave McKean,0.6438012,cartoon +Hiromu Arakawa,0.64371413,anime +Aaron Douglas,0.6437089,fineart +Adolf Dietrich,0.590169,fineart +Frederik de Moucheron,0.6435952,fineart +Siya Oum,0.6435919,cartoon +Alberto Morrocco,0.64352196,fineart +Robert Vonnoh,0.6433115,fineart +Tom Bagshaw,0.5322264,fineart +Guerrilla Girls,0.64309967,digipa-high-impact +Johann Wolfgang von Goethe,0.6429888,fineart +Charles Le Roux,0.6426594,fineart +Auguste Toulmouche,0.64261353,fineart +Cindy Sherman,0.58666563,digipa-high-impact +Federico Zuccari,0.6425021,fineart +Mike Mignola,0.642346,cartoon +Cecily Brown,0.6421981,fineart +Brian K. Vaughan,0.64147836,cartoon +RETNA (Marquis Lewis),0.47963,n +Klaus Janson,0.64129144,cartoon +Alessandro Galli Bibiena,0.6412889,fineart +Jeremy Lipking,0.64123213,fineart +Stephen Shore,0.64108944,digipa-high-impact +Heinz Edelmann,0.51325977,digipa-med-impact +Joaquín Sorolla,0.6409732,fineart +Bella Kotak,0.6409608,digipa-high-impact +Cornelis Engebrechtsz,0.64091057,fineart +Bruce Munro,0.64084166,digipa-high-impact +Marjane Satrapi,0.64076495,fineart +Jeremy Mann,0.557744,digipa-high-impact +Heinrich Maria Davringhausen,0.6403986,fineart +Kengo Kuma,0.6402023,digipa-high-impact +Alfred Manessier,0.640153,fineart +Antonio Galli Bibiena,0.6399247,digipa-high-impact +Eduard von Grützner,0.6397164,fineart +Bunny Yeager,0.5455078,digipa-high-impact +Adolphe Willette,0.6396935,fineart +Wangechi Mutu,0.6394607,n +Peter Milligan,0.6391612,digipa-high-impact +Dalí,0.45400402,digipa-low-impact +Élisabeth Vigée Le Brun,0.6388982,fineart +Beth Conklin,0.6388204,digipa-high-impact +Charles Alphonse du Fresnoy,0.63881266,fineart +Thomas Benjamin Kennington,0.56668127,fineart +Jim Woodring,0.5625168,fineart +Francisco Oller,0.63846034,fineart +Csaba Markus,0.6384506,fineart +Botero,0.63843524,scribbles +Bill Henson,0.5394536,digipa-high-impact +Anna Bocek,0.6382304,scribbles +Hugo van der Goes,0.63822484,fineart +Robert William Hume,0.5433574,fineart +Chip Zdarsky,0.6381826,cartoon +Daniel Seghers,0.53494316,fineart +Richard Doyle,0.6377541,fineart +Hendrick Terbrugghen,0.63773805,fineart +Joe Madureira,0.6377177,special +Floris van Schooten,0.6376191,fineart +Jeff Simpson,0.3959046,fineart +Albert Joseph Moore,0.6374316,fineart +Arthur Merric Boyd,0.6373228,fineart +Amadeo de Souza Cardoso,0.5927926,fineart +Os Gemeos,0.6368859,digipa-high-impact +Giovanni Boldini,0.6368698,fineart +Albert Goodwin,0.6368695,fineart +Hans Eduard von Berlepsch-Valendas,0.61562145,fineart +Edmond Xavier Kapp,0.5758474,fineart +François Quesnel,0.6365935,fineart +Nathan Coley,0.6365817,digipa-high-impact +Jasmine Becket-Griffith,0.6365083,digipa-high-impact +Raphaelle Peale,0.6364422,fineart +Candido Portinari,0.63634276,fineart +Edward Dugmore,0.63179636,fineart +Anders Zorn,0.6361722,fineart +Ed Emshwiller,0.63615763,fineart +Francis Coates Jones,0.6361159,fineart +Ernst Haas,0.6361123,digipa-high-impact +Dirck van Baburen,0.6213001,fineart +René Lalique,0.63594735,fineart +Sydney Prior Hall,0.6359345,fineart +Brad Kunkle,0.5659712,fineart +Corneille,0.6356381,fineart +Henry Lamb,0.63560975,fineart +Dirck Hals,0.63559663,fineart +Alex Grey,0.62908936,nudity +Michael Heizer,0.63555753,fineart +Yiannis Moralis,0.61731136,fineart +Emily Murray Paterson,0.4392335,fineart +Georg Friedrich Kersting,0.6256248,fineart +Frances Hodgkins,0.6352128,fineart +Charles Cundall,0.6349486,fineart +Henry Wallis,0.63478243,fineart +Goro Fujita,0.6346491,cartoon +Jean-Léon Gérôme,0.5954844,fineart +August von Pettenkofen,0.60910493,fineart +Abbott Handerson Thayer,0.63428533,fineart +Martin John Heade,0.5926603,fineart +Ellen Jewett,0.63420236,digipa-high-impact +Hidari Jingorō,0.63388014,fareast +Taiyō Matsumoto,0.63372946,special +Emanuel Leutze,0.6007246,fineart +Adam Martinakis,0.48973057,digipa-med-impact +Will Eisner,0.63349223,cartoon +Alexander Stirling Calder,0.6331682,fineart +Saturno Butto,0.6331184,nudity +Cecilia Beaux,0.6330725,fineart +Amandine Van Ray,0.6174208,digipa-high-impact +Bob Eggleton,0.63277495,digipa-high-impact +Sherree Valentine Daines,0.63274443,fineart +Frederick Lord Leighton,0.6299176,fineart +Daniel Ridgway Knight,0.63251615,fineart +Gaetano Previati,0.61743724,fineart +John Berkey,0.63226986,fineart +Richard Misrach,0.63201725,digipa-high-impact +Aaron Jasinski,0.57948315,fineart +"Edward Otho Cresap Ord, II",0.6317712,fineart +Evelyn De Morgan,0.6317376,fineart +Noelle Stevenson,0.63159716,digipa-high-impact +Edward Robert Hughes,0.6315573,fineart +Allan Ramsay,0.63150716,fineart +Balthus,0.6314323,scribbles +Hendrick Cornelisz Vroom,0.63143134,digipa-high-impact +Ilya Repin,0.6313043,fineart +George Lambourn,0.6312267,fineart +Arthur Hughes,0.6310194,fineart +Antonio J. Manzanedo,0.53841716,fineart +John Singleton Copley,0.6264835,fineart +Dennis Miller Bunker,0.63078755,fineart +Ernie Barnes,0.6307126,cartoon +Alison Kinnaird,0.6306353,digipa-high-impact +Alex Toth,0.6305541,digipa-high-impact +Henry Raeburn,0.6155551,fineart +Alice Bailly,0.6305177,fineart +Brian Kesinger,0.63037646,scribbles +Antoine Blanchard,0.63036835,fineart +Ron Walotsky,0.63035095,fineart +Kent Monkman,0.63027304,fineart +Naomi Okubo,0.5782754,fareast +Hercules Seghers,0.62957174,fineart +August Querfurt,0.6295643,fineart +Samuel Melton Fisher,0.6283333,fineart +David Burdeny,0.62950236,digipa-high-impact +George Bain,0.58519644,fineart +Peter Holme III,0.62938106,fineart +Grayson Perry,0.62928164,digipa-high-impact +Chris Claremont,0.6292076,digipa-high-impact +Dod Procter,0.6291759,fineart +Huang Tingjian,0.6290358,fareast +Dorothea Warren O'Hara,0.6290113,fineart +Ivan Albright,0.6289551,fineart +Hubert von Herkomer,0.6288955,fineart +Barbara Nessim,0.60589516,digipa-high-impact +Henry Scott Tuke,0.6286309,fineart +Ditlev Blunck,0.6282925,fineart +Sven Nordqvist,0.62828535,fineart +Lee Madgwick,0.6281731,fineart +Hubert van Eyck,0.6281529,fineart +Edmond Bille,0.62339354,fineart +Ejnar Nielsen,0.6280824,fineart +Arturo Souto,0.6280583,fineart +Jean Giraud,0.6279888,fineart +Storm Thorgerson,0.6277394,digipa-high-impact +Ed Benedict,0.62764007,digipa-high-impact +Christoffer Wilhelm Eckersberg,0.6014842,fineart +Clarence Holbrook Carter,0.5514105,fineart +Dorothy Lockwood,0.6273235,fineart +John Singer Sargent,0.6272487,fineart +Brigid Derham,0.6270125,digipa-high-impact +Henricus Hondius II,0.6268505,fineart +Gertrude Harvey,0.5903887,fineart +Grant Wood,0.6266253,fineart +Fyodor Vasilyev,0.5234919,digipa-med-impact +Cagnaccio di San Pietro,0.6261671,fineart +Doris Boulton-Maude,0.62593174,fineart +Adolf Hirémy-Hirschl,0.5946784,fineart +Harold von Schmidt,0.6256755,fineart +Martine Johanna,0.6256161,digipa-high-impact +Gerald Kelly,0.5579602,digipa-high-impact +Ub Iwerks,0.625396,cartoon +Dirck van der Lisse,0.6253871,fineart +Edouard Riou,0.6250113,fineart +Ilya Yefimovich Repin,0.62491584,fineart +Martin Johnson Heade,0.59421235,fineart +Afarin Sajedi,0.62475824,scribbles +Alfred Thompson Bricher,0.6247515,fineart +Edwin G. Lucas,0.5553578,fineart +Georges Emile Lebacq,0.56175387,fineart +Francis Davis Millet,0.5988504,fineart +Bill Sienkiewicz,0.6125557,digipa-high-impact +Giocondo Albertolli,0.62441677,fineart +Victor Nizovtsev,0.6242258,fineart +Squeak Carnwath,0.62416434,digipa-high-impact +Bill Viola,0.62409425,digipa-high-impact +Annie Abernethie Pirie Quibell,0.6240767,fineart +Jason Edmiston,0.62405366,fineart +Al Capp,0.6239494,fineart +Kobayashi Kiyochika,0.6239368,anime +Albert Anker,0.62389827,fineart +Iain Faulkner,0.62376785,fineart +Todd Schorr,0.6237408,fineart +Charles Ginner,0.62370133,fineart +Emile Auguste Carolus-Duran,0.62353987,fineart +John Philip Falter,0.623418,cartoon +Chizuko Yoshida,0.6233001,fareast +Anna Dittmann,0.62327325,cartoon +Henry Snell Gamley,0.62319934,fineart +Edmund Charles Tarbell,0.6230626,fineart +Rob Gonsalves,0.62298363,fineart +Gladys Dawson,0.6228511,fineart +Tomma Abts,0.61153626,fineart +Kate Beaton,0.53993124,digipa-high-impact +Gustave Buchet,0.62243867,fineart +Gareth Pugh,0.6223551,digipa-high-impact +Caspar van Wittel,0.57871693,fineart +Anton Otto Fischer,0.6222941,fineart +Albert Guillaume,0.56529653,fineart +Felix Octavius Carr Darley,0.62223387,fineart +Bernard van Orley,0.62221646,fineart +Edward John Poynter,0.60147405,fineart +Walter Percy Day,0.62207425,fineart +Franciszek Starowieyski,0.5709621,fineart +Auguste Baud-Bovy,0.6219854,fineart +Chris LaBrooy,0.45497298,digipa-low-impact +Abraham de Vries,0.5859101,fineart +Antoni Gaudi,0.62162614,fineart +Joe Jusko,0.62156093,digipa-high-impact +Lynda Barry,0.62154603,digipa-high-impact +Michal Karcz,0.62154436,digipa-high-impact +Raymond Briggs,0.62150294,fineart +Herbert James Gunn,0.6210927,fineart +Dwight William Tryon,0.620984,fineart +Paul Henry,0.5752968,fineart +Helio Oiticica,0.6203739,digipa-high-impact +Sebastian Errazuriz,0.62036186,digipa-high-impact +Lucian Freud,0.6203146,nudity +Frank Auerbach,0.6201102,weird +Andre-Charles Boulle,0.6200789,fineart +Franz Fedier,0.5669752,fineart +Austin Briggs,0.57675314,fineart +Hugo Sánchez Bonilla,0.61978436,digipa-high-impact +Caroline Chariot-Dayez,0.6195682,digipa-high-impact +Bill Ward,0.61953044,digipa-high-impact +Charles Bird King,0.6194487,fineart +Adrian Ghenie,0.6193521,digipa-high-impact +Agnes Cecile,0.6192814,digipa-high-impact +Augustus John,0.6191995,fineart +Jeffrey T. Larson,0.61913544,fineart +Alexis Simon Belle,0.3190395,digipa-low-impact +Jean-Baptiste Monge,0.5758537,fineart +Adolf Bierbrauer,0.56129396,fineart +Ayako Rokkaku,0.61891204,fareast +Lisa Keene,0.54570895,digipa-high-impact +Edmond Aman-Jean,0.57168096,fineart +Marc Davis,0.61837333,cartoon +Cerith Wyn Evans,0.61829346,digipa-high-impact +George Wyllie,0.61829203,fineart +George Luks,0.6182724,fineart +William-Adolphe Bouguereau,0.618265,c +Grigoriy Myasoyedov,0.61801606,fineart +Hashimoto Gahō,0.61795104,fineart +Charles Ragland Bunnell,0.61772746,fineart +Ambrose McCarthy Patterson,0.61764514,fineart +Bill Brauer,0.5824066,fineart +Mikko Lagerstedt,0.591015,digipa-high-impact +Koson Ohara,0.53635323,fineart +Evaristo Baschenis,0.5857368,fineart +Martin Ansin,0.5294119,fineart +Cory Loftis,0.6168619,cartoon +Joseph Stella,0.6166778,fineart +André Pijet,0.5768274,fineart +Jeff Wall,0.6162895,digipa-high-impact +Eleanor Layfield Davis,0.6158844,fineart +Saul Tepper,0.61579347,fineart +Alex Hirsch,0.6157384,cartoon +Alexandre Falguière,0.55011404,fineart +Malcolm Liepke,0.6155646,fineart +Georg Friedrich Schmidt,0.60364646,fineart +Hendrik Kerstens,0.55099905,digipa-high-impact +Félix Bódog Widder,0.6153954,fineart +Marie Guillemine Benoist,0.61532974,fineart +Kelly Mckernan,0.60047054,digipa-high-impact +Ignacio Zuloaga,0.6151608,fineart +Hubert van Ravesteyn,0.61489964,fineart +Angus McKie,0.61487424,digipa-high-impact +Colin Campbell Cooper,0.6147882,fineart +Pieter Aertsen,0.61454165,fineart +Jan Brett,0.6144608,fineart +Kazuo Koike,0.61438507,fineart +Edith Grace Wheatley,0.61428297,fineart +Ogawa Kazumasa,0.61427975,fareast +Giovanni Battista Cipriani,0.6022825,fineart +André Bauchant,0.57124996,fineart +George Abe,0.6140447,digipa-high-impact +Georges Lemmen,0.6139967,scribbles +Frank Leonard Brooks,0.6139327,fineart +Gai Qi,0.613744,anime +Frank Gehry,0.6136776,digipa-high-impact +Anton Domenico Gabbiani,0.55471313,fineart +Cassandra Austen,0.6135781,fineart +Paul Gustav Fischer,0.613273,fineart +Emiliano Di Cavalcanti,0.6131207,fineart +Meryl McMaster,0.6129995,digipa-high-impact +Domenico di Pace Beccafumi,0.6129922,fineart +Ludwig Mies van der Rohe,0.6126692,fineart +Étienne-Louis Boullée,0.6126158,fineart +Dali,0.5928694,nudity +Shinji Aramaki,0.61246127,anime +Giovanni Fattori,0.59544694,fineart +Bapu,0.6122084,c +Raphael Lacoste,0.5539114,digipa-high-impact +Scarlett Hooft Graafland,0.6119631,digipa-high-impact +Rene Laloux,0.61190474,fineart +Julius Horsthuis,0.59037095,fineart +Gerald van Honthorst,0.6115939,fineart +Dino Valls,0.611533,fineart +Tony DiTerlizzi,0.6114657,cartoon +Michael Cheval,0.61138546,anime +Charles Schulz,0.6113759,digipa-high-impact +Alvar Aalto,0.61122143,digipa-high-impact +Gu Kaizhi,0.6110798,fareast +Eugene von Guerard,0.6109776,fineart +John Cassaday,0.610949,fineart +Elizabeth Forbes,0.61092335,fineart +Edmund Greacen,0.6109115,fineart +Eugène Burnand,0.6107876,fineart +Boris Grigoriev,0.6107853,scribbles +Norman Rockwell,0.6107638,fineart +Barthélemy Menn,0.61064315,fineart +George Biddle,0.61058354,fineart +Edgar Ainsworth,0.5525424,digipa-high-impact +Alfred Leyman,0.5887217,fineart +Tex Avery,0.6104007,cartoon +Beatrice Ethel Lithiby,0.61030364,fineart +Grace Pailthorpe,0.61026484,digipa-high-impact +Brian Oldham,0.396231,digipa-low-impact +Android Jones,0.61023116,fareast +François Girardon,0.5830649,fineart +Ib Eisner,0.61016303,digipa-high-impact +Armand Point,0.610156,fineart +Henri Alphonse Barnoin,0.59465057,fineart +Jean Marc Nattier,0.60987425,fineart +Francisco de Holanda,0.6091294,fineart +Marco Mazzoni,0.60970783,fineart +Esaias Boursse,0.6093308,fineart +Alexander Deyneka,0.55000365,fineart +John Totleben,0.60883725,fineart +Al Feldstein,0.6087723,fineart +Adam Hughes,0.60854626,anime +Ernest Zobole,0.6085073,fineart +Alex Gross,0.60837066,digipa-high-impact +George Jamesone,0.6079673,fineart +Frank Lloyd Wright,0.60793245,scribbles +Brooke DiDonato,0.47680336,digipa-med-impact +Hans Gude,0.60780364,fineart +Ethel Schwabacher,0.60748273,fineart +Gladys Kathleen Bell,0.60747695,fineart +Adolf Fényes,0.54192233,fineart +Carel Willink,0.58120143,fineart +George Henry,0.6070727,digipa-high-impact +Ronald Balfour,0.60697085,fineart +Elsie Dalton Hewland,0.6067718,digipa-high-impact +Alex Maleev,0.6067118,fineart +Anish Kapoor,0.6067015,digipa-high-impact +Aleksandr Ivanovich Laktionov,0.606544,fineart +Kim Keever,0.6037775,digipa-high-impact +Aleksi Briclot,0.46056762,fineart +Raymond Leech,0.6062721,fineart +Richard Eurich,0.6062664,fineart +Phil Jimenez,0.60625625,cartoon +Gao Cen,0.60618126,nudity +Mike Deodato,0.6061201,cartoon +Charles Haslewood Shannon,0.6060581,fineart +Alexandre Jacovleff,0.3991747,digipa-low-impact +André Beauneveu,0.584062,fineart +Hiroshi Honda,0.60507596,digipa-high-impact +Charles Joshua Chaplin,0.60498774,fineart +Domenico Zampieri,0.6049726,fineart +Gusukuma Seihō,0.60479784,fareast +Nikolina Petolas,0.46318632,digipa-low-impact +Casey Weldon,0.6047672,cartoon +Elmyr de Hory,0.6046374,fineart +Nan Goldin,0.6046119,digipa-high-impact +Charles McAuley,0.6045995,fineart +Archibald Skirving,0.6044234,fineart +Elizabeth York Brunton,0.6043737,fineart +Dugald Sutherland MacColl,0.6042907,fineart +Titian,0.60426414,fineart +Ignacy Witkiewicz,0.6042259,fineart +Allie Brosh,0.6042061,digipa-high-impact +H.P. Lovecraft,0.6039597,digipa-high-impact +Andrée Ruellan,0.60395086,fineart +Ralph McQuarrie,0.60380936,fineart +Mead Schaeffer,0.6036558,fineart +Henri-Julien Dumont,0.571257,fineart +Kieron Gillen,0.6035093,fineart +Maginel Wright Enright Barney,0.6034306,nudity +Vincent Di Fate,0.6034131,fineart +Briton Rivière,0.6032918,fineart +Hajime Sorayama,0.60325956,nudity +Béla Czóbel,0.6031023,fineart +Edmund Blampied,0.603072,fineart +E. Simms Campbell,0.6030443,fineart +Hisui Sugiura,0.603034,fareast +Alan Davis,0.6029676,fineart +Glen Keane,0.60287905,cartoon +Frank Holl,0.6027312,fineart +Abbott Fuller Graves,0.6025608,fineart +Albert Servaes,0.60250103,black-white +Hovsep Pushman,0.5937487,fineart +Brian M. Viveros,0.60233414,fineart +Charles Fremont Conner,0.6023278,fineart +Francesco Furini,0.6022654,digipa-high-impact +Camille-Pierre Pambu Bodo,0.60191673,fineart +Yasushi Nirasawa,0.6016714,nudity +Charles Uzzell-Edwards,0.6014683,fineart +Abram Efimovich Arkhipov,0.60128385,fineart +Hedda Sterne,0.6011857,digipa-high-impact +Ben Aronson,0.6011548,fineart +Frank Frazetta,0.551121,nudity +Elizabeth Durack,0.6010842,fineart +Ian Miller,0.42153555,fareast +Charlie Bowater,0.4410439,special +Michael Carson,0.60039437,fineart +Walter Langley,0.6002273,fineart +Cornelis Anthonisz,0.6001956,fineart +Dorothy Elizabeth Bradford,0.6001929,fineart +J.C. Leyendecker,0.5791972,fineart +Willem van Haecht,0.59990716,fineart +Anna and Elena Balbusso,0.59955937,digipa-low-impact +Harrison Fisher,0.59952044,fineart +Bill Medcalf,0.59950054,fineart +Edward Arthur Walton,0.59945667,fineart +Alois Arnegger,0.5991994,fineart +Ray Caesar,0.59902894,digipa-high-impact +Karen Wallis,0.5990094,fineart +Emmanuel Shiu,0.51082766,digipa-med-impact +Thomas Struth,0.5988324,digipa-high-impact +Barbara Longhi,0.5985706,fineart +Richard Deacon,0.59851056,fineart +Constantin Hansen,0.5984213,fineart +Harold Shapinsky,0.5984175,fineart +George Dionysus Ehret,0.5983857,fineart +Doug Wildey,0.5983639,digipa-high-impact +Fernand Toussaint,0.5982694,fineart +Horatio Nelson Poole,0.5982614,fineart +Caesar van Everdingen,0.5981566,fineart +Eva Gonzalès,0.5981396,fineart +Franz Vohwinkel,0.5448179,fineart +Margaret Mee,0.5979592,fineart +Francis Focer Brown,0.59779185,fineart +Henry Moore,0.59767926,nudity +Scott Listfield,0.58795893,fineart +Nikolai Ge,0.5973643,fineart +Jacek Yerka,0.58198756,fineart +Margaret Brundage,0.5969077,fineart +JC Leyendecker,0.5620243,fineart +Ben Templesmith,0.5498991,digipa-high-impact +Armin Hansen,0.59669334,anime +Jean-Louis Prevost,0.5966897,fineart +Daphne Allen,0.59666026,fineart +Franz Karl Basler-Kopp,0.59663445,fineart +"Henry Ives Cobb, Jr.",0.596385,fineart +Michael Sowa,0.546285,fineart +Anna Füssli,0.59600973,fineart +György Rózsahegyi,0.59580946,fineart +Luis Royo,0.59566617,fineart +Émile Gallé,0.5955559,fineart +Antonio Mora,0.5334297,digipa-high-impact +Edward P. Beard Jr.,0.59543866,fineart +Jessica Rossier,0.54958373,special +André Thomkins,0.5343785,digipa-high-impact +David Macbeth Sutherland,0.5949968,fineart +Charles Liu,0.5949787,digipa-high-impact +Edi Rama,0.5949226,digipa-high-impact +Jacques Le Moyne,0.5948843,fineart +Egbert van der Poel,0.59488285,fineart +Georg Jensen,0.594782,digipa-high-impact +Anne Sudworth,0.5947539,fineart +Jan Pietersz Saenredam,0.59472525,fineart +Henryk Stażewski,0.5945748,fineart +André François,0.58402044,fineart +Alexander Runciman,0.5944449,digipa-high-impact +Thomas Kinkade,0.594391,fineart +Robert Williams,0.5567989,digipa-high-impact +George Gardner Symons,0.57431924,fineart +D. Alexander Gregory,0.5334464,fineart +Gerald Brom,0.52473724,fineart +Robert Hagan,0.59406,fineart +Ernest Crichlow,0.5940588,fineart +Viviane Sassen,0.5939927,digipa-high-impact +Enrique Simonet,0.5937546,fineart +Esther Blaikie MacKinnon,0.593747,digipa-high-impact +Jeff Kinney,0.59372896,scribbles +Igor Morski,0.5936732,digipa-high-impact +John Currin,0.5936216,fineart +Bob Ringwood,0.5935273,digipa-high-impact +Jordan Grimmer,0.44948143,digipa-low-impact +François Barraud,0.5933471,fineart +Helen Binyon,0.59331006,digipa-high-impact +Brenda Chamberlain,0.5932333,fineart +Candido Bido,0.59310603,fineart +Abraham Storck,0.5929502,fineart +Raphael,0.59278333,fineart +Larry Sultan,0.59273386,digipa-high-impact +Agostino Tassi,0.59265685,fineart +Alexander V. Kuprin,0.5925917,fineart +Frans Koppelaar,0.5658725,fineart +Richard Corben,0.59251785,fineart +David Gilmour Blythe,0.5924247,digipa-high-impact +František Kaván,0.5924211,fineart +Rob Liefeld,0.5921167,fineart +Ernő Rubik,0.5920297,fineart +Byeon Sang-byeok,0.59200096,fareast +Johfra Bosschart,0.5919376,fineart +Emil Lindenfeld,0.5761086,fineart +Howard Mehring,0.5917471,fineart +Gwenda Morgan,0.5915571,digipa-high-impact +Henry Asencio,0.5915404,fineart +"George Barret, Sr.",0.5914306,fineart +Andrew Ferez,0.5911011,fineart +Ed Brubaker,0.5910869,digipa-high-impact +George Reid,0.59095883,digipa-high-impact +Derek Gores,0.51769906,digipa-med-impact +Charles Rollier,0.5539186,fineart +Terry Oakes,0.590443,fineart +Thomas Blackshear,0.5078616,fineart +Albert Benois,0.5902705,nudity +Krenz Cushart,0.59026587,special +Jeff Koons,0.5902637,digipa-high-impact +Akihiko Yoshida,0.5901294,special +Anja Percival,0.45039332,digipa-low-impact +Eduard von Steinle,0.59008586,fineart +Alex Russell Flint,0.5900352,digipa-high-impact +Edward Okuń,0.5897297,fineart +Emma Lampert Cooper,0.5894849,fineart +Stuart Haygarth,0.58132994,digipa-high-impact +George French Angas,0.5434376,fineart +Edmund F. Ward,0.5892848,fineart +Eleanor Vere Boyle,0.58925456,digipa-high-impact +Evelyn Cheston,0.58924586,fineart +Edwin Dickinson,0.58921975,digipa-high-impact +Christophe Vacher,0.47325426,fineart +Anne Dewailly,0.58905107,fineart +Gertrude Greene,0.5862596,digipa-high-impact +Boris Groh,0.5888809,digipa-high-impact +Douglas Smith,0.588804,digipa-high-impact +Ian Hamilton Finlay,0.5887713,fineart +Derek Jarman,0.5887292,digipa-high-impact +Archibald Thorburn,0.5882001,fineart +Gillis d'Hondecoeter,0.58813053,fineart +I Ketut Soki,0.58801544,digipa-high-impact +Alex Schomburg,0.46614102,digipa-low-impact +Bastien L. Deharme,0.583349,special +František Jakub Prokyš,0.58782333,fineart +Jesper Ejsing,0.58782053,fineart +Odd Nerdrum,0.53551745,digipa-high-impact +Tom Lovell,0.5877577,fineart +Ayami Kojima,0.5877416,fineart +Peter Sculthorpe,0.5875696,fineart +Bernard D’Andrea,0.5874042,fineart +Denis Eden,0.58739066,digipa-high-impact +Alfons Walde,0.58728385,fineart +Jovana Rikalo,0.47006977,digipa-low-impact +Franklin Booth,0.5870834,fineart +Mat Collishaw,0.5870676,digipa-high-impact +Joseph Lorusso,0.586858,fineart +Helen Stevenson,0.454647,digipa-low-impact +Delaunay,0.58657396,fineart +H.R. Millar,0.58655745,fineart +E. Charlton Fortune,0.586376,fineart +Alson Skinner Clark,0.58631575,fineart +Stan And Jan Berenstain,0.5862361,digipa-high-impact +Howard Lyon,0.5862271,fineart +John Blanche,0.586182,fineart +Bernardo Cavallino,0.5858575,fineart +Tomasz Alen Kopera,0.5216588,fineart +Peter Gric,0.58583695,fineart +Guo Pei,0.5857794,fareast +James Turrell,0.5853901,digipa-high-impact +Alexandr Averin,0.58533764,fineart +Bertalan Székely,0.5548113,digipa-high-impact +Brothers Hildebrandt,0.5850233,fineart +Ed Roth,0.5849769,digipa-high-impact +Enki Bilal,0.58492255,fineart +Alan Lee,0.5848701,fineart +Charles H. Woodbury,0.5848688,fineart +André Charles Biéler,0.5847876,fineart +Annie Rose Laing,0.5597829,fineart +Matt Fraction,0.58463776,cartoon +Charles Alston,0.58453286,fineart +Frank Xavier Leyendecker,0.545465,fineart +Alfred Richard Gurrey,0.584306,fineart +Dan Mumford,0.5843051,cartoon +Francisco Martín,0.5842005,fineart +Alvaro Siza,0.58406967,digipa-high-impact +Frank J. Girardin,0.5839858,fineart +Henry Carr,0.58397424,digipa-high-impact +Charles Furneaux,0.58394694,fineart +Daniel F. Gerhartz,0.58389103,fineart +Gilberto Soren Zaragoza,0.5448442,fineart +Bart Sears,0.5838427,cartoon +Allison Bechdel,0.58383805,digipa-high-impact +Frank O'Meara,0.5837992,fineart +Charles Codman,0.5836579,fineart +Francisco Zúñiga,0.58359766,fineart +Vladimir Kush,0.49075457,fineart +Arnold Mesches,0.5834257,fineart +Frank McKelvey,0.5831641,fineart +Allen Butler Talcott,0.5830911,fineart +Eric Zener,0.58300316,fineart +Noah Bradley,0.44176096,digipa-low-impact +Robert Childress,0.58289623,fineart +Frances C. Fairman,0.5827239,fineart +Kathryn Morris Trotter,0.465856,digipa-low-impact +Everett Raymond Kinstler,0.5824819,fineart +Edward Mitchell Bannister,0.5804899,fineart +"George Barret, Jr.",0.5823128,fineart +Greg Hildebrandt,0.4271311,fineart +Anka Zhuravleva,0.5822078,digipa-high-impact +Rolf Armstrong,0.58217514,fineart +Eric Wallis,0.58191466,fineart +Clemens Ascher,0.5480207,digipa-high-impact +Hugo Kārlis Grotuss,0.5818766,fineart +Albert Paris Gütersloh,0.5817827,fineart +Hilda May Gordon,0.5817449,fineart +Hendrik Martenszoon Sorgh,0.5817126,fineart +Pipilotti Rist,0.5816868,digipa-high-impact +Hiroyuki Tajima,0.5816242,fareast +Igor Zenin,0.58159757,digipa-high-impact +Genevieve Springston Lynch,0.4979099,digipa-med-impact +Dan Witz,0.44476372,fineart +David Roberts,0.5255326,fineart +Frieke Janssens,0.5706969,digipa-high-impact +Arnold Schoenberg,0.56520367,fineart +Inoue Naohisa,0.5809933,fareast +Elfriede Lohse-Wächtler,0.58097905,fineart +Alex Ross,0.42460668,digipa-low-impact +Robert Irwin,0.58078,c +Charles Angrand,0.58077514,fineart +Anne Nasmyth,0.54221964,fineart +Henri Bellechose,0.5773891,fineart +De Hirsh Margules,0.58059025,fineart +Hiromitsu Takahashi,0.5805599,fareast +Ilya Kuvshinov,0.5805521,special +Cassius Marcellus Coolidge,0.5805516,c +Dorothy Burroughes,0.5804835,fineart +Emanuel de Witte,0.58027405,fineart +George Herbert Baker,0.5799624,digipa-high-impact +Cheng Zhengkui,0.57990086,fareast +Bernard Fleetwood-Walker,0.57987773,digipa-high-impact +Philippe Parreno,0.57985014,digipa-high-impact +Thornton Oakley,0.57969713,fineart +Greg Rutkowski,0.5203395,special +Ike no Taiga,0.5795857,anime +Eduardo Lefebvre Scovell,0.5795808,fineart +Adolfo Müller-Ury,0.57944727,fineart +Patrick Woodroffe,0.5228063,fineart +Wim Crouwel,0.57933235,digipa-high-impact +Colijn de Coter,0.5792779,fineart +François Boquet,0.57924724,fineart +Gerbrand van den Eeckhout,0.57897866,fineart +Eugenio Granell,0.5392264,fineart +Kuang Hong,0.5782304,digipa-high-impact +Justin Gerard,0.46685404,fineart +Tokujin Yoshioka,0.5779153,digipa-high-impact +Alan Bean,0.57788515,fineart +Ernest Biéler,0.5778079,fineart +Martin Deschambault,0.44401115,digipa-low-impact +Anna Boch,0.577735,fineart +Jack Davis,0.5775291,fineart +Félix Labisse,0.5775142,fineart +Greg Simkins,0.5679761,fineart +David Lynch,0.57751054,digipa-low-impact +Eizō Katō,0.5774127,digipa-high-impact +Grethe Jürgens,0.5773412,digipa-high-impact +Heinrich Bichler,0.5770147,fineart +Barbara Nasmyth,0.5446056,fineart +Domenico Induno,0.5583946,fineart +Gustave Baumann,0.5607866,fineart +Mike Mayhew,0.5765857,cartoon +Delmer J. Yoakum,0.576538,fineart +Aykut Aydogdu,0.43111503,digipa-low-impact +George Barker,0.5763551,fineart +Ernő Grünbaum,0.57634187,fineart +Eliseu Visconti,0.5763241,fineart +Esao Andrews,0.5761547,fineart +JennyBird Alcantara,0.49165845,digipa-med-impact +Joan Tuset,0.5761051,fineart +Angela Barrett,0.55976534,digipa-high-impact +Syd Mead,0.5758396,fineart +Ignacio Bazan-Lazcano,0.5757512,fineart +Franciszek Kostrzewski,0.57570386,fineart +Eero Järnefelt,0.57540673,fineart +Loretta Lux,0.56217635,digipa-high-impact +Gaudi,0.57519895,fineart +Charles Gleyre,0.57490873,fineart +Antoine Verney-Carron,0.56386137,fineart +Albert Edelfelt,0.57466495,fineart +Fabian Perez,0.57444525,fineart +Kevin Sloan,0.5737548,fineart +Stanislav Poltavsky,0.57434607,fineart +Abraham Hondius,0.574326,fineart +Tadao Ando,0.57429105,fareast +Fyodor Slavyansky,0.49796474,digipa-med-impact +David Brewster,0.57385933,digipa-high-impact +Cliff Chiang,0.57375133,digipa-high-impact +Drew Struzan,0.5317983,digipa-high-impact +Henry O. Tanner,0.5736586,fineart +Alberto Sughi,0.5736495,fineart +Albert J. Welti,0.5736257,fineart +Charles Mahoney,0.5735923,digipa-high-impact +Exekias,0.5734506,fineart +Felipe Seade,0.57342744,digipa-high-impact +Henriette Wyeth,0.57330644,digipa-high-impact +Harold Sandys Williamson,0.5443646,fineart +Eddie Campbell,0.57329535,digipa-high-impact +Gao Fenghan,0.5732926,fareast +Cynthia Sheppard,0.51099646,fineart +Henriette Grindat,0.573179,fineart +Yasutomo Oka,0.5731342,fareast +Celia Frances Bedford,0.57313216,fineart +Les Edwards,0.42068473,fineart +Edwin Deakin,0.5031717,fineart +Eero Saarinen,0.5725142,digipa-high-impact +Franciszek Smuglewicz,0.5722554,fineart +Doris Blair,0.57221186,fineart +Seb Mckinnon,0.51721895,digipa-med-impact +Gregorio Lazzarini,0.57204294,fineart +Gerard Sekoto,0.5719927,fineart +Francis Ernest Jackson,0.5506009,fineart +Simon Birch,0.57171595,digipa-high-impact +Bayard Wu,0.57171166,fineart +François Clouet,0.57162094,fineart +Christopher Wren,0.5715372,fineart +Evgeny Lushpin,0.5714827,special +Art Green,0.5714495,digipa-high-impact +Amy Judd,0.57142305,digipa-high-impact +Art Brenner,0.42619684,digipa-low-impact +Travis Louie,0.43916368,digipa-low-impact +James Jean,0.5457318,digipa-high-impact +Ewald Rübsamen,0.57083976,fineart +Donato Giancola,0.57052535,fineart +Carl Arnold Gonzenbach,0.5703996,fineart +Bastien Lecouffe-Deharme,0.5201288,fineart +Howard Chandler Christy,0.5702813,nudity +Dean Cornwell,0.56977296,fineart +Don Maitz,0.4743015,fineart +James Montgomery Flagg,0.56974065,fineart +Andreas Levers,0.42125136,digipa-low-impact +Edgar Schofield Baum,0.56965977,fineart +Alan Parry,0.5694952,digipa-high-impact +An Zhengwen,0.56942475,fareast +Alayna Lemmer,0.48293802,fineart +Edward Marshall Boehm,0.5530143,fineart +Henri Biva,0.54013556,nudity +Fiona Rae,0.4646715,digipa-low-impact +Elizabeth Jane Lloyd,0.5688463,digipa-high-impact +Franklin Carmichael,0.5687844,digipa-high-impact +Dionisius,0.56875896,fineart +Edwin Georgi,0.56868523,fineart +Jenny Saville,0.5686633,fineart +Ernest Hébert,0.56859314,fineart +Stephan Martiniere,0.56856346,digipa-high-impact +Huang Binhong,0.56841767,fineart +August Lemmer,0.5683548,fineart +Camille Bouvagne,0.5678048,fineart +Olga Skomorokhova,0.39401102,digipa-low-impact +Sacha Goldberger,0.5675477,digipa-high-impact +Hilda Annetta Walker,0.5675261,digipa-high-impact +Harvey Pratt,0.51314723,digipa-med-impact +Jean Bourdichon,0.5670543,fineart +Noriyoshi Ohrai,0.56690073,fineart +Kadir Nelson,0.5669006,n +Ilya Ostroukhov,0.5668801,fineart +Eugène Brands,0.56681967,fineart +Achille Leonardi,0.56674325,fineart +Franz Cižek,0.56670356,fineart +George Paul Chalmers,0.5665988,digipa-high-impact +Serge Marshennikov,0.5665971,digipa-high-impact +Mike Worrall,0.56641084,fineart +Dirck van Delen,0.5661764,fineart +Peter Andrew Jones,0.5661655,fineart +Rafael Albuquerque,0.56541103,fineart +Daniel Buren,0.5654043,fineart +Giuseppe Grisoni,0.5432699,fineart +George Fiddes Watt,0.55861616,fineart +Stan Lee,0.5651268,digipa-high-impact +Dorning Rasbotham,0.56511617,fineart +Albert Lynch,0.56497896,fineart +Lorenz Hideyoshi,0.56494075,fineart +Fenghua Zhong,0.56492203,fareast +Caroline Lucy Scott,0.49190843,digipa-med-impact +Victoria Crowe,0.5647996,digipa-high-impact +Hasegawa Settan,0.5647092,fareast +Dennis H. Farber,0.56453323,digipa-high-impact +Dick Bickenbach,0.5644289,fineart +Art Frahm,0.56439924,fineart +Edith Edmonds,0.5643151,fineart +Alfred Heber Hutty,0.56419206,fineart +Henry Tonks,0.56410825,fineart +Peter Howson,0.5640759,fineart +Albert Dorne,0.56395364,fineart +Arthur Adams,0.5639404,fineart +Bernt Tunold,0.56383425,digipa-high-impact +Gianluca Foli,0.5637317,digipa-high-impact +Vittorio Matteo Corcos,0.5636767,fineart +Béla Iványi-Grünwald,0.56355745,nudity +Feng Zhu,0.5634973,fineart +Sam Kieth,0.47251505,digipa-low-impact +Charles Crodel,0.5633834,fineart +Elsie Henderson,0.56310076,digipa-high-impact +George Earl Ortman,0.56295705,fineart +Tari Márk Dávid,0.562937,fineart +Betty Merken,0.56281745,digipa-high-impact +Cecile Walton,0.46672013,digipa-low-impact +Bracha L. Ettinger,0.56237936,fineart +Ken Fairclough,0.56230986,digipa-high-impact +Phil Koch,0.56224954,digipa-high-impact +George Pirie,0.56213045,digipa-high-impact +Chad Knight,0.56194013,digipa-high-impact +Béla Kondor,0.5427164,digipa-high-impact +Barclay Shaw,0.53689134,digipa-high-impact +Tim Hildebrandt,0.47194147,fineart +Hermann Rüdisühli,0.56104004,digipa-high-impact +Ian McQue,0.5342066,digipa-high-impact +Yanjun Cheng,0.5607171,fineart +Heinrich Hofmann,0.56060636,fineart +Henry Raleigh,0.5605958,fineart +Ernest Buckmaster,0.5605704,fineart +Charles Ricketts,0.56055415,fineart +Juergen Teller,0.56051147,digipa-high-impact +Auguste Mambour,0.5604873,fineart +Sean Yoro,0.5601486,digipa-high-impact +Sheilah Beckett,0.55995446,digipa-high-impact +Eugene Tertychnyi,0.5598978,fineart +Dr. Seuss,0.5597466,c +Adolf Wölfli,0.5372333,digipa-high-impact +Enrique Tábara,0.559323,fineart +Dionisio Baixeras Verdaguer,0.5590695,fineart +Aleksander Gierymski,0.5590013,fineart +Augustus Dunbier,0.55872476,fineart +Adolf Born,0.55848217,fineart +Chris Turnham,0.5584234,digipa-high-impact +James C Christensen,0.55837405,fineart +Daphne Fedarb,0.5582459,digipa-high-impact +Andre Kohn,0.5581832,special +Ron Mueck,0.5581811,nudity +Glenn Fabry,0.55786383,fineart +Elizabeth Polunin,0.5578102,digipa-high-impact +Charles S. Kaelin,0.5577954,fineart +Arthur Radebaugh,0.5577016,fineart +Ai Yazawa,0.55768114,fareast +Charles Roka,0.55762553,fineart +Ai Weiwei,0.5576034,digipa-high-impact +Dorothy Bradford,0.55760014,digipa-high-impact +Alfred Leslie,0.557555,fineart +Heinrich Herzig,0.5574423,fineart +Eliot Hodgkin,0.55740607,digipa-high-impact +Albert Kotin,0.55737317,fineart +Carlo Carlone,0.55729353,fineart +Chen Rong,0.5571221,fineart +Ikuo Hirayama,0.5570225,digipa-high-impact +Edward Corbett,0.55701995,nudity +Eugeniusz Żak,0.556925,nudity +Ettore Tito,0.556875,fineart +Helene Knoop,0.5567731,fineart +Amanda Sage,0.37731662,fareast +Annick Bouvattier,0.54647046,fineart +Harvey Dunn,0.55663586,fineart +Hans Sandreuter,0.5562575,digipa-high-impact +Ruan Jia,0.5398549,special +Anton Räderscheidt,0.55618906,fineart +Tyler Shields,0.4081434,digipa-low-impact +Darek Zabrocki,0.49975997,digipa-med-impact +Frank Montague Moore,0.5556432,fineart +Greg Staples,0.5555332,fineart +Endre Bálint,0.5553731,fineart +Augustus Vincent Tack,0.5136602,fineart +Marc Simonetti,0.48602036,fineart +Carlo Randanini,0.55493265,digipa-high-impact +Diego Dayer,0.5549119,fineart +Kelly Freas,0.55476534,fineart +Thomas Saliot,0.5139967,digipa-med-impact +Gijsbert d'Hondecoeter,0.55455256,fineart +Walter Kim,0.554521,digipa-high-impact +Francesco Cozza,0.5155097,digipa-med-impact +Bill Watterson,0.5542879,digipa-high-impact +Mark Keathley,0.4824056,fineart +Béni Ferenczy,0.55405354,digipa-high-impact +Amadou Opa Bathily,0.5536976,n +Giuseppe Antonio Petrini,0.55340284,fineart +Enzo Cucchi,0.55331933,digipa-high-impact +Adolf Schrödter,0.55316544,fineart +George Benjamin Luks,0.548566,fineart +Glenys Cour,0.55304,digipa-high-impact +Andrew Robertson,0.5529603,digipa-high-impact +Claude Rogers,0.55272067,digipa-high-impact +Alexandre Antigna,0.5526737,fineart +Aimé Barraud,0.55265915,digipa-high-impact +György Vastagh,0.55258965,fineart +Bruce Nauman,0.55257386,digipa-high-impact +Benjamin Block,0.55251944,digipa-high-impact +Gonzalo Endara Crow,0.552346,digipa-high-impact +Dirck de Bray,0.55221736,fineart +Gerald Kelley,0.5521059,digipa-high-impact +Dave Gibbons,0.5520954,digipa-high-impact +Béla Nagy Abodi,0.5520624,digipa-high-impact +Faith 47,0.5517006,digipa-high-impact +Anna Razumovskaya,0.5229187,digipa-med-impact +Archibald Robertson,0.55129635,digipa-high-impact +Louise Dahl-Wolfe,0.55120385,digipa-high-impact +Simon Bisley,0.55119276,digipa-high-impact +Eric Fischl,0.55107886,fineart +Hu Zaobin,0.5510481,fareast +Béla Pállik,0.5507963,digipa-high-impact +Eugene J. Martin,0.55078864,fineart +Friedrich Gauermann,0.55063415,fineart +Fritz Baumann,0.5341434,fineart +Michal Lisowski,0.5505639,fineart +Paolo Roversi,0.5503342,digipa-high-impact +Andrew Atroshenko,0.55009747,fineart +Gyula Derkovits,0.5500315,fineart +Hugh Adam Crawford,0.55000615,digipa-high-impact +Béla Apáti Abkarovics,0.5499799,digipa-high-impact +Paul Chadeisson,0.389151,digipa-low-impact +Aurél Bernáth,0.54968774,fineart +Albert Henry Krehbiel,0.54952574,fineart +Piet Hein Eek,0.54918796,digipa-high-impact +Yoshitaka Amano,0.5491855,fareast +Antonio Rotta,0.54909515,fineart +Józef Mehoffer,0.50760424,fineart +Donald Sherwood,0.5490415,digipa-high-impact +Catrin G Grosse,0.5489286,digipa-high-impact +Arthur Webster Emerson,0.5478842,fineart +Incarcerated Jerkfaces,0.5488423,digipa-high-impact +Emanuel Büchel,0.5487217,fineart +Andrew Loomis,0.54854584,fineart +Charles Hopkinson,0.54853606,fineart +Gabor Szikszai,0.5485203,digipa-high-impact +Archibald Standish Hartrick,0.54850936,digipa-high-impact +Aleksander Orłowski,0.546705,nudity +Hans Hinterreiter,0.5483628,fineart +Fred Williams,0.54544824,fineart +Fred A. Precht,0.5481606,fineart +Camille Souter,0.5213742,fineart +Emil Fuchs,0.54807395,fineart +Francesco Bonsignori,0.5478936,fineart +H. R. (Hans Ruedi) Giger,0.547799,fineart +Harriet Zeitlin,0.5477388,digipa-high-impact +Christian Jane Fergusson,0.5396168,fineart +Edward Kemble,0.5476892,fineart +Bernard Aubertin,0.5475396,fineart +Augustyn Mirys,0.5474162,fineart +Alejandro Burdisio,0.47482288,special +Erin Hanson,0.4343264,digipa-low-impact +Amalia Lindegren,0.5471987,digipa-high-impact +Alberto Seveso,0.47735062,fineart +Bartholomeus Strobel,0.54703736,fineart +Jim Davis,0.54703003,digipa-high-impact +Antony Gormley,0.54696125,digipa-high-impact +Charles Marion Russell,0.54696095,fineart +George B. Sutherland,0.5467901,fineart +Almada Negreiros,0.54670584,fineart +Edward Armitage,0.54358315,fineart +Bruno Walpoth,0.546167,digipa-high-impact +Richard Hamilton,0.5461275,nudity +Charles Harold Davis,0.5460415,digipa-high-impact +Fernand Verhaegen,0.54601514,fineart +Bernard Meninsky,0.5302034,digipa-high-impact +Fede Galizia,0.5456873,digipa-high-impact +Alfred Kelsner,0.5455753,nudity +Fritz Puempin,0.5452847,fineart +Alfred Charles Parker,0.54521024,fineart +Ahmed Yacoubi,0.544767,digipa-high-impact +Arthur B. Carles,0.54447794,fineart +Alice Prin,0.54435575,digipa-high-impact +Carl Gustaf Pilo,0.5443212,digipa-high-impact +Ross Tran,0.5259248,special +Hideyuki Kikuchi,0.544193,fareast +Art Fitzpatrick,0.49847245,fineart +Cherryl Fountain,0.5440454,fineart +Skottie Young,0.5440119,cartoon +NC Wyeth,0.54382974,digipa-high-impact +Rudolf Freund,0.5437342,fineart +Mort Kunstler,0.5433619,digipa-high-impact +Ben Goossens,0.53002644,digipa-high-impact +Andreas Rocha,0.49621177,special +Gérard Ernest Schneider,0.5429964,fineart +Francesco Filippini,0.5429598,digipa-high-impact +Alejandro Jodorowsky,0.5429065,digipa-high-impact +Friedrich Traffelet,0.5428817,fineart +Honor C. Appleton,0.5428735,digipa-high-impact +Jason A. Engle,0.542821,fineart +Henry Otto Wix,0.54271996,fineart +Gregory Manchess,0.54270375,fineart +Ann Stookey,0.54269934,digipa-high-impact +Henryk Rodakowski,0.542589,fineart +Albert Welti,0.5425134,digipa-high-impact +Gerard Houckgeest,0.5424413,digipa-high-impact +Dorothy Hood,0.54226196,digipa-high-impact +Frank Schoonover,0.51056194,fineart +Erlund Hudson,0.5422107,digipa-high-impact +Alexander Litovchenko,0.54210097,fineart +Sakai Hōitsu,0.5420294,digipa-high-impact +Benito Quinquela Martín,0.54194224,fineart +David Watson Stevenson,0.54191554,fineart +Ann Thetis Blacker,0.5416629,digipa-high-impact +Frank DuMond,0.51004076,digipa-med-impact +David Dougal Williams,0.5410126,digipa-high-impact +Robert Mcginnis,0.54098356,fineart +Ernest Briggs,0.5408636,fineart +Ferenc Joachim,0.5408625,fineart +Carlos Saenz de Tejada,0.47332364,digipa-low-impact +David Burton-Richardson,0.49659324,digipa-med-impact +Ernest Heber Thompson,0.54039246,digipa-high-impact +Albert Bertelsen,0.54038215,nudity +Giorgio Giulio Clovio,0.5403708,fineart +Eugene Leroy,0.54019785,digipa-high-impact +Anna Findlay,0.54018176,digipa-high-impact +Roy Gjertson,0.54012,digipa-high-impact +Charmion von Wiegand,0.5400893,fineart +Arnold Bronckhorst,0.526247,fineart +Boris Vallejo,0.487253,fineart +Adélaïde Victoire Hall,0.539939,fineart +Earl Norem,0.5398575,fineart +Sanford Kossin,0.53977877,digipa-high-impact +Aert de Gelder,0.519166,digipa-med-impact +Carl Eugen Keel,0.539739,digipa-high-impact +Francis Bourgeois,0.5397272,digipa-high-impact +Bojan Jevtic,0.41141546,fineart +Edward Avedisian,0.5393925,fineart +Gao Xiang,0.5392419,fareast +Charles Hinman,0.53911865,digipa-high-impact +Frits Van den Berghe,0.53896487,fineart +Carlo Martini,0.5384833,digipa-high-impact +Elina Karimova,0.5384318,digipa-high-impact +Anto Carte,0.4708289,digipa-low-impact +Andrey Yefimovich Martynov,0.537721,fineart +Frances Jetter,0.5376904,fineart +Yuri Ivanovich Pimenov,0.5342793,fineart +Gaston Anglade,0.537608,digipa-high-impact +Albert Swinden,0.5375844,fineart +Bob Byerley,0.5375774,fineart +A.B. Frost,0.5375025,fineart +Jaya Suberg,0.5372893,digipa-high-impact +Josh Keyes,0.53654516,digipa-high-impact +Juliana Huxtable,0.5364195,n +Everett Warner,0.53641814,digipa-high-impact +Hugh Kretschmer,0.45171157,digipa-low-impact +Arnold Blanch,0.535774,fineart +Ryan McGinley,0.53572595,digipa-high-impact +Alfons Karpiński,0.53564656,fineart +George Aleef,0.5355317,digipa-high-impact +Hal Foster,0.5351446,fineart +Stuart Immonen,0.53501946,digipa-high-impact +Craig Thompson,0.5346844,digipa-high-impact +Bartolomeo Vivarini,0.53465015,fineart +Hermann Feierabend,0.5346168,digipa-high-impact +Antonio Donghi,0.4610982,digipa-low-impact +Adonna Khare,0.4858036,digipa-med-impact +James Stokoe,0.5015107,digipa-med-impact +Agustín Fernández,0.53403986,fineart +Germán Londoño,0.5338712,fineart +Emmanuelle Moureaux,0.5335641,digipa-high-impact +Conrad Marca-Relli,0.5148334,digipa-med-impact +Gyula Batthyány,0.5332407,fineart +Francesco Raibolini,0.53314835,fineart +Apelles,0.5166026,fineart +Marat Latypov,0.45811993,fineart +Andrei Markin,0.5328752,fineart +Einar Hakonarson,0.5328311,digipa-high-impact +Beatrice Huntington,0.5328165,digipa-high-impact +Coppo di Marcovaldo,0.5327443,fineart +Gregorio Prestopino,0.53250784,fineart +A.D.M. Cooper,0.53244877,digipa-high-impact +Horatio McCulloch,0.53244334,digipa-high-impact +Wes Anderson,0.5318741,digipa-high-impact +Moebius,0.53178746,digipa-high-impact +Gerard Soest,0.53160626,fineart +Charles Ellison,0.53152347,digipa-high-impact +Wojciech Ostrycharz,0.5314213,fineart +Doug Chiang,0.5313724,fineart +Anne Savage,0.5310638,digipa-high-impact +Cor Melchers,0.53099334,fineart +Gordon Browne,0.5308195,digipa-high-impact +Augustus Earle,0.49196815,fineart +Carlos Francisco Chang Marín,0.5304734,fineart +Larry Elmore,0.53032553,fineart +Adolf Hölzel,0.5303149,fineart +David Ligare,0.5301894,fineart +Jan Luyken,0.52985555,fineart +Earle Bergey,0.5298525,fineart +David Ramsay Hay,0.52974963,digipa-high-impact +Alfred East,0.5296565,digipa-high-impact +A. R. Middleton Todd,0.50988734,fineart +Giorgio De Vincenzi,0.5291678,fineart +Hugh William Williams,0.5291014,digipa-high-impact +Erwin Bowien,0.52895796,digipa-high-impact +Victor Adame Minguez,0.5288686,fineart +Yoji Shinkawa,0.5287015,anime +Clara Weaver Parrish,0.5284487,digipa-high-impact +Albert Eckhout,0.5284096,fineart +Dorothy Coke,0.5282345,digipa-high-impact +Jerzy Duda-Gracz,0.5279943,digipa-high-impact +Byron Galvez,0.39178842,fareast +Alson S. Clark,0.5278568,digipa-high-impact +Adolf Ulric Wertmüller,0.5278296,digipa-high-impact +Bruce Coville,0.5277226,digipa-high-impact +Gong Kai,0.5276811,digipa-high-impact +Andréi Arinouchkine,0.52763486,digipa-high-impact +Florence Engelbach,0.5273161,digipa-high-impact +Brian Froud,0.5270276,fineart +Charles Thomson,0.5270127,digipa-high-impact +Bessie Wheeler,0.5269164,digipa-high-impact +Anton Lehmden,0.5268611,fineart +Emilia Wilk,0.5264961,fineart +Carl Eytel,0.52646196,digipa-high-impact +Alfred Janes,0.5264481,digipa-high-impact +Julie Bell,0.49962538,fineart +Eugenio de Arriba,0.52613926,digipa-high-impact +Samuel and Joseph Newsom,0.52595663,digipa-high-impact +Hans Falk,0.52588874,digipa-high-impact +Guillermo del Toro,0.52565175,digipa-high-impact +Félix Arauz,0.52555984,digipa-high-impact +Gyula Basch,0.52524436,digipa-high-impact +Haroon Mirza,0.5252279,digipa-high-impact +Du Jin,0.5249934,digipa-med-impact +Harry Shoulberg,0.5249456,digipa-med-impact +Arie Smit,0.5249027,fineart +Ahmed Karahisari,0.4259451,digipa-low-impact +Brian and Wendy Froud,0.5246335,fineart +E. William Gollings,0.52461207,digipa-med-impact +Bo Bartlett,0.51341593,digipa-med-impact +Hans Burgkmair,0.52416867,digipa-med-impact +David Macaulay,0.5241233,digipa-med-impact +Benedetto Caliari,0.52370214,digipa-med-impact +Eliott Lilly,0.5235398,digipa-med-impact +Vincent Tanguay,0.48578292,digipa-med-impact +Ada Hill Walker,0.52207166,fineart +Christopher Wood,0.49360397,digipa-med-impact +Kris Kuksi,0.43938053,digipa-low-impact +Chen Yifei,0.5217867,fineart +Margaux Valonia,0.5217782,digipa-med-impact +Antoni Pitxot,0.40582713,digipa-low-impact +Jhonen Vasquez,0.5216471,digipa-med-impact +Emilio Grau Sala,0.52156484,fineart +Henry B. Christian,0.52153796,fineart +Jacques Nathan-Garamond,0.52144086,digipa-med-impact +Eddie Mendoza,0.4949638,digipa-med-impact +Grzegorz Rutkowski,0.48906532,special +Beeple,0.40085253,digipa-low-impact +Giorgio Cavallon,0.5209209,digipa-med-impact +Godfrey Blow,0.52062386,digipa-med-impact +Gabriel Dawe,0.5204431,fineart +Emile Lahner,0.5202367,digipa-med-impact +Steve Dillon,0.5201676,digipa-med-impact +Lee Quinones,0.4626683,digipa-low-impact +Hale Woodruff,0.52000225,digipa-med-impact +Tom Hammick,0.5032626,digipa-med-impact +Hamilton Sloan,0.5197798,digipa-med-impact +Caesar Andrade Faini,0.51971483,digipa-med-impact +Sam Spratt,0.48991,digipa-med-impact +Chris Cold,0.4753577,fineart +Alejandro Obregón,0.5190562,digipa-med-impact +Dan Flavin,0.51901346,digipa-med-impact +Arthur Sarnoff,0.5189428,fineart +Elenore Abbott,0.5187141,digipa-med-impact +Andrea Kowch,0.51822996,digipa-med-impact +Demetrios Farmakopoulos,0.5181248,digipa-med-impact +Alexis Grimou,0.41958088,digipa-low-impact +Lesley Vance,0.5177536,digipa-med-impact +Gyula Aggházy,0.517747,fineart +Georgina Hunt,0.46105456,digipa-low-impact +Christian W. Staudinger,0.4684662,digipa-low-impact +Abraham Begeyn,0.5172538,digipa-med-impact +Charles Mozley,0.5171356,digipa-med-impact +Elias Ravanetti,0.38719344,digipa-low-impact +Herman van Swanevelt,0.5168748,digipa-med-impact +David Paton,0.4842217,digipa-med-impact +Hans Werner Schmidt,0.51671976,digipa-med-impact +Bob Ross,0.51628315,fineart +Sou Fujimoto,0.5162528,fareast +Balcomb Greene,0.5162045,digipa-med-impact +Glen Angus,0.51609933,digipa-med-impact +Buckminster Fuller,0.51607454,digipa-med-impact +Andrei Ryabushkin,0.5158933,fineart +Almeida Júnior,0.515856,digipa-med-impact +Tim White,0.4182697,digipa-low-impact +Hans Beat Wieland,0.51553553,digipa-med-impact +Jakub Różalski,0.5154904,digipa-med-impact +John Whitcomb,0.51523805,digipa-med-impact +Dorothy King,0.5150925,digipa-med-impact +Richard S. Johnson,0.51500344,fineart +Aniello Falcone,0.51475304,digipa-med-impact +Henning Jakob Henrik Lund,0.5147134,c +Robert M Cunningham,0.5144858,digipa-med-impact +Nick Knight,0.51447505,digipa-med-impact +David Chipperfield,0.51424,digipa-med-impact +Bartolomeo Cesi,0.5136737,digipa-med-impact +Bettina Heinen-Ayech,0.51334465,digipa-med-impact +Annabel Kidston,0.51327646,digipa-med-impact +Charles Schridde,0.51308405,digipa-med-impact +Samuel Earp,0.51305825,digipa-med-impact +Eugene Montgomery,0.5128343,digipa-med-impact +Alfred Parsons,0.5127445,digipa-med-impact +Anton Möller,0.5127209,digipa-med-impact +Craig Davison,0.499598,special +Cricorps Grégoire,0.51267076,fineart +Celia Fiennes,0.51266706,digipa-med-impact +Raymond Swanland,0.41350424,fineart +Howard Knotts,0.5122062,digipa-med-impact +Helmut Federle,0.51201206,digipa-med-impact +Tyler Edlin,0.44028252,digipa-high-impact +Elwood H. Smith,0.5119027,digipa-med-impact +Ralph Horsley,0.51142794,fineart +Alexander Ivanov,0.4539051,digipa-low-impact +Cedric Peyravernay,0.4200587,digipa-low-impact +Annabel Eyres,0.51136214,digipa-med-impact +Zack Snyder,0.51129746,digipa-med-impact +Gentile Bellini,0.511102,digipa-med-impact +Giovanni Pelliccioli,0.4868688,digipa-med-impact +Fikret Muallâ Saygı,0.510694,digipa-med-impact +Bauhaus,0.43454266,digipa-low-impact +Charles Williams,0.510406,digipa-med-impact +Georg Arnold-Graboné,0.5103381,digipa-med-impact +Fedot Sychkov,0.47935224,digipa-med-impact +Alberto Magnelli,0.5103212,digipa-med-impact +Aloysius O'Kelly,0.5102891,digipa-med-impact +Alexander McQueen,0.5101986,digipa-med-impact +Cam Sykes,0.510071,digipa-med-impact +George Lucas,0.510038,digipa-med-impact +Eglon van der Neer,0.5099339,digipa-med-impact +Christian August Lorentzen,0.50989646,digipa-med-impact +Eleanor Best,0.50966686,digipa-med-impact +Terry Redlin,0.474244,fineart +Ken Kelly,0.4304738,fineart +David Eugene Henry,0.48173362,fineart +Shin Jeongho,0.5092497,fareast +Flora Borsi,0.5091922,digipa-med-impact +Berndnaut Smilde,0.50864,digipa-med-impact +Art of Brom,0.45828784,fineart +Ernő Tibor,0.50851977,digipa-med-impact +Ancell Stronach,0.5084514,digipa-med-impact +Helen Thomas Dranga,0.45412368,digipa-low-impact +Anita Malfatti,0.5080986,digipa-med-impact +Arnold Brügger,0.5080749,digipa-med-impact +Edward Ben Avram,0.50778764,digipa-med-impact +Antonio Ciseri,0.5073538,fineart +Alyssa Monks,0.50734174,digipa-med-impact +Chen Zhen,0.5071876,digipa-med-impact +Francis Helps,0.50707847,digipa-med-impact +Georg Karl Pfahler,0.50700235,digipa-med-impact +Henry Woods,0.506811,digipa-med-impact +Barbara Greg,0.50674164,digipa-med-impact +Guan Daosheng,0.506712,fareast +Guy Billout,0.5064906,digipa-med-impact +Basuki Abdullah,0.50613165,digipa-med-impact +Thomas Visscher,0.5059943,digipa-med-impact +Edward Simmons,0.50598735,digipa-med-impact +Arabella Rankin,0.50572735,digipa-med-impact +Lady Pink,0.5056634,digipa-high-impact +Christopher Williams,0.5052288,digipa-med-impact +Fuyuko Matsui,0.5051116,fareast +Edward Baird,0.5049874,digipa-med-impact +Georges Stein,0.5049069,digipa-med-impact +Alex Alemany,0.43974748,digipa-low-impact +Emanuel Schongut,0.5047326,digipa-med-impact +Hans Bol,0.5045265,digipa-med-impact +Kurzgesagt,0.5043725,digipa-med-impact +Harald Giersing,0.50410193,digipa-med-impact +Antonín Slavíček,0.5040368,fineart +Carl Rahl,0.5040115,digipa-med-impact +Etienne Delessert,0.5037818,fineart +Americo Makk,0.5034161,digipa-med-impact +Fernand Pelez,0.5027561,digipa-med-impact +Alexey Merinov,0.4469615,digipa-low-impact +Caspar Netscher,0.5019529,digipa-med-impact +Walt Disney,0.50178146,digipa-med-impact +Qian Xuan,0.50150526,fareast +Geoffrey Dyer,0.50120556,digipa-med-impact +Andre Norton,0.5007602,digipa-med-impact +Daphne McClure,0.5007391,digipa-med-impact +Dieric Bouts,0.5005882,fineart +Aguri Uchida,0.5005107,fareast +Hugo Scheiber,0.50004864,digipa-med-impact +Kenne Gregoire,0.46421963,digipa-low-impact +Wolfgang Tillmans,0.4999767,fineart +Carl-Henning Pedersen,0.4998986,digipa-med-impact +Alison Debenham,0.4998683,digipa-med-impact +Eppo Doeve,0.49975222,digipa-med-impact +Christen Købke,0.49961317,digipa-med-impact +Aron Demetz,0.49895018,digipa-med-impact +Alesso Baldovinetti,0.49849576,digipa-med-impact +Jimmy Lawlor,0.4475271,fineart +Carl Walter Liner,0.49826378,fineart +Gwenny Griffiths,0.45598924,digipa-low-impact +David Cooke Gibson,0.4976222,digipa-med-impact +Howard Butterworth,0.4974621,digipa-med-impact +Bob Thompson,0.49743804,fineart +Enguerrand Quarton,0.49711192,fineart +Abdel Hadi Al Gazzar,0.49631482,digipa-med-impact +Gu Zhengyi,0.49629828,digipa-med-impact +Aleksander Kotsis,0.4953621,digipa-med-impact +Alexander Sharpe Ross,0.49519226,digipa-med-impact +Carlos Enríquez Gómez,0.49494863,digipa-med-impact +Abed Abdi,0.4948855,digipa-med-impact +Elaine Duillo,0.49474388,digipa-med-impact +Anne Said,0.49473995,digipa-med-impact +Istvan Banyai,0.4947369,digipa-med-impact +Bouchta El Hayani,0.49455142,digipa-med-impact +Chinwe Chukwuogo-Roy,0.49445248,n +George Claessen,0.49412063,digipa-med-impact +Axel Törneman,0.49401706,digipa-med-impact +Avigdor Arikha,0.49384058,digipa-med-impact +Gloria Stoll Karn,0.4937976,digipa-med-impact +Alfredo Volpi,0.49367586,digipa-med-impact +Raffaello Sanizo,0.49365884,digipa-med-impact +Jeff Easley,0.49344411,digipa-med-impact +Aileen Eagleton,0.49318358,digipa-med-impact +Gaetano Sabatini,0.49307147,digipa-med-impact +Bertalan Pór,0.4930132,digipa-med-impact +Alfred Jensen,0.49291304,digipa-med-impact +Huang Guangjian,0.49286693,fareast +Emil Ferris,0.49282396,digipa-med-impact +Derek Chittock,0.492694,digipa-med-impact +Alonso Vázquez,0.49205148,digipa-med-impact +Kelly Sue Deconnick,0.4919476,digipa-med-impact +Clive Madgwick,0.4749857,fineart +Edward George Handel Lucas,0.49166748,digipa-med-impact +Dorothea Braby,0.49161923,digipa-med-impact +Sangyeob Park,0.49150884,fareast +Heinz Edelman,0.49140438,digipa-med-impact +Mark Seliger,0.4912073,digipa-med-impact +Camilo Egas,0.4586727,digipa-low-impact +Craig Mullins,0.49085408,fineart +Dong Kingman,0.49063343,digipa-med-impact +Douglas Robertson Bisset,0.49031347,digipa-med-impact +Blek Le Rat,0.49008566,digipa-med-impact +Anton Ažbe,0.48984748,fineart +Olafur Eliasson,0.48971075,digipa-med-impact +Elinor Proby Adams,0.48967826,digipa-med-impact +Cándido López,0.48915705,digipa-med-impact +D. Howard Hitchcock,0.48902267,digipa-med-impact +Cheng Jiasui,0.48889247,fareast +Jean Nouvel,0.4888183,digipa-med-impact +Bill Gekas,0.48848945,digipa-med-impact +Hermione Hammond,0.48845994,digipa-med-impact +Fernando Gerassi,0.48841453,digipa-med-impact +Frank Barrington Craig,0.4883762,digipa-med-impact +A. B. Jackson,0.4883623,digipa-med-impact +Bernie D’Andrea,0.48813275,digipa-med-impact +Clarice Beckett,0.487809,digipa-med-impact +Dosso Dossi,0.48775777,digipa-med-impact +Donald Roller Wilson,0.48767656,digipa-med-impact +Ernest William Christmas,0.4876317,digipa-med-impact +Aleksandr Gerasimov,0.48736423,digipa-med-impact +Edward Clark,0.48703307,digipa-med-impact +Georg Schrimpf,0.48697302,digipa-med-impact +John Wilhelm,0.48696536,digipa-med-impact +Aries Moross,0.4863676,digipa-med-impact +Bill Lewis,0.48635158,digipa-med-impact +Huang Ji,0.48611963,fareast +F. Scott Hess,0.43634564,fineart +Gao Qipei,0.4860631,fareast +Albert Tucker,0.4854299,digipa-med-impact +Barbara Balmer,0.48528513,fineart +Anne Ryan,0.48511976,digipa-med-impact +Helen Edwards,0.48484707,digipa-med-impact +Alexander Bogen,0.48421195,digipa-med-impact +David Annand,0.48418126,digipa-med-impact +Du Qiong,0.48414314,fareast +Fred Cress,0.4837878,digipa-med-impact +David B. Mattingly,0.48370445,digipa-med-impact +Hristofor Žefarović,0.4837008,digipa-med-impact +Wim Wenders,0.44484183,digipa-low-impact +Alexander Fedosav,0.48360944,digipa-med-impact +Anne Rigney,0.48357943,digipa-med-impact +Bertalan Karlovszky,0.48338628,digipa-med-impact +George Frederick Harris,0.4833259,fineart +Toshiharu Mizutani,0.48315164,fareast +David McClellan,0.39739317,digipa-low-impact +Eugeen Van Mieghem,0.48270774,digipa-med-impact +Alexei Harlamoff,0.48255378,digipa-med-impact +Jeff Legg,0.48249072,digipa-med-impact +Elizabeth Murray,0.48227608,digipa-med-impact +Hugo Heyrman,0.48213717,digipa-med-impact +Adrian Paul Allinson,0.48211843,digipa-med-impact +Altoon Sultan,0.4820177,digipa-med-impact +Alice Mason,0.48188528,fareast +Harriet Powers,0.48181778,digipa-med-impact +Aaron Bohrod,0.48175076,digipa-med-impact +Chris Saunders,0.41429797,digipa-low-impact +Clara Miller Burd,0.47797233,digipa-med-impact +David G. Sorensen,0.38101727,digipa-low-impact +Iwan Baan,0.4806739,digipa-med-impact +Anatoly Metlan,0.48020265,digipa-med-impact +Alfons von Czibulka,0.4801954,digipa-med-impact +Amedee Ozenfant,0.47950014,digipa-med-impact +Valerie Hegarty,0.47947168,digipa-med-impact +Hugo Anton Fisher,0.4793551,digipa-med-impact +Antonio Roybal,0.4792729,digipa-med-impact +Cui Zizhong,0.47902682,fareast +F Scott Hess,0.42582104,fineart +Julien Delval,0.47888556,digipa-med-impact +Marcin Jakubowski,0.4788583,digipa-med-impact +Anne Stokes,0.4786997,digipa-med-impact +David Palumbo,0.47632077,fineart +Hallsteinn Sigurðsson,0.47858906,digipa-med-impact +Mike Campau,0.47850558,digipa-med-impact +Giuseppe Avanzi,0.47846943,digipa-med-impact +Harry Morley,0.47836518,digipa-med-impact +Constance-Anne Parker,0.47832203,digipa-med-impact +Albert Keller,0.47825447,digipa-med-impact +Daniel Chodowiecki,0.47825167,digipa-med-impact +Alasdair Grant Taylor,0.47802624,digipa-med-impact +Maria Pascual Alberich,0.4779718,fineart +Rebeca Saray,0.41697127,digipa-low-impact +Ernő Bánk,0.47753686,digipa-med-impact +Shaddy Safadi,0.47724134,digipa-med-impact +André Castro,0.4771826,digipa-med-impact +Amiet Cuno,0.41975892,digipa-low-impact +Adi Granov,0.40670198,fineart +Allen Williams,0.47675848,digipa-med-impact +Anna Haifisch,0.47672725,digipa-med-impact +Clovis Trouille,0.47669724,digipa-med-impact +Jane Graverol,0.47655866,digipa-med-impact +Conroy Maddox,0.47645602,digipa-med-impact +Božidar Jakac,0.4763106,digipa-med-impact +George Morrison,0.47533786,digipa-med-impact +Douglas Bourgeois,0.47527707,digipa-med-impact +Cao Zhibai,0.47476804,fareast +Bradley Walker Tomlin,0.47462896,digipa-low-impact +Dave Dorman,0.46852386,fineart +Stevan Dohanos,0.47452107,fineart +John Howe,0.44144905,fineart +Fanny McIan,0.47406268,digipa-low-impact +Bholekar Srihari,0.47387534,digipa-low-impact +Giovanni Lanfranco,0.4737344,digipa-low-impact +Fred Marcellino,0.47346023,digipa-low-impact +Clyde Caldwell,0.47305286,fineart +Haukur Halldórsson,0.47275954,digipa-low-impact +Huang Gongwang,0.47269204,fareast +Brothers Grimm,0.47249007,digipa-low-impact +Ollie Hoff,0.47240657,digipa-low-impact +RHADS,0.4722166,digipa-low-impact +Constance Gordon-Cumming,0.47219282,digipa-low-impact +Anne Mccaffrey,0.4719924,digipa-low-impact +Henry Heerup,0.47190166,digipa-low-impact +Adrian Smith,0.4716923,digipa-high-impact +Harold Elliott,0.4714101,digipa-low-impact +Eric Peterson,0.47106332,digipa-low-impact +David Garner,0.47106326,digipa-low-impact +Edward Hicks,0.4708863,digipa-low-impact +Alfred Krupa,0.47052455,digipa-low-impact +Breyten Breytenbach,0.4699338,digipa-low-impact +Douglas Shuler,0.4695691,digipa-low-impact +Elaine Hamilton,0.46941522,digipa-low-impact +Kapwani Kiwanga,0.46917036,digipa-low-impact +Dan Scott,0.46897763,digipa-low-impact +Allan Brooks,0.46882123,digipa-low-impact +Ian Fairweather,0.46878594,digipa-low-impact +Arlington Nelson Lindenmuth,0.4683814,digipa-low-impact +Russell Ayto,0.4681503,digipa-low-impact +Allan Linder,0.46812692,digipa-low-impact +Bohumil Kubista,0.4679809,digipa-low-impact +Christopher Jin Baron,0.4677839,digipa-low-impact +Eero Snellman,0.46777654,digipa-low-impact +Christabel Dennison,0.4677633,digipa-low-impact +Amelia Peláez,0.46764764,digipa-low-impact +James Gurney,0.46740666,digipa-low-impact +Carles Delclaux Is,0.46734855,digipa-low-impact +George Papazov,0.42420334,digipa-low-impact +Mark Brooks,0.4672415,fineart +Anne Dunn,0.46722376,digipa-low-impact +Klaus Wittmann,0.4670704,fineart +Arvid Nyholm,0.46697336,digipa-low-impact +Georg Scholz,0.46674117,digipa-low-impact +David Spriggs,0.46671993,digipa-low-impact +Ernest Morgan,0.4665036,digipa-low-impact +Ella Guru,0.46619284,digipa-low-impact +Helen Berman,0.46614346,digipa-low-impact +Gen Paul,0.4658785,digipa-low-impact +Auseklis Ozols,0.46569023,digipa-low-impact +Amelia Robertson Hill,0.4654411,fineart +Jim Lee,0.46544096,digipa-low-impact +Anson Maddocks,0.46539295,digipa-low-impact +Chen Hong,0.46516004,fareast +Haddon Sundblom,0.46490777,digipa-low-impact +Eva Švankmajerová,0.46454152,digipa-low-impact +Antonio Cavallucci,0.4645282,digipa-low-impact +Herve Groussin,0.40050638,digipa-low-impact +Gwen Barnard,0.46400994,digipa-low-impact +Grace English,0.4638674,digipa-low-impact +Carl Critchlow,0.4636,digipa-low-impact +Ayshia Taşkın,0.463412,digipa-low-impact +Alison Watt,0.43141022,digipa-low-impact +Andre de Krayewski,0.4628024,digipa-low-impact +Hamish MacDonald,0.462645,digipa-low-impact +Ni Chuanjing,0.46254826,fareast +Frank Mason,0.46254665,digipa-low-impact +Steve Henderson,0.43113405,fineart +Eileen Aldridge,0.46210572,digipa-low-impact +Brad Rigney,0.28446302,digipa-low-impact +Ching Yeh,0.46177,fareast +Bertram Brooker,0.46176457,digipa-low-impact +Henry Bright,0.46150023,digipa-low-impact +Claire Dalby,0.46117848,digipa-low-impact +Brian Despain,0.41538632,digipa-low-impact +Anna Maria Barbara Abesch,0.4611045,digipa-low-impact +Bernardo Daddi,0.46088326,digipa-low-impact +Abraham Mintchine,0.46088243,digipa-high-impact +Alexander Carse,0.46078917,digipa-low-impact +Doc Hammer,0.46075988,digipa-low-impact +Yuumei,0.46072406,digipa-low-impact +Teophilus Tetteh,0.46064255,n +Bess Hamiti,0.46062252,digipa-low-impact +Ceferí Olivé,0.46058378,digipa-low-impact +Enrique Grau,0.46046937,digipa-low-impact +Eleanor Hughes,0.46007007,digipa-low-impact +Elizabeth Charleston,0.46001568,digipa-low-impact +Félix Ziem,0.45987016,digipa-low-impact +Eugeniusz Zak,0.45985222,digipa-low-impact +Dain Yoon,0.45977795,fareast +Gong Xian,0.4595083,digipa-low-impact +Flavia Blois,0.45950204,digipa-low-impact +Frederik Vermehren,0.45949826,digipa-low-impact +Gang Se-hwang,0.45937777,digipa-low-impact +Bjørn Wiinblad,0.45934483,digipa-low-impact +Alex Horley-Orlandelli,0.42623433,digipa-low-impact +Dr. Atl,0.459287,digipa-low-impact +Hu Jieqing,0.45889485,fareast +Amédée Ozenfant,0.4585215,digipa-low-impact +Warren Ellis,0.4584044,digipa-low-impact +Helen Dahm,0.45804346,digipa-low-impact +Anne Geddes,0.45785287,digipa-low-impact +Bikash Bhattacharjee,0.45775396,digipa-low-impact +Phil Foglio,0.457582,digipa-low-impact +Evelyn Abelson,0.4574563,digipa-low-impact +Alan Moore,0.4573369,digipa-low-impact +Josh Kao,0.45725146,fareast +Bertil Nilsson,0.45724383,digipa-low-impact +Hristofor Zhefarovich,0.457089,fineart +Edward Bailey,0.45659882,digipa-low-impact +Christopher Moeller,0.45648077,digipa-low-impact +Dóra Keresztes,0.4558745,fineart +Cory Arcangel,0.4558071,digipa-low-impact +Aleksander Kobzdej,0.45552525,digipa-low-impact +Tim Burton,0.45541722,digipa-high-impact +Chen Jiru,0.4553378,fareast +George Passantino,0.4552104,digipa-low-impact +Fuller Potter,0.4552072,digipa-low-impact +Warwick Globe,0.45516664,digipa-low-impact +Heinz Anger,0.45466962,digipa-low-impact +Elias Goldberg,0.45416242,digipa-low-impact +tokyogenso,0.45406622,fareast +Zeen Chin,0.45404464,digipa-low-impact +Albert Koetsier,0.45385844,fineart +Giuseppe Camuncoli,0.45377725,digipa-low-impact +Elsie Vera Cole,0.45377362,digipa-low-impact +Andreas Franke,0.4300047,digipa-low-impact +Constantine Andreou,0.4533816,digipa-low-impact +Elisabeth Collins,0.45337808,digipa-low-impact +Ted Nasmith,0.45302224,fineart +Antônio Parreiras,0.45269623,digipa-low-impact +Gwilym Prichard,0.45256525,digipa-low-impact +Fang Congyi,0.45240825,fareast +Huang Ding,0.45233482,fareast +Hans von Bartels,0.45200723,digipa-low-impact +Peter Elson,0.4121406,fineart +Fan Kuan,0.4513034,digipa-low-impact +Dean Roger,0.45112592,digipa-low-impact +Bernat Sanjuan,0.45074993,fareast +Fletcher Martin,0.45055175,digipa-low-impact +Gentile Tondino,0.45043385,digipa-low-impact +Ei-Q,0.45038772,digipa-low-impact +Chen Lin,0.45035738,fareast +Ted Wallace,0.4500007,digipa-low-impact +"Cornelisz Hendriksz Vroom, the Younger",0.4499252,digipa-low-impact +Alpo Jaakola,0.44981295,digipa-low-impact +Clark Voorhees,0.4495309,digipa-low-impact +Cleve Gray,0.449188,digipa-low-impact +Wolf Kahn,0.4489858,digipa-low-impact +Choi Buk,0.44892842,fareast +Frank Tinsley,0.4480373,digipa-low-impact +George Bell,0.44779524,digipa-low-impact +Fiona Stephenson,0.44761062,fineart +Carlos Trillo Name,0.4470371,digipa-low-impact +Jamie McKelvie,0.44696707,digipa-low-impact +Dennis Flanders,0.44673377,digipa-low-impact +Dulah Marie Evans,0.44662604,digipa-low-impact +Hans Schwarz,0.4463275,digipa-low-impact +Steve McCurry,0.44620228,digipa-low-impact +Bedwyr Williams,0.44616276,digipa-low-impact +Anton Graff,0.38569996,digipa-low-impact +Leticia Gillett,0.44578317,digipa-low-impact +Rafał Olbiński,0.44561762,digipa-low-impact +Artgerm,0.44555497,fineart +Adrienn Henczné Deák,0.445518,digipa-low-impact +Gu Hongzhong,0.4454906,fareast +Matt Groening,0.44518438,digipa-low-impact +Sue Bryce,0.4447164,digipa-low-impact +Armin Baumgarten,0.444061,digipa-low-impact +Araceli Gilbert,0.44399196,digipa-low-impact +Carey Morris,0.44388965,digipa-low-impact +Ignat Bednarik,0.4438085,digipa-low-impact +Frank Buchser,0.44373792,digipa-low-impact +Ben Zoeller,0.44368798,digipa-low-impact +Adam Szentpétery,0.4434548,fineart +Gene Davis,0.44343877,digipa-low-impact +Fei Danxu,0.4433627,fareast +Andrei Kolkoutine,0.44328922,digipa-low-impact +Bruce Onobrakpeya,0.42588046,n +Christoph Amberger,0.38912287,digipa-low-impact +"Fred Mitchell,",0.4432277,digipa-low-impact +Klaus Burgle,0.44295216,digipa-low-impact +Carl Hoppe,0.44270635,digipa-low-impact +Caroline Gotch,0.44263047,digipa-low-impact +Hans Mertens,0.44260004,digipa-low-impact +Mandy Disher,0.44219893,fineart +Sarah Lucas,0.4420507,digipa-low-impact +Sydney Edmunds,0.44198513,digipa-low-impact +Amos Ferguson,0.4418735,digipa-low-impact +Alton Tobey,0.4416385,digipa-low-impact +Clifford Ross,0.44139367,digipa-low-impact +Henric Trenk,0.4412782,digipa-low-impact +Claire Hummel,0.44119984,digipa-low-impact +Norman Foster,0.4411899,digipa-low-impact +Carmen Saldana,0.44076762,digipa-low-impact +Michael Whelan,0.4372847,digipa-low-impact +Carlos Berlanga,0.440354,digipa-low-impact +Gilles Beloeil,0.43997732,digipa-low-impact +Ashley Wood,0.4398396,digipa-low-impact +David Allan,0.43969798,digipa-low-impact +Mark Lovett,0.43922082,digipa-low-impact +Jed Henry,0.43882954,digipa-low-impact +Adam Bruce Thomson,0.43847767,digipa-low-impact +Horst Antes,0.4384303,digipa-low-impact +Fritz Glarner,0.43787453,digipa-low-impact +Harold McCauley,0.43760818,digipa-low-impact +Estuardo Maldonado,0.437594,digipa-low-impact +Dai Jin,0.4375449,fareast +Fabien Charuau,0.43688047,digipa-low-impact +Chica Macnab,0.4365166,digipa-low-impact +Jim Burns,0.3975072,digipa-low-impact +Santiago Calatrava,0.43651623,digipa-low-impact +Robert Maguire,0.40926617,digipa-low-impact +Cliff Childs,0.43611953,digipa-low-impact +Charles Martin,0.43582463,fareast +Elbridge Ayer Burbank,0.43572164,digipa-low-impact +Anita Kunz,0.4356005,digipa-low-impact +Colin Geller,0.43559563,digipa-low-impact +Allen Tupper True,0.43556124,digipa-low-impact +Jef Wu,0.43555313,digipa-low-impact +Jon McCoy,0.4147122,digipa-low-impact +Cedric Seaut,0.43521535,digipa-low-impact +Emily Shanks,0.43519047,digipa-low-impact +Andrew Whem,0.43512022,digipa-low-impact +Ibrahim Kodra,0.43471518,digipa-low-impact +Harrington Mann,0.4345901,digipa-low-impact +Jerry Siegel,0.43458986,digipa-low-impact +Howard Kanovitz,0.4345178,digipa-low-impact +Cicely Hey,0.43449926,digipa-low-impact +Ben Thompson,0.43436068,digipa-low-impact +Joe Bowler,0.43413073,digipa-low-impact +Lori Earley,0.43389612,digipa-low-impact +Arent Arentsz,0.43373522,digipa-low-impact +David Bailly,0.43371305,digipa-low-impact +Hans Arnold,0.4335214,digipa-low-impact +Constance Copeman,0.4334836,digipa-low-impact +Brent Heighton,0.4333118,fineart +Eric Taylor,0.43312082,digipa-low-impact +Aleksander Gine,0.4326849,digipa-low-impact +Alexander Johnston,0.4326589,digipa-low-impact +David Park,0.43235332,digipa-low-impact +Balázs Diószegi,0.432244,digipa-low-impact +Ed Binkley,0.43222216,digipa-low-impact +Eric Dinyer,0.4321258,digipa-low-impact +Susan Luo,0.43198025,fareast +Cedric Seaut (Keos Masons),0.4317356,digipa-low-impact +Lorena Alvarez Gómez,0.431683,digipa-low-impact +Fred Ludekens,0.431662,digipa-low-impact +David Begbie,0.4316218,digipa-low-impact +Ai Xuan,0.43150818,fareast +Felix-Kelly,0.43132153,digipa-low-impact +Antonín Chittussi,0.431248,digipa-low-impact +Ammi Phillips,0.43095884,digipa-low-impact +Elke Vogelsang,0.43092483,digipa-low-impact +Fathi Hassan,0.43090487,digipa-low-impact +Angela Sung,0.391746,fareast +Clément Serveau,0.43050706,digipa-low-impact +Dong Yuan,0.4303865,fareast +Hew Lorimer,0.43035403,digipa-low-impact +David Finch,0.29487437,digipa-low-impact +Bill Durgin,0.4300932,digipa-low-impact +Alexander Robertson,0.4300743,digipa-low-impact diff --git a/artists-to-study/ats/thumbnail/dog/anime/anime_Adam Hughes_0.60854626_1470.jpg b/artists-to-study/ats/thumbnail/dog/anime/anime_Adam Hughes_0.60854626_1470.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fcfc8f942418747ae8069740800d57a58ebb69dc --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/anime/anime_Adam Hughes_0.60854626_1470.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:96fe308fe4068ec9095d252b567d7921f2f20a168e9b0c5aad3b9470f3808352 +size 16865 diff --git a/artists-to-study/ats/thumbnail/dog/anime/anime_Akira Toriyama_0.6635002_0902.jpg b/artists-to-study/ats/thumbnail/dog/anime/anime_Akira Toriyama_0.6635002_0902.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6a111e598d7797c1145871ea7e701cc4d7c7f885 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/anime/anime_Akira Toriyama_0.6635002_0902.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8fa6ec9e6ef0699654c183babafb64906100efd2a763fd33f68c1a59076ca223 +size 19027 diff --git a/artists-to-study/ats/thumbnail/dog/anime/anime_Apollonia Saintclair_0.7718383_0192.jpg b/artists-to-study/ats/thumbnail/dog/anime/anime_Apollonia Saintclair_0.7718383_0192.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3b92e00e6cd979274f8b650ffaf20e7da797bcb8 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/anime/anime_Apollonia Saintclair_0.7718383_0192.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:099dc68c46f41f4beb7db617e60c8265a1c2fb1c6eaff0de9e46473225300c80 +size 21453 diff --git a/artists-to-study/ats/thumbnail/dog/anime/anime_Armin Hansen_0.59669334_1581.jpg b/artists-to-study/ats/thumbnail/dog/anime/anime_Armin Hansen_0.59669334_1581.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8f4397677ddb080740b3faaa1896cf91ce2d15bb --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/anime/anime_Armin Hansen_0.59669334_1581.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a4f1da012927da48e23928c51b60aaa12031eb7174356a9bafab3b105a4fdc4 +size 11538 diff --git a/artists-to-study/ats/thumbnail/dog/anime/anime_Awataguchi Takamitsu_0.6656272_0874.jpg b/artists-to-study/ats/thumbnail/dog/anime/anime_Awataguchi Takamitsu_0.6656272_0874.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b4e7ae3c188424bb92f333a0a18defeb8a070366 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/anime/anime_Awataguchi Takamitsu_0.6656272_0874.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5bd4633f9b15e5d4cce31124ee8ff9bc3060cc19482ef54793f6be00b1f98e60 +size 10100 diff --git "a/artists-to-study/ats/thumbnail/dog/anime/anime_Bai\305\215ken Eishun_0.6730663_0779.jpg" "b/artists-to-study/ats/thumbnail/dog/anime/anime_Bai\305\215ken Eishun_0.6730663_0779.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..919179ea9062a6a2563df0b84ca91b81fd919f74 --- /dev/null +++ "b/artists-to-study/ats/thumbnail/dog/anime/anime_Bai\305\215ken Eishun_0.6730663_0779.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ce9863dadc36b0092ca822e8416811a7c606a2e4ebf1bea9b5bbe3d2d7f3a9b +size 12522 diff --git a/artists-to-study/ats/thumbnail/dog/anime/anime_Bakemono Zukushi_0.67051035_0813.jpg b/artists-to-study/ats/thumbnail/dog/anime/anime_Bakemono Zukushi_0.67051035_0813.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b207cf6c46dea2170171cbc80389dea6a6764067 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/anime/anime_Bakemono Zukushi_0.67051035_0813.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:946d154aa4c89429a2f8f9fbb7d327985812f09610b2b8a94c10ac64bb4cd883 +size 11321 diff --git a/artists-to-study/ats/thumbnail/dog/anime/anime_Chiho Aoshima_0.71801454_0515.jpg b/artists-to-study/ats/thumbnail/dog/anime/anime_Chiho Aoshima_0.71801454_0515.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d0c977370d9c8deef57e2a3e712e654842bf9e69 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/anime/anime_Chiho Aoshima_0.71801454_0515.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b02703abad87b40cb626acec6a9fc9f857cb96b4ec46723d938e3c12dc8bc52 +size 15909 diff --git a/artists-to-study/ats/thumbnail/dog/anime/anime_Eiichiro Oda_0.64772165_1084.jpg b/artists-to-study/ats/thumbnail/dog/anime/anime_Eiichiro Oda_0.64772165_1084.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1f8d6e85d69759a131ce59f2902fbce48377238d --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/anime/anime_Eiichiro Oda_0.64772165_1084.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fbb621f2b9c496a0e110cb52768a5486f8aa9c8a07af3d69092ecafa14dce87 +size 24865 diff --git a/artists-to-study/ats/thumbnail/dog/anime/anime_Fujishima Takeji_0.6751577_0746.jpg b/artists-to-study/ats/thumbnail/dog/anime/anime_Fujishima Takeji_0.6751577_0746.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b4802c5bdb4b526502bce0b56f0bf9862d506e2b --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/anime/anime_Fujishima Takeji_0.6751577_0746.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ebdacf939cdef6452b8308580606ae3d913dbe55739f6fd0e90eca55efbfe51c +size 11949 diff --git a/artists-to-study/ats/thumbnail/dog/anime/anime_Gai Qi_0.613744_1418.jpg b/artists-to-study/ats/thumbnail/dog/anime/anime_Gai Qi_0.613744_1418.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fea57b26affbf506b9e6a3e755bb093b2d3256e3 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/anime/anime_Gai Qi_0.613744_1418.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:556360b4ce5269266e550b73a7c6b4937ecd0a03c20dd542cc84ccaa1811ba89 +size 9531 diff --git "a/artists-to-study/ats/thumbnail/dog/anime/anime_Gat\305\215ken Shunshi_0.6833314_0649.jpg" "b/artists-to-study/ats/thumbnail/dog/anime/anime_Gat\305\215ken Shunshi_0.6833314_0649.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..ae244d2c8477726ad021658e50aa1494c227e4a6 --- /dev/null +++ "b/artists-to-study/ats/thumbnail/dog/anime/anime_Gat\305\215ken Shunshi_0.6833314_0649.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60b67bb0c5d81db60d062d155e29bf1411316e9c0afbe258fc8f859afcb5ea0c +size 13780 diff --git a/artists-to-study/ats/thumbnail/dog/anime/anime_Go Nagai_0.72770613_0433.jpg b/artists-to-study/ats/thumbnail/dog/anime/anime_Go Nagai_0.72770613_0433.jpg new file mode 100644 index 0000000000000000000000000000000000000000..90b2bb8fae34e8481f02ff80649de3b8d13eca59 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/anime/anime_Go Nagai_0.72770613_0433.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e56836245f021c107fccc64a4b0068edada2af0575414c593f077a848ee2675 +size 17777 diff --git "a/artists-to-study/ats/thumbnail/dog/anime/anime_Gyosh\305\253 Hayami_0.68665624_0617.jpg" "b/artists-to-study/ats/thumbnail/dog/anime/anime_Gyosh\305\253 Hayami_0.68665624_0617.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..da3d83365b213e5611db76a714545f6a97e1b3d6 --- /dev/null +++ "b/artists-to-study/ats/thumbnail/dog/anime/anime_Gyosh\305\253 Hayami_0.68665624_0617.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:957ae901e416844248d6dd013da9bf4366cd6c05e50cdfe40d11ff38be86f2db +size 8940 diff --git a/artists-to-study/ats/thumbnail/dog/anime/anime_Hariton Pushwagner_0.6556745_0988.jpg b/artists-to-study/ats/thumbnail/dog/anime/anime_Hariton Pushwagner_0.6556745_0988.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e9b42bea4c5431f289234382ac43bd3dbeda155a --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/anime/anime_Hariton Pushwagner_0.6556745_0988.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a270654b38de382272d5fdff03886093010a880ea9ae8d13f37670f0cd536cac +size 17594 diff --git "a/artists-to-study/ats/thumbnail/dog/anime/anime_Hasegawa T\305\215haku_0.66146004_0918.jpg" "b/artists-to-study/ats/thumbnail/dog/anime/anime_Hasegawa T\305\215haku_0.66146004_0918.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..3f00b0afb8cf41bfd338c3f5ad2861411bb4a803 --- /dev/null +++ "b/artists-to-study/ats/thumbnail/dog/anime/anime_Hasegawa T\305\215haku_0.66146004_0918.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:46421018c9239028325af743ad0debefeee0b8047986b85d9c4f1b19c8d9aad3 +size 10129 diff --git a/artists-to-study/ats/thumbnail/dog/anime/anime_Hayao Miyazaki_0.6800754_0688.jpg b/artists-to-study/ats/thumbnail/dog/anime/anime_Hayao Miyazaki_0.6800754_0688.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ec4b07bbf4923086cfc7639e8c814c876cea5786 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/anime/anime_Hayao Miyazaki_0.6800754_0688.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a51b3d4acee5b6ba0b9c581da55c3a5734ec6f405a8381c01d5232648f6bce6f +size 12466 diff --git a/artists-to-study/ats/thumbnail/dog/anime/anime_Hirohiko Araki_0.6914078_0559.jpg b/artists-to-study/ats/thumbnail/dog/anime/anime_Hirohiko Araki_0.6914078_0559.jpg new file mode 100644 index 0000000000000000000000000000000000000000..92c9a559aaf4d83569b1451cd65cf3d5b72194c9 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/anime/anime_Hirohiko Araki_0.6914078_0559.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c7799660bff49d37f20f0cd6a5057873eaa0410814b709712252cb2bca483bb +size 16133 diff --git a/artists-to-study/ats/thumbnail/dog/anime/anime_Hiromu Arakawa_0.64371413_1123.jpg b/artists-to-study/ats/thumbnail/dog/anime/anime_Hiromu Arakawa_0.64371413_1123.jpg new file mode 100644 index 0000000000000000000000000000000000000000..64be8f87dc282d36cd506de159b1462fab91e877 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/anime/anime_Hiromu Arakawa_0.64371413_1123.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:02498aa2eeae6061bf8d9299a14773ff1344992d10700b0a924500079c7aee32 +size 20204 diff --git a/artists-to-study/ats/thumbnail/dog/anime/anime_Ike no Taiga_0.5795857_1777.jpg b/artists-to-study/ats/thumbnail/dog/anime/anime_Ike no Taiga_0.5795857_1777.jpg new file mode 100644 index 0000000000000000000000000000000000000000..04cb51624c36ef9d069811db3bb17013a4eefd85 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/anime/anime_Ike no Taiga_0.5795857_1777.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:393d99538a1ce9890243e4fd4498f307488d668aea8022f23269c17b0dee0efa +size 12338 diff --git a/artists-to-study/ats/thumbnail/dog/anime/anime_Inio Asano_0.6965007_0500.jpg b/artists-to-study/ats/thumbnail/dog/anime/anime_Inio Asano_0.6965007_0500.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1f5dd50b44305ce470bfbe1a22e63b26bf592b76 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/anime/anime_Inio Asano_0.6965007_0500.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ef0857c62ce3c0b6c3109ca16122f288fb5350b8c5cfc7a8943bcef871fbdac +size 14849 diff --git a/artists-to-study/ats/thumbnail/dog/anime/anime_John Kenn Mortensen_0.74758303_0291.jpg b/artists-to-study/ats/thumbnail/dog/anime/anime_John Kenn Mortensen_0.74758303_0291.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ac1e6929ea423747ce69457ebec9333c53d33b8b --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/anime/anime_John Kenn Mortensen_0.74758303_0291.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ea3d0e272799ddbb4218d5203ae708a279d07f692535bfb7c84a238b495905c6 +size 10317 diff --git a/artists-to-study/ats/thumbnail/dog/anime/anime_Junji Ito_0.7188978_0510.jpg b/artists-to-study/ats/thumbnail/dog/anime/anime_Junji Ito_0.7188978_0510.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ef736125b7847fd19ce2c4b8187d2467659e3b72 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/anime/anime_Junji Ito_0.7188978_0510.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd60bee4825387f4cbd3b63b391674ffc06c4179ccc90643f88bf6e0891813f2 +size 28413 diff --git a/artists-to-study/ats/thumbnail/dog/anime/anime_Katsuhiro Otomo_0.746364_0309.jpg b/artists-to-study/ats/thumbnail/dog/anime/anime_Katsuhiro Otomo_0.746364_0309.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5e09f684891fdb63b43d30619f25eef7800d118c --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/anime/anime_Katsuhiro Otomo_0.746364_0309.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a3b2e4c2f0ec21bc16d484e79b4e2d30d965298191adfb13911796f07d373c2 +size 13372 diff --git a/artists-to-study/ats/thumbnail/dog/anime/anime_Ken Sugimori_0.6932626_0536.jpg b/artists-to-study/ats/thumbnail/dog/anime/anime_Ken Sugimori_0.6932626_0536.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6afd385aa43322228ddb6495f79d82c964e52e57 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/anime/anime_Ken Sugimori_0.6932626_0536.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f3a73f3fdc3fe45eac40ab562e4aeb17f9f9b3ae3eb534d4dd99e1d16e6bf5e +size 17538 diff --git a/artists-to-study/ats/thumbnail/dog/anime/anime_Kentaro Miura_0.697743_0489.jpg b/artists-to-study/ats/thumbnail/dog/anime/anime_Kentaro Miura_0.697743_0489.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c5c87b375a95a77d4645380ba26ce8d74bcb718e --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/anime/anime_Kentaro Miura_0.697743_0489.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:63a9a8d0c94d3ced9b433019b9b5675cfd23dbee67a5dc4d2297c23eca64c7b9 +size 21205 diff --git a/artists-to-study/ats/thumbnail/dog/anime/anime_Kobayashi Kiyochika_0.6239368_1319.jpg b/artists-to-study/ats/thumbnail/dog/anime/anime_Kobayashi Kiyochika_0.6239368_1319.jpg new file mode 100644 index 0000000000000000000000000000000000000000..930ea0b2e279ab441e820e8826459f58ed51d78d --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/anime/anime_Kobayashi Kiyochika_0.6239368_1319.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c9795aea4d8c1577e3de9ff3abf7ba68533e38b8dd195a5f136e8d35f0cb27c1 +size 11460 diff --git a/artists-to-study/ats/thumbnail/dog/anime/anime_Leiji Matsumoto_0.66089404_0924.jpg b/artists-to-study/ats/thumbnail/dog/anime/anime_Leiji Matsumoto_0.66089404_0924.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f74a5f2fd687c4fa4a3344d03ed69e7a62227c3c --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/anime/anime_Leiji Matsumoto_0.66089404_0924.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4fb46d7e2a56da79ba16817f477b0b56631ceae04b5674016901f4fff0100e08 +size 11759 diff --git a/artists-to-study/ats/thumbnail/dog/anime/anime_Makoto Shinkai_0.67610705_0734.jpg b/artists-to-study/ats/thumbnail/dog/anime/anime_Makoto Shinkai_0.67610705_0734.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0f584e3e0efad42767588ccdc0209142b95c1c1f --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/anime/anime_Makoto Shinkai_0.67610705_0734.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ca0af92d43ca1ef78ded84703052283ac724f1457f3ebbfe7703f85d315cafb +size 14630 diff --git a/artists-to-study/ats/thumbnail/dog/anime/anime_Masaaki Sasamoto_0.6597158_0935.jpg b/artists-to-study/ats/thumbnail/dog/anime/anime_Masaaki Sasamoto_0.6597158_0935.jpg new file mode 100644 index 0000000000000000000000000000000000000000..95cae18744c57df524245de02e4eca6cf80cfa99 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/anime/anime_Masaaki Sasamoto_0.6597158_0935.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d11a481bf3b6220b7700c1dedb4ea650397edfecb8d871be8a975ef63a84794a +size 12025 diff --git a/artists-to-study/ats/thumbnail/dog/anime/anime_Masamune Shirow_0.65592873_0986.jpg b/artists-to-study/ats/thumbnail/dog/anime/anime_Masamune Shirow_0.65592873_0986.jpg new file mode 100644 index 0000000000000000000000000000000000000000..657dfa8335fbe856eab92f3c7448c2bacd306274 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/anime/anime_Masamune Shirow_0.65592873_0986.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4bfcd173a581ba1dbfe2577a3e37ca7b6fb9f02209c951860eb4c95091add45c +size 22792 diff --git a/artists-to-study/ats/thumbnail/dog/anime/anime_Michael Cheval_0.61138546_1439.jpg b/artists-to-study/ats/thumbnail/dog/anime/anime_Michael Cheval_0.61138546_1439.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4c89d24912746a68229f750bf63476d4c23a0776 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/anime/anime_Michael Cheval_0.61138546_1439.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:45c49c7a81cb550a3a11563a542242f0bef758126dce479e8d0ff398a6c0252e +size 19726 diff --git a/artists-to-study/ats/thumbnail/dog/anime/anime_Miho Hirano_0.6724092_0789.jpg b/artists-to-study/ats/thumbnail/dog/anime/anime_Miho Hirano_0.6724092_0789.jpg new file mode 100644 index 0000000000000000000000000000000000000000..176dd3040bb735445f0f9912eb412b9185078d13 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/anime/anime_Miho Hirano_0.6724092_0789.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:185a7a8ba2302310bc8aca261a645f0b13269302d867fcb64850b49fbb8e743d +size 12597 diff --git a/artists-to-study/ats/thumbnail/dog/anime/anime_Naoki Urasawa_0.7469665_0306.jpg b/artists-to-study/ats/thumbnail/dog/anime/anime_Naoki Urasawa_0.7469665_0306.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c3b2857c41d823e0bd51d7678125d542164335ca --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/anime/anime_Naoki Urasawa_0.7469665_0306.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e98cfe5c5e688e8dd3f239ace0c815bdfc2ca4934fe3e6914def27df3cb4e5a0 +size 17357 diff --git a/artists-to-study/ats/thumbnail/dog/anime/anime_Naoko Takeuchi_0.80482674_0107.jpg b/artists-to-study/ats/thumbnail/dog/anime/anime_Naoko Takeuchi_0.80482674_0107.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c01a7cb281a825ad28eba4c42bd44a54f0b1730c --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/anime/anime_Naoko Takeuchi_0.80482674_0107.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e7d52d328cd85478dd51b2be16d9a07876852fc31f72a78f5a689b1686f338cd +size 18623 diff --git a/artists-to-study/ats/thumbnail/dog/anime/anime_Phil Noto_0.6470769_1093.jpg b/artists-to-study/ats/thumbnail/dog/anime/anime_Phil Noto_0.6470769_1093.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d33caf286999a952b2e57ca33034c1fe3e7ee747 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/anime/anime_Phil Noto_0.6470769_1093.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fb9832cba4480275dc0f0fa5c44373fa4006c6e79a69677b16ca5def5e2146a9 +size 11990 diff --git a/artists-to-study/ats/thumbnail/dog/anime/anime_Posuka Demizu_0.64843124_1077.jpg b/artists-to-study/ats/thumbnail/dog/anime/anime_Posuka Demizu_0.64843124_1077.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1509a90d60a6c8a8028e98d16ff60c2287d2df20 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/anime/anime_Posuka Demizu_0.64843124_1077.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c19fd2ec2c34189a3eee28babdb60c413b71f5b602b31bb8019bdb159c17a018 +size 17121 diff --git a/artists-to-study/ats/thumbnail/dog/anime/anime_Rumiko Takahashi_0.8301817_0058.jpg b/artists-to-study/ats/thumbnail/dog/anime/anime_Rumiko Takahashi_0.8301817_0058.jpg new file mode 100644 index 0000000000000000000000000000000000000000..841b3037b5509fb6f281248e4ae45fd50f2fbf4e --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/anime/anime_Rumiko Takahashi_0.8301817_0058.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef6d1b0e3ba0da8c901f969e963675fb598f0d165b085e1970c3e99f0be648c0 +size 16467 diff --git a/artists-to-study/ats/thumbnail/dog/anime/anime_Sailor Moon_0.73281246_0388.jpg b/artists-to-study/ats/thumbnail/dog/anime/anime_Sailor Moon_0.73281246_0388.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1df9cfc57f53c93431fa7873e8fabdfd92154387 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/anime/anime_Sailor Moon_0.73281246_0388.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19d410d79558043391341376483a2ba952bcc89e522978683770ff72cde86443 +size 18078 diff --git a/artists-to-study/ats/thumbnail/dog/anime/anime_Satoshi Kon_0.65606606_0985.jpg b/artists-to-study/ats/thumbnail/dog/anime/anime_Satoshi Kon_0.65606606_0985.jpg new file mode 100644 index 0000000000000000000000000000000000000000..22fca173c31f125dbc454f332b9405bbad714ee3 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/anime/anime_Satoshi Kon_0.65606606_0985.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3923c685f0e1a78f62ea26368096f1ab4bc6ae270e9b1d092e159dbe9c213504 +size 18086 diff --git a/artists-to-study/ats/thumbnail/dog/anime/anime_Shinji Aramaki_0.61246127_1429.jpg b/artists-to-study/ats/thumbnail/dog/anime/anime_Shinji Aramaki_0.61246127_1429.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e2d4fd468b200b5bde8fc33a7bf719024fc83c20 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/anime/anime_Shinji Aramaki_0.61246127_1429.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa30a0299f6a6eda41fdf032c843f40bb6c549ddfe8ae65f1e63a246b65557b2 +size 11393 diff --git a/artists-to-study/ats/thumbnail/dog/anime/anime_Shintaro Kago_0.7484431_0294.jpg b/artists-to-study/ats/thumbnail/dog/anime/anime_Shintaro Kago_0.7484431_0294.jpg new file mode 100644 index 0000000000000000000000000000000000000000..258cd974ad99391839895527cadf7ef56c7825ae --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/anime/anime_Shintaro Kago_0.7484431_0294.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe1b8ab1ad122a316c263b2d3c79d5913aec24bb7febd141b29f5eb017ff2ffe +size 23248 diff --git a/artists-to-study/ats/thumbnail/dog/anime/anime_Shotaro Ishinomori_0.7292093_0416.jpg b/artists-to-study/ats/thumbnail/dog/anime/anime_Shotaro Ishinomori_0.7292093_0416.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1e6d95492b5f53b865b2acc772b1aadad1f5dc24 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/anime/anime_Shotaro Ishinomori_0.7292093_0416.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40a6784e93b2b15137ac9a2afd1281a89e65efaff3d7b92515d1db273f9b014e +size 25046 diff --git a/artists-to-study/ats/thumbnail/dog/anime/anime_Shusei Nagaoko_0.7238965_0469.jpg b/artists-to-study/ats/thumbnail/dog/anime/anime_Shusei Nagaoko_0.7238965_0469.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bc3d2ef75388e732c1a4ce9ac59a9766e2c3a0e1 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/anime/anime_Shusei Nagaoko_0.7238965_0469.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:79148f0de1e9ca8f6a9c99477630c0574c3a0f795491eed9deb10cc2ff37c264 +size 13371 diff --git a/artists-to-study/ats/thumbnail/dog/anime/anime_Studio Ghibli_0.73439026_0378.jpg b/artists-to-study/ats/thumbnail/dog/anime/anime_Studio Ghibli_0.73439026_0378.jpg new file mode 100644 index 0000000000000000000000000000000000000000..772f82bd28f08d70f7893416dfd6d556d78aa26f --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/anime/anime_Studio Ghibli_0.73439026_0378.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:adbbea5afdddda7abe931da0616e261f004413cd5223cb811d7e991f49eee26d +size 12789 diff --git a/artists-to-study/ats/thumbnail/dog/anime/anime_Takeshi Obata_0.67643225_0730.jpg b/artists-to-study/ats/thumbnail/dog/anime/anime_Takeshi Obata_0.67643225_0730.jpg new file mode 100644 index 0000000000000000000000000000000000000000..36090fdde402a9305227551c4188fb8ddbeb8edc --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/anime/anime_Takeshi Obata_0.67643225_0730.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:83e31131e138350a10fbbc5a1eb5b671982793d12c99a96a3dab14e5420b4c07 +size 23485 diff --git a/artists-to-study/ats/thumbnail/dog/anime/anime_Toei Animations_0.6629127_0908.jpg b/artists-to-study/ats/thumbnail/dog/anime/anime_Toei Animations_0.6629127_0908.jpg new file mode 100644 index 0000000000000000000000000000000000000000..70eddb98ec109a853803820b0310caff1d558f29 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/anime/anime_Toei Animations_0.6629127_0908.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:43e6a71d3a3852edd19e93f8d67d6e38a05e6e12015cecc0d429f9bcc75e8043 +size 17012 diff --git a/artists-to-study/ats/thumbnail/dog/anime/anime_Tsutomu Nihei_0.7070495_0396.jpg b/artists-to-study/ats/thumbnail/dog/anime/anime_Tsutomu Nihei_0.7070495_0396.jpg new file mode 100644 index 0000000000000000000000000000000000000000..988ab1b410ae55a10f8c66c0b8a84aed44bc0410 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/anime/anime_Tsutomu Nihei_0.7070495_0396.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6198f90211162d56eaeeb6a86eda5759942aee6c06d95e05465f24655b1204b4 +size 17220 diff --git a/artists-to-study/ats/thumbnail/dog/anime/anime_Yoji Shinkawa_0.5287015_2226.jpg b/artists-to-study/ats/thumbnail/dog/anime/anime_Yoji Shinkawa_0.5287015_2226.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fc204dd1e5bbce030fa96058ccfb1d6fd97ecfb1 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/anime/anime_Yoji Shinkawa_0.5287015_2226.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e945a0a487dc04e4cd575860eaad171678aa769f5249f077d770f5f9fbd742f1 +size 22542 diff --git a/artists-to-study/ats/thumbnail/dog/anime/anime_Yoshiyuki Tomino_0.6998095_0469.jpg b/artists-to-study/ats/thumbnail/dog/anime/anime_Yoshiyuki Tomino_0.6998095_0469.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d606210cae136981711683264be3b2b8f7b896b6 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/anime/anime_Yoshiyuki Tomino_0.6998095_0469.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26428bb4c65e18c04880267c03c26a720f15f3d6a1f5d3fb2b19af7ecaa601a7 +size 13622 diff --git a/artists-to-study/ats/thumbnail/dog/black-white/black-white_Albert Servaes_0.60250103_1531.jpg b/artists-to-study/ats/thumbnail/dog/black-white/black-white_Albert Servaes_0.60250103_1531.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3f8729f7e763ea7c57408d6275247fc08f3acb5b --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/black-white/black-white_Albert Servaes_0.60250103_1531.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc63bd18eab2fb008a8c0fa7df46cf28d3f3fa338405ca3b6149dfcac835e20b +size 11357 diff --git a/artists-to-study/ats/thumbnail/dog/black-white/black-white_Alfred Eisenstaedt_0.67213774_0794.jpg b/artists-to-study/ats/thumbnail/dog/black-white/black-white_Alfred Eisenstaedt_0.67213774_0794.jpg new file mode 100644 index 0000000000000000000000000000000000000000..879407861b3771cc77e10e18a5171719dc8d6fb2 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/black-white/black-white_Alfred Eisenstaedt_0.67213774_0794.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e58e749eb092e1fa55f163fed056d142cb044f9a4dc77ec15c43596e70d59ffe +size 14219 diff --git a/artists-to-study/ats/thumbnail/dog/black-white/black-white_Alvin Langdon Coburn_0.8035004_0110.jpg b/artists-to-study/ats/thumbnail/dog/black-white/black-white_Alvin Langdon Coburn_0.8035004_0110.jpg new file mode 100644 index 0000000000000000000000000000000000000000..cb6b6dbdf3c895738f7d89a3b52a055b57819f22 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/black-white/black-white_Alvin Langdon Coburn_0.8035004_0110.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:03e0b5f6ca5758db0bb67746314f24359423b1aa919ee158f1bc9edcf1fd686b +size 11876 diff --git a/artists-to-study/ats/thumbnail/dog/black-white/black-white_Ando Fuchs_0.73406494_0382.jpg b/artists-to-study/ats/thumbnail/dog/black-white/black-white_Ando Fuchs_0.73406494_0382.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3e87d4f2045b01a0ecd8a274553baa881abce09c --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/black-white/black-white_Ando Fuchs_0.73406494_0382.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13f3ba2c8026f50db058bb9f1c6c336c42719321e7c008ffb3d87728a604123c +size 13102 diff --git a/artists-to-study/ats/thumbnail/dog/black-white/black-white_Andre Kertesz_0.7228358_0341.jpg b/artists-to-study/ats/thumbnail/dog/black-white/black-white_Andre Kertesz_0.7228358_0341.jpg new file mode 100644 index 0000000000000000000000000000000000000000..25a30d581a0f902802e8f0b0181c2b0a85af3b19 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/black-white/black-white_Andre Kertesz_0.7228358_0341.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e75380541209fbe99ca9286b507804ac39c1b731ebf5f5d2f651ec8a3630910a +size 11871 diff --git "a/artists-to-study/ats/thumbnail/dog/black-white/black-white_Andr\303\251 Kert\303\251sz_0.7319392_0251.jpg" "b/artists-to-study/ats/thumbnail/dog/black-white/black-white_Andr\303\251 Kert\303\251sz_0.7319392_0251.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..4e55328b6ec9328695e6288fc8152c6b8c12b429 --- /dev/null +++ "b/artists-to-study/ats/thumbnail/dog/black-white/black-white_Andr\303\251 Kert\303\251sz_0.7319392_0251.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ab40fdd7b6dc87432a46125877e8afd1e75906a78080233e84423c6542a157a +size 12471 diff --git a/artists-to-study/ats/thumbnail/dog/black-white/black-white_Anne Brigman_0.6865817_0540.jpg b/artists-to-study/ats/thumbnail/dog/black-white/black-white_Anne Brigman_0.6865817_0540.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b8f054f270c6e17234cf9ff49033a50e880dd673 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/black-white/black-white_Anne Brigman_0.6865817_0540.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:54354b7f245dacc10a55aee628046e0da1adf4df8e867f6330746e8049f1d5fc +size 11839 diff --git a/artists-to-study/ats/thumbnail/dog/black-white/black-white_Antanas Sutkus_0.7369492_0359.jpg b/artists-to-study/ats/thumbnail/dog/black-white/black-white_Antanas Sutkus_0.7369492_0359.jpg new file mode 100644 index 0000000000000000000000000000000000000000..79d5583513734a01d1f04ce57418f6744a957233 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/black-white/black-white_Antanas Sutkus_0.7369492_0359.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ce1968d1f568adb0ba67fd1daccedd1f5a52c1a5cf3375026e67adbd3b18e9a +size 10323 diff --git a/artists-to-study/ats/thumbnail/dog/black-white/black-white_August Sander_0.6644566_0318.jpg b/artists-to-study/ats/thumbnail/dog/black-white/black-white_August Sander_0.6644566_0318.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4456244f66536c3c497698e4ecff9621baf9206b --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/black-white/black-white_August Sander_0.6644566_0318.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2812681b5b6bba64cfa9cdf1206767474abd0de1d615002be2696831460536dd +size 11949 diff --git a/artists-to-study/ats/thumbnail/dog/black-white/black-white_Bert Hardy_0.6972966_0493.jpg b/artists-to-study/ats/thumbnail/dog/black-white/black-white_Bert Hardy_0.6972966_0493.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6923bcb6d1d807882b918ccaca8fbefebb60317c --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/black-white/black-white_Bert Hardy_0.6972966_0493.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f6d0b5c9f00e0588c91b5f57ca191c69516ef6bcaba0e84f142bd4dcb2e5184 +size 12736 diff --git a/artists-to-study/ats/thumbnail/dog/black-white/black-white_Bill Brandt_0.6833408_0287.jpg b/artists-to-study/ats/thumbnail/dog/black-white/black-white_Bill Brandt_0.6833408_0287.jpg new file mode 100644 index 0000000000000000000000000000000000000000..453ad670d737806b243303102599a03d6fb866c0 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/black-white/black-white_Bill Brandt_0.6833408_0287.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db4877f534d5797d5095e1e0271ae8b36a0c82aa846ac583de9ff0e874c4f6ed +size 9813 diff --git a/artists-to-study/ats/thumbnail/dog/black-white/black-white_Brett Weston_0.6891357_0276.jpg b/artists-to-study/ats/thumbnail/dog/black-white/black-white_Brett Weston_0.6891357_0276.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1fa2ff3bff2ad5c6218a9c1a3ae397e15ce15303 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/black-white/black-white_Brett Weston_0.6891357_0276.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f9c2d8b1fe1caa6533e55e7216451cbd8eaf51eb1362216e8c81e83ec18da1c2 +size 13847 diff --git a/artists-to-study/ats/thumbnail/dog/black-white/black-white_Bruce Gilden_0.7256681_0187.jpg b/artists-to-study/ats/thumbnail/dog/black-white/black-white_Bruce Gilden_0.7256681_0187.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7e84606bf364d2c15748386446deeda7ce077737 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/black-white/black-white_Bruce Gilden_0.7256681_0187.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:49be92f3b2ce66197cf13ce4f8ab004abf5dd27f514607bb124a0a18f5463334 +size 15037 diff --git a/artists-to-study/ats/thumbnail/dog/black-white/black-white_Cecil Beaton_0.66362655_0454.jpg b/artists-to-study/ats/thumbnail/dog/black-white/black-white_Cecil Beaton_0.66362655_0454.jpg new file mode 100644 index 0000000000000000000000000000000000000000..09834b36a733863794cd2955c2ccff68fddf2ace --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/black-white/black-white_Cecil Beaton_0.66362655_0454.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:474d2dfbcd2fc2083276d777415fcad3849638db587b1936394ca0715579f2fe +size 11832 diff --git a/artists-to-study/ats/thumbnail/dog/black-white/black-white_Dorothea Lange_0.71361613_0561.jpg b/artists-to-study/ats/thumbnail/dog/black-white/black-white_Dorothea Lange_0.71361613_0561.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7b36d2735f3715a4ac5e7ccfcc82887ec293842b --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/black-white/black-white_Dorothea Lange_0.71361613_0561.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da9f85e3a3966084a30ad48634da77de8b42e16d6e5ae458c57745f4953ca67b +size 14185 diff --git a/artists-to-study/ats/thumbnail/dog/black-white/black-white_Edward Steichen_0.69837445_0479.jpg b/artists-to-study/ats/thumbnail/dog/black-white/black-white_Edward Steichen_0.69837445_0479.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e0aea4856c8fe4cc88d86bb0745a2d490d026939 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/black-white/black-white_Edward Steichen_0.69837445_0479.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7dfcadfd1319e4a11c82c3bf8ffc88dc9127ad29c5194197a5eea96ea11512d9 +size 11056 diff --git a/artists-to-study/ats/thumbnail/dog/black-white/black-white_Edward Weston_0.7061382_0409.jpg b/artists-to-study/ats/thumbnail/dog/black-white/black-white_Edward Weston_0.7061382_0409.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2f6c7efcd785bce7f7f4a12ec5658f8edda323ea --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/black-white/black-white_Edward Weston_0.7061382_0409.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a0ee6b3b08c071935a165b4d2fdc89443e7a5611883b3288ffff7589fb5a9aa +size 12964 diff --git a/artists-to-study/ats/thumbnail/dog/black-white/black-white_Elliott Erwitt_0.69950557_0426.jpg b/artists-to-study/ats/thumbnail/dog/black-white/black-white_Elliott Erwitt_0.69950557_0426.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fe32f518f5cd25064384262c560260e02a0250a7 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/black-white/black-white_Elliott Erwitt_0.69950557_0426.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2122a8f528a4478ce04e73b0cc7c11e1adb2ce90e8925a5ea9b2a13f60037e47 +size 11297 diff --git a/artists-to-study/ats/thumbnail/dog/black-white/black-white_Garry Winogrand_0.83994275_0043.jpg b/artists-to-study/ats/thumbnail/dog/black-white/black-white_Garry Winogrand_0.83994275_0043.jpg new file mode 100644 index 0000000000000000000000000000000000000000..740a3c89ca5e574c5103c468540762eecd67d2f6 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/black-white/black-white_Garry Winogrand_0.83994275_0043.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:585d56d91b57b1c577ab88e632219bc4215d30b3c3f79421b1d59cc9233f5143 +size 14291 diff --git a/artists-to-study/ats/thumbnail/dog/black-white/black-white_Germaine Krull_0.6621777_0411.jpg b/artists-to-study/ats/thumbnail/dog/black-white/black-white_Germaine Krull_0.6621777_0411.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fe03314d4b6981b48d6d0701a264490da808d900 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/black-white/black-white_Germaine Krull_0.6621777_0411.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ceef9650ea150b1ccfe96813129a362f393f65e03613d5ecd5af32499778ad5 +size 11626 diff --git a/artists-to-study/ats/thumbnail/dog/black-white/black-white_Henri Cartier-Bresson_0.7735415_0184.jpg b/artists-to-study/ats/thumbnail/dog/black-white/black-white_Henri Cartier-Bresson_0.7735415_0184.jpg new file mode 100644 index 0000000000000000000000000000000000000000..73197cb498004fb04da87302a4074aaae8cfaf09 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/black-white/black-white_Henri Cartier-Bresson_0.7735415_0184.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e62e85fcac07d3db73fd683ef9842e775429f2ac4c398ceaa8d977d61ee3b5c +size 14197 diff --git a/artists-to-study/ats/thumbnail/dog/black-white/black-white_Herbert List_0.68455493_0288.jpg b/artists-to-study/ats/thumbnail/dog/black-white/black-white_Herbert List_0.68455493_0288.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6f9c655d3c3cad7e4686da9230db19594b0aefea --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/black-white/black-white_Herbert List_0.68455493_0288.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:055828e59feddf46110a0edc8990e8ade296854f66c21d7e82885d9d655f3a16 +size 11643 diff --git "a/artists-to-study/ats/thumbnail/dog/black-white/black-white_Herv\303\251 Guibert_0.55973417_0741.jpg" "b/artists-to-study/ats/thumbnail/dog/black-white/black-white_Herv\303\251 Guibert_0.55973417_0741.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..48ca96996fa3574a06b63b064482cde1d411d079 --- /dev/null +++ "b/artists-to-study/ats/thumbnail/dog/black-white/black-white_Herv\303\251 Guibert_0.55973417_0741.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a47fd1bfdd80ce5e96c6e2b6032af524e2e1e239cb04eb96973e50710f16ca28 +size 11391 diff --git a/artists-to-study/ats/thumbnail/dog/black-white/black-white_Hugh Ferriss_0.72443527_0343.jpg b/artists-to-study/ats/thumbnail/dog/black-white/black-white_Hugh Ferriss_0.72443527_0343.jpg new file mode 100644 index 0000000000000000000000000000000000000000..50b95c7f0ebb9882a7ddaf4c5c045bb9414b9e86 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/black-white/black-white_Hugh Ferriss_0.72443527_0343.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f848f48dc0fb24848abe2209ef60136e733adbaac1873c275bdcef4ca91cf56f +size 12311 diff --git a/artists-to-study/ats/thumbnail/dog/black-white/black-white_Jeanloup Sieff_0.7196009_0312.jpg b/artists-to-study/ats/thumbnail/dog/black-white/black-white_Jeanloup Sieff_0.7196009_0312.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b032510010333cd7192795208e636445e806af77 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/black-white/black-white_Jeanloup Sieff_0.7196009_0312.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fce7d5a40de37f4f82ad80274aa41a3cd5c11c5bed674a5360baea6e346b4730 +size 12165 diff --git a/artists-to-study/ats/thumbnail/dog/black-white/black-white_John Stezaker_0.6726847_0784.jpg b/artists-to-study/ats/thumbnail/dog/black-white/black-white_John Stezaker_0.6726847_0784.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a4c44378684be2104859a9e4ff9c39ac1ae13436 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/black-white/black-white_John Stezaker_0.6726847_0784.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3400a421e9a57f2a3f9914503bdfddd7151472794e186308f5f75ac0fe9099f2 +size 10146 diff --git a/artists-to-study/ats/thumbnail/dog/black-white/black-white_Karl Blossfeldt_0.77652574_0167.jpg b/artists-to-study/ats/thumbnail/dog/black-white/black-white_Karl Blossfeldt_0.77652574_0167.jpg new file mode 100644 index 0000000000000000000000000000000000000000..568742b51f23629fd918e0801d25d5ede3e1f403 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/black-white/black-white_Karl Blossfeldt_0.77652574_0167.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ee1bb9c81222e32d444afc9caf22ab247053c184648b6cc89fdd308608b080d +size 8648 diff --git a/artists-to-study/ats/thumbnail/dog/black-white/black-white_Kati Horna_0.71486115_0546.jpg b/artists-to-study/ats/thumbnail/dog/black-white/black-white_Kati Horna_0.71486115_0546.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6362247d6e658f9057fd6228629851a0f7338a39 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/black-white/black-white_Kati Horna_0.71486115_0546.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06daab8e6ecc49e87dccea577d35b2815f66b041affb003de17b47dac44ea3f6 +size 10667 diff --git a/artists-to-study/ats/thumbnail/dog/black-white/black-white_Max Dupain_0.6661642_0235.jpg b/artists-to-study/ats/thumbnail/dog/black-white/black-white_Max Dupain_0.6661642_0235.jpg new file mode 100644 index 0000000000000000000000000000000000000000..107ab47cc9b173b4b59bac518b17139668a4cf3c --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/black-white/black-white_Max Dupain_0.6661642_0235.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:200c2601403ea830bbd9433c1620b3b720ca9cafe2ebf45cb1178b94d2f8a677 +size 11606 diff --git a/artists-to-study/ats/thumbnail/dog/black-white/black-white_Nathan Wirth_0.6436741_0290.jpg b/artists-to-study/ats/thumbnail/dog/black-white/black-white_Nathan Wirth_0.6436741_0290.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a47d1e78dcad56ee9d38325a6072625cbeb4046b --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/black-white/black-white_Nathan Wirth_0.6436741_0290.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ca4286813d3e675e7f388eb39e5b9c22d56eb1e1270762e8d4cdae96f564f09 +size 10827 diff --git a/artists-to-study/ats/thumbnail/dog/black-white/black-white_Paul Strand_0.7080332_0346.jpg b/artists-to-study/ats/thumbnail/dog/black-white/black-white_Paul Strand_0.7080332_0346.jpg new file mode 100644 index 0000000000000000000000000000000000000000..752c51376586cef42292e731b45f5f8092137cbe --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/black-white/black-white_Paul Strand_0.7080332_0346.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb7fa24ce416ce35ca52116078c6cf312a1148108097925e6e98d9e8e3ec168d +size 12927 diff --git a/artists-to-study/ats/thumbnail/dog/black-white/black-white_Roger Ballen_0.64683115_0245.jpg b/artists-to-study/ats/thumbnail/dog/black-white/black-white_Roger Ballen_0.64683115_0245.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a826608fd1f076095fa49f4de37a54eb227c920b --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/black-white/black-white_Roger Ballen_0.64683115_0245.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71bce7f88f9737416178f5f4185f0547045f759f283575e63229905716c27a2d +size 7851 diff --git a/artists-to-study/ats/thumbnail/dog/black-white/black-white_Ruth Bernhard_0.72990334_0410.jpg b/artists-to-study/ats/thumbnail/dog/black-white/black-white_Ruth Bernhard_0.72990334_0410.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fd122a5d96773dab4ec90f60e68fa47c71ccefdf --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/black-white/black-white_Ruth Bernhard_0.72990334_0410.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:030a4137c69160268d5a0a6c0c311121d76bbeea250f5d7d0b7f22a518c67a4f +size 8979 diff --git a/artists-to-study/ats/thumbnail/dog/black-white/black-white_Sally Mann_0.6534312_0555.jpg b/artists-to-study/ats/thumbnail/dog/black-white/black-white_Sally Mann_0.6534312_0555.jpg new file mode 100644 index 0000000000000000000000000000000000000000..392a4329482b1420914bcd8dc151fe56a2408bf6 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/black-white/black-white_Sally Mann_0.6534312_0555.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:62d740774af12b874720412b67c3fd1ca3eb8825b3d7e2267e4e496d1352358c +size 13236 diff --git a/artists-to-study/ats/thumbnail/dog/c/c_Alain Laboile_0.67634284_0213.jpg b/artists-to-study/ats/thumbnail/dog/c/c_Alain Laboile_0.67634284_0213.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0fa3ccf1b8906f615c29d836e286bacab5407072 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/c/c_Alain Laboile_0.67634284_0213.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d91341646824ee7eb18ac26596a00ead9981ef595f2e74aaec5bd98c9fdcd8f0 +size 16077 diff --git a/artists-to-study/ats/thumbnail/dog/c/c_Bapu_0.6122084_1431.jpg b/artists-to-study/ats/thumbnail/dog/c/c_Bapu_0.6122084_1431.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8e17c53e9d74114e63d997f67699990242bc8861 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/c/c_Bapu_0.6122084_1431.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60bcaf391c5bb4a310cd06204524e920252b8ebf1aaca33cf91b214d4d74cce2 +size 12426 diff --git a/artists-to-study/ats/thumbnail/dog/c/c_Cassius Marcellus Coolidge_0.5805516_1768.jpg b/artists-to-study/ats/thumbnail/dog/c/c_Cassius Marcellus Coolidge_0.5805516_1768.jpg new file mode 100644 index 0000000000000000000000000000000000000000..43e4cf87b0f01891c78ef4ac9d7e1d7e40344fb8 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/c/c_Cassius Marcellus Coolidge_0.5805516_1768.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad26cb414b125141eb9efcc98428b53bf7dc3653feb4022480b109c494f81561 +size 12393 diff --git a/artists-to-study/ats/thumbnail/dog/c/c_Dr. Seuss_0.5597466_1960.jpg b/artists-to-study/ats/thumbnail/dog/c/c_Dr. Seuss_0.5597466_1960.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4fd8e9158eea7ef38b1f1263e79fe2f639e5d307 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/c/c_Dr. Seuss_0.5597466_1960.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:04d39f579fd9a0a0154c5f53f85f5fd9244222ee44ca8d697cbe0f3c78b401ba +size 15758 diff --git a/artists-to-study/ats/thumbnail/dog/c/c_Henning Jakob Henrik Lund_0.5147134_2322.jpg b/artists-to-study/ats/thumbnail/dog/c/c_Henning Jakob Henrik Lund_0.5147134_2322.jpg new file mode 100644 index 0000000000000000000000000000000000000000..af39fb68eb9b88bfc278e9dafa82bd5bcdeec5f4 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/c/c_Henning Jakob Henrik Lund_0.5147134_2322.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:223f95731f4dd45428336e41788790d904658f7b56b262d41317fc5a55d0fec6 +size 13707 diff --git a/artists-to-study/ats/thumbnail/dog/c/c_Julie Blackmon_0.72862685_0420.jpg b/artists-to-study/ats/thumbnail/dog/c/c_Julie Blackmon_0.72862685_0420.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6204cc02d4ab2d904055e0884d1e05fa76aec70d --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/c/c_Julie Blackmon_0.72862685_0420.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:79a578dd97587900c8de0d2ab8e4f1fec266be5c287da7edccfd537952be0d89 +size 16155 diff --git a/artists-to-study/ats/thumbnail/dog/c/c_Robert Irwin_0.58078_1761.jpg b/artists-to-study/ats/thumbnail/dog/c/c_Robert Irwin_0.58078_1761.jpg new file mode 100644 index 0000000000000000000000000000000000000000..485ce9accc5979899592267005b2b2799dd6e19e --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/c/c_Robert Irwin_0.58078_1761.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bef2d5bb489bc552ecc40fc9be2be50b0b56bd08316e33f39b147d027c499728 +size 9405 diff --git a/artists-to-study/ats/thumbnail/dog/c/c_William-Adolphe Bouguereau_0.618265_1380.jpg b/artists-to-study/ats/thumbnail/dog/c/c_William-Adolphe Bouguereau_0.618265_1380.jpg new file mode 100644 index 0000000000000000000000000000000000000000..adceeb86d4473deef11405ab47e6d45e65ec33c4 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/c/c_William-Adolphe Bouguereau_0.618265_1380.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2bfe00e3416ffec3815efd55c9926de4c593e4794532ece7cff15fd913520b14 +size 10908 diff --git a/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Abigail Larson_0.7319012_0393.jpg b/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Abigail Larson_0.7319012_0393.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b8fd3acf7a6b1ac7ad47489ae43edbcd175ada81 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Abigail Larson_0.7319012_0393.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1113677b5fe1456af40241ac7157cdf9469e2104e3e3cad73a142876638712c6 +size 6166 diff --git a/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Al Williamson_0.742113_0326.jpg b/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Al Williamson_0.742113_0326.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f261f0ee3137cfe9e16acfa3301affb5ab8ea2b7 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Al Williamson_0.742113_0326.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f56ef00660274d3bbab7a4b4e271ce5f4475a86b2c836085df27964d04c873fe +size 26317 diff --git a/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Albert Robida_0.7485741_0293.jpg b/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Albert Robida_0.7485741_0293.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2097a4d3685dd42628b773dd9481e718c12a103c --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Albert Robida_0.7485741_0293.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:73b342b4b36bf924e97eadefce560883686dd854f3e642ffb40e401adc989b10 +size 15711 diff --git a/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Alberto Vargas_0.7747376_0176.jpg b/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Alberto Vargas_0.7747376_0176.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e8d4902cd564d4c70f57e775aad51c887ee4e109 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Alberto Vargas_0.7747376_0176.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3248f4d68586a0a1d49a721823cf34865982762e1e2dff3d626d4193243ba07a +size 12897 diff --git a/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Alena Aenami_0.77210015_0190.jpg b/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Alena Aenami_0.77210015_0190.jpg new file mode 100644 index 0000000000000000000000000000000000000000..cc91bcc7215cd83e415dbcb481579673e71b5dc4 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Alena Aenami_0.77210015_0190.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:52c7caae932af0d6e09686b112d5d7db951e06aa2997196a87ffceb12cd7c7f9 +size 12302 diff --git a/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Alex Hirsch_0.6157384_1396.jpg b/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Alex Hirsch_0.6157384_1396.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8a1e49b0e4108e52f2c1e506d922dc977bca5ffd --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Alex Hirsch_0.6157384_1396.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0233482bad28a7b03135f431ff1ea4bd0e858a716b0b96952ae990704a65b267 +size 15012 diff --git a/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Alice Pasquini_0.78949904_0137.jpg b/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Alice Pasquini_0.78949904_0137.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1525fa57b76d4683757d6bc7be1ae2937611ea1d --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Alice Pasquini_0.78949904_0137.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c674e2f217a15cab244e1600770a09669485aa725b29c82c602c7724d1f8644b +size 24199 diff --git a/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Andy Kehoe_0.82063186_0066.jpg b/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Andy Kehoe_0.82063186_0066.jpg new file mode 100644 index 0000000000000000000000000000000000000000..013d0adb5c11fa860d21ec85f1e7ab65e4117133 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Andy Kehoe_0.82063186_0066.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ae101fe533017f0abc9dfaa34ccf173247c94dada337043163cd2a5ee488366 +size 7757 diff --git a/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Anna Dittmann_0.62327325_1327.jpg b/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Anna Dittmann_0.62327325_1327.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0294b32c37a99b3ec5431df73807b014218e77b7 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Anna Dittmann_0.62327325_1327.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3bccb5f03415a851ba7f4adb73a855c7ff8f94f48d37b4bf14b6dfe2adab3f3a +size 12200 diff --git a/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Anton Fadeev_0.73433846_0380.jpg b/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Anton Fadeev_0.73433846_0380.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ad299c139d4257374fa6e63ecb6b1ca8c52e43cb --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Anton Fadeev_0.73433846_0380.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ef54eafbb661f6a2d6a36fd0d2fa17351247a96b31bfbe13e72877c7bde7040 +size 10996 diff --git a/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Barry Windsor Smith_0.6765375_0729.jpg b/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Barry Windsor Smith_0.6765375_0729.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3be11b4935abf2930cf21327ef31961ff96de545 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Barry Windsor Smith_0.6765375_0729.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d2897364641af4a1bec59973a736b52ff7ef062a8e004a385695b9b3dac081a +size 23136 diff --git a/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Bart Sears_0.5838427_1724.jpg b/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Bart Sears_0.5838427_1724.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c51248f5bcd46ddc48a2ccdc0ab212f10218ae86 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Bart Sears_0.5838427_1724.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2056ec3e0e5ad176e095424bc46a3116c473b2ee0646506d36d5d2ce0db6f2f7 +size 19778 diff --git a/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Becky Cloonan_0.67192084_0800.jpg b/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Becky Cloonan_0.67192084_0800.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0e848c50fa0f814d7a822c5c16e4f850f9324bc9 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Becky Cloonan_0.67192084_0800.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71176ef395a1c931b3e9b13a9b5c7ec81a0c9ff3bbe6eabfa03a900b66c26818 +size 23307 diff --git a/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Bernard Buffet_0.7103491_0365.jpg b/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Bernard Buffet_0.7103491_0365.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e346655c80411479948deb5c822e29e0f53f6ac2 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Bernard Buffet_0.7103491_0365.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:95791595689fb9459209bbbf1163064cd202ec827709f88d3166805f6d770326 +size 18434 diff --git a/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Brian K. Vaughan_0.64147836_1139.jpg b/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Brian K. Vaughan_0.64147836_1139.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a99e53b05aa4571625df92b2e8b7adb48bce383c --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Brian K. Vaughan_0.64147836_1139.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a4a224299e548272a8639341a8902af4bf8b70a6167a08e60c0a96809385c4a +size 21839 diff --git a/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Bryan Hitch_0.6518333_1032.jpg b/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Bryan Hitch_0.6518333_1032.jpg new file mode 100644 index 0000000000000000000000000000000000000000..680872454c88c8fbef24c64adf21557e3eca8531 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Bryan Hitch_0.6518333_1032.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e4e1dedd62abf15e90d995772ba5947ed36c84a7e79646173082c7031dffa9f +size 26436 diff --git a/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Butcher Billy_0.7593378_0240.jpg b/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Butcher Billy_0.7593378_0240.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f4f864464b1b432fa94ba0cb36aa9c7edf1842c1 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Butcher Billy_0.7593378_0240.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b52bbe4791277c64a17e073032e848ac30b9c54f98721b00daebf3d30bfdbebf +size 19011 diff --git a/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Carl Barks_0.6923666_0548.jpg b/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Carl Barks_0.6923666_0548.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9b9b72e665a464a740a1ec000223066768e4eedb --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Carl Barks_0.6923666_0548.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf53c022f5893d4ecc080a917aa880db230bc4b9ef4797a6932daf756a7d88ea +size 20233 diff --git a/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Carl Larsson_0.7296195_0413.jpg b/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Carl Larsson_0.7296195_0413.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d99051514aece6c2506eb890b2208bb4f2bc49c7 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Carl Larsson_0.7296195_0413.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:932f9bd5d9aba0bf58c464346c70cb9ad691007317dac79145434a4832aa5a65 +size 15867 diff --git a/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Casey Weldon_0.6047672_1502.jpg b/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Casey Weldon_0.6047672_1502.jpg new file mode 100644 index 0000000000000000000000000000000000000000..06a28af38d7ff5190699f5f978027f160f3f44ef --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Casey Weldon_0.6047672_1502.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:72363eabea4cc58b614064fe01bfcc76f493f1e3951831e349b1b5f104261f49 +size 15621 diff --git a/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Charles Vess_0.6512271_1039.jpg b/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Charles Vess_0.6512271_1039.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8b33eab2c257d2d472c521b83857f2da90d43266 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Charles Vess_0.6512271_1039.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c62aec1427fd9e5d44701fb2b3a283e8f468f4fa5d19264e012892d97766f4e0 +size 15217 diff --git a/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Chip Zdarsky_0.6381826_1174.jpg b/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Chip Zdarsky_0.6381826_1174.jpg new file mode 100644 index 0000000000000000000000000000000000000000..042122fd64bd6918cf0f2cb3d6abb4a54be37fb9 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Chip Zdarsky_0.6381826_1174.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33bd41673efbb860c51dfddd80810f79246767e8723e0b639ab77c3712ff5255 +size 21197 diff --git a/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Conrad Roset_0.8190752_0070.jpg b/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Conrad Roset_0.8190752_0070.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b83e33e01545cc3d481dc3b228393d96c1e6320a --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Conrad Roset_0.8190752_0070.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2503b7336591384445a6028702131cd48054b5571270d100905509d00b99fecc +size 14824 diff --git a/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Cory Loftis_0.6168619_1390.jpg b/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Cory Loftis_0.6168619_1390.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b911e72ba1a7281edd8812c6e73287d58a9eca47 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Cory Loftis_0.6168619_1390.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b91e677af0863c30a0003947ad27cc2996c73cc9bb9e4f89da6ed3a8d972d20 +size 11952 diff --git a/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Cyril Rolando_0.68644965_0620.jpg b/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Cyril Rolando_0.68644965_0620.jpg new file mode 100644 index 0000000000000000000000000000000000000000..63197ae6012151884ae2a4d42517045b9bea750d --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Cyril Rolando_0.68644965_0620.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:48ee9a341781a0b46e88a01b2a1c0d8855d7958bd29fd8089b5bcd950f797daf +size 12968 diff --git a/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Dan Mumford_0.5843051_1716.jpg b/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Dan Mumford_0.5843051_1716.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ee12d62d54cebba44dfa95a4fdd524e5856e1599 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Dan Mumford_0.5843051_1716.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:645c746ca2f476173b54b19416f7cfec5e118c4ba36e744dbcece6d54b4f717c +size 21443 diff --git a/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Dave McKean_0.6438012_1122.jpg b/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Dave McKean_0.6438012_1122.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f295899eec07def2568ff375fcb44b1f8c18c785 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Dave McKean_0.6438012_1122.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c0e6e18ba65298de97e8c1aa0a5f82a9f54f85aa1a44b3679e5dd7562f326ce0 +size 13378 diff --git a/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Debbie Criswell_0.7895031_0136.jpg b/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Debbie Criswell_0.7895031_0136.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a2a288e4249e6f1fd2a796955a6f0bd5f4c830e5 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Debbie Criswell_0.7895031_0136.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6767f1a7329fd9891860635d82b69fe700acec7f6421ea248c4e243bdf12fea3 +size 16909 diff --git a/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Dmitry Kustanovich_0.7241322_0467.jpg b/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Dmitry Kustanovich_0.7241322_0467.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5e69d8a1eaa57448a0f3efbb03d3e5f2bd7120e2 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Dmitry Kustanovich_0.7241322_0467.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b7d101ed40ac27409a531a73cf6d696cea8da5078e89e5f14aa760f6af0ca75 +size 22710 diff --git a/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Don Bluth_0.6693046_0824.jpg b/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Don Bluth_0.6693046_0824.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fa893232a7fc81b61e24dec2a4ed994bba21df54 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Don Bluth_0.6693046_0824.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c8eca4a26ad4cacfa7965ec501778fd1366a3c6c47f98a73440ae5e05376a1bf +size 15357 diff --git a/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Dustin Nguyen_0.64909416_1068.jpg b/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Dustin Nguyen_0.64909416_1068.jpg new file mode 100644 index 0000000000000000000000000000000000000000..39bddae29f2a70cf407faf2231278412749e5148 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Dustin Nguyen_0.64909416_1068.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bebf9b77e6402eee7718f68069bc6ac7ef9bd381493173aa62d15ab0081d10ed +size 18885 diff --git a/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_E. H. Shepard_0.7091189_0378.jpg b/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_E. H. Shepard_0.7091189_0378.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4d164d8c9bcf805b61b750687624fac67f79f3da --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_E. H. Shepard_0.7091189_0378.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c24fad7e256dbaa2580e1f69a5c2fb2c4c87a2852cae3682e7046e9721d7dbe6 +size 16308 diff --git a/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Ed Mell_0.6637067_0452.jpg b/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Ed Mell_0.6637067_0452.jpg new file mode 100644 index 0000000000000000000000000000000000000000..53563e63afcb28618bf66fc95fba565a52bda345 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Ed Mell_0.6637067_0452.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c5a50caed4ea3c557971836aeac2bbd0cc985db44bfec4f2198c5045a085cae7 +size 12042 diff --git a/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Ernie Barnes_0.6307126_1250.jpg b/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Ernie Barnes_0.6307126_1250.jpg new file mode 100644 index 0000000000000000000000000000000000000000..949472d31c658e59b04fc80d9c5d6c0ae2ee1509 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Ernie Barnes_0.6307126_1250.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:277b2c34187dfa9391a8b502e06d60c7b87055e7eab511c74e32516773913339 +size 14141 diff --git a/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Ethan Van Sciver_0.65442884_1006.jpg b/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Ethan Van Sciver_0.65442884_1006.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8fb1d096f270461412812e2c3fae64241b9f4fcb --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Ethan Van Sciver_0.65442884_1006.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9002a8f6f6dfa4d02a83fda93e16a5801f2df6481cf933baa5fdf012c9b0f074 +size 24120 diff --git a/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Gabriel Ba_0.6773366_0719.jpg b/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Gabriel Ba_0.6773366_0719.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a303cb772cb3b7f73b0401c6894754ba1c6e7c87 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Gabriel Ba_0.6773366_0719.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:27eb9aefc93452fc2de29f12bb9e0c44f5b8cea27374993b0fdb407c7f302ab8 +size 25617 diff --git a/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Glen Keane_0.60287905_1527.jpg b/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Glen Keane_0.60287905_1527.jpg new file mode 100644 index 0000000000000000000000000000000000000000..dc93d66a72cc7ad864c9ddc384dcaa81ac29071a --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Glen Keane_0.60287905_1527.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87fe3775e1e3c7735f5adbdfe8748791fb9e174cb96fb38f041399ceb106ac63 +size 14687 diff --git a/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Goro Fujita_0.6346491_1214.jpg b/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Goro Fujita_0.6346491_1214.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b8df70dfea9ea0b66700b1e48afb353bab3a4fea --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Goro Fujita_0.6346491_1214.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4aca08587058f1e45483f912751082ffd24ac8774e1bba77bee25284728ca459 +size 7175 diff --git a/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Guido Crepax_0.7835321_0152.jpg b/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Guido Crepax_0.7835321_0152.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2bf5b2229733096ac85b312d36c9bfa3bf82f29d --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Guido Crepax_0.7835321_0152.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f93c91539231491ffa01808fdce69438159ffe9410ad39ca982e643d9d172be3 +size 22039 diff --git a/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Gustaf Tenggren_0.7006041_0455.jpg b/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Gustaf Tenggren_0.7006041_0455.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4ff5f262aa568c2d2d4d178e50fcba6c2c000d1f --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Gustaf Tenggren_0.7006041_0455.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e7b01786871da202fd12808bf6c9ccebddeaa0d2eb3679c67e6585d1c766c802 +size 12738 diff --git a/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Hanna-Barbera_0.6588123_0948.jpg b/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Hanna-Barbera_0.6588123_0948.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1ee75da5c8b53cc2419ca86e6f9843fcff4142cc --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Hanna-Barbera_0.6588123_0948.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1bec49895e84c4a470f1c9cc5b9654cbde73b34e24a2e1875b406b810f263361 +size 17333 diff --git a/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Harry Clarke_0.7688428_0206.jpg b/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Harry Clarke_0.7688428_0206.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4812589b946dd42b1ff61ae6186c06fe84be2897 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Harry Clarke_0.7688428_0206.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eaec5466ddcfc6a0e6d78a51353dc2042b339322c0c60b748d2a7f16cc8c4567 +size 23227 diff --git a/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Harvey Kurtzman_0.64772683_1083.jpg b/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Harvey Kurtzman_0.64772683_1083.jpg new file mode 100644 index 0000000000000000000000000000000000000000..27be27120390202960f20e4f2180987a3cccf5de --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Harvey Kurtzman_0.64772683_1083.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da4dad340e031a326828eefcca4e58877e75837ea451ce8c22d3afeb6515e90e +size 25450 diff --git a/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Henri De Toulouse Lautrec_0.7294263_0415.jpg b/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Henri De Toulouse Lautrec_0.7294263_0415.jpg new file mode 100644 index 0000000000000000000000000000000000000000..34a100deec39c7b8385bede6673ddfd24896c62f --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Henri De Toulouse Lautrec_0.7294263_0415.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e4ecbdf2c987deaffe2a5a4427e72674088a15800748a4555ce47482ffa1e9f1 +size 12175 diff --git a/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Hiroshi Nagai_0.847129_0034.jpg b/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Hiroshi Nagai_0.847129_0034.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1403c9ee1ad353bd5ee29aa41c4d8f6ccf422203 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Hiroshi Nagai_0.847129_0034.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:57eed3703eba3e3a60d9a1dbb75945dc7290db2eafddb7ac7ef0c3471faa0831 +size 10995 diff --git a/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Howard Chaykin_0.7213998_0489.jpg b/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Howard Chaykin_0.7213998_0489.jpg new file mode 100644 index 0000000000000000000000000000000000000000..62abe9e8378517ea4cc9a5fadb4b68a90138b077 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Howard Chaykin_0.7213998_0489.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:56baf7da27088f3c3da71fb9cc917aa797f2e4bdbec5cdcdd3e7d98fbf2eed42 +size 21121 diff --git a/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Jack Kirby_0.6467424_1097.jpg b/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Jack Kirby_0.6467424_1097.jpg new file mode 100644 index 0000000000000000000000000000000000000000..12e5f25c0009a7f2310a0c9f7ae77dbc623a15ae --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Jack Kirby_0.6467424_1097.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:adfe0c4f28e143578a4c676f30cf804569f514a4c2a444be887c754ac5e1e629 +size 22785 diff --git a/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_James Gilleard_0.6849431_0635.jpg b/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_James Gilleard_0.6849431_0635.jpg new file mode 100644 index 0000000000000000000000000000000000000000..94cb0b177e1891bc41491a2e54857242994fdd3d --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_James Gilleard_0.6849431_0635.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2a0a6d1ae21d22e8705b90030be7050d72e7e2d91249b9bd702f7f0612cbcf0 +size 8638 diff --git a/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Jeffrey Catherine Jones_0.7012148_0444.jpg b/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Jeffrey Catherine Jones_0.7012148_0444.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9e5c195298d3cb7e8a4d6a09df18c07f955118a3 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Jeffrey Catherine Jones_0.7012148_0444.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:edeb14457a74792ad8a64d5ba0eee5fa9a67ba28e439303bdb17cc03f4defa09 +size 9805 diff --git a/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Jeremiah Ketner_0.8075384_0100.jpg b/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Jeremiah Ketner_0.8075384_0100.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4488bde021c3dac3e22a482c39ff40e57e333623 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Jeremiah Ketner_0.8075384_0100.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3259458c3aaf97a226b88f160e3233da7871a4df4af617b70eb35086a81a8a74 +size 23628 diff --git a/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Jim Mahfood_0.6936606_0532.jpg b/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Jim Mahfood_0.6936606_0532.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6e8cd34a59c3f0c6aa7ded87d56220b914c49240 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Jim Mahfood_0.6936606_0532.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a152d451200f7ed84115abe1ca7884f3a0220cb8bd1bde8d3abde660752791e5 +size 26169 diff --git a/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_John Philip Falter_0.623418_1325.jpg b/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_John Philip Falter_0.623418_1325.jpg new file mode 100644 index 0000000000000000000000000000000000000000..58932ea328b35e2b4eaf66ba949fdb69b33a9267 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_John Philip Falter_0.623418_1325.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb2d13c7aaab776e5a22ffd590cbbe433df66b69913f1b34cae5d35214c82d83 +size 15158 diff --git a/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Josan Gonzalez_0.6193469_1042.jpg b/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Josan Gonzalez_0.6193469_1042.jpg new file mode 100644 index 0000000000000000000000000000000000000000..28f0100644654c10697147d4cc9faf0a270b63b4 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Josan Gonzalez_0.6193469_1042.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e7795ceaba55ae0529249a6cf75d3f7f72a88e3158fe8c9cb9536c7e671dda6 +size 19167 diff --git a/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Karel Thole_0.7305395_0406.jpg b/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Karel Thole_0.7305395_0406.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7fc82dbc9a808f303ca8f819a030d436ad4c18df --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Karel Thole_0.7305395_0406.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e1aa5d8c0aa3098068870d34ff67d36e8af0a0dc96865555cb20b52a891957ad +size 12811 diff --git a/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Kaws_0.6470336_1094.jpg b/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Kaws_0.6470336_1094.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2ffe20682ac14927c77c59690129b81d2b90c1c7 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Kaws_0.6470336_1094.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5f01ead316e21de866e1e20324057f216a3ca5818b0adde1c15e1eefd12f84a +size 10474 diff --git a/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Kim Jung Gi_0.6472225_1091.jpg b/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Kim Jung Gi_0.6472225_1091.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0161691b1f1318557a646bd19ee3c1d0f88cd3d6 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Kim Jung Gi_0.6472225_1091.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c3a0443c6401cbda3b2e30544370a2cb0c6a2df18b1168a46dcc87d10e853035 +size 13186 diff --git a/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Klaus Janson_0.64129144_1141.jpg b/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Klaus Janson_0.64129144_1141.jpg new file mode 100644 index 0000000000000000000000000000000000000000..076d0cc2d125c5a558fe0943e0f69de3b4df252e --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Klaus Janson_0.64129144_1141.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:063a0f51d34bf3bc1c8c0e361463cf91e6a4e005f662d48399f1fd100287c7cb +size 23018 diff --git a/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Laurie Greasley_0.70072114_0452.jpg b/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Laurie Greasley_0.70072114_0452.jpg new file mode 100644 index 0000000000000000000000000000000000000000..abf1ba2a9e55983a7e3defbc1e623c84e8d09733 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Laurie Greasley_0.70072114_0452.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ad93d576656f8f12e36e44fb0ad52161070fd48fe455bbbcf3a2782de6a6b1c +size 22331 diff --git a/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Lisa Frank_0.7892591_0139.jpg b/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Lisa Frank_0.7892591_0139.jpg new file mode 100644 index 0000000000000000000000000000000000000000..30801a68a83d318128874a7df99e049a6fdf4ff8 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Lisa Frank_0.7892591_0139.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af1b96fa5c7f1f6762e76965b7f98063bb87f6d395c30c058ddfd1143c58199c +size 21092 diff --git a/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_M.W. Kaluta_0.71612585_0533.jpg b/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_M.W. Kaluta_0.71612585_0533.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bcf9ad9c4758ff8765eb16ce81d13de1133fe5a2 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_M.W. Kaluta_0.71612585_0533.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:809c5bc14d06c745596bdca8aa605ebfccc6cb402282c22ccddf25de2f5ef341 +size 17063 diff --git a/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Marc Davis_0.61837333_1376.jpg b/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Marc Davis_0.61837333_1376.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4b0935889fb9e0e7e5e09da454b86e68eabb4805 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Marc Davis_0.61837333_1376.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c59670cfe519c94d48985c21d80e5dd43c78d68ae5a5ab8b1339edbd2bdb6045 +size 15519 diff --git a/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Matt Fraction_0.58463776_1712.jpg b/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Matt Fraction_0.58463776_1712.jpg new file mode 100644 index 0000000000000000000000000000000000000000..577b113f610e3222991efe4da17b33c49fa856a8 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Matt Fraction_0.58463776_1712.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a56a1b6e38629ffc80c09cde77d58bcfe85d1e5f921c945c7fcce04cea4897b +size 20470 diff --git a/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Maurice Sendak_0.7690118_0205.jpg b/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Maurice Sendak_0.7690118_0205.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3bf35c6dc282d2ab56af8425fa433a6c94406b66 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Maurice Sendak_0.7690118_0205.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:490bc4401f2fc85be5d9664c80e44e33cd8fd0fc0c35dedf97b40bb30234aedc +size 15400 diff --git a/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Mike Deodato_0.6061201_1493.jpg b/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Mike Deodato_0.6061201_1493.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7d22df8645bf9608dc0f801229f3e8c2a46cefdb --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Mike Deodato_0.6061201_1493.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4cf48e56a8e09ede04b4e37205536a52835b4c91b2e4c527a865bbe45cd12cc0 +size 26056 diff --git a/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Mike Mayhew_0.5765857_1803.jpg b/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Mike Mayhew_0.5765857_1803.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d7b31de0726f26f32712ade0c906a90225169c4f --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Mike Mayhew_0.5765857_1803.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ffa4078bc94708812cbd8e04f7e419cc52ab5cd878fa5fa87e605251eef2fab +size 16231 diff --git a/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Mike Mignola_0.642346_1137.jpg b/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Mike Mignola_0.642346_1137.jpg new file mode 100644 index 0000000000000000000000000000000000000000..08f952eb8234170e82e9fbb7b80c768bf747a1f2 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Mike Mignola_0.642346_1137.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dac46998c27fc45ada9bed4e8cecf48ee031e9ab0ae966b3e32e36a0b2a85f57 +size 18531 diff --git a/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Milo Manara_0.6471776_1092.jpg b/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Milo Manara_0.6471776_1092.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c16c631fbcd460cc1dc9888df5382dd8f0895322 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Milo Manara_0.6471776_1092.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:595322ed539d7bf80145dd810d7383b2ca962379a3a67cc61a10f9cb5a3db4a1 +size 15947 diff --git a/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Milton Caniff_0.7905358_0134.jpg b/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Milton Caniff_0.7905358_0134.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f0b3b60a69f98df6f44aafcdeb34de90c2e2ca0d --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Milton Caniff_0.7905358_0134.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a6777fabe6cb1f690314d69c6cf342d1b91c60ee12fae7e1629d2c58a5deedfd +size 21832 diff --git a/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_NHK Animation_0.6907677_0566.jpg b/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_NHK Animation_0.6907677_0566.jpg new file mode 100644 index 0000000000000000000000000000000000000000..029c4d535881f27a145475dbe29da676705ced17 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_NHK Animation_0.6907677_0566.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d6791303cf51b0c373fe1a21a9ba5ac5e9719ea4c4f73e935c5a71aa06a44884 +size 11666 diff --git a/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Osamu Tezuka_0.8005524_0113.jpg b/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Osamu Tezuka_0.8005524_0113.jpg new file mode 100644 index 0000000000000000000000000000000000000000..cf9cdfb1e4b39891270835237a791d1b872cfed0 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Osamu Tezuka_0.8005524_0113.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e4623fc5ace2a51f886292aa04e60bf12a94f3925e22107733a9a25fe1a2309 +size 16257 diff --git a/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Paul Lehr_0.70854837_0231.jpg b/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Paul Lehr_0.70854837_0231.jpg new file mode 100644 index 0000000000000000000000000000000000000000..07164f4983c30ddc3eb5dc25972c8140d3ee2295 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Paul Lehr_0.70854837_0231.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:10f2b12cf3d07ee78c88b914f5e6991adf341f4d89d34454ad9e5295541c1a0d +size 11526 diff --git a/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Peter De Seve_0.6616659_0916.jpg b/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Peter De Seve_0.6616659_0916.jpg new file mode 100644 index 0000000000000000000000000000000000000000..88a6e05beec347b0e14f2e5ee7a5a1de55bc3999 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Peter De Seve_0.6616659_0916.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fef2ea1000a5572999c8b7299185c73d5ee84a648e54f78cca4a988fd82d7c0e +size 12573 diff --git a/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Peter Wileman_0.71271706_0571.jpg b/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Peter Wileman_0.71271706_0571.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4a3e742282eb05806b63f618f31679896e6ca906 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Peter Wileman_0.71271706_0571.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:96e2103f8bd2b100d2e8b71132897114ee0e560c1ff8be1a8a5ff29a3e9165a5 +size 9995 diff --git a/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Phil Jimenez_0.60625625_1491.jpg b/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Phil Jimenez_0.60625625_1491.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c6bad41fae901e39907de5c117429ff21a2f6e78 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Phil Jimenez_0.60625625_1491.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0de6eeec18712acbc52eefcf669d3606db244891b397ff9f5f85d88a1e58d7cc +size 23090 diff --git a/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Philippe Druillet_0.7363382_0367.jpg b/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Philippe Druillet_0.7363382_0367.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8fedf02f11be0662d351dd47c0d50946b8b71549 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Philippe Druillet_0.7363382_0367.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a57feda321912eb05f5d98517c5a9b6fbf25c54fb0fe272883875f0af7b7c63e +size 27505 diff --git a/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Pixar Concept Artists_0.6667752_0851.jpg b/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Pixar Concept Artists_0.6667752_0851.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a4c976bd120dd8902741ef6c077aaaa02a50d0ce --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Pixar Concept Artists_0.6667752_0851.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:46ef50ceca2173ff1923ac7a554c9dd1cef51a13dc77d824cc825059858f0c11 +size 11080 diff --git a/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Pixar_0.6495793_1063.jpg b/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Pixar_0.6495793_1063.jpg new file mode 100644 index 0000000000000000000000000000000000000000..17db85c023b75b338c86d24fd30222c21bb8b07c --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Pixar_0.6495793_1063.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:351f70a8164f22b2efb6878a60a0f64c1d537ad10afeabcab646c5ab19ad5f82 +size 12407 diff --git a/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Rebecca Guay_0.72439146_0463.jpg b/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Rebecca Guay_0.72439146_0463.jpg new file mode 100644 index 0000000000000000000000000000000000000000..19a1f994a174415f58f289cdebb000a0a9302e5a --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Rebecca Guay_0.72439146_0463.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:94b2c711b8a921c4d798a50135b8eb1034ab4106916a51ba6a7ba72689e2875c +size 19641 diff --git a/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Roy Lichtenstein_0.98272276_0002.jpg b/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Roy Lichtenstein_0.98272276_0002.jpg new file mode 100644 index 0000000000000000000000000000000000000000..df43ef1876ca7ba3483f4507c1956804ac73a651 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Roy Lichtenstein_0.98272276_0002.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7d87d608250ff9608150ad913c7b9c0cdd2fbb88d889382acdea6ce4f8b434d9 +size 22556 diff --git a/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Siya Oum_0.6435919_1127.jpg b/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Siya Oum_0.6435919_1127.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ea5f8182a78174d73d214b205d646ac53c0d5c4f --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Siya Oum_0.6435919_1127.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6db9ed8c2ecb78ed614f714dc68373f72b4073297391e8539f0c44911010e75e +size 21800 diff --git a/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Skottie Young_0.5440119_2107.jpg b/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Skottie Young_0.5440119_2107.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6171181c1dbb58f4076048b6a937acfc87facf35 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Skottie Young_0.5440119_2107.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ebbdf14e2519852fa2c8dfa00ce71ef9a8a2177eff37c71fe75f1c026b83c070 +size 21241 diff --git a/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Tatsuro Kiuchi_0.8597267_0023.jpg b/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Tatsuro Kiuchi_0.8597267_0023.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f604a5281e73aedf8da729b73a62707b19273549 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Tatsuro Kiuchi_0.8597267_0023.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f3938dcfe9f057024f1cd9b99dfdbf19684d099ef126837034fc51c562d92583 +size 9534 diff --git a/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Terada Katsuya_0.6944026_0524.jpg b/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Terada Katsuya_0.6944026_0524.jpg new file mode 100644 index 0000000000000000000000000000000000000000..59636b60cd3f0194ec371366ede82e6c797c35c2 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Terada Katsuya_0.6944026_0524.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b6f59865f9d72ae58ca2400755472b0879b727db646ebb111bcfb118961ad7f +size 13779 diff --git a/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Tex Avery_0.6104007_1454.jpg b/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Tex Avery_0.6104007_1454.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5e644a545717144b37ef9f2e3211d01633369c1e --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Tex Avery_0.6104007_1454.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5cb0312a479b26f2e3d984166aa7bac5c8037fb99fe91bc242dc702c1c8d6f12 +size 14453 diff --git a/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Todd McFarlane_0.6647763_0887.jpg b/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Todd McFarlane_0.6647763_0887.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9557cb8db46b88999a7c4147294b8c7568297aa4 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Todd McFarlane_0.6647763_0887.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a98a14728b105d6f3c17977f08f6cf99150c6dd9b5f6697e1f1e466411246d4 +size 23332 diff --git a/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Tomer Hanuka_0.6643152_0891.jpg b/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Tomer Hanuka_0.6643152_0891.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8925129fbba66a33519e6e35a08da0c57813f292 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Tomer Hanuka_0.6643152_0891.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b014e9a5d5ee59fc0c3b8aaff522c6ae28de0f25f0d864f7db11ecbfc4be210 +size 14157 diff --git a/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Tony DiTerlizzi_0.6114657_1438.jpg b/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Tony DiTerlizzi_0.6114657_1438.jpg new file mode 100644 index 0000000000000000000000000000000000000000..07ec646adfae6bb5e60f6a225c2fd0fe685cabc7 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Tony DiTerlizzi_0.6114657_1438.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd2856147e9985fba045fb40394380bdbc6384191ed2a7acd5a6552ca2fb2c5f +size 20640 diff --git a/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Ub Iwerks_0.625396_1301.jpg b/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Ub Iwerks_0.625396_1301.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c9242da19ff3d0e002a65dae78f76d0850520808 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Ub Iwerks_0.625396_1301.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:65d73dec182846ff506adb53cb5a73c3dbdf0e6fe526c2cbb1e4269c7ec7f68a +size 21938 diff --git a/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Victo Ngai_0.81195843_0088.jpg b/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Victo Ngai_0.81195843_0088.jpg new file mode 100644 index 0000000000000000000000000000000000000000..60fcb38603bf576202ec8a2c56499512287ae5cd --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Victo Ngai_0.81195843_0088.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a6e61b67093b9293a37182449dcbd3e92a58bafdfa7cdb624b420a583153827 +size 11131 diff --git a/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_W. Heath Robinson_0.75374347_0265.jpg b/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_W. Heath Robinson_0.75374347_0265.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d34fb378e18417af9fabf76fc470d8efcc94034a --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_W. Heath Robinson_0.75374347_0265.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:88a2035ce0e657a39cd86e30f7a4021609e332380721f19c542583b5c7bb52e6 +size 16448 diff --git a/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Will Eisner_0.63349223_1224.jpg b/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Will Eisner_0.63349223_1224.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c05e61853494839b4761a518b32903b69f796238 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_Will Eisner_0.63349223_1224.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:64d21264caf6911c52c8ee59a1c688f12bd98d875a7f3d3e8e4e4e5367426d40 +size 24569 diff --git a/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_theCHAMBA_0.6742506_0759.jpg b/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_theCHAMBA_0.6742506_0759.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3ad1b78862a04c95fe80d7c1086a8a610075b388 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/cartoon/cartoon_theCHAMBA_0.6742506_0759.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca6312838bf0e691eda7168f2c28caf09a26e4c4267e78dfb219c0d67168f967 +size 17233 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_A.D.M. Cooper_0.53244877_2201.jpg b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_A.D.M. Cooper_0.53244877_2201.jpg new file mode 100644 index 0000000000000000000000000000000000000000..13c7ce8fe4c77c325514d210e62bb6b5c5ac087d --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_A.D.M. Cooper_0.53244877_2201.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:75944d4a58eb46dbd9ac3e41a3e2a61ff3ecb68489aea5a0aedf0debdb081044 +size 12537 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Abraham_Mintchine_0.46088243_2639.jpg b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Abraham_Mintchine_0.46088243_2639.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ea33eba433230afe658828ae66327688db1b430a --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Abraham_Mintchine_0.46088243_2639.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f9a1faa1e897a6ee2070effd93f55cfb690fde1855e3c316dd84a649027db1be +size 9930 diff --git "a/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Adolf Ulric Wertm\303\274ller_0.5278296_2233.jpg" "b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Adolf Ulric Wertm\303\274ller_0.5278296_2233.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..d824b19cebc756c1bc5402924675218b9bb4ef03 --- /dev/null +++ "b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Adolf Ulric Wertm\303\274ller_0.5278296_2233.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f52b0184baf9aeefbe50ce7f256955b6a1d26ec339abfab7a44ac614e369874 +size 13624 diff --git "a/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Adolf W\303\266lfli_0.5372333_1961.jpg" "b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Adolf W\303\266lfli_0.5372333_1961.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..7ddcbdbd620f92eebeefc64a9bb290162ab63ace --- /dev/null +++ "b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Adolf W\303\266lfli_0.5372333_1961.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:364b2932de050a4b88d5d289aa676904184e0925c0b55b82770196102861967e +size 11108 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Adrian Ghenie_0.6193521_1366.jpg b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Adrian Ghenie_0.6193521_1366.jpg new file mode 100644 index 0000000000000000000000000000000000000000..dc3c99e0ad9448655b0a4498226cc44e5c31085d --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Adrian Ghenie_0.6193521_1366.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d9b9660a3eb8c0fe3df43f0afd3038143214caaa663bc0dbb5bf7bb83651a53e +size 13491 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Adrian Smith_0.4716923_2576.jpg b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Adrian Smith_0.4716923_2576.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e7d60011e5e2ac1d7a0e89177bbdc9017dd888d6 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Adrian Smith_0.4716923_2576.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:50f8db92819d33124b36b0750213f55afc36122b3647164e45bf4a831e957e8e +size 16316 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Agnes Cecile_0.6192814_1367.jpg b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Agnes Cecile_0.6192814_1367.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ba6f9fcd0ae4f6f04fd2e27a5f1a76dec6ed09d7 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Agnes Cecile_0.6192814_1367.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e23410e14b206d1f175749311673162e3d527c96d0837a75a6d5fc9e62a2469f +size 14480 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Ahmed Yacoubi_0.544767_2099.jpg b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Ahmed Yacoubi_0.544767_2099.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2e4f62169be83ccd59630ed149ed6cf176a11b0e --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Ahmed Yacoubi_0.544767_2099.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1903091522e36a7f218a8f38373883579d5f116be4b95547fc19b6bf990ed98f +size 11272 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Ai Weiwei_0.5576034_1978.jpg b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Ai Weiwei_0.5576034_1978.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5baf76642870882b66f702d7de7edb2599f6ef26 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Ai Weiwei_0.5576034_1978.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a57dc2142b71e850645a249aab56f43c7975fcd7e179bce42e809dac643eb1e +size 11646 diff --git "a/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Aim\303\251 Barraud_0.55265915_2023.jpg" "b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Aim\303\251 Barraud_0.55265915_2023.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..7a79e6b9a22a42932c5298a79bd14d7a286b320c --- /dev/null +++ "b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Aim\303\251 Barraud_0.55265915_2023.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:66bd38afd1fbb2afb99f6b3bbb9d7032a0b55ec2ae834b6e5ae661bcf04bd474 +size 11374 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Akos Major_0.7103802_0364.jpg b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Akos Major_0.7103802_0364.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6b1aea686920bef01066408ab9db10332e19c7f4 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Akos Major_0.7103802_0364.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b9a803301169b5d7af145e970fb7c880cd370e13456085b0c7e8396ac992daae +size 10156 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Alan Parry_0.5694952_1875.jpg b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Alan Parry_0.5694952_1875.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4f4efb8c52fec458fee26c0af0dcf89fb45d72e5 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Alan Parry_0.5694952_1875.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c18a84ba9085c27ae508ba75b04df81076f7c5ef18c5c596b315ebcaca3db94b +size 10646 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Alasdair McLellan_0.6898454_0575.jpg b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Alasdair McLellan_0.6898454_0575.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fdbc99fecd5c0aa7eca66cd83dfe8c6271004f79 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Alasdair McLellan_0.6898454_0575.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:36b4e024683a4eac5c873118bf45db0454b5d6f1a4fd573df4a6febc24088cc0 +size 13212 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Albert Welti_0.5425134_2123.jpg b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Albert Welti_0.5425134_2123.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bedb0b1002c3c197be0158e06a583b20b2a8b1b2 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Albert Welti_0.5425134_2123.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5b903a57043399b77c7bba84d197e9dd5802bff552817b92a77606ec7937af6 +size 13759 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Alec Soth_0.5597321_0653.jpg b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Alec Soth_0.5597321_0653.jpg new file mode 100644 index 0000000000000000000000000000000000000000..591f210e616b552cad8f5dd39b286b45b3d89d58 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Alec Soth_0.5597321_0653.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c4414863e8fb77c74c179c32b356a3ec30f483ba61f5f54502c612446dc5c535 +size 13114 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Alejandro Jodorowsky_0.5429065_2115.jpg b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Alejandro Jodorowsky_0.5429065_2115.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e19a894aae4f4ab3e40c6ffce7fe28493ab32fc5 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Alejandro Jodorowsky_0.5429065_2115.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4602fadbb8a30566338f1ee9e7b29f32bcbbe438f78bf1b86b01240f4fcee168 +size 13496 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Alessio Albi_0.6752633_0744.jpg b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Alessio Albi_0.6752633_0744.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b4856ed60c969f27d39e276c99f566fdaad62f9c --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Alessio Albi_0.6752633_0744.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff94263966f84f4aef01d74ca015c0893e23e5e993e11bf1067a176e6c53eddb +size 11663 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Alex Andreev_0.6442978_0419.jpg b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Alex Andreev_0.6442978_0419.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7a436a29b8616a78f2d33f3e1312da168353e4ce --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Alex Andreev_0.6442978_0419.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d96fe8c9b5dfb5f4895d84b5b0740cbe5e8057fa49559931d0f3a4e7388ebe00 +size 7845 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Alex Gross_0.60837066_1472.jpg b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Alex Gross_0.60837066_1472.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2a13e567ed196fccb5a24f69defae1b05dbbc65b --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Alex Gross_0.60837066_1472.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:683053306ffb59515db2c61ce2f6fcf7bacdff3b9ff7a6618a8f52eb34173710 +size 11957 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Alex Howitt_0.52858865_0826.jpg b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Alex Howitt_0.52858865_0826.jpg new file mode 100644 index 0000000000000000000000000000000000000000..20ce972012d4a969b5c1c12369e1f5af0860dd31 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Alex Howitt_0.52858865_0826.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba91f3dfa7333788ac8978933db55d02abc8bb5ae1e22dc38003be4022e48ad0 +size 9085 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Alex Russell Flint_0.5900352_1656.jpg b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Alex Russell Flint_0.5900352_1656.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e39b4622d3f90fead30788fc1b28bc83e85ab221 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Alex Russell Flint_0.5900352_1656.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee4b9bde2636ad02227fa87ff131f8bc0e355e39f121736ea484cdaf4e56182e +size 9595 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Alex Timmermans_0.64443207_0224.jpg b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Alex Timmermans_0.64443207_0224.jpg new file mode 100644 index 0000000000000000000000000000000000000000..846c92591b260ce6f0a8f10d740225f681217956 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Alex Timmermans_0.64443207_0224.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:48945f7b36d38b10c6c4d5e38bb2056085f7ff1bd3e0efe364cbc971b5615905 +size 12207 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Alex Toth_0.6305541_1252.jpg b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Alex Toth_0.6305541_1252.jpg new file mode 100644 index 0000000000000000000000000000000000000000..520be811119dca5713f7a46640b6e117d0dcb61d --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Alex Toth_0.6305541_1252.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ad8e74cbdffb0b2ae74418dd962b259227c67614a7b63b9b8a6b7e7fb4d9b5e +size 25169 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Alexander Runciman_0.5944449_1605.jpg b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Alexander Runciman_0.5944449_1605.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7e60092dce51707aab340e4b82730d59dffbb5c4 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Alexander Runciman_0.5944449_1605.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13b459d0c3cef73d32ac9ff2685a342ca212a1b530da6f89c68190bc8f4663b8 +size 9606 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Alfred East_0.5296565_2220.jpg b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Alfred East_0.5296565_2220.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e4a0b0a2451e155df1efb36d195e729c15a4bcdf --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Alfred East_0.5296565_2220.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a1d6604e7848aed1e03a403d5520c88fdf176527a71df0919bf918856e3605f9 +size 11708 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Alfred Janes_0.5264481_2244.jpg b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Alfred Janes_0.5264481_2244.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bac19c8eb8bea8a61a5a043188d0e882fbd79eda --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Alfred Janes_0.5264481_2244.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5e10b7196bf695048fc9fa2819aaf0b9046b3804d39db4c4b56c5af66ffdaeb +size 12144 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Alfredo Jaar_0.6952965_0511.jpg b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Alfredo Jaar_0.6952965_0511.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a8877b11bb80796c35fc53539b5b19624c1b864f --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Alfredo Jaar_0.6952965_0511.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca799227a9f2580c3437bcc0cecb31b0eb23dc4e64ad7d62523f4661075f957c +size 13475 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Alice Prin_0.54435575_2101.jpg b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Alice Prin_0.54435575_2101.jpg new file mode 100644 index 0000000000000000000000000000000000000000..38acebcd877798ec9f6618632fa31d3fc949e4db --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Alice Prin_0.54435575_2101.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:427bfca5a1ded0b4b97d54a0f8433f580fe43959fb6e53c5f63be8d890a30146 +size 13197 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Alison Kinnaird_0.6306353_1251.jpg b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Alison Kinnaird_0.6306353_1251.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7e3514f72278c2e0d53efdc82d21848b50d8a2b4 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Alison Kinnaird_0.6306353_1251.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f0b737bd6fd9b0fa93abfcba25e5402af70a5fdca0ea0391a16cead96d1c4a29 +size 12954 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Aliza Razell_0.5863178_1108.jpg b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Aliza Razell_0.5863178_1108.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ed4820048b9b0feb1f0417e6646981ba4a8634be --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Aliza Razell_0.5863178_1108.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:886131a77b6cfefe8d4d44587c8df33fe11facaebce95e02e243ee952506ac44 +size 10396 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Allie Brosh_0.6042061_1511.jpg b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Allie Brosh_0.6042061_1511.jpg new file mode 100644 index 0000000000000000000000000000000000000000..47e7d6afd76c2b1c9ed041169d28de2b279cc004 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Allie Brosh_0.6042061_1511.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b9dcab8bec5d103fa4316be6fb05516c9123207bb627d6e3968ff87f26ab626 +size 19918 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Allison Bechdel_0.58383805_1725.jpg b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Allison Bechdel_0.58383805_1725.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b3230edf19a9a9d9e5809e479b8674b36ef0b9e4 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Allison Bechdel_0.58383805_1725.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:29a779db25ea551dd13abd231c32f801d36b486b6dbd7ea9fc25717c9d2594c1 +size 16601 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Alson S. Clark_0.5278568_2232.jpg b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Alson S. Clark_0.5278568_2232.jpg new file mode 100644 index 0000000000000000000000000000000000000000..dbb95e32622e593e64dd87fa7e42378e346a1fdd --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Alson S. Clark_0.5278568_2232.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1fdd23179f46e656836d63876ac23c99310bd54a21b47fb457e5f556d7bb0685 +size 12801 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Alvar Aalto_0.61122143_1441.jpg b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Alvar Aalto_0.61122143_1441.jpg new file mode 100644 index 0000000000000000000000000000000000000000..eee891b1d4e08f9a034501a69632652144b9e36d --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Alvar Aalto_0.61122143_1441.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:31ef0b98268da2dbe45e69aa976ddc63c61cf7feb2877c5aca8d8edf8c1c7eac +size 9878 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Alvaro Siza_0.58406967_1718.jpg b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Alvaro Siza_0.58406967_1718.jpg new file mode 100644 index 0000000000000000000000000000000000000000..60930d965a6acab28b5d5b794641b77baee522a7 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Alvaro Siza_0.58406967_1718.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:679796c066d7c949cadc1ea1fd1735d3b6d0256953c900a4741b68914a12f330 +size 10630 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Amalia Lindegren_0.5471987_2081.jpg b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Amalia Lindegren_0.5471987_2081.jpg new file mode 100644 index 0000000000000000000000000000000000000000..16f1e43ef55b689c540ee9eea6fcaab0c7dbe48b --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Amalia Lindegren_0.5471987_2081.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fbb4564e67e1dc29bc6b9f5654e20ed82137879cb16316d73d709481caff1bfe +size 11924 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Amandine Van Ray_0.6174208_1228.jpg b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Amandine Van Ray_0.6174208_1228.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1ab02203ef42af8856d7241ebb7acd75eb757f18 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Amandine Van Ray_0.6174208_1228.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c3033378f5709c075f6b0564a7c0ed9691874653281c43811a2ad76794ee4f3f +size 10314 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Ambrosius Bosschaert_0.67364097_0767.jpg b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Ambrosius Bosschaert_0.67364097_0767.jpg new file mode 100644 index 0000000000000000000000000000000000000000..353e7975be755284880062abc842c12946ae7381 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Ambrosius Bosschaert_0.67364097_0767.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:70709df76178ae3e37dcb4d9a8b2c10cf4e82f223e787ececa689993930526ff +size 14947 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Amy Judd_0.57142305_1861.jpg b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Amy Judd_0.57142305_1861.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c80f2b516473da9710a30dc2dcf25f44f59546c1 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Amy Judd_0.57142305_1861.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6077d54b8a16e0397eecf25d3c62b83a1552c3a048ac8ca273aa1d08a7d292ce +size 8729 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Anato Finnstark_0.6744919_0754.jpg b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Anato Finnstark_0.6744919_0754.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c2ebaa21b731941e8ac8bc047264d2615fa1255e --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Anato Finnstark_0.6744919_0754.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:040975a6a8a1dddb19f9bd8e9e23c97da1f6182e0f2d670324799d3aa13ac548 +size 10723 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Andre De Dienes_0.5683014_0292.jpg b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Andre De Dienes_0.5683014_0292.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3e47134eb3bb4afeefdd996a5af8092d93a1dac9 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Andre De Dienes_0.5683014_0292.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:00966df42cce9fc6462ca7c0bc9e7a461f63406e693435030d3bcbd400265ae1 +size 12204 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Andreas Gursky_0.67610145_0735.jpg b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Andreas Gursky_0.67610145_0735.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7c4e39e3d6e8671a3feaf4d336f88ef3d9d49956 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Andreas Gursky_0.67610145_0735.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77dc66dd13e92d3b5344663c09c316748e4543a9e0f85369ec4d6ba39828586e +size 23892 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Andrei_Arinouchkine_0.52763486_2236.jpg b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Andrei_Arinouchkine_0.52763486_2236.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f67d78674e8463ee599e40c8100f9172a7510285 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Andrei_Arinouchkine_0.52763486_2236.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d3c0cd7b133c5866c4596d7340b1ab80224fe014cd559bc7d5c42f5f9e452ce6 +size 11498 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Andrew Robertson_0.5529603_2020.jpg b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Andrew Robertson_0.5529603_2020.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e95886a910e11f4cedaddd5c149d8132acbd8745 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Andrew Robertson_0.5529603_2020.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1726a2a3a0542a26f0b3036fec036e820d8916776fbd1f71cc12d429ddc630cf +size 9955 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Andrey Remnev_0.7041204_0424.jpg b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Andrey Remnev_0.7041204_0424.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8a58a6ab1b91d08867cda372afb77d305c010811 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Andrey Remnev_0.7041204_0424.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bafd6290b106a0b3399b831a9a9f666f7b98be4d9da9ed1fe5843b6bb9a0f680 +size 10157 diff --git "a/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Andr\303\251 Thomkins_0.5343785_1594.jpg" "b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Andr\303\251 Thomkins_0.5343785_1594.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..a66d0aa268feef2cff63af41d7200612d7d396a3 --- /dev/null +++ "b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Andr\303\251 Thomkins_0.5343785_1594.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:399822f41b931965c7dc3b59d9205fcc506466ca677b8d00e40a79fa87d93588 +size 10306 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Andy Goldsworthy_0.7307565_0403.jpg b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Andy Goldsworthy_0.7307565_0403.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9090acc1573c0393f46fb30b28018f6223b8f90e --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Andy Goldsworthy_0.7307565_0403.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:03dc63c4f6ed7992b5060c742a844f41b8a81a05a3f800f3dc11ab05d6e10eb3 +size 19211 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Angela Barrett_0.55976534_1812.jpg b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Angela Barrett_0.55976534_1812.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ba8f345dcf545ce567f48201fe011039a625fe32 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Angela Barrett_0.55976534_1812.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b96a9a0a8f18f4796141cd6cc55f481167bb8dd1218a6977a87a894c7dd3165 +size 12352 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Angus McKie_0.61487424_1406.jpg b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Angus McKie_0.61487424_1406.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a8ce62906ef4c887b442f0a7b8ea23dfde6ae1ce --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Angus McKie_0.61487424_1406.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:32d5c08a2633bae4293722e6b9a5859cb9a77ec684930c11721642e6df7abf80 +size 17266 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Anish Kapoor_0.6067015_1485.jpg b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Anish Kapoor_0.6067015_1485.jpg new file mode 100644 index 0000000000000000000000000000000000000000..925a2ce11a1cb14d157b3cde52b6a9a29b610fa8 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Anish Kapoor_0.6067015_1485.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb61b49cfb0921e8166ea1a74817572083ac1240883497c3d39868bf1427e77a +size 14587 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Anja Millen_0.6064488_0615.jpg b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Anja Millen_0.6064488_0615.jpg new file mode 100644 index 0000000000000000000000000000000000000000..567fcbc81ae99b31eaa80be373757d9119404791 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Anja Millen_0.6064488_0615.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:96f98ec131f5189b8ce1fff7eb2d5dfbaec1a89d157ebb2ad6f9538b74b8f45f +size 9698 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Anka Zhuravleva_0.5822078_1742.jpg b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Anka Zhuravleva_0.5822078_1742.jpg new file mode 100644 index 0000000000000000000000000000000000000000..090d262687bb7fa470d4205f878407d25069b9d8 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Anka Zhuravleva_0.5822078_1742.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14e60cf97acd67b6ccac238fcab398915c887f99c3e9c3852b7d30ad7e06bf1c +size 12885 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Ann Stookey_0.54269934_2121.jpg b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Ann Stookey_0.54269934_2121.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2605f7c2d9455604f379a4bf45ab23d0c3b71c60 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Ann Stookey_0.54269934_2121.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c619b2a67ff4a8c0b76d0848586b306afc42c34ff4eb66b9166ef0c1bb32c55 +size 14878 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Ann Thetis Blacker_0.5416629_2132.jpg b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Ann Thetis Blacker_0.5416629_2132.jpg new file mode 100644 index 0000000000000000000000000000000000000000..878d6863aa1c62bcd56e12858e93bed6db9d735e --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Ann Thetis Blacker_0.5416629_2132.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:73d639957ef2b289740000198066cc4b532d351df6f2498c0a13285a731019e9 +size 12675 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Anna Findlay_0.54018176_2144.jpg b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Anna Findlay_0.54018176_2144.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b4ed6a11e6db133b945d67acf6c0dd4726a1e957 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Anna Findlay_0.54018176_2144.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:75774b6cad022dba0d026bda2c6cbf7d3e27145655f4686c85280f91a2d1d1fe +size 13904 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Anne Savage_0.5310638_2209.jpg b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Anne Savage_0.5310638_2209.jpg new file mode 100644 index 0000000000000000000000000000000000000000..832b92818254d8b4318c0c14efa46cc9dbc8b029 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Anne Savage_0.5310638_2209.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86d1d49e8ae6aba5b6140645adff92bd100f53cbf78ea66e5381739b02d5e396 +size 14276 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Anni Albers_0.65708244_0664.jpg b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Anni Albers_0.65708244_0664.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e52e9e3e16891fb02dbb2d4eb33b4a0cd8906b0d --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Anni Albers_0.65708244_0664.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eeba97a1fd7b1a449a4a7a6b104bcd2b3c8a8361ba5c4081a977d285da697e6b +size 15743 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Anthony Gerace_0.636678_0464.jpg b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Anthony Gerace_0.636678_0464.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7401fb621163fd51d2080983a251c1c5926258fa --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Anthony Gerace_0.636678_0464.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:62fb302dc938abfb296e4b1ede8daf19c9a2cd4b8d9953c7d568feeae9f30649 +size 13185 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Anton Corbijn_0.5550669_0247.jpg b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Anton Corbijn_0.5550669_0247.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6d579fcdc58a1445e057cff08d8048f5e2bdafc5 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Anton Corbijn_0.5550669_0247.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae950471e7965493e44b62c2fca2119be9431b960b49649b94fc6d4c79c87e88 +size 11385 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Anton Semenov_0.6552501_0993.jpg b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Anton Semenov_0.6552501_0993.jpg new file mode 100644 index 0000000000000000000000000000000000000000..277af9278e29f3ffa37ef1b3cf9c80cd0e8fcc30 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Anton Semenov_0.6552501_0993.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2fb155aa420f750d4fc61be7d2222642a4fc055e9bdef6fe116948660a996027 +size 9536 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Antonio Galli Bibiena_0.6399247_1155.jpg b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Antonio Galli Bibiena_0.6399247_1155.jpg new file mode 100644 index 0000000000000000000000000000000000000000..abdf0f16b5200b0a4ff80388f2dcae5086f62825 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Antonio Galli Bibiena_0.6399247_1155.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e01e1442c1d908c29ee2cfa046b282d7d2084c27f61cf612ee10c3afabd82e88 +size 11027 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Antonio Mora_0.5334297_1591.jpg b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Antonio Mora_0.5334297_1591.jpg new file mode 100644 index 0000000000000000000000000000000000000000..575039b01054b3ae7d4a7dda73b1812dbfc808a8 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Antonio Mora_0.5334297_1591.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d6c6dd1a65c152ee76ea6859c5b9848e5c3ece7ad40b109a653df8a72509b83f +size 11827 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Antony Gormley_0.54696125_2085.jpg b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Antony Gormley_0.54696125_2085.jpg new file mode 100644 index 0000000000000000000000000000000000000000..71be9e7e8ef01c3290a9d0cb8d5ae4fbbea0471e --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Antony Gormley_0.54696125_2085.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8462e6c635595a1787f2ce55a45260b005f69a0b1626449981fe0e8bf09cf330 +size 10638 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Archibald Robertson_0.55129635_2034.jpg b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Archibald Robertson_0.55129635_2034.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4793b390a2bbc1b6d0e286eb3221aba0e347483f --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Archibald Robertson_0.55129635_2034.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f60290401fca4a2f0e846d9d1de818f6267280787ec3fc9db8c964c808304b6 +size 10980 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Archibald Standish Hartrick_0.54850936_2064.jpg b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Archibald Standish Hartrick_0.54850936_2064.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9b4771dcc58a588d62f3c859bd94623be9f6df5e --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Archibald Standish Hartrick_0.54850936_2064.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c2727e44444e4ad2b2d148248dae26b4df5850a4ea680f7ba03934e7960cc532 +size 11823 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Arkhyp Kuindzhi_0.6928072_0542.jpg b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Arkhyp Kuindzhi_0.6928072_0542.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8c4ca1f3b94c78e36146e67db9646a43938d5853 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Arkhyp Kuindzhi_0.6928072_0542.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:102b4b527b02c1e6c999e76e669f0d9331206ea8f61676d276cfb279f39b813f +size 8755 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Arnold Newman_0.5736342_0566.jpg b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Arnold Newman_0.5736342_0566.jpg new file mode 100644 index 0000000000000000000000000000000000000000..685f0ee426b952c655320da62ae7f0ff2b77a733 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Arnold Newman_0.5736342_0566.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a284c79d430881ec51ea28fb0fc89f02dbc147bb6954be7f889ef52a7b89f9a3 +size 12534 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Art Green_0.5714495_1860.jpg b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Art Green_0.5714495_1860.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f0b38ea672ff4795abcda358d9a1b4d8f5975a47 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Art Green_0.5714495_1860.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a92f4130d7685d6434222cbdf0a50f4f68f9ab426de736106114f1cdf603e8fe +size 14609 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Arthur Tress_0.6301861_0662.jpg b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Arthur Tress_0.6301861_0662.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6fe74b1fdae8f32d5d8caf46ff1ab6234680730c --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Arthur Tress_0.6301861_0662.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b703bf9d95fedefe19026478b24f6b921aedc968748e94428c5d798d9f4c0baf +size 16232 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Augustus Jansson_0.6845705_0637.jpg b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Augustus Jansson_0.6845705_0637.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a7b7eed5d876d3fac00ecf404f88bbf26acd90ad --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Augustus Jansson_0.6845705_0637.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a42dd1477c6edcd06f200e071d796040f1abd31a657c9f52e255b9afe3ef5ae3 +size 11801 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Barbara Nessim_0.60589516_1273.jpg b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Barbara Nessim_0.60589516_1273.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6dfcb3a589533e4a0389092296df1b3e4e5f5123 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Barbara Nessim_0.60589516_1273.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:27888677c6eaf29d33775d44021c9f75b00a9293b210759ddc2a0f05af0a70db +size 15256 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Barclay Shaw_0.53689134_1946.jpg b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Barclay Shaw_0.53689134_1946.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f4e3703899ada7bd6101a9924a6afd66ec3bf8b0 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Barclay Shaw_0.53689134_1946.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:93963a538af14f8280d7d410439976ac687e40f331058c56e77120207ee8f781 +size 16003 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Beatrice Huntington_0.5328165_2198.jpg b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Beatrice Huntington_0.5328165_2198.jpg new file mode 100644 index 0000000000000000000000000000000000000000..293e154a7a97e0ccd393ef32fdbee902d6c0d9d9 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Beatrice Huntington_0.5328165_2198.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a05634fb7851ade84861d319a486fd9e66f9ff0b9ea7f2b83ef1108f2900d5ff +size 12159 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Bella Kotak_0.6409608_1147.jpg b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Bella Kotak_0.6409608_1147.jpg new file mode 100644 index 0000000000000000000000000000000000000000..09dc66c67f516d74bf731112c38b1da7cf822ac2 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Bella Kotak_0.6409608_1147.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8211dda8a7437c5a5c7f12d008de38b341aab954dbc55a7d9e6b989142fad4a8 +size 15209 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Ben Goossens_0.53002644_2111.jpg b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Ben Goossens_0.53002644_2111.jpg new file mode 100644 index 0000000000000000000000000000000000000000..47a0d85f48b5714fb11ded13f3c39f0d117ff405 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Ben Goossens_0.53002644_2111.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb01235d8356f0a52778e9ad677dd9595499eb687c41deec19b4318f6d8ff56f +size 9164 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Ben Templesmith_0.5498991_1580.jpg b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Ben Templesmith_0.5498991_1580.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a18244e356b4b701435b8c29259aefa169f187d4 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Ben Templesmith_0.5498991_1580.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:35e4d13d12c43f9fe703a84509b5c16221fa15a9ca13ee60870f180be1bfddaa +size 16493 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Benjamin Block_0.55251944_2026.jpg b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Benjamin Block_0.55251944_2026.jpg new file mode 100644 index 0000000000000000000000000000000000000000..508835db225134fab0ef8b134097da6a2a88acdf --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Benjamin Block_0.55251944_2026.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d3157b9e7dcae23fb09c74154d17555f307d828816d2918392e818aab892fc9 +size 11869 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Bernard Fleetwood-Walker_0.57987773_1773.jpg b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Bernard Fleetwood-Walker_0.57987773_1773.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d97742989c7aa6095955cd7d450865fd1fb5baf2 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Bernard Fleetwood-Walker_0.57987773_1773.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e10c556657c39ffa378d60e3eb7c5cd85c0c33c54f3e02bd28c240e261895f3 +size 11537 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Bernard Meninsky_0.5302034_2094.jpg b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Bernard Meninsky_0.5302034_2094.jpg new file mode 100644 index 0000000000000000000000000000000000000000..01c4971f698aefaa57ca129522259cf8357edd57 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Bernard Meninsky_0.5302034_2094.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28f4bb5147021ccf481fdf6e7bc1a21fe66f386b7b5eb7a0bdb24b9dd8ec7fb4 +size 9841 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Bernt Tunold_0.56383425_1928.jpg b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Bernt Tunold_0.56383425_1928.jpg new file mode 100644 index 0000000000000000000000000000000000000000..dbcb71be548f32be5d0c4fa5371d8f277c3247f2 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Bernt Tunold_0.56383425_1928.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c9db16dac037caa31e42ca7a0ab0c4564c181696583c3abf7cb740414e9b55aa +size 8617 diff --git "a/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Bertalan Sz\303\251kely_0.5548113_1704.jpg" "b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Bertalan Sz\303\251kely_0.5548113_1704.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..d7384ecbf35eda59547f42d31aa24a2aaf9a52f0 --- /dev/null +++ "b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Bertalan Sz\303\251kely_0.5548113_1704.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7998c79c706964355c168953509703e060e85f66bde34b5ff3bfcf94cc0b9ea9 +size 10367 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Bessie Wheeler_0.5269164_2240.jpg b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Bessie Wheeler_0.5269164_2240.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5ef3eab50e1f557aa8bd63e57883ce04c50ae778 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Bessie Wheeler_0.5269164_2240.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c5b68bd3d4a4feb12109e9f5aedd03026221b7633a3d85f81fddcfabd019cecb +size 13330 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Beth Conklin_0.6388204_1163.jpg b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Beth Conklin_0.6388204_1163.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0e66fde93b214817f0b7664648df894a5477fd51 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Beth Conklin_0.6388204_1163.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3384b7c8acd430e4efd43c11e92cc71e750231e4c30be03722a315c98df88452 +size 12650 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Betty Merken_0.56281745_1938.jpg b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Betty Merken_0.56281745_1938.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d866de54cbcc0e35f3a8b4e422d21483b31f7c51 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Betty Merken_0.56281745_1938.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a01ec912022c846470943522d7a735dbec6d2ca9f9f9fe81561f932a5ae3669f +size 15729 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Bill Henson_0.5394536_1170.jpg b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Bill Henson_0.5394536_1170.jpg new file mode 100644 index 0000000000000000000000000000000000000000..591e65e009f8c3808f77ca54e601bdbd86c78465 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Bill Henson_0.5394536_1170.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:31b2d1c6c0c22346e7b5fb3d3cc274783d35958385bd1d9287f115ddaad29478 +size 10112 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Bill Sienkiewicz_0.6125557_1311.jpg b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Bill Sienkiewicz_0.6125557_1311.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2cc24294e80e0f58e3eec88ddc4f4fbdb22de014 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Bill Sienkiewicz_0.6125557_1311.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e80212faffedd413c1c0042e3f75ddfb882a27f31b153d8202ddcb4a7db542dc +size 19340 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Bill Viola_0.62409425_1315.jpg b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Bill Viola_0.62409425_1315.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c51644ccac0f8954e759aea9f1090b40dc90d806 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Bill Viola_0.62409425_1315.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e180e8e7f51e20119185af81a3b5daf91b76ebbf499586c094e63b3c0a227bb7 +size 7168 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Bill Ward_0.61953044_1364.jpg b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Bill Ward_0.61953044_1364.jpg new file mode 100644 index 0000000000000000000000000000000000000000..49ec986166be6615b46d4095b8a8a82f617ae69b --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Bill Ward_0.61953044_1364.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f4458dbc5eda642fe470a61dc6d30afe30ec694e53f0c0a447158eabfa32ac3a +size 14441 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Bill Watterson_0.5542879_2011.jpg b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Bill Watterson_0.5542879_2011.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bfde1de88427641c33c4230eb4dd45032aabdb13 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Bill Watterson_0.5542879_2011.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b9662d5e278c9d831c8e69b0c6848ff3ac2055fb26032b3a15371f439e4b0ea +size 23162 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Billie Waters_0.65684533_0977.jpg b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Billie Waters_0.65684533_0977.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ab5e5be28f38404f3a8b50ba15c97b42d8317905 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Billie Waters_0.65684533_0977.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:93b5cd4feed4d9613baf9a8d9eb6df9763a8392258dafbdf037fd6feba96204a +size 11839 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Bjarke Ingels_0.68933153_0583.jpg b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Bjarke Ingels_0.68933153_0583.jpg new file mode 100644 index 0000000000000000000000000000000000000000..deb5e3e40227dfc867265ff60eeb57cd3cad27e3 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Bjarke Ingels_0.68933153_0583.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b0feb336f00e3581c264bc995d1cb81d896c538f9e57ee4a57a1890cda21f58d +size 16721 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Bob Eggleton_0.63277495_1229.jpg b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Bob Eggleton_0.63277495_1229.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f4cd5980ca67f56fe64130b97c31e9dca8bd1423 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Bob Eggleton_0.63277495_1229.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bdfd3a36b1b1798d97b351984eac7fbbc45d367423621667433c4a5f5e573074 +size 10771 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Bob Ringwood_0.5935273_1619.jpg b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Bob Ringwood_0.5935273_1619.jpg new file mode 100644 index 0000000000000000000000000000000000000000..045f33532f68daa7c9b614af9728c8f6f54a69ca --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Bob Ringwood_0.5935273_1619.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e1e19cbea988a4e40c2d3b1eaf8b2f392c1a06df68874d078b7ac908f223be78 +size 14270 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Bordalo II_0.7467364_0308.jpg b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Bordalo II_0.7467364_0308.jpg new file mode 100644 index 0000000000000000000000000000000000000000..aab5d39a84f187af77e2e3e65e147e2f94ab3f94 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Bordalo II_0.7467364_0308.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b4b553a4b3ee17c46ac2a52ce46a3ea7f26c7719059f654b0e5a3d01e53cab34 +size 19591 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Boris Groh_0.5888809_1668.jpg b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Boris Groh_0.5888809_1668.jpg new file mode 100644 index 0000000000000000000000000000000000000000..67c7c8b008fb2a4cb790838ba1ac30bdee0678d8 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Boris Groh_0.5888809_1668.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e760bd3cf237bbfdc412959984621ebcbafbb52c61c2d23057f055bdb961ecc0 +size 12170 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Brandon Woelfel_0.6727086_0366.jpg b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Brandon Woelfel_0.6727086_0366.jpg new file mode 100644 index 0000000000000000000000000000000000000000..cb8a07d7662b9de43af6b0c017a6a59f1fadb6af --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Brandon Woelfel_0.6727086_0366.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e708381159ce0a10cd91a95455cdd34ff2bb6bc54557e76016e3433dec24e419 +size 20674 diff --git "a/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Brassa\303\257_0.6361966_0333.jpg" "b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Brassa\303\257_0.6361966_0333.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..17a5b1712f63a46721287c55d51c1a9fc1cb08c7 --- /dev/null +++ "b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Brassa\303\257_0.6361966_0333.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:faa1b9cfd96cd441f6614fa364e8e0a84b7fb6b669ad3e15b6730c32613dab2e +size 12563 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Brian Mashburn_0.63395154_0467.jpg b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Brian Mashburn_0.63395154_0467.jpg new file mode 100644 index 0000000000000000000000000000000000000000..537ea5a8480a7e1effbf00c83ea9f9ad7a4f9bb9 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Brian Mashburn_0.63395154_0467.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd54301098329775cbde674828671ab58196be9ad7b2d772528c90a3ce0245c3 +size 9640 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Brice Marden_0.70673287_0401.jpg b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Brice Marden_0.70673287_0401.jpg new file mode 100644 index 0000000000000000000000000000000000000000..212014f3fba2ac04f7b7355a724e47780b341bbd --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Brice Marden_0.70673287_0401.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:405f84e28e1f8b390854009709b6e90647bc52619cd614abe58b5345b5195100 +size 19262 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Brigid Derham_0.6270125_1289.jpg b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Brigid Derham_0.6270125_1289.jpg new file mode 100644 index 0000000000000000000000000000000000000000..052277c972290c4214fe7a398a9322402227fc8f --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-high-impact/digipa-high-impact_Brigid Derham_0.6270125_1289.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:02370175e7e4428f57f09520029da0d84fcb48ed45460c47c1f0138040a01257 +size 11038 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Adam_Bruce_Thomson_0.43847767_2764.jpg b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Adam_Bruce_Thomson_0.43847767_2764.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1d02a95f882c2e40db76612ac528e4aee589e2df --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Adam_Bruce_Thomson_0.43847767_2764.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a21c761678b78fce42754b5f16cffeaf6da8d9d907bf90ef6568649bcf8a0ef +size 13817 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Adrienn_Henczne_Deak_0.445518_2726.jpg b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Adrienn_Henczne_Deak_0.445518_2726.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5516a364522aa8b357e63ddfb9a7ccecd8672a23 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Adrienn_Henczne_Deak_0.445518_2726.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d1b1b81e1378db09714974d9935f5f0981b5b67e44ada21412b86e8727c5e55c +size 10079 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Ahmed Karahisari_0.4259451_2256.jpg b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Ahmed Karahisari_0.4259451_2256.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0e985a1d4dfc0defc76de27081fce1aa4bec6e17 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Ahmed Karahisari_0.4259451_2256.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:76e84c90178914558f0d348e8a870abb1934b303d0361de9f2bb42894760831a +size 10425 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Alan_Moore_0.4573369_2667.jpg b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Alan_Moore_0.4573369_2667.jpg new file mode 100644 index 0000000000000000000000000000000000000000..df85a7256c2ca279ec171d2f830c8baa903f623a --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Alan_Moore_0.4573369_2667.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d6d5d9b75128b1a1aca450f18eb56b734fd947105e23d843501fece1f2b8bcd2 +size 22432 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Alberto Biasi_0.42917693_0865.jpg b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Alberto Biasi_0.42917693_0865.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5e4fd0d8ec8d89f2e7a02d4b90f88194fda7ec37 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Alberto Biasi_0.42917693_0865.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef4cc068f9eac6210a26f99b0ba4673773d4466a04a4c3f20b87a427bd818e8c +size 19730 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Aleksander_Gine_0.4326849_2800.jpg b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Aleksander_Gine_0.4326849_2800.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b345d8ece399c38a78c96126b3a0bf195b5e2acf --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Aleksander_Gine_0.4326849_2800.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9a65d3c19757f3cc02bc2e39ad894bc341161c5467f1476f46b196a8fd4d1325 +size 12255 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Aleksander_Kobzdej_0.45552525_2675.jpg b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Aleksander_Kobzdej_0.45552525_2675.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3d1f550d5204a9aaf4edcb5155887dc73dda6582 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Aleksander_Kobzdej_0.45552525_2675.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce9508110b1621ef0111345dd70702927e07a654a032fee91673c68b305893e0 +size 10728 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Alex Alemany_0.43974748_2393.jpg b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Alex Alemany_0.43974748_2393.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3fef9816232920c618a78968c39aabaa6a2421ed --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Alex Alemany_0.43974748_2393.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:141b504783a61606104ba3061c03acc6083b625cf2fe9f7cfa1ea9c605769e26 +size 14249 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Alex Ross_0.42460668_1760.jpg b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Alex Ross_0.42460668_1760.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c2bfedef5fcd8c22802aed0da90287258e9dd94e --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Alex Ross_0.42460668_1760.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f957038cc45dc5ba33f3e126141ce248c5154819930517833d0869104c2bec53 +size 15526 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Alex Schomburg_0.46614102_1675.jpg b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Alex Schomburg_0.46614102_1675.jpg new file mode 100644 index 0000000000000000000000000000000000000000..df77c68c55126788c5ab54ca8dbe350e41991317 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Alex Schomburg_0.46614102_1675.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c78d2f9deacf9aced683ae21d05baf1557499d881d04e21c1bea2d85930c4ea +size 20736 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Alex_Horley-Orlandelli_0.42623433_2657.jpg b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Alex_Horley-Orlandelli_0.42623433_2657.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ff2ae8d25817c5f32cbef8101be5868317ead7df --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Alex_Horley-Orlandelli_0.42623433_2657.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f34cd958fb6d2b811c5aed33394050866cdc7e39c36b1f8b82f275c86f1d214 +size 11537 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Alexander Ivanov_0.4539051_2343.jpg b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Alexander Ivanov_0.4539051_2343.jpg new file mode 100644 index 0000000000000000000000000000000000000000..db1b0611353b0fb2f69f6f76a2e286317bc1c1e9 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Alexander Ivanov_0.4539051_2343.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4bb564545fcec99773594ca31c728648fde79783b6a1c26d031bb1509eb1f486 +size 11590 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Alexander_Carse_0.46078917_2640.jpg b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Alexander_Carse_0.46078917_2640.jpg new file mode 100644 index 0000000000000000000000000000000000000000..16d025f8cad1d3b41bf24d97904de7df9ff145ad --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Alexander_Carse_0.46078917_2640.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:81fd9258be8f78399c2ea0ee9021d5e9988995349b341ea884b3fe718506ee76 +size 12450 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Alexander_Johnston_0.4326589_2801.jpg b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Alexander_Johnston_0.4326589_2801.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bbbaf463e197b33278564c5bb2268254793f0a4e --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Alexander_Johnston_0.4326589_2801.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7bcff611699a0a3fbc69dc2a5b8b1237e1a80a12f1d627e37b96f079e1adfe13 +size 8818 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Alexander_Robertson_0.4300743_2823.jpg b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Alexander_Robertson_0.4300743_2823.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6c50c530376ff5d25b3482b36b7c7fdb00a083ab --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Alexander_Robertson_0.4300743_2823.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:443097e14ef613b97da3142d52da19467a059bba81b1ef6cc951a4c8a9dc52d5 +size 13259 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Alexandre Jacovleff_0.3991747_1495.jpg b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Alexandre Jacovleff_0.3991747_1495.jpg new file mode 100644 index 0000000000000000000000000000000000000000..30240b9393af93c4ae8c644f01199d85c491acc1 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Alexandre Jacovleff_0.3991747_1495.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a9236824eb27d26545934bdbeda62a4c9d820074c4c41acc30b20c8c379beff4 +size 8694 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Alexey Merinov_0.4469615_2403.jpg b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Alexey Merinov_0.4469615_2403.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b84c29a347a2955cd62869379604561ba299c04d --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Alexey Merinov_0.4469615_2403.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d4e8b3fa7e3ab05121f4f82e6fccbb95c356e32b6fa2ba7a6e86e22a626350e +size 12577 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Alexis Grimou_0.41958088_2297.jpg b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Alexis Grimou_0.41958088_2297.jpg new file mode 100644 index 0000000000000000000000000000000000000000..42591bcde1579f91045a1c726ce0ff423f97ca9a --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Alexis Grimou_0.41958088_2297.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:893c354f0eb102fb71017d2e14763331049879e48e1dcedd12427b3226b0e1ca +size 9707 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Alexis Simon Belle_0.3190395_1370.jpg b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Alexis Simon Belle_0.3190395_1370.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3b7ccdc06e8b2e15957cd91ac89583128637abcc --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Alexis Simon Belle_0.3190395_1370.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f016bfa3ecbbb1e7132d2783c13486ff83566253e635f5c84c702a73ca1d61f +size 10826 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Alfred Krupa_0.47052455_2581.jpg b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Alfred Krupa_0.47052455_2581.jpg new file mode 100644 index 0000000000000000000000000000000000000000..070500ee34399b032454ebdaebf37a7da564265c --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Alfred Krupa_0.47052455_2581.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:42d412f54a345135fa3874037ab74100bb90837d07052f29a1bcf2200eb4055b +size 10830 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Alison_Watt_0.43141022_2624.jpg b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Alison_Watt_0.43141022_2624.jpg new file mode 100644 index 0000000000000000000000000000000000000000..17d81fd619cba3d08884542420f263e4adf0c5da --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Alison_Watt_0.43141022_2624.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c2c462bd7b7a9b24b740e38287ed4cd2e13914e0d00e9b8db27b7c3a1e518f5 +size 14360 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Allan_Brooks_0.46882123_2588.jpg b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Allan_Brooks_0.46882123_2588.jpg new file mode 100644 index 0000000000000000000000000000000000000000..054e399dffe3fccc9c21232625daa87c2d74ace1 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Allan_Brooks_0.46882123_2588.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd2d1479d3e86c657103d83cd65cd478ce20079a7243e78b5e5f75bcdeb9cdf2 +size 13701 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Allan_Linder_0.46812692_2592.jpg b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Allan_Linder_0.46812692_2592.jpg new file mode 100644 index 0000000000000000000000000000000000000000..89766202b55bc6934b77a5ff97b3e2481ddacf63 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Allan_Linder_0.46812692_2592.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:717db15649a505a43a678c1d8490ed7a087621f979f3e0586dfa546ae4a0e56a +size 12546 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Allen_Tupper_True_0.43556124_2780.jpg b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Allen_Tupper_True_0.43556124_2780.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f830a6e1b312fd19d20d798d5991717d12781ca7 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Allen_Tupper_True_0.43556124_2780.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c10469fe3a0857fe2aad0fa473f6a1a587a0438da29b23e3e5a3c8d406ecc739 +size 14192 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Alpo_Jaakola_0.44981295_2707.jpg b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Alpo_Jaakola_0.44981295_2707.jpg new file mode 100644 index 0000000000000000000000000000000000000000..998a2d773ef76547c9597df4503bfe7afa1e03ce --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Alpo_Jaakola_0.44981295_2707.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e229e413a6bfc9a71505ef03067d58a81132ae33695f0fc2d01251874c3ded1e +size 12558 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Alton_Tobey_0.4416385_2751.jpg b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Alton_Tobey_0.4416385_2751.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ae55f375d3d59bc7fff9d5b712a39fa36d8470ac --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Alton_Tobey_0.4416385_2751.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c32abf1e195f5a15bc7abe114b67c566de309d017ca24aa5177d34b3fb68c740 +size 11272 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Amedee_Ozenfant_0.4585215_2660.jpg b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Amedee_Ozenfant_0.4585215_2660.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0c0ff12522e8ceb3424bdc52b8bd6edf64a579a7 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Amedee_Ozenfant_0.4585215_2660.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:264f2b6b063c6ba10509b81294ed57a04b60836488acacdf9ff7b984c35fde9c +size 11638 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Amelia_Pelaez_0.46764764_2597.jpg b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Amelia_Pelaez_0.46764764_2597.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ad9d55f2651e44b398503df91caf465a1b76f2b0 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Amelia_Pelaez_0.46764764_2597.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4885b90d4ed36ad9fcc5403f5ed47a5562f0a6f174ff4f9b5ebae00abe86bcc5 +size 9658 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Amiet Cuno_0.41975892_2548.jpg b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Amiet Cuno_0.41975892_2548.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c34f4f45559b47c8ebd5589abe568c2093c745f2 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Amiet Cuno_0.41975892_2548.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8c5f5ef9c68a21d54dc44536d5b5e33aefb984df79e41315acdd7cfc095fd461 +size 12977 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Ammi_Phillips_0.43095884_2814.jpg b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Ammi_Phillips_0.43095884_2814.jpg new file mode 100644 index 0000000000000000000000000000000000000000..069e9c823223684c50ddfde83a3eee7c3d22da5e --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Ammi_Phillips_0.43095884_2814.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:def9081c4c8c687cfb6149b9db637734bbfd7793773fdfcef07f9bfdb7f43c2b +size 12368 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Amos_Ferguson_0.4418735_2750.jpg b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Amos_Ferguson_0.4418735_2750.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f82582af7697ac62bf168c9160ed468b6578f1f0 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Amos_Ferguson_0.4418735_2750.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:565bff7cf22f6c78ff6c555d26d60b07d282c531fe18c11309118b44ae83a397 +size 13219 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Andre_de_Krayewski_0.4628024_2625.jpg b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Andre_de_Krayewski_0.4628024_2625.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3ebfa3ed1e186d01e8dd3083f92bef001b3cf34a --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Andre_de_Krayewski_0.4628024_2625.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff8b8a4ec3c1b5c3c84886dfa49a485ec9a291aa89d65a4e1e638f1a37cefc92 +size 13511 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Andreas Levers_0.42125136_1873.jpg b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Andreas Levers_0.42125136_1873.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2ceb2d812fb8119372c0c966a1954d4f71f358a2 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Andreas Levers_0.42125136_1873.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a6ce5fd8233c51b946f6188192113017c8853059d232fa3ea4fd28583d6e522 +size 9649 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Andreas_Franke_0.4300047_2688.jpg b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Andreas_Franke_0.4300047_2688.jpg new file mode 100644 index 0000000000000000000000000000000000000000..dc519a2afdf6686b667ab78d2d94d01d3372107e --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Andreas_Franke_0.4300047_2688.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6568dedd9a23f201b12af267af222f7a08438a90e74b2a302fb34dfe2e46d249 +size 12063 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Andrei_Kolkoutine_0.44328922_2739.jpg b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Andrei_Kolkoutine_0.44328922_2739.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1d5da09be34b7d56e2f40f6bc3f68ea398d990cb --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Andrei_Kolkoutine_0.44328922_2739.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:43209e29adaecdc8a30aa70301f4486087f24ba74431c05cc868b21ea7972514 +size 13167 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Andrew_Whem_0.43512022_2785.jpg b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Andrew_Whem_0.43512022_2785.jpg new file mode 100644 index 0000000000000000000000000000000000000000..66b83ae26e5c49388b66dc240b45329529781460 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Andrew_Whem_0.43512022_2785.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b1c35022e46245954821a9bf784ec069710f137eaefe82609abd704f2c97f217 +size 9422 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Anita_Kunz_0.4356005_2778.jpg b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Anita_Kunz_0.4356005_2778.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f658ba24c022c2e4ac9b3571daada77562e5a3f7 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Anita_Kunz_0.4356005_2778.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c375dc3344152d1fee2a15500d3482ec112b46ad44986c45513464d5f2579106 +size 10189 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Anja Percival_0.45039332_1654.jpg b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Anja Percival_0.45039332_1654.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c28cafe51d421c493b25e6a841f6db991bc7a757 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Anja Percival_0.45039332_1654.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d2b13d60c93014a814dace38fc83cf09c3296e2b0138a9025b6e9bf343beeee +size 7776 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Anna and Elena Balbusso_0.59955937_1552.jpg b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Anna and Elena Balbusso_0.59955937_1552.jpg new file mode 100644 index 0000000000000000000000000000000000000000..17086a5ffc4fb3df195976c6f21f003ff2551280 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Anna and Elena Balbusso_0.59955937_1552.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:03ec7e6d07358e92cd4fb14ecbb6c83bb27f6f08666d56b7c43203aa826ec45d +size 14029 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Anna_Maria_Barbara_Abesch_0.4611045_2637.jpg b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Anna_Maria_Barbara_Abesch_0.4611045_2637.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8b13cf89f1307ad8392a1e28b3f3cd812a8a41d0 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Anna_Maria_Barbara_Abesch_0.4611045_2637.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:774c47b4e81ddb33c7ef8cffc46aa0048dbaebdd1376139c4bba920ed3d0a170 +size 14829 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Anne Mccaffrey_0.4719924_2574.jpg b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Anne Mccaffrey_0.4719924_2574.jpg new file mode 100644 index 0000000000000000000000000000000000000000..488d0ae0f7329ab76434842e9764cd42dfd03158 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Anne Mccaffrey_0.4719924_2574.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cbffeabf039321a866a4ad80140b42c0cd3b150cc9564841ec6bb7c487c33932 +size 15740 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Anne_Dunn_0.46722376_2602.jpg b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Anne_Dunn_0.46722376_2602.jpg new file mode 100644 index 0000000000000000000000000000000000000000..247b98f1d52770b5ec41e7c66f26fd36681dca5f --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Anne_Dunn_0.46722376_2602.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:349374aae1ee9a26de1d08df87fcd1e00e2e7dd3fa8387dfc26fd54d3ac5afd1 +size 13569 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Anne_Geddes_0.45785287_2663.jpg b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Anne_Geddes_0.45785287_2663.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bf0319ba972cfb12ff3570fe37630973b7a12ec8 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Anne_Geddes_0.45785287_2663.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3951638cace1d40d96a14c5c8a52e7e708eb03eacce24963b280d93ec5dfd29e +size 11012 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Anson_Maddocks_0.46539295_2614.jpg b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Anson_Maddocks_0.46539295_2614.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a3aaeb7202aa39c764890a06717be5c268d0d042 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Anson_Maddocks_0.46539295_2614.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:68fcd8186813f92e562a7fd96c48c177ea0f831c1e86d7de5762d1dba1e17f71 +size 11037 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Anto Carte_0.4708289_2162.jpg b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Anto Carte_0.4708289_2162.jpg new file mode 100644 index 0000000000000000000000000000000000000000..898e3ad1d249219f0f9d4b89a04527a82ca1d13d --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Anto Carte_0.4708289_2162.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:219c1e8573fdec4fef167f4169aca25264de2bf78d3946dfd7677994f9099692 +size 12983 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Anton_Graff_0.38569996_2722.jpg b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Anton_Graff_0.38569996_2722.jpg new file mode 100644 index 0000000000000000000000000000000000000000..300f4d251032509eebefe903ee0a1cc0d626d9c8 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Anton_Graff_0.38569996_2722.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0db738e377fb5b3267a2356caa6b640f6dfa487a862f3d82dc94925870652127 +size 9831 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Antoni Pitxot_0.40582713_2270.jpg b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Antoni Pitxot_0.40582713_2270.jpg new file mode 100644 index 0000000000000000000000000000000000000000..dfdfdce1bca6fc46baa85b80ea28a8030025f762 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Antoni Pitxot_0.40582713_2270.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0106851a87da3c61b8ca00f6b1a72df8ca9a058a0e9d40aae13cb5d81a62a5a7 +size 11976 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Antonin_Chittussi_0.431248_2813.jpg b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Antonin_Chittussi_0.431248_2813.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f1d78fc0fa4d0cf84a9d140df79d1a10de0c313e --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Antonin_Chittussi_0.431248_2813.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f2d701bf0704c135634179238247b6d66d53f5affecf4c79348d94aea2013b8 +size 10679 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Antonio Donghi_0.4610982_2184.jpg b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Antonio Donghi_0.4610982_2184.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1c3b0ade2aeef0eee04f59518d8d50ed2f3bbe45 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Antonio Donghi_0.4610982_2184.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2721229f18fc344d5cfa3e23e0eca860061425c49ada18a3d23a700060312cab +size 11119 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Antonio_Cavallucci_0.4645282_2618.jpg b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Antonio_Cavallucci_0.4645282_2618.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c5792173cd6060e5d29dc3fd67e390e7d70906b1 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Antonio_Cavallucci_0.4645282_2618.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:890759015eca46d75b2d9dc6c92080009083b32c6ac146eba7874405bd13112c +size 10739 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Antonio_Parreiras_0.45269623_2692.jpg b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Antonio_Parreiras_0.45269623_2692.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a64a8d41ae9f29e9de2ccf96cf447adcef989d7a --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Antonio_Parreiras_0.45269623_2692.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8eeeb94f61b8ed34e53e566b481177bffcd599dd35c4f2890669d0a1c5725400 +size 12147 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Araceli_Gilbert_0.44399196_2731.jpg b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Araceli_Gilbert_0.44399196_2731.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2fa98d0d49a90a8640facc093848f87de741e8dc --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Araceli_Gilbert_0.44399196_2731.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:082c415fd5f40d2fec9717a78bc32b25fe7509c382128c2547529c47897f7605 +size 13630 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Arent_Arentsz_0.43373522_2794.jpg b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Arent_Arentsz_0.43373522_2794.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8e6b9ac51aee59a3e517b77aa7531dc00f6c6423 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Arent_Arentsz_0.43373522_2794.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13f7fa4ac873b47252680d7f8433ab3a17cbb7a87202dd28753ee90e4e3ee6fc +size 15413 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Arlington_Nelson_Lindenmuth_0.4683814_2590.jpg b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Arlington_Nelson_Lindenmuth_0.4683814_2590.jpg new file mode 100644 index 0000000000000000000000000000000000000000..882d0770245271cd808466ba879575133fd6b51c --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Arlington_Nelson_Lindenmuth_0.4683814_2590.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed0fa319fd6b32d04ea4c7c807897cddce151f7960228ebe125cd6603cc177c0 +size 9661 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Armin_Baumgarten_0.444061_2730.jpg b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Armin_Baumgarten_0.444061_2730.jpg new file mode 100644 index 0000000000000000000000000000000000000000..99ded5038d1df6595aa8798d49baaa9d13814409 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Armin_Baumgarten_0.444061_2730.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:414224ee84e97b102b23af0669d11e2c9d6367e75f932cb446fea07885a44336 +size 12916 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Art Brenner_0.42619684_1862.jpg b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Art Brenner_0.42619684_1862.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6b052043bc06b00677c45f8ad32aa6780a668a36 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Art Brenner_0.42619684_1862.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9cec3dbc8b9dcbfcae6955182146699a099f62ee3a1e531dfadd5caf47634691 +size 12236 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Arvid_Nyholm_0.46697336_2604.jpg b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Arvid_Nyholm_0.46697336_2604.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3b775dce851c8e84ee306bb016a2de5aabad2903 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Arvid_Nyholm_0.46697336_2604.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:188b20d7040e5702bb8ae38b8b9f0480d30adea37d5ddc9c38ddbf85fcb4284c +size 10364 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Ashley_Wood_0.4398396_2760.jpg b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Ashley_Wood_0.4398396_2760.jpg new file mode 100644 index 0000000000000000000000000000000000000000..266578e6f28b18da224313689766d3889c093127 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Ashley_Wood_0.4398396_2760.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ab100de8741c0c9975abd63e423f77a9eb7ae3af825665789737c53e6c2996e +size 11179 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Auseklis_Ozols_0.46569023_2611.jpg b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Auseklis_Ozols_0.46569023_2611.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b595b41821b121b7c01bac275a136b0f308462ca --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Auseklis_Ozols_0.46569023_2611.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:46d2a31e378504bb603e263ecaf31c59730ea3b716b381273068b1a8d1acc2da +size 11391 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Aykut Aydogdu_0.43111503_1805.jpg b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Aykut Aydogdu_0.43111503_1805.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e28415add2746e7805970c446f8396fd57d203d4 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Aykut Aydogdu_0.43111503_1805.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:35ff71e052bd3d323438ca3973ecfae0652a7eea88d3b7657be35e78c4e4863d +size 12963 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Ayshia_Taskn_0.463412_2623.jpg b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Ayshia_Taskn_0.463412_2623.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f922d4ac4cf31ec97d9d5a95ef7b20ca1145c8e2 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Ayshia_Taskn_0.463412_2623.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f44376ec28c47165b6ab66746460958d41a1a4758c25fad511e47ab0e7d3e089 +size 10851 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Balazs_Dioszegi_0.432244_2803.jpg b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Balazs_Dioszegi_0.432244_2803.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f22cc9b7a681df3c23f2903cb045d908f6ff9ec0 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Balazs_Dioszegi_0.432244_2803.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e58eca1a5f1706b07d5d57ad5e9e45adda26d89193778d3a1271f30288558f2 +size 8876 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Bauhaus_0.43454266_2350.jpg b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Bauhaus_0.43454266_2350.jpg new file mode 100644 index 0000000000000000000000000000000000000000..86e18bc21c96b4906fc072e52ca0d50b5e39cfdc --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Bauhaus_0.43454266_2350.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:390a0e2421db7e695f9d10373bfab65f7f4e3b17830f1257b4281195e35471ea +size 11717 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Bedwyr_Williams_0.44616276_2721.jpg b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Bedwyr_Williams_0.44616276_2721.jpg new file mode 100644 index 0000000000000000000000000000000000000000..cc7f23d64b2f5a08119ed2a482abdc4ff5ca1775 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Bedwyr_Williams_0.44616276_2721.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:141b4d5f3e55d361062e491997609f87aa37ba40dec4558ab851c71b2f5b874b +size 11531 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Beeple_0.40085253_2277.jpg b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Beeple_0.40085253_2277.jpg new file mode 100644 index 0000000000000000000000000000000000000000..01387f3c8afdea8de101b2a93cddc8e0287757ad --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Beeple_0.40085253_2277.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c1aecf953656ba24387d6de2b1fbaa38899eddd863bf37b8349a3b1fb74b4a46 +size 8878 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Ben_Thompson_0.43436068_2791.jpg b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Ben_Thompson_0.43436068_2791.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9ea6c9fef192f0881f118e0a7093bdb2f1ff20b2 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Ben_Thompson_0.43436068_2791.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d5d3669a878d416101ac5ff140bab69695adacce67d12c995c8b2d37c23c0a42 +size 10982 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Ben_Zoeller_0.44368798_2735.jpg b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Ben_Zoeller_0.44368798_2735.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4546bbb9435738831d0a7b27d4878f84e23fad23 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Ben_Zoeller_0.44368798_2735.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c88aca15b07f81464cfa3c6657a5f1ea6670c3441e484df91f261327ec82d16d +size 11157 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Bernardo_Daddi_0.46088326_2638.jpg b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Bernardo_Daddi_0.46088326_2638.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b8dcf7de74be91b51542a5904801bb9aefd7418f --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Bernardo_Daddi_0.46088326_2638.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dff18a553239920a09eaf15dbac49f517fed8dfae8ae63f4211e50c269bece1d +size 13185 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Bertil_Nilsson_0.45724383_2669.jpg b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Bertil_Nilsson_0.45724383_2669.jpg new file mode 100644 index 0000000000000000000000000000000000000000..657a08c7e0da8c4c03df149582e29aa9417943a3 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Bertil_Nilsson_0.45724383_2669.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:82128ac329e2ba8b83daf7f15616bd8f943f80e4314e2a0b97f997df367fba96 +size 10536 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Bertram_Brooker_0.46176457_2633.jpg b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Bertram_Brooker_0.46176457_2633.jpg new file mode 100644 index 0000000000000000000000000000000000000000..cd8f222cec8c70da1e0c4f982809dca88fe94ae1 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Bertram_Brooker_0.46176457_2633.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9128a2e8fc9893803d08acaa307af42b8438963353bd7b1abe82469dddba4159 +size 14445 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Bess_Hamiti_0.46062252_2644.jpg b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Bess_Hamiti_0.46062252_2644.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8f1e64766e594fba7fd0dc22caf04f436934b987 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Bess_Hamiti_0.46062252_2644.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6177889e82ab3a59107b3c4baad1c0f6f22087f3b840758bcd0c18afbd2e2084 +size 9010 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Bholekar Srihari_0.47387534_2564.jpg b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Bholekar Srihari_0.47387534_2564.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f4c5758f1afc827d2c9a174eefbf99abf69b747e --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Bholekar Srihari_0.47387534_2564.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9773e9a74c14c354527458b9149e6fdfdba5d7afc1b406e71dda49c7536b3ad2 +size 11719 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Bikash_Bhattacharjee_0.45775396_2664.jpg b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Bikash_Bhattacharjee_0.45775396_2664.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5f86fd3eb244c59dcca19ea364c856e886964f7c --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Bikash_Bhattacharjee_0.45775396_2664.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b359965cf97bcebddf8aacecda7268fd56c2b530cb2e043b8d2f090f91681c1c +size 13869 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Bill_Durgin_0.4300932_2822.jpg b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Bill_Durgin_0.4300932_2822.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9dcfc6f25ac951a58d63471125b4736d4e4545ea --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Bill_Durgin_0.4300932_2822.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2e4cdb7c7f96715b1c1a741d20c348a11208a41df2400aad2b8987c43e80321 +size 7837 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Bjrn_Wiinblad_0.45934483_2656.jpg b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Bjrn_Wiinblad_0.45934483_2656.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d3064073b34b52237a35317aeade3771dfca67d7 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Bjrn_Wiinblad_0.45934483_2656.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:78a8084c9ac394f6731eb047ad2108ad1f1c5a615243a666e02675e804b7bed4 +size 11077 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Bohumil_Kubista_0.4679809_2593.jpg b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Bohumil_Kubista_0.4679809_2593.jpg new file mode 100644 index 0000000000000000000000000000000000000000..be936b92dd5feea977aa42cb386cb12aa03f65c2 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Bohumil_Kubista_0.4679809_2593.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5072ca0830eddbc9266fa4951bdd788711e54d66bfb14ee0c00594659309467f +size 10139 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Brad_Rigney_0.28446302_2631.jpg b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Brad_Rigney_0.28446302_2631.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e62974a9b519f6d906bca727838025559415f288 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Brad_Rigney_0.28446302_2631.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:80c2f92fc8f1d72e648d2dbe5d6959e1a641abda6ca98f4ae8cc4a7fa33dc45b +size 10661 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Bradley Walker Tomlin_0.47462896_2559.jpg b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Bradley Walker Tomlin_0.47462896_2559.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c6cb6b5296f11866774f556b76a86877d4075d5d --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Bradley Walker Tomlin_0.47462896_2559.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4606e4985556762c95f4077d66e2801d10b8bde4bab75635da0949ec6ac5cda9 +size 12090 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Breyten Breytenbach_0.4699338_2582.jpg b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Breyten Breytenbach_0.4699338_2582.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bc91c2d9a8aea4f743543f191d5e461b64c5e7a6 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Breyten Breytenbach_0.4699338_2582.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce7c0f3b3b63571a4e9970fb3319f38ed1dc4baa3f448f395bc71b85cf284ef3 +size 11874 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Brian Oldham_0.396231_1457.jpg b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Brian Oldham_0.396231_1457.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bdd097dbbaa30c8f6ecc917c9f086fe1a6865246 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Brian Oldham_0.396231_1457.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:879748ec208b3349c5dadc184a874e97e2b0425c6552bfbdd7548113524f2d67 +size 10702 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Brian_Despain_0.41538632_2636.jpg b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Brian_Despain_0.41538632_2636.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6bcc0a1a6b4cce9fcb611fdc4b06d508bb865260 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Brian_Despain_0.41538632_2636.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e95c3bd72b04393f36367b0cc1810182140e65f5289f6c046edf5e631c93172d +size 12913 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Brothers Grimm_0.47249007_2570.jpg b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Brothers Grimm_0.47249007_2570.jpg new file mode 100644 index 0000000000000000000000000000000000000000..422b4ddbe053a76af0bb418bba548cc394a89398 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Brothers Grimm_0.47249007_2570.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a787f2185b452670b3a569c056363a53c6e91415fe1e8c146c37cb8f61c490ac +size 17396 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Camilo Egas_0.4586727_2461.jpg b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Camilo Egas_0.4586727_2461.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a894cb7f9c3a19c25ab33af39ad0e9b25061a531 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Camilo Egas_0.4586727_2461.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e03d4d7a2bbba460d550ba458c290eefc1f36a9d4c60c3cc0325cad7825f9f3 +size 9795 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Carey_Morris_0.44388965_2732.jpg b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Carey_Morris_0.44388965_2732.jpg new file mode 100644 index 0000000000000000000000000000000000000000..392d87fe79718e715cfd0f5a94ac38813380cf9e --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Carey_Morris_0.44388965_2732.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f66ff48e5b7fb48a8d858868ca83b71897c3dc9413ebb13d9545f59dd6b09fe5 +size 11345 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Carl_Critchlow_0.4636_2622.jpg b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Carl_Critchlow_0.4636_2622.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f2b6692493c64a4d872b195a32d1e8a737a81190 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Carl_Critchlow_0.4636_2622.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2935257ad021c5fab6ed1612e5b76782955ac311df478797a9b2475aa1f13a0b +size 12958 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Carl_Hoppe_0.44270635_2744.jpg b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Carl_Hoppe_0.44270635_2744.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f317b876167e02c1acfefcc651ca3d657f8d7983 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Carl_Hoppe_0.44270635_2744.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33459a508c8f8d2a8d29421b7398310554fc98dbf59f8c6961f56148c3cda515 +size 12186 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Carles_Delclaux_Is_0.46734855_2599.jpg b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Carles_Delclaux_Is_0.46734855_2599.jpg new file mode 100644 index 0000000000000000000000000000000000000000..45d16e2e181535fc78bc11f9cf198d94acd21603 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Carles_Delclaux_Is_0.46734855_2599.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5bddeca08ee4d43327bac0b54c61da5295ce3986dc0f2cc08bfbeea2118d0eeb +size 12196 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Carlos Saenz de Tejada_0.47332364_2138.jpg b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Carlos Saenz de Tejada_0.47332364_2138.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d43160b2b154857bd814125730b23b2a63bee6f1 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Carlos Saenz de Tejada_0.47332364_2138.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b29b79252cc2850657ae98887ee2a67329d02c15c2195822b5544159e2a0117e +size 11797 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Carlos_Berlanga_0.440354_2758.jpg b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Carlos_Berlanga_0.440354_2758.jpg new file mode 100644 index 0000000000000000000000000000000000000000..38691f99e89d01601f4b66fcc1a5bcf40d24e70a --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Carlos_Berlanga_0.440354_2758.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d72ae5c003b45959495eed2ffe27c2e8e8f3406d8514ef4a7f0f94b63a7447f +size 11261 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Carlos_Trillo_Name_0.4470371_2715.jpg b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Carlos_Trillo_Name_0.4470371_2715.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f16fa49bd09b586404fc71dc90357894ff45457b --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Carlos_Trillo_Name_0.4470371_2715.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:428370bce9e8a4b722d3c6e847e05232fd19586f5de75e548633c2adeccf4dcd +size 15668 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Carmen_Saldana_0.44076762_2756.jpg b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Carmen_Saldana_0.44076762_2756.jpg new file mode 100644 index 0000000000000000000000000000000000000000..51ed5ee0b5d6697ec197aa4569d717125a409735 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Carmen_Saldana_0.44076762_2756.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:58d428fa8ca8e2c69987115062ca1126c90eb8a3bb8d0dae075e5335f917b6b2 +size 13428 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Caroline_Gotch_0.44263047_2745.jpg b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Caroline_Gotch_0.44263047_2745.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6f690026379f706779d532d97d43bb6666e10b67 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Caroline_Gotch_0.44263047_2745.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:999ee4b47b4f67d1c92d7a0e0fa40fa34ff7dc021c0f817b4a02a71442bc6086 +size 12800 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Cecile Walton_0.46672013_1939.jpg b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Cecile Walton_0.46672013_1939.jpg new file mode 100644 index 0000000000000000000000000000000000000000..18ec13fbe21273afa1b36c3e3c3215810f8263b0 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Cecile Walton_0.46672013_1939.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:167c90188479878bdfb477aab6ec1d503894004bf02edbbfdf18570d37b6a6e3 +size 11362 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Cedric Peyravernay_0.4200587_2344.jpg b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Cedric Peyravernay_0.4200587_2344.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6b838bce534adee7aaced90edbb9a9fdf31a996a --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Cedric Peyravernay_0.4200587_2344.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:63b617a3bf9d7cbdd9434799ee37bffb6c54c5e7df17ee22e5f0779cb0f6bc22 +size 9138 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Cedric_Seaut_0.43521535_2783.jpg b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Cedric_Seaut_0.43521535_2783.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c0ad59f5c0f3974e26c4a96593e31dcf46002c1e --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Cedric_Seaut_0.43521535_2783.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:878927900d6b6bd72ecb59071a828821c56791fed4d431329f456205e8f38ba6 +size 11689 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Cedric_Seaut_Keos_Masons_0.4317356_2807.jpg b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Cedric_Seaut_Keos_Masons_0.4317356_2807.jpg new file mode 100644 index 0000000000000000000000000000000000000000..63aa0c1ed50a1da9cdd7c443b9a727310ecaa099 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Cedric_Seaut_Keos_Masons_0.4317356_2807.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb0416f5f66da830d0825d2dd3d9dafc0d493f2963e736f27ce0b4ccfdb47896 +size 9282 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Ceferi_Olive_0.46058378_2645.jpg b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Ceferi_Olive_0.46058378_2645.jpg new file mode 100644 index 0000000000000000000000000000000000000000..cdc063de1c91e6a57836091772eaea6d6d62ca4c --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Ceferi_Olive_0.46058378_2645.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:66015d65c8ddb1f14e2788d6756896e96ef6bf46da69aad3a23dab7e0c786921 +size 11638 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Chica_Macnab_0.4365166_2771.jpg b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Chica_Macnab_0.4365166_2771.jpg new file mode 100644 index 0000000000000000000000000000000000000000..11259b400804d1264dd1de451f48260147cc2a87 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Chica_Macnab_0.4365166_2771.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f976e4fe46b980569c587169e00c84b740e90ec0234f5d16d4a32ad07fed9d5b +size 11989 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Chris LaBrooy_0.45497298_1345.jpg b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Chris LaBrooy_0.45497298_1345.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b9e4b953cf71fb13855e7e27f6ec56e79897b502 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Chris LaBrooy_0.45497298_1345.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f1d5e65d5d8d61fafe22538bcc0e82ada4ca52d2ad8473258c073007d4df655 +size 11952 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Chris Saunders_0.41429797_2519.jpg b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Chris Saunders_0.41429797_2519.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3a2c5285d669b9c6d7016f2f1774ad497d02539f --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-low-impact/digipa-low-impact_Chris Saunders_0.41429797_2519.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:32bc0d5d260c2bb15a4fd02454b4c70c0e55265af4e5a8ecc291e300d5a961cf +size 15953 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_A. B. Jackson_0.4883623_2477.jpg b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_A. B. Jackson_0.4883623_2477.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5988631444e95b11b4d2dfb9e04f003fd51b9669 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_A. B. Jackson_0.4883623_2477.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e552e7c6b491d88b1c866c2ec40dcc38ff6e164ec4dec480c20f20a3832e5418 +size 13577 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Aaron Bohrod_0.48175076_2518.jpg b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Aaron Bohrod_0.48175076_2518.jpg new file mode 100644 index 0000000000000000000000000000000000000000..be29fbd9a231b1c808175a13f915884713b58e92 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Aaron Bohrod_0.48175076_2518.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b861fcf510649ee85dbc6a9bc61ccabf554a4662b9a813bc26e900af849b47ab +size 12101 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Aaron Siskind_0.4852289_0458.jpg b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Aaron Siskind_0.4852289_0458.jpg new file mode 100644 index 0000000000000000000000000000000000000000..36d6fce8f224c07d9b1849cc3a5b64365bb2b2a2 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Aaron Siskind_0.4852289_0458.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:420dd996c56a035edfc16a972d88567ef3dc070fe4697c4e72c7265e4c488467 +size 10843 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Abdel Hadi Al Gazzar_0.49631482_2428.jpg b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Abdel Hadi Al Gazzar_0.49631482_2428.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7f0a3799b39531af2810fdec5bb602ac99e9c408 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Abdel Hadi Al Gazzar_0.49631482_2428.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5dee9d04e7e5cdf5b0a384a016972b0bf391a79b5aa8b2f218143d0c4a5acd28 +size 8950 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Abed Abdi_0.4948855_2433.jpg b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Abed Abdi_0.4948855_2433.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5aebdb7b3ae3c0c6326ee51f40d150537229c4cb --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Abed Abdi_0.4948855_2433.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:27cd5874dc3221f67c926fc24030c397ee19e6aef50579ebf009268d5bc17651 +size 12362 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Abraham Begeyn_0.5172538_2302.jpg b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Abraham Begeyn_0.5172538_2302.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0e3bbb69de53830a66a943b325bc8a28644cc8cf --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Abraham Begeyn_0.5172538_2302.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f2320dc4d3f808f27c45d1163c0f4c5d52be92421498c392f17dfed4e6ed2946 +size 9233 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Adam Martinakis_0.48973057_1223.jpg b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Adam Martinakis_0.48973057_1223.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7b8561f1025e5e5ffd78b0a95e5d9e22c4614983 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Adam Martinakis_0.48973057_1223.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:acaaa659cf292ab3eecb2d9fb6f9a7fb8560dfc6b64981e5a03a11b561ab2561 +size 8429 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Adonna Khare_0.4858036_2185.jpg b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Adonna Khare_0.4858036_2185.jpg new file mode 100644 index 0000000000000000000000000000000000000000..758057805a7a11bcda0152388d1cb7ffaab7d92a --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Adonna Khare_0.4858036_2185.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af0d4e2b89fdd0d646b8225e3cda19bf4444f69c2b71eb2ac2ec6ca4bfe0776a +size 10712 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Adrian Paul Allinson_0.48211843_2514.jpg b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Adrian Paul Allinson_0.48211843_2514.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bd6af781c810b91450ca00d0cb5dd628d87e595f --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Adrian Paul Allinson_0.48211843_2514.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:587219ee7c6763b1f2d2be30ea8445d94ab3be0cae803a70e2b2418d69a38e82 +size 13366 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Aert de Gelder_0.519166_2152.jpg b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Aert de Gelder_0.519166_2152.jpg new file mode 100644 index 0000000000000000000000000000000000000000..de4a2bd203978ae485c82d4fcb794cb11ad054c8 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Aert de Gelder_0.519166_2152.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f183d7ffabeca28de9d5de8bf11f62c87016a069505d25ed0cd0452ce19fec78 +size 11670 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Aileen Eagleton_0.49318358_2446.jpg b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Aileen Eagleton_0.49318358_2446.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3ff407efdc9b1e9cfa787321d3c317827b4da434 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Aileen Eagleton_0.49318358_2446.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:630457bd4f59fcf75f436b0ee92da64a71c70ffe5d4c0807f1ed5093a350e1e9 +size 11764 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Alasdair Grant Taylor_0.47802624_2542.jpg b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Alasdair Grant Taylor_0.47802624_2542.jpg new file mode 100644 index 0000000000000000000000000000000000000000..19859543ec243657389c04bd27d9fd2bd8ca68bd --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Alasdair Grant Taylor_0.47802624_2542.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4249800cf1f13bf44868df13edf1b26a2c48c00dacf38266a87eddebcfd017a7 +size 12432 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Albert Keller_0.47825447_2540.jpg b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Albert Keller_0.47825447_2540.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a017cac9e5e76828feaee4df7d0f9bb9f3af701c --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Albert Keller_0.47825447_2540.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0bab29638c52f326558d804056b61c48f5f6d8b74c645c3b8e258b97eb95a41c +size 9652 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Albert Tucker_0.4854299_2492.jpg b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Albert Tucker_0.4854299_2492.jpg new file mode 100644 index 0000000000000000000000000000000000000000..00007680c3f8f37b286949900debd15d7ed6d51d --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Albert Tucker_0.4854299_2492.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b5e0f063697b2580975f3296947d401fc800ed2a8e5cfaebae171e817e0dbc0 +size 12599 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Albert Watson_0.48901254_0154.jpg b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Albert Watson_0.48901254_0154.jpg new file mode 100644 index 0000000000000000000000000000000000000000..45bc6df502772c4914db51c0b13ca73098599c52 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Albert Watson_0.48901254_0154.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e57c90872ed6e95addc20d0b65667c64a7f3247fdee161f679e00a99541b49e +size 9967 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Alberto Magnelli_0.5103212_2354.jpg b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Alberto Magnelli_0.5103212_2354.jpg new file mode 100644 index 0000000000000000000000000000000000000000..37cf9c7ba9eb9de58239a040d28b9b5da94a32b1 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Alberto Magnelli_0.5103212_2354.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:35cb55aadb31c168872d7f371a29362124154f44f4bdbf91f87fcac539ca4d84 +size 12170 diff --git "a/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Alejandro Obreg\303\263n_0.5190562_2290.jpg" "b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Alejandro Obreg\303\263n_0.5190562_2290.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..335195148aea29a83844b1b8b398b76cd7bec4d5 --- /dev/null +++ "b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Alejandro Obreg\303\263n_0.5190562_2290.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0269633d8a7509139cdca04161755de67711523642db5c6bf29fc22c22ce5059 +size 12059 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Aleksander Kotsis_0.4953621_2430.jpg b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Aleksander Kotsis_0.4953621_2430.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5ced49a19248794aad406d5a16479512e879fa5a --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Aleksander Kotsis_0.4953621_2430.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:57277421bdf42a2f0ad0413611540dc53d4a3286a68dd3241da2f23660c80ec9 +size 10659 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Aleksandr Gerasimov_0.48736423_2483.jpg b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Aleksandr Gerasimov_0.48736423_2483.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9f264378dc1c96921b37b5b7783b284f4843385e --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Aleksandr Gerasimov_0.48736423_2483.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:15d9ffcc143285c95c1285b6cb756a19a4fb187f9c685c5f8e99a3df682cbd22 +size 10748 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Alesso Baldovinetti_0.49849576_2420.jpg b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Alesso Baldovinetti_0.49849576_2420.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ab289401270ac276b00d49843b9be5f42d4df36a --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Alesso Baldovinetti_0.49849576_2420.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f3983274faba178dd70e7e03325577c813dd68047f58af17190db8e3f84f30b +size 12408 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Alexander Bogen_0.48421195_2496.jpg b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Alexander Bogen_0.48421195_2496.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5e3a91d166bce40a412873e7e16930dbb95cded7 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Alexander Bogen_0.48421195_2496.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4570db503afd927d111dd2bd628c483eb5563d367cf296d5ed1d1ad88b5a099f +size 11991 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Alexander Fedosav_0.48360944_2503.jpg b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Alexander Fedosav_0.48360944_2503.jpg new file mode 100644 index 0000000000000000000000000000000000000000..31427e61d12aba1536c5e2cf44fac5e3a947fc6b --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Alexander Fedosav_0.48360944_2503.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:efa0b6531177e6037e091c1b3215cb6bfb8cdf173b175f0e0f7ac76b000f095c +size 10085 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Alexander McQueen_0.5101986_2356.jpg b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Alexander McQueen_0.5101986_2356.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b4c3399e508b1eadaa8602b91d48181090a63348 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Alexander McQueen_0.5101986_2356.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cbeb051780d41b7caec13142d0dddab432b5cd1c82b4fdc23deca48e4c32b882 +size 13475 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Alexander Sharpe Ross_0.49519226_2431.jpg b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Alexander Sharpe Ross_0.49519226_2431.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d5763bfe485cae562be19bf690bd039003ce3acb --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Alexander Sharpe Ross_0.49519226_2431.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f6dae88344bd275c75b96dff21dab9196c4f10f1e305795c9139f2f09465414 +size 10030 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Alexei Harlamoff_0.48255378_2510.jpg b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Alexei Harlamoff_0.48255378_2510.jpg new file mode 100644 index 0000000000000000000000000000000000000000..667ade83b86b2663dc7cbd15d3103c2fef0889ae --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Alexei Harlamoff_0.48255378_2510.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14d0a0e3533b8603127340c9ce034b6714671f8dc375bc3a7a50e78e441d4a63 +size 12520 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Alfons von Czibulka_0.4801954_2524.jpg b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Alfons von Czibulka_0.4801954_2524.jpg new file mode 100644 index 0000000000000000000000000000000000000000..305b3a7c86286351bc04fc821a768a981fc2b689 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Alfons von Czibulka_0.4801954_2524.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b259a9cfdaae22482319802f7c789ac1d30f4d460276697b78e82635533794c +size 11022 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Alfred Jensen_0.49291304_2449.jpg b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Alfred Jensen_0.49291304_2449.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1f52eed0594af6f468668694425cbde883203de6 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Alfred Jensen_0.49291304_2449.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc99001525a5b7ee764d370bb4c3b1b4b3ffe5b0a0d757ed188dc2b3e400799a +size 9730 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Alfred Parsons_0.5127445_2332.jpg b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Alfred Parsons_0.5127445_2332.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d390580bee1a82d97aa5160ea8984530f1bdc49e --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Alfred Parsons_0.5127445_2332.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac5ecd4c8b8ef5c9f66b88e1eefe93b1968c382c40afeedaff35448bbde0405c +size 11754 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Alfredo Volpi_0.49367586_2443.jpg b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Alfredo Volpi_0.49367586_2443.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a3cb75f0bd859e685eedb97fb7fe7eff310777be --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Alfredo Volpi_0.49367586_2443.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a562591379ce8e7d548c72b82b55997625da9be722c8f0fa5cf7880f31740c6 +size 14669 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Alison Debenham_0.4998683_2416.jpg b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Alison Debenham_0.4998683_2416.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d766a477eeeb30f4fcb4ab4de3d9cf02e9e6ca62 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Alison Debenham_0.4998683_2416.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a7d337a55674999c5c6bf335c4b2feafae76887ad54fe1d8d88ab4c61e2354f +size 13541 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Allen Williams_0.47675848_2550.jpg b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Allen Williams_0.47675848_2550.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d1045738cd0c133de41217860bdcc159e5abaa04 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Allen Williams_0.47675848_2550.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f3040113e7e117f37e387c758d620dba1863408621343a584b25461748e8c4bf +size 12552 diff --git "a/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Almeida J\303\272nior_0.515856_2314.jpg" "b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Almeida J\303\272nior_0.515856_2314.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..dbaa24cb9ecf0283e5d8007fc0fa3f492b5ec4bf --- /dev/null +++ "b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Almeida J\303\272nior_0.515856_2314.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9cecdc44b4526f89ac979d724a547787027489fcb267e35c14fda4eda13cd76e +size 9826 diff --git "a/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Alonso V\303\241zquez_0.49205148_2453.jpg" "b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Alonso V\303\241zquez_0.49205148_2453.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..bb73df9f81e21229c6440379d517dfb1a645f808 --- /dev/null +++ "b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Alonso V\303\241zquez_0.49205148_2453.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06c295cf9469124bcb849fc0b1cda5f940fbbeefb8ca65fb99e097cab48a98d5 +size 9565 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Aloysius O'Kelly_0.5102891_2355.jpg b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Aloysius O'Kelly_0.5102891_2355.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6d118cc4d3bc7d5fd39b0abc6c684c89422ec53a --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Aloysius O'Kelly_0.5102891_2355.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b2d84c997485b24f13c2decd93e8d341fc3f7de38bdc4469cec6e26fd6d8098 +size 14620 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Altoon Sultan_0.4820177_2515.jpg b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Altoon Sultan_0.4820177_2515.jpg new file mode 100644 index 0000000000000000000000000000000000000000..42dcbda3e9cbcf90facdf34f2a70206d76af4aac --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Altoon Sultan_0.4820177_2515.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18141a0b431cea7a4b9553d9564cb7f5f8c3483453d842aacbd40551abd6cd0b +size 11747 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Alyssa Monks_0.50734174_2376.jpg b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Alyssa Monks_0.50734174_2376.jpg new file mode 100644 index 0000000000000000000000000000000000000000..55830d442840ee7bae503d92ccc5388f8e519ed1 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Alyssa Monks_0.50734174_2376.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7071ff0babeac79101ed1550e6fda3b9c378b2ecc0a6ad5965ba1d159ecec4e9 +size 9490 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Amedee Ozenfant_0.47950014_2525.jpg b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Amedee Ozenfant_0.47950014_2525.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e6307bea21f5001a12cc116def5094eb30487354 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Amedee Ozenfant_0.47950014_2525.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c7839bd6758b23453660cc768ffc8420c7f45cb669c52f539da2927cb079f1ea +size 12052 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Americo Makk_0.5034161_2401.jpg b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Americo Makk_0.5034161_2401.jpg new file mode 100644 index 0000000000000000000000000000000000000000..48c42b705967979500501378d00131c35d0a3a46 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Americo Makk_0.5034161_2401.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e63535e2c6c8fed325aeb1d35d47863f8ef599131e5e6e2ba6e2f2b7788c225c +size 10924 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Anatoly Metlan_0.48020265_2523.jpg b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Anatoly Metlan_0.48020265_2523.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8dabd28774bb18606931a20b8000f2d76e761c5c --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Anatoly Metlan_0.48020265_2523.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b185e4595b4121edcd4567e6e1fe4bb30f3e070513cf1c21cf254578b296917 +size 11861 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Ancell Stronach_0.5084514_2370.jpg b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Ancell Stronach_0.5084514_2370.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d683e3c6020b789c89b5cd2b815b2040a2a49637 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Ancell Stronach_0.5084514_2370.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd478d70755f8b5f63315eaca4d2235a6d6e40e8e22cae7a7a66acc1b0a62830 +size 12944 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Andre Norton_0.5007602_2408.jpg b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Andre Norton_0.5007602_2408.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e05ef1298fb6b76af06bb79618f7648e9e45e4c7 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Andre Norton_0.5007602_2408.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60a47eb5869b9515336c32ec458825d60193b7cfd1e13c034fcdf16add2d6d74 +size 17469 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Andrea Kowch_0.51822996_2295.jpg b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Andrea Kowch_0.51822996_2295.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4607b70e4e4f76d268a4581836626c60b5a15571 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Andrea Kowch_0.51822996_2295.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c7e561691fd93993027c9ca26dd21d8ddd7095780c736516c444c692973cb7a +size 11156 diff --git "a/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Andr\303\251 Castro_0.4771826_2547.jpg" "b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Andr\303\251 Castro_0.4771826_2547.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..4a73c36aeec3876a82361fd8540b5de75387a219 --- /dev/null +++ "b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Andr\303\251 Castro_0.4771826_2547.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee7263af2983feade7e8678b1c483406edb7f0eb28d0452658d742ad151769d1 +size 10918 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Aniello Falcone_0.51475304_2321.jpg b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Aniello Falcone_0.51475304_2321.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1a6ffe94ee3d18aaa3c53acb32064147597906ff --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Aniello Falcone_0.51475304_2321.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef0893d38bc5c418d2c71314e176610d2dcbd8a9ab75eded65896873c4c440de +size 10465 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Anita Malfatti_0.5080986_2372.jpg b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Anita Malfatti_0.5080986_2372.jpg new file mode 100644 index 0000000000000000000000000000000000000000..cd10cd852f2bfe64df4c65da7d7faec0d3e0268f --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Anita Malfatti_0.5080986_2372.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac979aa1c8559223da2a4841e8325f9cbe5e04f0d25e3e11c08aa074b2fba50c +size 10296 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Anna Haifisch_0.47672725_2551.jpg b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Anna Haifisch_0.47672725_2551.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a327ceb450c3dce3b57f909a5cb668918669807c --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Anna Haifisch_0.47672725_2551.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3feda7d5e01ab904a3c9b4d8ce6029864b43790743ace0562751a977938a23d0 +size 11737 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Anna Razumovskaya_0.5229187_2033.jpg b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Anna Razumovskaya_0.5229187_2033.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9b545576a172607f05bf0eac1b6b3737b07692b2 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Anna Razumovskaya_0.5229187_2033.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e750e9fc50e2bac74eb3a0c05eb3888bb6b0f586fddb538ababca2405a3d83f +size 9720 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Annabel Eyres_0.51136214_2345.jpg b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Annabel Eyres_0.51136214_2345.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bae0c5085737242b89ad86f11f9ece86e663bf5e --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Annabel Eyres_0.51136214_2345.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cfad3ef15d5300533ce285d0137c83b23100dcd16e8a4d2283aa5b93e5604b56 +size 10884 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Annabel Kidston_0.51327646_2328.jpg b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Annabel Kidston_0.51327646_2328.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e7b45399dbeec52ce94a48ff1bc1b293e994cfcc --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Annabel Kidston_0.51327646_2328.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da7940289f23da54a51721c1b485c5dd9ab53066e1d46d6d9e9ba382dd2127f5 +size 12392 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Anne Rigney_0.48357943_2504.jpg b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Anne Rigney_0.48357943_2504.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3082ce8c598000f5aaf1f4be966bf05c6a35627e --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Anne Rigney_0.48357943_2504.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28eee38d5ee2527f353c94616be00627df0f6884f0a167c438ab6dba0725f15a +size 13502 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Anne Ryan_0.48511976_2494.jpg b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Anne Ryan_0.48511976_2494.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4863070766528b36aa123eb31ac889a36462a54e --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Anne Ryan_0.48511976_2494.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:79f3d5ac7b79732e4caab3373ad0fd90393ebe37226c2cef8492f2f9e68b25a7 +size 13338 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Anne Said_0.49473995_2435.jpg b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Anne Said_0.49473995_2435.jpg new file mode 100644 index 0000000000000000000000000000000000000000..830d66dda2bf8d5c881662d7e26249b021482bdb --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Anne Said_0.49473995_2435.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b89f7a9c976ff047e4c6abb4003e50d913a8231adf827920de07b1c51e27a7a9 +size 11935 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Anne Stokes_0.4786997_2533.jpg b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Anne Stokes_0.4786997_2533.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2b9c341b7a347e58717e6bd5c46f5eb7a6b188ab --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Anne Stokes_0.4786997_2533.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:029ee668b7d9cb8776307d92b8665b333769468150d92f4b1b045981705aff45 +size 14525 diff --git "a/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Anton M\303\266ller_0.5127209_2333.jpg" "b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Anton M\303\266ller_0.5127209_2333.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..59e6f1b0db35e02f11da84e9fff162f78f2b61eb --- /dev/null +++ "b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Anton M\303\266ller_0.5127209_2333.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb8a000e677d68a03b66e7b80e72075280688631b2389c725be5277d81382467 +size 8951 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Antonio Roybal_0.4792729_2528.jpg b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Antonio Roybal_0.4792729_2528.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c0ab6390513fb0a5870178817c324dd5ae2ef5fb --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Antonio Roybal_0.4792729_2528.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b1642d52bbaacf9ae1ab0363489cb2482abc694f625772dae5b92823aeea3673 +size 9101 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Arabella Rankin_0.50572735_2387.jpg b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Arabella Rankin_0.50572735_2387.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6f0412954232afdaf683363425d44fbb8330136f --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Arabella Rankin_0.50572735_2387.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8873d81ad0dd4b6e2d8a0509af89de94d0fa5de8bac282541279adf407bc2153 +size 11012 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Aries Moross_0.4863676_2487.jpg b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Aries Moross_0.4863676_2487.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b8b346c6746bc13cf05220961678ce28a9a3ae3c --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Aries Moross_0.4863676_2487.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0271cb6359e2e45cc26916376380f1786104bfbb5e14b15db33212a0af6aa25 +size 15429 diff --git "a/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Arnold Br\303\274gger_0.5080749_2373.jpg" "b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Arnold Br\303\274gger_0.5080749_2373.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..fa5014de6d07f858b52c90c4fbebc01984894b7c --- /dev/null +++ "b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Arnold Br\303\274gger_0.5080749_2373.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f8751c1e635bd15b3ff7c8c5278ed502a0c7b6c38d5a2e4eefd0c83e33c8c01a +size 10406 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Aron Demetz_0.49895018_2419.jpg b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Aron Demetz_0.49895018_2419.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ca9abbd6b106bb74ca9234868b046618e90bdd27 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Aron Demetz_0.49895018_2419.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e9244d722e611eb0a51fc1ab7d8a331403c773d97f04ed720de2bb67f1ad14e1 +size 9008 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Avigdor Arikha_0.49384058_2441.jpg b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Avigdor Arikha_0.49384058_2441.jpg new file mode 100644 index 0000000000000000000000000000000000000000..986a5feb96573819e49330f443c24ed06839c5df --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Avigdor Arikha_0.49384058_2441.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87dcae815a6bbab0838f9060741ea591ff0fba68675377d19df7fed86d88bdf7 +size 11682 diff --git "a/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Axel T\303\266rneman_0.49401706_2440.jpg" "b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Axel T\303\266rneman_0.49401706_2440.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..ac5f281c790c7f3fb3a3fc1e6a0da1c19214dff3 --- /dev/null +++ "b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Axel T\303\266rneman_0.49401706_2440.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b7b8c10b37f174dd95c24e85a3e5b379399eed3e2c4b0c628fb9451e8f40149 +size 10374 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Balcomb Greene_0.5162045_2310.jpg b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Balcomb Greene_0.5162045_2310.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b504859b216c08f8de63d3a073e0efe8536243f9 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Balcomb Greene_0.5162045_2310.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dac512db0e290fd401560f4706a2bc04b259dffef904c209065012b4bd4a208b +size 11539 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Barbara Greg_0.50674164_2381.jpg b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Barbara Greg_0.50674164_2381.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f8617580bbdfd73ae5948f130512dfd9987633c4 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Barbara Greg_0.50674164_2381.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:664606a8b13636e5bd61ff58e644145444bc8908fbca5bcc7ca7a6103f1562a2 +size 12039 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Bartolomeo Cesi_0.5136737_2326.jpg b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Bartolomeo Cesi_0.5136737_2326.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b371599f1214a369627f5520b65689d10fe9e07a --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Bartolomeo Cesi_0.5136737_2326.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d74456518e075a1bedb1ffb172fcedfa520e444c398391f9b0bd5e8968268bc +size 13973 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Basuki Abdullah_0.50613165_2384.jpg b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Basuki Abdullah_0.50613165_2384.jpg new file mode 100644 index 0000000000000000000000000000000000000000..303819bfb81c21f4de9a1d6d20445c003bca085b --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Basuki Abdullah_0.50613165_2384.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9527282549401d3f3b2c91f8c51f70f24eaabaa0afa69d22e806f7d0f6cb5974 +size 11106 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Benedetto Caliari_0.52370214_2262.jpg b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Benedetto Caliari_0.52370214_2262.jpg new file mode 100644 index 0000000000000000000000000000000000000000..33e6907ae47b74786cc6fe37d75d3c38527168d5 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Benedetto Caliari_0.52370214_2262.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0cfe43414bdc20f6bab40e65464c7f2551303fbac7cefe55aa8a4c0819807c7b +size 10890 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Benoit B. Mandelbrot_0.5033001_0401.jpg b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Benoit B. Mandelbrot_0.5033001_0401.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0b5129c6747cc379b5fd07a4bdaf5d2f837a35d1 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Benoit B. Mandelbrot_0.5033001_0401.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c93a5ab663c0f1bb358d9bd24d46dbf97251d801c754993b345bdfed675839a6 +size 12981 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Berndnaut Smilde_0.50864_2367.jpg b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Berndnaut Smilde_0.50864_2367.jpg new file mode 100644 index 0000000000000000000000000000000000000000..210b282ce7731a793d3eeca6a0e733e91f02ed01 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Berndnaut Smilde_0.50864_2367.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6fd872f9e8949d9917b98c5d22a2a16ce7bf58bfecd388957478f55649491a78 +size 10413 diff --git "a/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Bernie D\342\200\231Andrea_0.48813275_2478.jpg" "b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Bernie D\342\200\231Andrea_0.48813275_2478.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..7bfeff3361f8d22b01915fe6afd245a29d730c44 --- /dev/null +++ "b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Bernie D\342\200\231Andrea_0.48813275_2478.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:912ae952e32fdf6622fdee32f69ca91c75223d90d0a2225e97f999862dc9abcf +size 17286 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Bertalan Karlovszky_0.48338628_2505.jpg b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Bertalan Karlovszky_0.48338628_2505.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5525f788cd073a911258d28f729ea750b8725a3b --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Bertalan Karlovszky_0.48338628_2505.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2bea944256cf776f9f3cf2c6e5543b78a10df17651b599d2c857699faaba5b8 +size 10165 diff --git "a/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Bertalan P\303\263r_0.4930132_2448.jpg" "b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Bertalan P\303\263r_0.4930132_2448.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..2024fd2f62d2b134baec54b0c6e7ec6b72fffe10 --- /dev/null +++ "b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Bertalan P\303\263r_0.4930132_2448.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:50549ae6ce25aa3b5cc1936e9a246874de64c6bb8c7b2318e4ef5f9c467d0926 +size 10916 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Bettina Heinen-Ayech_0.51334465_2327.jpg b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Bettina Heinen-Ayech_0.51334465_2327.jpg new file mode 100644 index 0000000000000000000000000000000000000000..27a8a6f6926b227ace7a40763b87531e055a1cb5 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Bettina Heinen-Ayech_0.51334465_2327.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:74d683d5db643c4f721e2b1550d8d995ff8476eccdbddb64dafdd1255b4dc940 +size 14484 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Bill Gekas_0.48848945_2473.jpg b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Bill Gekas_0.48848945_2473.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4b4e83bf3dbcdb648d935da959d964ae9c45b808 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Bill Gekas_0.48848945_2473.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5ec5f07d6bf39a57b437426b5bcce0c891e9cef25168e374a1df6269321c672 +size 13252 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Bill Lewis_0.48635158_2488.jpg b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Bill Lewis_0.48635158_2488.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d0d1bf8af5925307357d523c4bdfce0518e79d0b --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Bill Lewis_0.48635158_2488.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e0540eea7eec0d1f9546fcfbe74b558d45d3778b349a6c52308f9b17d73b0915 +size 11220 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Blek Le Rat_0.49008566_2465.jpg b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Blek Le Rat_0.49008566_2465.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f0ec2c2d962a976becbffd6c60c747f80b463726 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Blek Le Rat_0.49008566_2465.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d53edc9ba3dd9cb9f344beb77df7fa05167eeb3a4807e5bad392f711db2b1e24 +size 16057 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Bo Bartlett_0.51341593_2259.jpg b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Bo Bartlett_0.51341593_2259.jpg new file mode 100644 index 0000000000000000000000000000000000000000..23e2d8f4b4a2ff82860adcae2c24aeb0c27ecf26 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Bo Bartlett_0.51341593_2259.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ae9f1c1d7e4a6a346caaa260e09dc9d5ee0202e624f8c7bfa13b043ff73c37d +size 9965 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Bouchta El Hayani_0.49455142_2437.jpg b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Bouchta El Hayani_0.49455142_2437.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d040586dcd2bc1838c964666767b79542332c166 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Bouchta El Hayani_0.49455142_2437.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ede1d0af71923d966f85ada8dfd6547c5ed66f1d6a16c8add4f7ce4ced1a3ad +size 12307 diff --git "a/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Bo\305\276idar Jakac_0.4763106_2555.jpg" "b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Bo\305\276idar Jakac_0.4763106_2555.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..75740160f810ebab2679d1c18bb5cf474bb87de2 --- /dev/null +++ "b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Bo\305\276idar Jakac_0.4763106_2555.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8376a34f28bf089ab1b41e67318c09cac10962371c136194a3ee96d4c79d733b +size 9613 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Brooke DiDonato_0.47680336_1475.jpg b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Brooke DiDonato_0.47680336_1475.jpg new file mode 100644 index 0000000000000000000000000000000000000000..924e36e20f62e90154fecdbb767b756c79adb429 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Brooke DiDonato_0.47680336_1475.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c57cd318f9c64ac04df3d2843a6a706cda759ac482f3dfe32bb2e97d91efb568 +size 7629 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Buckminster Fuller_0.51607454_2312.jpg b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Buckminster Fuller_0.51607454_2312.jpg new file mode 100644 index 0000000000000000000000000000000000000000..923f4dbfb4300f076ae3143647a31777efd615bd --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Buckminster Fuller_0.51607454_2312.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3bf002253e0cd0d4273c7180fb3b5fbfd9af8206ffa3a565383999863cfa31b4 +size 12399 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Caesar Andrade Faini_0.51971483_2287.jpg b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Caesar Andrade Faini_0.51971483_2287.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b0fddc70a4f891f17822a57b4cc1b57b47a87696 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Caesar Andrade Faini_0.51971483_2287.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cac8d6a8b93cb84533e035d94a49a87afe0e0f82624b329f1f983fc67b20b5e0 +size 12123 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Cam Sykes_0.510071_2357.jpg b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Cam Sykes_0.510071_2357.jpg new file mode 100644 index 0000000000000000000000000000000000000000..30136ad91ca5280a24561ac7e8a4eb23c7da4703 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Cam Sykes_0.510071_2357.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:81e72a10056b57c888b3727e529175d0bca94f371376ab37d41d64f622c18e11 +size 10005 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Carl Rahl_0.5040115_2399.jpg b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Carl Rahl_0.5040115_2399.jpg new file mode 100644 index 0000000000000000000000000000000000000000..538776660c6aae854cc55dab2ff19f9eba6b280b --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Carl Rahl_0.5040115_2399.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eee5ab242b6218175680d7929b53f33e8bfffe3a0d0a94c805a7950acec9e11 +size 12479 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Carl-Henning Pedersen_0.4998986_2415.jpg b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Carl-Henning Pedersen_0.4998986_2415.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f1365256dade1a7f3820e6698a11158def6ca2ef --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Carl-Henning Pedersen_0.4998986_2415.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f6b1a372b73b2957da5bd2c461f79ffe2e63ada90262aabef11aa71104fbbfe +size 10734 diff --git "a/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Carlos Enr\303\255quez G\303\263mez_0.49494863_2432.jpg" "b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Carlos Enr\303\255quez G\303\263mez_0.49494863_2432.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..a491f875d0c7b12eaa2a5b037cab3d91d444e69e --- /dev/null +++ "b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Carlos Enr\303\255quez G\303\263mez_0.49494863_2432.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed5b3bc11d644ada3c87e9a90cf24cb7f0f6bf7ae60f5d4994c9bd7c4a26fcf6 +size 12348 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Caroline Lucy Scott_0.49190843_1916.jpg b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Caroline Lucy Scott_0.49190843_1916.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d54710ad65c67e56bccf986251a5cdbb1c4aa2f7 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Caroline Lucy Scott_0.49190843_1916.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e21e9d95ed08e9fe58dbfb5de97573e502c64183ef0c98a4c5c60572f66e88e +size 12856 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Caspar Netscher_0.5019529_2404.jpg b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Caspar Netscher_0.5019529_2404.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c819736e42b59804cd27c8ed7f9351073bdbceee --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Caspar Netscher_0.5019529_2404.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc11fe297f3548dec6f5fe1a112c61bb7deca3ce8ad8ceee734c1d2e9d330e15 +size 11230 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Celia Fiennes_0.51266706_2336.jpg b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Celia Fiennes_0.51266706_2336.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6504008b1ea1a004c1b34bcf023c2cc43416b61a --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Celia Fiennes_0.51266706_2336.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d2b590aed99e9ec1c34d4cd70073bc8f0a04ac39b43dba6446322181c5fb48eb +size 11159 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Charles Mozley_0.5171356_2303.jpg b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Charles Mozley_0.5171356_2303.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d5b89c1e1a2c1a7f92b4e74d36d0ac5566eb91b3 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Charles Mozley_0.5171356_2303.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13bdbfe252db39a493d40fc3154b687c463c3590de73ac872b968e42b9afbf30 +size 11300 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Charles Schridde_0.51308405_2329.jpg b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Charles Schridde_0.51308405_2329.jpg new file mode 100644 index 0000000000000000000000000000000000000000..131e974c085e3a7fce8c6b45635253e9ae69b0bc --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Charles Schridde_0.51308405_2329.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1324fa184b2033494c25cc2cc8df8e6a5bb8138fd1106d7a389ea8473503aee0 +size 9659 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Charles Williams_0.510406_2351.jpg b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Charles Williams_0.510406_2351.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9c77f8a8662aa95a06cdfbd6598a6f2aabc6cab1 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Charles Williams_0.510406_2351.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c21ffc086343bc87b63a07865ef2068842ccdb6f8e50de1bfdaf840518cc05d4 +size 13761 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Chen Zhen_0.5071876_2377.jpg b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Chen Zhen_0.5071876_2377.jpg new file mode 100644 index 0000000000000000000000000000000000000000..af61c3695daff1ddb7178dff768e90813a9c76c8 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Chen Zhen_0.5071876_2377.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0565ec0fc0fd65c6034bb634de8045fe25471209a6c75017a9bad45813be80cf +size 9548 diff --git "a/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Christen K\303\270bke_0.49961317_2418.jpg" "b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Christen K\303\270bke_0.49961317_2418.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..90a4c20ae2974391ac926eb2ac6e4ad230d8ca16 --- /dev/null +++ "b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Christen K\303\270bke_0.49961317_2418.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:63a73166397da647a1e667f5fc5d809bddbf6bd88566fb31487bdefb652e5d81 +size 9587 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Christian August Lorentzen_0.50989646_2360.jpg b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Christian August Lorentzen_0.50989646_2360.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b20d21612663af6661aca3bc37fa5371cc5aeece --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Christian August Lorentzen_0.50989646_2360.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a45bfd8370c3b30667173a819275b6e7033ce5eeb0f66e2b0f1450f89972ec4 +size 13516 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Christopher Williams_0.5052288_2389.jpg b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Christopher Williams_0.5052288_2389.jpg new file mode 100644 index 0000000000000000000000000000000000000000..159980e24a363c203f550092002a2c7614cbc7cb --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Christopher Williams_0.5052288_2389.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b01724adc7757d113e2e9d94451f65bc39bfe69bef36ac39d5f7f531e7583c9b +size 10234 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Christopher Wood_0.49360397_2266.jpg b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Christopher Wood_0.49360397_2266.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f64b2d8d38acc86a1f32fd6ed46054f3407ab0ec --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Christopher Wood_0.49360397_2266.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:369557b6e3ce1f946bcb5b66a9459d50edcefe32e345522ecaecaf2ffabe238e +size 13319 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Clara Miller Burd_0.47797233_2520.jpg b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Clara Miller Burd_0.47797233_2520.jpg new file mode 100644 index 0000000000000000000000000000000000000000..90a06ebe63011ad1da508e01da69a2825c8827cc --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Clara Miller Burd_0.47797233_2520.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a2fbbac892aaf26b14404f7a8e30b6adefb03e8a403a17057ec2b234b322ee69 +size 9266 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Clarice Beckett_0.487809_2479.jpg b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Clarice Beckett_0.487809_2479.jpg new file mode 100644 index 0000000000000000000000000000000000000000..dd5079894edbe76ff71bab9ca301336c1c9dc399 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Clarice Beckett_0.487809_2479.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:136ae61a6376b893ee90258717a2127211f6676030b7682281d13ea8015bc860 +size 12461 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Clovis Trouille_0.47669724_2552.jpg b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Clovis Trouille_0.47669724_2552.jpg new file mode 100644 index 0000000000000000000000000000000000000000..44987ce818064c3069a32a0ee1c9b829de14e479 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Clovis Trouille_0.47669724_2552.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d66ad8e39518de42d01745ce00577c22947ad789babe71a53b7cc1a6280bf91 +size 10876 diff --git a/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Conrad Marca-Relli_0.5148334_2191.jpg b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Conrad Marca-Relli_0.5148334_2191.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5cb8617c43cc544543b09ecb3c3646a5f4e3babf --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/digipa-med-impact/digipa-med-impact_Conrad Marca-Relli_0.5148334_2191.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e24c3284503875cd869eabad8671cff815fd89ab4bb515dbc9805e97320ca74 +size 10777 diff --git a/artists-to-study/ats/thumbnail/dog/fareast/fareast_Aguri Uchida_0.5005107_2411.jpg b/artists-to-study/ats/thumbnail/dog/fareast/fareast_Aguri Uchida_0.5005107_2411.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7f59056e4aa8976c4191b53ab34befbc7268dc0c --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/fareast/fareast_Aguri Uchida_0.5005107_2411.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df99f8b7c780e289ba267f3301d2d2badadcb7008abb32519702cf68c1329ffa +size 10467 diff --git a/artists-to-study/ats/thumbnail/dog/fareast/fareast_Ai Yazawa_0.55768114_1976.jpg b/artists-to-study/ats/thumbnail/dog/fareast/fareast_Ai Yazawa_0.55768114_1976.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f2494ac71b20a45ccae60547a8390ace67b05a40 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/fareast/fareast_Ai Yazawa_0.55768114_1976.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d9b77c63221dc7d601bee8ea33ba3c150afb8bc658f6aa569dc5c253d08aecd +size 10324 diff --git a/artists-to-study/ats/thumbnail/dog/fareast/fareast_Ai_Xuan_0.43150818_2811.jpg b/artists-to-study/ats/thumbnail/dog/fareast/fareast_Ai_Xuan_0.43150818_2811.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6d03632ea371d8d0277ad6e4ac7f85f7b7ae25d5 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/fareast/fareast_Ai_Xuan_0.43150818_2811.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e55481dd83d9a094327be667efcf32f5ca926ed70f87253e9f48b84868e9bbe +size 11375 diff --git a/artists-to-study/ats/thumbnail/dog/fareast/fareast_Alice Mason_0.48188528_2516.jpg b/artists-to-study/ats/thumbnail/dog/fareast/fareast_Alice Mason_0.48188528_2516.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2a77282ef152874f496ca8c8547827da7573f14b --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/fareast/fareast_Alice Mason_0.48188528_2516.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e76a958d9ca9eab7e1b5bb8c96aeb6d6b56f83d627b30fd06ec0b090a2dba17 +size 12856 diff --git a/artists-to-study/ats/thumbnail/dog/fareast/fareast_Amanda Sage_0.37731662_1991.jpg b/artists-to-study/ats/thumbnail/dog/fareast/fareast_Amanda Sage_0.37731662_1991.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f1b627a0378199164059820de851bb58effa07a2 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/fareast/fareast_Amanda Sage_0.37731662_1991.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b9a513f3ea078b8eebb8fa3e2308d21d16859e144621545f937713c247fdb88a +size 20467 diff --git a/artists-to-study/ats/thumbnail/dog/fareast/fareast_An Zhengwen_0.56942475_1876.jpg b/artists-to-study/ats/thumbnail/dog/fareast/fareast_An Zhengwen_0.56942475_1876.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6317fe91832e4d4592d9777d95ffb3a39589b78f --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/fareast/fareast_An Zhengwen_0.56942475_1876.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e206011a9ee3cffaaa68e4387a92d7fc5b0b6ec3166a1f06c9bf1e2e8e820cb +size 10817 diff --git a/artists-to-study/ats/thumbnail/dog/fareast/fareast_Android Jones_0.61023116_1458.jpg b/artists-to-study/ats/thumbnail/dog/fareast/fareast_Android Jones_0.61023116_1458.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6fad49fb0a291a59fab204865d343b2e095533be --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/fareast/fareast_Android Jones_0.61023116_1458.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d620fa24faa404734dc5b417b30fe99533db48c972dee4e4146f1566ffd33d78 +size 17206 diff --git a/artists-to-study/ats/thumbnail/dog/fareast/fareast_Angela_Sung_0.391746_2817.jpg b/artists-to-study/ats/thumbnail/dog/fareast/fareast_Angela_Sung_0.391746_2817.jpg new file mode 100644 index 0000000000000000000000000000000000000000..59c50f6d7a33f72a0eeb5e7706e81617fb3c8468 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/fareast/fareast_Angela_Sung_0.391746_2817.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bdd1557a4a76060e7e71341b522ec2aa86032f1813c4f8df43b203b63735529c +size 11030 diff --git a/artists-to-study/ats/thumbnail/dog/fareast/fareast_Ayako Rokkaku_0.61891204_1373.jpg b/artists-to-study/ats/thumbnail/dog/fareast/fareast_Ayako Rokkaku_0.61891204_1373.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5969392275fba1136031c863dbcf17dc4129814f --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/fareast/fareast_Ayako Rokkaku_0.61891204_1373.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:628705e6fa88cabc263f2ef1aa9cfb08d5741fb79ee5b4fdf9b0a0241218d475 +size 11332 diff --git a/artists-to-study/ats/thumbnail/dog/fareast/fareast_Bernat_Sanjuan_0.45074993_2700.jpg b/artists-to-study/ats/thumbnail/dog/fareast/fareast_Bernat_Sanjuan_0.45074993_2700.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8bfbdda5accf50bac075f4968538d7ec0bf48052 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/fareast/fareast_Bernat_Sanjuan_0.45074993_2700.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:096f08966c1650f514be0cc3329b1539f2f8cae9a965b89fa16a7ca8c83f12a2 +size 12318 diff --git a/artists-to-study/ats/thumbnail/dog/fareast/fareast_Byeon Sang-byeok_0.59200096_1636.jpg b/artists-to-study/ats/thumbnail/dog/fareast/fareast_Byeon Sang-byeok_0.59200096_1636.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f3fd96b50e4dbced776aa2ce35c46c1ba8d6aeb4 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/fareast/fareast_Byeon Sang-byeok_0.59200096_1636.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f00a9f2a5a18abc4ed62785f859b826061c78fadee4c7ada4ec13b0078fbd723 +size 9797 diff --git a/artists-to-study/ats/thumbnail/dog/fareast/fareast_Byron Galvez_0.39178842_2231.jpg b/artists-to-study/ats/thumbnail/dog/fareast/fareast_Byron Galvez_0.39178842_2231.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4de6e1cabf9429bb4cf5469987830a2cde36f667 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/fareast/fareast_Byron Galvez_0.39178842_2231.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:349d586f7875f11ed60ce28433bc0b7fabf7ed83545f5b751072d5ed9468374f +size 15156 diff --git a/artists-to-study/ats/thumbnail/dog/fareast/fareast_Cao Zhibai_0.47476804_2558.jpg b/artists-to-study/ats/thumbnail/dog/fareast/fareast_Cao Zhibai_0.47476804_2558.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0c32803f76e8e00de3457884ad5a7d6c8852137b --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/fareast/fareast_Cao Zhibai_0.47476804_2558.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:37a55a01ddf54a94c030b2deef76d575d4db0afa384b0065fdb27f1a354dc007 +size 8009 diff --git a/artists-to-study/ats/thumbnail/dog/fareast/fareast_Charles_Martin_0.43582463_2776.jpg b/artists-to-study/ats/thumbnail/dog/fareast/fareast_Charles_Martin_0.43582463_2776.jpg new file mode 100644 index 0000000000000000000000000000000000000000..24c063dcbe4efc7f0df6566c1bda00283aac4e31 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/fareast/fareast_Charles_Martin_0.43582463_2776.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a633b6951456b9d4d6066aea386e6bc893da7d815c00ee54eb124075e59f041e +size 16474 diff --git a/artists-to-study/ats/thumbnail/dog/fareast/fareast_Chen_Hong_0.46516004_2615.jpg b/artists-to-study/ats/thumbnail/dog/fareast/fareast_Chen_Hong_0.46516004_2615.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d1972aeeb8e393518e2eb300b7c6dc849871f6b6 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/fareast/fareast_Chen_Hong_0.46516004_2615.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:101a8992a9a9b072f4b085092c79bb5a7e36a01cc576e3d4ff20245f6c2c97c1 +size 10803 diff --git a/artists-to-study/ats/thumbnail/dog/fareast/fareast_Chen_Jiru_0.4553378_2677.jpg b/artists-to-study/ats/thumbnail/dog/fareast/fareast_Chen_Jiru_0.4553378_2677.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b50d3128845158498fc9ef93b5c5843daa513168 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/fareast/fareast_Chen_Jiru_0.4553378_2677.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:65cf2cb5976176f46f6e5e028cdc1838d69f1a87fd6820a63ec583005b19db51 +size 11350 diff --git a/artists-to-study/ats/thumbnail/dog/fareast/fareast_Chen_Lin_0.45035738_2704.jpg b/artists-to-study/ats/thumbnail/dog/fareast/fareast_Chen_Lin_0.45035738_2704.jpg new file mode 100644 index 0000000000000000000000000000000000000000..af59a59a402f8a82b050fa3153b974675cc644cc --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/fareast/fareast_Chen_Lin_0.45035738_2704.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b44af69dcb46e0006d8ce58ce33bd5c4ef14bdbcc1b091cfb68f749e48bc4f9c +size 12392 diff --git a/artists-to-study/ats/thumbnail/dog/fareast/fareast_Cheng Jiasui_0.48889247_2471.jpg b/artists-to-study/ats/thumbnail/dog/fareast/fareast_Cheng Jiasui_0.48889247_2471.jpg new file mode 100644 index 0000000000000000000000000000000000000000..27c5b2018eefb121d4da38d6ec11639b131493be --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/fareast/fareast_Cheng Jiasui_0.48889247_2471.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e76b080ba327f976fa5c20d6a6382ec745e6f03840c9edf2f0fa2c7f452c6ca8 +size 9968 diff --git a/artists-to-study/ats/thumbnail/dog/fareast/fareast_Cheng Zhengkui_0.57990086_1772.jpg b/artists-to-study/ats/thumbnail/dog/fareast/fareast_Cheng Zhengkui_0.57990086_1772.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ac496f62429d3196e4efb5a7da837a8eef5f11f1 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/fareast/fareast_Cheng Zhengkui_0.57990086_1772.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4505f89c0384c9716ca71d8d6a64fc100d4c1e24bc0b208471cebb35be5bb53f +size 10484 diff --git a/artists-to-study/ats/thumbnail/dog/fareast/fareast_Ching_Yeh_0.46177_2632.jpg b/artists-to-study/ats/thumbnail/dog/fareast/fareast_Ching_Yeh_0.46177_2632.jpg new file mode 100644 index 0000000000000000000000000000000000000000..751a24542e025eda6428b05fdd3cc2e52a0a3727 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/fareast/fareast_Ching_Yeh_0.46177_2632.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e79be598e21b3cfa9a1b1c3c0405070ac37c77cbff5c5a0c691b2babd021ff90 +size 11436 diff --git a/artists-to-study/ats/thumbnail/dog/fareast/fareast_Chizuko Yoshida_0.6233001_1326.jpg b/artists-to-study/ats/thumbnail/dog/fareast/fareast_Chizuko Yoshida_0.6233001_1326.jpg new file mode 100644 index 0000000000000000000000000000000000000000..603406ccf2c6fab9de76340ad54e5e9d848c79bc --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/fareast/fareast_Chizuko Yoshida_0.6233001_1326.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f33113cb7d9c5775f36cec90b44f00cb6f8efa4cb9390b7428f3cee36e7b0b1 +size 10760 diff --git a/artists-to-study/ats/thumbnail/dog/fareast/fareast_Choi_Buk_0.44892842_2711.jpg b/artists-to-study/ats/thumbnail/dog/fareast/fareast_Choi_Buk_0.44892842_2711.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4e6e48b0f1d241ec84f94a3c4ac552c441393df1 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/fareast/fareast_Choi_Buk_0.44892842_2711.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3322a4e90e7880a05d718ae87d08d5d386ff3e89b2350cc58b5a8b594ca8b14f +size 10312 diff --git a/artists-to-study/ats/thumbnail/dog/fareast/fareast_Cui Zizhong_0.47902682_2529.jpg b/artists-to-study/ats/thumbnail/dog/fareast/fareast_Cui Zizhong_0.47902682_2529.jpg new file mode 100644 index 0000000000000000000000000000000000000000..176b9a353aa3d8414aad69dd9059e4e94db99071 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/fareast/fareast_Cui Zizhong_0.47902682_2529.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ea3e47b253632e138300808a908d7534cb8f9edeea77d85e415484d45d561f93 +size 9524 diff --git a/artists-to-study/ats/thumbnail/dog/fareast/fareast_Dai_Jin_0.4375449_2769.jpg b/artists-to-study/ats/thumbnail/dog/fareast/fareast_Dai_Jin_0.4375449_2769.jpg new file mode 100644 index 0000000000000000000000000000000000000000..caa8f4d54be516d4dad91cd239f6eb29c57685ee --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/fareast/fareast_Dai_Jin_0.4375449_2769.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f485ced9e13166ae37dccc13abee4ffbc9d3dba31fdb6ff8c366ca6d140f5d29 +size 11872 diff --git a/artists-to-study/ats/thumbnail/dog/fareast/fareast_Dain_Yoon_0.45977795_2651.jpg b/artists-to-study/ats/thumbnail/dog/fareast/fareast_Dain_Yoon_0.45977795_2651.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c1f9828e26e17e34883039e18f4408b93a4f8f34 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/fareast/fareast_Dain_Yoon_0.45977795_2651.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf77334596429be4cc9fff035056f0392cb90fe6a50f39f5068c0864916be394 +size 14581 diff --git a/artists-to-study/ats/thumbnail/dog/fareast/fareast_Dong_Yuan_0.4303865_2819.jpg b/artists-to-study/ats/thumbnail/dog/fareast/fareast_Dong_Yuan_0.4303865_2819.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b3af5d412b7aaae8218267fe77dd5e90fdc0d9fa --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/fareast/fareast_Dong_Yuan_0.4303865_2819.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ead6da44a33dc90e6327061e7ab7e6c57433f16c16db270d1ae6602548cce13f +size 9240 diff --git a/artists-to-study/ats/thumbnail/dog/fareast/fareast_Du Qiong_0.48414314_2498.jpg b/artists-to-study/ats/thumbnail/dog/fareast/fareast_Du Qiong_0.48414314_2498.jpg new file mode 100644 index 0000000000000000000000000000000000000000..002d71e9f8d37aa20fe5bd3f7a6cdcee0491865d --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/fareast/fareast_Du Qiong_0.48414314_2498.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d9edbb37ad2b05611d82c6fbffc9ecd04d52d2a3f86ea82fd70eb23a7f452d1 +size 10576 diff --git a/artists-to-study/ats/thumbnail/dog/fareast/fareast_Fang_Congyi_0.45240825_2694.jpg b/artists-to-study/ats/thumbnail/dog/fareast/fareast_Fang_Congyi_0.45240825_2694.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3a87d6ee0ed39d5475f9eac7adfcd324fd0c87f7 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/fareast/fareast_Fang_Congyi_0.45240825_2694.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:30305168ec75aceb47f394d39bea753fd3c3f4b464fd4eeab3b978a7add1806e +size 8931 diff --git a/artists-to-study/ats/thumbnail/dog/fareast/fareast_Fei_Danxu_0.4433627_2738.jpg b/artists-to-study/ats/thumbnail/dog/fareast/fareast_Fei_Danxu_0.4433627_2738.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d1946e6f8a825e7aa8033df08d981b3994cc038a --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/fareast/fareast_Fei_Danxu_0.4433627_2738.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:625df3c108b8bf0c9f39f618e3efac6516611076f3a99b90fe8ca11d22e533c6 +size 9355 diff --git a/artists-to-study/ats/thumbnail/dog/fareast/fareast_Fenghua Zhong_0.56492203_1915.jpg b/artists-to-study/ats/thumbnail/dog/fareast/fareast_Fenghua Zhong_0.56492203_1915.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a3023b0b87295fc821a2e66168ef7b1ff4323f74 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/fareast/fareast_Fenghua Zhong_0.56492203_1915.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d1361d446f8576f48fc28939de0fc2862eed0a5b73a5e58cc2672b8ec4738fb8 +size 8907 diff --git a/artists-to-study/ats/thumbnail/dog/fareast/fareast_Fuyuko Matsui_0.5051116_2390.jpg b/artists-to-study/ats/thumbnail/dog/fareast/fareast_Fuyuko Matsui_0.5051116_2390.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b5a8dfc1221170114d8d89b6fc4ce07a3ea8bd07 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/fareast/fareast_Fuyuko Matsui_0.5051116_2390.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6afa861c7e8d2979c38dfe6d318dd5604833b84fee387f9c8e9f3227d97cb282 +size 9041 diff --git a/artists-to-study/ats/thumbnail/dog/fareast/fareast_Gao Fenghan_0.5732926_1841.jpg b/artists-to-study/ats/thumbnail/dog/fareast/fareast_Gao Fenghan_0.5732926_1841.jpg new file mode 100644 index 0000000000000000000000000000000000000000..52ba4d555cf23f9fb9e1d8b9429f3e6111174614 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/fareast/fareast_Gao Fenghan_0.5732926_1841.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f0c170630995c527dbf8d4abd7d09e14c4d57a1d2e52dfb9a441244cbd7c46cc +size 8275 diff --git a/artists-to-study/ats/thumbnail/dog/fareast/fareast_Gao Qipei_0.4860631_2491.jpg b/artists-to-study/ats/thumbnail/dog/fareast/fareast_Gao Qipei_0.4860631_2491.jpg new file mode 100644 index 0000000000000000000000000000000000000000..566b9ec82c21cf3246dea43565156a4df826f4f7 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/fareast/fareast_Gao Qipei_0.4860631_2491.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd0fd0c6d54ac4ecc96cde0b588acc432f403da651c8157c6e7ea9215018c182 +size 9652 diff --git a/artists-to-study/ats/thumbnail/dog/fareast/fareast_Gao Xiang_0.5392419_2157.jpg b/artists-to-study/ats/thumbnail/dog/fareast/fareast_Gao Xiang_0.5392419_2157.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bbb5927f432e37de1eae2ee9409fb8aa2253ce5f --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/fareast/fareast_Gao Xiang_0.5392419_2157.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:69654b3cd4b1d96db07e8d783f1c5a061637e36ac1d1df83c5de8cd2cb6c9f24 +size 9366 diff --git a/artists-to-study/ats/thumbnail/dog/fareast/fareast_Gu Kaizhi_0.6110798_1442.jpg b/artists-to-study/ats/thumbnail/dog/fareast/fareast_Gu Kaizhi_0.6110798_1442.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c087c154896acdb922983cc43211615684a69dcd --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/fareast/fareast_Gu Kaizhi_0.6110798_1442.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:91217ae890e529c7206c557c6eced4b88b616e2a63928c5fa5c95a2165204c04 +size 9055 diff --git a/artists-to-study/ats/thumbnail/dog/fareast/fareast_Gu_Hongzhong_0.4454906_2727.jpg b/artists-to-study/ats/thumbnail/dog/fareast/fareast_Gu_Hongzhong_0.4454906_2727.jpg new file mode 100644 index 0000000000000000000000000000000000000000..cb6a008dbc28dd21f3609eed2c39b3ebe5a6b47d --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/fareast/fareast_Gu_Hongzhong_0.4454906_2727.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f8e860be08fcd0cd36ff09011a2712e5e08e0559a74f2c51d11997995e7a9232 +size 8923 diff --git a/artists-to-study/ats/thumbnail/dog/fareast/fareast_Guan Daosheng_0.506712_2382.jpg b/artists-to-study/ats/thumbnail/dog/fareast/fareast_Guan Daosheng_0.506712_2382.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e609f47dcb569057aa35822c8bfe4b0e8609c4a8 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/fareast/fareast_Guan Daosheng_0.506712_2382.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:10af1887caa43e99853e9096e359bae9fc509e008700299d8ac94af3af0d3b47 +size 10005 diff --git a/artists-to-study/ats/thumbnail/dog/fareast/fareast_Guo Pei_0.5857794_1701.jpg b/artists-to-study/ats/thumbnail/dog/fareast/fareast_Guo Pei_0.5857794_1701.jpg new file mode 100644 index 0000000000000000000000000000000000000000..72e51ef0a93c94af0b85566c7763a71e1544451a --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/fareast/fareast_Guo Pei_0.5857794_1701.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a70eb342ad4364483531e863fa6f0110ad63cd2ef4831ba3792c7b62212f5b5b +size 21658 diff --git "a/artists-to-study/ats/thumbnail/dog/fareast/fareast_Gusukuma Seih\305\215_0.60479784_1500.jpg" "b/artists-to-study/ats/thumbnail/dog/fareast/fareast_Gusukuma Seih\305\215_0.60479784_1500.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..8f9422b1be374d98d1d6a77975315c26c9cd0166 --- /dev/null +++ "b/artists-to-study/ats/thumbnail/dog/fareast/fareast_Gusukuma Seih\305\215_0.60479784_1500.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:394c1c055b62d6b28266aa0439f7768b151b8c0b092bcefa605d45ed3172c4ea +size 10932 diff --git a/artists-to-study/ats/thumbnail/dog/fareast/fareast_Hasegawa Settan_0.5647092_1918.jpg b/artists-to-study/ats/thumbnail/dog/fareast/fareast_Hasegawa Settan_0.5647092_1918.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a87baedd8056df41110f1f63316cf28e145323c1 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/fareast/fareast_Hasegawa Settan_0.5647092_1918.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2cb17451bc8f0398c3fcdc7ecf2a0ad82264775559985dcedd514b2d0227ab0f +size 11964 diff --git a/artists-to-study/ats/thumbnail/dog/fareast/fareast_Henry Justice Ford_0.51214355_0554.jpg b/artists-to-study/ats/thumbnail/dog/fareast/fareast_Henry Justice Ford_0.51214355_0554.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fa7850eed03b42e6c21ee25ada94d4d82479c901 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/fareast/fareast_Henry Justice Ford_0.51214355_0554.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:48d1915ee778fed58ced760ae826f45e52de65210a3c01a880d8fd384101147a +size 12469 diff --git "a/artists-to-study/ats/thumbnail/dog/fareast/fareast_Hidari Jingor\305\215_0.63388014_1220.jpg" "b/artists-to-study/ats/thumbnail/dog/fareast/fareast_Hidari Jingor\305\215_0.63388014_1220.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..53a32177b8e58f30e32bde33254cda228416d516 --- /dev/null +++ "b/artists-to-study/ats/thumbnail/dog/fareast/fareast_Hidari Jingor\305\215_0.63388014_1220.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d02c859e2a21ac6b49abf07ca5b6d82950417abc3731c3111e6597a37b9241e +size 11051 diff --git a/artists-to-study/ats/thumbnail/dog/fareast/fareast_Hideyuki Kikuchi_0.544193_2104.jpg b/artists-to-study/ats/thumbnail/dog/fareast/fareast_Hideyuki Kikuchi_0.544193_2104.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0118dc47babd615ee65d0401eab0c1482b83875e --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/fareast/fareast_Hideyuki Kikuchi_0.544193_2104.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a8306ec1ddac5b4167c568450b8fdbc6394e68594d794744bb7f83757f467a1 +size 10490 diff --git a/artists-to-study/ats/thumbnail/dog/fareast/fareast_Hiromitsu Takahashi_0.5805599_1766.jpg b/artists-to-study/ats/thumbnail/dog/fareast/fareast_Hiromitsu Takahashi_0.5805599_1766.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b1df24018e58cf1a4de23504bf7e529e644f6ba9 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/fareast/fareast_Hiromitsu Takahashi_0.5805599_1766.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae4c4cc6e2561b0f498fe1c3010cfa6895bc65835d3aef425f217ddb0ce01416 +size 10762 diff --git a/artists-to-study/ats/thumbnail/dog/fareast/fareast_Hiroyuki Tajima_0.5816242_1751.jpg b/artists-to-study/ats/thumbnail/dog/fareast/fareast_Hiroyuki Tajima_0.5816242_1751.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0ae319210fd864468c7fc81915dc3c9f00b3baf0 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/fareast/fareast_Hiroyuki Tajima_0.5816242_1751.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:abb78f68ce402df2971fad1a59d399b6d97e8434d28c2c033b8c89e0beec746d +size 11286 diff --git "a/artists-to-study/ats/thumbnail/dog/fareast/fareast_Hishida Shuns\305\215_0.751617_0278.jpg" "b/artists-to-study/ats/thumbnail/dog/fareast/fareast_Hishida Shuns\305\215_0.751617_0278.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..3851e51fd4a0bbd4b7dcf2ff109a680dde9dc6e2 --- /dev/null +++ "b/artists-to-study/ats/thumbnail/dog/fareast/fareast_Hishida Shuns\305\215_0.751617_0278.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0710bfa22f27e1c01413fea9888979cb71280145ecd7ad72c28c1dc7cada4a38 +size 9909 diff --git a/artists-to-study/ats/thumbnail/dog/fareast/fareast_Hisui Sugiura_0.603034_1525.jpg b/artists-to-study/ats/thumbnail/dog/fareast/fareast_Hisui Sugiura_0.603034_1525.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1863d535c4ae99428867cfcba74ead9ad8490b3a --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/fareast/fareast_Hisui Sugiura_0.603034_1525.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6fbb9965c35746dc8291110a9e36986314b9dd6addfd0cf4fd80eaeb38b50b7a +size 11206 diff --git a/artists-to-study/ats/thumbnail/dog/fareast/fareast_Hu Zaobin_0.5510481_2038.jpg b/artists-to-study/ats/thumbnail/dog/fareast/fareast_Hu Zaobin_0.5510481_2038.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a66e8bee1f5669a94aae58d5c82e95e66bee2eed --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/fareast/fareast_Hu Zaobin_0.5510481_2038.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:23264907e58fee414f9d569ed8af71ace6ae8df41d22104b4f7296885d157cd8 +size 9392 diff --git a/artists-to-study/ats/thumbnail/dog/fareast/fareast_Hu_Jieqing_0.45889485_2659.jpg b/artists-to-study/ats/thumbnail/dog/fareast/fareast_Hu_Jieqing_0.45889485_2659.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2883eb925622296529e94535d4d690f81a81ff2f --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/fareast/fareast_Hu_Jieqing_0.45889485_2659.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:380c37cbde5529f2ad7562462f57cd221b322428ee6a5bbfc30a72901b773033 +size 8956 diff --git a/artists-to-study/ats/thumbnail/dog/fareast/fareast_Huang Gongwang_0.47269204_2569.jpg b/artists-to-study/ats/thumbnail/dog/fareast/fareast_Huang Gongwang_0.47269204_2569.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8d51e6306e107d0643c901196e3d684c7628ce16 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/fareast/fareast_Huang Gongwang_0.47269204_2569.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b9fdb1e47127fa361b8406f801e0fdef6b473d5f3976be866f4f95152cff26f1 +size 10970 diff --git a/artists-to-study/ats/thumbnail/dog/fareast/fareast_Huang Guangjian_0.49286693_2450.jpg b/artists-to-study/ats/thumbnail/dog/fareast/fareast_Huang Guangjian_0.49286693_2450.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2826609d1c56e73dac6f6b9c60ec338b5690bde5 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/fareast/fareast_Huang Guangjian_0.49286693_2450.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:505d4fd53b7b663187d2f54f5385ffc8d819d048cf056d30ac0e50302a251fea +size 12605 diff --git a/artists-to-study/ats/thumbnail/dog/fareast/fareast_Huang Ji_0.48611963_2489.jpg b/artists-to-study/ats/thumbnail/dog/fareast/fareast_Huang Ji_0.48611963_2489.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4a416aab7c3a82e3df58f4bd4b43b87193ed0238 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/fareast/fareast_Huang Ji_0.48611963_2489.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dbc730777161378a35a6152e4fdceb1a2dee4e64999f70b5d0ec645a0f1bb7e8 +size 10331 diff --git a/artists-to-study/ats/thumbnail/dog/fareast/fareast_Huang Tingjian_0.6290358_1269.jpg b/artists-to-study/ats/thumbnail/dog/fareast/fareast_Huang Tingjian_0.6290358_1269.jpg new file mode 100644 index 0000000000000000000000000000000000000000..eff842fa8142826758a6dd05b2d52f3a565b6302 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/fareast/fareast_Huang Tingjian_0.6290358_1269.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f69a93f5607f812b20ef8a2a383737c93ba4bf3db3103aac1ecc605eab8fb26d +size 10683 diff --git a/artists-to-study/ats/thumbnail/dog/fareast/fareast_Huang_Ding_0.45233482_2695.jpg b/artists-to-study/ats/thumbnail/dog/fareast/fareast_Huang_Ding_0.45233482_2695.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7051fe5ef439bbfe023a11e93caf4c51fcc7dbc6 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/fareast/fareast_Huang_Ding_0.45233482_2695.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3cd67cee6ecfb1ca9f6238daa02f7a91e40990583f47f608813f46f8e1a3b30c +size 11194 diff --git a/artists-to-study/ats/thumbnail/dog/fareast/fareast_Ian Miller_0.42153555_1544.jpg b/artists-to-study/ats/thumbnail/dog/fareast/fareast_Ian Miller_0.42153555_1544.jpg new file mode 100644 index 0000000000000000000000000000000000000000..38beedefe4749ca845242264ee74dfbd3725088d --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/fareast/fareast_Ian Miller_0.42153555_1544.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e992ea914b2e93cd45c4d0c47d9caff5e10237f13bba1df72f764d065913003 +size 16786 diff --git a/artists-to-study/ats/thumbnail/dog/fareast/fareast_Inoue Naohisa_0.5809933_1758.jpg b/artists-to-study/ats/thumbnail/dog/fareast/fareast_Inoue Naohisa_0.5809933_1758.jpg new file mode 100644 index 0000000000000000000000000000000000000000..63d8f2784a5c86e0298d49640d245288cacb5191 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/fareast/fareast_Inoue Naohisa_0.5809933_1758.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:63a108e18cdfbe054c26ad39544989fe2f19ffde6e3d91bd89bc7a74a9e07ec3 +size 9076 diff --git a/artists-to-study/ats/thumbnail/dog/fareast/fareast_Josh_Kao_0.45725146_2668.jpg b/artists-to-study/ats/thumbnail/dog/fareast/fareast_Josh_Kao_0.45725146_2668.jpg new file mode 100644 index 0000000000000000000000000000000000000000..58f044352e123655d0be9cdf82ce93d0da005a6a --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/fareast/fareast_Josh_Kao_0.45725146_2668.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:808616f5d8a42c67270716a5411b6498585b4b8432d34ceed616653b82b22a67 +size 11508 diff --git a/artists-to-study/ats/thumbnail/dog/fareast/fareast_Naomi Okubo_0.5782754_1259.jpg b/artists-to-study/ats/thumbnail/dog/fareast/fareast_Naomi Okubo_0.5782754_1259.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f6e95edea728bbd185f2c375e7f0c646823858b8 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/fareast/fareast_Naomi Okubo_0.5782754_1259.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f8af61dd806cf27b2dab00db135bb8f7f019c52971e902adec78d656bd483fc +size 18901 diff --git a/artists-to-study/ats/thumbnail/dog/fareast/fareast_Naoto Hattori_0.621745_0971.jpg b/artists-to-study/ats/thumbnail/dog/fareast/fareast_Naoto Hattori_0.621745_0971.jpg new file mode 100644 index 0000000000000000000000000000000000000000..77128c72612a7289a3af8f5a89bb45a7eb615577 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/fareast/fareast_Naoto Hattori_0.621745_0971.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:112adfc52a9d4f0ad154e325ff86d52e45f2e0155cf0fc0fe4ce43d1f4f373b8 +size 14658 diff --git a/artists-to-study/ats/thumbnail/dog/fareast/fareast_Ni_Chuanjing_0.46254826_2627.jpg b/artists-to-study/ats/thumbnail/dog/fareast/fareast_Ni_Chuanjing_0.46254826_2627.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f8ef40caed62a1697f9ddc41a6cd7708db499766 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/fareast/fareast_Ni_Chuanjing_0.46254826_2627.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0adb70c0e8d71184256615015889f6a6c4eaeaa9c8b5f5da22f642669eab7676 +size 8425 diff --git a/artists-to-study/ats/thumbnail/dog/fareast/fareast_Nobuyoshi Araki_0.70108867_0447.jpg b/artists-to-study/ats/thumbnail/dog/fareast/fareast_Nobuyoshi Araki_0.70108867_0447.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3ab70debfe7697bc11c0f2d89b957d8addb93dd0 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/fareast/fareast_Nobuyoshi Araki_0.70108867_0447.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e2036cfe988b4297d37654b6845708c408781e9d7f65ea59a0a71f4df9824ef +size 11468 diff --git a/artists-to-study/ats/thumbnail/dog/fareast/fareast_Ogawa Kazumasa_0.61427975_1412.jpg b/artists-to-study/ats/thumbnail/dog/fareast/fareast_Ogawa Kazumasa_0.61427975_1412.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2bf09d57a4f566ca3af295a453dfb0407285cdb0 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/fareast/fareast_Ogawa Kazumasa_0.61427975_1412.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:114f593be429dc90bfd52d08112bf4aef1ec23fc54c85ca73bfac2f20c11937e +size 12662 diff --git a/artists-to-study/ats/thumbnail/dog/fareast/fareast_Qian Xuan_0.50150526_2406.jpg b/artists-to-study/ats/thumbnail/dog/fareast/fareast_Qian Xuan_0.50150526_2406.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a0f6960c8f1754770d7578eaff7e35400d35ef5d --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/fareast/fareast_Qian Xuan_0.50150526_2406.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:878c2992fe4d7ca03271e4f1d44b886f28dce7d6ae5daae7df8aa9c67be60c3a +size 10144 diff --git a/artists-to-study/ats/thumbnail/dog/fareast/fareast_Sangyeob Park_0.49150884_2458.jpg b/artists-to-study/ats/thumbnail/dog/fareast/fareast_Sangyeob Park_0.49150884_2458.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b46288f8cc94dbf51c432d8adaf398aac87bf8a7 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/fareast/fareast_Sangyeob Park_0.49150884_2458.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a78e12025174e9788efea1be51178999ec6b8b03cacf8aec02b6eaf6e0e9d665 +size 10369 diff --git a/artists-to-study/ats/thumbnail/dog/fareast/fareast_Shin Jeongho_0.5092497_2365.jpg b/artists-to-study/ats/thumbnail/dog/fareast/fareast_Shin Jeongho_0.5092497_2365.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a98a00db5fa42403df7c4c121701677b8b86ebdc --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/fareast/fareast_Shin Jeongho_0.5092497_2365.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:228195fd9719bc73d3021afd3c6ee7e2e180ee58d5169a33df777044ecbcdcce +size 10250 diff --git a/artists-to-study/ats/thumbnail/dog/fareast/fareast_Sou Fujimoto_0.5162528_2309.jpg b/artists-to-study/ats/thumbnail/dog/fareast/fareast_Sou Fujimoto_0.5162528_2309.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f2c79116166785082adfdbc09ab3924cd1d73a4b --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/fareast/fareast_Sou Fujimoto_0.5162528_2309.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:beadb0e9bb63b04f12ed79aba8648a36acb46527edb3351eadc61a1ed81f76d5 +size 10210 diff --git a/artists-to-study/ats/thumbnail/dog/fareast/fareast_Susan_Luo_0.43198025_2806.jpg b/artists-to-study/ats/thumbnail/dog/fareast/fareast_Susan_Luo_0.43198025_2806.jpg new file mode 100644 index 0000000000000000000000000000000000000000..01f0976167369c967f7658893e898275d4a69790 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/fareast/fareast_Susan_Luo_0.43198025_2806.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c410c4cc2eedc5cc76a4e6a02aace8d045985bfa8e2eff0c22b6880c2c7ca9a3 +size 9780 diff --git a/artists-to-study/ats/thumbnail/dog/fareast/fareast_Tadao Ando_0.57429105_1827.jpg b/artists-to-study/ats/thumbnail/dog/fareast/fareast_Tadao Ando_0.57429105_1827.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a6f09277bb9c3802a93c316123ca67df5c0906a6 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/fareast/fareast_Tadao Ando_0.57429105_1827.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21128dc4cac697c5a07d096b5a42129de8d498a87ac89c50bf25e5889f7ceba7 +size 15169 diff --git a/artists-to-study/ats/thumbnail/dog/fareast/fareast_Toshiharu Mizutani_0.48315164_2507.jpg b/artists-to-study/ats/thumbnail/dog/fareast/fareast_Toshiharu Mizutani_0.48315164_2507.jpg new file mode 100644 index 0000000000000000000000000000000000000000..74137ce83c1149a3ef61218ce8e6505fb5815664 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/fareast/fareast_Toshiharu Mizutani_0.48315164_2507.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eb0b3d422769dc784ccab2f7e8ecd6fc526e973d60b8752ae199755e66b00232 +size 13564 diff --git a/artists-to-study/ats/thumbnail/dog/fareast/fareast_Yasutomo Oka_0.5731342_1844.jpg b/artists-to-study/ats/thumbnail/dog/fareast/fareast_Yasutomo Oka_0.5731342_1844.jpg new file mode 100644 index 0000000000000000000000000000000000000000..29abf2319aeb7f42948fde559029a0e6493c729d --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/fareast/fareast_Yasutomo Oka_0.5731342_1844.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c2d6457b35d45fc22a3063254e08197d9923978ae040184ca7af4ca0233b6f8 +size 8133 diff --git a/artists-to-study/ats/thumbnail/dog/fareast/fareast_Yoshitaka Amano_0.5491855_2053.jpg b/artists-to-study/ats/thumbnail/dog/fareast/fareast_Yoshitaka Amano_0.5491855_2053.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6927872cea97ccf04bc59fb0a2fc3b718db2d1a4 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/fareast/fareast_Yoshitaka Amano_0.5491855_2053.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c0e8ff005aa22041b41fc7f613d6ac780b7a99431d7fec31ab073f923b25191 +size 10900 diff --git a/artists-to-study/ats/thumbnail/dog/fareast/fareast_Zhang Kechun_0.6595939_0941.jpg b/artists-to-study/ats/thumbnail/dog/fareast/fareast_Zhang Kechun_0.6595939_0941.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8edc017fd2d0945ae60ac4259ee69b8736aa52fb --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/fareast/fareast_Zhang Kechun_0.6595939_0941.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:925a43354a95165faa6e9200713bb87f5ea51f05390263ffc87108189b65c04a +size 8410 diff --git a/artists-to-study/ats/thumbnail/dog/fareast/fareast_tokyogenso_0.45406622_2683.jpg b/artists-to-study/ats/thumbnail/dog/fareast/fareast_tokyogenso_0.45406622_2683.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ed38e9d751dcf7df00020888d0a0e417945dc5fa --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/fareast/fareast_tokyogenso_0.45406622_2683.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:76bd82b7f06f10da9316a6d172d2f49defacd8c85fdeeb656233e5a8fd6fa1bd +size 12298 diff --git a/artists-to-study/ats/thumbnail/dog/fineart/fineart_A. R. Middleton Todd_0.50988734_2221.jpg b/artists-to-study/ats/thumbnail/dog/fineart/fineart_A. R. Middleton Todd_0.50988734_2221.jpg new file mode 100644 index 0000000000000000000000000000000000000000..aecca0e81a21a73b473e253dfe8c1a172ea94b30 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/fineart/fineart_A. R. Middleton Todd_0.50988734_2221.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf8a086a379a31676e2c8410f1ea55d63d23382641cc1817d7d7554700f96b5d +size 12689 diff --git a/artists-to-study/ats/thumbnail/dog/fineart/fineart_A.B. Frost_0.5375025_2169.jpg b/artists-to-study/ats/thumbnail/dog/fineart/fineart_A.B. Frost_0.5375025_2169.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8bf36767919d1c2e94a343ca01b3a9719229d29c --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/fineart/fineart_A.B. Frost_0.5375025_2169.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:302a9ec00858f30bd4515e2bbad19afc667bd210027cad6b401ff2fe0002a961 +size 10459 diff --git a/artists-to-study/ats/thumbnail/dog/fineart/fineart_Aaron Douglas_0.6437089_1124.jpg b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Aaron Douglas_0.6437089_1124.jpg new file mode 100644 index 0000000000000000000000000000000000000000..caf815c0e74274668cacee1b3ffb8234ce27cf50 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Aaron Douglas_0.6437089_1124.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:93f1f2ccfb6c0c770185a6e140be3871a252d49ceeed0757ba2aafde5b377e0c +size 11778 diff --git a/artists-to-study/ats/thumbnail/dog/fineart/fineart_Aaron Horkey_0.6676864_0843.jpg b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Aaron Horkey_0.6676864_0843.jpg new file mode 100644 index 0000000000000000000000000000000000000000..cc14d8679cf9914fe8905a9368b80af24850637e --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Aaron Horkey_0.6676864_0843.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:96e9bf155b675df5440017b831c969155a3e8435466e51485ee5733a19d8bcac +size 17765 diff --git a/artists-to-study/ats/thumbnail/dog/fineart/fineart_Aaron Jasinski_0.57948315_1236.jpg b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Aaron Jasinski_0.57948315_1236.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a4ff55ef2afaf8816e3a295746fb1f2e0d0856a3 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Aaron Jasinski_0.57948315_1236.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:88a8ebb7e7b8e1233337a05e40ca61f88d8d4fc9ab92fbbfe493cee901f27e3f +size 13204 diff --git a/artists-to-study/ats/thumbnail/dog/fineart/fineart_Abbott Fuller Graves_0.6025608_1529.jpg b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Abbott Fuller Graves_0.6025608_1529.jpg new file mode 100644 index 0000000000000000000000000000000000000000..370f0ea542c0816ced7f290d80a94c90fec2a2f4 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Abbott Fuller Graves_0.6025608_1529.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d22f5cf5798e0e43510aa06d82238db4c18457eb6c4a962bd3be51d00f30c06 +size 11612 diff --git a/artists-to-study/ats/thumbnail/dog/fineart/fineart_Abbott Handerson Thayer_0.63428533_1217.jpg b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Abbott Handerson Thayer_0.63428533_1217.jpg new file mode 100644 index 0000000000000000000000000000000000000000..99423b7bc1cfa4fd6d00dce7dd16a1660a4def1b --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Abbott Handerson Thayer_0.63428533_1217.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5821b06d88b7ea65df8f7dc9307e9267793bf2f0c98c94aff9c4a6acbd29916e +size 12135 diff --git a/artists-to-study/ats/thumbnail/dog/fineart/fineart_Abraham Bloemaert_0.68036544_0679.jpg b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Abraham Bloemaert_0.68036544_0679.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c12e821ca6743848bda02a364e02b2e5d76990c1 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Abraham Bloemaert_0.68036544_0679.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee40aee85d3a77ffd359c6592e20467fdfca408446d6f8fb3d440b6c54c1f019 +size 13007 diff --git a/artists-to-study/ats/thumbnail/dog/fineart/fineart_Abraham Bosschaert_0.6535562_1013.jpg b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Abraham Bosschaert_0.6535562_1013.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3b01332beefb426711c145bd14e6cff07d62fe81 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Abraham Bosschaert_0.6535562_1013.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:956c9fdcf9eead67e8c0e3ccde83a3fd911b084c6a17125f5f917265f5bca479 +size 11845 diff --git a/artists-to-study/ats/thumbnail/dog/fineart/fineart_Abraham Hondius_0.574326_1826.jpg b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Abraham Hondius_0.574326_1826.jpg new file mode 100644 index 0000000000000000000000000000000000000000..59f3f7563bc009eff0693f885db896e3f5ad3725 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Abraham Hondius_0.574326_1826.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f215605621c2042d5c2d11275b9ba71172c2ad58c22083a19f22fcde33e5cfc1 +size 12817 diff --git a/artists-to-study/ats/thumbnail/dog/fineart/fineart_Abraham Mignon_0.60605425_0505.jpg b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Abraham Mignon_0.60605425_0505.jpg new file mode 100644 index 0000000000000000000000000000000000000000..cedf185c1eaf4102646a6b733a7a2dff1144ed7f --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Abraham Mignon_0.60605425_0505.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a2761a16dbc0c7a036c56571e8d99391e9d66eb27fcf3d5c30215d119c964004 +size 10828 diff --git a/artists-to-study/ats/thumbnail/dog/fineart/fineart_Abraham Pether_0.66922426_0706.jpg b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Abraham Pether_0.66922426_0706.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a5b0d1cb61d3ae82f0bbcfc3fa3fa787a7f9bfc9 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Abraham Pether_0.66922426_0706.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d332f13e908345b364f741192b875036eead9b5d8bd2c21dca854e8220e09234 +size 13323 diff --git a/artists-to-study/ats/thumbnail/dog/fineart/fineart_Abraham Storck_0.5929502_1625.jpg b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Abraham Storck_0.5929502_1625.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f6c78d16a3fa41ea6e875bf613edeadc1409e135 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Abraham Storck_0.5929502_1625.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0023a2479b8a517eb0f33156bd96832f5a6c36197c86b2fef19cf7a5285d4cfa +size 9917 diff --git a/artists-to-study/ats/thumbnail/dog/fineart/fineart_Abraham Willaerts_0.5966594_0831.jpg b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Abraham Willaerts_0.5966594_0831.jpg new file mode 100644 index 0000000000000000000000000000000000000000..84d435b482a8a05f2d96e3699438b31f8074a93f --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Abraham Willaerts_0.5966594_0831.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:64ef5db7e19ef8e1e9b78177a54023e2fa45ce78c239e5ffc8d06197e762c57b +size 11929 diff --git a/artists-to-study/ats/thumbnail/dog/fineart/fineart_Abraham de Vries_0.5859101_1346.jpg b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Abraham de Vries_0.5859101_1346.jpg new file mode 100644 index 0000000000000000000000000000000000000000..78bfa5411a1b19aad24aa794ae6c1315b4e8efd8 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Abraham de Vries_0.5859101_1346.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad0d9390b16f3331cfd7767e9129e1ebe95cc0472863d1d43dcb48d6e67f4f2e +size 10420 diff --git a/artists-to-study/ats/thumbnail/dog/fineart/fineart_Abraham van Beijeren_0.6356113_1118.jpg b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Abraham van Beijeren_0.6356113_1118.jpg new file mode 100644 index 0000000000000000000000000000000000000000..085aeca4f15316791ceb8042a77c45e3408fc6a7 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Abraham van Beijeren_0.6356113_1118.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ea5cddf734e776b721d7be5dc59f9ee8ff6ea00cfb0fa04a26e22605a58a9c9 +size 11164 diff --git a/artists-to-study/ats/thumbnail/dog/fineart/fineart_Abraham van Calraet_0.63841593_0586.jpg b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Abraham van Calraet_0.63841593_0586.jpg new file mode 100644 index 0000000000000000000000000000000000000000..be73af0b66f52abf75ea74b3e3d09582b62cffd0 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Abraham van Calraet_0.63841593_0586.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f85bf1b3dc5d76df5b171217997c567d14fa2d81e008f8ae9cbd466f49a51171 +size 11328 diff --git a/artists-to-study/ats/thumbnail/dog/fineart/fineart_Abraham van den Tempel_0.66463804_0629.jpg b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Abraham van den Tempel_0.66463804_0629.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7f4c9438f6485c7cecb834c533135278ac16ca97 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Abraham van den Tempel_0.66463804_0629.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:31814b1c85b216e6db2998497ffbbf8b9a3ce74c4a07b5fa1e0de92e6532c948 +size 11677 diff --git a/artists-to-study/ats/thumbnail/dog/fineart/fineart_Abram Arkhipov_0.6550962_0998.jpg b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Abram Arkhipov_0.6550962_0998.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c8ce559e9af77495705fafc1565deef7bced113d --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Abram Arkhipov_0.6550962_0998.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1acfc8a53ff15fe219224b52b31533935660491c9ebadf818c9ee96e95159ea2 +size 12836 diff --git a/artists-to-study/ats/thumbnail/dog/fineart/fineart_Abram Efimovich Arkhipov_0.60128385_1539.jpg b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Abram Efimovich Arkhipov_0.60128385_1539.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c84df3e203ac826a385bb4455143297ee5b0c5e1 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Abram Efimovich Arkhipov_0.60128385_1539.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:638ad78c2e92caa9f2cae278506d92b76472f994491a400faad9e9bd82d930f0 +size 11070 diff --git a/artists-to-study/ats/thumbnail/dog/fineart/fineart_Achille Leonardi_0.56674325_1900.jpg b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Achille Leonardi_0.56674325_1900.jpg new file mode 100644 index 0000000000000000000000000000000000000000..11c5502e72ae6a3280f62a74187d591e796b6944 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Achille Leonardi_0.56674325_1900.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b200058b2582eb29f01d81f949510e784cb19df394624647c6a36ea92a3e590 +size 14123 diff --git a/artists-to-study/ats/thumbnail/dog/fineart/fineart_Ada Hill Walker_0.52207166_2265.jpg b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Ada Hill Walker_0.52207166_2265.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b38a6943aadee9f086abbbee6971a26cbcef94de --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Ada Hill Walker_0.52207166_2265.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:70711d51e4ce40dcb71bb41b418decf1bc7f5b10791702511f0cb78b7b041d16 +size 10980 diff --git a/artists-to-study/ats/thumbnail/dog/fineart/fineart_Adam Elsheimer_0.6716068_0643.jpg b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Adam Elsheimer_0.6716068_0643.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3b77b684cbdbd811f4d4c5d5d0921cc06a50a220 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Adam Elsheimer_0.6716068_0643.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01f880ed625e934cfcc8d746ca88faee8d674309c5689d8c15a60c39e8aecbe7 +size 16175 diff --git a/artists-to-study/ats/thumbnail/dog/fineart/fineart_Adam_Szentpetery_0.4434548_2736.jpg b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Adam_Szentpetery_0.4434548_2736.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e1dce0324b9d22ed07fa396bd8eaeb85b6eac7e3 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Adam_Szentpetery_0.4434548_2736.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f9ebecaf214fa554571e7f59cf2e81f8c30e5b5672cbd805c41d54685988c5ca +size 10960 diff --git a/artists-to-study/ats/thumbnail/dog/fineart/fineart_Adi Granov_0.40670198_2549.jpg b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Adi Granov_0.40670198_2549.jpg new file mode 100644 index 0000000000000000000000000000000000000000..431c1bfa81cb6cc1b7b48f56f5acd8cc6be600c3 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Adi Granov_0.40670198_2549.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1871a64d5f140548dedb0adc4b16973a5997597d8917d52c0fb53be7b628b9ca +size 11384 diff --git a/artists-to-study/ats/thumbnail/dog/fineart/fineart_Adolf Bierbrauer_0.56129396_1372.jpg b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Adolf Bierbrauer_0.56129396_1372.jpg new file mode 100644 index 0000000000000000000000000000000000000000..59708584b4617d29dc62192168693ad10e01acda --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Adolf Bierbrauer_0.56129396_1372.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:490f768c12126289468375471408a7891e935126e23897aba750eaf31e985be3 +size 14779 diff --git a/artists-to-study/ats/thumbnail/dog/fineart/fineart_Adolf Born_0.55848217_1966.jpg b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Adolf Born_0.55848217_1966.jpg new file mode 100644 index 0000000000000000000000000000000000000000..671ff01329676a8a92ba1a44935b0cfedf08200c --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Adolf Born_0.55848217_1966.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a3b805b0ba286203f82c03cd78c1402b81b045a255d9f0ca5cee0d1f0e2e0d51 +size 12665 diff --git a/artists-to-study/ats/thumbnail/dog/fineart/fineart_Adolf Dietrich_0.590169_1125.jpg b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Adolf Dietrich_0.590169_1125.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7e04830a3eaca882f08512d2653775417373b0bb --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Adolf Dietrich_0.590169_1125.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d13cbf48baf257d8dbae1be7443432e39827a8453c339c581ac8937134e6c8ac +size 11320 diff --git "a/artists-to-study/ats/thumbnail/dog/fineart/fineart_Adolf F\303\251nyes_0.54192233_1479.jpg" "b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Adolf F\303\251nyes_0.54192233_1479.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..d7a51ad742ec01f6ba06fcdf94523edf986eff1c --- /dev/null +++ "b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Adolf F\303\251nyes_0.54192233_1479.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a56954d13698cf523f6822dea3753f07105d8030a71f4823f6bc31e428a5f6a +size 11562 diff --git "a/artists-to-study/ats/thumbnail/dog/fineart/fineart_Adolf Hir\303\251my-Hirschl_0.5946784_1297.jpg" "b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Adolf Hir\303\251my-Hirschl_0.5946784_1297.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..52153a779018c35e51b0b64220d436f60d84bc29 --- /dev/null +++ "b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Adolf Hir\303\251my-Hirschl_0.5946784_1297.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ef4a060c0ccbf95e24755adf6f7792b2cdb8b15dbd51a9130eb1eda1a2ea5d7 +size 10570 diff --git "a/artists-to-study/ats/thumbnail/dog/fineart/fineart_Adolf H\303\266lzel_0.5303149_2215.jpg" "b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Adolf H\303\266lzel_0.5303149_2215.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..e48d351a8d9b9ab3ffbc0da2a6599176fec1ba71 --- /dev/null +++ "b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Adolf H\303\266lzel_0.5303149_2215.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c682336b27f3cafcdfdc1faf22f537842a737aa35b9e8311b9a24c86fe5c2a64 +size 11734 diff --git "a/artists-to-study/ats/thumbnail/dog/fineart/fineart_Adolf Schr\303\266dter_0.55316544_2017.jpg" "b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Adolf Schr\303\266dter_0.55316544_2017.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..b2453883227ec8fee9bd34374111b6a18ea6c72a --- /dev/null +++ "b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Adolf Schr\303\266dter_0.55316544_2017.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5b265422fda5762b780e46075f7d34d9c74f716f08a7a0772a2907432281637 +size 9245 diff --git "a/artists-to-study/ats/thumbnail/dog/fineart/fineart_Adolfo M\303\274ller-Ury_0.57944727_1779.jpg" "b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Adolfo M\303\274ller-Ury_0.57944727_1779.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..4547937bfff23d88587a3d1f722c50ee62b667ce --- /dev/null +++ "b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Adolfo M\303\274ller-Ury_0.57944727_1779.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:efc745a67981be83fcbe1a8922e33e8657fd98e71971a624e62318b0ea13e199 +size 8422 diff --git a/artists-to-study/ats/thumbnail/dog/fineart/fineart_Adolph Menzel_0.6455246_1107.jpg b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Adolph Menzel_0.6455246_1107.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a453f0c8e075d977e58e7b28336bd1cf687d6d07 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Adolph Menzel_0.6455246_1107.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6bc5fe72eabfc0278821bf5659ffcde316d83c958edc12bfe16561fd27abdd09 +size 13718 diff --git a/artists-to-study/ats/thumbnail/dog/fineart/fineart_Adolphe Willette_0.6396935_1158.jpg b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Adolphe Willette_0.6396935_1158.jpg new file mode 100644 index 0000000000000000000000000000000000000000..be7c0ee56a72237322f66bcdda909a1058f8a4aa --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Adolphe Willette_0.6396935_1158.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:47511f57fb5b02eb217567b74223817b74d186fa7c1028f7fc20a3f0bfdb69c0 +size 10759 diff --git a/artists-to-study/ats/thumbnail/dog/fineart/fineart_Adriaen Brouwer_0.6815058_0670.jpg b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Adriaen Brouwer_0.6815058_0670.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2c3a9437df9fdc1efab96e050366addd4a10d1d2 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Adriaen Brouwer_0.6815058_0670.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:104be92a9f065198a11049189dce79e2a73ff9e680ec59d0b0c145b3ad357ede +size 10240 diff --git a/artists-to-study/ats/thumbnail/dog/fineart/fineart_Adriaen Coorte_0.6670663_0846.jpg b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Adriaen Coorte_0.6670663_0846.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c2d2eb0866d0a45e797ab45931991895b55d8129 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Adriaen Coorte_0.6670663_0846.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b182c013561cc6034aa3c77cde8d0b94eea07b0250c913b5fdd64beb8e386f55 +size 11922 diff --git a/artists-to-study/ats/thumbnail/dog/fineart/fineart_Adriaen Hanneman_0.6514815_1036.jpg b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Adriaen Hanneman_0.6514815_1036.jpg new file mode 100644 index 0000000000000000000000000000000000000000..00ef1b26661f1cc8260fcbc465f9b971aec586f3 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Adriaen Hanneman_0.6514815_1036.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c8ec3196c50b3e13c3406d032ae0e1216264850409e30806c157c2c949caccc +size 12545 diff --git a/artists-to-study/ats/thumbnail/dog/fineart/fineart_Adriaen Isenbrant_0.6475428_1087.jpg b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Adriaen Isenbrant_0.6475428_1087.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a41c51eb38e8d12e9fb33ba98beaea7623dde69d --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Adriaen Isenbrant_0.6475428_1087.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b8612b01a0088ab0a93125ac941c3928cf737501870f909ff2a1b599ec1aac2 +size 11006 diff --git a/artists-to-study/ats/thumbnail/dog/fineart/fineart_Adriaen van Ostade_0.67220736_0793.jpg b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Adriaen van Ostade_0.67220736_0793.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2fc50d0412f03a30e2ca38012005f5cabfdd6a0e --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Adriaen van Ostade_0.67220736_0793.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ab55c18f07415082227b193fd64065b8e69e9e9f42f7ed6f84727098d7905f0 +size 12346 diff --git a/artists-to-study/ats/thumbnail/dog/fineart/fineart_Adriaen van Outrecht_0.67682564_0724.jpg b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Adriaen van Outrecht_0.67682564_0724.jpg new file mode 100644 index 0000000000000000000000000000000000000000..597b2bd627340af04c2f8cc03a592c5e605d3238 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Adriaen van Outrecht_0.67682564_0724.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:919f29b9c379382fb6ff23c7faf90f8cc26f3a9ed4fdf5c1715f95acd255b570 +size 12800 diff --git a/artists-to-study/ats/thumbnail/dog/fineart/fineart_Adriaen van de Velde_0.69716156_0494.jpg b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Adriaen van de Velde_0.69716156_0494.jpg new file mode 100644 index 0000000000000000000000000000000000000000..049f089b8b133e9d5f2fdbec4a4e7b67e58d3613 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Adriaen van de Velde_0.69716156_0494.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:379d1cc2c6a06c147f3c61073647bba0aaf56512b5204ab20f3e5c8c5e8b1b9c +size 13140 diff --git a/artists-to-study/ats/thumbnail/dog/fineart/fineart_Adriaen van de Venne_0.6899867_0574.jpg b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Adriaen van de Venne_0.6899867_0574.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4ac1b368727f36c56b61b4cfca6fb697efb7fdd5 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Adriaen van de Venne_0.6899867_0574.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0cc9013233052352a26abb989a887f32c5f3bbc263f7e009d544cd35429e4628 +size 12846 diff --git a/artists-to-study/ats/thumbnail/dog/fineart/fineart_Adriaen van der Werff_0.638286_0925.jpg b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Adriaen van der Werff_0.638286_0925.jpg new file mode 100644 index 0000000000000000000000000000000000000000..926673c7ea290612d9754ea7a7b02a7750ff7095 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Adriaen van der Werff_0.638286_0925.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fef181e73133af6cab3d3a850189f6ba8a59c6b32878f162ba372c173ba191fe +size 11985 diff --git a/artists-to-study/ats/thumbnail/dog/fineart/fineart_Adrianus Eversen_0.58259964_0625.jpg b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Adrianus Eversen_0.58259964_0625.jpg new file mode 100644 index 0000000000000000000000000000000000000000..95ba3d67e7b795bd0073b93417c2157b9b63d44a --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Adrianus Eversen_0.58259964_0625.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b06746d93a806cfd9c77e289af73b75c3d4ac416e87439ab8b212730f2e992cd +size 9491 diff --git "a/artists-to-study/ats/thumbnail/dog/fineart/fineart_Ad\303\251la\303\257de Labille-Guiard_0.6066263_1003.jpg" "b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Ad\303\251la\303\257de Labille-Guiard_0.6066263_1003.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..4865036299f2af1aeeeb60a549ab3658b564a391 --- /dev/null +++ "b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Ad\303\251la\303\257de Labille-Guiard_0.6066263_1003.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a63ebae898309f6738a00db4b0973c6d3e09f49f033ec79f719c8cd33ce425b0 +size 10511 diff --git "a/artists-to-study/ats/thumbnail/dog/fineart/fineart_Ad\303\251la\303\257de Victoire Hall_0.539939_2149.jpg" "b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Ad\303\251la\303\257de Victoire Hall_0.539939_2149.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..79992f09704c155ffccaedfae1378e170f1433c5 --- /dev/null +++ "b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Ad\303\251la\303\257de Victoire Hall_0.539939_2149.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b9ff392eca20edc0e0aa82bd702c54b3c36205aa4f55e63eb6db67d134cd55eb +size 10336 diff --git a/artists-to-study/ats/thumbnail/dog/fineart/fineart_Aelbert Cuyp_0.7033657_0431.jpg b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Aelbert Cuyp_0.7033657_0431.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0c0bdb76d51aae87d0a92458bad4fb328c0af3ab --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Aelbert Cuyp_0.7033657_0431.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d385d58e5e6dce62e0a005a5b129c780116adbf1587bd6ab2cb48a019477779 +size 10604 diff --git a/artists-to-study/ats/thumbnail/dog/fineart/fineart_Aert van der Neer_0.6159286_0613.jpg b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Aert van der Neer_0.6159286_0613.jpg new file mode 100644 index 0000000000000000000000000000000000000000..087c440c8af7337f25f2b9b18dfb111a0b17dae7 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Aert van der Neer_0.6159286_0613.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6249981392c93c3ec75699607f85990814bec4abe963d3c6f504cd04462a44c6 +size 13102 diff --git a/artists-to-study/ats/thumbnail/dog/fineart/fineart_Aertgen van Leyden_0.6951305_0514.jpg b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Aertgen van Leyden_0.6951305_0514.jpg new file mode 100644 index 0000000000000000000000000000000000000000..cbb4a8f1696a61fb73bba2d8aec7c0c9bab2387c --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Aertgen van Leyden_0.6951305_0514.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c7a969d74bf056a47d8976bbc05a23fe862c7dbc8d486782079b2eed20f5c7ab +size 14718 diff --git a/artists-to-study/ats/thumbnail/dog/fineart/fineart_Agnolo Bronzino_0.6787985_0705.jpg b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Agnolo Bronzino_0.6787985_0705.jpg new file mode 100644 index 0000000000000000000000000000000000000000..970687d9bb826c7ea815f0cc12c48f83379c712b --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Agnolo Bronzino_0.6787985_0705.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bb41bd2e0f2f111dd6b6f239f3255a8fd0b29249570739a37debb7ab52e03101 +size 12649 diff --git a/artists-to-study/ats/thumbnail/dog/fineart/fineart_Agnolo Gaddi_0.79369193_0128.jpg b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Agnolo Gaddi_0.79369193_0128.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0ebd21c2ee9131b490180b75513b8ed32da5186b --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Agnolo Gaddi_0.79369193_0128.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:68fadd33f577f62f0d0e4753ae4f683e43648fc39a1402c2b2e4553b352bcb0c +size 20356 diff --git a/artists-to-study/ats/thumbnail/dog/fineart/fineart_Agostino Arrivabene_0.61166185_0552.jpg b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Agostino Arrivabene_0.61166185_0552.jpg new file mode 100644 index 0000000000000000000000000000000000000000..477ea3f82676ffc92b9d2bbca1d7e17c811d07c7 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Agostino Arrivabene_0.61166185_0552.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e8810a976f8b0039161051b2531f101f1ade64783423436141697365456c170 +size 10120 diff --git a/artists-to-study/ats/thumbnail/dog/fineart/fineart_Agostino Carracci_0.7128167_0570.jpg b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Agostino Carracci_0.7128167_0570.jpg new file mode 100644 index 0000000000000000000000000000000000000000..194b646d5fa3a1850324cb0af3f65efcdcb86002 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Agostino Carracci_0.7128167_0570.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e09c8bc2b7f34fd8406643494ba18c5dc5e46de4eae96367c760b28ea01f85d0 +size 13480 diff --git a/artists-to-study/ats/thumbnail/dog/fineart/fineart_Agostino Tassi_0.59265685_1628.jpg b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Agostino Tassi_0.59265685_1628.jpg new file mode 100644 index 0000000000000000000000000000000000000000..dd373c4924a4e04b04b090ca52142cc408af4e7e --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Agostino Tassi_0.59265685_1628.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d9ef39b19fbf0cdbe76a8dbffc22f9f99f3108b6ac99ae6577bd3ee3c8b0985 +size 12100 diff --git "a/artists-to-study/ats/thumbnail/dog/fineart/fineart_Agust\303\255n Fern\303\241ndez_0.53403986_2188.jpg" "b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Agust\303\255n Fern\303\241ndez_0.53403986_2188.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..d9e44dee3966691b4c1ed90bc7571e9805e2e389 --- /dev/null +++ "b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Agust\303\255n Fern\303\241ndez_0.53403986_2188.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab1ac0b9f8abd56e50d267e6e9d4c238ff46267b7f4779141f10e71953413074 +size 11580 diff --git a/artists-to-study/ats/thumbnail/dog/fineart/fineart_Akseli Gallen-Kallela_0.66927314_0825.jpg b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Akseli Gallen-Kallela_0.66927314_0825.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ad01897d5f7c204d8d881a5d2e060a540dd1303c --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Akseli Gallen-Kallela_0.66927314_0825.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:552361aa656d2c2ee6ef800500281287fc2f6498935f5c9e223a2e8c8c3f904f +size 13680 diff --git a/artists-to-study/ats/thumbnail/dog/fineart/fineart_Al Capp_0.6239494_1318.jpg b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Al Capp_0.6239494_1318.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a3b0d4d5d68f6ab738121ada0f195e29658d3826 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Al Capp_0.6239494_1318.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fcee832d9f0b7ba9698d4da1617ef25459c2ddcf24e614777d9fc566ab5f26cf +size 23299 diff --git a/artists-to-study/ats/thumbnail/dog/fineart/fineart_Al Feldstein_0.6087723_1469.jpg b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Al Feldstein_0.6087723_1469.jpg new file mode 100644 index 0000000000000000000000000000000000000000..861a41a985b5e698ebd12a6a9ff324c10333c81d --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Al Feldstein_0.6087723_1469.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:055327ea4a118ee38397c8882f2b3fde06780b48b3890c191303f7e5ddfa4dda +size 22770 diff --git a/artists-to-study/ats/thumbnail/dog/fineart/fineart_Alan Bean_0.57788515_1789.jpg b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Alan Bean_0.57788515_1789.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1c0bb058f51b70a41714f61f28846f969e8dfa55 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Alan Bean_0.57788515_1789.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:56d149cebfdc150d0108b5745b699c26c27448afbfba59c8636bb14849b2fe7e +size 11814 diff --git a/artists-to-study/ats/thumbnail/dog/fineart/fineart_Alan Davis_0.6029676_1526.jpg b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Alan Davis_0.6029676_1526.jpg new file mode 100644 index 0000000000000000000000000000000000000000..eddfdfe579026762ac09add8f5b001a33834fbcc --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Alan Davis_0.6029676_1526.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ffd75736c93398b7779697c9f7e66459a3436d254762e7b862745243690531b +size 25325 diff --git a/artists-to-study/ats/thumbnail/dog/fineart/fineart_Alan Lee_0.5848701_1708.jpg b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Alan Lee_0.5848701_1708.jpg new file mode 100644 index 0000000000000000000000000000000000000000..54b83580de38d1198a6c7487cb3f96c558693fee --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Alan Lee_0.5848701_1708.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:69308ff2408b04abe38ce8d0dca4aa4a8bfcfd467f218126399c5bec8acceb92 +size 12064 diff --git a/artists-to-study/ats/thumbnail/dog/fineart/fineart_Alayna Lemmer_0.48293802_1877.jpg b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Alayna Lemmer_0.48293802_1877.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e64cda8ce983531591b00980d2e5a134777a23ef --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Alayna Lemmer_0.48293802_1877.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:277de22fff91ef8617027bad61b3e5e422b543257529118e444e7635670634a8 +size 12278 diff --git a/artists-to-study/ats/thumbnail/dog/fineart/fineart_Albert Anker_0.62389827_1320.jpg b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Albert Anker_0.62389827_1320.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0d74608e14358b05862d2f952403e721a5c1051c --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Albert Anker_0.62389827_1320.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c27443bec77afbe3725c78ba010967d5a18dc76589787b105d83360398b31bf5 +size 11188 diff --git a/artists-to-study/ats/thumbnail/dog/fineart/fineart_Albert Bierstadt_0.67935765_0700.jpg b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Albert Bierstadt_0.67935765_0700.jpg new file mode 100644 index 0000000000000000000000000000000000000000..39b1f53f2352c9fbcb5b25aff24d6559d17c366d --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Albert Bierstadt_0.67935765_0700.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae6b63060c7b65c928d5aa78184702a8bb347aec67707278a495e555596b74a6 +size 13304 diff --git a/artists-to-study/ats/thumbnail/dog/fineart/fineart_Albert Dorne_0.56395364_1926.jpg b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Albert Dorne_0.56395364_1926.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a029b870a531cea1d9ecd922c035f346998eedc6 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Albert Dorne_0.56395364_1926.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c50d548b22534c66725742b99e26943a082e36febead6e26b70bd687bcb315eb +size 12376 diff --git a/artists-to-study/ats/thumbnail/dog/fineart/fineart_Albert Dubois-Pillet_0.57526016_0860.jpg b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Albert Dubois-Pillet_0.57526016_0860.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2b9ad975992599d886f6bbf6106d6a590fb95038 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Albert Dubois-Pillet_0.57526016_0860.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5854aba79b43f7463f1a810d5597c41174748b8faaf1b656167b85feeb48e1ab +size 9465 diff --git a/artists-to-study/ats/thumbnail/dog/fineart/fineart_Albert Eckhout_0.5284096_2228.jpg b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Albert Eckhout_0.5284096_2228.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1004e1160210f70b7829bd3b98fe831b055f2399 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Albert Eckhout_0.5284096_2228.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a713e0ac130bd879c4ddea7f9ab1afabfe2037e3681814463d61e7d9f180b71 +size 11817 diff --git a/artists-to-study/ats/thumbnail/dog/fineart/fineart_Albert Edelfelt_0.57466495_1822.jpg b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Albert Edelfelt_0.57466495_1822.jpg new file mode 100644 index 0000000000000000000000000000000000000000..97128db4da4900e280f8f40af6a7bd8ee652c48d --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Albert Edelfelt_0.57466495_1822.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:851a4541253f539aebd599459d488965f53ea3b0bc804404fc4536a8ae81ad7f +size 11366 diff --git a/artists-to-study/ats/thumbnail/dog/fineart/fineart_Albert Goodwin_0.6368695_1186.jpg b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Albert Goodwin_0.6368695_1186.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d60500a195da3aaedcdc455b33a2e8a7363bdda8 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Albert Goodwin_0.6368695_1186.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:156de179b6b4f3cb09191a3a1af7f3979a3658ee07701fb2d9361f48330c4e0e +size 12852 diff --git a/artists-to-study/ats/thumbnail/dog/fineart/fineart_Albert Guillaume_0.56529653_1338.jpg b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Albert Guillaume_0.56529653_1338.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7c7968c3ab710c82668186e992a885f5f9cab861 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Albert Guillaume_0.56529653_1338.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b44702d0415109043598e38d61fe80febe797b36935cc9cd01f79d0141561280 +size 11375 diff --git a/artists-to-study/ats/thumbnail/dog/fineart/fineart_Albert Henry Krehbiel_0.54952574_2051.jpg b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Albert Henry Krehbiel_0.54952574_2051.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8cb47e9241ed95df34b4f3fb4d89646abfb4e6c2 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Albert Henry Krehbiel_0.54952574_2051.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1eeb6271a167efde8179de6b347dbff6a5f5ca4fdf0954874e59ef63a9bb3778 +size 13364 diff --git a/artists-to-study/ats/thumbnail/dog/fineart/fineart_Albert J. Welti_0.5736257_1834.jpg b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Albert J. Welti_0.5736257_1834.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d21ddeb3603dcf61159353fa1ceecf0dc57eee1d --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Albert J. Welti_0.5736257_1834.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b81e47dd8e4f3bdbdb59a1636569406f9f4417da36ab87907daa11ab394789a0 +size 10750 diff --git a/artists-to-study/ats/thumbnail/dog/fineart/fineart_Albert Joseph Moore_0.6374316_1181.jpg b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Albert Joseph Moore_0.6374316_1181.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8b1ed534870046e68125733983e00e77e16db765 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Albert Joseph Moore_0.6374316_1181.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24683821700f69792a99fb9381e08a8548f3a6c935f46ca8db7f92e8f2143ee6 +size 13857 diff --git "a/artists-to-study/ats/thumbnail/dog/fineart/fineart_Albert Joseph P\303\251not_0.65085316_1047.jpg" "b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Albert Joseph P\303\251not_0.65085316_1047.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..4c9941661fb3abe0ff3c98244632588a4178d8fa --- /dev/null +++ "b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Albert Joseph P\303\251not_0.65085316_1047.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d6da9826bea88a9299ed74b51348b25e8fb61b765a6aa04cd0a04f0b3f50498a +size 10503 diff --git a/artists-to-study/ats/thumbnail/dog/fineart/fineart_Albert Kotin_0.55737317_1983.jpg b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Albert Kotin_0.55737317_1983.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c46cb4d23563e9edf42855b862f580e34eb4ffaa --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Albert Kotin_0.55737317_1983.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b4c0f8aee2cb4e29824a0910a6c3660503bdf35367231e31c743ff484bebe446 +size 10191 diff --git a/artists-to-study/ats/thumbnail/dog/fineart/fineart_Albert Lynch_0.56497896_1913.jpg b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Albert Lynch_0.56497896_1913.jpg new file mode 100644 index 0000000000000000000000000000000000000000..18d816a536a56d9c5d906300440213caf8265a94 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Albert Lynch_0.56497896_1913.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a792bf5aa37f5c06b2c4ce4321d4bd42d58c68fa9186d1a9f3eeae3610ed93fd +size 11449 diff --git a/artists-to-study/ats/thumbnail/dog/fineart/fineart_Albert Marquet_0.64471006_1113.jpg b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Albert Marquet_0.64471006_1113.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e54a6085104d32f406255316de8596c5c333e3c3 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Albert Marquet_0.64471006_1113.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:15b49abdda71f6743fbb42ada72222a5f2914ecbab56d87d6f3ea5640315d9d4 +size 13579 diff --git a/artists-to-study/ats/thumbnail/dog/fineart/fineart_Albert Namatjira_0.6573372_0968.jpg b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Albert Namatjira_0.6573372_0968.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ad825a021f4d3ca36f1610b0f8d2f8421074f559 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Albert Namatjira_0.6573372_0968.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:39c2908798c74d2a59e296a5f7e620f846c00827f460c9f32c5a5bc6fb6cbc1b +size 10643 diff --git "a/artists-to-study/ats/thumbnail/dog/fineart/fineart_Albert Paris G\303\274tersloh_0.5817827_1747.jpg" "b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Albert Paris G\303\274tersloh_0.5817827_1747.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..443e27bcd6136ffa846a49b19f5613821698e61b --- /dev/null +++ "b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Albert Paris G\303\274tersloh_0.5817827_1747.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6431b6d502fe15bc8bf6da25466f2c4ac8e744d8fd4c005e757f51156b91aa87 +size 9442 diff --git a/artists-to-study/ats/thumbnail/dog/fineart/fineart_Albert Pinkham Ryder_0.7338848_0267.jpg b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Albert Pinkham Ryder_0.7338848_0267.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d1b0cc9b042f1fd43a19f1efbbb17a8b0e165c9a --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Albert Pinkham Ryder_0.7338848_0267.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d1460b022fab6d4a34c1d7f62699e9983fe1e605098e31817d3f625c954ed876 +size 7871 diff --git a/artists-to-study/ats/thumbnail/dog/fineart/fineart_Albert Swinden_0.5375844_2167.jpg b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Albert Swinden_0.5375844_2167.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e7834fd9c45983f040bda7ec123e574ad7109b90 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Albert Swinden_0.5375844_2167.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28e6c86600b52f5423d529d71bf9611062b7342d93148dd2b738eb3a8a43a20c +size 9884 diff --git a/artists-to-study/ats/thumbnail/dog/fineart/fineart_Albert_Koetsier_0.45385844_2685.jpg b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Albert_Koetsier_0.45385844_2685.jpg new file mode 100644 index 0000000000000000000000000000000000000000..66ff8118a291b2c026f3886d4bfed4cc6c60976d --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Albert_Koetsier_0.45385844_2685.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e4c0459b77669c87c502f79ff2293c8cad097787d24a656eeee87f386d46d2c +size 12006 diff --git a/artists-to-study/ats/thumbnail/dog/fineart/fineart_Alberto Morrocco_0.64352196_1128.jpg b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Alberto Morrocco_0.64352196_1128.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b56b944554907f1e8ff55cbd3b589abd29fb6623 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Alberto Morrocco_0.64352196_1128.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d74324a2b9d29c5e55e52b898df04ff02fd31b1d680826b8904ccd4347e9dcd +size 13138 diff --git a/artists-to-study/ats/thumbnail/dog/fineart/fineart_Alberto Seveso_0.47735062_2082.jpg b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Alberto Seveso_0.47735062_2082.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d9fcd51aa8d2750f9b3ed4d20a78177508a921db --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Alberto Seveso_0.47735062_2082.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e9fa69e9433874b115ff2694715dcfd662cef480ba62a9651057989dd6501788 +size 15412 diff --git a/artists-to-study/ats/thumbnail/dog/fineart/fineart_Alberto Sughi_0.5736495_1833.jpg b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Alberto Sughi_0.5736495_1833.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f96d849f9b3ff8f4cdd6ff2f100bd9181247f2a5 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Alberto Sughi_0.5736495_1833.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e39c6792a94a1bc013ddc2c2fa49f7e3b9574a1791b0a18c9703ef6e8921277b +size 10474 diff --git a/artists-to-study/ats/thumbnail/dog/fineart/fineart_Albin Egger-Lienz_0.72120845_0493.jpg b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Albin Egger-Lienz_0.72120845_0493.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3484f905aefbb78501ea02658ec341e45bdc4f9d --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Albin Egger-Lienz_0.72120845_0493.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc6c9f300bd2ae895cd91035866f0af8f67b43328f00d633f9f9c9bc29635acf +size 11603 diff --git a/artists-to-study/ats/thumbnail/dog/fineart/fineart_Albrecht Altdorfer_0.7663378_0214.jpg b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Albrecht Altdorfer_0.7663378_0214.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0fdc171326abba3da2b84c783f42a530762600a5 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Albrecht Altdorfer_0.7663378_0214.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a360bd5f89b945465700038ea57cb0c6b1f52898765d86193ea5d62ff90349b1 +size 17907 diff --git a/artists-to-study/ats/thumbnail/dog/fineart/fineart_Albrecht Anker_0.65531695_0992.jpg b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Albrecht Anker_0.65531695_0992.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9329971164acbe136de8b116fa62a3dd0f1633b7 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Albrecht Anker_0.65531695_0992.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c3c3e4f7e67ad9f72bd230378fe8eefe72cb2ab2defff4605c3e188cb5309afb +size 13531 diff --git a/artists-to-study/ats/thumbnail/dog/fineart/fineart_Albrecht Durer_0.7122327_0578.jpg b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Albrecht Durer_0.7122327_0578.jpg new file mode 100644 index 0000000000000000000000000000000000000000..80133f6dcafe93c846c1689c76311a3e16e0e1df --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Albrecht Durer_0.7122327_0578.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c39df12e345ea85431ca43b288b5e64c0feb5b035d2aa89a6e0213d64926a039 +size 17221 diff --git "a/artists-to-study/ats/thumbnail/dog/fineart/fineart_Albrecht D\303\274rer_0.72946966_0414.jpg" "b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Albrecht D\303\274rer_0.72946966_0414.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..ef97f43c605d0f24636dd61a9ba21bf3be7596fb --- /dev/null +++ "b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Albrecht D\303\274rer_0.72946966_0414.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4dfe7c6b5ead28d0d92e81a7f63777555c9ebde969e9511b0b6a4fe83a5889a3 +size 14985 diff --git a/artists-to-study/ats/thumbnail/dog/fineart/fineart_Aldus Manutius_0.67366326_0766.jpg b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Aldus Manutius_0.67366326_0766.jpg new file mode 100644 index 0000000000000000000000000000000000000000..44840d6c2a7de1042fe0917dd346beaba7881b66 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Aldus Manutius_0.67366326_0766.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c96ca95c7d4b048de53ce0e5dabbba2bc79d0bc2a743715644b43029f20f96a +size 15426 diff --git a/artists-to-study/ats/thumbnail/dog/fineart/fineart_Aleksander Gierymski_0.5590013_1964.jpg b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Aleksander Gierymski_0.5590013_1964.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3aac54e9116940a2cbe8fe4879367edfe8375207 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Aleksander Gierymski_0.5590013_1964.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc47e9e9d8b422232d78f7e6c1f4c08341232a883f7567376c21d0b6ff8f632e +size 9527 diff --git a/artists-to-study/ats/thumbnail/dog/fineart/fineart_Aleksandr Ivanovich Laktionov_0.606544_1486.jpg b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Aleksandr Ivanovich Laktionov_0.606544_1486.jpg new file mode 100644 index 0000000000000000000000000000000000000000..58c2b829876bec5afc8361e310319b5acf2fb26c --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Aleksandr Ivanovich Laktionov_0.606544_1486.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e8deabe53987e4547fc231b8e612ef1af47f67bcea8ad0d68e831d017d883b1 +size 10238 diff --git a/artists-to-study/ats/thumbnail/dog/fineart/fineart_Aleksey Savrasov_0.65207493_0665.jpg b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Aleksey Savrasov_0.65207493_0665.jpg new file mode 100644 index 0000000000000000000000000000000000000000..929ffe4e3fe39b64a7d6dd765d0bec90b974e5a8 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Aleksey Savrasov_0.65207493_0665.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d298fc8b625d5d6f8226264e5585f53295a5592711722b83131b2b721bd002c +size 8056 diff --git a/artists-to-study/ats/thumbnail/dog/fineart/fineart_Aleksi Briclot_0.46056762_1488.jpg b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Aleksi Briclot_0.46056762_1488.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ab9e81e0035294744ad5a7c3bafe8223c7452493 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Aleksi Briclot_0.46056762_1488.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:66fb8d1d742a9dc7394149697495a332b607d1d3f34b92be6b3e5db6ef3462a8 +size 11010 diff --git a/artists-to-study/ats/thumbnail/dog/fineart/fineart_Alessandro Allori_0.6892961_0585.jpg b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Alessandro Allori_0.6892961_0585.jpg new file mode 100644 index 0000000000000000000000000000000000000000..63221d46cffb7ef12d9d2d7cc5e76233d1886d20 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Alessandro Allori_0.6892961_0585.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8360da810a7006f8dd62da395314324eec00fdff1c6b3af6e9e1b670c6489048 +size 14247 diff --git a/artists-to-study/ats/thumbnail/dog/fineart/fineart_Alessandro Galli Bibiena_0.6412889_1142.jpg b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Alessandro Galli Bibiena_0.6412889_1142.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b89836e51ac3f13e3c724136124b880bf46f1fde --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Alessandro Galli Bibiena_0.6412889_1142.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ea78a5e61f30fb78a9fc2ae881e75d34656c57684bd27a92a2711cc12de075a1 +size 11286 diff --git a/artists-to-study/ats/thumbnail/dog/fineart/fineart_Alex Colville_0.68787855_0605.jpg b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Alex Colville_0.68787855_0605.jpg new file mode 100644 index 0000000000000000000000000000000000000000..17751ae4b1f5a357a463e82f7767009f33252bec --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Alex Colville_0.68787855_0605.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a8de6336d5575daf6e4d5b8acf5fdc2ab4c0ea351532a975b098e1ad43be63ec +size 9570 diff --git a/artists-to-study/ats/thumbnail/dog/fineart/fineart_Alex Maleev_0.6067118_1484.jpg b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Alex Maleev_0.6067118_1484.jpg new file mode 100644 index 0000000000000000000000000000000000000000..19614cf19724214ab5931a5b5ec5a856e1024b56 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/fineart/fineart_Alex Maleev_0.6067118_1484.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6257a08225ab72723d84062d05448cdc15de953f0624fb1602a70d578741ade6 +size 17170 diff --git a/artists-to-study/ats/thumbnail/dog/n/n_Amadou Opa Bathily_0.5536976_2014.jpg b/artists-to-study/ats/thumbnail/dog/n/n_Amadou Opa Bathily_0.5536976_2014.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a3c34082ebae606e07c6b39e6e1320dfa89fff86 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/n/n_Amadou Opa Bathily_0.5536976_2014.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a8b0493b7a5dac12a5f36657a862f5dfbfd008924510cf7fd4f7136819066060 +size 10265 diff --git a/artists-to-study/ats/thumbnail/dog/n/n_Barkley Hendricks_0.6883637_0596.jpg b/artists-to-study/ats/thumbnail/dog/n/n_Barkley Hendricks_0.6883637_0596.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2ad23e88766878de186366f4c1509aeaa8176a0a --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/n/n_Barkley Hendricks_0.6883637_0596.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0172c3129d8322746c85d27d1d79c13d287bb6ac724c697d6f45c41f5fe07295 +size 10696 diff --git a/artists-to-study/ats/thumbnail/dog/n/n_Barkley L. Hendricks_0.69986427_0468.jpg b/artists-to-study/ats/thumbnail/dog/n/n_Barkley L. Hendricks_0.69986427_0468.jpg new file mode 100644 index 0000000000000000000000000000000000000000..05e70a6f3e8254fd388270d981d69faabc5729ca --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/n/n_Barkley L. Hendricks_0.69986427_0468.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:965d70f271313bf43018d25b71f0654d9b9c88447731a30c20596043b7629b39 +size 10447 diff --git a/artists-to-study/ats/thumbnail/dog/n/n_Bruce_Onobrakpeya_0.42588046_2740.jpg b/artists-to-study/ats/thumbnail/dog/n/n_Bruce_Onobrakpeya_0.42588046_2740.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e1a07d4d2538a62d6a78998ebf5befb9f72a2631 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/n/n_Bruce_Onobrakpeya_0.42588046_2740.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c2a4234982bc055d29a6b3aae9b37db6e9bade27aa192ce0476f93366cdfe79 +size 14397 diff --git a/artists-to-study/ats/thumbnail/dog/n/n_Carrie Mae Weems_0.6645416_0551.jpg b/artists-to-study/ats/thumbnail/dog/n/n_Carrie Mae Weems_0.6645416_0551.jpg new file mode 100644 index 0000000000000000000000000000000000000000..89c002e6c51607d3f5072d03d266632f6bd96ebe --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/n/n_Carrie Mae Weems_0.6645416_0551.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:07204769fa62a108c46e01ae5dea029c0eeddd981bf365a65da180ffa153f5c5 +size 10940 diff --git a/artists-to-study/ats/thumbnail/dog/n/n_Chinwe Chukwuogo-Roy_0.49445248_2438.jpg b/artists-to-study/ats/thumbnail/dog/n/n_Chinwe Chukwuogo-Roy_0.49445248_2438.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7ce27e7151c9586614900c7aa5f3b82f8f1f4aba --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/n/n_Chinwe Chukwuogo-Roy_0.49445248_2438.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f962b0a609c10338e060f6e6ff2cc504c04273190455ea61c407ae2942e78067 +size 15567 diff --git a/artists-to-study/ats/thumbnail/dog/n/n_Howardena Pindell_0.7686921_0207.jpg b/artists-to-study/ats/thumbnail/dog/n/n_Howardena Pindell_0.7686921_0207.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2011d7fa9cc186c8a6ba61203b4fed1538e9e01e --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/n/n_Howardena Pindell_0.7686921_0207.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:674a434473dd19a8291e16afaf00d4a62e8e5ba02c9ec33c382808ae0192cc25 +size 22041 diff --git a/artists-to-study/ats/thumbnail/dog/n/n_Juliana Huxtable_0.5364195_2172.jpg b/artists-to-study/ats/thumbnail/dog/n/n_Juliana Huxtable_0.5364195_2172.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0889a15334ded123bef881feb46ed1872027ba3e --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/n/n_Juliana Huxtable_0.5364195_2172.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a3cfc8f8926013300b6143701332654c4317f9453f7bc86b474d0d0c7c0fb1b +size 20741 diff --git a/artists-to-study/ats/thumbnail/dog/n/n_Kadir Nelson_0.5669006_1897.jpg b/artists-to-study/ats/thumbnail/dog/n/n_Kadir Nelson_0.5669006_1897.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4643e9d6cc771d4916c6cfb5297efc496310cab8 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/n/n_Kadir Nelson_0.5669006_1897.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:90ebc316922d40dada647ecbe9113670fb10e2d13210d6e53771703f7e78ab45 +size 12448 diff --git a/artists-to-study/ats/thumbnail/dog/n/n_Kehinde Wiley_0.66218376_0913.jpg b/artists-to-study/ats/thumbnail/dog/n/n_Kehinde Wiley_0.66218376_0913.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c812884af62548a9007f27b143f57bbaffdace50 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/n/n_Kehinde Wiley_0.66218376_0913.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86f6943e52b36a978afba1cd0003d034976a9af4cb23aa2b3fdf66037ad0a106 +size 18564 diff --git a/artists-to-study/ats/thumbnail/dog/n/n_Mati Klarwein_0.7066092_0403.jpg b/artists-to-study/ats/thumbnail/dog/n/n_Mati Klarwein_0.7066092_0403.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9bdf5acc8250e428d19af6ebbea979cd7b7a471c --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/n/n_Mati Klarwein_0.7066092_0403.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:378602d23faa4beabed8022ad131cd1d2b9303fa7558ce6e85e9f79f504b3a49 +size 15938 diff --git a/artists-to-study/ats/thumbnail/dog/n/n_RETNA (Marquis Lewis)_0.47963_1140.jpg b/artists-to-study/ats/thumbnail/dog/n/n_RETNA (Marquis Lewis)_0.47963_1140.jpg new file mode 100644 index 0000000000000000000000000000000000000000..cc594ac89de49dc2e6c14948184526f6567a8e6d --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/n/n_RETNA (Marquis Lewis)_0.47963_1140.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:39101486801e29221266ec7714488911baba6847f5fdf2fa564fe06633e84e4c +size 27495 diff --git a/artists-to-study/ats/thumbnail/dog/n/n_Teophilus_Tetteh_0.46064255_2643.jpg b/artists-to-study/ats/thumbnail/dog/n/n_Teophilus_Tetteh_0.46064255_2643.jpg new file mode 100644 index 0000000000000000000000000000000000000000..89164a8e167efc8c19b509f2bc3b8078875ee999 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/n/n_Teophilus_Tetteh_0.46064255_2643.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ff5d615853b16b3354165c1fce3a4aeb97a801e2be740ebb3b82aeb630de91b +size 11018 diff --git a/artists-to-study/ats/thumbnail/dog/n/n_Wangechi Mutu_0.6394607_1159.jpg b/artists-to-study/ats/thumbnail/dog/n/n_Wangechi Mutu_0.6394607_1159.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0cdffd3dbec72e6317ac1e83ff2a49ab086bb5cf --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/n/n_Wangechi Mutu_0.6394607_1159.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c2a6af224b34a3f97174e231f519ba9938549dd10bdea218e7d1ee4212c2d86 +size 13928 diff --git a/artists-to-study/ats/thumbnail/dog/n/n_Yinka Shonibare_0.68256056_0661.jpg b/artists-to-study/ats/thumbnail/dog/n/n_Yinka Shonibare_0.68256056_0661.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c75aa3be424a32e07650eaf2139693186cb5335f --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/n/n_Yinka Shonibare_0.68256056_0661.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:72bcba5594e5815b29f6b7fdf93b610d97d30ee5f24309cc775ef1a67b323abc +size 13379 diff --git a/artists-to-study/ats/thumbnail/dog/n/n_Zanele Muholi_0.58554715_0906.jpg b/artists-to-study/ats/thumbnail/dog/n/n_Zanele Muholi_0.58554715_0906.jpg new file mode 100644 index 0000000000000000000000000000000000000000..76b50d7a983115639750ea3029d583983d2edf86 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/n/n_Zanele Muholi_0.58554715_0906.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d6fa41748fca1c37eff334691917fd7de0efcc253614d53e54c8b494f8b7e124 +size 12430 diff --git a/artists-to-study/ats/thumbnail/dog/nudity/nudity_Affandi_0.7170285_0523.jpg b/artists-to-study/ats/thumbnail/dog/nudity/nudity_Affandi_0.7170285_0523.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8988e1c4e7d32067ccae2d601e14f556c7a53268 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/nudity/nudity_Affandi_0.7170285_0523.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b18af77522780811fcd5c7781695047c8412b63d1defea59f78d65fcea858f42 +size 19570 diff --git a/artists-to-study/ats/thumbnail/dog/nudity/nudity_Albert Benois_0.5902705_1650.jpg b/artists-to-study/ats/thumbnail/dog/nudity/nudity_Albert Benois_0.5902705_1650.jpg new file mode 100644 index 0000000000000000000000000000000000000000..03f217f7631e139ceff9dfc94e38fd0c4240f036 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/nudity/nudity_Albert Benois_0.5902705_1650.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c460e36c89006b6298424fb39fce0d4199bc7d89a4baaab788b846ab5b48c417 +size 10178 diff --git a/artists-to-study/ats/thumbnail/dog/nudity/nudity_Albert Bertelsen_0.54038215_2141.jpg b/artists-to-study/ats/thumbnail/dog/nudity/nudity_Albert Bertelsen_0.54038215_2141.jpg new file mode 100644 index 0000000000000000000000000000000000000000..cddad899bc78aa03f217c176911dcf3f3f448fcd --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/nudity/nudity_Albert Bertelsen_0.54038215_2141.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b1deb36cff39e68e076d141b3dab203ac9479673e164f6bdb9843fe69cfd52b9 +size 11387 diff --git a/artists-to-study/ats/thumbnail/dog/nudity/nudity_Albert Bloch_0.69573116_0506.jpg b/artists-to-study/ats/thumbnail/dog/nudity/nudity_Albert Bloch_0.69573116_0506.jpg new file mode 100644 index 0000000000000000000000000000000000000000..414d1e35d5e847e6e684a71025ed6e23e1a357d3 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/nudity/nudity_Albert Bloch_0.69573116_0506.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1582486b692bde52be199c8eebde17423e8a30fee6160835a5c441459e4b703d +size 13961 diff --git "a/artists-to-study/ats/thumbnail/dog/nudity/nudity_Aleksander Or\305\202owski_0.546705_2065.jpg" "b/artists-to-study/ats/thumbnail/dog/nudity/nudity_Aleksander Or\305\202owski_0.546705_2065.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..89bc04042c67d44dce147cad2d62331ba99155f3 --- /dev/null +++ "b/artists-to-study/ats/thumbnail/dog/nudity/nudity_Aleksander Or\305\202owski_0.546705_2065.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f627a227a2d8903b18658122a5b3ca359b34c3b1ebe15cec010b9fd285b50a46 +size 9012 diff --git a/artists-to-study/ats/thumbnail/dog/nudity/nudity_Alex Grey_0.62908936_1206.jpg b/artists-to-study/ats/thumbnail/dog/nudity/nudity_Alex Grey_0.62908936_1206.jpg new file mode 100644 index 0000000000000000000000000000000000000000..24375326003fb2d888778f9c82421eebb00de88d --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/nudity/nudity_Alex Grey_0.62908936_1206.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:402ca9adea97cedd80453ca43e452ae49825eeb82c4b017183553c4dc63155c5 +size 20647 diff --git a/artists-to-study/ats/thumbnail/dog/nudity/nudity_Alfred Kelsner_0.5455753_2096.jpg b/artists-to-study/ats/thumbnail/dog/nudity/nudity_Alfred Kelsner_0.5455753_2096.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bee57194e0afaa30dd05fc8b9b3758e10d356d02 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/nudity/nudity_Alfred Kelsner_0.5455753_2096.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f75c11e8c8928f834236b702f53a8c006f3c18a83781e19e6443af98ced9fe72 +size 13931 diff --git a/artists-to-study/ats/thumbnail/dog/nudity/nudity_Anne-Louis Girodet_0.58104825_0492.jpg b/artists-to-study/ats/thumbnail/dog/nudity/nudity_Anne-Louis Girodet_0.58104825_0492.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7c35eba4906b791317ed4926079c26ee46ff4601 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/nudity/nudity_Anne-Louis Girodet_0.58104825_0492.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9a1bb3cd9313d71faca7467611eadabde43f9c0152c99d67c0408224ae5671cf +size 14750 diff --git a/artists-to-study/ats/thumbnail/dog/nudity/nudity_Arnold Franz Brasz_0.65834284_0959.jpg b/artists-to-study/ats/thumbnail/dog/nudity/nudity_Arnold Franz Brasz_0.65834284_0959.jpg new file mode 100644 index 0000000000000000000000000000000000000000..00cd83aa53f5bd42bebfc0c48a5a3e3315ae40e6 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/nudity/nudity_Arnold Franz Brasz_0.65834284_0959.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eaeede74d36512662683781fa50ff47adb00c43517d59236e65414ef7eef5aff +size 11058 diff --git a/artists-to-study/ats/thumbnail/dog/nudity/nudity_Aron Wiesenfeld_0.68331146_0651.jpg b/artists-to-study/ats/thumbnail/dog/nudity/nudity_Aron Wiesenfeld_0.68331146_0651.jpg new file mode 100644 index 0000000000000000000000000000000000000000..aebb429ed94a1e615325d9e2a238c8ad2f90886a --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/nudity/nudity_Aron Wiesenfeld_0.68331146_0651.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8a41581e26d8490a424ae52e4d50c7e5184214fb97c7f7505dd02a742b2014cc +size 7549 diff --git a/artists-to-study/ats/thumbnail/dog/nudity/nudity_Benjamin Marra_0.61809736_0983.jpg b/artists-to-study/ats/thumbnail/dog/nudity/nudity_Benjamin Marra_0.61809736_0983.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a9600e4e936275d1e97ab00fdd567ba0c4b8f016 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/nudity/nudity_Benjamin Marra_0.61809736_0983.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a9356c369631607afcb92c4e50dc5d7a3acdb7af559b8c6af3e5197ea3d6dc7 +size 27601 diff --git a/artists-to-study/ats/thumbnail/dog/nudity/nudity_Bonnard Pierre_0.72309464_0476.jpg b/artists-to-study/ats/thumbnail/dog/nudity/nudity_Bonnard Pierre_0.72309464_0476.jpg new file mode 100644 index 0000000000000000000000000000000000000000..eb5cc2423e44a5ef6631d2c005c3684d77a22b91 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/nudity/nudity_Bonnard Pierre_0.72309464_0476.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6bc05a9aa7ec28aa0b9cd7cf9094ae2e3422f8d4bcf26022163134148b41744 +size 15759 diff --git "a/artists-to-study/ats/thumbnail/dog/nudity/nudity_B\303\251la Iv\303\241nyi-Gr\303\274nwald_0.56355745_1931.jpg" "b/artists-to-study/ats/thumbnail/dog/nudity/nudity_B\303\251la Iv\303\241nyi-Gr\303\274nwald_0.56355745_1931.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..821534103f18836dc86ac213c5a7cd0360ee789a --- /dev/null +++ "b/artists-to-study/ats/thumbnail/dog/nudity/nudity_B\303\251la Iv\303\241nyi-Gr\303\274nwald_0.56355745_1931.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:11e436afc8177f1a94faf241decf845c951d798e0aa62e2c320ca59726a966fb +size 10607 diff --git a/artists-to-study/ats/thumbnail/dog/nudity/nudity_Carlo Galli Bibiena_0.6511681_1040.jpg b/artists-to-study/ats/thumbnail/dog/nudity/nudity_Carlo Galli Bibiena_0.6511681_1040.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4bb783bbd00c453dd6abb8ea83e61397e7a2b80a --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/nudity/nudity_Carlo Galli Bibiena_0.6511681_1040.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:551c469eb5f6612cb1f3e0fab5eae66291c206273e427f48203a9b0e968d743a +size 10002 diff --git a/artists-to-study/ats/thumbnail/dog/nudity/nudity_Dali_0.5928694_1428.jpg b/artists-to-study/ats/thumbnail/dog/nudity/nudity_Dali_0.5928694_1428.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e7378cdf6e7bdce3e03a105ccfd48aa5a4c49f22 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/nudity/nudity_Dali_0.5928694_1428.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0026742afe07260f5ba2a3bbfec24038dafa3191ec782237d7d5dc2aedae1748 +size 12218 diff --git a/artists-to-study/ats/thumbnail/dog/nudity/nudity_Edward Corbett_0.55701995_1987.jpg b/artists-to-study/ats/thumbnail/dog/nudity/nudity_Edward Corbett_0.55701995_1987.jpg new file mode 100644 index 0000000000000000000000000000000000000000..26264344973ccecb4a5d0d2136210a340e0b9d76 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/nudity/nudity_Edward Corbett_0.55701995_1987.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a8d68d9fdd7f1e591bc03ec38b43f0461965ff070c6c2987d069fd6766acdfe0 +size 11817 diff --git a/artists-to-study/ats/thumbnail/dog/nudity/nudity_Emil Alzamora_0.5844039_0817.jpg b/artists-to-study/ats/thumbnail/dog/nudity/nudity_Emil Alzamora_0.5844039_0817.jpg new file mode 100644 index 0000000000000000000000000000000000000000..43dc35fcfa2ffdd63131c728936686482ac41455 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/nudity/nudity_Emil Alzamora_0.5844039_0817.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2e296096b32db1d65b2af79142055832488f72df0ed7badda70261e49a9a039 +size 8723 diff --git a/artists-to-study/ats/thumbnail/dog/nudity/nudity_Ernst Fuchs_0.6953538_0510.jpg b/artists-to-study/ats/thumbnail/dog/nudity/nudity_Ernst Fuchs_0.6953538_0510.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2bd1f83b33b21300500051b12fa80c8b1289e97a --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/nudity/nudity_Ernst Fuchs_0.6953538_0510.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a1c839dbe0d68c5d6574a18107bf974c84c7736dbd67fcb90c11bcf5c15df92f +size 13673 diff --git "a/artists-to-study/ats/thumbnail/dog/nudity/nudity_Eugeniusz \305\273ak_0.556925_1988.jpg" "b/artists-to-study/ats/thumbnail/dog/nudity/nudity_Eugeniusz \305\273ak_0.556925_1988.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..56784bafe9cfcc560c2b13adb57b60796605025b --- /dev/null +++ "b/artists-to-study/ats/thumbnail/dog/nudity/nudity_Eugeniusz \305\273ak_0.556925_1988.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:655adfd56d626c24e0014ae18b410cfae1185fc7e6e3a2fde965e9cbc446db88 +size 9177 diff --git a/artists-to-study/ats/thumbnail/dog/nudity/nudity_Ferdinand Hodler_0.7213758_0490.jpg b/artists-to-study/ats/thumbnail/dog/nudity/nudity_Ferdinand Hodler_0.7213758_0490.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e8cf85d2046ecc64f706b5453e60fd3b0ce57ded --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/nudity/nudity_Ferdinand Hodler_0.7213758_0490.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b4975bcf0ea877ac375fe44d0504bfab9ad6872848e2f1c97a5e90f759335a91 +size 13359 diff --git a/artists-to-study/ats/thumbnail/dog/nudity/nudity_Fernand Khnopff_0.6512954_1038.jpg b/artists-to-study/ats/thumbnail/dog/nudity/nudity_Fernand Khnopff_0.6512954_1038.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b9af2ac55acd19c30eb29fbf2e4f5bc4b638a391 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/nudity/nudity_Fernand Khnopff_0.6512954_1038.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d63a8152676b039cdcdfcd69939a8eb649d56de1fe2937a52e26809045997d7c +size 9860 diff --git a/artists-to-study/ats/thumbnail/dog/nudity/nudity_Fernando Botero_0.7412504_0335.jpg b/artists-to-study/ats/thumbnail/dog/nudity/nudity_Fernando Botero_0.7412504_0335.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a75be441818855a4f0015fcc902e5ae577546371 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/nudity/nudity_Fernando Botero_0.7412504_0335.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a8573e5cde69cf977e6532b4e8ce769125fb2c236ab421ce110bda9aea15f846 +size 13441 diff --git a/artists-to-study/ats/thumbnail/dog/nudity/nudity_Francesco del Cossa_0.7104901_0360.jpg b/artists-to-study/ats/thumbnail/dog/nudity/nudity_Francesco del Cossa_0.7104901_0360.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9365a1dbe55fb1d32a1cf634bae529f9f67b7a4f --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/nudity/nudity_Francesco del Cossa_0.7104901_0360.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:735541359b42b3f51f74729628e6693e3c8f44be61b81c77ab10007d9c150d25 +size 16475 diff --git a/artists-to-study/ats/thumbnail/dog/nudity/nudity_Frank Frazetta_0.551121_1542.jpg b/artists-to-study/ats/thumbnail/dog/nudity/nudity_Frank Frazetta_0.551121_1542.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8cd9a9199b8e0430c78f5d0fcb8df8f51c93c365 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/nudity/nudity_Frank Frazetta_0.551121_1542.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d2043350854cc8d68ff85a1a978082aba00f05400e88f78492ef81d38adcbb8 +size 12384 diff --git a/artists-to-study/ats/thumbnail/dog/nudity/nudity_Gao Cen_0.60618126_1492.jpg b/artists-to-study/ats/thumbnail/dog/nudity/nudity_Gao Cen_0.60618126_1492.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d83dd771af310940300bfcb1af4f2bd444a11ea1 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/nudity/nudity_Gao Cen_0.60618126_1492.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f34579fdd6ff66924a52d6d55f1004139de9018f2000e104741524078f5a933d +size 9293 diff --git a/artists-to-study/ats/thumbnail/dog/nudity/nudity_Gustav Klimt_0.72356784_0474.jpg b/artists-to-study/ats/thumbnail/dog/nudity/nudity_Gustav Klimt_0.72356784_0474.jpg new file mode 100644 index 0000000000000000000000000000000000000000..407b5c03c9c984ed0ee6d98bec6fc12290705161 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/nudity/nudity_Gustav Klimt_0.72356784_0474.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:abd4f7dde61d282912949add3d2cdee1d4a63d961d2a698625b25a756d4a2544 +size 19602 diff --git a/artists-to-study/ats/thumbnail/dog/nudity/nudity_Hajime Sorayama_0.60325956_1521.jpg b/artists-to-study/ats/thumbnail/dog/nudity/nudity_Hajime Sorayama_0.60325956_1521.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8f3c0398cea0b7de385d587d0d1750762357f85c --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/nudity/nudity_Hajime Sorayama_0.60325956_1521.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e1822b967bcf341495e6ec206af0414d799431591db57eb7ee34971687f9d1c5 +size 11983 diff --git a/artists-to-study/ats/thumbnail/dog/nudity/nudity_Hans Bellmer_0.6735973_0769.jpg b/artists-to-study/ats/thumbnail/dog/nudity/nudity_Hans Bellmer_0.6735973_0769.jpg new file mode 100644 index 0000000000000000000000000000000000000000..603af9b5312573543a7d32ed2cf9232a75b742de --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/nudity/nudity_Hans Bellmer_0.6735973_0769.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:511ee090e8131626a301000ffd3edc55a5550ddf616d7b673bff859c460f8e8f +size 10390 diff --git a/artists-to-study/ats/thumbnail/dog/nudity/nudity_Henri Biva_0.54013556_1879.jpg b/artists-to-study/ats/thumbnail/dog/nudity/nudity_Henri Biva_0.54013556_1879.jpg new file mode 100644 index 0000000000000000000000000000000000000000..eca5106157ac72979240e42ee4b1d45624f671dc --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/nudity/nudity_Henri Biva_0.54013556_1879.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e97aa30bcf6784882844bdb89cd5cee153a2a185df337b3ad5791dd90aed887c +size 9942 diff --git a/artists-to-study/ats/thumbnail/dog/nudity/nudity_Henry Moore_0.59767926_1574.jpg b/artists-to-study/ats/thumbnail/dog/nudity/nudity_Henry Moore_0.59767926_1574.jpg new file mode 100644 index 0000000000000000000000000000000000000000..49082490c075db24050d8ebeddb23324ed33f926 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/nudity/nudity_Henry Moore_0.59767926_1574.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a154d63f2dcc738c51e3a66ea1b58185f2aa225ecc5196676ade9a7ad178aa4e +size 10673 diff --git a/artists-to-study/ats/thumbnail/dog/nudity/nudity_Hermenegildo Anglada Camarasa_0.7214374_0487.jpg b/artists-to-study/ats/thumbnail/dog/nudity/nudity_Hermenegildo Anglada Camarasa_0.7214374_0487.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8af0eaba804b1cb3c4434b30784c5808005cbfdf --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/nudity/nudity_Hermenegildo Anglada Camarasa_0.7214374_0487.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:597592944faf796cc893491d9ad8dacd42a97267735662133bdcb9bcbf953f5c +size 16487 diff --git a/artists-to-study/ats/thumbnail/dog/nudity/nudity_Howard Chandler Christy_0.5702813_1869.jpg b/artists-to-study/ats/thumbnail/dog/nudity/nudity_Howard Chandler Christy_0.5702813_1869.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4ce82133c7d3c62b915d77e59a7d0ae944b6e88a --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/nudity/nudity_Howard Chandler Christy_0.5702813_1869.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:64c1059df0e77a6efa0e3be4c1143c55c652816eb336e34a78765aff75214195 +size 12427 diff --git a/artists-to-study/ats/thumbnail/dog/nudity/nudity_Joseph Cornell_0.75023884_0289.jpg b/artists-to-study/ats/thumbnail/dog/nudity/nudity_Joseph Cornell_0.75023884_0289.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e82ddc96c4f3d26e565bf17f358eac73d0647f5f --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/nudity/nudity_Joseph Cornell_0.75023884_0289.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0423783f306fcf07c0ba36eff800dadaddebb80a02e5e65b06a00f0215acdfb2 +size 14914 diff --git a/artists-to-study/ats/thumbnail/dog/nudity/nudity_Lucian Freud_0.6203146_1357.jpg b/artists-to-study/ats/thumbnail/dog/nudity/nudity_Lucian Freud_0.6203146_1357.jpg new file mode 100644 index 0000000000000000000000000000000000000000..95c8520c7101a066a612fbee8fbb6020733ebe9b --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/nudity/nudity_Lucian Freud_0.6203146_1357.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe048d0e7056aca082316dd06375e94f4ee554936feaf1102c3bbd274f7f9258 +size 13657 diff --git a/artists-to-study/ats/thumbnail/dog/nudity/nudity_Maginel Wright Enright Barney_0.6034306_1518.jpg b/artists-to-study/ats/thumbnail/dog/nudity/nudity_Maginel Wright Enright Barney_0.6034306_1518.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c226eac866ac05c8bbab91d0aec6975e408863b7 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/nudity/nudity_Maginel Wright Enright Barney_0.6034306_1518.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b8186cd08430c0b27163b0afe65334ba6b2a5b41bd28567dfa723ae370eb1130 +size 13526 diff --git a/artists-to-study/ats/thumbnail/dog/nudity/nudity_Neil Welliver_0.68297863_0658.jpg b/artists-to-study/ats/thumbnail/dog/nudity/nudity_Neil Welliver_0.68297863_0658.jpg new file mode 100644 index 0000000000000000000000000000000000000000..eb3595b0ef189f8dfb3400d45a136066523e2beb --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/nudity/nudity_Neil Welliver_0.68297863_0658.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bb530eae18a593d0a9b43ce22f16dce1bfb085733cbe8f559eda8ce6d1e1acbb +size 16908 diff --git a/artists-to-study/ats/thumbnail/dog/nudity/nudity_Nicola Samori_0.68747556_0485.jpg b/artists-to-study/ats/thumbnail/dog/nudity/nudity_Nicola Samori_0.68747556_0485.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6ae8ce235f7725aeda2123e460001468a5617395 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/nudity/nudity_Nicola Samori_0.68747556_0485.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:91670fbcb71e770fe8d2766ea7a31f75ecf9c3ca4918a07055bd8d2dec49dff2 +size 10170 diff --git a/artists-to-study/ats/thumbnail/dog/nudity/nudity_Raymond Duchamp-Villon_0.6489605_1069.jpg b/artists-to-study/ats/thumbnail/dog/nudity/nudity_Raymond Duchamp-Villon_0.6489605_1069.jpg new file mode 100644 index 0000000000000000000000000000000000000000..60c0db1acc7e00b063ae75501b42353422bb73cd --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/nudity/nudity_Raymond Duchamp-Villon_0.6489605_1069.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a3766e260f610eecff737beb97d5d55509295965f4deffacf5c555cd84883fbe +size 10176 diff --git a/artists-to-study/ats/thumbnail/dog/nudity/nudity_Richard Hamilton_0.5461275_2091.jpg b/artists-to-study/ats/thumbnail/dog/nudity/nudity_Richard Hamilton_0.5461275_2091.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b3eb602f165fb55d1a59cc226a14df1cd00dedbd --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/nudity/nudity_Richard Hamilton_0.5461275_2091.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:45144733f16066b0a0104115dd1a525c27dc72d0f644c371d05affb9229080f6 +size 10392 diff --git a/artists-to-study/ats/thumbnail/dog/nudity/nudity_Roberto Ferri_0.538221_0518.jpg b/artists-to-study/ats/thumbnail/dog/nudity/nudity_Roberto Ferri_0.538221_0518.jpg new file mode 100644 index 0000000000000000000000000000000000000000..90e9a09ebe61ecf5ada1d87474000bb942eb18bd --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/nudity/nudity_Roberto Ferri_0.538221_0518.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a3e230faf8cbd649142508727eabd02155a57d3b5743b3b1b690a820bd7d7bf4 +size 9978 diff --git a/artists-to-study/ats/thumbnail/dog/nudity/nudity_Roger Dean_0.6529647_1021.jpg b/artists-to-study/ats/thumbnail/dog/nudity/nudity_Roger Dean_0.6529647_1021.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7dffba081b6955ff120d550f3768890856153a60 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/nudity/nudity_Roger Dean_0.6529647_1021.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26bdcc15fc20ad0baaa26152d617822714d1e58d9e8d1f159fc98e5e8843655b +size 11581 diff --git a/artists-to-study/ats/thumbnail/dog/nudity/nudity_Ron Mueck_0.5581811_1971.jpg b/artists-to-study/ats/thumbnail/dog/nudity/nudity_Ron Mueck_0.5581811_1971.jpg new file mode 100644 index 0000000000000000000000000000000000000000..06f47caf7898316968ec3e1920097eb1a0dff627 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/nudity/nudity_Ron Mueck_0.5581811_1971.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44a0b4ab5dbae0b86f668b051127083650a470a331a9bd4e09383a7bef18110f +size 12024 diff --git a/artists-to-study/ats/thumbnail/dog/nudity/nudity_Saturno Butto_0.6331184_1226.jpg b/artists-to-study/ats/thumbnail/dog/nudity/nudity_Saturno Butto_0.6331184_1226.jpg new file mode 100644 index 0000000000000000000000000000000000000000..22de093cd98f22930b3b3ec300bda250883a29b2 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/nudity/nudity_Saturno Butto_0.6331184_1226.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e110e6bfaf6282f6dc537756532a3868740b5ee880ee0ae8917fb0670a1a4424 +size 11883 diff --git a/artists-to-study/ats/thumbnail/dog/nudity/nudity_Shohei Otomo_0.7132803_0471.jpg b/artists-to-study/ats/thumbnail/dog/nudity/nudity_Shohei Otomo_0.7132803_0471.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7f082ae8d57b461ece3bfa7d09953e0ebea661b8 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/nudity/nudity_Shohei Otomo_0.7132803_0471.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ffe7457de53793500a1b675350bee6d8c866d488dc2e56e117486fc86ba2848 +size 17755 diff --git a/artists-to-study/ats/thumbnail/dog/nudity/nudity_William Etty_0.6497544_0399.jpg b/artists-to-study/ats/thumbnail/dog/nudity/nudity_William Etty_0.6497544_0399.jpg new file mode 100644 index 0000000000000000000000000000000000000000..07c9180ac62e6edaad7a2d80c5c47a93841e0484 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/nudity/nudity_William Etty_0.6497544_0399.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a726e198aa5d9627ec1ecc56e6cdafb454170ebdf285224afc6f1422c795af0b +size 12415 diff --git a/artists-to-study/ats/thumbnail/dog/nudity/nudity_Yasushi Nirasawa_0.6016714_1537.jpg b/artists-to-study/ats/thumbnail/dog/nudity/nudity_Yasushi Nirasawa_0.6016714_1537.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3f74bc1f0bce078f769f693ee9ad6ebe46ddce09 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/nudity/nudity_Yasushi Nirasawa_0.6016714_1537.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:12ea332649070f2e6d03e5584000328924146c515b6206414a100f653f001d12 +size 14092 diff --git a/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_A. J. Casson_0.73666203_0362.jpg b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_A. J. Casson_0.73666203_0362.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0542a8a4b265b13cccbf767960b9bb48ed2d6b32 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_A. J. Casson_0.73666203_0362.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6bfd63036cf97883fb9521d34a1ae69f63a87bceef220e852d502037e0e7fbd0 +size 11085 diff --git a/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Adolph Gottlieb_0.79061794_0133.jpg b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Adolph Gottlieb_0.79061794_0133.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ae926840f7dc23e8514ff140f17b1ea34939feae --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Adolph Gottlieb_0.79061794_0133.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28a9a919091adf36a72f26bb9ccbc1aa23f4bda55a52eabd2f73eae606285e16 +size 15990 diff --git a/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Adrian Tomine_0.79109013_0132.jpg b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Adrian Tomine_0.79109013_0132.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d8d5755fc5f247a0fee980be285c1ccf2fcad2f4 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Adrian Tomine_0.79109013_0132.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:52cdd1902b718e227ea99c3aeb6b817e950b3465ba210b84bae2968988613a31 +size 18093 diff --git a/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Afarin Sajedi_0.62475824_1306.jpg b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Afarin Sajedi_0.62475824_1306.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bb3b7dd553ce3a3ee8476703e21e03bb357e0295 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Afarin Sajedi_0.62475824_1306.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c30dd483ddd76e5ebf268aacc8ed2d4b8b97788740c13ac776dcde3432b3267 +size 10760 diff --git a/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Agnes Lawrence Pelton_0.73960555_0344.jpg b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Agnes Lawrence Pelton_0.73960555_0344.jpg new file mode 100644 index 0000000000000000000000000000000000000000..21ad3f132c5dde4cd5145711d486719133379e40 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Agnes Lawrence Pelton_0.73960555_0344.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe97771f25ca5d07085680995c4b4d2083d8ceb28d3c24b4049523c2348d5782 +size 9698 diff --git a/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Agnes Martin_0.8028028_0112.jpg b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Agnes Martin_0.8028028_0112.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c13732833f1f6ddf78e46834095c8beddec37839 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Agnes Martin_0.8028028_0112.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3be117a883badbecbe424f39a5dd961bc65abe5eac7f8d2a9a27921884719127 +size 10289 diff --git a/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Alasdair Gray_0.7992301_0118.jpg b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Alasdair Gray_0.7992301_0118.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d907560b325038295cf611b8aec962a9bc25793a --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Alasdair Gray_0.7992301_0118.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f9608a690788fc6005f70b515d358d09fd4f467ea569a68d728b870c18a3e3af +size 20472 diff --git a/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Albert Gleizes_0.76658314_0211.jpg b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Albert Gleizes_0.76658314_0211.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8e04d957cf0eb33025ec703894e824cef4b74c5b --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Albert Gleizes_0.76658314_0211.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a457f6733f0f3e73b87b477d18420ce1b882f69d6f0e6a51433ac8c8b482565 +size 14716 diff --git a/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Albert Irvin_0.79688835_0124.jpg b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Albert Irvin_0.79688835_0124.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a96877024b511c3294c1d8090e72073dc81213af --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Albert Irvin_0.79688835_0124.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:68910757a9e3770279afb6f667ff6c777364caaa5eabd1dcffa4a534731228e4 +size 17765 diff --git a/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Alberto Burri_0.6618252_0856.jpg b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Alberto Burri_0.6618252_0856.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5bc84d920d2eb3b4c804f628d20e296d3c864fad --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Alberto Burri_0.6618252_0856.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:53d41cf635667ff97c4cf1f1692f5d62516660f5cb5c96e9a213bb5d62327256 +size 9415 diff --git a/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Alberto Giacometti_0.7596302_0237.jpg b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Alberto Giacometti_0.7596302_0237.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3ee6f3c9c38936a3205a5ef5c44ca30b588e1a7e --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Alberto Giacometti_0.7596302_0237.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c6c9be953119833563805d81c6ef36fb63a339c9ab023e2f1766c795b29a7cc +size 10497 diff --git a/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Alessandro Gottardo_0.79321593_0129.jpg b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Alessandro Gottardo_0.79321593_0129.jpg new file mode 100644 index 0000000000000000000000000000000000000000..515ec45127d477419baf073ceceb579a6504f7ce --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Alessandro Gottardo_0.79321593_0129.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1316352f628d062127a3807c06e76f288430bb2da0353469395487f8f000275e +size 6711 diff --git a/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Alex Garant_0.7333658_0384.jpg b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Alex Garant_0.7333658_0384.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b7d351127bd5285970d55052f44e5393fb3bd5be --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Alex Garant_0.7333658_0384.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6b352e829cc92fe3543575e4421c36cb8e10136a1364a658541f5ef7117b877 +size 18541 diff --git a/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Alex Katz_0.76317835_0228.jpg b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Alex Katz_0.76317835_0228.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1c2739d6d475f3641864b2c6779c76000020b31b --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Alex Katz_0.76317835_0228.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c2d45d37fb5c10b08a834691c699840e4c8457db86cf2548de4b0bed83a82fec +size 12760 diff --git a/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Alexander Archipenko_0.7759824_0173.jpg b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Alexander Archipenko_0.7759824_0173.jpg new file mode 100644 index 0000000000000000000000000000000000000000..63354ea45e3e8ba3fb76608c932243437b309c02 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Alexander Archipenko_0.7759824_0173.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b64fcf33c0a5ed7f571ed7f344a53393e31d274ce0ecac3a13fce8bfa0a5b962 +size 11076 diff --git a/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Alexander Calder_0.83832693_0045.jpg b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Alexander Calder_0.83832693_0045.jpg new file mode 100644 index 0000000000000000000000000000000000000000..07cc5825b188385b7ece8d26b8ad07e825b1292c --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Alexander Calder_0.83832693_0045.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c8d17f48132b7b9e6e721c259df9059328496952eaea20705c0a55afbc369751 +size 12379 diff --git a/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Alexander Jansson_0.69298327_0539.jpg b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Alexander Jansson_0.69298327_0539.jpg new file mode 100644 index 0000000000000000000000000000000000000000..56970594d10a88c510f8676a7c13af4063bfdd76 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Alexander Jansson_0.69298327_0539.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4fd9a2a310b9f24f5e9c2d0383cf0963d7da5f03ae7854b2261247458ab1338a +size 16401 diff --git a/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Alexander Millar_0.7011144_0446.jpg b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Alexander Millar_0.7011144_0446.jpg new file mode 100644 index 0000000000000000000000000000000000000000..541b5422bf7bc1942183d6530c8ad018b68a4156 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Alexander Millar_0.7011144_0446.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8858639c9c43a1dac27fe71edeb8010ab7a1effa6ecf6fb25901642a002b9593 +size 12092 diff --git a/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Alexander Rodchenko_0.67415404_0355.jpg b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Alexander Rodchenko_0.67415404_0355.jpg new file mode 100644 index 0000000000000000000000000000000000000000..46482f92bb2c9b3fbcef238128a0c375749905b2 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Alexander Rodchenko_0.67415404_0355.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c43bf1e2fb368fdff9c92ad4e3af04d9f7fef3f440573e14a9bb9d9e3a2b1b9 +size 12119 diff --git a/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Alexej von Jawlensky_0.8308932_0057.jpg b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Alexej von Jawlensky_0.8308932_0057.jpg new file mode 100644 index 0000000000000000000000000000000000000000..18eac47ef212a352ba482787e7aa8ba9cd2e0354 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Alexej von Jawlensky_0.8308932_0057.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cee819d529663fbb0887891dacf111884a97cfc75078226941e7a6fbf8a6aba8 +size 15489 diff --git a/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Alfred Wallis_0.77926695_0161.jpg b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Alfred Wallis_0.77926695_0161.jpg new file mode 100644 index 0000000000000000000000000000000000000000..34fdba320f12210cf611416aef9d230d247d4524 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Alfred Wallis_0.77926695_0161.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a2d2a925a4212f322da2cc3a7f2e075ae92c05b229764e97c329ba60ed6d24e +size 15347 diff --git a/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Alice Neel_0.67255914_0787.jpg b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Alice Neel_0.67255914_0787.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b9e004cb7fd2e8a7da61c4d764204217d9425ce5 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Alice Neel_0.67255914_0787.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84ecfdbc4983c195b5815903a26011f0cacfb48702ac0ab55d8852ebc69b0fa2 +size 15532 diff --git a/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Alice Rahon_0.6777824_0713.jpg b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Alice Rahon_0.6777824_0713.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c2896a847c540369efec70d5205be2e8bfb71ca7 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Alice Rahon_0.6777824_0713.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b013caeb2db5effb1492f8e4366cbeb560c33dbf7d9f6f2bd22ef2c12e15415 +size 14332 diff --git a/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Alison Bechdel_0.68096143_0672.jpg b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Alison Bechdel_0.68096143_0672.jpg new file mode 100644 index 0000000000000000000000000000000000000000..35ade42c3dc4f40d3883c89cb0e21abe320a5e6f --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Alison Bechdel_0.68096143_0672.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c6560ef1aeeb15a2ab27393641827c0ec37e252e6ff5a22c03931eacb87e31f +size 19587 diff --git a/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Allen Jones_0.6869935_0614.jpg b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Allen Jones_0.6869935_0614.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a583b1c41f268ba13c0de75a66ccddc16dc58a09 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Allen Jones_0.6869935_0614.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ad9121414479f2514e2d6b43af8078890f09b9893f606f3093502162ed0d034 +size 14370 diff --git a/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Amedeo Modigliani_0.71788836_0516.jpg b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Amedeo Modigliani_0.71788836_0516.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d580593ae86aea140fccf3b66f6c6aa1929986ab --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Amedeo Modigliani_0.71788836_0516.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6cad45709cc4a1dd0671f49f1a6b13ce58e98dc70f687aaca2d879477b594368 +size 14086 diff --git a/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Amy Sillman_0.752921_0273.jpg b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Amy Sillman_0.752921_0273.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a5aa43e6ac7688e7234db3793a513494db4eb86f --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Amy Sillman_0.752921_0273.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa835cd38d9331398dd7cc57f873c94465898905c9c41c2ac9b5a4545b6420ea +size 15167 diff --git a/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Andre Derain_0.73050404_0407.jpg b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Andre Derain_0.73050404_0407.jpg new file mode 100644 index 0000000000000000000000000000000000000000..85c078a64f6d17422b576db2cabdceea644394e1 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Andre Derain_0.73050404_0407.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d69c8e8dcb3b4fc521ba4565fac82434ddbf87c83d31c7ccf62d5749127f3149 +size 14983 diff --git "a/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Andr\303\251 Derain_0.7009005_0449.jpg" "b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Andr\303\251 Derain_0.7009005_0449.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..6d661f0197591188b2a4aa70c7e1be9a55b671e7 --- /dev/null +++ "b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Andr\303\251 Derain_0.7009005_0449.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d3a87153e3a7e9e8e34c785f03a442c41a7027d0d4ecfd71e4ce4035b920dd23 +size 15248 diff --git "a/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Andr\303\251 Lhote_0.68718815_0556.jpg" "b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Andr\303\251 Lhote_0.68718815_0556.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..dcb00cef7e2ae2ef4ea1363f3ea74bb6da54da99 --- /dev/null +++ "b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Andr\303\251 Lhote_0.68718815_0556.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d7d2f27402e70dcee468fac723e76d0160d455f3a42b6b2da393a45217ec9fb5 +size 18324 diff --git "a/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Andr\303\251 Masson_0.727404_0438.jpg" "b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Andr\303\251 Masson_0.727404_0438.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..5ccad2253f3a758b7b7fd8474993ed6809b042ab --- /dev/null +++ "b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Andr\303\251 Masson_0.727404_0438.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9eeba5e289ff2e003a45dd6a088ccfe2f3919eaa5a80d444f4a030114efcb5f8 +size 21867 diff --git a/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Andy Warhol_0.8654825_0021.jpg b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Andy Warhol_0.8654825_0021.jpg new file mode 100644 index 0000000000000000000000000000000000000000..06d623d43c3bc2f5762c2cd403123f632b65b3d4 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Andy Warhol_0.8654825_0021.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:385f496368a75bfda511cc471e4751e95885a48386033a88563acd22a4c8a56c +size 17442 diff --git a/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Anna Bocek_0.6382304_1171.jpg b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Anna Bocek_0.6382304_1171.jpg new file mode 100644 index 0000000000000000000000000000000000000000..181ac6e58fd7bf1585369b30d0ff98a5011fb3fe --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Anna Bocek_0.6382304_1171.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cfdb3837042ae2b50c22d8995fa6311e13f68b3269d13ca3a5a3a13e54abdb79 +size 14899 diff --git a/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Anne Redpath_0.66407835_0894.jpg b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Anne Redpath_0.66407835_0894.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e0a959b5ee469a8d206134ab0d274f48b8513d62 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Anne Redpath_0.66407835_0894.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a13a40ec166f9d194f33b176158e2cd395b3ab28c080ac5073efb9d9d25b40c +size 14783 diff --git a/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Anne Rothenstein_0.70502245_0416.jpg b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Anne Rothenstein_0.70502245_0416.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8af8f95f67323fa680e59ce2cefc5e7620ba39d8 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Anne Rothenstein_0.70502245_0416.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd996ec152796fe002d99f8731f7501156b8aea2d7293696abc1fee32c06a727 +size 10986 diff --git a/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Anne Truitt_0.73297834_0386.jpg b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Anne Truitt_0.73297834_0386.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7d4f6053d9d42222692f9805cefb69acaf94d84e --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Anne Truitt_0.73297834_0386.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1422301316d6e80f520130bdbeef75b4b17bd2752d9708537694a606d3b011a1 +size 10879 diff --git a/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Annie Soudain_0.7671485_0210.jpg b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Annie Soudain_0.7671485_0210.jpg new file mode 100644 index 0000000000000000000000000000000000000000..228a9a789ce34da429ec87daa1c476bd5751c13c --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Annie Soudain_0.7671485_0210.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b69da7e91b97f28e54a29f14fd85b42f80a9b087ea2d2847af43e3480e154ec +size 21090 diff --git a/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Anselm Kiefer_0.71514887_0543.jpg b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Anselm Kiefer_0.71514887_0543.jpg new file mode 100644 index 0000000000000000000000000000000000000000..52827523fc0bae578e2e5757a12869d6383a5dd0 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Anselm Kiefer_0.71514887_0543.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f1feeba35e66a45071e6c2e58b639f3692764dfa144fe334004b045074ede9e +size 16194 diff --git a/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Antonio Saura_0.7155949_0540.jpg b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Antonio Saura_0.7155949_0540.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6903eefdd3adcea266dea85f3aafe1d1701fe4d5 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Antonio Saura_0.7155949_0540.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e826f176aee23ea581d20be3a5578e8228c7e3615480491230ae74d66c736178 +size 15525 diff --git a/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Archibald Motley_0.7343683_0379.jpg b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Archibald Motley_0.7343683_0379.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1df2d67d2d97fec05dc3d604717d8a56b3582732 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Archibald Motley_0.7343683_0379.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a8c69f095c6c80131c2b5b3798ab65d5ec5c2b08d1d6ac3dd98dca5d67fd7c2f +size 12919 diff --git a/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Aristarkh Lentulov_0.846537_0035.jpg b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Aristarkh Lentulov_0.846537_0035.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6520b84eff7a1cf4f0ba399fa0b79e54931ff6ec --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Aristarkh Lentulov_0.846537_0035.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6da15c4bab69c914f498ea0c33d339f7afd31c2f4f873376d45fc942a59cc710 +size 20235 diff --git a/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Aristide Maillol_0.66843045_0838.jpg b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Aristide Maillol_0.66843045_0838.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a66c466239a517c92d52daee4c8fb400e664cd3b --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Aristide Maillol_0.66843045_0838.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a44ca87d08098cc08a7dc5696472bba4e9cc7b5c9f94fd92b59245a5fbdc7879 +size 10754 diff --git a/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Armand Guillaumin_0.7840431_0148.jpg b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Armand Guillaumin_0.7840431_0148.jpg new file mode 100644 index 0000000000000000000000000000000000000000..61c817134c6132e65b7e254726ae15a95e51a349 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Armand Guillaumin_0.7840431_0148.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5abd370ff678172dc68566f388ed31738c067db7e16843609278368df18abcd +size 22082 diff --git a/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Arshile Gorky_0.71459055_0547.jpg b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Arshile Gorky_0.71459055_0547.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c4c58719409a5addf5e75c75ff819f36dabba431 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Arshile Gorky_0.71459055_0547.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a4e0e097ec7100b74f2c2160337103bdebec36a4c85c3e80c8847b4335c3de3 +size 15380 diff --git a/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Art Spiegelman_0.7656343_0217.jpg b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Art Spiegelman_0.7656343_0217.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1589d5265833ddcd05fd827e977fa2b80ca96786 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Art Spiegelman_0.7656343_0217.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:111a67c7345f4d4c7a30431f99578249c18ee796808e192cac86eaea4f79f2ad +size 20573 diff --git a/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Arthur Dove_0.74383533_0320.jpg b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Arthur Dove_0.74383533_0320.jpg new file mode 100644 index 0000000000000000000000000000000000000000..626b405309cdbcee7aeb31f1be71cfc68207ad16 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Arthur Dove_0.74383533_0320.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d1fb9e5db08c3baa340e956fa5a584f13f7342fd2bf38d475cf27c95fc172514 +size 12575 diff --git a/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Arthur Garfield Dove_0.6694996_0821.jpg b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Arthur Garfield Dove_0.6694996_0821.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5806ac5eb8a2a3a5c5a73059a9546d57fda7d7ac --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Arthur Garfield Dove_0.6694996_0821.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:253e3a2943f410a05f1bd43a69a072f9f98829672a050d576d0ed80c7f85931e +size 13351 diff --git a/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Arthur Lismer_0.7251765_0457.jpg b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Arthur Lismer_0.7251765_0457.jpg new file mode 100644 index 0000000000000000000000000000000000000000..74fb9021ab602b2bb8f4e016695f1394fe77353c --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Arthur Lismer_0.7251765_0457.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19820c844e498dcdf09beb023ff864666d0eb3d99589d50bea20250bff6be4df +size 18414 diff --git a/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Asaf Hanuka_0.72222745_0483.jpg b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Asaf Hanuka_0.72222745_0483.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ea8fecceee0f4a9fe606f4c2ad7d0b2d7030bfaa --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Asaf Hanuka_0.72222745_0483.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:43e3e98f99beeb9192896b0205c00f2dbf9c7f7669496de3c686f776264af086 +size 20043 diff --git a/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Asger Jorn_0.7129575_0568.jpg b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Asger Jorn_0.7129575_0568.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1d4735cc839695c081a5e4e9a814867b25a0b7cd --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Asger Jorn_0.7129575_0568.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed9de368d6b0e6382c20b8cfba8fb659988e197472f2c98765ea98ef8394d28f +size 16578 diff --git a/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Atey Ghailan_0.674873_0749.jpg b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Atey Ghailan_0.674873_0749.jpg new file mode 100644 index 0000000000000000000000000000000000000000..60a1f86c6b3d274905bc5dc886b87a5769a38e36 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Atey Ghailan_0.674873_0749.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:48fd87e5134ff5a914e7d3906a737732b165144641dc1c10a1435ed5a997aaad +size 8389 diff --git a/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Aubrey Beardsley_0.77970016_0159.jpg b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Aubrey Beardsley_0.77970016_0159.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3d0714248a4e0a5f736026118a8ac1b32d365a3f --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Aubrey Beardsley_0.77970016_0159.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d0a65e32aee5461faefd87101fba66eaaadb0e069ac82664f9408c202f538cc4 +size 19806 diff --git a/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_August Macke_0.8362022_0047.jpg b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_August Macke_0.8362022_0047.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3718d3a33e1155cbb04999dfa72d6af0a2b7ff5e --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_August Macke_0.8362022_0047.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:744ea61e8a57e8898a9e43ad440d6c67c3298c555e535694fc22167c95cbb34c +size 15399 diff --git a/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Auguste Herbin_0.6866145_0368.jpg b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Auguste Herbin_0.6866145_0368.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c8f5d0c39ef3eef642d4442edb2d9ece2ffccf13 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Auguste Herbin_0.6866145_0368.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a19daf8af6a50b69137b5712e9acc46a35de375842a42f7cd822f0fe235e8e7 +size 15974 diff --git a/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Balthus_0.6314323_1242.jpg b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Balthus_0.6314323_1242.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ca44037bab708f1d86c4e546bdd2ab999c98756b --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Balthus_0.6314323_1242.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:05dab34a40870c7f3eb00db5f7a82fb5aceea02dadee5d22804353ba774ea818 +size 9249 diff --git a/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Banksy_0.80695426_0102.jpg b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Banksy_0.80695426_0102.jpg new file mode 100644 index 0000000000000000000000000000000000000000..14307fa7e6a28b83f93a2310c9871f7e341cda59 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Banksy_0.80695426_0102.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a1068b2f1ae1b6d87567e592d320e3c5b243680a2d805559d78f474736f8abf +size 9979 diff --git a/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Barbara Kruger_0.7562784_0258.jpg b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Barbara Kruger_0.7562784_0258.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6a7084a2b13cb3b895067f551f4112578566441b --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Barbara Kruger_0.7562784_0258.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:548cc729919624030a757110193d1dcba144ee5b22c5af12a2eead4b12ddfda4 +size 22777 diff --git a/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Barbara Takenaga_0.86223894_0022.jpg b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Barbara Takenaga_0.86223894_0022.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0d29ac1c40f834204cf72ffd9fd63f7cf1253287 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Barbara Takenaga_0.86223894_0022.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ce3f93ac92c93f36baf02ee9c9483dc46b1ebc39676155f9e1a2293ad962a27 +size 20175 diff --git a/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Barnett Newman_0.7236389_0472.jpg b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Barnett Newman_0.7236389_0472.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c906c6f571ab8ed81967e0113d31256f59826fc2 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Barnett Newman_0.7236389_0472.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:29ca4fbb4872967f0d2658442bd497b602743be65ebebc92ba0465f2c0cc4d55 +size 10436 diff --git a/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Barry McGee_0.77618384_0171.jpg b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Barry McGee_0.77618384_0171.jpg new file mode 100644 index 0000000000000000000000000000000000000000..81cd0fd7d26aaa92a543af8f78b966eecc6b5e7e --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Barry McGee_0.77618384_0171.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5cb40a4268f183ea025669078f361889adbec6b0079ae8f66b5d9e140adebced +size 17552 diff --git a/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Beauford Delaney_0.72999024_0409.jpg b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Beauford Delaney_0.72999024_0409.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5314838f8915be4317c9f5dbf035afda85d57f03 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Beauford Delaney_0.72999024_0409.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e790ed3513946d071093544311e3a4291517f251be50adff5b7f8cbe785c5bf9 +size 17052 diff --git a/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Ben Nicholson_0.7411573_0336.jpg b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Ben Nicholson_0.7411573_0336.jpg new file mode 100644 index 0000000000000000000000000000000000000000..485506dd36bb754e5ff1f29fe745c14b3cf19065 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Ben Nicholson_0.7411573_0336.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:00baefe90d9a9697c3c294896e3ee93041f532217bf2fa0568dcba531302f9b1 +size 8876 diff --git a/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Ben Shahn_0.8104582_0091.jpg b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Ben Shahn_0.8104582_0091.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b8ca5adf8fbfdbefe8237499f17b0798df997fc1 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Ben Shahn_0.8104582_0091.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b25f2d79aa4b15d2d1f52ea6c030e8907f8ea98eabe71119ff2143bfe2d2c2d +size 12511 diff --git a/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Bert Stern_0.53411555_0485.jpg b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Bert Stern_0.53411555_0485.jpg new file mode 100644 index 0000000000000000000000000000000000000000..dc0ffbbbeba088e1b215edf9de933cf9e65bb561 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Bert Stern_0.53411555_0485.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c9de61565e23cab5c5b27a6f0332548200f9b1c45d20e51f4976fe44da3568b9 +size 12344 diff --git a/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Bhupen Khakhar_0.8077607_0099.jpg b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Bhupen Khakhar_0.8077607_0099.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0a7c7af309ab83170b19df3c60112b04f63a00b2 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Bhupen Khakhar_0.8077607_0099.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60bf808394daa51bd33cdb02327fb7f0252c3d9da0df78cfdc0c09bb4374cbf0 +size 11639 diff --git a/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Bill Traylor_0.73189163_0394.jpg b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Bill Traylor_0.73189163_0394.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fd97262f2fdf9975d832736a1df7a88b04369687 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Bill Traylor_0.73189163_0394.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eaf23eb64a4a2b44477a3115d4463883cc35ef0737bccee58879d7a24450f4aa +size 9513 diff --git a/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Billy Childish_0.6902057_0571.jpg b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Billy Childish_0.6902057_0571.jpg new file mode 100644 index 0000000000000000000000000000000000000000..acc74007650804f942423d26830db410cac72477 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Billy Childish_0.6902057_0571.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e17bfe141f2985e1445e6cacd97f9a097c18b9743b6304c8c2d49984dff3c8c3 +size 14124 diff --git a/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Boris Grigoriev_0.6107853_1448.jpg b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Boris Grigoriev_0.6107853_1448.jpg new file mode 100644 index 0000000000000000000000000000000000000000..30f3306539d1653c4b1e8f17e398731c2bd7ea12 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Boris Grigoriev_0.6107853_1448.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7d1027401f85f53fd5b34a5b96ebaa0d17e4889e77324089f0e42a9cad7274cb +size 13768 diff --git a/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Botero_0.63843524_1169.jpg b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Botero_0.63843524_1169.jpg new file mode 100644 index 0000000000000000000000000000000000000000..25a34e43053d10f103a1ee9da64b32799dc80de1 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Botero_0.63843524_1169.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e101a9b3c1dbe4970f8accc71e97ffaf6e40153ec4e0f3af231c41119f7770aa +size 12691 diff --git a/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Brett Whiteley_0.81601924_0079.jpg b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Brett Whiteley_0.81601924_0079.jpg new file mode 100644 index 0000000000000000000000000000000000000000..54a26210a8a28a7e32ab8a804fd5640a086d2b9f --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Brett Whiteley_0.81601924_0079.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:604faa073a3f5ec316023982e58fc12aefd0a0fa1a901fdf87cceebec9555f13 +size 16459 diff --git a/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Brian Bolland_0.68496394_0634.jpg b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Brian Bolland_0.68496394_0634.jpg new file mode 100644 index 0000000000000000000000000000000000000000..98ef19ca9dd1087969943b59fc23577ca9a77841 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Brian Bolland_0.68496394_0634.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c348e36d058be9d25a155fddad51826fefcb00c2be1e929d0530bce919bd904 +size 24149 diff --git a/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Brian Kesinger_0.63037646_1255.jpg b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Brian Kesinger_0.63037646_1255.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0e30992eca135762e8dc89ae8253a43a120760a0 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Brian Kesinger_0.63037646_1255.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e73778e7322af116a8b713914b4f92b1d1721e5e7706d3cdd9fe91b9f235d830 +size 14244 diff --git a/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Brian Stelfreeze_0.7478351_0297.jpg b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Brian Stelfreeze_0.7478351_0297.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5c1b6958b761ddabc4b56f1fbbce9ff521632087 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Brian Stelfreeze_0.7478351_0297.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2dffc3f2821e692a0c47a3403caca3584fc6371679b7fec531ca7daf028b6733 +size 17092 diff --git a/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Bridget Bate Tichenor_0.73274165_0389.jpg b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Bridget Bate Tichenor_0.73274165_0389.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f114edf5ea0aec2743068aed92ccdc67c724532c --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Bridget Bate Tichenor_0.73274165_0389.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:04d7fdb706b4ca0c10f8d5f0172ab661c2fd7010ee022546fa584e1f489aaffe +size 9690 diff --git a/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Bruce McLean_0.76335883_0226.jpg b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Bruce McLean_0.76335883_0226.jpg new file mode 100644 index 0000000000000000000000000000000000000000..33fda95b025065f991423a9ebadd7c430c2a6fbf --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Bruce McLean_0.76335883_0226.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d61caaab8c78d7068585803735296576429d0324dea743847539fb51efe8f43f +size 13520 diff --git a/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Bruce Timm_0.6477877_1082.jpg b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Bruce Timm_0.6477877_1082.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7f3ca9ba8f02213901643a1416f27cf1d57ce180 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Bruce Timm_0.6477877_1082.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9a4827fa6648efd76399bf3fbb499d5d8cadb9ffff9e785f0e315e48eefa8b1e +size 20591 diff --git a/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Catherine Hyde_0.71266896_0573.jpg b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Catherine Hyde_0.71266896_0573.jpg new file mode 100644 index 0000000000000000000000000000000000000000..98f37654e96f85e75cd47778f3487b5ba728ee8a --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Catherine Hyde_0.71266896_0573.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:25ff401376cd13dfe73d638784fa36a31719e1ee3497a4e211a5163669e870e5 +size 8562 diff --git a/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Catrin Welz-Stein_0.73117495_0398.jpg b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Catrin Welz-Stein_0.73117495_0398.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8bd90ad2486ba83b7b2fd48f64d2d852da0dbe47 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Catrin Welz-Stein_0.73117495_0398.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9223357022dc2d4416055c78ae2292db62d1c2b898fc9978e04d3999daffceeb +size 14730 diff --git a/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Chagall_0.8718535_0017.jpg b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Chagall_0.8718535_0017.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0eacb3ce26330346190e9d2914bde8da7a07ba83 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Chagall_0.8718535_0017.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:31d093a7a373c85c41974cfe0f6f6a14dcc8c271738cddc151318bf489b9b579 +size 16591 diff --git a/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Chaim Soutine_0.73662066_0363.jpg b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Chaim Soutine_0.73662066_0363.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ee6d46ddc28969716f138fe7c068f90311958228 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Chaim Soutine_0.73662066_0363.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:adeb7218f321121b38418762ecb016f40bda22fc023ab9541979d27b3a82dad1 +size 18042 diff --git a/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Chantal Joffe_0.70036674_0460.jpg b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Chantal Joffe_0.70036674_0460.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a220feb60ef8afd2ce3cebca3a34388f4ddfb589 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Chantal Joffe_0.70036674_0460.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:367a7d5bf0e825a64043414e94351db98df517b1af3091eb9c2f945e81f8cccd +size 12728 diff --git a/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Charles Addams_0.7344034_0377.jpg b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Charles Addams_0.7344034_0377.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f3870baa5f8e35b4374f0864de4aaa366c4a12bc --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Charles Addams_0.7344034_0377.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e12607f152a10ff95d90b5b82aee0f97553733081efeca76bfbcb8de189cbcab +size 16089 diff --git a/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Charles Blackman_0.83200824_0055.jpg b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Charles Blackman_0.83200824_0055.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c482768258de79f0d67723afc04bc1780a058782 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Charles Blackman_0.83200824_0055.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b0e70bc4a1b323524c1e8d9d5ae6fc11c72456c87a9c3cb96700a341c5681390 +size 11912 diff --git a/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Charles Camoin_0.7395686_0345.jpg b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Charles Camoin_0.7395686_0345.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b75c8fa5505666a6a656dbe29f9bd73ced1e65c8 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Charles Camoin_0.7395686_0345.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f9a759052e9e71199618292418f5aa58903fa3f4a837bfc5c579597ff8684980 +size 16996 diff --git a/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Charles Demuth_0.71605396_0535.jpg b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Charles Demuth_0.71605396_0535.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3a9c76eac6180687969827ee6f53f4d9805850d3 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Charles Demuth_0.71605396_0535.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:926a876a80965c37e643c29d753e30fee1f3344861a0c4c6dad1a17251779feb +size 11271 diff --git a/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Charles E. Burchfield_0.75174403_0277.jpg b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Charles E. Burchfield_0.75174403_0277.jpg new file mode 100644 index 0000000000000000000000000000000000000000..64d3249de0277515224884dcad4082f44473b1c7 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Charles E. Burchfield_0.75174403_0277.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c8436c6cb92badb735172d858ab4bab3ca995614d54a184415f73732ff16c737 +size 16826 diff --git a/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Charles Gwathmey_0.7394747_0347.jpg b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Charles Gwathmey_0.7394747_0347.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fdd5430b0110bb3871330fc8e2555dcbbbb21a65 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Charles Gwathmey_0.7394747_0347.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e5b759bd3881599283dbc84d1f98c06e670363fbcf6f2d512002e1407b650648 +size 10097 diff --git a/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Charles Rennie Mackintosh_0.81297064_0085.jpg b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Charles Rennie Mackintosh_0.81297064_0085.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e3cb117445488b3620222922fd691198bf132b9e --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Charles Rennie Mackintosh_0.81297064_0085.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f41d32d538a8266e0134f32ee5223a8775637295e32008de1db8dc8a1be8723 +size 14554 diff --git a/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Charline von Heyl_0.753142_0271.jpg b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Charline von Heyl_0.753142_0271.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9fed3546a4c5368182d1f2c6e625d097b49bfdc3 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Charline von Heyl_0.753142_0271.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2862d35e8cb7bba7d71108085c6ee7340d851b28d91ad692b944317777177131 +size 21787 diff --git "a/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Cha\303\257m Soutine_0.72603923_0448.jpg" "b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Cha\303\257m Soutine_0.72603923_0448.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..4a3a3ac385275327604a293774c7aa7224074609 --- /dev/null +++ "b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Cha\303\257m Soutine_0.72603923_0448.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e0bc2a87beada14640d95f03c9c183493fcde1049b96135ec2a6b82752b93c1 +size 16440 diff --git a/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Chris Ofili_0.8073793_0101.jpg b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Chris Ofili_0.8073793_0101.jpg new file mode 100644 index 0000000000000000000000000000000000000000..577f34fa8e116ced954a11e65e065ad5b304c67b --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Chris Ofili_0.8073793_0101.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7d65d6766e5bed29e8e4308f798c283b8ce549fc30d5f7a93185a56bb9d724cc +size 16974 diff --git a/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Chris Ware_0.71628594_0531.jpg b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Chris Ware_0.71628594_0531.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2073a8b8a0c2f810523694c9f93c2f1fe660321b --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Chris Ware_0.71628594_0531.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:051949aff036279a5cd57ead55ee7a9ac8fc712ee9de6bdd9e57ff0205fed328 +size 22550 diff --git a/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Cleon Peterson_0.74163914_0330.jpg b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Cleon Peterson_0.74163914_0330.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3902fbe4393096ae48fc76020eb932c3aa381ec6 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Cleon Peterson_0.74163914_0330.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1471af09dbedd7d40c04343c48b37572f3a7dff3231b7af5d677487ebbdc8a38 +size 23197 diff --git a/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Coles Phillips_0.7158309_0536.jpg b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Coles Phillips_0.7158309_0536.jpg new file mode 100644 index 0000000000000000000000000000000000000000..708e9d2b8b57db8cb45b0188af60c0941e40a69b --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Coles Phillips_0.7158309_0536.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c576129022fc00ee047b5257a900f6e1bebf9c4fec4c2e88857f4a73d71b90de +size 14397 diff --git a/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Colin McCahon_0.76086944_0234.jpg b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Colin McCahon_0.76086944_0234.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3398a17c6ee1375742fa500f3f4363762f46b7e6 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Colin McCahon_0.76086944_0234.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:318843321b85c6b1e10b5ef64febc27701e9258640fe041a55dad9ea72e38036 +size 10792 diff --git a/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Constantin Brancusi_0.7004367_0457.jpg b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Constantin Brancusi_0.7004367_0457.jpg new file mode 100644 index 0000000000000000000000000000000000000000..dd1c561f308dc46a9c32b1acf7c581a463c78f93 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Constantin Brancusi_0.7004367_0457.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:046df07b7add69cab794a6283f02b2985630ed92eb98b9088a5a738a6a4b2a6d +size 8189 diff --git a/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Craola_0.65639997_0982.jpg b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Craola_0.65639997_0982.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8b5d5dea7b817c5311d81662b3293b726d87d9ac --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Craola_0.65639997_0982.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a540841013b97703d9965d9295e396ff52e18b291d9433a91225e9c28c9dc0bf +size 15681 diff --git a/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Cuno Amiet_0.7979497_0122.jpg b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Cuno Amiet_0.7979497_0122.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5fe3543a62ae653ca965bdaed1737b97db91ad75 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Cuno Amiet_0.7979497_0122.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fbdfcf690223c7d4afc1108f3512759a992861a4382b533533fdfddc05525a1f +size 15155 diff --git a/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Cy Twombly_0.72814107_0425.jpg b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Cy Twombly_0.72814107_0425.jpg new file mode 100644 index 0000000000000000000000000000000000000000..944d63f458f6d11349f0135c6358de7cc3af359c --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_Cy Twombly_0.72814107_0425.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7100cd6fd18ffaea23f53f7df0edf114d8e1ea4b5064cacfa125a273f34a5e95 +size 11105 diff --git "a/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_C\303\251zanne_0.7879481_0142.jpg" "b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_C\303\251zanne_0.7879481_0142.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..63b71d61ff073cdffb69bda3490263bab25615b0 --- /dev/null +++ "b/artists-to-study/ats/thumbnail/dog/scribbles/scribbles_C\303\251zanne_0.7879481_0142.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:addd608be562afd1c7d8ec224efb27451e16bef8357fa361a52fed6deefe32cf +size 19368 diff --git a/artists-to-study/ats/thumbnail/dog/special/special_Akihiko Yoshida_0.5901294_1653.jpg b/artists-to-study/ats/thumbnail/dog/special/special_Akihiko Yoshida_0.5901294_1653.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c7f4f21a2cba9a612ddc51d2a24491e4d90ea166 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/special/special_Akihiko Yoshida_0.5901294_1653.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:626da16575efb75aa758eb10fc98288d78b879f34b2bfdf2bbaf68505a24efbd +size 11008 diff --git a/artists-to-study/ats/thumbnail/dog/special/special_Alejandro Burdisio_0.47482288_2079.jpg b/artists-to-study/ats/thumbnail/dog/special/special_Alejandro Burdisio_0.47482288_2079.jpg new file mode 100644 index 0000000000000000000000000000000000000000..38578f67ca9eef0fe0b3446915fb87b64c4d7768 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/special/special_Alejandro Burdisio_0.47482288_2079.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:22b60e876c4b5658c8f0af2fdca0e9c005f957ccd8a2316afd0514770ff313e6 +size 11477 diff --git a/artists-to-study/ats/thumbnail/dog/special/special_Alfonse Mucha_0.7139052_0558.jpg b/artists-to-study/ats/thumbnail/dog/special/special_Alfonse Mucha_0.7139052_0558.jpg new file mode 100644 index 0000000000000000000000000000000000000000..75628966b03f80ee742427d35836067425d5153e --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/special/special_Alfonse Mucha_0.7139052_0558.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da315b1fcc8fefd253b4b58a68f1d4928c997ae32765daab14035f6011a8c388 +size 15349 diff --git a/artists-to-study/ats/thumbnail/dog/special/special_Alphonse Mucha_0.74171394_0329.jpg b/artists-to-study/ats/thumbnail/dog/special/special_Alphonse Mucha_0.74171394_0329.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ff1259b290a009670a8ec36220add0187603054b --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/special/special_Alphonse Mucha_0.74171394_0329.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:330eee5e82d226f4654098e25df0823ab6408ecb4598b3ff4a36ead95eb6d39b +size 21085 diff --git a/artists-to-study/ats/thumbnail/dog/special/special_Andre Kohn_0.5581832_1970.jpg b/artists-to-study/ats/thumbnail/dog/special/special_Andre Kohn_0.5581832_1970.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2330c6bf12ff9b02626f69cf79909cfca52e2970 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/special/special_Andre Kohn_0.5581832_1970.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f11689120972fd8d784e296424b8a0cac8e79148d91849afc1af8a20f7670fa +size 10312 diff --git a/artists-to-study/ats/thumbnail/dog/special/special_Andreas Rocha_0.49621177_2112.jpg b/artists-to-study/ats/thumbnail/dog/special/special_Andreas Rocha_0.49621177_2112.jpg new file mode 100644 index 0000000000000000000000000000000000000000..322c4f683188c0fb949623dc65070862d4aa602c --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/special/special_Andreas Rocha_0.49621177_2112.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:30640d89bd0218d1c6fab07a2aab61a8e09e5802d20f779d822cf101e7ca27ea +size 11124 diff --git a/artists-to-study/ats/thumbnail/dog/special/special_Andy Fairhurst_0.6480388_1079.jpg b/artists-to-study/ats/thumbnail/dog/special/special_Andy Fairhurst_0.6480388_1079.jpg new file mode 100644 index 0000000000000000000000000000000000000000..26864616540c5ba0508969b2b15bdec69f774ce6 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/special/special_Andy Fairhurst_0.6480388_1079.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d5411986f8e0d11c1b9e88de6ca2fc84e7869e5d8290e47844574ebab0e9da6d +size 11992 diff --git a/artists-to-study/ats/thumbnail/dog/special/special_Bastien L. Deharme_0.583349_1676.jpg b/artists-to-study/ats/thumbnail/dog/special/special_Bastien L. Deharme_0.583349_1676.jpg new file mode 100644 index 0000000000000000000000000000000000000000..28ce8625af2d42b04a80faadbdabe9a87726c502 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/special/special_Bastien L. Deharme_0.583349_1676.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:81c94cdf03bab431b5a0699fddc51d699703e82b167bf2b14e697ae248a9119f +size 10212 diff --git a/artists-to-study/ats/thumbnail/dog/special/special_Charlie Bowater_0.4410439_1545.jpg b/artists-to-study/ats/thumbnail/dog/special/special_Charlie Bowater_0.4410439_1545.jpg new file mode 100644 index 0000000000000000000000000000000000000000..52f49535b0bae569c51f1b5f8285154ada8d69ba --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/special/special_Charlie Bowater_0.4410439_1545.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e52f6514684983fa2c2e48b35a2760cd2db7940fc4dbd1fd9a73959ea390921 +size 9175 diff --git a/artists-to-study/ats/thumbnail/dog/special/special_Christopher Balaskas_0.67935324_0587.jpg b/artists-to-study/ats/thumbnail/dog/special/special_Christopher Balaskas_0.67935324_0587.jpg new file mode 100644 index 0000000000000000000000000000000000000000..129284c0030abd192ae19de6d1406a7d4c6c4e2b --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/special/special_Christopher Balaskas_0.67935324_0587.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2798302838bce8074a80d5fb02f3492ac45298c7df6dd099a0752c74103c87d3 +size 7924 diff --git a/artists-to-study/ats/thumbnail/dog/special/special_Craig Davison_0.499598_2334.jpg b/artists-to-study/ats/thumbnail/dog/special/special_Craig Davison_0.499598_2334.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d71d385acc200a916b0a3a7b5fd13f66ae66a3b8 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/special/special_Craig Davison_0.499598_2334.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:93276dc582706cc989d9ddca438591464a960587f111edee1639107f45a92884 +size 9018 diff --git a/artists-to-study/ats/thumbnail/dog/special/special_Daniela Uhlig_0.4691466_0432.jpg b/artists-to-study/ats/thumbnail/dog/special/special_Daniela Uhlig_0.4691466_0432.jpg new file mode 100644 index 0000000000000000000000000000000000000000..026aec4f6697377986e339569643d079c7cd352f --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/special/special_Daniela Uhlig_0.4691466_0432.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:867b3901adf63a5d4164d2d68b378c1e841334f163e46ec894c34f1be2b13f3b +size 9527 diff --git a/artists-to-study/ats/thumbnail/dog/special/special_Edward Hopper_0.6884258_0595.jpg b/artists-to-study/ats/thumbnail/dog/special/special_Edward Hopper_0.6884258_0595.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1b902890d7b240423479d10df3f009beb7b0212a --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/special/special_Edward Hopper_0.6884258_0595.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a68938152a97b3b986ee184260f07d1034f36aaa18197d8afe21a4fbb0efb103 +size 11511 diff --git a/artists-to-study/ats/thumbnail/dog/special/special_Evgeny Lushpin_0.5714827_1859.jpg b/artists-to-study/ats/thumbnail/dog/special/special_Evgeny Lushpin_0.5714827_1859.jpg new file mode 100644 index 0000000000000000000000000000000000000000..cd6e8a4f8e7559434741f559d61a2be0d9460c62 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/special/special_Evgeny Lushpin_0.5714827_1859.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:93f8d889c1632942c299b074bca14ed29357f818b0a6655ccda61c41a97d4dae +size 14516 diff --git a/artists-to-study/ats/thumbnail/dog/special/special_Greg Rutkowski_0.5203395_1776.jpg b/artists-to-study/ats/thumbnail/dog/special/special_Greg Rutkowski_0.5203395_1776.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8025b7bc1b534c407f3140de5b1828e02c18d1a1 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/special/special_Greg Rutkowski_0.5203395_1776.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b11dba2adb803d855ec92ec93785cb53dc9beeda2eceaedcbd24c6d8d7d0f24b +size 8283 diff --git a/artists-to-study/ats/thumbnail/dog/special/special_Grzegorz Rutkowski_0.48906532_2276.jpg b/artists-to-study/ats/thumbnail/dog/special/special_Grzegorz Rutkowski_0.48906532_2276.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8c4b71a3148d0c8cc18ed9b5b342fcc2ea1243ae --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/special/special_Grzegorz Rutkowski_0.48906532_2276.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:283b6200e8640e4ed08f8a9c0bcb29f3a356b154dcebf5a35d943d4169a9dfe2 +size 9156 diff --git a/artists-to-study/ats/thumbnail/dog/special/special_Ilya Kuvshinov_0.5805521_1767.jpg b/artists-to-study/ats/thumbnail/dog/special/special_Ilya Kuvshinov_0.5805521_1767.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c3a06ab3587976e888775c3f0fde26830a62b6e9 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/special/special_Ilya Kuvshinov_0.5805521_1767.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:367344cf53a377a5d2abfec47c26ad00a46bf5eafa0bcab220dbab72fd99fb24 +size 8618 diff --git a/artists-to-study/ats/thumbnail/dog/special/special_Ismail Inceoglu_0.72561014_0453.jpg b/artists-to-study/ats/thumbnail/dog/special/special_Ismail Inceoglu_0.72561014_0453.jpg new file mode 100644 index 0000000000000000000000000000000000000000..901d931b2fb82828b3e131a9369f3016628cb7ef --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/special/special_Ismail Inceoglu_0.72561014_0453.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:109df1782c35210aa6394b3e3d321036f1ed84f4c559288bd47607c5b2b746ed +size 10048 diff --git a/artists-to-study/ats/thumbnail/dog/special/special_Jessica Rossier_0.54958373_1593.jpg b/artists-to-study/ats/thumbnail/dog/special/special_Jessica Rossier_0.54958373_1593.jpg new file mode 100644 index 0000000000000000000000000000000000000000..15f0289e5fa8b1b215a3e3cb27d18db09111b515 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/special/special_Jessica Rossier_0.54958373_1593.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:73e762cef9178cbdbf2e4a4c00a2c5d1bcc8fed573a1137fbcaff5e18b8db4f9 +size 9445 diff --git a/artists-to-study/ats/thumbnail/dog/special/special_Joe Madureira_0.6377177_1178.jpg b/artists-to-study/ats/thumbnail/dog/special/special_Joe Madureira_0.6377177_1178.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e9536b38b89fd24fd56119811a73cd17e54741f1 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/special/special_Joe Madureira_0.6377177_1178.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ddca8745b987791909aebe9e3e2f88100af960630c65391faa9c122e4bbd9cff +size 24271 diff --git a/artists-to-study/ats/thumbnail/dog/special/special_Krenz Cushart_0.59026587_1651.jpg b/artists-to-study/ats/thumbnail/dog/special/special_Krenz Cushart_0.59026587_1651.jpg new file mode 100644 index 0000000000000000000000000000000000000000..470b495a9faf80f3845691d63145eaa4228e80d0 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/special/special_Krenz Cushart_0.59026587_1651.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a26e2b2745cbb9bb29c6144d6f1845707fee72c40c7823259c1d7bd70984874 +size 9652 diff --git a/artists-to-study/ats/thumbnail/dog/special/special_Liam Wong_0.7262276_0445.jpg b/artists-to-study/ats/thumbnail/dog/special/special_Liam Wong_0.7262276_0445.jpg new file mode 100644 index 0000000000000000000000000000000000000000..de5f40850c376880d777bad2909577a98c112f27 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/special/special_Liam Wong_0.7262276_0445.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e171d5eeaf3976316333b5c4f8e96a05339b941119fc33e6e23822493cfbd6f +size 18927 diff --git a/artists-to-study/ats/thumbnail/dog/special/special_Ross Tran_0.5259248_2103.jpg b/artists-to-study/ats/thumbnail/dog/special/special_Ross Tran_0.5259248_2103.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8128539b8a72790d2fd28ca17f668027f92fcca9 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/special/special_Ross Tran_0.5259248_2103.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:45cf9f6c6ab0d4de97933c2538449db7565414b492a53803bb081cc43bb1863e +size 10992 diff --git a/artists-to-study/ats/thumbnail/dog/special/special_Ruan Jia_0.5398549_1995.jpg b/artists-to-study/ats/thumbnail/dog/special/special_Ruan Jia_0.5398549_1995.jpg new file mode 100644 index 0000000000000000000000000000000000000000..230fd9848446175974170768afe671ac9ed98903 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/special/special_Ruan Jia_0.5398549_1995.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d4e00a816c18c3dfe646d67f7cc838dc769ec08a065d85e15cfb003d5ff0110 +size 7547 diff --git a/artists-to-study/ats/thumbnail/dog/special/special_Simon Stalenhag_0.6912775_0562.jpg b/artists-to-study/ats/thumbnail/dog/special/special_Simon Stalenhag_0.6912775_0562.jpg new file mode 100644 index 0000000000000000000000000000000000000000..124da8c57d39ca2ea0a2379d2e7a69d1f3c0865c --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/special/special_Simon Stalenhag_0.6912775_0562.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2230034fc2f8962c566abe74a8fa66e4134e6da54166ba4b91ef5747b6b010bc +size 9727 diff --git "a/artists-to-study/ats/thumbnail/dog/special/special_Taiy\305\215 Matsumoto_0.63372946_1221.jpg" "b/artists-to-study/ats/thumbnail/dog/special/special_Taiy\305\215 Matsumoto_0.63372946_1221.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..7d1c3ec8b1cfce163a05cc3b50194d0289262c57 --- /dev/null +++ "b/artists-to-study/ats/thumbnail/dog/special/special_Taiy\305\215 Matsumoto_0.63372946_1221.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a2c59bec8b017fb0fb5aca71ae27e70010f5707d322d21cb87167619f639328c +size 11813 diff --git a/artists-to-study/ats/thumbnail/dog/special/special_Thomas W Schaller_0.69093937_0565.jpg b/artists-to-study/ats/thumbnail/dog/special/special_Thomas W Schaller_0.69093937_0565.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e167826c6757870f06a661254da83459a2d8260a --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/special/special_Thomas W Schaller_0.69093937_0565.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3938efe874f5acf979c8fab7d92699cb09c027e318cfd8b08f19839ae2224ad8 +size 12122 diff --git a/artists-to-study/ats/thumbnail/dog/ukioe/ukioe_Abdur Rahman Chughtai_0.7004994_0456.jpg b/artists-to-study/ats/thumbnail/dog/ukioe/ukioe_Abdur Rahman Chughtai_0.7004994_0456.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d81ba7deec9db97128f99bca94fefda76d56ff84 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/ukioe/ukioe_Abdur Rahman Chughtai_0.7004994_0456.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:102cb1493be073859d46f54444ccc2b2545091aa4b3592b3bde602624390ee33 +size 10214 diff --git a/artists-to-study/ats/thumbnail/dog/ukioe/ukioe_Chen Hongshou_0.71268153_0572.jpg b/artists-to-study/ats/thumbnail/dog/ukioe/ukioe_Chen Hongshou_0.71268153_0572.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9f5e6e01c90f75657ff3f6e135d46edf6a856559 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/ukioe/ukioe_Chen Hongshou_0.71268153_0572.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b8479dfc380304ef50e5c8236ed56853a5b976e5917192849da7c258a6b0d92c +size 8476 diff --git a/artists-to-study/ats/thumbnail/dog/ukioe/ukioe_Emperor Huizong of Song_0.7525214_0274.jpg b/artists-to-study/ats/thumbnail/dog/ukioe/ukioe_Emperor Huizong of Song_0.7525214_0274.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ba0c3230b4ede4ad3e83c3c33bcce65f0ade5879 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/ukioe/ukioe_Emperor Huizong of Song_0.7525214_0274.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:118d7ecc678d57afc1858b69e1f636edf12a26b7884ccd4ee079de27c77fd5a1 +size 10835 diff --git a/artists-to-study/ats/thumbnail/dog/ukioe/ukioe_Fujiwara Takanobu_0.70410216_0425.jpg b/artists-to-study/ats/thumbnail/dog/ukioe/ukioe_Fujiwara Takanobu_0.70410216_0425.jpg new file mode 100644 index 0000000000000000000000000000000000000000..18e2bb0f782804975e4f44b4aa7fbf5f778020bd --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/ukioe/ukioe_Fujiwara Takanobu_0.70410216_0425.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3cc25478078a20001fad9dfb90a4be218c6f5e6be7718ee28aae19ee843b603f +size 11786 diff --git "a/artists-to-study/ats/thumbnail/dog/ukioe/ukioe_Goy\305\215 Hashiguchi_0.7595048_0238.jpg" "b/artists-to-study/ats/thumbnail/dog/ukioe/ukioe_Goy\305\215 Hashiguchi_0.7595048_0238.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..caf1493b543ac21da37be78a3348f8cfae6d65a0 --- /dev/null +++ "b/artists-to-study/ats/thumbnail/dog/ukioe/ukioe_Goy\305\215 Hashiguchi_0.7595048_0238.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd786b6fe30afa4f3978cb23277637e1e498a6296345404d08354d6755761bc1 +size 9925 diff --git "a/artists-to-study/ats/thumbnail/dog/ukioe/ukioe_Hanabusa Itch\305\215 II_0.81187993_0089.jpg" "b/artists-to-study/ats/thumbnail/dog/ukioe/ukioe_Hanabusa Itch\305\215 II_0.81187993_0089.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..7d3a0bf0ae330df9c121fd915e13ef5e732149e2 --- /dev/null +++ "b/artists-to-study/ats/thumbnail/dog/ukioe/ukioe_Hanabusa Itch\305\215 II_0.81187993_0089.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:32410d95045bd96ae80bbea6cc17482fd4602c94391934db78f7c65354107e13 +size 9288 diff --git "a/artists-to-study/ats/thumbnail/dog/ukioe/ukioe_Hanabusa Itch\305\215_0.68023074_0684.jpg" "b/artists-to-study/ats/thumbnail/dog/ukioe/ukioe_Hanabusa Itch\305\215_0.68023074_0684.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..86d6e7bad11dd138dacdb9a2bc720179b461c983 --- /dev/null +++ "b/artists-to-study/ats/thumbnail/dog/ukioe/ukioe_Hanabusa Itch\305\215_0.68023074_0684.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:103db376428a83ec9bbea83ab573c963c7af3b50f8a893f568be141e3e0d26d9 +size 8844 diff --git a/artists-to-study/ats/thumbnail/dog/ukioe/ukioe_Hasui Kawase_0.8040483_0109.jpg b/artists-to-study/ats/thumbnail/dog/ukioe/ukioe_Hasui Kawase_0.8040483_0109.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8c4ea8079774cf5ba6e3fbd0b476c9bef72571e4 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/ukioe/ukioe_Hasui Kawase_0.8040483_0109.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a4b791bd548349d2a52979659dd9a15ef83b90e3365971c0b31a1d6acc0dee3f +size 11543 diff --git a/artists-to-study/ats/thumbnail/dog/ukioe/ukioe_Hiroshi Yoshida_0.73787534_0355.jpg b/artists-to-study/ats/thumbnail/dog/ukioe/ukioe_Hiroshi Yoshida_0.73787534_0355.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b95c582904c4d7051fffcad0605f1dd355a8e2f6 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/ukioe/ukioe_Hiroshi Yoshida_0.73787534_0355.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a7075bb03dcc404f98ce7b20b406fd7609ed88ac6439256288fe62f710b5a46 +size 12126 diff --git a/artists-to-study/ats/thumbnail/dog/ukioe/ukioe_Hiroshi_Yoshida_0.73787534_0355.jpg b/artists-to-study/ats/thumbnail/dog/ukioe/ukioe_Hiroshi_Yoshida_0.73787534_0355.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b95c582904c4d7051fffcad0605f1dd355a8e2f6 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/ukioe/ukioe_Hiroshi_Yoshida_0.73787534_0355.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a7075bb03dcc404f98ce7b20b406fd7609ed88ac6439256288fe62f710b5a46 +size 12126 diff --git a/artists-to-study/ats/thumbnail/dog/ukioe/ukioe_Hiroshige_0.93995106_0005.jpg b/artists-to-study/ats/thumbnail/dog/ukioe/ukioe_Hiroshige_0.93995106_0005.jpg new file mode 100644 index 0000000000000000000000000000000000000000..122dd9b070da7566770412b8595e8cd4715b20a6 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/ukioe/ukioe_Hiroshige_0.93995106_0005.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8904a4a9ffb929961197cb3542ad605b3ecba08d33007acb36279ade4705dc71 +size 14463 diff --git a/artists-to-study/ats/thumbnail/dog/ukioe/ukioe_Hishikawa Moronobu_0.7794119_0160.jpg b/artists-to-study/ats/thumbnail/dog/ukioe/ukioe_Hishikawa Moronobu_0.7794119_0160.jpg new file mode 100644 index 0000000000000000000000000000000000000000..af200d2dc4b54462e3b00aeede494443dc72cbfc --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/ukioe/ukioe_Hishikawa Moronobu_0.7794119_0160.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:97e872488d86e9d547af9be0a4c8f81e50b5d45bc9ac4aea7a9e98bdffe044cf +size 16684 diff --git a/artists-to-study/ats/thumbnail/dog/ukioe/ukioe_Hokusai_0.85046995_0029.jpg b/artists-to-study/ats/thumbnail/dog/ukioe/ukioe_Hokusai_0.85046995_0029.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a69b6c66094112b2be38b99835a68043e803f9ae --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/ukioe/ukioe_Hokusai_0.85046995_0029.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:800f80eca79a0607ca04befd10966635314d6c53dc5ffed957ec9abbf739f2b6 +size 14615 diff --git a/artists-to-study/ats/thumbnail/dog/ukioe/ukioe_Katsushika Hokusai_0.8887236_0008.jpg b/artists-to-study/ats/thumbnail/dog/ukioe/ukioe_Katsushika Hokusai_0.8887236_0008.jpg new file mode 100644 index 0000000000000000000000000000000000000000..82e97a2987bb06c1fd482a6e5a6487d8b782ad85 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/ukioe/ukioe_Katsushika Hokusai_0.8887236_0008.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:32abc71b64e99361eb241a6fca950ed1e8fd11c57ff53d537197cf46561bca72 +size 16664 diff --git "a/artists-to-study/ats/thumbnail/dog/ukioe/ukioe_Kawanabe Ky\305\215sai_0.86612236_0020.jpg" "b/artists-to-study/ats/thumbnail/dog/ukioe/ukioe_Kawanabe Ky\305\215sai_0.86612236_0020.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..01f52ebe2fa77a5db9fd2b6ab26cc9b2a0fb0743 --- /dev/null +++ "b/artists-to-study/ats/thumbnail/dog/ukioe/ukioe_Kawanabe Ky\305\215sai_0.86612236_0020.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:014877a541a7ee0caf678cb93c18a35c6f3406535053edf805b049fad379ac68 +size 12685 diff --git a/artists-to-study/ats/thumbnail/dog/ukioe/ukioe_Kitagawa Utamaro_0.83333457_0051.jpg b/artists-to-study/ats/thumbnail/dog/ukioe/ukioe_Kitagawa Utamaro_0.83333457_0051.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d0f2ad6baf2f052f097fcdd0bbfb1d152cf65149 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/ukioe/ukioe_Kitagawa Utamaro_0.83333457_0051.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:02249c1865f81a862d6ce01623af04fc60835c10735412a5fa30911f5bc77be4 +size 15524 diff --git a/artists-to-study/ats/thumbnail/dog/ukioe/ukioe_Kunisada_0.80493814_0106.jpg b/artists-to-study/ats/thumbnail/dog/ukioe/ukioe_Kunisada_0.80493814_0106.jpg new file mode 100644 index 0000000000000000000000000000000000000000..84d0897ae2fa2467db05d827dba87e85256f0c24 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/ukioe/ukioe_Kunisada_0.80493814_0106.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc52d6e489ad9ecd65ce5490e47beac1bcf891a6392bf39be319ddd381478ce4 +size 18054 diff --git a/artists-to-study/ats/thumbnail/dog/ukioe/ukioe_Ohara Koson_0.78132576_0157.jpg b/artists-to-study/ats/thumbnail/dog/ukioe/ukioe_Ohara Koson_0.78132576_0157.jpg new file mode 100644 index 0000000000000000000000000000000000000000..109354522c47e5f6ee864c2060029b5c0459844a --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/ukioe/ukioe_Ohara Koson_0.78132576_0157.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c44c4b0b5fa2a2527e3307595ad9f502c4532e8f9c3254c9875b7e87807e8dc2 +size 11772 diff --git a/artists-to-study/ats/thumbnail/dog/ukioe/ukioe_Takato Yamamoto_0.78460765_0145.jpg b/artists-to-study/ats/thumbnail/dog/ukioe/ukioe_Takato Yamamoto_0.78460765_0145.jpg new file mode 100644 index 0000000000000000000000000000000000000000..904890f2473fd8bad99c9088f528b417d4c218e3 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/ukioe/ukioe_Takato Yamamoto_0.78460765_0145.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:851ef8fcd429d6c3ab8bb464a269b284b994e465edd74d121143ff7566a6b762 +size 11856 diff --git a/artists-to-study/ats/thumbnail/dog/ukioe/ukioe_Uemura Shoen_0.7342118_0381.jpg b/artists-to-study/ats/thumbnail/dog/ukioe/ukioe_Uemura Shoen_0.7342118_0381.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d0affdafdb4d5d418255fe7333732bd8e58d2859 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/ukioe/ukioe_Uemura Shoen_0.7342118_0381.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0280cd961a0e486a7db15e8ccbb83b72a4a36d13ac56f5a3021ad05b109de531 +size 11078 diff --git a/artists-to-study/ats/thumbnail/dog/ukioe/ukioe_Utagawa Hiroshige_0.8728796_0016.jpg b/artists-to-study/ats/thumbnail/dog/ukioe/ukioe_Utagawa Hiroshige_0.8728796_0016.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8b1bea7daf8aa1e605138abe0bded04bfcd12116 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/ukioe/ukioe_Utagawa Hiroshige_0.8728796_0016.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aea9012e1aa06f88b3fa7159f9113c2fd6adecf2752a2febbdc93981c94e9e03 +size 17358 diff --git a/artists-to-study/ats/thumbnail/dog/ukioe/ukioe_Yasuo Kuniyoshi_0.79870003_0119.jpg b/artists-to-study/ats/thumbnail/dog/ukioe/ukioe_Yasuo Kuniyoshi_0.79870003_0119.jpg new file mode 100644 index 0000000000000000000000000000000000000000..83def90780c39f50bf199c4cd60d9b9e1be7f707 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/ukioe/ukioe_Yasuo Kuniyoshi_0.79870003_0119.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ea8964b6769f1ccccf7bbd12785d2e564565ed998520c23df311eb418a2e4cca +size 15948 diff --git a/artists-to-study/ats/thumbnail/dog/weird/weird_Alma Thomas_0.87658304_0014.jpg b/artists-to-study/ats/thumbnail/dog/weird/weird_Alma Thomas_0.87658304_0014.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a3c5e4af5ee3d62f4e841afd79c1962520e8af1a --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/weird/weird_Alma Thomas_0.87658304_0014.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:25c15bfac76209e9fb2592c8df1ce5705e173525a915e84a2ac9bac0bc02e10b +size 19540 diff --git a/artists-to-study/ats/thumbnail/dog/weird/weird_Anne Packard_0.7046703_0422.jpg b/artists-to-study/ats/thumbnail/dog/weird/weird_Anne Packard_0.7046703_0422.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e6fac5e58650626204e06a29ef6610708de37af4 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/weird/weird_Anne Packard_0.7046703_0422.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:92321e4f2ee3a71a8dbb9b927dcf8c9ec95a59bb8fd6a76a3303287e60c0ca02 +size 10194 diff --git a/artists-to-study/ats/thumbnail/dog/weird/weird_Artur Bordalo_0.7364549_0364.jpg b/artists-to-study/ats/thumbnail/dog/weird/weird_Artur Bordalo_0.7364549_0364.jpg new file mode 100644 index 0000000000000000000000000000000000000000..abf75db339241edf10d75678dd4df6c3db4906ad --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/weird/weird_Artur Bordalo_0.7364549_0364.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe78383e95586ba60ee5b0eaf8f5a471a00ade3e5657646b0891ecb59c931eb9 +size 18293 diff --git a/artists-to-study/ats/thumbnail/dog/weird/weird_Brandon Mably_0.8128239_0086.jpg b/artists-to-study/ats/thumbnail/dog/weird/weird_Brandon Mably_0.8128239_0086.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0f2224bbc8f2f2fce93306451b5a8138fef266b2 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/weird/weird_Brandon Mably_0.8128239_0086.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0da4aaa9fba2cd8fc4feb18b0c51734b99bc3455c406fbdab85341a76aa46081 +size 19598 diff --git a/artists-to-study/ats/thumbnail/dog/weird/weird_Bruno Munari_0.73918355_0350.jpg b/artists-to-study/ats/thumbnail/dog/weird/weird_Bruno Munari_0.73918355_0350.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9eb8a16bc4e2c5770d51c789a743daa90516e32a --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/weird/weird_Bruno Munari_0.73918355_0350.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0fd497dce0aa9ce60661c418b75e6d0afa0f6a52278db7cdc1f3d72624f61585 +size 13615 diff --git a/artists-to-study/ats/thumbnail/dog/weird/weird_Carne Griffiths_0.660091_0932.jpg b/artists-to-study/ats/thumbnail/dog/weird/weird_Carne Griffiths_0.660091_0932.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ef909b3f09a04fa089744be2da0eb74101192c8f --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/weird/weird_Carne Griffiths_0.660091_0932.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b83a4269ba1affec6e4148ef722b636f7043bd7a3ccd862b3cb049ce4e344bf +size 23370 diff --git a/artists-to-study/ats/thumbnail/dog/weird/weird_Claude Cahun_0.7588153_0244.jpg b/artists-to-study/ats/thumbnail/dog/weird/weird_Claude Cahun_0.7588153_0244.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c41b3fd90351895d9013939bb148beceb250d4d4 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/weird/weird_Claude Cahun_0.7588153_0244.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe4bd29ae2f5ea3cf3340ccbf8cf34e05ba8f04a43708aa14b620becfb550cf9 +size 11742 diff --git a/artists-to-study/ats/thumbnail/dog/weird/weird_David Bowie_0.73773724_0357.jpg b/artists-to-study/ats/thumbnail/dog/weird/weird_David Bowie_0.73773724_0357.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a4d0154b2adcc00dc9a0f0359d64f348f4cc333e --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/weird/weird_David Bowie_0.73773724_0357.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a7b5ca2309580ea3ba7eb5445d26be3dae3390279f716af8f76ae0c89c26bb4d +size 14195 diff --git a/artists-to-study/ats/thumbnail/dog/weird/weird_Eduardo Kobra_0.85036755_0030.jpg b/artists-to-study/ats/thumbnail/dog/weird/weird_Eduardo Kobra_0.85036755_0030.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7e0b4dbead7e7722991082e110f2a942f52239c6 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/weird/weird_Eduardo Kobra_0.85036755_0030.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af7bad61afe4a21ce7e266a744bea748837576f27ac992376e7c946ffd1b0e91 +size 16482 diff --git a/artists-to-study/ats/thumbnail/dog/weird/weird_Emily Kame Kngwarreye_0.7532016_0270.jpg b/artists-to-study/ats/thumbnail/dog/weird/weird_Emily Kame Kngwarreye_0.7532016_0270.jpg new file mode 100644 index 0000000000000000000000000000000000000000..825ecb03d36c973dded143ea77bd2a10a635bf06 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/weird/weird_Emily Kame Kngwarreye_0.7532016_0270.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:096eba486882ab264e993cadb01e168f671ffaa0ceb5fc60af33fa2443159bbe +size 25160 diff --git a/artists-to-study/ats/thumbnail/dog/weird/weird_Frank Auerbach_0.6201102_1358.jpg b/artists-to-study/ats/thumbnail/dog/weird/weird_Frank Auerbach_0.6201102_1358.jpg new file mode 100644 index 0000000000000000000000000000000000000000..dfc074cf118eb880b460fa64cfa5e21de5b6abab --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/weird/weird_Frank Auerbach_0.6201102_1358.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba77f9928115199a675fd87173ebdad82da6710d637611d1a9fc204576a5a213 +size 12195 diff --git a/artists-to-study/ats/thumbnail/dog/weird/weird_H. R. Giger_0.6456823_1106.jpg b/artists-to-study/ats/thumbnail/dog/weird/weird_H. R. Giger_0.6456823_1106.jpg new file mode 100644 index 0000000000000000000000000000000000000000..426787f313d3965c1cd088d3e0d23da522af7c0f --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/weird/weird_H. R. Giger_0.6456823_1106.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:96e66c49feeac5b7546db458beeca689112bc4b2c243e37757a0e70f259f2ef4 +size 16208 diff --git a/artists-to-study/ats/thumbnail/dog/weird/weird_Hikari Shimoda_0.7104546_0362.jpg b/artists-to-study/ats/thumbnail/dog/weird/weird_Hikari Shimoda_0.7104546_0362.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b152ba9be95aaf29639e2aa7e2ce4c3c03d6cfaa --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/weird/weird_Hikari Shimoda_0.7104546_0362.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f0d7f1898b10444da198e09e0ded925217a3c8d265ea8b42834a3faa795e623c +size 19244 diff --git a/artists-to-study/ats/thumbnail/dog/weird/weird_Isaac Cordal_0.71046066_0361.jpg b/artists-to-study/ats/thumbnail/dog/weird/weird_Isaac Cordal_0.71046066_0361.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8a1c8cfb856c9408eb131b7630d3a3e543614f69 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/weird/weird_Isaac Cordal_0.71046066_0361.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d5bbccd182beaa3500c1fa985526d4fc879b8bf6c27506d8fc2c0005f953cc71 +size 10068 diff --git a/artists-to-study/ats/thumbnail/dog/weird/weird_Jaume Plensa_0.7756799_0174.jpg b/artists-to-study/ats/thumbnail/dog/weird/weird_Jaume Plensa_0.7756799_0174.jpg new file mode 100644 index 0000000000000000000000000000000000000000..10af55d984aa9762cbc7cfd8d188ad1ed6e9151f --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/weird/weird_Jaume Plensa_0.7756799_0174.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a1ca657c9fad11f9fecd9bf61506ee656e97ecf7e4f58e8857dc3a4af25a139 +size 15883 diff --git a/artists-to-study/ats/thumbnail/dog/weird/weird_Judy Chicago_0.6952246_0512.jpg b/artists-to-study/ats/thumbnail/dog/weird/weird_Judy Chicago_0.6952246_0512.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7ad81a2ef8741c79a3df5450976e3b7a15227241 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/weird/weird_Judy Chicago_0.6952246_0512.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:78035432761d9b49f7c6b21ebcff3ac7888fe422af742389559b185b1eeda6cb +size 17619 diff --git a/artists-to-study/ats/thumbnail/dog/weird/weird_Keith Haring_0.9431302_0004.jpg b/artists-to-study/ats/thumbnail/dog/weird/weird_Keith Haring_0.9431302_0004.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1b1f05e71a6e6891fdb6b1b0cd34984591297405 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/weird/weird_Keith Haring_0.9431302_0004.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5cdf59d930befd26d72bd2550c87bb229b787ada4f6ee149d3830461a8e81bc6 +size 25676 diff --git a/artists-to-study/ats/thumbnail/dog/weird/weird_OSGEMEOS_0.7829088_0153.jpg b/artists-to-study/ats/thumbnail/dog/weird/weird_OSGEMEOS_0.7829088_0153.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d768efdd9a9d8a479779a402fc2788bdfae18546 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/weird/weird_OSGEMEOS_0.7829088_0153.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3030755b766b7717cd19efa4633c7936b8314c8c0d6e2797b3629379602c35fd +size 16750 diff --git a/artists-to-study/ats/thumbnail/dog/weird/weird_Peter Max_0.99715996_0001.jpg b/artists-to-study/ats/thumbnail/dog/weird/weird_Peter Max_0.99715996_0001.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a0627f078f517df27473895474fc567262dee54d --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/weird/weird_Peter Max_0.99715996_0001.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c7cf4a8a5769978ff4a96ffddd15dbc219c6cf3d2d4c8f274e81f28f916aa657 +size 18149 diff --git a/artists-to-study/ats/thumbnail/dog/weird/weird_Rebecca Louise Law_0.81214285_0087.jpg b/artists-to-study/ats/thumbnail/dog/weird/weird_Rebecca Louise Law_0.81214285_0087.jpg new file mode 100644 index 0000000000000000000000000000000000000000..911d61ce017a9dd97c4e818498fedda9dfd55b14 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/weird/weird_Rebecca Louise Law_0.81214285_0087.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ccea0558ae078a66d71941a405ad8ee50ac38c6489eef75a0521c0f1bf3d45a +size 20212 diff --git a/artists-to-study/ats/thumbnail/dog/weird/weird_Remedios Varo_0.7150927_0544.jpg b/artists-to-study/ats/thumbnail/dog/weird/weird_Remedios Varo_0.7150927_0544.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e922bdf2a9a61c23da872db3b0ca5158465a1c41 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/weird/weird_Remedios Varo_0.7150927_0544.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a327268561e7a89d941cfd3e51f1fc9f2eb4d740d31e3c699102265629a2255a +size 14819 diff --git a/artists-to-study/ats/thumbnail/dog/weird/weird_Roz Chast_0.8432013_0040.jpg b/artists-to-study/ats/thumbnail/dog/weird/weird_Roz Chast_0.8432013_0040.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2959633c84a52346c732570faa737cbd0d0379b6 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/weird/weird_Roz Chast_0.8432013_0040.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1abe883192209dbf66d4d1157f20c40c5c8b560b828d427d93c5bfce95ef0da0 +size 20586 diff --git a/artists-to-study/ats/thumbnail/dog/weird/weird_Stephen Gammell_0.74001735_0236.jpg b/artists-to-study/ats/thumbnail/dog/weird/weird_Stephen Gammell_0.74001735_0236.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9148dd2a03dfa7fa49059ce9db6960af79bf7f2c --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/weird/weird_Stephen Gammell_0.74001735_0236.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:29313d48111b70eb72a35fbd214f4aed9462e874f48162f5b72004c639021cc6 +size 11878 diff --git a/artists-to-study/ats/thumbnail/dog/weird/weird_Takashi Murakami_0.81338763_0081.jpg b/artists-to-study/ats/thumbnail/dog/weird/weird_Takashi Murakami_0.81338763_0081.jpg new file mode 100644 index 0000000000000000000000000000000000000000..69777783b9f8d83c0830386872c0b51b08a6716e --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/weird/weird_Takashi Murakami_0.81338763_0081.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8cfb73628940a651a20cb38bc80e88990e935f3f70c907fbd53d019f036272f6 +size 27190 diff --git a/artists-to-study/ats/thumbnail/dog/weird/weird_Yayoi Kusama_0.81886625_0072.jpg b/artists-to-study/ats/thumbnail/dog/weird/weird_Yayoi Kusama_0.81886625_0072.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0fdf3408e57433679650f2dbe72ce9e0295ab547 --- /dev/null +++ b/artists-to-study/ats/thumbnail/dog/weird/weird_Yayoi Kusama_0.81886625_0072.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c4c9b7c8168eabcccc37b6845cb40693184dc00294a623a73e270b6c107497d0 +size 28459 diff --git a/artists-to-study/ats/thumbnail/house/anime/anime_Adam Hughes_0.60854626_1728.jpg b/artists-to-study/ats/thumbnail/house/anime/anime_Adam Hughes_0.60854626_1728.jpg new file mode 100644 index 0000000000000000000000000000000000000000..78db8f3b106dc192b557551addd17774b0027359 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/anime/anime_Adam Hughes_0.60854626_1728.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3aaf68a570ecd5fa497b9eddf933bf3c791a384ddf577669ae13ce23d7786daf +size 20353 diff --git a/artists-to-study/ats/thumbnail/house/anime/anime_Akira Toriyama_0.6635002_1160.jpg b/artists-to-study/ats/thumbnail/house/anime/anime_Akira Toriyama_0.6635002_1160.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e8205f87622fcca33f45f4fb3907c9af50b57c75 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/anime/anime_Akira Toriyama_0.6635002_1160.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b013e7db59ed3d31d7368ffed368ff6dbe8e4c28efbe9f0ed88a97e24d573bf2 +size 21487 diff --git a/artists-to-study/ats/thumbnail/house/anime/anime_Apollonia Saintclair_0.7718383_0220.jpg b/artists-to-study/ats/thumbnail/house/anime/anime_Apollonia Saintclair_0.7718383_0220.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b065772c14d7a7887c466f5e989e1dacf85a0292 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/anime/anime_Apollonia Saintclair_0.7718383_0220.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c55e8f9bd573f819b1acab0602ba62af7a02b7c8ffa1511cafe6c877d4cacf0 +size 23912 diff --git a/artists-to-study/ats/thumbnail/house/anime/anime_Armin Hansen_0.59669334_1838.jpg b/artists-to-study/ats/thumbnail/house/anime/anime_Armin Hansen_0.59669334_1838.jpg new file mode 100644 index 0000000000000000000000000000000000000000..31e6673185a1d46f27bf555fde648dd4f6e1155c --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/anime/anime_Armin Hansen_0.59669334_1838.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:987f9f1699e2b8d536b9073536a18cbb51a8ede593e8cb4112c8eb0cff60b1cd +size 13233 diff --git a/artists-to-study/ats/thumbnail/house/anime/anime_Awataguchi Takamitsu_0.6656272_1132.jpg b/artists-to-study/ats/thumbnail/house/anime/anime_Awataguchi Takamitsu_0.6656272_1132.jpg new file mode 100644 index 0000000000000000000000000000000000000000..cc1b8fe7812e3648bf8531ca5dc37dbf17c1f717 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/anime/anime_Awataguchi Takamitsu_0.6656272_1132.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f72ada43611ef2d65069e345142582fd464e58f0ea44ea5df5aa34e2cd3232f4 +size 14766 diff --git "a/artists-to-study/ats/thumbnail/house/anime/anime_Bai\305\215ken Eishun_0.6730663_1037.jpg" "b/artists-to-study/ats/thumbnail/house/anime/anime_Bai\305\215ken Eishun_0.6730663_1037.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..4a053200a6147a6eb6c5897356154eb3be314d87 --- /dev/null +++ "b/artists-to-study/ats/thumbnail/house/anime/anime_Bai\305\215ken Eishun_0.6730663_1037.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2563aeaceef90c607ca7732676a5bf4cfb69aa6d9eadfd4365ad248a256dbac6 +size 18934 diff --git a/artists-to-study/ats/thumbnail/house/anime/anime_Bakemono Zukushi_0.67051035_1071.jpg b/artists-to-study/ats/thumbnail/house/anime/anime_Bakemono Zukushi_0.67051035_1071.jpg new file mode 100644 index 0000000000000000000000000000000000000000..52f66216034e17bd954266118cdb1be04f9df9ba --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/anime/anime_Bakemono Zukushi_0.67051035_1071.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d45ffd2800dd1461144231f02bdb91e63c752bb42afabf824c915b7515078df +size 18498 diff --git a/artists-to-study/ats/thumbnail/house/anime/anime_Chiho Aoshima_0.71801454_0542.jpg b/artists-to-study/ats/thumbnail/house/anime/anime_Chiho Aoshima_0.71801454_0542.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b0dd9e1036972dab55e438357ccc7577d83db1aa --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/anime/anime_Chiho Aoshima_0.71801454_0542.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c5e1d3796d1abb02c8a15366701fec6508f52d7a28a3665b3495830418350a8 +size 16601 diff --git a/artists-to-study/ats/thumbnail/house/anime/anime_Eiichiro Oda_0.64772165_1342.jpg b/artists-to-study/ats/thumbnail/house/anime/anime_Eiichiro Oda_0.64772165_1342.jpg new file mode 100644 index 0000000000000000000000000000000000000000..dddd773e1412abc2a5b6c442eba830df1f981b51 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/anime/anime_Eiichiro Oda_0.64772165_1342.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5161b013c4c6d1dae08c962e5067b0a9111b31150f326803f6ca232543178edc +size 22661 diff --git a/artists-to-study/ats/thumbnail/house/anime/anime_Fujishima Takeji_0.6751577_1004.jpg b/artists-to-study/ats/thumbnail/house/anime/anime_Fujishima Takeji_0.6751577_1004.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2bbe9d74f27f1960db1164fe2d6adc05ede6db1e --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/anime/anime_Fujishima Takeji_0.6751577_1004.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3367e5bcc9a89b4af94bc769bf2a156738ffa9a304b3e002ba91f4ce22d7dd7f +size 10778 diff --git a/artists-to-study/ats/thumbnail/house/anime/anime_Gai Qi_0.613744_1676.jpg b/artists-to-study/ats/thumbnail/house/anime/anime_Gai Qi_0.613744_1676.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7c1c7fc92a07889365544c8cda1a823e7394282b --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/anime/anime_Gai Qi_0.613744_1676.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e52497b4d7eacd4b2dea3606afd2be9ffadc825e054cd09fffe396bad1b4fac +size 14151 diff --git "a/artists-to-study/ats/thumbnail/house/anime/anime_Gat\305\215ken Shunshi_0.6833314_0907.jpg" "b/artists-to-study/ats/thumbnail/house/anime/anime_Gat\305\215ken Shunshi_0.6833314_0907.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..22cadc805ef8fbb5296397b949d4b49291833fa3 --- /dev/null +++ "b/artists-to-study/ats/thumbnail/house/anime/anime_Gat\305\215ken Shunshi_0.6833314_0907.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c7a3aa0cb001e88fa752b7da229c7b25f6648b0ccfa1e5f1150a29eaeeaf3526 +size 12760 diff --git a/artists-to-study/ats/thumbnail/house/anime/anime_Go Nagai_0.72770613_0460.jpg b/artists-to-study/ats/thumbnail/house/anime/anime_Go Nagai_0.72770613_0460.jpg new file mode 100644 index 0000000000000000000000000000000000000000..65e7b24b99daf5efaac31643c73a4420fbbd0b42 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/anime/anime_Go Nagai_0.72770613_0460.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d8aae8de511b1ebcd80099242b22834876fb127754883b4f4796eeb6ca20515 +size 15385 diff --git "a/artists-to-study/ats/thumbnail/house/anime/anime_Gyosh\305\253 Hayami_0.68665624_0875.jpg" "b/artists-to-study/ats/thumbnail/house/anime/anime_Gyosh\305\253 Hayami_0.68665624_0875.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..0ee58e463c4019ab0379eacf9778de8907ea3fb4 --- /dev/null +++ "b/artists-to-study/ats/thumbnail/house/anime/anime_Gyosh\305\253 Hayami_0.68665624_0875.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f6574b28f3bb4ec2664a3d956093210629dc103b381ed889b391a65cebd3a79 +size 11402 diff --git a/artists-to-study/ats/thumbnail/house/anime/anime_Hariton Pushwagner_0.6556745_1246.jpg b/artists-to-study/ats/thumbnail/house/anime/anime_Hariton Pushwagner_0.6556745_1246.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b2ade577f886ac02afa5ebeac3a8d2a0edb862e7 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/anime/anime_Hariton Pushwagner_0.6556745_1246.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:086ed555fde8d9d47ba3f9fd1fc90f3387d046689de55dcc61091137bbc3d1db +size 14571 diff --git "a/artists-to-study/ats/thumbnail/house/anime/anime_Hasegawa T\305\215haku_0.66146004_1176.jpg" "b/artists-to-study/ats/thumbnail/house/anime/anime_Hasegawa T\305\215haku_0.66146004_1176.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..cd3850c936c4d73aff069dd50baeab33caffcdf7 --- /dev/null +++ "b/artists-to-study/ats/thumbnail/house/anime/anime_Hasegawa T\305\215haku_0.66146004_1176.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0295b53b5888ddb658df415e6d81ebfd060b652e522bbe57f028e4dd1cbacdec +size 13714 diff --git a/artists-to-study/ats/thumbnail/house/anime/anime_Hayao Miyazaki_0.6800754_0946.jpg b/artists-to-study/ats/thumbnail/house/anime/anime_Hayao Miyazaki_0.6800754_0946.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b91114dbc90d9559779da2a54ffa26a73b928079 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/anime/anime_Hayao Miyazaki_0.6800754_0946.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a1d9b560d8689bc4d651ec716aac9942b98335a5743b23fb805a7c2056aa8212 +size 17023 diff --git a/artists-to-study/ats/thumbnail/house/anime/anime_Hirohiko Araki_0.6914078_0818.jpg b/artists-to-study/ats/thumbnail/house/anime/anime_Hirohiko Araki_0.6914078_0818.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9ef3dfd8aee0c784194e4530f17e7c95d15d7cc8 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/anime/anime_Hirohiko Araki_0.6914078_0818.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:95e3bfdae06742aeea6040bf052cedef163d38b150815eca2443ecf36bf35cfe +size 24080 diff --git a/artists-to-study/ats/thumbnail/house/anime/anime_Hiromu Arakawa_0.64371413_1381.jpg b/artists-to-study/ats/thumbnail/house/anime/anime_Hiromu Arakawa_0.64371413_1381.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3e74e7ebbf8012353d86deb8e5d2e5b144c9cf1a --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/anime/anime_Hiromu Arakawa_0.64371413_1381.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c19a30c798545f8f2de7bd7715d850becaa0777449c70fd3cb5dde7350bccad +size 22862 diff --git a/artists-to-study/ats/thumbnail/house/anime/anime_Ike no Taiga_0.5795857_2034.jpg b/artists-to-study/ats/thumbnail/house/anime/anime_Ike no Taiga_0.5795857_2034.jpg new file mode 100644 index 0000000000000000000000000000000000000000..49d07d74f6097299e23288de61e5582db3015072 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/anime/anime_Ike no Taiga_0.5795857_2034.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e07737f7083e416afc053f096eeacbbfcbb5f506a02b083ffdda3a5bc17e58bf +size 16711 diff --git a/artists-to-study/ats/thumbnail/house/anime/anime_Inio Asano_0.6965007_0760.jpg b/artists-to-study/ats/thumbnail/house/anime/anime_Inio Asano_0.6965007_0760.jpg new file mode 100644 index 0000000000000000000000000000000000000000..afc1d46045383aa1253b46e326c4960f0c8b8d91 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/anime/anime_Inio Asano_0.6965007_0760.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7bf02f2fdd3e281dd1241beac6cf9aac4846936a33cb9221ed572875731bd8e3 +size 22842 diff --git a/artists-to-study/ats/thumbnail/house/anime/anime_John Kenn Mortensen_0.74758303_0319.jpg b/artists-to-study/ats/thumbnail/house/anime/anime_John Kenn Mortensen_0.74758303_0319.jpg new file mode 100644 index 0000000000000000000000000000000000000000..46143a9ae57d5ed8e7e5359c88341577a2dc9c56 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/anime/anime_John Kenn Mortensen_0.74758303_0319.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26683f80ba176343908d9432abc6fc19b1cabc79bc0c3e7cd480c955ef899f07 +size 12311 diff --git a/artists-to-study/ats/thumbnail/house/anime/anime_Junji Ito_0.7188978_0537.jpg b/artists-to-study/ats/thumbnail/house/anime/anime_Junji Ito_0.7188978_0537.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bd72e6ff21b2283188002a3c0b9c147719a0a4d8 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/anime/anime_Junji Ito_0.7188978_0537.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf0c91b4a9726aba09d6137bbc27267eda1da741a240840ecbed87afa417bb01 +size 26562 diff --git a/artists-to-study/ats/thumbnail/house/anime/anime_Katsuhiro Otomo_0.746364_0337.jpg b/artists-to-study/ats/thumbnail/house/anime/anime_Katsuhiro Otomo_0.746364_0337.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e2ec5aeb3c2ad9c1f04f5f31ba81035b258fdc88 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/anime/anime_Katsuhiro Otomo_0.746364_0337.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:849357de7a698a16d27d0565cd3d1e3a1b931acb87c692d14b7e41363ff6faf1 +size 20273 diff --git a/artists-to-study/ats/thumbnail/house/anime/anime_Ken Sugimori_0.6932626_0795.jpg b/artists-to-study/ats/thumbnail/house/anime/anime_Ken Sugimori_0.6932626_0795.jpg new file mode 100644 index 0000000000000000000000000000000000000000..52226b3122f500cb35884712ac824122368151c8 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/anime/anime_Ken Sugimori_0.6932626_0795.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0ef6663c4e5f2251fd7565229f098d0c22a3afcc12fe0de7f5224343530665b +size 20817 diff --git a/artists-to-study/ats/thumbnail/house/anime/anime_Kentaro Miura_0.697743_0749.jpg b/artists-to-study/ats/thumbnail/house/anime/anime_Kentaro Miura_0.697743_0749.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a6e02de7fb76cec381838f275dde2789d7701654 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/anime/anime_Kentaro Miura_0.697743_0749.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1cd237b76dd172f7397fd0059dc5a1c5c3ecf21faf992338ca37bb7718557515 +size 16456 diff --git a/artists-to-study/ats/thumbnail/house/anime/anime_Kobayashi Kiyochika_0.6239368_1577.jpg b/artists-to-study/ats/thumbnail/house/anime/anime_Kobayashi Kiyochika_0.6239368_1577.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5706ab5a4d378bab24477a69efbf3b3e9ce584b5 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/anime/anime_Kobayashi Kiyochika_0.6239368_1577.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da6a6f68f998ecde6aaf0471896cbc1ee06fcb41733910c2ea71df91e98ab95b +size 16629 diff --git a/artists-to-study/ats/thumbnail/house/anime/anime_Leiji Matsumoto_0.66089404_1182.jpg b/artists-to-study/ats/thumbnail/house/anime/anime_Leiji Matsumoto_0.66089404_1182.jpg new file mode 100644 index 0000000000000000000000000000000000000000..465b840c8c3a0f882530dc9636194e308b5ebde7 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/anime/anime_Leiji Matsumoto_0.66089404_1182.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2afee33db0a34cecb439f454ce97777ff395020a65a45a58a03605360cd492bb +size 17252 diff --git a/artists-to-study/ats/thumbnail/house/anime/anime_Makoto Shinkai_0.67610705_0992.jpg b/artists-to-study/ats/thumbnail/house/anime/anime_Makoto Shinkai_0.67610705_0992.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ef60d2d057eb2d3ca79563468ddc7a71a5791ff2 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/anime/anime_Makoto Shinkai_0.67610705_0992.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f3738d1b46b8194076d496cadba5d6fbc3defad5078e55d7971dfa797640888 +size 14269 diff --git a/artists-to-study/ats/thumbnail/house/anime/anime_Masaaki Sasamoto_0.6597158_1193.jpg b/artists-to-study/ats/thumbnail/house/anime/anime_Masaaki Sasamoto_0.6597158_1193.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b2ab14651d000412d084a7d96264886ad093c4d4 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/anime/anime_Masaaki Sasamoto_0.6597158_1193.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b3a2ebd196dc67b05095e290c19570e1ec82fa79224513ffa0b9d2c6322f8ae9 +size 14105 diff --git a/artists-to-study/ats/thumbnail/house/anime/anime_Masamune Shirow_0.65592873_1244.jpg b/artists-to-study/ats/thumbnail/house/anime/anime_Masamune Shirow_0.65592873_1244.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d620a58b859cd771c627b38b114289b1fe202edf --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/anime/anime_Masamune Shirow_0.65592873_1244.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb295500453e38fe1533a7fca7a465bce1a2e2f6e8b409a6b6f15487c1bcf3c +size 22444 diff --git a/artists-to-study/ats/thumbnail/house/anime/anime_Michael Cheval_0.61138546_1697.jpg b/artists-to-study/ats/thumbnail/house/anime/anime_Michael Cheval_0.61138546_1697.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e59c4fbf963394a3e2053c52b6f0229cd7cb13c9 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/anime/anime_Michael Cheval_0.61138546_1697.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6302b13e2ab710c9dffe2b660bc93424a73a0c0c241b72827aaf19982ca317f9 +size 19870 diff --git a/artists-to-study/ats/thumbnail/house/anime/anime_Miho Hirano_0.6724092_1047.jpg b/artists-to-study/ats/thumbnail/house/anime/anime_Miho Hirano_0.6724092_1047.jpg new file mode 100644 index 0000000000000000000000000000000000000000..27cc12ec4fb523a92806779d8f15cf328fbc72ae --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/anime/anime_Miho Hirano_0.6724092_1047.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a585ef7f7a02434dac6af5b8bce7fc5a02f465f32ae7dff2ac1c257bb8cd5840 +size 16624 diff --git a/artists-to-study/ats/thumbnail/house/anime/anime_Naoki Urasawa_0.7469665_0334.jpg b/artists-to-study/ats/thumbnail/house/anime/anime_Naoki Urasawa_0.7469665_0334.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0fd56eafe89cbc41f0f5874fda699761bdfd66ff --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/anime/anime_Naoki Urasawa_0.7469665_0334.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24328c4a5a6b6634edaeb57e1152191f59c33f871e1f2da45dc22ed37870b933 +size 18928 diff --git a/artists-to-study/ats/thumbnail/house/anime/anime_Naoko Takeuchi_0.80482674_0135.jpg b/artists-to-study/ats/thumbnail/house/anime/anime_Naoko Takeuchi_0.80482674_0135.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f157528533b4dc01125b5cde9f48851564f02b7c --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/anime/anime_Naoko Takeuchi_0.80482674_0135.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:73fecf2b350d37c9a28086111123eff2500e28045ec212706ff954212c971622 +size 23599 diff --git a/artists-to-study/ats/thumbnail/house/anime/anime_Phil Noto_0.6470769_1351.jpg b/artists-to-study/ats/thumbnail/house/anime/anime_Phil Noto_0.6470769_1351.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ac91233afb4c1d4407ee2307a6f567c5162c263d --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/anime/anime_Phil Noto_0.6470769_1351.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1939cc3773a24fbe103ae8522f21ba2ba23c40d0d8a542060ab4b8f1c5abd094 +size 12171 diff --git a/artists-to-study/ats/thumbnail/house/anime/anime_Posuka Demizu_0.64843124_1335.jpg b/artists-to-study/ats/thumbnail/house/anime/anime_Posuka Demizu_0.64843124_1335.jpg new file mode 100644 index 0000000000000000000000000000000000000000..cf4719492400ff30e5d4fa3793ccedb3fa223114 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/anime/anime_Posuka Demizu_0.64843124_1335.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bb1d8bcccb8380f5378697e4bcd47e5f8fe6d6734b38df719651d5fb188e0c91 +size 20198 diff --git a/artists-to-study/ats/thumbnail/house/anime/anime_Rumiko Takahashi_0.8301817_0087.jpg b/artists-to-study/ats/thumbnail/house/anime/anime_Rumiko Takahashi_0.8301817_0087.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0044c3744cae384d2454410aa3baef8045e9ea60 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/anime/anime_Rumiko Takahashi_0.8301817_0087.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7270a18fd215806a57e3fd25e4f39aa477215be5f0681572cbaf8f7723b1e4cb +size 20595 diff --git a/artists-to-study/ats/thumbnail/house/anime/anime_Sailor Moon_0.73281246_0415.jpg b/artists-to-study/ats/thumbnail/house/anime/anime_Sailor Moon_0.73281246_0415.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4b234104fee21a59247a856b1f196fef1ed12bed --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/anime/anime_Sailor Moon_0.73281246_0415.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0911c95d8b236f4f6b41737d3312f41633e3fbd1d0c0890c7aedbe2a873b0eec +size 20111 diff --git a/artists-to-study/ats/thumbnail/house/anime/anime_Satoshi Kon_0.65606606_1243.jpg b/artists-to-study/ats/thumbnail/house/anime/anime_Satoshi Kon_0.65606606_1243.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e5af31d0f28a49203975c2ce8cc198d86b52975c --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/anime/anime_Satoshi Kon_0.65606606_1243.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8c7a5d25219d11d0db4de134dd7e4b85c1ed2a465212a9d556083b92a4bdf500 +size 21627 diff --git a/artists-to-study/ats/thumbnail/house/anime/anime_Shinji Aramaki_0.61246127_1687.jpg b/artists-to-study/ats/thumbnail/house/anime/anime_Shinji Aramaki_0.61246127_1687.jpg new file mode 100644 index 0000000000000000000000000000000000000000..45d6c72e53f93d5e42a71811eb41512faa61de5a --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/anime/anime_Shinji Aramaki_0.61246127_1687.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b9693fee482bfcf1745f57961e8d8e8f91f9573848651505932ae4ae45b883ce +size 14542 diff --git a/artists-to-study/ats/thumbnail/house/anime/anime_Shintaro Kago_0.7484431_0322.jpg b/artists-to-study/ats/thumbnail/house/anime/anime_Shintaro Kago_0.7484431_0322.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e6f07faa32f1dd92d127b36ea89d5bf114ba5456 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/anime/anime_Shintaro Kago_0.7484431_0322.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a4c10fd75159b1ef975e956f9a1a621bc428f54a8a687e54f39a301395a2fd2 +size 22554 diff --git a/artists-to-study/ats/thumbnail/house/anime/anime_Shotaro Ishinomori_0.7292093_0443.jpg b/artists-to-study/ats/thumbnail/house/anime/anime_Shotaro Ishinomori_0.7292093_0443.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c87d744a82daca536c5aea121238a9634a555aed --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/anime/anime_Shotaro Ishinomori_0.7292093_0443.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:23975979710336c1a1271b048d5fe304d48a6e8053bf002a04fd14d76e4a4b83 +size 23550 diff --git a/artists-to-study/ats/thumbnail/house/anime/anime_Shusei Nagaoko_0.7238965_0496.jpg b/artists-to-study/ats/thumbnail/house/anime/anime_Shusei Nagaoko_0.7238965_0496.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ce2d6507421d5180d1ec16ea6616a52e692d2744 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/anime/anime_Shusei Nagaoko_0.7238965_0496.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6d92231bdbd37691b5677769c3512168020f01bc7fcf4b6d2968550b28060f4e +size 14332 diff --git a/artists-to-study/ats/thumbnail/house/anime/anime_Studio Ghibli_0.73439026_0405.jpg b/artists-to-study/ats/thumbnail/house/anime/anime_Studio Ghibli_0.73439026_0405.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e5700d13c86c476ef0b2306b3eb53ef00f08a340 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/anime/anime_Studio Ghibli_0.73439026_0405.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2132e039d10ee63eff8ec530068a6d4c24ac95ceed88a10539af7921743fec41 +size 19706 diff --git a/artists-to-study/ats/thumbnail/house/anime/anime_Takeshi Obata_0.67643225_0988.jpg b/artists-to-study/ats/thumbnail/house/anime/anime_Takeshi Obata_0.67643225_0988.jpg new file mode 100644 index 0000000000000000000000000000000000000000..13eea708c341ab4287dc373ee72431c4f00eb2b7 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/anime/anime_Takeshi Obata_0.67643225_0988.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0802c04e5391dfa99c889d1fc1517c8641783246feda7b73c989a515a3741f98 +size 27104 diff --git a/artists-to-study/ats/thumbnail/house/anime/anime_Toei Animations_0.6629127_1166.jpg b/artists-to-study/ats/thumbnail/house/anime/anime_Toei Animations_0.6629127_1166.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1bc65f6d17a6a9fdb9f0a50a1b681bcc72c2626f --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/anime/anime_Toei Animations_0.6629127_1166.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:954160b23cc8f2b9709eea9640d5cfe4b633f3c69da3840563243905c2a9119c +size 19391 diff --git a/artists-to-study/ats/thumbnail/house/anime/anime_Tsutomu Nihei_0.7070495_0656.jpg b/artists-to-study/ats/thumbnail/house/anime/anime_Tsutomu Nihei_0.7070495_0656.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c75e88aa0b09dcaa6a23ac197902ee11f191acf5 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/anime/anime_Tsutomu Nihei_0.7070495_0656.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dbf5a68e302e3ea992a10ec89909be2d2e1058f8548316dc3b4c57d0f49f2f04 +size 21986 diff --git a/artists-to-study/ats/thumbnail/house/anime/anime_Yoji Shinkawa_0.5287015_2481.jpg b/artists-to-study/ats/thumbnail/house/anime/anime_Yoji Shinkawa_0.5287015_2481.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a5a69ad60d91c18669c32c69e275ce90e7452d3a --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/anime/anime_Yoji Shinkawa_0.5287015_2481.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d2a6c7e886d4cad6d13bedd98855bb1bf1e47590a0f0d7aad86a48e1287fc16 +size 19430 diff --git a/artists-to-study/ats/thumbnail/house/anime/anime_Yoshiyuki Tomino_0.6998095_0729.jpg b/artists-to-study/ats/thumbnail/house/anime/anime_Yoshiyuki Tomino_0.6998095_0729.jpg new file mode 100644 index 0000000000000000000000000000000000000000..244f20bbdcae5d8f4cf5a7ac719facfe899d91d8 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/anime/anime_Yoshiyuki Tomino_0.6998095_0729.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e54a476b8be892058dc9aa9721db896719bbae86aef76a898bead2535f804730 +size 16165 diff --git a/artists-to-study/ats/thumbnail/house/black-white/black-white_Albert Servaes_0.60250103_1788.jpg b/artists-to-study/ats/thumbnail/house/black-white/black-white_Albert Servaes_0.60250103_1788.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d6dfb3841a1c4590d022b81b8c5e19c44d951fa5 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/black-white/black-white_Albert Servaes_0.60250103_1788.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c263c95dadcde98d067b682d6e2f2f652f91be4a4ce6d9f2b0251a9a123fca7 +size 14574 diff --git a/artists-to-study/ats/thumbnail/house/black-white/black-white_Alfred Eisenstaedt_0.67213774_1052.jpg b/artists-to-study/ats/thumbnail/house/black-white/black-white_Alfred Eisenstaedt_0.67213774_1052.jpg new file mode 100644 index 0000000000000000000000000000000000000000..737cfa27bf501a6475cfdda955946cc785173838 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/black-white/black-white_Alfred Eisenstaedt_0.67213774_1052.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8c1152b1ff592db5a944fc61e43ce72ec37486711ef04a76e86ac1d1c2522598 +size 18751 diff --git a/artists-to-study/ats/thumbnail/house/black-white/black-white_Alvin Langdon Coburn_0.8035004_0138.jpg b/artists-to-study/ats/thumbnail/house/black-white/black-white_Alvin Langdon Coburn_0.8035004_0138.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3ec042a93fb750299595fbc8e2d163c372ea61d0 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/black-white/black-white_Alvin Langdon Coburn_0.8035004_0138.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6447fbdefaf96a05998957bcebf7e9fc92b94cdcf052dd4d6dabfaa39926595a +size 14548 diff --git a/artists-to-study/ats/thumbnail/house/black-white/black-white_Ando Fuchs_0.73406494_0409.jpg b/artists-to-study/ats/thumbnail/house/black-white/black-white_Ando Fuchs_0.73406494_0409.jpg new file mode 100644 index 0000000000000000000000000000000000000000..989c305ba35542fb1e45bbd212a4bfc50d3a1ebe --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/black-white/black-white_Ando Fuchs_0.73406494_0409.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:49faae9f0433dcd63aa94cc23c947f37dc38b7f6986bbc10f557509c27506a09 +size 10777 diff --git a/artists-to-study/ats/thumbnail/house/black-white/black-white_Andre Kertesz_0.7228358_0369.jpg b/artists-to-study/ats/thumbnail/house/black-white/black-white_Andre Kertesz_0.7228358_0369.jpg new file mode 100644 index 0000000000000000000000000000000000000000..70a82f601c14cb822d0afbb3c986b78a15119166 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/black-white/black-white_Andre Kertesz_0.7228358_0369.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d979a9147e889483d659862decf4a0389e4978beb509bc0c56dacf675176290 +size 13681 diff --git "a/artists-to-study/ats/thumbnail/house/black-white/black-white_Andr\303\251 Kert\303\251sz_0.7319392_0279.jpg" "b/artists-to-study/ats/thumbnail/house/black-white/black-white_Andr\303\251 Kert\303\251sz_0.7319392_0279.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..b0b98b6e3225677879d4e5386b64c3e48609eec3 --- /dev/null +++ "b/artists-to-study/ats/thumbnail/house/black-white/black-white_Andr\303\251 Kert\303\251sz_0.7319392_0279.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:10cf0b9184b549fc6fed297a1d46def9ade61227b35dafaa124c75c099c7f621 +size 14677 diff --git a/artists-to-study/ats/thumbnail/house/black-white/black-white_Anne Brigman_0.6865817_0799.jpg b/artists-to-study/ats/thumbnail/house/black-white/black-white_Anne Brigman_0.6865817_0799.jpg new file mode 100644 index 0000000000000000000000000000000000000000..78a003ffaf99ebf5372a393b8c05c66570342bb3 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/black-white/black-white_Anne Brigman_0.6865817_0799.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:710d75df66c74187d031260b7f40157a9e710eff411e484acc3b1cec1679c97f +size 9811 diff --git a/artists-to-study/ats/thumbnail/house/black-white/black-white_Antanas Sutkus_0.7369492_0386.jpg b/artists-to-study/ats/thumbnail/house/black-white/black-white_Antanas Sutkus_0.7369492_0386.jpg new file mode 100644 index 0000000000000000000000000000000000000000..975ecbccecf70ecb4a79f4ad42accc1befbcc586 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/black-white/black-white_Antanas Sutkus_0.7369492_0386.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:655bb4005889e0f57f416f57f568f2e19416e2ac4258efdb23335c21fb3bb5d1 +size 15182 diff --git a/artists-to-study/ats/thumbnail/house/black-white/black-white_August Sander_0.6644566_0346.jpg b/artists-to-study/ats/thumbnail/house/black-white/black-white_August Sander_0.6644566_0346.jpg new file mode 100644 index 0000000000000000000000000000000000000000..674a7a57baf8fd30eef729749060d4bc21340842 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/black-white/black-white_August Sander_0.6644566_0346.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:536ff44ad6ef7be9cdd077a4b1b89bcc522f3f1c546c6de832f65c0f3d80590e +size 15222 diff --git a/artists-to-study/ats/thumbnail/house/black-white/black-white_Bert Hardy_0.6972966_0753.jpg b/artists-to-study/ats/thumbnail/house/black-white/black-white_Bert Hardy_0.6972966_0753.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b7245a01862327e064da89f0211ef75e3a779525 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/black-white/black-white_Bert Hardy_0.6972966_0753.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:679c45dc8df8d056ba34f907188b97b00c4a84df08089e19e67357836df75b12 +size 14002 diff --git a/artists-to-study/ats/thumbnail/house/black-white/black-white_Bill Brandt_0.6833408_0315.jpg b/artists-to-study/ats/thumbnail/house/black-white/black-white_Bill Brandt_0.6833408_0315.jpg new file mode 100644 index 0000000000000000000000000000000000000000..035d7db152e9e7fc93f560c482f658f6da4aa9da --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/black-white/black-white_Bill Brandt_0.6833408_0315.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f434c30bf20874a054b44732faed90b0e717ce03f906e331e742b86f6d0fe092 +size 11399 diff --git a/artists-to-study/ats/thumbnail/house/black-white/black-white_Brett Weston_0.6891357_0304.jpg b/artists-to-study/ats/thumbnail/house/black-white/black-white_Brett Weston_0.6891357_0304.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1f236d35890e932dec2be40d8e3ea945a8493587 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/black-white/black-white_Brett Weston_0.6891357_0304.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:36aee340b4d61b55ab437cf5a4f889a40812d8c8eff3b8cb9e31c4944905ce5f +size 15038 diff --git a/artists-to-study/ats/thumbnail/house/black-white/black-white_Bruce Gilden_0.7256681_0215.jpg b/artists-to-study/ats/thumbnail/house/black-white/black-white_Bruce Gilden_0.7256681_0215.jpg new file mode 100644 index 0000000000000000000000000000000000000000..725728bd37321976da2a9cb8f79080ff2f01ef4b --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/black-white/black-white_Bruce Gilden_0.7256681_0215.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b1b6b54f8d98951b45e45ecb85baee8687d1cf1593249d91fc3758ff3d512ce0 +size 15996 diff --git a/artists-to-study/ats/thumbnail/house/black-white/black-white_Cecil Beaton_0.66362655_0714.jpg b/artists-to-study/ats/thumbnail/house/black-white/black-white_Cecil Beaton_0.66362655_0714.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6ec416346dfd56f562dcfdcc0804315516987493 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/black-white/black-white_Cecil Beaton_0.66362655_0714.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3075eb14d2cfa766967154f5a598e37d93f1b468645beffb7ca72c1d07a96227 +size 18088 diff --git a/artists-to-study/ats/thumbnail/house/black-white/black-white_Dorothea Lange_0.71361613_0588.jpg b/artists-to-study/ats/thumbnail/house/black-white/black-white_Dorothea Lange_0.71361613_0588.jpg new file mode 100644 index 0000000000000000000000000000000000000000..887ae947d738244116a05626792ff38b48910fe5 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/black-white/black-white_Dorothea Lange_0.71361613_0588.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:499450d79f60a797db393fa031b6c65ab1bbbe07cbfeaec605eb3bf318d51f36 +size 14833 diff --git a/artists-to-study/ats/thumbnail/house/black-white/black-white_Edward Steichen_0.69837445_0739.jpg b/artists-to-study/ats/thumbnail/house/black-white/black-white_Edward Steichen_0.69837445_0739.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d0a14ad556f742806722130b94b25cd27aaa0397 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/black-white/black-white_Edward Steichen_0.69837445_0739.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d8c8ebcafa85ca0aca75cfbfb27c67b72f73fb04ae1a93c7afd41992b4c9503 +size 15162 diff --git a/artists-to-study/ats/thumbnail/house/black-white/black-white_Edward Weston_0.7061382_0669.jpg b/artists-to-study/ats/thumbnail/house/black-white/black-white_Edward Weston_0.7061382_0669.jpg new file mode 100644 index 0000000000000000000000000000000000000000..15bd388e1e4be3a3547a5e9ddd4cb8b4e945a05f --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/black-white/black-white_Edward Weston_0.7061382_0669.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d85038fa56d32305000dcae64b28822209e6d9dddc2d2c8f486d51c4f68529fc +size 16939 diff --git a/artists-to-study/ats/thumbnail/house/black-white/black-white_Elliott Erwitt_0.69950557_0686.jpg b/artists-to-study/ats/thumbnail/house/black-white/black-white_Elliott Erwitt_0.69950557_0686.jpg new file mode 100644 index 0000000000000000000000000000000000000000..653b34394d178c61024c53cbdf9f4df7e38b5bca --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/black-white/black-white_Elliott Erwitt_0.69950557_0686.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f483f5145784dfb160cee8e0fe03ae3c3648f084df34f64d9754cb9b61b753db +size 12115 diff --git a/artists-to-study/ats/thumbnail/house/black-white/black-white_Garry Winogrand_0.83994275_0072.jpg b/artists-to-study/ats/thumbnail/house/black-white/black-white_Garry Winogrand_0.83994275_0072.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a041ebd2524a50794c1040554a2090c34d0d78e3 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/black-white/black-white_Garry Winogrand_0.83994275_0072.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e5f60c9498dc377b8fdef00c5f5076d7137ee25b89695dcebfb82b53e976947f +size 14549 diff --git a/artists-to-study/ats/thumbnail/house/black-white/black-white_Germaine Krull_0.6621777_0671.jpg b/artists-to-study/ats/thumbnail/house/black-white/black-white_Germaine Krull_0.6621777_0671.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7479eab033cacf4417da06d3eec968d45389aa2c --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/black-white/black-white_Germaine Krull_0.6621777_0671.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8c25ab5a781f9447a6065fc8b8f89000b74f7146ede495030f9a1dedec959dcc +size 10974 diff --git a/artists-to-study/ats/thumbnail/house/black-white/black-white_Henri Cartier-Bresson_0.7735415_0212.jpg b/artists-to-study/ats/thumbnail/house/black-white/black-white_Henri Cartier-Bresson_0.7735415_0212.jpg new file mode 100644 index 0000000000000000000000000000000000000000..02a5d460c219d8b74d8388a436bf351288bccd13 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/black-white/black-white_Henri Cartier-Bresson_0.7735415_0212.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:707f1cb8e85420cbfc2aaa745d37d053bdd65052a17ca99ce350cd3493477aa2 +size 14230 diff --git a/artists-to-study/ats/thumbnail/house/black-white/black-white_Herbert List_0.68455493_0316.jpg b/artists-to-study/ats/thumbnail/house/black-white/black-white_Herbert List_0.68455493_0316.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3abc1624f783e9e700276d499d02c2a082d43667 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/black-white/black-white_Herbert List_0.68455493_0316.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e4a64bb607980a26afa24162adb79bb2ccd58ba5dddba714d3a96ff8614d51fc +size 13003 diff --git "a/artists-to-study/ats/thumbnail/house/black-white/black-white_Herv\303\251 Guibert_0.55973417_0999.jpg" "b/artists-to-study/ats/thumbnail/house/black-white/black-white_Herv\303\251 Guibert_0.55973417_0999.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..e2ad8cd3a28e86dae2c46a62bda93b94caff044c --- /dev/null +++ "b/artists-to-study/ats/thumbnail/house/black-white/black-white_Herv\303\251 Guibert_0.55973417_0999.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d44ae5cdf0ec4cf71c7c40896790dec364960ba85140ed980c8087dc2828d22c +size 12688 diff --git a/artists-to-study/ats/thumbnail/house/black-white/black-white_Hugh Ferriss_0.72443527_0371.jpg b/artists-to-study/ats/thumbnail/house/black-white/black-white_Hugh Ferriss_0.72443527_0371.jpg new file mode 100644 index 0000000000000000000000000000000000000000..aabf52a685b3ba98ec2d4a78e7ee6119dd0d8066 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/black-white/black-white_Hugh Ferriss_0.72443527_0371.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e05b956963058422b61969ee5a4b2968c6d7796108110639d121185253fb8b9 +size 15523 diff --git a/artists-to-study/ats/thumbnail/house/black-white/black-white_Jeanloup Sieff_0.7196009_0340.jpg b/artists-to-study/ats/thumbnail/house/black-white/black-white_Jeanloup Sieff_0.7196009_0340.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5d7f9472ce79012888a5aabd46d9250e3207defc --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/black-white/black-white_Jeanloup Sieff_0.7196009_0340.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e1b6ffc6cff6f642db5be3b8bbd66b216c5d419f241a4f11e05ee8dcaf4481b1 +size 14687 diff --git a/artists-to-study/ats/thumbnail/house/black-white/black-white_John Stezaker_0.6726847_1042.jpg b/artists-to-study/ats/thumbnail/house/black-white/black-white_John Stezaker_0.6726847_1042.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c2e3f253c579084f5c0ad5967c7f823dd2e69c0b --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/black-white/black-white_John Stezaker_0.6726847_1042.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ac0382446729555ff834b7a1582836cbfda8965ce9c73058527592cd91ad80d +size 12381 diff --git a/artists-to-study/ats/thumbnail/house/black-white/black-white_Karl Blossfeldt_0.77652574_0195.jpg b/artists-to-study/ats/thumbnail/house/black-white/black-white_Karl Blossfeldt_0.77652574_0195.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3cbcd3ce5a15dc9cd79b65234cd8d45941a1b73a --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/black-white/black-white_Karl Blossfeldt_0.77652574_0195.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d399662cb2dc483bf7b0c9ee082ba113ad77d555d9b1130119818eee913f961 +size 12896 diff --git a/artists-to-study/ats/thumbnail/house/black-white/black-white_Kati Horna_0.71486115_0573.jpg b/artists-to-study/ats/thumbnail/house/black-white/black-white_Kati Horna_0.71486115_0573.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f47fadcbfa5e19845272d377a008086748a57384 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/black-white/black-white_Kati Horna_0.71486115_0573.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84b1528df822c1c289ae7c51f8f2de549bb84b96bda73f0c8ff3cc88ae2e8eb3 +size 14397 diff --git a/artists-to-study/ats/thumbnail/house/black-white/black-white_Max Dupain_0.6661642_0263.jpg b/artists-to-study/ats/thumbnail/house/black-white/black-white_Max Dupain_0.6661642_0263.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5b011c36f525d1a1632ce45b6493ae26d7a1841e --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/black-white/black-white_Max Dupain_0.6661642_0263.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:835f55360776b1bf71c40a1a58e559068451f9be2ebd2b380aa02ca9d6f826f1 +size 13017 diff --git a/artists-to-study/ats/thumbnail/house/black-white/black-white_Nathan Wirth_0.6436741_0318.jpg b/artists-to-study/ats/thumbnail/house/black-white/black-white_Nathan Wirth_0.6436741_0318.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7d2f490bb629ed34670f47128c5ff3106fefaa64 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/black-white/black-white_Nathan Wirth_0.6436741_0318.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1afdd1dea446180e7c8ba2579656c0e620039e194ca6abcd4ed9c02eadca6047 +size 11761 diff --git a/artists-to-study/ats/thumbnail/house/black-white/black-white_Paul Strand_0.7080332_0374.jpg b/artists-to-study/ats/thumbnail/house/black-white/black-white_Paul Strand_0.7080332_0374.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0b338ed9f477b078bf92cdfeba3de1ac7c02924f --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/black-white/black-white_Paul Strand_0.7080332_0374.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a477b4025220107be03fa93c74dcc4d024a1ee5479c4afe402e501bf26c9996b +size 12399 diff --git a/artists-to-study/ats/thumbnail/house/black-white/black-white_Roger Ballen_0.64683115_0273.jpg b/artists-to-study/ats/thumbnail/house/black-white/black-white_Roger Ballen_0.64683115_0273.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ea8079357a3b4fd06232e2a49cc65a41dd9f20ad --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/black-white/black-white_Roger Ballen_0.64683115_0273.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:55f8681ae20488245f912e429faedadfe62c6d63fe9eedc1d600f6630be36f3c +size 11242 diff --git a/artists-to-study/ats/thumbnail/house/black-white/black-white_Ruth Bernhard_0.72990334_0437.jpg b/artists-to-study/ats/thumbnail/house/black-white/black-white_Ruth Bernhard_0.72990334_0437.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3c481f34dfe727baf33dd3db0e75d6129fb78566 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/black-white/black-white_Ruth Bernhard_0.72990334_0437.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd3455a5b591cf2b036fefbf274056949d1cb25aa32edffa864706e143806e9d +size 13925 diff --git a/artists-to-study/ats/thumbnail/house/black-white/black-white_Sally Mann_0.6534312_0582.jpg b/artists-to-study/ats/thumbnail/house/black-white/black-white_Sally Mann_0.6534312_0582.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0d31aeb2d8022e95601d5d5b2f973bdd886e4f5b --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/black-white/black-white_Sally Mann_0.6534312_0582.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:78c42e020037a2256ef5367e5671b6dc1b152b3b63f01e7da424e0ae6b6d8e8f +size 16873 diff --git a/artists-to-study/ats/thumbnail/house/c/c_Alain Laboile_0.67634284_0241.jpg b/artists-to-study/ats/thumbnail/house/c/c_Alain Laboile_0.67634284_0241.jpg new file mode 100644 index 0000000000000000000000000000000000000000..cc55b28eb8c0d3efd91743f09282c890a6949f14 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/c/c_Alain Laboile_0.67634284_0241.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7120d20cc3ea96ec3e4822836c9c33f002d6574c290ce9910e4ffcfabcf7fff1 +size 17002 diff --git a/artists-to-study/ats/thumbnail/house/c/c_Bapu_0.6122084_1689.jpg b/artists-to-study/ats/thumbnail/house/c/c_Bapu_0.6122084_1689.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ed57b9a33f13e6667c6a2446bc339372738fa4d1 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/c/c_Bapu_0.6122084_1689.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3294e65ab71eff750112e86db3c11296bb5529a0830966f47dcf5c3dfa178f49 +size 16395 diff --git a/artists-to-study/ats/thumbnail/house/c/c_Cassius Marcellus Coolidge_0.5805516_2025.jpg b/artists-to-study/ats/thumbnail/house/c/c_Cassius Marcellus Coolidge_0.5805516_2025.jpg new file mode 100644 index 0000000000000000000000000000000000000000..465a8a1080dfa4a07efd16f9367ae1ae419b3c82 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/c/c_Cassius Marcellus Coolidge_0.5805516_2025.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c9b640a0010e0e93fc2c5f78602c1cd6eecb14a6fa4b3568f5c32111697e1ff +size 14514 diff --git a/artists-to-study/ats/thumbnail/house/c/c_Dr. Seuss_0.5597466_2217.jpg b/artists-to-study/ats/thumbnail/house/c/c_Dr. Seuss_0.5597466_2217.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6e95bb3d8f72c8e213a9890b15c1e00773c647d2 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/c/c_Dr. Seuss_0.5597466_2217.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bff8491c20a8c8b6dcce340c5ad6fb400713b87789f448cd63c8d7ebf1ea5160 +size 20733 diff --git a/artists-to-study/ats/thumbnail/house/c/c_Henning Jakob Henrik Lund_0.5147134_2576.jpg b/artists-to-study/ats/thumbnail/house/c/c_Henning Jakob Henrik Lund_0.5147134_2576.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3008598cfc0676d2b0b691c205bfb14a3735345e --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/c/c_Henning Jakob Henrik Lund_0.5147134_2576.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7d42986c8ed66697a79b16475843229010fe3092dd8f13e018df9ef776ccc01d +size 15940 diff --git a/artists-to-study/ats/thumbnail/house/c/c_Julie Blackmon_0.72862685_0447.jpg b/artists-to-study/ats/thumbnail/house/c/c_Julie Blackmon_0.72862685_0447.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6e8944be7e80dbfd1c41d0297c91e350bdea93f8 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/c/c_Julie Blackmon_0.72862685_0447.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:764adb0ed65ddfb55c259a644246d94c1e1f77e74c5c6813e62f162bcbbd3cf4 +size 18224 diff --git a/artists-to-study/ats/thumbnail/house/c/c_Robert Irwin_0.58078_2018.jpg b/artists-to-study/ats/thumbnail/house/c/c_Robert Irwin_0.58078_2018.jpg new file mode 100644 index 0000000000000000000000000000000000000000..cb667497a30ea16d08fce31d670f36393e2e5777 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/c/c_Robert Irwin_0.58078_2018.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f633b1415973b690ba2acdefd03dd9abf48ba343562a11d88bbd77216fb705b7 +size 12896 diff --git a/artists-to-study/ats/thumbnail/house/c/c_William-Adolphe Bouguereau_0.618265_1638.jpg b/artists-to-study/ats/thumbnail/house/c/c_William-Adolphe Bouguereau_0.618265_1638.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0b143521a173f88c92135ea386550d60cd6bffb9 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/c/c_William-Adolphe Bouguereau_0.618265_1638.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b684b2a43beec348dd58f1ea85be0707e3c5eecee13f51ea5cc5a8b2de6a1aa +size 12875 diff --git a/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Abigail Larson_0.7319012_0420.jpg b/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Abigail Larson_0.7319012_0420.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ce4f015392d5f569a49dc3056043e9003f66434f --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Abigail Larson_0.7319012_0420.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc65027c2ed75128f0bc43f6e6af700c9b0c50b7145b863e8070b2048b5727f1 +size 14573 diff --git a/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Al Williamson_0.742113_0354.jpg b/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Al Williamson_0.742113_0354.jpg new file mode 100644 index 0000000000000000000000000000000000000000..dbf3cb00bedeb6e9fa80cd77149c142990098d1d --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Al Williamson_0.742113_0354.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2273e163950e84b29dcecee7b6c673784f0c68c0c59849c4a46db608f235b435 +size 23052 diff --git a/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Albert Robida_0.7485741_0321.jpg b/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Albert Robida_0.7485741_0321.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7757aed9cff1787a5ee04055523ecf7115f756e7 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Albert Robida_0.7485741_0321.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:086e4be5258949bb66a4bf4e613916488b6242a2904e6f8baec08a1de93f5de0 +size 18324 diff --git a/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Alberto Vargas_0.7747376_0204.jpg b/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Alberto Vargas_0.7747376_0204.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ae7a746e1cc01e3949435da93efa65ba0fecee8a --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Alberto Vargas_0.7747376_0204.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:566292d53904dc9b64eefa26f50e131340125e3302fb61cc32eacedc0a42dd5b +size 14490 diff --git a/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Alena Aenami_0.77210015_0218.jpg b/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Alena Aenami_0.77210015_0218.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b2737a7b7d9a61e7dd8eee620a08f441f73187ae --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Alena Aenami_0.77210015_0218.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:293347209757418c917d912bba200d621d40f733cecbbd5605c6cc84a7100c7f +size 12595 diff --git a/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Alex Hirsch_0.6157384_1654.jpg b/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Alex Hirsch_0.6157384_1654.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8dbc764a9009a5a896da5568ae1a90a808a5c91e --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Alex Hirsch_0.6157384_1654.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b0a7816ffbbd1d5851a71b2ffb5e4613a56d5f5e2cf5171684eef124d13d5d81 +size 19667 diff --git a/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Alice Pasquini_0.78949904_0165.jpg b/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Alice Pasquini_0.78949904_0165.jpg new file mode 100644 index 0000000000000000000000000000000000000000..978f16818dc6af032823e8bdfe06eb260bf91551 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Alice Pasquini_0.78949904_0165.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:324c1ac8ef9979142619340bfdbcda6125af66c332755051a1a00812e9b79ef6 +size 23325 diff --git a/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Andy Kehoe_0.82063186_0095.jpg b/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Andy Kehoe_0.82063186_0095.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b46b08a5ec196c16bcfb8ad0e0a6fb72fbd0a3c7 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Andy Kehoe_0.82063186_0095.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7cef9475a825242afc6891d1bb6393f924397d8b9e543dae43548248d34bd6c1 +size 11034 diff --git a/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Anna Dittmann_0.62327325_1585.jpg b/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Anna Dittmann_0.62327325_1585.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c9802a913d86dd9e9e5711ce7906e6b7a93c5968 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Anna Dittmann_0.62327325_1585.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df0333fcdeae20f43de4abb60e3ced1f1a333f3fa1139e7bf0bd7325acc1d4d9 +size 15171 diff --git a/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Anton Fadeev_0.73433846_0407.jpg b/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Anton Fadeev_0.73433846_0407.jpg new file mode 100644 index 0000000000000000000000000000000000000000..029aa09f474ec81147090b130eed89cac09e7ac9 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Anton Fadeev_0.73433846_0407.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:daed13e0440053afde645b8d08e944cc7fb14ecc6e432ed226bac95370be866a +size 12191 diff --git a/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Barry Windsor Smith_0.6765375_0987.jpg b/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Barry Windsor Smith_0.6765375_0987.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f748b554d97f18867392831e9fd71acd343a6359 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Barry Windsor Smith_0.6765375_0987.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:08d2ca88f0359c7a7ae4a71f15aff2e7d0709ed6289a120722c7f06374aacf7c +size 25526 diff --git a/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Bart Sears_0.5838427_1981.jpg b/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Bart Sears_0.5838427_1981.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9517a8dd8cbb65e0a431dc03c693cbc52dbbbae8 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Bart Sears_0.5838427_1981.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c8c02ece520fabf5745459cf8e0e76867a8377f7a83a0505d17a3ce2669ba688 +size 24008 diff --git a/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Becky Cloonan_0.67192084_1058.jpg b/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Becky Cloonan_0.67192084_1058.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4f4c0ca47de12d18c29546a1ba9b8f51907552ee --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Becky Cloonan_0.67192084_1058.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c3fa348b60be71ee0dc1fae6da150a5f57c17af9d838f487fc0cbde10b4a130b +size 23559 diff --git a/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Bernard Buffet_0.7103491_0625.jpg b/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Bernard Buffet_0.7103491_0625.jpg new file mode 100644 index 0000000000000000000000000000000000000000..89097d61881f47bdd46c2275ff430bdc1374754e --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Bernard Buffet_0.7103491_0625.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ebc9cf509e2e8fd9fef47fe2ff84c472b21c2e4e80985ba0ec600e4696002a88 +size 21210 diff --git a/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Brian K. Vaughan_0.64147836_1397.jpg b/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Brian K. Vaughan_0.64147836_1397.jpg new file mode 100644 index 0000000000000000000000000000000000000000..35de64963d56e92b3f6c0edf37791271f46c61ca --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Brian K. Vaughan_0.64147836_1397.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:379a87d159c90f68f214d850b88f94cd3c248523f8f82ebd7137c178c49279be +size 19065 diff --git a/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Bryan Hitch_0.6518333_1290.jpg b/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Bryan Hitch_0.6518333_1290.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4119ee1dc0493003cc655bcaefd08a40baa45d4b --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Bryan Hitch_0.6518333_1290.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e87f180b88cc9f383d8660dbaf75d164ccf426581fa7fa836dac4853c0fe8c71 +size 26987 diff --git a/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Butcher Billy_0.7593378_0268.jpg b/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Butcher Billy_0.7593378_0268.jpg new file mode 100644 index 0000000000000000000000000000000000000000..45dd8df0ad6898c0c0ecca9946755639bb6b29dc --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Butcher Billy_0.7593378_0268.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:29d84e4a4b1bee93ebd5c5466120e27072c9c8cd906166aeebc9e8ebdf92754d +size 21641 diff --git a/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Carl Barks_0.6923666_0807.jpg b/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Carl Barks_0.6923666_0807.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0d37fef25f73d084931f29f4863ef7db934cd166 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Carl Barks_0.6923666_0807.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bb6b522dabe86c7365acfab38d3d5fd940e3e73df0911caf87d9de167de30620 +size 17446 diff --git a/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Carl Larsson_0.7296195_0440.jpg b/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Carl Larsson_0.7296195_0440.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ef97a588d73b1a25af2687e3dfe60d1475cba437 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Carl Larsson_0.7296195_0440.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:979b8a854651c439dbd21650c2ad904689b9023de4537a1fffeae810814ffca3 +size 16768 diff --git a/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Casey Weldon_0.6047672_1760.jpg b/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Casey Weldon_0.6047672_1760.jpg new file mode 100644 index 0000000000000000000000000000000000000000..af90151306b6ee6ebadf178b63e0227387367e77 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Casey Weldon_0.6047672_1760.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c1ab2c0946322717d8ccb0f34960bda2097aa7edc44536addc73338edd3e2df +size 20055 diff --git a/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Charles Vess_0.6512271_1297.jpg b/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Charles Vess_0.6512271_1297.jpg new file mode 100644 index 0000000000000000000000000000000000000000..11563ff4bc136f5adda4eea48b6615964a6881b7 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Charles Vess_0.6512271_1297.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb4d1518096b06e07fcb4c57f09cc9f4653ffcec647e83dacaa6c1267782f9a4 +size 18258 diff --git a/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Chip Zdarsky_0.6381826_1432.jpg b/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Chip Zdarsky_0.6381826_1432.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9bbe36f16032ba9985aa4678d537dc5bdee73e6b --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Chip Zdarsky_0.6381826_1432.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3951b1750cabf53b4dd8a05abb7c86ccac8bc4866f219fbc10bb206eaf866f2b +size 24315 diff --git a/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Conrad Roset_0.8190752_0099.jpg b/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Conrad Roset_0.8190752_0099.jpg new file mode 100644 index 0000000000000000000000000000000000000000..abca1f64a25fe4a4130d9ddc7f183f9f2fcbc73d --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Conrad Roset_0.8190752_0099.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e8126954374762f5179dfc647d229452808054c447def946ce6f2e97d9baa77 +size 14801 diff --git a/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Cory Loftis_0.6168619_1648.jpg b/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Cory Loftis_0.6168619_1648.jpg new file mode 100644 index 0000000000000000000000000000000000000000..17d78d63ad021131e44b6a6b2103c188c13cb5c6 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Cory Loftis_0.6168619_1648.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:555f6e27d0b998fbaaffd339d9ed21756ec1b9bc39746a1be01bf87fd796fea6 +size 14546 diff --git a/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Cyril Rolando_0.68644965_0878.jpg b/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Cyril Rolando_0.68644965_0878.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e173a82d2f17dc416538f8b26980a20e61e3f4c9 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Cyril Rolando_0.68644965_0878.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e86555e21e3a674b254e7ebee752d573fae71fc082ce0c7f57022609f1ffc4f9 +size 14788 diff --git a/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Dan Mumford_0.5843051_1973.jpg b/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Dan Mumford_0.5843051_1973.jpg new file mode 100644 index 0000000000000000000000000000000000000000..22fbd058ee949b7706d8c636d039ae7e9c311af9 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Dan Mumford_0.5843051_1973.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc34cbbe03eb9741c973be0ce99e5ef70d46b4a4c7f51da089c3c589c57482fc +size 18627 diff --git a/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Dave McKean_0.6438012_1380.jpg b/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Dave McKean_0.6438012_1380.jpg new file mode 100644 index 0000000000000000000000000000000000000000..200ba21aa2fef8d35ac345efd895bf936f14ac49 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Dave McKean_0.6438012_1380.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a4690239ed75b6c8f5c90d80dd6fc049ecd3f863491901539f415e6ede36f674 +size 15637 diff --git a/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Debbie Criswell_0.7895031_0164.jpg b/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Debbie Criswell_0.7895031_0164.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7f50d1d36b96b21222896a04072321875324b026 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Debbie Criswell_0.7895031_0164.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:83216c6b399d14fe6710ae0568c7016ad6890a863ef939a6699439e07d66c205 +size 16445 diff --git a/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Dmitry Kustanovich_0.7241322_0494.jpg b/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Dmitry Kustanovich_0.7241322_0494.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0c65e2163c861dabba6167cd3fb17464b0724e80 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Dmitry Kustanovich_0.7241322_0494.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6da37bc7fc80a6213a9ce58502220615d4344e8d3fd5bcbde7d9da0d8fe4f616 +size 20645 diff --git a/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Don Bluth_0.6693046_1082.jpg b/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Don Bluth_0.6693046_1082.jpg new file mode 100644 index 0000000000000000000000000000000000000000..012d1f267fec50cf1cd3489c7240bc47dd382f15 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Don Bluth_0.6693046_1082.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67e3a2968c13fa40101c05636fbbbe425f45b70e326461a9a830fe136098d698 +size 18056 diff --git a/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Dustin Nguyen_0.64909416_1326.jpg b/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Dustin Nguyen_0.64909416_1326.jpg new file mode 100644 index 0000000000000000000000000000000000000000..174d2c9980ac19ea2eb5afa6f9beb867b40f689f --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Dustin Nguyen_0.64909416_1326.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a8868d23992e6ed121ed56e8e94ffcfbe5701e1ecff1e943c842abf99d63b9e7 +size 19306 diff --git a/artists-to-study/ats/thumbnail/house/cartoon/cartoon_E. H. Shepard_0.7091189_0638.jpg b/artists-to-study/ats/thumbnail/house/cartoon/cartoon_E. H. Shepard_0.7091189_0638.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b944099c13f2f4a2d05f96c10ade42d8740433f8 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/cartoon/cartoon_E. H. Shepard_0.7091189_0638.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13f325aa993f9678bf7379ba2966814e56696b9c7e8840991c4e67e6a05ae18b +size 20203 diff --git a/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Ed Mell_0.6637067_0479.jpg b/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Ed Mell_0.6637067_0479.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d5f3b8e1f54cea2b36a880ad192eb12515ccdcdd --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Ed Mell_0.6637067_0479.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:89d46d18cac98122aa95307f2e71204de7dbcb40830b23a061b111d8f08aa997 +size 10795 diff --git a/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Ernie Barnes_0.6307126_1508.jpg b/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Ernie Barnes_0.6307126_1508.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e9f5dea23d76c86d4848f02918c671e67167732a --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Ernie Barnes_0.6307126_1508.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a2a5741b08960991d071312e4654c49e5faace74c5680ae66a8d62519ea7b66a +size 18847 diff --git a/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Ethan Van Sciver_0.65442884_1264.jpg b/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Ethan Van Sciver_0.65442884_1264.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ec93019d0ab239ae229180925e1c8911d7c3f235 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Ethan Van Sciver_0.65442884_1264.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:578b0df0b81f36e2f5cee5e517916a96d7437e26378648d08c04d31eed38275f +size 24790 diff --git a/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Gabriel Ba_0.6773366_0977.jpg b/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Gabriel Ba_0.6773366_0977.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9c5fae3850b1c90545098ccde06c647f9be509f0 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Gabriel Ba_0.6773366_0977.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aaecedee5015fc836f6dc6a19f4029beedf7588541e0d7e4219210e6fc41d9e3 +size 27064 diff --git a/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Glen Keane_0.60287905_1785.jpg b/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Glen Keane_0.60287905_1785.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1c0f94686523f1512077f7f8371cf0dd8093804d --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Glen Keane_0.60287905_1785.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e383b41f1f891abd1bfe2dd6a7c8dc4ae293c3ebf41875860e1d6119da90906 +size 16554 diff --git a/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Goro Fujita_0.6346491_1472.jpg b/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Goro Fujita_0.6346491_1472.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fb1f78548b6072367f1148ecdefc7678df4366c7 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Goro Fujita_0.6346491_1472.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:286f7c5c4c3f94e7fc24739c91b308739217aa4f6cdaff281ec9030b91082be2 +size 10915 diff --git a/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Guido Crepax_0.7835321_0180.jpg b/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Guido Crepax_0.7835321_0180.jpg new file mode 100644 index 0000000000000000000000000000000000000000..80b09d1a97d76ffc5e662d1495c2fa2679cf4d3d --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Guido Crepax_0.7835321_0180.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f7385ac05f9072e0a4c2c41262a9d803ca9204bf647ac23ea0598b81dbd5529 +size 24789 diff --git a/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Gustaf Tenggren_0.7006041_0715.jpg b/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Gustaf Tenggren_0.7006041_0715.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0afeea8e8a5d9078b60eb1d78fa96c659ecdd0fa --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Gustaf Tenggren_0.7006041_0715.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f4668cfb1444703098e55c04a60fa62c8d82902fb7b866b0ffb37ac0ab301717 +size 13849 diff --git a/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Hanna-Barbera_0.6588123_1206.jpg b/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Hanna-Barbera_0.6588123_1206.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3cbdb06a85d9baecf3e38a2a05c702da11c82730 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Hanna-Barbera_0.6588123_1206.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:670ae3ebc238feb828d454a64394ca92f2808ac3bbe2a66b2d7cb90e4ea1bc7f +size 18916 diff --git a/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Harry Clarke_0.7688428_0234.jpg b/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Harry Clarke_0.7688428_0234.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0b414e1dc62e573296df89e1c9875d0b12ec9c72 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Harry Clarke_0.7688428_0234.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28823a629fb83f5e83d23af444992ae7742971db8b93c30b398a624be9831967 +size 25257 diff --git a/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Harvey Kurtzman_0.64772683_1341.jpg b/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Harvey Kurtzman_0.64772683_1341.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5b9a09695bbfaefd374487602670a098bfcf9631 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Harvey Kurtzman_0.64772683_1341.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c5dbf50f6d2904212f3dff56b2a78142f06117d6168b583f9cb23880c5071574 +size 24436 diff --git a/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Henri De Toulouse Lautrec_0.7294263_0442.jpg b/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Henri De Toulouse Lautrec_0.7294263_0442.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4203c38ccb8bd642e2dc0e99dca56dca45797cce --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Henri De Toulouse Lautrec_0.7294263_0442.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e3b6b3d44e3b1fd28e1ac89edfe3464079848fad73506f4fe24b87d378463501 +size 13677 diff --git a/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Hiroshi Nagai_0.847129_0063.jpg b/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Hiroshi Nagai_0.847129_0063.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7775e7039f624ff7677ca4e0efee9a8e4a0423ef --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Hiroshi Nagai_0.847129_0063.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b583559e5d580821f951764fcea9efaa62f0a46f1a12accc1380978a841baf59 +size 15284 diff --git a/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Howard Chaykin_0.7213998_0516.jpg b/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Howard Chaykin_0.7213998_0516.jpg new file mode 100644 index 0000000000000000000000000000000000000000..793c07a4fc242b7deb9ca686bba364d47e44c438 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Howard Chaykin_0.7213998_0516.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b531186fad18ea963028168ea6066c2b005fb7373b4e5e6bc5207b4b7389a5a4 +size 24879 diff --git a/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Jack Kirby_0.6467424_1355.jpg b/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Jack Kirby_0.6467424_1355.jpg new file mode 100644 index 0000000000000000000000000000000000000000..05bd6b480847a5d83e9342381b63299540465008 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Jack Kirby_0.6467424_1355.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:857bcb9ed21c04bc8ed93e305752984714e77daa7aee664906f699a520a133dd +size 24941 diff --git a/artists-to-study/ats/thumbnail/house/cartoon/cartoon_James Gilleard_0.6849431_0893.jpg b/artists-to-study/ats/thumbnail/house/cartoon/cartoon_James Gilleard_0.6849431_0893.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4b368debf5d075bb3612f2c0235ca3fb587146ab --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/cartoon/cartoon_James Gilleard_0.6849431_0893.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2cbb1620c01b3deb8b95c249c5a1295d231b567edc7776fc114b15e4e251e47c +size 10989 diff --git a/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Jeffrey Catherine Jones_0.7012148_0704.jpg b/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Jeffrey Catherine Jones_0.7012148_0704.jpg new file mode 100644 index 0000000000000000000000000000000000000000..627bbea3f738f08c9f09e42fea58a4415bd4c385 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Jeffrey Catherine Jones_0.7012148_0704.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b9af96cf7cb1c9b3be46058fdfb85dfaa4a8f08f2ba27e18d63cb59c8921d615 +size 11229 diff --git a/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Jeremiah Ketner_0.8075384_0128.jpg b/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Jeremiah Ketner_0.8075384_0128.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1f1e121919d56342af1db89823514f36b7763ed9 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Jeremiah Ketner_0.8075384_0128.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:054b9393ac63324940b550217166eb7a4d13938083dad40f15c92f82d09d2aa0 +size 20564 diff --git a/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Jim Mahfood_0.6936606_0791.jpg b/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Jim Mahfood_0.6936606_0791.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e390b8678afb3ce6c55ddb868ed9b65caab2347c --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Jim Mahfood_0.6936606_0791.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c1e2d3b83fdd5d1299f3b2fba680bcb3f44fa53eb085a2fa2694ddb60fba3d8f +size 25509 diff --git a/artists-to-study/ats/thumbnail/house/cartoon/cartoon_John Philip Falter_0.623418_1583.jpg b/artists-to-study/ats/thumbnail/house/cartoon/cartoon_John Philip Falter_0.623418_1583.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4d57d27deb97e8f6e118d8ee356114702df52c8c --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/cartoon/cartoon_John Philip Falter_0.623418_1583.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:45c440cda6e02fb2275fa679d5817b417b63faa57804cbb8515dba8c5dd1c799 +size 14306 diff --git a/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Josan Gonzalez_0.6193469_1300.jpg b/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Josan Gonzalez_0.6193469_1300.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a55d5529201818c816c561934776e2f3ea75469c --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Josan Gonzalez_0.6193469_1300.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f0124916efea7963428735296d3af7346f6ec973fc92eab3f6f5ad3b7b3669ad +size 21467 diff --git a/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Karel Thole_0.7305395_0433.jpg b/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Karel Thole_0.7305395_0433.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c0eb00844df5af314bff9f2e1f92cb5f90d3af17 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Karel Thole_0.7305395_0433.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b117ef082e8d0116036dfddeb1473c1e0343809015594408d9bbe7d3261f7b90 +size 13422 diff --git a/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Kaws_0.6470336_1352.jpg b/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Kaws_0.6470336_1352.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7c9e9501f3623a294bf9f8ff913840c7a1912012 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Kaws_0.6470336_1352.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7eaca84d12b7b2f11509d2d8ffa3b4ed7d04491ec3673d0bfc14770ba4d33aab +size 23391 diff --git a/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Kim Jung Gi_0.6472225_1349.jpg b/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Kim Jung Gi_0.6472225_1349.jpg new file mode 100644 index 0000000000000000000000000000000000000000..14fa019e95626281bde7d2cb15f10f8f63532987 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Kim Jung Gi_0.6472225_1349.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a6d38f9716db5a6b6e2764c3885688ab1262b7136f2ce725a48a00b6de0f5974 +size 20575 diff --git a/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Klaus Janson_0.64129144_1399.jpg b/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Klaus Janson_0.64129144_1399.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f3aae53b8519fd054bc0b97b2ee69b48e04e3a6e --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Klaus Janson_0.64129144_1399.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6237bbb9216129f68a0e294f6fa814ae0bd322cea7e18cd64190dea781d16bcc +size 24674 diff --git a/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Laurie Greasley_0.70072114_0712.jpg b/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Laurie Greasley_0.70072114_0712.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5785b6e24b59df4ecac36b3211de783f2dbd09e7 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Laurie Greasley_0.70072114_0712.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c098857dbfef2a35759a1f90210172c03c04ad7b7c088fe6cb4038320cd4287 +size 25123 diff --git a/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Lisa Frank_0.7892591_0167.jpg b/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Lisa Frank_0.7892591_0167.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a1ed51e11c6160d0d4313f3e0533e19a33a9a31d --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Lisa Frank_0.7892591_0167.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9947ba6fe08c5be077282d749c91136c989bdeae2d6cbb488139243c05fff5dc +size 23699 diff --git a/artists-to-study/ats/thumbnail/house/cartoon/cartoon_M.W. Kaluta_0.71612585_0560.jpg b/artists-to-study/ats/thumbnail/house/cartoon/cartoon_M.W. Kaluta_0.71612585_0560.jpg new file mode 100644 index 0000000000000000000000000000000000000000..591c769d52ddf83d1e146a50ee2519f7094fcd83 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/cartoon/cartoon_M.W. Kaluta_0.71612585_0560.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7605816ebfdeab1df05c1c5cb06ba51253534f2dc5ec5f971701f13e995ab49c +size 21029 diff --git a/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Marc Davis_0.61837333_1634.jpg b/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Marc Davis_0.61837333_1634.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8a0405b10704ea64c1d232047cf4c83047748aec --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Marc Davis_0.61837333_1634.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc157a5bff6643d5f567b8ae228923b19bbc6173608132e2f3b175a48df89b14 +size 18384 diff --git a/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Matt Fraction_0.58463776_1969.jpg b/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Matt Fraction_0.58463776_1969.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9f61c03bbe942c2e0a05ea344efe7049c1bbcd55 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Matt Fraction_0.58463776_1969.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16b506ec9db8f128f70a8506a223cea0c4d3616806e520806afc6907b822e534 +size 21337 diff --git a/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Maurice Sendak_0.7690118_0233.jpg b/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Maurice Sendak_0.7690118_0233.jpg new file mode 100644 index 0000000000000000000000000000000000000000..392938168bc3bcf639c3851fe8ecfd522b0fe691 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Maurice Sendak_0.7690118_0233.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44dc5466b2887b765e38250edd5c87f4d3be32330bb5a2c4b305dc5cef7c11fc +size 18233 diff --git a/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Mike Deodato_0.6061201_1751.jpg b/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Mike Deodato_0.6061201_1751.jpg new file mode 100644 index 0000000000000000000000000000000000000000..25ca1dd1ed09526b2fee15845a8218443b29e4ad --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Mike Deodato_0.6061201_1751.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:96de8df3bf5cd1d994c448cecd92614812a528c70741f0702bcb23a403fb8a50 +size 26375 diff --git a/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Mike Mayhew_0.5765857_2061.jpg b/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Mike Mayhew_0.5765857_2061.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a7b8fde15d58f608625809a93cb21f068302141c --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Mike Mayhew_0.5765857_2061.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:766acd9728ae18c3e9f0d50c1ef22a8c0a81d51a6d20c8e9095199bab391e486 +size 18667 diff --git a/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Mike Mignola_0.642346_1395.jpg b/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Mike Mignola_0.642346_1395.jpg new file mode 100644 index 0000000000000000000000000000000000000000..71457048b50cec5985339c2b4ed49c575cc5f4a4 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Mike Mignola_0.642346_1395.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a1c311b0c8ca56b9e7718ab90471706603efebd945f452789d0a5c8e63ed71f +size 22612 diff --git a/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Milo Manara_0.6471776_1350.jpg b/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Milo Manara_0.6471776_1350.jpg new file mode 100644 index 0000000000000000000000000000000000000000..be7865642b45ef559e17ed02114638e9a7d0734d --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Milo Manara_0.6471776_1350.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:844d34546ef408d0f58bf7d5eb5c86e475e78339947ba3236ce418a5a2b19d70 +size 19692 diff --git a/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Milton Caniff_0.7905358_0162.jpg b/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Milton Caniff_0.7905358_0162.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7a51b12339e65a02dfec2fdf28bc0c371d0e8deb --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Milton Caniff_0.7905358_0162.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:056f52abc9962ee541db3722b7d2f347054518699a633dfc05367e0871bcf4ba +size 25081 diff --git a/artists-to-study/ats/thumbnail/house/cartoon/cartoon_NHK Animation_0.6907677_0825.jpg b/artists-to-study/ats/thumbnail/house/cartoon/cartoon_NHK Animation_0.6907677_0825.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9b111d96e07dd8103b87755dbd9f2a7517352696 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/cartoon/cartoon_NHK Animation_0.6907677_0825.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1be2cd79beed01dcf7d0777fc57e40642015aa18e337bb14f1e229455e7eab96 +size 15558 diff --git a/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Osamu Tezuka_0.8005524_0141.jpg b/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Osamu Tezuka_0.8005524_0141.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c1785b4bc1a72f47836973b1900f16b150c1a2dc --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Osamu Tezuka_0.8005524_0141.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c0fbff13cbf8e8221094d3dd3378dc41bebec6a790e6bf3fea711a2928528f3 +size 21547 diff --git a/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Paul Lehr_0.70854837_0259.jpg b/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Paul Lehr_0.70854837_0259.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8aafe15f45c32dbd7c0f193a84c547b30cdcf32e --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Paul Lehr_0.70854837_0259.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c0fb831d81f54ae09eeec81b7251c83147bda966e7589c60ce975b9cbf80728 +size 10807 diff --git a/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Peter De Seve_0.6616659_1174.jpg b/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Peter De Seve_0.6616659_1174.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7b587cfaa84a80c23a89bfbd7dd28ecdca26ca0d --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Peter De Seve_0.6616659_1174.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f2bab5689df67c012f1ee301ecc9956697723bf3b5dbb6c9c4ca20d4b0506756 +size 15495 diff --git a/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Peter Wileman_0.71271706_0598.jpg b/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Peter Wileman_0.71271706_0598.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7c329d7404548561af2ab23e36b3506ff5971b22 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Peter Wileman_0.71271706_0598.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c8a376119d4cb57d5bf71bd16f318b652b6a788e04c0c965ae2e3cc33404a41b +size 14636 diff --git a/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Phil Jimenez_0.60625625_1749.jpg b/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Phil Jimenez_0.60625625_1749.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4697ea79f46f1281ac471778c5abb2bb2a636f73 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Phil Jimenez_0.60625625_1749.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e1fa81071c3b79beb0c1e52502e7aebdec8d19341e8780a8d64c7bab41931faa +size 26570 diff --git a/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Philippe Druillet_0.7363382_0394.jpg b/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Philippe Druillet_0.7363382_0394.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7966b441a6dffd8b485ea28c0e4950460549d4ec --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Philippe Druillet_0.7363382_0394.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a4c2570955d7f1d632b1d1bf087df2ebeb6fc73980a01cdc273b067a8d05f55d +size 23051 diff --git a/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Pixar Concept Artists_0.6667752_1110.jpg b/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Pixar Concept Artists_0.6667752_1110.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9d44912cb72c4124fd30f8b01137fc210c2d9a2a --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Pixar Concept Artists_0.6667752_1110.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:56a76c05c613362f8063824b536de0aa1a4f7a0bf1c2b1627b3ae1eff7f3eeb5 +size 15032 diff --git a/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Pixar_0.6495793_1321.jpg b/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Pixar_0.6495793_1321.jpg new file mode 100644 index 0000000000000000000000000000000000000000..12a217951b5d8df281e5f35b37f60de100a41150 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Pixar_0.6495793_1321.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0e4786ca1029deddbb289a30a606345d025333cd28be7e3a03d2044fbd535b5 +size 16504 diff --git a/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Rebecca Guay_0.72439146_0490.jpg b/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Rebecca Guay_0.72439146_0490.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6e3bac9ce26383bee69fc895b1bdfaa4b9a710da --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Rebecca Guay_0.72439146_0490.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e83c6393fb0a2ba12b6edb448bddd6fc4e25f99934c16d8f8dd439f5d09ab1ff +size 19321 diff --git a/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Roy Lichtenstein_0.98272276_0031.jpg b/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Roy Lichtenstein_0.98272276_0031.jpg new file mode 100644 index 0000000000000000000000000000000000000000..cda52f9f9712c7398b505390a4a28dc5b6112dfa --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Roy Lichtenstein_0.98272276_0031.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:51bd9d3748af0093b08bc4c9fc19cb663c47f15041afcc4e2f9c53c2a99b99c8 +size 24778 diff --git a/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Siya Oum_0.6435919_1385.jpg b/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Siya Oum_0.6435919_1385.jpg new file mode 100644 index 0000000000000000000000000000000000000000..eceff76641cc48a25e3ee8a44851d3bf36ac8e2c --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Siya Oum_0.6435919_1385.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:08038fc85efd661d7ebe984913b6f8c8d7be51807c0cf8d1acb6a5ac830bcd98 +size 22332 diff --git a/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Skottie Young_0.5440119_2363.jpg b/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Skottie Young_0.5440119_2363.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3ea165b4f34db1abe611a769ceee201acdfced35 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Skottie Young_0.5440119_2363.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b8d0439252a8e0934cc3d7ec30513b9fefd1fe44dd8ea1a014f47363e3a3f704 +size 20350 diff --git a/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Tatsuro Kiuchi_0.8597267_0052.jpg b/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Tatsuro Kiuchi_0.8597267_0052.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4cf25a4450e0d0447d27915caf48fc1e6b326a9b --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Tatsuro Kiuchi_0.8597267_0052.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:178f36b25eeca1909c36de059f0f9e05a92d83add6268c534356120e48ea38b6 +size 9052 diff --git a/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Terada Katsuya_0.6944026_0783.jpg b/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Terada Katsuya_0.6944026_0783.jpg new file mode 100644 index 0000000000000000000000000000000000000000..893acf264715bf552042994bd22fc39696f2e14b --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Terada Katsuya_0.6944026_0783.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d87fbfb173a6ffc982eaef54a5c730637f8e23af594483216313feb08dca16e2 +size 16430 diff --git a/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Tex Avery_0.6104007_1712.jpg b/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Tex Avery_0.6104007_1712.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c73f13a5aa49aa43ae6ea5d7028b153b1be25480 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Tex Avery_0.6104007_1712.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a13e1e5b43b320555a9b85d2b20fb7fa1bfcc07eabda6ff49d0ca2ca5b60190 +size 14809 diff --git a/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Todd McFarlane_0.6647763_1145.jpg b/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Todd McFarlane_0.6647763_1145.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8d4ccbf44031b3f2a325e6327f24bdb1c5bdfd93 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Todd McFarlane_0.6647763_1145.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a10d312a79365ba231d46a9cc82014fed9ff4cde4f8f1d398b4162362e6480c +size 27978 diff --git a/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Tomer Hanuka_0.6643152_1149.jpg b/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Tomer Hanuka_0.6643152_1149.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c3a0dcc160896036e0fd200eb49855c504d08f51 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Tomer Hanuka_0.6643152_1149.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b20d6135601069dfe4771c7ac6a11af54c59af3d2582bf6fe12e22a8d160f972 +size 17338 diff --git a/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Tony DiTerlizzi_0.6114657_1696.jpg b/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Tony DiTerlizzi_0.6114657_1696.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e904b036ee19b5585c8e4590a8c077a910b3b460 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Tony DiTerlizzi_0.6114657_1696.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:951fc8c87167ddfaf7a952b8c8085dd05962d3bc251fe041448d93985ca15793 +size 19608 diff --git a/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Ub Iwerks_0.625396_1559.jpg b/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Ub Iwerks_0.625396_1559.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3fde851f82dfe7d60a5dc6595928ebf689f8d473 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Ub Iwerks_0.625396_1559.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c1e94bcf53ee4a5c2eb79a6b82cebc789288eba2d353f6402a7df1ed18fc92a +size 25127 diff --git a/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Victo Ngai_0.81195843_0116.jpg b/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Victo Ngai_0.81195843_0116.jpg new file mode 100644 index 0000000000000000000000000000000000000000..74f0a96aaaa55e1fd8ba9a658b33365c9e4d1927 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Victo Ngai_0.81195843_0116.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e0faed310e3a4ad8205cef0b817329daf0d4aa38311358df041068636e56386 +size 17974 diff --git a/artists-to-study/ats/thumbnail/house/cartoon/cartoon_W. Heath Robinson_0.75374347_0293.jpg b/artists-to-study/ats/thumbnail/house/cartoon/cartoon_W. Heath Robinson_0.75374347_0293.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3dd25a5d3e6b5676d2d4e6ccfa3f5df4c250ffd1 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/cartoon/cartoon_W. Heath Robinson_0.75374347_0293.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:82a7fda571ffd7abfc1fdaae398783db224b90e276d9e633b659e062ac4f52f4 +size 18470 diff --git a/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Will Eisner_0.63349223_1482.jpg b/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Will Eisner_0.63349223_1482.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b34bedd94a9441f73b83abeb6443fa958d7d726f --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/cartoon/cartoon_Will Eisner_0.63349223_1482.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d5798c5fec143adcce7a9e0b7cad2a098d93b55c9352ba5bd28d0f20e673dcd4 +size 25768 diff --git a/artists-to-study/ats/thumbnail/house/cartoon/cartoon_theCHAMBA_0.6742506_1017.jpg b/artists-to-study/ats/thumbnail/house/cartoon/cartoon_theCHAMBA_0.6742506_1017.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0df69f03954911549c6edc041bcc7c00c335e32b --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/cartoon/cartoon_theCHAMBA_0.6742506_1017.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b35bb79c4b10bd76941bdac77213078d6aacebc38743b6b246c83169d3bfbde8 +size 15897 diff --git a/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_A.D.M. Cooper_0.53244877_2456.jpg b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_A.D.M. Cooper_0.53244877_2456.jpg new file mode 100644 index 0000000000000000000000000000000000000000..660e003a6e0f124bb4ecdeda589103ae540809d9 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_A.D.M. Cooper_0.53244877_2456.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1196d706b4a25312fc187062f8c827c44b72138c42e110625d112dad82178863 +size 16112 diff --git a/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Abraham Mintchine_0.46088243_2893.jpg b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Abraham Mintchine_0.46088243_2893.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a7ce99ba20e72901247358a5ba665d8fcda621b4 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Abraham Mintchine_0.46088243_2893.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5e5f037108000c7e69b5afcb4bd0c5f83bbf1b2d2d5ec0636129e3adcf98e2c +size 13017 diff --git "a/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Adolf Ulric Wertm\303\274ller_0.5278296_2488.jpg" "b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Adolf Ulric Wertm\303\274ller_0.5278296_2488.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..5fe266c4d586b86e6e684012cb8dffd035fb9a3e --- /dev/null +++ "b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Adolf Ulric Wertm\303\274ller_0.5278296_2488.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ccc70dfa4fcfb2c22117272a64c6340ae42cd9b34ab01b53ebdde24b28b66a02 +size 13909 diff --git "a/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Adolf W\303\266lfli_0.5372333_2218.jpg" "b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Adolf W\303\266lfli_0.5372333_2218.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..0ade4ed8fddd2f8b4c5b27b5983fa37af541db8e --- /dev/null +++ "b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Adolf W\303\266lfli_0.5372333_2218.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f62634c74c2f66c7c3e4f2489f5a1c0cf636dfda79560fcd17d46031e36dfd5 +size 15782 diff --git a/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Adrian Ghenie_0.6193521_1624.jpg b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Adrian Ghenie_0.6193521_1624.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0c59753d5baa614f6400834b74f1c63d7ea5c192 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Adrian Ghenie_0.6193521_1624.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1977dc6ff3e26e3f269e4ec32abc466888bf6aed7a9058e29da9338c193c6a6e +size 13916 diff --git a/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Adrian Smith_0.4716923_2831.jpg b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Adrian Smith_0.4716923_2831.jpg new file mode 100644 index 0000000000000000000000000000000000000000..712b3f30f022bd457326fdc62788b33a82c3a429 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Adrian Smith_0.4716923_2831.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ec69b097b2e831c702e87d72afb173a7de7fcfd23ab8c4f51031744cbee99b0 +size 15810 diff --git a/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Agnes Cecile_0.6192814_1625.jpg b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Agnes Cecile_0.6192814_1625.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4c32f826695128690237b4fb3b5149dae351189d --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Agnes Cecile_0.6192814_1625.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a376636fa4928672a24ccc9ccd0716510458fee84b9c9b2666d8f55acac1db81 +size 15566 diff --git a/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Ahmed Yacoubi_0.544767_2355.jpg b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Ahmed Yacoubi_0.544767_2355.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3f1dec8a595eb0a9c656293000b487a7ebb36ff3 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Ahmed Yacoubi_0.544767_2355.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0dc4ddd3764baf58f768814a446710edc69172399851a17d277338cd6aefe637 +size 10087 diff --git a/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Ai Weiwei_0.5576034_2235.jpg b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Ai Weiwei_0.5576034_2235.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2894c431b4587284213235f803a9d046da04fca2 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Ai Weiwei_0.5576034_2235.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a6d095c0b50e8063fd9b81866ddace4ae8b4875e58fae32c8184b38cb57998ae +size 17196 diff --git "a/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Aim\303\251 Barraud_0.55265915_2280.jpg" "b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Aim\303\251 Barraud_0.55265915_2280.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..fdb78200e6b61808a93079be0733895880cbfb30 --- /dev/null +++ "b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Aim\303\251 Barraud_0.55265915_2280.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a8e4fc2d77f9d47b981d0f449a3ce3190f658cc3b869930c5fcac4072ee16fed +size 12038 diff --git a/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Akos Major_0.7103802_0624.jpg b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Akos Major_0.7103802_0624.jpg new file mode 100644 index 0000000000000000000000000000000000000000..65b5d66e72e215d470cb5f6396e69b6458890d16 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Akos Major_0.7103802_0624.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:88cde3f5dc44f9e9f4f1038347423fa8370c60ac7c5cc53fc236879a07ce0df8 +size 11930 diff --git a/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Alan Parry_0.5694952_2132.jpg b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Alan Parry_0.5694952_2132.jpg new file mode 100644 index 0000000000000000000000000000000000000000..592e217b7ba3c064a9cb31bb87574a8d64f45f8a --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Alan Parry_0.5694952_2132.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1abe94f55b1cf8be0c7d57e8cbd59cf1bd275d7cbc70699d0cd1ca20b5dd259f +size 10069 diff --git a/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Alasdair McLellan_0.6898454_0834.jpg b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Alasdair McLellan_0.6898454_0834.jpg new file mode 100644 index 0000000000000000000000000000000000000000..eb303e8064c25876b263e44abdc20622f1971f66 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Alasdair McLellan_0.6898454_0834.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a9e9e3e2febeeac182de1a775d684dfa709b85b842e918a6c8e4777d4dabda9b +size 15472 diff --git a/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Albert Welti_0.5425134_2379.jpg b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Albert Welti_0.5425134_2379.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b9c00fc0e07202aaea76500452e8f367a7320009 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Albert Welti_0.5425134_2379.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a28e4992c931629e6a652f9c4556baa5794ad601a73d00355b29fd51fa32533 +size 13220 diff --git a/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Alec Soth_0.5597321_0911.jpg b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Alec Soth_0.5597321_0911.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7317ce0e0629634dfa0963645de1eb5a4753cad1 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Alec Soth_0.5597321_0911.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87c7c6d287a8159db2f436dc052238050ec8f70797405c3ac79657ba483ef3b2 +size 15299 diff --git a/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Alejandro Jodorowsky_0.5429065_2371.jpg b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Alejandro Jodorowsky_0.5429065_2371.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d12acce1be146587ac20d66afd4458afdd458a47 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Alejandro Jodorowsky_0.5429065_2371.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:433e697e2d2e606e496d8c887a8d022a884fa26616579791b778e00b72d7e840 +size 19856 diff --git a/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Alessio Albi_0.6752633_1002.jpg b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Alessio Albi_0.6752633_1002.jpg new file mode 100644 index 0000000000000000000000000000000000000000..db73e44b25f73a240837d355d9af7add9364fe9d --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Alessio Albi_0.6752633_1002.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a7605a09b6473693701bb5462324d0b5bceaf79236ab5d243a4027cbec5a2f01 +size 12490 diff --git a/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Alex Andreev_0.6442978_0446.jpg b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Alex Andreev_0.6442978_0446.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6f3549938eef4d00d8ca6c0791b7dc9de8eeae37 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Alex Andreev_0.6442978_0446.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d7f273b79e8bd85527c30397aac327ec499f31770b29353cf1d9452fde7313f +size 9039 diff --git a/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Alex Gross_0.60837066_1730.jpg b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Alex Gross_0.60837066_1730.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ac62891248eea341c52169fb549f888b2a3936c9 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Alex Gross_0.60837066_1730.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d90cf817ddef407da518b971f0805591c5e1ae81dea550f607c1c7f1d8d7a960 +size 16335 diff --git a/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Alex Howitt_0.52858865_1084.jpg b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Alex Howitt_0.52858865_1084.jpg new file mode 100644 index 0000000000000000000000000000000000000000..12f4bfa7c1772fd6a7e9e0d617d8ef7a839933fb --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Alex Howitt_0.52858865_1084.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:48de7f0529a9d459fb725f8bc7c03bca5efae46252e9b372de5c59db3972cdfc +size 10540 diff --git a/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Alex Russell Flint_0.5900352_1913.jpg b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Alex Russell Flint_0.5900352_1913.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8dd78c84132637a77c33273689d7baa79638e763 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Alex Russell Flint_0.5900352_1913.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a664426bbf216d7f2b699bb7a9223f4c57fd5ea4203680f6feb4046b2a937e67 +size 12627 diff --git a/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Alex Timmermans_0.64443207_0252.jpg b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Alex Timmermans_0.64443207_0252.jpg new file mode 100644 index 0000000000000000000000000000000000000000..76ce20f07fe32d12d07f7d9cb4f42812a16d5d22 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Alex Timmermans_0.64443207_0252.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c69ec21cbce5d0b8a3daf837b0660f96832205efa6ce1c5b277d8efda700c2d0 +size 12507 diff --git a/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Alex Toth_0.6305541_1510.jpg b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Alex Toth_0.6305541_1510.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ae66944b91d13358bf3b553930f97321c004e635 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Alex Toth_0.6305541_1510.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df391a6f221b6b2498c314278293f3fdf7f461a990f676e9c78744cd7176cd71 +size 25229 diff --git a/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Alexander Runciman_0.5944449_1862.jpg b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Alexander Runciman_0.5944449_1862.jpg new file mode 100644 index 0000000000000000000000000000000000000000..035da19be52ed06f5e6650937074cd09f3eb487a --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Alexander Runciman_0.5944449_1862.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da28b646fd349846feab1eab489d69b71a8fe94deded2a5c3753b6bc078fdf72 +size 13378 diff --git a/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Alfred East_0.5296565_2475.jpg b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Alfred East_0.5296565_2475.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4beaadde6bc6942fff5887e38399350bf48141c8 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Alfred East_0.5296565_2475.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:363767eb18b5c9261e408a1078a8d429d454f1aa21656ff32182459f08b60238 +size 11744 diff --git a/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Alfred Janes_0.5264481_2499.jpg b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Alfred Janes_0.5264481_2499.jpg new file mode 100644 index 0000000000000000000000000000000000000000..86c22e6796e17a4c067185a62de458607ae0e975 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Alfred Janes_0.5264481_2499.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a464417430581a011ba694e1cb4b10473e989adda069ade868b0a441383a203a +size 10852 diff --git a/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Alfredo Jaar_0.6952965_0770.jpg b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Alfredo Jaar_0.6952965_0770.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6153691ee48f6a0fa6910f440d6d539193f090ba --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Alfredo Jaar_0.6952965_0770.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6d506a312363769ad2a4dccbe709b300a9fb76d25ec67c37a1435538ad0a4e27 +size 16453 diff --git a/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Alice Prin_0.54435575_2357.jpg b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Alice Prin_0.54435575_2357.jpg new file mode 100644 index 0000000000000000000000000000000000000000..180975c6e49a3b30f27b49d66b0b7704247c2110 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Alice Prin_0.54435575_2357.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:98217b97e943befa329b07c07c1b6e572347c4b9360cf47ba3773daed27d841b +size 15885 diff --git a/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Alison Kinnaird_0.6306353_1509.jpg b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Alison Kinnaird_0.6306353_1509.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ad174bed5046aa81c5649f7a9045bdf27a032496 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Alison Kinnaird_0.6306353_1509.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c6b13e91fd7dd2788e9bf484d9ca038f074b957266bad539fb0a8ae1d41bac5 +size 17938 diff --git a/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Aliza Razell_0.5863178_1366.jpg b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Aliza Razell_0.5863178_1366.jpg new file mode 100644 index 0000000000000000000000000000000000000000..924b22eeec85142ce61d73d160f244bb4c15d52e --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Aliza Razell_0.5863178_1366.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:50cb97a9c56d1bb2b108cf1f20a6d3d0027b984a4656a61c8ba34a27c6a1945b +size 13553 diff --git a/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Allie Brosh_0.6042061_1769.jpg b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Allie Brosh_0.6042061_1769.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e8911739502fc7555ce6c2789cab62f5cad3b2d4 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Allie Brosh_0.6042061_1769.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a908b67e1ac42322973a329b6b3ece33e6e13e9072be765636d3ea5f54a7380b +size 19959 diff --git a/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Allison Bechdel_0.58383805_1982.jpg b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Allison Bechdel_0.58383805_1982.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0b8bd6c411aed03b040b310b4c645a44a1dca3bb --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Allison Bechdel_0.58383805_1982.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cdfc8dad1973370f8118a1dbfa089c78d4e25e0c713becf5fd50669d4529c19b +size 22861 diff --git a/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Alson S. Clark_0.5278568_2487.jpg b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Alson S. Clark_0.5278568_2487.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a3acdd237e106ef59357f8d068de1cffb84f8243 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Alson S. Clark_0.5278568_2487.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed74b33e4901cf17f4d33bb31962ae8ce9abaa3e6dd36e8ca8f06a716b6cffc1 +size 16792 diff --git a/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Alvar Aalto_0.61122143_1699.jpg b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Alvar Aalto_0.61122143_1699.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f3bf628a9c40332c12d087215d04513322214a6f --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Alvar Aalto_0.61122143_1699.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a37a1ddb77a44aa729a20eaee29cad26b93a160adc097cdee9e293f0c5e7563e +size 15685 diff --git a/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Alvaro Siza_0.58406967_1975.jpg b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Alvaro Siza_0.58406967_1975.jpg new file mode 100644 index 0000000000000000000000000000000000000000..25c6b55b38418528c22115daa145038105dbed04 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Alvaro Siza_0.58406967_1975.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:95959e473dc5f0e467841f36d1202162dac5ce6ed4281447aba820a914cc2e8b +size 11708 diff --git a/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Amalia Lindegren_0.5471987_2337.jpg b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Amalia Lindegren_0.5471987_2337.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2e6f997866168dd7f9f62e05bdc2d8c66f2bf068 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Amalia Lindegren_0.5471987_2337.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf59e76c5be570cf502103edf5d2d0a09b635e8ec1ee59a9eca288271d2b6efb +size 10902 diff --git a/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Amandine Van Ray_0.6174208_1486.jpg b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Amandine Van Ray_0.6174208_1486.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a96e0e6de2f36cb2f1fda394007425dc19952791 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Amandine Van Ray_0.6174208_1486.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:38c56cda59f4426b5a8d7644e8f556c93443796fb119ae2caa374d629d2b6d1c +size 12588 diff --git a/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Ambrosius Bosschaert_0.67364097_1025.jpg b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Ambrosius Bosschaert_0.67364097_1025.jpg new file mode 100644 index 0000000000000000000000000000000000000000..db508ca902e30a14f5086a6368ffbf066575eb78 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Ambrosius Bosschaert_0.67364097_1025.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd51a7551b298941ce715069d48c2e89a38cbf4fd3dfc631d7c148fdb8617e48 +size 14802 diff --git a/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Amy Judd_0.57142305_2118.jpg b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Amy Judd_0.57142305_2118.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4af3297d87f0b5d7f4315a671a8051e8563a71a1 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Amy Judd_0.57142305_2118.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:63feb03dc4ae014eac4f3ac3e5500be50a06618d5dcc7ae7690699573ba069d4 +size 8398 diff --git a/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Anato Finnstark_0.6744919_1012.jpg b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Anato Finnstark_0.6744919_1012.jpg new file mode 100644 index 0000000000000000000000000000000000000000..de2871bec1659115c389308634a840a3a4e1bb2b --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Anato Finnstark_0.6744919_1012.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c6181d9be2855c1b2aa4a770a894dbce4ef0e806904517de315cb9e237b8be3 +size 11051 diff --git a/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Andre De Dienes_0.5683014_0320.jpg b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Andre De Dienes_0.5683014_0320.jpg new file mode 100644 index 0000000000000000000000000000000000000000..65620cdad51d2b9bad66cb9b980ec8145a14e770 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Andre De Dienes_0.5683014_0320.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c71fc31ced5eea9eef55fbca19aa51d40c361a522af354e6d662bcd2c465565c +size 12563 diff --git a/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Andreas Gursky_0.67610145_0993.jpg b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Andreas Gursky_0.67610145_0993.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e94e4d5dfe10a31eca81721be6c3bb8021d7c136 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Andreas Gursky_0.67610145_0993.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b2a7c94ad1b16ac651f1fe0c9ee2ae0a19676aa1ab26a436481b9430bffbba0 +size 24581 diff --git a/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Andrei_Arinouchkine_0.52763486_2491.jpg b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Andrei_Arinouchkine_0.52763486_2491.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a69e3feb2916349e9546285e6e18d0b19d771102 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Andrei_Arinouchkine_0.52763486_2491.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ae460dc3914a3e37779d98802217c2a63a0e771a2945da7dd0a802d6efb1830 +size 12327 diff --git a/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Andrew Robertson_0.5529603_2277.jpg b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Andrew Robertson_0.5529603_2277.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ce8c2f7c3d35ea4fb3f4b31f215ec73831bf3d61 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Andrew Robertson_0.5529603_2277.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71173af27dd2d4f3b04f129533f30d0d23944252d8d12c4e0e04fde8dc672c87 +size 16449 diff --git a/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Andrey Remnev_0.7041204_0684.jpg b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Andrey Remnev_0.7041204_0684.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3fd1c8ef8e113825e1a6c3bfd0a9b1e22110fb6b --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Andrey Remnev_0.7041204_0684.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:487709d8e99633ab23b5d33d26c7bb722e1d95c059d4c8d766d78120dcea44d1 +size 11665 diff --git "a/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Andr\303\251 Thomkins_0.5343785_1851.jpg" "b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Andr\303\251 Thomkins_0.5343785_1851.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..453f489339453bf886341055d496edd740b4966d --- /dev/null +++ "b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Andr\303\251 Thomkins_0.5343785_1851.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf19d18340e3a118163c806dfa366797834ba73f0387d396d9630acef29f4732 +size 12239 diff --git a/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Andy Goldsworthy_0.7307565_0430.jpg b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Andy Goldsworthy_0.7307565_0430.jpg new file mode 100644 index 0000000000000000000000000000000000000000..baeeb7783838deab5bf6d2eb6daf9d5d96c07dec --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Andy Goldsworthy_0.7307565_0430.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:47094dfbabec186619d6040228bfe85788ee92ecc492420920381bcfaae92f61 +size 14469 diff --git a/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Angela Barrett_0.55976534_2070.jpg b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Angela Barrett_0.55976534_2070.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b264040870db16f1a38a196a0e1cd985e9966776 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Angela Barrett_0.55976534_2070.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:53d63eade4fa116f568db0f25a88c8af9e248446f05e55c9ee92098038d63d9b +size 15844 diff --git a/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Angus McKie_0.61487424_1664.jpg b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Angus McKie_0.61487424_1664.jpg new file mode 100644 index 0000000000000000000000000000000000000000..31358eac5e9108bc1f4d2971a06b5eabf50aacb7 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Angus McKie_0.61487424_1664.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:efc6bc7429989793415d0ed165699dfb3909c7251a6887d4dddd28f1157f8966 +size 16156 diff --git a/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Anish Kapoor_0.6067015_1743.jpg b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Anish Kapoor_0.6067015_1743.jpg new file mode 100644 index 0000000000000000000000000000000000000000..22e4ef8790f0d7693aa99fb633d76a8f3d85ee3c --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Anish Kapoor_0.6067015_1743.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:02e7c4b1e7c20c863bde520ef0b578e48a618c915973fe6b1ccae2ab31a0cbda +size 12902 diff --git a/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Anja Millen_0.6064488_0873.jpg b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Anja Millen_0.6064488_0873.jpg new file mode 100644 index 0000000000000000000000000000000000000000..23db8e2a5643a13fde14ad682851fa95d3596543 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Anja Millen_0.6064488_0873.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7200ecf90c0f99e0f9cf21bab0b5532757ba1d72ae9b6584498ba220f5cc7d09 +size 10453 diff --git a/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Anka Zhuravleva_0.5822078_1999.jpg b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Anka Zhuravleva_0.5822078_1999.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a4c0a334a2bbf7d74d669e9aa6832adb3e0180db --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Anka Zhuravleva_0.5822078_1999.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db63c209f97422940306df4c23883c31d24d25223238a51fa57306d67f99fad7 +size 13530 diff --git a/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Ann Stookey_0.54269934_2377.jpg b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Ann Stookey_0.54269934_2377.jpg new file mode 100644 index 0000000000000000000000000000000000000000..122101e19d2133e3484fe36fa673ccc6a4f33a60 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Ann Stookey_0.54269934_2377.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ffd29c4237128898afec414e669278a2b8a71965510029ef740c158ef0d2f438 +size 18893 diff --git a/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Ann Thetis Blacker_0.5416629_2388.jpg b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Ann Thetis Blacker_0.5416629_2388.jpg new file mode 100644 index 0000000000000000000000000000000000000000..18debcfbb9f7691b5b38fcbc2121ddcb71c594f2 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Ann Thetis Blacker_0.5416629_2388.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bea46b5437ac2c54d936e9d967446993d87e4c5f453d17343f5086be0e1940dd +size 15239 diff --git a/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Anna Findlay_0.54018176_2400.jpg b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Anna Findlay_0.54018176_2400.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fa8de5eae26d2c7879a3f79edf04503c8a8791ab --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Anna Findlay_0.54018176_2400.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:49dcfb52ed14aba12e8bdeda318fa0971b0a6d9bbff6c06d4e3d4ae74787a033 +size 14281 diff --git a/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Anne Savage_0.5310638_2464.jpg b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Anne Savage_0.5310638_2464.jpg new file mode 100644 index 0000000000000000000000000000000000000000..729d0d17a4885a1e0eab1dbdf14b6e70f9d7754e --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Anne Savage_0.5310638_2464.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3af4583e4607e7639709fd302e2f86095317eed01d573b959968f0b78522f9e9 +size 14422 diff --git a/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Anni Albers_0.65708244_0922.jpg b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Anni Albers_0.65708244_0922.jpg new file mode 100644 index 0000000000000000000000000000000000000000..67df100ac250cb819be1efcd7cfd2dc199055c10 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Anni Albers_0.65708244_0922.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a6ad76f9fd61dc59f9c7966be679e7e559c766625bbc2bfa5d11ac081f2124f3 +size 15505 diff --git a/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Anthony Gerace_0.636678_0491.jpg b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Anthony Gerace_0.636678_0491.jpg new file mode 100644 index 0000000000000000000000000000000000000000..85b86425513f68e552f74fd6148b0612468c4164 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Anthony Gerace_0.636678_0491.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:25f499b787b1ac203fecfe2bceef95f8cd05f97516c0c8ebfedc69b032a093d5 +size 10738 diff --git a/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Anton Corbijn_0.5550669_0275.jpg b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Anton Corbijn_0.5550669_0275.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d545145fb54a64f78083b7e666747e5243aa9e6f --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Anton Corbijn_0.5550669_0275.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:53b2a38033b4aafae16040d4fca8db9aef54b0ed3d6f3526f5a2a9e4000337f9 +size 13500 diff --git a/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Anton Semenov_0.6552501_1251.jpg b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Anton Semenov_0.6552501_1251.jpg new file mode 100644 index 0000000000000000000000000000000000000000..baf7d7c30bcd3af0035c481111639f7accf0d996 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Anton Semenov_0.6552501_1251.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:063d4980134d6cc2706094efc0c805700fde67ab1ddd4397beb8885c382dd3da +size 9276 diff --git a/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Antonio Galli Bibiena_0.6399247_1413.jpg b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Antonio Galli Bibiena_0.6399247_1413.jpg new file mode 100644 index 0000000000000000000000000000000000000000..61712b25d01e69b13e0369569c79045fad080b83 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Antonio Galli Bibiena_0.6399247_1413.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ffac78669ad2150938968761b6d6207c322a893ee03a658e2ae872bb671ff3a8 +size 14388 diff --git a/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Antonio Mora_0.5334297_1848.jpg b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Antonio Mora_0.5334297_1848.jpg new file mode 100644 index 0000000000000000000000000000000000000000..de306d6265efd0017b61455cf25a45d2b5e69f81 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Antonio Mora_0.5334297_1848.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f292f214898be45f0d8049fb401f97a12859d660305dd42458da82ed9842da4e +size 11404 diff --git a/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Antony Gormley_0.54696125_2341.jpg b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Antony Gormley_0.54696125_2341.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1771d7e02f38418c8b78c2afbdfd458948366c45 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Antony Gormley_0.54696125_2341.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8f87b92467ad2b59e0cb49f1d4b5928a5575ca25ed9f4882a63f8878719ada11 +size 12169 diff --git a/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Archibald Robertson_0.55129635_2291.jpg b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Archibald Robertson_0.55129635_2291.jpg new file mode 100644 index 0000000000000000000000000000000000000000..16537e8ff88fb8a5e6ad0f190ea2a7961d5adb8d --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Archibald Robertson_0.55129635_2291.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e979337b1bcc435854b4c84473a81b1ed0b26f10b7448eba492a21ef514e6154 +size 13322 diff --git a/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Archibald Standish Hartrick_0.54850936_2321.jpg b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Archibald Standish Hartrick_0.54850936_2321.jpg new file mode 100644 index 0000000000000000000000000000000000000000..cfb59408be6385c76e81f0b35036f6b2ba5af9ca --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Archibald Standish Hartrick_0.54850936_2321.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4768cdd7ba23e575ce9ddabc55ef7c7ebd04b532ec1c5df964a16e7ba71946f2 +size 13093 diff --git a/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Arkhyp Kuindzhi_0.6928072_0801.jpg b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Arkhyp Kuindzhi_0.6928072_0801.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d3161ea4db0855393ce405ece6a994a9e7a7ea32 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Arkhyp Kuindzhi_0.6928072_0801.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:339cd4038cd9224b1e80966a1a5aba12df3a676a2c197a7bafc4af68c1ba3f1c +size 7537 diff --git a/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Arnold Newman_0.5736342_0593.jpg b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Arnold Newman_0.5736342_0593.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8bb52e8e5e737d2f918c5aec4197b57b3882d4f8 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Arnold Newman_0.5736342_0593.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e1f590703f4d900c34d691f8aaaaa701f5ab1f7a0acbff861657fc034fc87d1 +size 11526 diff --git a/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Art Green_0.5714495_2117.jpg b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Art Green_0.5714495_2117.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b1363b8977de8f004f4e56abb231c9069e8f162a --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Art Green_0.5714495_2117.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:12f210d53a89d4f08c5c966a9112ea8e82c1a3d5fda5ca50f58316b364cf6a2b +size 16467 diff --git a/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Arthur Tress_0.6301861_0920.jpg b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Arthur Tress_0.6301861_0920.jpg new file mode 100644 index 0000000000000000000000000000000000000000..55f45e11e48ec63346749e4234c22be58d66dc8d --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Arthur Tress_0.6301861_0920.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:48cabd2f285623a90fb8b4e76e980b87a0abe84f9feff71da3e44bc222664967 +size 17368 diff --git a/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Augustus Jansson_0.6845705_0895.jpg b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Augustus Jansson_0.6845705_0895.jpg new file mode 100644 index 0000000000000000000000000000000000000000..99c2a3d6e16d6ccb969fdfc6391af00040b4373d --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Augustus Jansson_0.6845705_0895.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:35b3315a88dcf143215b158afddb3fdae019030878125d0461a5fcfda2664003 +size 13352 diff --git a/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Barbara Nessim_0.60589516_1531.jpg b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Barbara Nessim_0.60589516_1531.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8e5be7359992462ab77133c8e9f2daf8d8d7766b --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Barbara Nessim_0.60589516_1531.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:74f8134720d525bf9e02b0212136ee04fa0c246b996c494dc80ba35157823d0b +size 15979 diff --git a/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Barclay Shaw_0.53689134_2203.jpg b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Barclay Shaw_0.53689134_2203.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2c0bf052bfa6f910d8a2f6b75558950fcf0db5d5 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Barclay Shaw_0.53689134_2203.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eb28e27c1c0865fdf95585f4c40413b5ee5cac531d407a0541e4e1706f6b2801 +size 14599 diff --git a/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Beatrice Huntington_0.5328165_2453.jpg b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Beatrice Huntington_0.5328165_2453.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e60ff57ca7836b49ba8457036f3312c117061117 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Beatrice Huntington_0.5328165_2453.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:08860274540b024d9cecc972b4f4e7bb4f5cc8664384d22a03e975b6d5ba44f7 +size 12257 diff --git a/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Bella Kotak_0.6409608_1405.jpg b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Bella Kotak_0.6409608_1405.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9e6850a2d83e589125405f90fbe2246dca1f730d --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Bella Kotak_0.6409608_1405.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86b208ba849151c4eaf300b09546526938028d930d12dc9ad5691ab0fcf3e68c +size 18985 diff --git a/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Ben Goossens_0.53002644_2367.jpg b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Ben Goossens_0.53002644_2367.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c3ab453c348e44d9ceda213ee0657c3a4cd0075b --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Ben Goossens_0.53002644_2367.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f908b6bd8855cee7f401a8d577f5ab5bd2497dc5bd04754ef8d6fd64a286b870 +size 12591 diff --git a/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Ben Templesmith_0.5498991_1837.jpg b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Ben Templesmith_0.5498991_1837.jpg new file mode 100644 index 0000000000000000000000000000000000000000..637147a8f3d22b4e651695c75e8f8fb2dc26c2ce --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Ben Templesmith_0.5498991_1837.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f9859bf9ba07f3683c22b95c58c7de931733561c5108d894c46835abc68444d +size 17298 diff --git a/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Benjamin Block_0.55251944_2283.jpg b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Benjamin Block_0.55251944_2283.jpg new file mode 100644 index 0000000000000000000000000000000000000000..df3ebbe63ecee1abdbadd723cdd1b9faba57957f --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Benjamin Block_0.55251944_2283.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0bdcdf3dff5e8d4a3d4db3a6d5624455f6f36d6e84ff72d5512ca001510e7c5b +size 11639 diff --git a/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Bernard Fleetwood-Walker_0.57987773_2030.jpg b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Bernard Fleetwood-Walker_0.57987773_2030.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ecee0c0b4f804a2531d4093cfb115a62449eb8ee --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Bernard Fleetwood-Walker_0.57987773_2030.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:150d845a4a15628e11e7e6e12a5867ce6cd7310d0c9f4be84ef7aaf6f64c3641 +size 11074 diff --git a/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Bernard Meninsky_0.5302034_2350.jpg b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Bernard Meninsky_0.5302034_2350.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5ea330cff68f74f201d82644751ebceaf79601a2 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Bernard Meninsky_0.5302034_2350.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cba5b2cbc0bf97f70b989f94854cf731ecd6dcbf7a2ab9f46a59fb376ad6a1e3 +size 13173 diff --git a/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Bernt Tunold_0.56383425_2185.jpg b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Bernt Tunold_0.56383425_2185.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4655b7f1a554f27b1452316c8badee6e928aff62 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Bernt Tunold_0.56383425_2185.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:abe06033861b4cdd16070a7ba2ea79cc2698d709eaeee58abe6efa4c9b222833 +size 11309 diff --git "a/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Bertalan Sz\303\251kely_0.5548113_1961.jpg" "b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Bertalan Sz\303\251kely_0.5548113_1961.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..ccc22c0f8999dfc4d7ba5eacc65006002065686c --- /dev/null +++ "b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Bertalan Sz\303\251kely_0.5548113_1961.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d0b00d7923ccd34a65fbdf67d819a74bfb28e5a8204d71cd34f2b290b6ea6b61 +size 12532 diff --git a/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Bessie Wheeler_0.5269164_2495.jpg b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Bessie Wheeler_0.5269164_2495.jpg new file mode 100644 index 0000000000000000000000000000000000000000..94acc1d2cad2a5bb684b185dedc12edac3d8679b --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Bessie Wheeler_0.5269164_2495.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d218558a6695e0db664f3dace72d1ce7c9aaf0d2205facf5b7bc3e8c60c9904 +size 15010 diff --git a/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Beth Conklin_0.6388204_1421.jpg b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Beth Conklin_0.6388204_1421.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0d1f9ed0328f5d7c1cc05a01816fb26d39dedf7d --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Beth Conklin_0.6388204_1421.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c8e9d2c5859ee4d7ce5f5227a1f30216fe39ce1ddd3b1376d4b93bddf3d3e4c +size 15267 diff --git a/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Betty Merken_0.56281745_2195.jpg b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Betty Merken_0.56281745_2195.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fd6fb9e2bc00d40a0fcde5f652a8371423d27346 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Betty Merken_0.56281745_2195.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d1e83eadf035c1256f494c25ceb4a0423e4510e9fc9f8ca322ced95a0a074334 +size 17112 diff --git a/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Bill Henson_0.5394536_1428.jpg b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Bill Henson_0.5394536_1428.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a6c718a81adef39a322f865a1e393b32147728e9 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Bill Henson_0.5394536_1428.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7009a7ad6519e08b28fe661c9142564f1fb422eb5323f78113daca252f1fa88a +size 11917 diff --git a/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Bill Sienkiewicz_0.6125557_1569.jpg b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Bill Sienkiewicz_0.6125557_1569.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4bf8e064fb21dbe8b09cdd3d0a823a4b91ae73c3 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Bill Sienkiewicz_0.6125557_1569.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e575282531dca20dbbd110959dbb573028570ed7f9c8f640a720c4e83ec3e6a8 +size 22257 diff --git a/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Bill Viola_0.62409425_1573.jpg b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Bill Viola_0.62409425_1573.jpg new file mode 100644 index 0000000000000000000000000000000000000000..41baddd3890d1d1556269027a840c16e09a5c86b --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Bill Viola_0.62409425_1573.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:02fec0971e7ac3bd5603609bf978b4a3aeaf05c128acbd2ca5a0d813307126c2 +size 11771 diff --git a/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Bill Ward_0.61953044_1622.jpg b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Bill Ward_0.61953044_1622.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a93f2aec3d5b5ebe47b216e534825fe1809e2352 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Bill Ward_0.61953044_1622.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d67a5d69d1d97db40de4892e1aab5358aa8fe1a8913f89894a6a81bfa2b0d31b +size 17360 diff --git a/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Bill Watterson_0.5542879_2268.jpg b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Bill Watterson_0.5542879_2268.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2b4754a0f124b3f423675f9651db181110658532 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Bill Watterson_0.5542879_2268.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6db4d24d6c77e35267882b4e80337fba4112c23d921795381e58289f820b8a8c +size 22858 diff --git a/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Billie Waters_0.65684533_1235.jpg b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Billie Waters_0.65684533_1235.jpg new file mode 100644 index 0000000000000000000000000000000000000000..05b3f77cf841676931d87e19222cbdfdd5497169 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Billie Waters_0.65684533_1235.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a957b0e5cd6c9233c59f7525d24dca3a67864dd097f86c3fcd1c7a04a696aa0 +size 14925 diff --git a/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Bjarke Ingels_0.68933153_0841.jpg b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Bjarke Ingels_0.68933153_0841.jpg new file mode 100644 index 0000000000000000000000000000000000000000..489857c3536089d3c316ae62556c33400e56d7b8 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Bjarke Ingels_0.68933153_0841.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:268a87321d4acb17fde157acf382bc2a801b9180a25f1551dc57c214c33bef4f +size 13325 diff --git a/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Bob Eggleton_0.63277495_1487.jpg b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Bob Eggleton_0.63277495_1487.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c96e3992cd80006cc3f2fa9e3f6d409cd0df69c1 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Bob Eggleton_0.63277495_1487.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:444336c17572a29321a53639a50ad1ac3c5a0698a942ea0a982ae5955b88aa02 +size 15064 diff --git a/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Bob Ringwood_0.5935273_1876.jpg b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Bob Ringwood_0.5935273_1876.jpg new file mode 100644 index 0000000000000000000000000000000000000000..61dd76937897b48a7cb8b03a37d31c32fb946276 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Bob Ringwood_0.5935273_1876.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1324f380bd02bdc540f8ca11ebfaa46ba8a2b00d304d179b3fcd5fabb555e218 +size 12537 diff --git a/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Bordalo II_0.7467364_0336.jpg b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Bordalo II_0.7467364_0336.jpg new file mode 100644 index 0000000000000000000000000000000000000000..33cb5546feb3fc81a7cd8fddcc801fde9f31ae7b --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Bordalo II_0.7467364_0336.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8fedd18d8e70da021dcebb2f26d3c5b8f24b9c2c621dbaa87f5ca63b9c0594ef +size 22294 diff --git a/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Boris Groh_0.5888809_1925.jpg b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Boris Groh_0.5888809_1925.jpg new file mode 100644 index 0000000000000000000000000000000000000000..121f64aa555414da9e65e0a6d4fc2da9eac0815d --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Boris Groh_0.5888809_1925.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d034444b64b334752d3f717b4cd4ed579e870f146717d6780a5479baf6152f29 +size 17317 diff --git a/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Brandon Woelfel_0.6727086_0626.jpg b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Brandon Woelfel_0.6727086_0626.jpg new file mode 100644 index 0000000000000000000000000000000000000000..18b4faa8b1086c0148c6c01aba3f2ec6e0bffc0a --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Brandon Woelfel_0.6727086_0626.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a28e7cc5d3dc8d424a5712365c0cff4e500ff46f1ca23b859c7ad00d4bc97256 +size 16969 diff --git "a/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Brassa\303\257_0.6361966_0361.jpg" "b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Brassa\303\257_0.6361966_0361.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..70f55648ab4c66d1d66a14223004aa1a9832ec89 --- /dev/null +++ "b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Brassa\303\257_0.6361966_0361.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6d51751f1672e05309dc21df5e6518efad0f81b0789bd5440da7c866f060f8c4 +size 16026 diff --git a/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Brian Mashburn_0.63395154_0727.jpg b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Brian Mashburn_0.63395154_0727.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2f0ed86d8e13016e34eba79ae59234b180f05eab --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Brian Mashburn_0.63395154_0727.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d68291d8ec86946cec231dbc2e5f04778004110056c61dac7dbe61c91f87841 +size 12649 diff --git a/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Brice Marden_0.70673287_0661.jpg b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Brice Marden_0.70673287_0661.jpg new file mode 100644 index 0000000000000000000000000000000000000000..77a1fb6c8e5ec1fd7f60ba45dd7db7904f3bf158 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Brice Marden_0.70673287_0661.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7bae77bbabb0fd60dc4e67166ff477d72f1dbf12a6b98326a6932424ad80fa5e +size 15680 diff --git a/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Brigid Derham_0.6270125_1547.jpg b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Brigid Derham_0.6270125_1547.jpg new file mode 100644 index 0000000000000000000000000000000000000000..acd76339ac1b0298b4bddae1956eeb5b4d38c0b9 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-high-impact/digipa-high-impact_Brigid Derham_0.6270125_1547.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:755522f529e482f00e375a88f7a7afa12864283c48324b6c86b99bc0e0683778 +size 14178 diff --git a/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Adam Bruce Thomson_0.43847767_3018.jpg b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Adam Bruce Thomson_0.43847767_3018.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a37a12dd3133717a615e6d147b812100f7c6b15d --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Adam Bruce Thomson_0.43847767_3018.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d2078d37509e11959bc88bc79e3f8381e67a2bfdefd0f4a2a30da3611c37323e +size 13939 diff --git "a/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Adrienn Henczn\303\251 De\303\241k_0.445518_2980.jpg" "b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Adrienn Henczn\303\251 De\303\241k_0.445518_2980.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..2c3d4b45cf52f83b0a407d3abcfeb441a73a584b --- /dev/null +++ "b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Adrienn Henczn\303\251 De\303\241k_0.445518_2980.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87a43f46f059a0a5c51b6a1f18f67bc984ca64ad03092a29046428886c9ca21f +size 16450 diff --git a/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Ahmed Karahisari_0.4259451_2511.jpg b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Ahmed Karahisari_0.4259451_2511.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3e8e5219e522d6366b37add9fddb0fb99d7a24db --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Ahmed Karahisari_0.4259451_2511.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bed311fa332ad7b3283f8aa617dcfafd2fef91fc7d1bc2017c1d8c70d85cae98 +size 12628 diff --git a/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Alan Moore_0.4573369_2921.jpg b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Alan Moore_0.4573369_2921.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9735d6688a145951d2f62a7307faab9668ca4608 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Alan Moore_0.4573369_2921.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e6b7e21e6f9e3f5b03a35dad6ace53f6824e4d50c3a36f2fd95602d6b1a5cd0 +size 25620 diff --git a/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Alberto Biasi_0.42917693_1123.jpg b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Alberto Biasi_0.42917693_1123.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5a5c3170766af9bb32de9602ace580f4bd28e2d2 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Alberto Biasi_0.42917693_1123.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:45fb4ffc9d55d6625edb7ff14ddf54de45bbabd1f11db4ab60b2d9c0232509b9 +size 13888 diff --git a/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Aleksander Gine_0.4326849_3054.jpg b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Aleksander Gine_0.4326849_3054.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1ddfc45dc4db89d8e68af77b2faaa04c8a6410bb --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Aleksander Gine_0.4326849_3054.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc54937ed52685480106f866e2905dfb4a6b10a0c0860757d7ce94b69f56df1b +size 12500 diff --git a/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Aleksander Kobzdej_0.45552525_2929.jpg b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Aleksander Kobzdej_0.45552525_2929.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1bb674461365a090849bf28804b79322936c623c --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Aleksander Kobzdej_0.45552525_2929.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f44c07d8c6885c6a97393fbdf81223dbdf904fda0c25d22b040d8e4f3ef71da6 +size 11755 diff --git a/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Alex Alemany_0.43974748_2647.jpg b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Alex Alemany_0.43974748_2647.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0221898f7f86f6d66f39921e180b9fa31ac8e8fb --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Alex Alemany_0.43974748_2647.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:42cdda566f2662d20cc9f54cdde55ffc75fb4ae4eb5b147d01ee962281d6c6e1 +size 14498 diff --git a/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Alex Horley-Orlandelli_0.42623433_2911.jpg b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Alex Horley-Orlandelli_0.42623433_2911.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f828668073773309207572ef9c09bb6f6c8c9913 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Alex Horley-Orlandelli_0.42623433_2911.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9a7733dfead458161ef809efa915c92b6ffef9d27ac065701171a3017ccc4435 +size 12677 diff --git a/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Alex Ross_0.42460668_2017.jpg b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Alex Ross_0.42460668_2017.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7f3ae5d6b755d1433f46e83d9f5cbe5bcb9b0bbd --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Alex Ross_0.42460668_2017.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:281c4663f33794e3be771e4b82b70ff3aeb9db9ad55b0e34554853c2a3be9014 +size 19259 diff --git a/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Alex Schomburg_0.46614102_1932.jpg b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Alex Schomburg_0.46614102_1932.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6d6d6fe61e99e3787f5f868e887f5b8047c3e1c1 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Alex Schomburg_0.46614102_1932.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:840e5f9cf1a33cdc3f30d6c4f5b83cbb0b8aabd82a8f40668470674cc0ac7efe +size 22354 diff --git a/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Alexander Carse_0.46078917_2894.jpg b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Alexander Carse_0.46078917_2894.jpg new file mode 100644 index 0000000000000000000000000000000000000000..424a4b9c36cf4cfea0a48db6c46f96b52dab91e2 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Alexander Carse_0.46078917_2894.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:139eb14284722574868efc7e34caf98740b80c19b33009c582174121f7c12a0e +size 15502 diff --git a/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Alexander Ivanov_0.4539051_2597.jpg b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Alexander Ivanov_0.4539051_2597.jpg new file mode 100644 index 0000000000000000000000000000000000000000..85ef7fe961f2d171c0a2dd644d3b0a4148fe0a70 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Alexander Ivanov_0.4539051_2597.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:64d7dc55ead5d6c0eb723181f5856da8559a44f26785126b7e2c3843d4b9335d +size 11105 diff --git a/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Alexander Johnston_0.4326589_3055.jpg b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Alexander Johnston_0.4326589_3055.jpg new file mode 100644 index 0000000000000000000000000000000000000000..912894220cbfe57beae059c9a48ec23da8328237 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Alexander Johnston_0.4326589_3055.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d046474883239c4958b58bd8f3fa0f843dedcb34abf44ad5fc5ccbeaf02b83cf +size 13089 diff --git a/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Alexander Robertson_0.4300743_3077.jpg b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Alexander Robertson_0.4300743_3077.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5c324c0384b0574c4cfe30a4b6820eaed8f8a5b3 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Alexander Robertson_0.4300743_3077.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eb3e74964195aee7a98f83f3b4a87c37346936a9f4450667bace87714b92975f +size 15004 diff --git a/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Alexandre Jacovleff_0.3991747_1753.jpg b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Alexandre Jacovleff_0.3991747_1753.jpg new file mode 100644 index 0000000000000000000000000000000000000000..75eb1cbbd565c856e3e08c898c5285a033de92d6 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Alexandre Jacovleff_0.3991747_1753.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac486f020f2bd54d2044f79beeced121514a9144bae753034c8347c6a46d2378 +size 11775 diff --git a/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Alexey Merinov_0.4469615_2657.jpg b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Alexey Merinov_0.4469615_2657.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e1d84d459d966dc0c9ef31834906b962d6bb593b --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Alexey Merinov_0.4469615_2657.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b69feda761d7b89128f5c0395b5d31b43f8399839436fb7dde53b1a00a1e6af +size 12632 diff --git a/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Alexis Grimou_0.41958088_2551.jpg b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Alexis Grimou_0.41958088_2551.jpg new file mode 100644 index 0000000000000000000000000000000000000000..435303a78dcebac6e257fd357f5587f40883dca6 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Alexis Grimou_0.41958088_2551.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b84c59f8bfd4714f52b0b4cbc59f647cf2c314b1ae34d997535e44186aa51547 +size 13448 diff --git a/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Alexis Simon Belle_0.3190395_1628.jpg b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Alexis Simon Belle_0.3190395_1628.jpg new file mode 100644 index 0000000000000000000000000000000000000000..35f1032a1565497833fa58d85198268e2310d3ba --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Alexis Simon Belle_0.3190395_1628.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:70ca690e2b3ab55a56444bb6707949819fed774a86144a4fe6576304e63213bb +size 12420 diff --git a/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Alfred Krupa_0.47052455_2836.jpg b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Alfred Krupa_0.47052455_2836.jpg new file mode 100644 index 0000000000000000000000000000000000000000..42717d47b5ef0f7b035e622a448b07e984998389 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Alfred Krupa_0.47052455_2836.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d4cca2ee9472acaf26ada982b8cf88b89731b17b2b3ac92d9d6c99c0b6a88b78 +size 12501 diff --git a/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Alison Watt_0.43141022_2878.jpg b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Alison Watt_0.43141022_2878.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ce2ce574a6d23f2b038ff56ca8410335bee319b8 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Alison Watt_0.43141022_2878.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7bf15c8517920fe062d4b98a4d369c5035fa3f2ab28e5a4d6993bf7504c4bf1d +size 12125 diff --git a/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Allan Brooks_0.46882123_2842.jpg b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Allan Brooks_0.46882123_2842.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f717a069a6f0d4d91da63f3d35cc8465aea07513 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Allan Brooks_0.46882123_2842.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b24bf8a47279c7da27719e224b920794df57ff538ebda9516ecd7ca9ce0697ec +size 14203 diff --git a/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Allan Linder_0.46812692_2846.jpg b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Allan Linder_0.46812692_2846.jpg new file mode 100644 index 0000000000000000000000000000000000000000..32cb10ec765d15c1baceb02ec9d8e4bc61ba535f --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Allan Linder_0.46812692_2846.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:423bbd5acc6287adaa710e774bcff88793eff5e06f77d0eb671935edbdfaa0ce +size 17100 diff --git a/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Allen Tupper True_0.43556124_3034.jpg b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Allen Tupper True_0.43556124_3034.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fcb929dfcbc001a79110ee62b065e2e3bb7e12d8 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Allen Tupper True_0.43556124_3034.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:83d4895cf512907bcc0f3f3fbf0180992a7efdd0e02a8f55f9de4c29bb2cad52 +size 16405 diff --git a/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Alpo Jaakola_0.44981295_2961.jpg b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Alpo Jaakola_0.44981295_2961.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b90b4510ca2f6ed65ee807a258a0da30e41556b3 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Alpo Jaakola_0.44981295_2961.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:57fb5dd44387b3751c43dbf4280f40f6cc60384cbf504234a5fe32d8f28c2ab8 +size 15437 diff --git a/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Alton Tobey_0.4416385_3005.jpg b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Alton Tobey_0.4416385_3005.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f7788e2eafe8753095638561b256d310562b97dd --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Alton Tobey_0.4416385_3005.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f9f10bca84339f196a5e09186437c3eacaf74692183a4d21123485ef3266b2a +size 13937 diff --git "a/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Amelia Pel\303\241ez_0.46764764_2851.jpg" "b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Amelia Pel\303\241ez_0.46764764_2851.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..20e5ea5fc543783ebbaf40cae3e9882c83e17f9d --- /dev/null +++ "b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Amelia Pel\303\241ez_0.46764764_2851.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d3a388e7ee1d21f071c44e219e5873fb9cbbf07f10b5f6dd9ebc30a6de8ff886 +size 13413 diff --git a/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Amiet Cuno_0.41975892_2803.jpg b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Amiet Cuno_0.41975892_2803.jpg new file mode 100644 index 0000000000000000000000000000000000000000..898950d690ac9875afed17cfd6cf47ffccbcc700 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Amiet Cuno_0.41975892_2803.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:487f195a3c6230ea19b4cde1c13a8c6ba2ac344ff82ea7c0b7d27ee105e4a8be +size 16008 diff --git a/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Ammi Phillips_0.43095884_3068.jpg b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Ammi Phillips_0.43095884_3068.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bb516cd1ad2760d75f4077e6614068630133238d --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Ammi Phillips_0.43095884_3068.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec279b49b01320a4f569c8edcf46d1ccb5683c4e231e700e9e1f7d6c2eab498f +size 15672 diff --git a/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Amos Ferguson_0.4418735_3004.jpg b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Amos Ferguson_0.4418735_3004.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d0c53163f24d94baf0a428106d3d2e486f283e0c --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Amos Ferguson_0.4418735_3004.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a621273d8b4ab30340267e12666531a6c2ccb8f5d75b5b00e6ea8a1c0b7e73d2 +size 12799 diff --git "a/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Am\303\251d\303\251e Ozenfant_0.4585215_2914.jpg" "b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Am\303\251d\303\251e Ozenfant_0.4585215_2914.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..5659094f2af52edbce08d6a59cc2e521b042f914 --- /dev/null +++ "b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Am\303\251d\303\251e Ozenfant_0.4585215_2914.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e557147bfd4fb22902e59256126dff188ad9b94988bae89078087d348fe27137 +size 13579 diff --git a/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Andre de Krayewski_0.4628024_2879.jpg b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Andre de Krayewski_0.4628024_2879.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9dd845eeac92134fcfe533c514cb179292922cc9 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Andre de Krayewski_0.4628024_2879.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d32392fa0d0fbda7593ddcce7fad76e0471e226c374622df80df6647b1076e53 +size 12012 diff --git a/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Andreas Franke_0.4300047_2942.jpg b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Andreas Franke_0.4300047_2942.jpg new file mode 100644 index 0000000000000000000000000000000000000000..145566143d4187e8d31b3fffb6478fcabee5c586 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Andreas Franke_0.4300047_2942.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40d018a1a0aafa1e782e1ce9b1d5cacbb33e45b465cb10331c8b20750281d8f7 +size 17727 diff --git a/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Andreas Levers_0.42125136_2130.jpg b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Andreas Levers_0.42125136_2130.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7498134a58fa9834f7ee49be5678c1c54cf1e58b --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Andreas Levers_0.42125136_2130.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d4538f99df97386d2d7e7bc040b2a23edfa4ccaa57d8fbf0ec7ef79b35d4ef24 +size 10632 diff --git a/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Andrei Kolkoutine_0.44328922_2993.jpg b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Andrei Kolkoutine_0.44328922_2993.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d5a64e5681f18aa6417b1c5148292efa07d55841 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Andrei Kolkoutine_0.44328922_2993.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d991543489d3b8f7dd653b0fe9de0d232ed5cb40a677226eb5e50f8ae9b52f02 +size 13695 diff --git a/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Andrew Whem_0.43512022_3039.jpg b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Andrew Whem_0.43512022_3039.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1eeac6c0bcf2620d875b4645062a4537834f3b6f --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Andrew Whem_0.43512022_3039.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d71211bc482921b6d9b9bc5e1539a337338af42d58af6c7f7cf0a543d3822669 +size 11695 diff --git a/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Anita Kunz_0.4356005_3032.jpg b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Anita Kunz_0.4356005_3032.jpg new file mode 100644 index 0000000000000000000000000000000000000000..27b79fc3d07b5dfe7b2301a6f688619d464a1897 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Anita Kunz_0.4356005_3032.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee71183d514ccfcae55c2f7021a5cd362f536dbe7fa96ed5c4a73e1f19478ac1 +size 14533 diff --git a/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Anja Percival_0.45039332_1911.jpg b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Anja Percival_0.45039332_1911.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3e97d59c3ea7ed6be82e5cf3a48dd1a1d68a07cd --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Anja Percival_0.45039332_1911.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae587abf559f14749dcb30cb287fe0cef960a6ffb3eaf5035f60cc4140170bb2 +size 11933 diff --git a/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Anna Maria Barbara Abesch_0.4611045_2891.jpg b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Anna Maria Barbara Abesch_0.4611045_2891.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6bc5955786a975a5a5822b02dc3209f7a6077891 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Anna Maria Barbara Abesch_0.4611045_2891.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:757179ce3518a9883c9bec97dc8b3fb8a6fc58dfd94a0e8403e60f44927c3c86 +size 12784 diff --git a/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Anna and Elena Balbusso_0.59955937_1809.jpg b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Anna and Elena Balbusso_0.59955937_1809.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4b01ff70772d203d741c40e98470d4bc7d5d1339 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Anna and Elena Balbusso_0.59955937_1809.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ff7da6156104edcdac1ccd3915de59f4bbefae8069f73b6f21434893a745aba +size 15112 diff --git a/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Anne Dunn_0.46722376_2856.jpg b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Anne Dunn_0.46722376_2856.jpg new file mode 100644 index 0000000000000000000000000000000000000000..36362c459629e37e7acd00ea96749dc36fdeb2dc --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Anne Dunn_0.46722376_2856.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d15842bbcf0293c24305fee4c0176e92b861366e1f32bc0a0fe682f1d38ebd3 +size 14685 diff --git a/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Anne Geddes_0.45785287_2917.jpg b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Anne Geddes_0.45785287_2917.jpg new file mode 100644 index 0000000000000000000000000000000000000000..18dae0cb3a3657a022d4e6b72a568cad2427ab8b --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Anne Geddes_0.45785287_2917.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5980b8ebbbd3cede26213b6f489185099c9d662c052ef88601631ca975f4f8d7 +size 15217 diff --git a/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Anne Mccaffrey_0.4719924_2829.jpg b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Anne Mccaffrey_0.4719924_2829.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4ed9c447f5efb827f51bf455ccf1ded8a053dab2 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Anne Mccaffrey_0.4719924_2829.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:82bb9b12323caf1cafae923ebdd1ffcdbffcead9c9119c97db29efaf30b858cd +size 20826 diff --git a/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Anson Maddocks_0.46539295_2868.jpg b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Anson Maddocks_0.46539295_2868.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6681fbf203d802f07d26a159fe9ae8bcf09d9443 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Anson Maddocks_0.46539295_2868.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c3e6593e5bf4ca5af0d0c76127d3c08a17fa2c4998c8c32dafe037ac6610b66 +size 17077 diff --git a/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Anto Carte_0.4708289_2418.jpg b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Anto Carte_0.4708289_2418.jpg new file mode 100644 index 0000000000000000000000000000000000000000..92fe3d8e39b6a25b2053170b75d876641c83586d --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Anto Carte_0.4708289_2418.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:404431aa94ab8ca94b7cecbefccd605158e47c8fb211ab2c1199de850c1bef4a +size 18245 diff --git a/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Anton Graff_0.38569996_2976.jpg b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Anton Graff_0.38569996_2976.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0f1f61b147e19be01c12a2612f994bae89f09b65 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Anton Graff_0.38569996_2976.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e3617bbd09ec2092b73cf86f87ec09564c39287b18e88c97a9ab6c73b43973f +size 13156 diff --git a/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Antoni Pitxot_0.40582713_2525.jpg b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Antoni Pitxot_0.40582713_2525.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a5227bd75f91868c9f00d7edddc5fb867c601c56 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Antoni Pitxot_0.40582713_2525.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e8158f77619f319448b2a2169088b04d685d15b899eda43bd95a59d3cbfcc46 +size 14181 diff --git a/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Antonio Cavallucci_0.4645282_2872.jpg b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Antonio Cavallucci_0.4645282_2872.jpg new file mode 100644 index 0000000000000000000000000000000000000000..af0fee3ab8cfe26c58c222d342e73a036efa3d7c --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Antonio Cavallucci_0.4645282_2872.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18b28cb0e4c48b91bbae9974e76138c26fdb681fd8b9b83f4d657cd830540c34 +size 11858 diff --git a/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Antonio Donghi_0.4610982_2440.jpg b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Antonio Donghi_0.4610982_2440.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f4a325323c0cdc1c6a695e1285e025e8ea311066 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Antonio Donghi_0.4610982_2440.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e45a947620faeabf8bc397217268a1507cf6c9e8883a7f73fef17b24632c59b5 +size 10645 diff --git "a/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Anton\303\255n Chittussi_0.431248_3067.jpg" "b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Anton\303\255n Chittussi_0.431248_3067.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..b697580d1b26a4e43fb1c915189a482b25230982 --- /dev/null +++ "b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Anton\303\255n Chittussi_0.431248_3067.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc5226cfc22431a98fe0873de3e6a322ce8445e2c94fdfdd59d3b318f46b9120 +size 11297 diff --git "a/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Ant\303\264nio Parreiras_0.45269623_2946.jpg" "b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Ant\303\264nio Parreiras_0.45269623_2946.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..7749f1c318b644cccb1ed84b0db7294d6f53d30f --- /dev/null +++ "b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Ant\303\264nio Parreiras_0.45269623_2946.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:989bcfdb6f18221b6b8d609f74c78e4e631153b559a57db5daf057a523a61d94 +size 14437 diff --git a/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Araceli Gilbert_0.44399196_2985.jpg b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Araceli Gilbert_0.44399196_2985.jpg new file mode 100644 index 0000000000000000000000000000000000000000..758e120aa97a511b8fa9e2c60ad66df89d78ba27 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Araceli Gilbert_0.44399196_2985.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:abe8be3b1967d087fb3cf7a197a63fb78f1725a4b2ecf1bc69806839374b3af3 +size 16798 diff --git a/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Arent Arentsz_0.43373522_3048.jpg b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Arent Arentsz_0.43373522_3048.jpg new file mode 100644 index 0000000000000000000000000000000000000000..71edbd8604c87f4cbdb698e96d3ace4251635d51 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Arent Arentsz_0.43373522_3048.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71a305103dde98706555cac72092c4b4d1fcffc82b41fe29079a77bd26f1f1a2 +size 14927 diff --git a/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Arlington Nelson Lindenmuth_0.4683814_2844.jpg b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Arlington Nelson Lindenmuth_0.4683814_2844.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f211603cb36f2a4224c407b75622fbd74e9ecbd6 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Arlington Nelson Lindenmuth_0.4683814_2844.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71651c5f96459dcfceaf695647ce924cd1b8e84295c539ea10cf49afb4aec8ff +size 17586 diff --git a/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Armin Baumgarten_0.444061_2984.jpg b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Armin Baumgarten_0.444061_2984.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b5fa86b3dd5d6f695d2a6471d64763e71863808f --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Armin Baumgarten_0.444061_2984.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a2bbd49f2c781649eeba4feb60def2b9fb3306407a609bbf9789ced57b86785 +size 15768 diff --git a/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Art Brenner_0.42619684_2119.jpg b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Art Brenner_0.42619684_2119.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6a45dd8c745c2adf3975b09fb4b59ff50889a033 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Art Brenner_0.42619684_2119.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:93901fc02b60ab2e62ba168e090ffe1609571f842351ea255653b0e51be8b34f +size 14599 diff --git a/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Arvid Nyholm_0.46697336_2858.jpg b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Arvid Nyholm_0.46697336_2858.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bc890648dc179754edb2c072f481d786234f1d43 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Arvid Nyholm_0.46697336_2858.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:07b0ee55e9f672a801d9d662ac6b24fb4cf8440be44dd84fb68b9ca895411ed4 +size 12331 diff --git a/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Ashley Wood_0.4398396_3014.jpg b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Ashley Wood_0.4398396_3014.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6ff542372eb94a0f4fd4b00d6f551b6b377768f2 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Ashley Wood_0.4398396_3014.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c482da23001cf8796017f75d8a380f5a56c41b515b4bba5ca6f0abf141d78a6f +size 15814 diff --git a/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Auseklis Ozols_0.46569023_2865.jpg b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Auseklis Ozols_0.46569023_2865.jpg new file mode 100644 index 0000000000000000000000000000000000000000..40ec11d4c1bffd634db6550e6b6d272a6c3aa287 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Auseklis Ozols_0.46569023_2865.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ed9f7051d8a81365989df9922ccc6b2d50077d3830890e473001aea421b4ea4 +size 11423 diff --git a/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Aykut Aydogdu_0.43111503_2063.jpg b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Aykut Aydogdu_0.43111503_2063.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d115efb94436514f5e5c5de826b47f085176c3d1 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Aykut Aydogdu_0.43111503_2063.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:abab25137f2053d34f09245e0a4136a6794fc151658362f03d9a362ba2b39005 +size 14576 diff --git "a/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Ayshia Ta\305\237k\304\261n_0.463412_2877.jpg" "b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Ayshia Ta\305\237k\304\261n_0.463412_2877.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..e2c30a0546ec13efb3249aeec1ec741ebfa1c26b --- /dev/null +++ "b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Ayshia Ta\305\237k\304\261n_0.463412_2877.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:22658b7546520884a564292c8f261b689fd3858b404e7318c41e16c271c3557b +size 15485 diff --git "a/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Bal\303\241zs Di\303\263szegi_0.432244_3057.jpg" "b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Bal\303\241zs Di\303\263szegi_0.432244_3057.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..641686664200dab5a942b64493cb176dc7ae8fae --- /dev/null +++ "b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Bal\303\241zs Di\303\263szegi_0.432244_3057.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4fbb2f89c961f24aae59c95e30aea7ac64ad8721d194a6a8789f023c8496560d +size 10943 diff --git a/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Bauhaus_0.43454266_2604.jpg b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Bauhaus_0.43454266_2604.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a280bc87e0553b34d2181a4856fcd35c82d75268 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Bauhaus_0.43454266_2604.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ebc119657c41c34ea7f043ff5b860b0d873c5a5cf594f575549f76e650cb5b8d +size 15727 diff --git a/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Bedwyr Williams_0.44616276_2975.jpg b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Bedwyr Williams_0.44616276_2975.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bce59dac07232ff5066ea1084c5b47ebf0c8f77d --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Bedwyr Williams_0.44616276_2975.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ed975fec6347122423d207a5637a61462aca79f3d9b782d80602c114406dd2e +size 14011 diff --git a/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Beeple_0.40085253_2532.jpg b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Beeple_0.40085253_2532.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ca8f0d2298cf6a0f8e6a75031df1b34da5594218 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Beeple_0.40085253_2532.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:65d3ed56d63b010f9f56b707e89c0d043e5cb3c8c4dd9f50a3ea2a1db74335ab +size 10685 diff --git a/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Ben Thompson_0.43436068_3045.jpg b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Ben Thompson_0.43436068_3045.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1df377dfee7a10f8e8a0b3b25499e622f59825dd --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Ben Thompson_0.43436068_3045.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:414e892ccd4ceebaf683da6776c82a463283c4917f98910087c06d277e1c4f2b +size 11854 diff --git a/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Ben Zoeller_0.44368798_2989.jpg b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Ben Zoeller_0.44368798_2989.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8a5cc009ee1c4bcf8b7fbb9f49515f897b280412 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Ben Zoeller_0.44368798_2989.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b46c2c7c068f179d85fcdf3edb66e8357f2629c80525540195d1130c6f10373 +size 18693 diff --git a/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Bernardo Daddi_0.46088326_2892.jpg b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Bernardo Daddi_0.46088326_2892.jpg new file mode 100644 index 0000000000000000000000000000000000000000..af21e5cdcb087b33f01ad853596bca7c13d7b11c --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Bernardo Daddi_0.46088326_2892.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ec1f63e26be877e4b8c859bc481b45fc416a9486eb92917d44f773440ff2fac +size 12998 diff --git a/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Bertil Nilsson_0.45724383_2923.jpg b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Bertil Nilsson_0.45724383_2923.jpg new file mode 100644 index 0000000000000000000000000000000000000000..830560fb17802b66335bc3508a260e5313979100 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Bertil Nilsson_0.45724383_2923.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe69b2f25a2905fb20e9c633d3c6aa1b2dac93c4d88ead378327b5a258742f36 +size 14736 diff --git a/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Bertram Brooker_0.46176457_2887.jpg b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Bertram Brooker_0.46176457_2887.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a743cb439b136838fa2b290984b61f66290a9893 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Bertram Brooker_0.46176457_2887.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:05ffe8c25c72c2b6c555d77d1dbacd7d59f1447c76884cbf716099b5e30537c0 +size 12742 diff --git a/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Bess Hamiti_0.46062252_2898.jpg b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Bess Hamiti_0.46062252_2898.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ed080663ceeb77c701174f5feb9f9cf218d9ed0c --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Bess Hamiti_0.46062252_2898.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f4f302234dda92983a0edfbdd39172a539a824d22845b6223c00b114128efd91 +size 9937 diff --git a/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Bholekar Srihari_0.47387534_2819.jpg b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Bholekar Srihari_0.47387534_2819.jpg new file mode 100644 index 0000000000000000000000000000000000000000..06deb2cc3f15625b4fb7cb29bf17d80cf3a5782b --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Bholekar Srihari_0.47387534_2819.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:32c5d07c78c5efa3e2d8b5af8c454d0cffc0b957b8cc003360f795b5b1751953 +size 14300 diff --git a/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Bikash Bhattacharjee_0.45775396_2918.jpg b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Bikash Bhattacharjee_0.45775396_2918.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f9569b02dcf822bf05adfbf9c067f971626bcf28 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Bikash Bhattacharjee_0.45775396_2918.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba1ee521d496fa71c97c6c6f03e8a1f6ddfb70a842ce7e45ed5e939a00e02468 +size 16297 diff --git a/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Bill Durgin_0.4300932_3076.jpg b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Bill Durgin_0.4300932_3076.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9ba2185d4c0010b1cc6ddcc984dbec504318a24e --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Bill Durgin_0.4300932_3076.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:284fc188f0dcdf32e13269132f408fc69c34a8891d21bbc5ab643c9ba416f7fd +size 9562 diff --git "a/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Bj\303\270rn Wiinblad_0.45934483_2910.jpg" "b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Bj\303\270rn Wiinblad_0.45934483_2910.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..f3541d694d1d8c7a3f0c194c50fd46f24b4b9a1b --- /dev/null +++ "b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Bj\303\270rn Wiinblad_0.45934483_2910.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:759fabc0427e0fe7eb80bc1f36ef3027eed93a2d643cdae2012940edc956890f +size 13401 diff --git a/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Bohumil Kubista_0.4679809_2847.jpg b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Bohumil Kubista_0.4679809_2847.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7984670458f412ea9393844ce0a4cd9d143cc29c --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Bohumil Kubista_0.4679809_2847.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9717dff41590faa86f429d0b003a0b3f8c3e54f3f6a23866b589f5500c6584b2 +size 12854 diff --git a/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Brad Rigney_0.28446302_2885.jpg b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Brad Rigney_0.28446302_2885.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8e8b7af6cc64d6c607601a972c4b67f59ed502ee --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Brad Rigney_0.28446302_2885.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e0f032899b97d11aecc64373017c3eb7875c706ce1766f4f83dc7465b830e5d +size 11782 diff --git a/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Bradley Walker Tomlin_0.47462896_2814.jpg b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Bradley Walker Tomlin_0.47462896_2814.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2feb7272e50a80144401da9f60a9e968924a1e87 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Bradley Walker Tomlin_0.47462896_2814.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ccd2e4ab15df2f06253096ccc2fe4022cc8bc0945e3a7bb8b1014104d5bc178 +size 14398 diff --git a/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Breyten Breytenbach_0.4699338_2837.jpg b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Breyten Breytenbach_0.4699338_2837.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5ad302fe2f9190e5abdf1782e7c10e5832eae1ab --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Breyten Breytenbach_0.4699338_2837.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8c318f9de1f9c155555c9cb48172d851c77a34b42aeba1c4ca42022681cb787a +size 15247 diff --git a/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Brian Despain_0.41538632_2890.jpg b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Brian Despain_0.41538632_2890.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6996a74f0a1a55c9bbac6907c6c29d0c217deeac --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Brian Despain_0.41538632_2890.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85d01b1771de4c9b4f0009a9f57d1fdd4e67a293cd2d6ec97093ef7fdc904c22 +size 16161 diff --git a/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Brian Oldham_0.396231_1715.jpg b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Brian Oldham_0.396231_1715.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8c980a56e8d353abecedc4473e596c420775d80d --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Brian Oldham_0.396231_1715.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e234b1a543d9b8e63196ba5ee4da6e8229e98ef09192f2d3726c5d134110783 +size 14940 diff --git a/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Brothers Grimm_0.47249007_2825.jpg b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Brothers Grimm_0.47249007_2825.jpg new file mode 100644 index 0000000000000000000000000000000000000000..30cb94195259a95b528eab6962f3e2b0068d399a --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Brothers Grimm_0.47249007_2825.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e118aef496678e39103e07a16c44d8830f4d6ddecbb65af8b76134d5a7aea84e +size 22133 diff --git a/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Camilo Egas_0.4586727_2716.jpg b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Camilo Egas_0.4586727_2716.jpg new file mode 100644 index 0000000000000000000000000000000000000000..51fbec34c54fcd318e434abea4e4738495eb8626 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Camilo Egas_0.4586727_2716.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dee79d6b445a76c0e9e60154c3486533c6274ce3d136bec28163c614a1a885ec +size 14303 diff --git a/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Carey Morris_0.44388965_2986.jpg b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Carey Morris_0.44388965_2986.jpg new file mode 100644 index 0000000000000000000000000000000000000000..18b0c2438bf1df08f0be12a0f0ee3ef12821b073 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Carey Morris_0.44388965_2986.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:263e38780a1595d4b3eccf259673ac68c0a5ddeed8e7ea8627486087a42d251c +size 14767 diff --git a/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Carl Critchlow_0.4636_2876.jpg b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Carl Critchlow_0.4636_2876.jpg new file mode 100644 index 0000000000000000000000000000000000000000..099c9686c12b8b8c39ae3541e95dc37775c159df --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Carl Critchlow_0.4636_2876.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b4a47682bebafd46caf2a77330b25d0cc74a88a75d76c6dbb1f18779bb0b4ffc +size 16111 diff --git a/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Carl Hoppe_0.44270635_2998.jpg b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Carl Hoppe_0.44270635_2998.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ee5fc9160a39d6ab98cc390b3b29afac31f34b73 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Carl Hoppe_0.44270635_2998.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a3444b6a2044cc5ffaa62d1c18856b726fc6c15e4a861666ad4e75d6517a695b +size 12083 diff --git a/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Carles Delclaux Is_0.46734855_2853.jpg b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Carles Delclaux Is_0.46734855_2853.jpg new file mode 100644 index 0000000000000000000000000000000000000000..546667f9440997202014f638a3d0f835825c1aa8 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Carles Delclaux Is_0.46734855_2853.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a586abcb1587a6eaaea3d63be85efffc63e9d24fbe21908ec308822efdc55992 +size 14794 diff --git a/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Carlos Berlanga_0.440354_3012.jpg b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Carlos Berlanga_0.440354_3012.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ac408a80168dca33c208152f28dfc9c5cbb29034 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Carlos Berlanga_0.440354_3012.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e290aa5e70d8a140f32647ed9227cc2d245536750d8a1d156af9900e442cf7f +size 12864 diff --git a/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Carlos Saenz de Tejada_0.47332364_2394.jpg b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Carlos Saenz de Tejada_0.47332364_2394.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b78a1cd7b9d846c41741e521117a9d9b28ebdcd2 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Carlos Saenz de Tejada_0.47332364_2394.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b801638519b3550b4b3d44538fce185e9c379638bfad0db7c413a849869499c3 +size 13840 diff --git a/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Carlos Trillo Name_0.4470371_2969.jpg b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Carlos Trillo Name_0.4470371_2969.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f939b3b769c7d425bb5c4a1230552d92a12abfde --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Carlos Trillo Name_0.4470371_2969.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e6707b557d8b0ec9ba25eac3077366db579822068a5762375c5e115c8ab674a +size 12642 diff --git a/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Carmen Saldana_0.44076762_3010.jpg b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Carmen Saldana_0.44076762_3010.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c7e2550bbda43185927046e68b46e35cd8b75af4 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Carmen Saldana_0.44076762_3010.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0fc78020450e3c691dbb5f5c2397e766a197d5bea5ad8e7c7c7cc2bf28f27cc2 +size 10226 diff --git a/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Caroline Gotch_0.44263047_2999.jpg b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Caroline Gotch_0.44263047_2999.jpg new file mode 100644 index 0000000000000000000000000000000000000000..13cb5dcd0016251739084a59b66dec8316f3f147 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Caroline Gotch_0.44263047_2999.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e85b1ed0499a38ca09ea300da2c0f06b8a18d4b77e148d18a590b81ce313c73 +size 14139 diff --git a/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Cecile Walton_0.46672013_2196.jpg b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Cecile Walton_0.46672013_2196.jpg new file mode 100644 index 0000000000000000000000000000000000000000..66c1cc8dd51accf1de3e04764423968004eae461 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Cecile Walton_0.46672013_2196.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:674863be878b76e856080f33d876a4b980b25bd1bc8b1a9be2be35ad6e5663bb +size 13522 diff --git a/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Cedric Peyravernay_0.4200587_2598.jpg b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Cedric Peyravernay_0.4200587_2598.jpg new file mode 100644 index 0000000000000000000000000000000000000000..aca10b402b4e1a60c70b2185efac9c1daa32082f --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Cedric Peyravernay_0.4200587_2598.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:caa6072892b8d34dfd21f09a58e4a4b4e9c8ed3605fbcc9e25dc78d8037c8274 +size 12496 diff --git a/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Cedric Seaut (Keos Masons)_0.4317356_3061.jpg b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Cedric Seaut (Keos Masons)_0.4317356_3061.jpg new file mode 100644 index 0000000000000000000000000000000000000000..96799e90bce8224efd48730c1c28027725323d30 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Cedric Seaut (Keos Masons)_0.4317356_3061.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c328cde28f313a4507093bf224859ceec5922cc86b4370b3a142764948b411e +size 11718 diff --git a/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Cedric Seaut_0.43521535_3037.jpg b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Cedric Seaut_0.43521535_3037.jpg new file mode 100644 index 0000000000000000000000000000000000000000..47eae312d940aebb359d805d23dc3f3a978a3c78 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Cedric Seaut_0.43521535_3037.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ae758eae7994bd5a5724172a69e34b8a7cfc9b8dadd4595400ad7c480da0f1e +size 12019 diff --git "a/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Cefer\303\255 Oliv\303\251_0.46058378_2899.jpg" "b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Cefer\303\255 Oliv\303\251_0.46058378_2899.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..cfbc0a71467d40c8f9c989a89c48bfe74e590aa8 --- /dev/null +++ "b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Cefer\303\255 Oliv\303\251_0.46058378_2899.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:51df8c97d5d574793bdac47d2046cc99c85c36b3cdea4368dedbb47c451b7aa6 +size 12673 diff --git a/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Chica Macnab_0.4365166_3025.jpg b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Chica Macnab_0.4365166_3025.jpg new file mode 100644 index 0000000000000000000000000000000000000000..90b39036025db2eedb1b9ee0cf1dc4f67968704d --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Chica Macnab_0.4365166_3025.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d16cf255c9fdb456f7b7504a735111849958d159230e812b6270451795998d96 +size 15513 diff --git a/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Chris LaBrooy_0.45497298_1603.jpg b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Chris LaBrooy_0.45497298_1603.jpg new file mode 100644 index 0000000000000000000000000000000000000000..08eb85ef3bfc2656e30464a19d96372e40c932b7 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Chris LaBrooy_0.45497298_1603.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca026eb8ed4060df64e70d98adcdc918af2ad585dc004e6e72ae67a251710ad2 +size 15628 diff --git a/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Chris Saunders_0.41429797_2774.jpg b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Chris Saunders_0.41429797_2774.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2c8c14c905c5006beca7e4149cc47f4f8a8e7eb3 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-low-impact/digipa-low-impact_Chris Saunders_0.41429797_2774.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:66efee263e1e7bb53b6a33d61de343202a93b03353973ca4fe3e654e35526020 +size 16979 diff --git a/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_A. B. Jackson_0.4883623_2732.jpg b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_A. B. Jackson_0.4883623_2732.jpg new file mode 100644 index 0000000000000000000000000000000000000000..50e8e8dc83bf4d34714915363369303bfef5fd33 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_A. B. Jackson_0.4883623_2732.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b3716c5e08f045b1c6c53c508fbdf48a90bf04af7a683df46613c74ce5869677 +size 19138 diff --git a/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Aaron Bohrod_0.48175076_2773.jpg b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Aaron Bohrod_0.48175076_2773.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a31588608d67a53d1a711b51860ce01effef9318 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Aaron Bohrod_0.48175076_2773.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8a85ba47655f11ec9627df765a230440a59ade49294e94bc99066cb4ac0b8df8 +size 15139 diff --git a/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Aaron Siskind_0.4852289_0485.jpg b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Aaron Siskind_0.4852289_0485.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2455e0d40667f5474e343193feb631894ec2faf1 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Aaron Siskind_0.4852289_0485.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c6ad5208f370e5de1aa2effd55f61d725d0b4c8759a4c0436602d1d6c6538ee +size 14520 diff --git a/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Abdel Hadi Al Gazzar_0.49631482_2682.jpg b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Abdel Hadi Al Gazzar_0.49631482_2682.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d4e4bd4a6a2195e952e7b67a1b74445ab0c65b69 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Abdel Hadi Al Gazzar_0.49631482_2682.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd1f1b40bf3d4a5cd48aa866f41f2f3a5174f95e9b6fa11ade28b01141e5420e +size 13498 diff --git a/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Abed Abdi_0.4948855_2688.jpg b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Abed Abdi_0.4948855_2688.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7f695d00b03b1c7501ac9734c566f6e72f37deee --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Abed Abdi_0.4948855_2688.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7550dd38d65ef927a3b1ef2760d622046d17e953c4ec0efd3e60611bd184a58c +size 14938 diff --git a/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Abraham Begeyn_0.5172538_2556.jpg b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Abraham Begeyn_0.5172538_2556.jpg new file mode 100644 index 0000000000000000000000000000000000000000..96e79d3b2bcbb760f135f2f0ac65780da8e7ee91 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Abraham Begeyn_0.5172538_2556.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:422331707c80a5b9ee03bd7dbf20dd2c9cfa00007b905419eeecd0a13a5bb05a +size 11044 diff --git a/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Adam Martinakis_0.48973057_1481.jpg b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Adam Martinakis_0.48973057_1481.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f0fbc1ed2b8e29c09874329bf1bbe3e24c756e78 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Adam Martinakis_0.48973057_1481.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b755f8d35371e73a8f238aee0f01e8fde5f1c1d2473dc0fca599c4c8e31a76d +size 14482 diff --git a/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Adonna Khare_0.4858036_2441.jpg b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Adonna Khare_0.4858036_2441.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7fc06eb46539385d239cfbfb7b967fc678586381 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Adonna Khare_0.4858036_2441.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff21fa14f7724557c049815110c366eb8910170c48e6e52297fecddd02d58aca +size 14929 diff --git a/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Adrian Paul Allinson_0.48211843_2769.jpg b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Adrian Paul Allinson_0.48211843_2769.jpg new file mode 100644 index 0000000000000000000000000000000000000000..79e8954d2b6ff945bd8d0297118ecfb0f529e7bd --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Adrian Paul Allinson_0.48211843_2769.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e539fd487e6d49bce72af7f433e4e86260e1efb07579a6d10eb571722c7d2ac +size 13387 diff --git a/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Aert de Gelder_0.519166_2408.jpg b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Aert de Gelder_0.519166_2408.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b31f1050cae522f90cf4b795f9458ba4f149a3a4 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Aert de Gelder_0.519166_2408.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9efb86a8b23839706e4feaefe33f255c638c520b258c193bc1c074ea360e6a08 +size 10153 diff --git a/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Aileen Eagleton_0.49318358_2701.jpg b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Aileen Eagleton_0.49318358_2701.jpg new file mode 100644 index 0000000000000000000000000000000000000000..43645fa313706b96db044333dc6ab389eb45b4b5 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Aileen Eagleton_0.49318358_2701.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ddd50ae698b842ba6b6b4a4fc78ee69c2244b170eb826804fa35e835f8152e7 +size 11378 diff --git a/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Alasdair Grant Taylor_0.47802624_2797.jpg b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Alasdair Grant Taylor_0.47802624_2797.jpg new file mode 100644 index 0000000000000000000000000000000000000000..96cf16583a864a8fa81b766d7e73495b876163e1 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Alasdair Grant Taylor_0.47802624_2797.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ba440d0bb23501922984fef21b460a22599c0f615a28de6b6a49c81bb4c75cd +size 9565 diff --git a/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Albert Keller_0.47825447_2795.jpg b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Albert Keller_0.47825447_2795.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ae7ceeca15a424c75b726bab1997234132a953bb --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Albert Keller_0.47825447_2795.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e61e9ac1f8921324f169facc304e62372b3940fd1b3ae9fcb33d5353d457f751 +size 12714 diff --git a/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Albert Tucker_0.4854299_2747.jpg b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Albert Tucker_0.4854299_2747.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0b6cc86a985a2cc62b4390f0b112d86ede09a311 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Albert Tucker_0.4854299_2747.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da2aa2de74187b399e91c6098f6040bf5c72b3e6acc77afecd5f16019f83823f +size 12456 diff --git a/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Albert Watson_0.48901254_0182.jpg b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Albert Watson_0.48901254_0182.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2fe678bf2c449a3f337dd2b19a388ac1ce74479b --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Albert Watson_0.48901254_0182.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:daac0bafdf27b32ac01afc7815dc828e68275b76e270db8907400b425b7c395f +size 16255 diff --git a/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Alberto Magnelli_0.5103212_2608.jpg b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Alberto Magnelli_0.5103212_2608.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ade753778d2f4b47f647924829a6ffa1e2141174 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Alberto Magnelli_0.5103212_2608.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ea4b9b7faede09f959b9eb53a6027bb1327634d35c4abe28a39ed34fd0e91f8f +size 14519 diff --git "a/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Alejandro Obreg\303\263n_0.5190562_2545.jpg" "b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Alejandro Obreg\303\263n_0.5190562_2545.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..163bff67597017ad471bd113dd1159d910a45194 --- /dev/null +++ "b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Alejandro Obreg\303\263n_0.5190562_2545.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f3595c4950163894d031aca37b97b692d4bdcb767b5634096f42c783b76e5129 +size 10454 diff --git a/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Aleksander Kotsis_0.4953621_2684.jpg b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Aleksander Kotsis_0.4953621_2684.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a4627f4e19c2888bb6d6d53ab732332528f6f6b8 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Aleksander Kotsis_0.4953621_2684.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c358c634ef140ee6eccc488775f659652a7346669da5ee1c1b8e742d8589391 +size 13133 diff --git a/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Aleksandr Gerasimov_0.48736423_2738.jpg b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Aleksandr Gerasimov_0.48736423_2738.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c196be2199cef35a8d01b8ef39f179f928cc706d --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Aleksandr Gerasimov_0.48736423_2738.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e1357e1ada885a2e9a6424d00ae60621d2c9baffb2346417e0dec321502383e2 +size 14271 diff --git a/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Alesso Baldovinetti_0.49849576_2674.jpg b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Alesso Baldovinetti_0.49849576_2674.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a359dee33c94265bcf5299f6e74871b0481e8baa --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Alesso Baldovinetti_0.49849576_2674.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef9e75aa8ff1b9ee930fc464def858b78c5600800dd2605f5bb37dcf1b40c375 +size 14391 diff --git a/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Alexander Bogen_0.48421195_2751.jpg b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Alexander Bogen_0.48421195_2751.jpg new file mode 100644 index 0000000000000000000000000000000000000000..91d16a4b2c0bf168f1d168393d568427ff999e13 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Alexander Bogen_0.48421195_2751.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c3fad2b132ae429b16a9316a1793afcd62a1d08ed7b58714afe71bde06f8419 +size 14954 diff --git a/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Alexander Fedosav_0.48360944_2758.jpg b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Alexander Fedosav_0.48360944_2758.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ecfd600836966d18be5683575e2968f66fed60c6 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Alexander Fedosav_0.48360944_2758.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6671e9fdd67fbfa6bccf15c6e6e5d6d01d784139aed1d7296c0e7d8b8df5b7c7 +size 14596 diff --git a/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Alexander McQueen_0.5101986_2610.jpg b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Alexander McQueen_0.5101986_2610.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f4181164a3d61f8d509a15e7fab272ac6ea6ad28 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Alexander McQueen_0.5101986_2610.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:571a98389abfc5f08c966147c3e44fb2cfa5f222ec8ec407d9db5d7c84737525 +size 19441 diff --git a/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Alexander Sharpe Ross_0.49519226_2686.jpg b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Alexander Sharpe Ross_0.49519226_2686.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ea9a3914f4ae776fe1fe6f50f2010c35ad5bb72c --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Alexander Sharpe Ross_0.49519226_2686.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:22b2d4a94c3b9ffa91851984c9d7060c3d876f3d69e20d82343a9fe6fe5fc4c9 +size 13015 diff --git a/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Alexei Harlamoff_0.48255378_2765.jpg b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Alexei Harlamoff_0.48255378_2765.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2dea973745dc391d5370f60e0f8f8a968c9ef124 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Alexei Harlamoff_0.48255378_2765.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:377f1746a671f8860c66076ff33386c420d6e7e522f28365c8343f9a7e2c9411 +size 10494 diff --git a/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Alfons von Czibulka_0.4801954_2779.jpg b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Alfons von Czibulka_0.4801954_2779.jpg new file mode 100644 index 0000000000000000000000000000000000000000..eb2623c91dd3709f5f4a15a6668500c8d7002fa6 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Alfons von Czibulka_0.4801954_2779.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:035adec4c943517f8438ad8b9422bf07001739461c82fc405581d578829ab692 +size 10837 diff --git a/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Alfred Jensen_0.49291304_2704.jpg b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Alfred Jensen_0.49291304_2704.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e7697e8001a005f79ec39f16eb8392231f7db30d --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Alfred Jensen_0.49291304_2704.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fcaa870c75be97f42f1ee9d7d2a3ae164f824fff3d76f219d868af6eafcc0eba +size 10531 diff --git a/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Alfred Parsons_0.5127445_2586.jpg b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Alfred Parsons_0.5127445_2586.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c1f33f9ded6e7c2ffde2131670e1d66a49761bd8 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Alfred Parsons_0.5127445_2586.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:618c0af71e891152c92e7f601c5a6c584f7f6d945eae8e3802fd07030a43bd1a +size 13791 diff --git a/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Alfredo Volpi_0.49367586_2698.jpg b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Alfredo Volpi_0.49367586_2698.jpg new file mode 100644 index 0000000000000000000000000000000000000000..edace3c3b64955fac598de0dbbd9ab5700b2a80f --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Alfredo Volpi_0.49367586_2698.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab0ae92416a43d7af9005709c08303d407f9fdc4594721ef9bc8ee2f3288d3b8 +size 12112 diff --git a/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Alison Debenham_0.4998683_2670.jpg b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Alison Debenham_0.4998683_2670.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5721c0a9ac35ab404b3dad8335bf25e250fa7f25 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Alison Debenham_0.4998683_2670.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:75d49bc794956697f69df12033707891c0cdac448ddc9d676c6bc5bf55cf0532 +size 18752 diff --git a/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Allen Williams_0.47675848_2805.jpg b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Allen Williams_0.47675848_2805.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8227d8fa2edd88aeb9744f239159d4ac41b6c263 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Allen Williams_0.47675848_2805.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:48acbb84bb16127036cf3d7f18154b74f1ae5bbc43f48385c6d1734a14998613 +size 17066 diff --git "a/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Almeida J\303\272nior_0.515856_2568.jpg" "b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Almeida J\303\272nior_0.515856_2568.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..958fac38149a9778648b3faa25ce5ab32c11dd08 --- /dev/null +++ "b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Almeida J\303\272nior_0.515856_2568.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c9324dee40c5ad4c9a708b44769c9a5301dfb9352cff66e73d3d5ac8c9ea62d4 +size 11126 diff --git "a/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Alonso V\303\241zquez_0.49205148_2708.jpg" "b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Alonso V\303\241zquez_0.49205148_2708.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..d3b3cc1c7e02403df6c323d9ef3d4fc5be8a897b --- /dev/null +++ "b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Alonso V\303\241zquez_0.49205148_2708.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:440f1b8442c39d997ba36206d78abd4a14bc1a9b3ecac8d16c721a9cb9bea0e8 +size 12512 diff --git a/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Aloysius O'Kelly_0.5102891_2609.jpg b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Aloysius O'Kelly_0.5102891_2609.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a6d36eec697eb0426cda99d0180f736cd325164e --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Aloysius O'Kelly_0.5102891_2609.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee243c9bee17a15745764b834b1c7c909af4186366ddaaaa30a18fa78ca11f19 +size 11459 diff --git a/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Altoon Sultan_0.4820177_2770.jpg b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Altoon Sultan_0.4820177_2770.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7bd893c4a274b83a63161789f92a3f1fd6783323 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Altoon Sultan_0.4820177_2770.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e6caef51bb443e8c6df23ecd209827426f837f178f07872b8d70f6852228b605 +size 13214 diff --git a/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Alyssa Monks_0.50734174_2630.jpg b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Alyssa Monks_0.50734174_2630.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a38325a19ef227ede3bedc0cf5859e29a3e65703 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Alyssa Monks_0.50734174_2630.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e7f614399bf1a42ec2ceb299d9f27031584c9d131ca6781ec1fb7cce6e1ac70 +size 11307 diff --git a/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Amedee Ozenfant_0.47950014_2780.jpg b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Amedee Ozenfant_0.47950014_2780.jpg new file mode 100644 index 0000000000000000000000000000000000000000..729b64417100d2738f6a51904ab94d74fa63780d --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Amedee Ozenfant_0.47950014_2780.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:312c758f14dce44dfdb1f5771b19477a5a1d582c9a3ed03707e2e3ea9206c356 +size 17375 diff --git a/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Americo Makk_0.5034161_2655.jpg b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Americo Makk_0.5034161_2655.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a46271b768aed862405f317372a3c1ce25304386 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Americo Makk_0.5034161_2655.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:02a2b45d84078dfb79c4b2e6afe1b4ababffa3145b8b00bf7ba6417a302aa9f1 +size 15203 diff --git a/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Anatoly Metlan_0.48020265_2778.jpg b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Anatoly Metlan_0.48020265_2778.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3ffd070ed4f67a9a68b82bceebd56596da666852 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Anatoly Metlan_0.48020265_2778.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:447e466b1d8e782c7d63a3ccdbcb507c220dee16b3a8258137194f9b47794b3a +size 13148 diff --git a/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Ancell Stronach_0.5084514_2624.jpg b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Ancell Stronach_0.5084514_2624.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5b9e9c310486097745449242e158af1541b930d7 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Ancell Stronach_0.5084514_2624.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ec9de26ede5d23fbd381dfd39751af156fada9e6aa8916969731ebed5d47a79 +size 15399 diff --git a/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Andre Norton_0.5007602_2662.jpg b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Andre Norton_0.5007602_2662.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b231bdcdf9abe83efa670dc2b81240dd5ab14e3f --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Andre Norton_0.5007602_2662.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e33e090f9b7f8bf0c831b8a063043e5f9dea2b5d4cb5e3fcfc7606fb15727802 +size 18105 diff --git a/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Andrea Kowch_0.51822996_2549.jpg b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Andrea Kowch_0.51822996_2549.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e0428f421963c7a5740fe2a0255405792d979055 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Andrea Kowch_0.51822996_2549.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eb7177f94db49de9205b90085cc7e3527249a26ee7d42cbe89f5ed7d0df10b1d +size 11086 diff --git "a/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Andr\303\251 Castro_0.4771826_2802.jpg" "b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Andr\303\251 Castro_0.4771826_2802.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..f164ee28915744c0db632018d7a0aa875d3b7e22 --- /dev/null +++ "b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Andr\303\251 Castro_0.4771826_2802.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:624798520155050fe5e7e52d459cd80dde730f255bcfd912dd5f23339a3076ec +size 11541 diff --git a/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Aniello Falcone_0.51475304_2575.jpg b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Aniello Falcone_0.51475304_2575.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9d2af79484e89717796f3e3655e31631f26a405d --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Aniello Falcone_0.51475304_2575.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a03158e14837f2ca45b88cc1b96d7487635e0ad117533a8a29dad9c9d6e79cd +size 10286 diff --git a/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Anita Malfatti_0.5080986_2626.jpg b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Anita Malfatti_0.5080986_2626.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8fcdb5792bbf0a2fcec6a8561918bb0d12cd5dc7 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Anita Malfatti_0.5080986_2626.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8388462b2d85abc6854e0b8a2e28302d706cda213dcf9226ac81676c37d5be0c +size 14386 diff --git a/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Anna Haifisch_0.47672725_2806.jpg b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Anna Haifisch_0.47672725_2806.jpg new file mode 100644 index 0000000000000000000000000000000000000000..105a9b54ec39134c368da71cb115e3fc9d455d2c --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Anna Haifisch_0.47672725_2806.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cbf09eb11160f3ac4c5aa2ffe227e6ced31ccd77c1327cb920a591a2a3416c84 +size 13891 diff --git a/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Anna Razumovskaya_0.5229187_2290.jpg b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Anna Razumovskaya_0.5229187_2290.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7c7b1e4749e3a44661048958f18246d9765c5ec2 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Anna Razumovskaya_0.5229187_2290.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1486aa5ca726a34c550e0ad51dce409e7a89201d585273240ecf03c8262e1492 +size 12258 diff --git a/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Annabel Eyres_0.51136214_2599.jpg b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Annabel Eyres_0.51136214_2599.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f4cc5420ae5949b490b46e83d0d20de48cada61d --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Annabel Eyres_0.51136214_2599.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:461607eb1e3aa1cdcd44520154e9a9df73d58e2cdc10283e5ece817c5a10555c +size 12502 diff --git a/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Annabel Kidston_0.51327646_2582.jpg b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Annabel Kidston_0.51327646_2582.jpg new file mode 100644 index 0000000000000000000000000000000000000000..52ece7e2d6a99177c0804000a4c2cf62af5df355 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Annabel Kidston_0.51327646_2582.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:10e6f12d5db4140c9125e9a75983aa833932ba94365f52f84613965350bab247 +size 16511 diff --git a/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Anne Rigney_0.48357943_2759.jpg b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Anne Rigney_0.48357943_2759.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3e17b476a9a13606aa6e2528018076371c07ab2c --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Anne Rigney_0.48357943_2759.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71cf94e19dec7acec09f350b277bd9aab82cd14a49662d85fbf9947cfb76543b +size 17139 diff --git a/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Anne Ryan_0.48511976_2749.jpg b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Anne Ryan_0.48511976_2749.jpg new file mode 100644 index 0000000000000000000000000000000000000000..65f6440fa4f6dda6015f7c3cbbed602c3a88f7c7 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Anne Ryan_0.48511976_2749.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:63b3a9a9c1e871756d576510622027adc418464ce1334e852777b6513806c4ac +size 15616 diff --git a/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Anne Said_0.49473995_2690.jpg b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Anne Said_0.49473995_2690.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7c7e964b24bf966f61a0bb9bc8a12b422a100476 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Anne Said_0.49473995_2690.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:38b611722377722860b54809e34867418da9f7344810e8c12c94c21df14ad53a +size 14167 diff --git a/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Anne Stokes_0.4786997_2788.jpg b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Anne Stokes_0.4786997_2788.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c360d48cfb910fda86877c69a5434be74758e55d --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Anne Stokes_0.4786997_2788.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ab2268ccc8ccf6abbc9d36935c04c49d29c5e8a4f218b72dd7b77e194723ee4 +size 18515 diff --git "a/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Anton M\303\266ller_0.5127209_2587.jpg" "b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Anton M\303\266ller_0.5127209_2587.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..b263e08b64489f5ecede66cff55a1560cd415f9e --- /dev/null +++ "b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Anton M\303\266ller_0.5127209_2587.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:195182485bf1544393f27b8a49885ef8078b9239a92a5d842d6752f4486314e8 +size 14802 diff --git a/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Antonio Roybal_0.4792729_2783.jpg b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Antonio Roybal_0.4792729_2783.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fa194de1cd7d0ca3c89f575e9f7f03a2c0031673 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Antonio Roybal_0.4792729_2783.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a48e7a4fb0c983c7d1f248cad2f91d0903c8ad23a60dc7640e371023ab3e1132 +size 11161 diff --git a/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Arabella Rankin_0.50572735_2641.jpg b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Arabella Rankin_0.50572735_2641.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7a59229377924a312336e91cdde72875eb7a82c0 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Arabella Rankin_0.50572735_2641.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c3ef665aeb41c228a7b38ec048310b5d72e76b7c2baccdc19b5fb1c380aead97 +size 16800 diff --git a/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Aries Moross_0.4863676_2742.jpg b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Aries Moross_0.4863676_2742.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f6f52831419361bbc1a0f5394b05ff8b61c1f49f --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Aries Moross_0.4863676_2742.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:30e6bdd559b1c6570cafb31cdf9d733d780fa63a8f5378b8cd2482f1fc86d841 +size 14916 diff --git "a/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Arnold Br\303\274gger_0.5080749_2627.jpg" "b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Arnold Br\303\274gger_0.5080749_2627.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..416bc462a3ffa4975548f50d0df38b9836c13f5b --- /dev/null +++ "b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Arnold Br\303\274gger_0.5080749_2627.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:89f3fb3e541c4577a2db094f53ac1fcc830613e2a50568baae700804b93a13e0 +size 13835 diff --git a/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Aron Demetz_0.49895018_2673.jpg b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Aron Demetz_0.49895018_2673.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c5835919dcec82c2dd53ae8ae1be9ac02f21c164 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Aron Demetz_0.49895018_2673.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f700b7e499ab4381cf13cd3e01885f9dda56859c36db7c314e5b2fc31ae9fcf6 +size 14354 diff --git a/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Avigdor Arikha_0.49384058_2696.jpg b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Avigdor Arikha_0.49384058_2696.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2e0faeb450cf6d6c81bad15a4e6ef93a590d6f83 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Avigdor Arikha_0.49384058_2696.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a1e32701051633d0d27602af0f74e32152d85f0ce63e2015176bf535a0951fff +size 11296 diff --git "a/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Axel T\303\266rneman_0.49401706_2695.jpg" "b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Axel T\303\266rneman_0.49401706_2695.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..e7baa1f41d2754d2f811641c3f5a36aebcef03fb --- /dev/null +++ "b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Axel T\303\266rneman_0.49401706_2695.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b09fc539e7387209da49f68eaa43624ed98040f2c5bbd2682ea27e1c8f5b4e4b +size 10522 diff --git a/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Balcomb Greene_0.5162045_2564.jpg b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Balcomb Greene_0.5162045_2564.jpg new file mode 100644 index 0000000000000000000000000000000000000000..594123726a9266a2515bc9213419df93a94f23f8 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Balcomb Greene_0.5162045_2564.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:27b98b9e038b0b355fd3b1134a91330c5a170f073698f2bf00118c2d219b3258 +size 18046 diff --git a/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Barbara Greg_0.50674164_2635.jpg b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Barbara Greg_0.50674164_2635.jpg new file mode 100644 index 0000000000000000000000000000000000000000..34dea4f8d7534edcdfad05d1fcc74047ffefcede --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Barbara Greg_0.50674164_2635.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af7289e714d1a9193d45dc4dca4c6b6978560061a0747f0355cd84141f93bf79 +size 13639 diff --git a/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Bartolomeo Cesi_0.5136737_2580.jpg b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Bartolomeo Cesi_0.5136737_2580.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6c692af59a7c249347cdb99583da4de9142b8d6f --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Bartolomeo Cesi_0.5136737_2580.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e2ad91e40430142a09eab39dfed0aa18825da26a7b6542ab52c849030c1f84e +size 12180 diff --git a/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Basuki Abdullah_0.50613165_2638.jpg b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Basuki Abdullah_0.50613165_2638.jpg new file mode 100644 index 0000000000000000000000000000000000000000..680d5aa5d9cf8a684cc3f7fc4a4c42a46ec165c0 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Basuki Abdullah_0.50613165_2638.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c499c52160aa2ea7fb9409b7932f33f64b10fa31af2b5b10411c5dd9194ce68a +size 18275 diff --git a/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Benedetto Caliari_0.52370214_2517.jpg b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Benedetto Caliari_0.52370214_2517.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ba028feed0dce799255d575e28c518b324f5f1f1 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Benedetto Caliari_0.52370214_2517.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19363a7add8bd6aac06e42a247b8f93cb306f4c1bea886a171976c89912823f9 +size 14876 diff --git a/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Benoit B. Mandelbrot_0.5033001_0428.jpg b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Benoit B. Mandelbrot_0.5033001_0428.jpg new file mode 100644 index 0000000000000000000000000000000000000000..568a6e43daf795e41edbd9406194c3559e329e30 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Benoit B. Mandelbrot_0.5033001_0428.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afe99951e534bed9e8b109f1e4b60d746e45b8a944b1fb6bb8bbf738a04f25e8 +size 18014 diff --git a/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Berndnaut Smilde_0.50864_2621.jpg b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Berndnaut Smilde_0.50864_2621.jpg new file mode 100644 index 0000000000000000000000000000000000000000..575bbe175ba752e177befe1b8d690929e6502dc6 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Berndnaut Smilde_0.50864_2621.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:026ed0ad9386166afe358ba3f906354a53c9f59644471399c1f89bf68a717eef +size 11410 diff --git "a/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Bernie D\342\200\231Andrea_0.48813275_2733.jpg" "b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Bernie D\342\200\231Andrea_0.48813275_2733.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..32c3a57cc64d002b0bb1f66720380bbb6de98799 --- /dev/null +++ "b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Bernie D\342\200\231Andrea_0.48813275_2733.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2dc4c95a28825d532fdacbec9dd95dea87e6871f8e583bc23cff2009638e6a46 +size 13549 diff --git a/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Bertalan Karlovszky_0.48338628_2760.jpg b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Bertalan Karlovszky_0.48338628_2760.jpg new file mode 100644 index 0000000000000000000000000000000000000000..99342c7b5c2e34ede43a13a5172a74a48402ac06 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Bertalan Karlovszky_0.48338628_2760.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b06510dddcdd868131cf9f19da3b7de0be67dfa4c9ff86cd4910b4358110fe27 +size 10554 diff --git "a/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Bertalan P\303\263r_0.4930132_2703.jpg" "b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Bertalan P\303\263r_0.4930132_2703.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..09aad084afd3a2b31fe0b2160c5ccdec44ae42dc --- /dev/null +++ "b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Bertalan P\303\263r_0.4930132_2703.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06a683b5a92413db2091e2fef69aa7fe5ba482746106245514fdc73869722b2e +size 10831 diff --git a/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Bettina Heinen-Ayech_0.51334465_2581.jpg b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Bettina Heinen-Ayech_0.51334465_2581.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f870df1731ba61bbf6bdd51189ab2d5df80c07e0 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Bettina Heinen-Ayech_0.51334465_2581.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c7349964e06d5f7a5b7c72e90aa712d8fd7634a6ff8241eb0ea617cb2737fe50 +size 14831 diff --git a/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Bill Gekas_0.48848945_2728.jpg b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Bill Gekas_0.48848945_2728.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ff6231364204bc40babfc19b9678e2efecb1d10f --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Bill Gekas_0.48848945_2728.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a00884a26ee9deaacb08793a0bab1d066e4540545975e9c67575bf15d3e03eb +size 13506 diff --git a/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Bill Lewis_0.48635158_2743.jpg b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Bill Lewis_0.48635158_2743.jpg new file mode 100644 index 0000000000000000000000000000000000000000..49c4e1894d546f760efc19708582cbedb82a1e79 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Bill Lewis_0.48635158_2743.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:20c137a8d2693b161b4ac252e062ee18479b405c7c1b1a6e0f9ed390cb26c309 +size 14433 diff --git a/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Blek Le Rat_0.49008566_2720.jpg b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Blek Le Rat_0.49008566_2720.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4fa7c2f68bbb9792518590b4a2ba25517823c5d6 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Blek Le Rat_0.49008566_2720.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b8a379fa43613d59f75154519d5727bb18bb1aa6f62fc79cf7c15ce35af89fc9 +size 19671 diff --git a/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Bo Bartlett_0.51341593_2514.jpg b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Bo Bartlett_0.51341593_2514.jpg new file mode 100644 index 0000000000000000000000000000000000000000..dc5c934ab24821fd40c839ad4e5e21a6992b8038 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Bo Bartlett_0.51341593_2514.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1832775270e4abadeb2b29adc6b11a2b282d90f9c424e7d7f27703f2771c4d83 +size 11981 diff --git a/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Bouchta El Hayani_0.49455142_2692.jpg b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Bouchta El Hayani_0.49455142_2692.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a080457eb7da125407aaf18ecc94f531e2e89dec --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Bouchta El Hayani_0.49455142_2692.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b835c877cc83b0b823d0fbf1f188a647b57ec7eb08444f83bf4152de79041396 +size 13701 diff --git "a/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Bo\305\276idar Jakac_0.4763106_2810.jpg" "b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Bo\305\276idar Jakac_0.4763106_2810.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..f5a7bc3fe29a195c8eb4c6e314fe6d581e423161 --- /dev/null +++ "b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Bo\305\276idar Jakac_0.4763106_2810.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f1e070b64f91546d79e385adf0bc1eb250c1749045aba2c740503b095ebe1c4 +size 11074 diff --git a/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Brooke DiDonato_0.47680336_1733.jpg b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Brooke DiDonato_0.47680336_1733.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5ab3ea15a58a2aa6cf4ee6b837b4d4fbfca52223 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Brooke DiDonato_0.47680336_1733.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ea798ca2b33f3e91399aee67620ed1ba27c8d560ee3a7313438acdf7bd11a2a2 +size 9877 diff --git a/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Buckminster Fuller_0.51607454_2566.jpg b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Buckminster Fuller_0.51607454_2566.jpg new file mode 100644 index 0000000000000000000000000000000000000000..05b5090b096acb4a0707c0b4b5bbdd6f6d2d1f58 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Buckminster Fuller_0.51607454_2566.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:51b5f9e03ab10d0d2081dcc254a6f6bf96b512d950c3fc47b570dda9bb53d80b +size 18657 diff --git a/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Caesar Andrade Faini_0.51971483_2542.jpg b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Caesar Andrade Faini_0.51971483_2542.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f4035223f813cff208bf14c9dec86511fafecc4c --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Caesar Andrade Faini_0.51971483_2542.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec59bc0768cfebe315c736f1e9d3a6e7a169c12e4cc7e3f05c4db4f685c63a2d +size 18249 diff --git a/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Cam Sykes_0.510071_2611.jpg b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Cam Sykes_0.510071_2611.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1cb9e9330893646c5455cda238a0eef9933774b9 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Cam Sykes_0.510071_2611.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a8871aec77a44ed41f2bdee77c63d6a08df4d5a055311e83b2c65996877e8d1 +size 14837 diff --git a/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Carl Rahl_0.5040115_2653.jpg b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Carl Rahl_0.5040115_2653.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3a59f7727c48ac1296d6f0c8148fae2a37bb2924 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Carl Rahl_0.5040115_2653.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:04bee8bf77fb5a95b6813e24a723b4ea21823612e3e8f26ef407a75083774c59 +size 16024 diff --git a/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Carl-Henning Pedersen_0.4998986_2669.jpg b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Carl-Henning Pedersen_0.4998986_2669.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f0dae1eecbfc0ce896aa05ecff26c276fef212aa --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Carl-Henning Pedersen_0.4998986_2669.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:332c27b515895a99a838c36afe04d5dd60dcf41a15dd765697a1df6b231eb0b7 +size 13136 diff --git "a/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Carlos Enr\303\255quez G\303\263mez_0.49494863_2687.jpg" "b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Carlos Enr\303\255quez G\303\263mez_0.49494863_2687.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..9b81e8bdc4490b27b05339a747074872807892fb --- /dev/null +++ "b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Carlos Enr\303\255quez G\303\263mez_0.49494863_2687.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:787fe828d87a92f6fddd707a0a6831b13a43426cda196ff3e0206c76afa3390e +size 10594 diff --git a/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Caroline Lucy Scott_0.49190843_2173.jpg b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Caroline Lucy Scott_0.49190843_2173.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d691152029eb635619472b7bcd2795bb5b746ca1 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Caroline Lucy Scott_0.49190843_2173.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b45aa3e3004b64628bf52d71132e0df083b1160d6ce80fde39595e87672e4d3 +size 14404 diff --git a/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Caspar Netscher_0.5019529_2658.jpg b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Caspar Netscher_0.5019529_2658.jpg new file mode 100644 index 0000000000000000000000000000000000000000..675909e8493b2a22e17b26a15e47f64fc540df1c --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Caspar Netscher_0.5019529_2658.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:236a2bfb47f64bc29dc64613038d0838efad7a1222e0d42496a6fc7d73940dc7 +size 11551 diff --git a/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Celia Fiennes_0.51266706_2590.jpg b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Celia Fiennes_0.51266706_2590.jpg new file mode 100644 index 0000000000000000000000000000000000000000..79ffd9724973c59512993085635911baf7595a78 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Celia Fiennes_0.51266706_2590.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:73e7e5daa2f82251d379a07ed085fc8c3bdea1ce956b524eba23d599e0417b37 +size 13259 diff --git a/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Charles Mozley_0.5171356_2557.jpg b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Charles Mozley_0.5171356_2557.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b99c1cf4526f162e1eb2beef93ae30510dfea87c --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Charles Mozley_0.5171356_2557.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff8269d29708c5c5055f3db890db31f83ffaa3e15a092c294b91b9ac708398f3 +size 16157 diff --git a/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Charles Schridde_0.51308405_2583.jpg b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Charles Schridde_0.51308405_2583.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0de2659e970c00edc0f7345e047cbfc8fe0bfcc0 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Charles Schridde_0.51308405_2583.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:313c21aefd07f1c9809cd86c5d83359433632f516d7f8c57f446fd38861333d7 +size 12371 diff --git a/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Charles Williams_0.510406_2605.jpg b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Charles Williams_0.510406_2605.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9db2b7670a1afb02f56fe19fac8c579a4ced4993 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Charles Williams_0.510406_2605.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf4feb94967309928ca3c578e2f14334befb614772cfec078b588a7433c1425e +size 11737 diff --git a/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Chen Zhen_0.5071876_2631.jpg b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Chen Zhen_0.5071876_2631.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b6ae711d1aa215fd65ecac67b553c55ab2f4e3b0 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Chen Zhen_0.5071876_2631.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4717d621d053db5be03753e4d66d34df17449a3df34a8ccbdb1f27e6cdfdc748 +size 18318 diff --git "a/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Christen K\303\270bke_0.49961317_2672.jpg" "b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Christen K\303\270bke_0.49961317_2672.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..635e8961798c64af6f3b4e7794cdfa0b84943ee9 --- /dev/null +++ "b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Christen K\303\270bke_0.49961317_2672.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:505166c0e46726f881a2d17449fa2f7c6438290ddb42083c9bf37e2891806c8e +size 8715 diff --git a/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Christian August Lorentzen_0.50989646_2614.jpg b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Christian August Lorentzen_0.50989646_2614.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fd0bcb94707bc28ce2d6c1b9617e82e27d08d6dd --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Christian August Lorentzen_0.50989646_2614.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33bbbe031d23b89ecd98ce1412077e428301ad52bf739fa9a8301b2dfd60e1e3 +size 11828 diff --git a/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Christopher Williams_0.5052288_2643.jpg b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Christopher Williams_0.5052288_2643.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3d43a777121bee1bf8bf684b04983bdb042e7662 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Christopher Williams_0.5052288_2643.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b38319eb2712b0164d006729fee0c2bac2e92c80afc218bd40d23033ae2e9c13 +size 13830 diff --git a/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Christopher Wood_0.49360397_2521.jpg b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Christopher Wood_0.49360397_2521.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d933e066a67b9386573402ffa401f08eaeb87419 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Christopher Wood_0.49360397_2521.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a7674ee5c00cc9e7cfc02624f5a2533f20ca1996ea1da13a539686332a22672 +size 13026 diff --git a/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Clara Miller Burd_0.47797233_2775.jpg b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Clara Miller Burd_0.47797233_2775.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b5f62fc3c3957098be0648fa24e3f755f59adae2 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Clara Miller Burd_0.47797233_2775.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2152be37a4ab5418d6e79d94918c4f2bf46e16770c1ab43608b32c43e127709 +size 11803 diff --git a/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Clarice Beckett_0.487809_2734.jpg b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Clarice Beckett_0.487809_2734.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4138c04e656fd0cade9b7a4df5f12baf420a3376 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Clarice Beckett_0.487809_2734.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e62fce9e3f4a0a74ffec117c7b699595e7bd43314df5b09d4185b58c3b194b5b +size 15128 diff --git a/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Clovis Trouille_0.47669724_2807.jpg b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Clovis Trouille_0.47669724_2807.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bc9defa938c30b91d97237e87630a8141a9cb6a8 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Clovis Trouille_0.47669724_2807.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a88f276b306bc8483af7e1a0a3d1e9d856c76ac7f4b2b3c8acdca0984b591457 +size 12184 diff --git a/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Conrad Marca-Relli_0.5148334_2446.jpg b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Conrad Marca-Relli_0.5148334_2446.jpg new file mode 100644 index 0000000000000000000000000000000000000000..14a88208e42e1a2b37053ff073f985637bc4b08b --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/digipa-med-impact/digipa-med-impact_Conrad Marca-Relli_0.5148334_2446.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a27faeb4933580d56478ea28a78e63d068027f29d818c36d5953f5b609df85e +size 10294 diff --git a/artists-to-study/ats/thumbnail/house/fareast/fareast_Aguri Uchida_0.5005107_2665.jpg b/artists-to-study/ats/thumbnail/house/fareast/fareast_Aguri Uchida_0.5005107_2665.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b6d873744c622c1bf26bd5e530335fa63a9d5707 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/fareast/fareast_Aguri Uchida_0.5005107_2665.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6100637cb06f0a08d80e1c1eece176d45e97b4d5ba8f8f49e92458541bd58b4d +size 15123 diff --git a/artists-to-study/ats/thumbnail/house/fareast/fareast_Ai Xuan_0.43150818_3065.jpg b/artists-to-study/ats/thumbnail/house/fareast/fareast_Ai Xuan_0.43150818_3065.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c04c0a2e0ea1dc3e8a1512981ee98fe3cd4fe788 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/fareast/fareast_Ai Xuan_0.43150818_3065.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3da36f964645614c817de056eef1dfb2136a0f1416cfa87b17d743c27291fec9 +size 10833 diff --git a/artists-to-study/ats/thumbnail/house/fareast/fareast_Ai Yazawa_0.55768114_2233.jpg b/artists-to-study/ats/thumbnail/house/fareast/fareast_Ai Yazawa_0.55768114_2233.jpg new file mode 100644 index 0000000000000000000000000000000000000000..64bda31d1c0587158e602ec4308463507e2439ba --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/fareast/fareast_Ai Yazawa_0.55768114_2233.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b218e3f38cca81a229aaff4f08d833792f7cdac9104c0532589be759b9aa5211 +size 18971 diff --git a/artists-to-study/ats/thumbnail/house/fareast/fareast_Alice Mason_0.48188528_2771.jpg b/artists-to-study/ats/thumbnail/house/fareast/fareast_Alice Mason_0.48188528_2771.jpg new file mode 100644 index 0000000000000000000000000000000000000000..df2438171a6d1ae1f6df827b2df4c2a299a6eb70 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/fareast/fareast_Alice Mason_0.48188528_2771.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef54bfc1b7824c2d89b705567d45e10cda7ecfd71a691d610034a985837bbcc0 +size 17898 diff --git a/artists-to-study/ats/thumbnail/house/fareast/fareast_Amanda Sage_0.37731662_2248.jpg b/artists-to-study/ats/thumbnail/house/fareast/fareast_Amanda Sage_0.37731662_2248.jpg new file mode 100644 index 0000000000000000000000000000000000000000..942a1a835df19db1a07d40abada3fe0633be57bc --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/fareast/fareast_Amanda Sage_0.37731662_2248.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bae784e52a54c0715c397e75602f961e3adcdd7664439c90ff3e7d584f3a6a02 +size 23575 diff --git a/artists-to-study/ats/thumbnail/house/fareast/fareast_An Zhengwen_0.56942475_2133.jpg b/artists-to-study/ats/thumbnail/house/fareast/fareast_An Zhengwen_0.56942475_2133.jpg new file mode 100644 index 0000000000000000000000000000000000000000..37e113fbf04a8145f09e60e2e32a54f9e06fb18e --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/fareast/fareast_An Zhengwen_0.56942475_2133.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d869830929bc4e2f68c74744002ae3b1eaa9343915d75dace555be9f630db08e +size 13969 diff --git a/artists-to-study/ats/thumbnail/house/fareast/fareast_Android Jones_0.61023116_1716.jpg b/artists-to-study/ats/thumbnail/house/fareast/fareast_Android Jones_0.61023116_1716.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ffe498c4f56d0334275596e6f641a6c7ce7c724a --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/fareast/fareast_Android Jones_0.61023116_1716.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:34e32b97ab68b005c007400231e0009d27a6b0eb5251b2b92004540870580a91 +size 17870 diff --git a/artists-to-study/ats/thumbnail/house/fareast/fareast_Angela Sung_0.391746_3071.jpg b/artists-to-study/ats/thumbnail/house/fareast/fareast_Angela Sung_0.391746_3071.jpg new file mode 100644 index 0000000000000000000000000000000000000000..95536118c0b754f6a5006e231335da2a0ed7dd49 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/fareast/fareast_Angela Sung_0.391746_3071.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f83b179f4e6b963e365ba95cd35200a8d3ef8b506d0ea1cf03b4a4fe336b879 +size 12226 diff --git a/artists-to-study/ats/thumbnail/house/fareast/fareast_Ayako Rokkaku_0.61891204_1631.jpg b/artists-to-study/ats/thumbnail/house/fareast/fareast_Ayako Rokkaku_0.61891204_1631.jpg new file mode 100644 index 0000000000000000000000000000000000000000..93ce7b8e8fa3a6bc01830aec47c5a0e7a38a28f0 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/fareast/fareast_Ayako Rokkaku_0.61891204_1631.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c6356b5252794eac74f393e214278edf680e73085d2d5ec5fbb763bd104cf7d2 +size 13903 diff --git a/artists-to-study/ats/thumbnail/house/fareast/fareast_Bernat Sanjuan_0.45074993_2954.jpg b/artists-to-study/ats/thumbnail/house/fareast/fareast_Bernat Sanjuan_0.45074993_2954.jpg new file mode 100644 index 0000000000000000000000000000000000000000..74677a32518ccb12d84ff67be179dc03c7312387 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/fareast/fareast_Bernat Sanjuan_0.45074993_2954.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:244fae8efd048d18fff23d839df361cb8a10017f300022258887989afadba5a5 +size 9142 diff --git a/artists-to-study/ats/thumbnail/house/fareast/fareast_Byeon Sang-byeok_0.59200096_1893.jpg b/artists-to-study/ats/thumbnail/house/fareast/fareast_Byeon Sang-byeok_0.59200096_1893.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2b184eaf61a5a0b7a714fff1537665972085fd88 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/fareast/fareast_Byeon Sang-byeok_0.59200096_1893.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d04cccd00474621a968ffca4d8ee1cf7aa0a699dcc01ca3152a049884aec9931 +size 13180 diff --git a/artists-to-study/ats/thumbnail/house/fareast/fareast_Byron Galvez_0.39178842_2486.jpg b/artists-to-study/ats/thumbnail/house/fareast/fareast_Byron Galvez_0.39178842_2486.jpg new file mode 100644 index 0000000000000000000000000000000000000000..00b50af1d5b08be9acab3e56ccf260786947dac6 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/fareast/fareast_Byron Galvez_0.39178842_2486.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44983e0589af7c41784fa1e4915d8e187a8ed9dd09677a16ce4c7d5c2fb3231a +size 14185 diff --git a/artists-to-study/ats/thumbnail/house/fareast/fareast_Cao Zhibai_0.47476804_2813.jpg b/artists-to-study/ats/thumbnail/house/fareast/fareast_Cao Zhibai_0.47476804_2813.jpg new file mode 100644 index 0000000000000000000000000000000000000000..97829a796dba80ebe870fd9f91f6529cbc2ad39e --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/fareast/fareast_Cao Zhibai_0.47476804_2813.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:057ed6a6d805df0851b7f2f5c1c251c0772f176440efd0604a1068445ad6526b +size 12546 diff --git a/artists-to-study/ats/thumbnail/house/fareast/fareast_Charles Martin_0.43582463_3030.jpg b/artists-to-study/ats/thumbnail/house/fareast/fareast_Charles Martin_0.43582463_3030.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9af9a48649eeb0d5f92186a45b624123f7a2028f --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/fareast/fareast_Charles Martin_0.43582463_3030.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:39a9fba544b42ec209994dc01881d5edae8f910acf93531ae24e7b92543f82ef +size 14699 diff --git a/artists-to-study/ats/thumbnail/house/fareast/fareast_Chen Hong_0.46516004_2869.jpg b/artists-to-study/ats/thumbnail/house/fareast/fareast_Chen Hong_0.46516004_2869.jpg new file mode 100644 index 0000000000000000000000000000000000000000..57c9f6eb7b69c19e95ea704bb737edbf12265e97 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/fareast/fareast_Chen Hong_0.46516004_2869.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ea5b025045c9157bfe898fba524d252a1b249b3439da5328da53267590003093 +size 14235 diff --git a/artists-to-study/ats/thumbnail/house/fareast/fareast_Chen Jiru_0.4553378_2931.jpg b/artists-to-study/ats/thumbnail/house/fareast/fareast_Chen Jiru_0.4553378_2931.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c08f13b5c5bb761365b70b72bb1774d253db833d --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/fareast/fareast_Chen Jiru_0.4553378_2931.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c189a6a7deaa4fa708c023a94a5cff125a6c7ac3803089526028a58dbcac749 +size 14493 diff --git a/artists-to-study/ats/thumbnail/house/fareast/fareast_Chen Lin_0.45035738_2958.jpg b/artists-to-study/ats/thumbnail/house/fareast/fareast_Chen Lin_0.45035738_2958.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6cc57af02509641e7806414e921506e149e7b7ac --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/fareast/fareast_Chen Lin_0.45035738_2958.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:423283753ada66c9c9f86e25d62811e9e87348db7dec434ee47b63a29b7e7ad0 +size 12438 diff --git a/artists-to-study/ats/thumbnail/house/fareast/fareast_Cheng Jiasui_0.48889247_2726.jpg b/artists-to-study/ats/thumbnail/house/fareast/fareast_Cheng Jiasui_0.48889247_2726.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7b1959ac151488c1c347b97d80911fa3d14e868b --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/fareast/fareast_Cheng Jiasui_0.48889247_2726.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:89b6a18b5a4117b44e3000e9d4368442ad8c243bcd64851dff6a84902cd52608 +size 15927 diff --git a/artists-to-study/ats/thumbnail/house/fareast/fareast_Cheng Zhengkui_0.57990086_2029.jpg b/artists-to-study/ats/thumbnail/house/fareast/fareast_Cheng Zhengkui_0.57990086_2029.jpg new file mode 100644 index 0000000000000000000000000000000000000000..878bd0b2a1deff9ab42408758f8f0e4df657273b --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/fareast/fareast_Cheng Zhengkui_0.57990086_2029.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a5dd32ede66f6b98aa89c097370e81dc3f0cb800edbd0e9608534670586cea3 +size 11207 diff --git a/artists-to-study/ats/thumbnail/house/fareast/fareast_Ching Yeh_0.46177_2886.jpg b/artists-to-study/ats/thumbnail/house/fareast/fareast_Ching Yeh_0.46177_2886.jpg new file mode 100644 index 0000000000000000000000000000000000000000..103b26c73042c62ec2a5de2bbd924f660e677bc6 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/fareast/fareast_Ching Yeh_0.46177_2886.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d0d9594f783b9bc566545f69eb4bcc2fcffe1c3d697ff085aa8330946a019b63 +size 15103 diff --git a/artists-to-study/ats/thumbnail/house/fareast/fareast_Chizuko Yoshida_0.6233001_1584.jpg b/artists-to-study/ats/thumbnail/house/fareast/fareast_Chizuko Yoshida_0.6233001_1584.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6eaabb420da407671857af82a64c44e61df7e1d8 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/fareast/fareast_Chizuko Yoshida_0.6233001_1584.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:731fc4831cc3d9c9dd95fd43b073748b9ad1fbd3749993f2f576a2e72ad70b08 +size 14723 diff --git a/artists-to-study/ats/thumbnail/house/fareast/fareast_Choi Buk_0.44892842_2965.jpg b/artists-to-study/ats/thumbnail/house/fareast/fareast_Choi Buk_0.44892842_2965.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b0806dde0cfdb6f48567ec3f012a7d36ca83c998 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/fareast/fareast_Choi Buk_0.44892842_2965.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac9a8b5e1747fcb0f7b42e7e1b23433dd1e75a6ef2729fd779248ff33f6d65d7 +size 16648 diff --git a/artists-to-study/ats/thumbnail/house/fareast/fareast_Cui Zizhong_0.47902682_2784.jpg b/artists-to-study/ats/thumbnail/house/fareast/fareast_Cui Zizhong_0.47902682_2784.jpg new file mode 100644 index 0000000000000000000000000000000000000000..af1cb9b99dd2d529884cf24342ead5f4711271a2 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/fareast/fareast_Cui Zizhong_0.47902682_2784.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bda13485d819fbb203b2229e8ea404cc6597461362d216f64756f3d949080b25 +size 11501 diff --git a/artists-to-study/ats/thumbnail/house/fareast/fareast_Dai Jin_0.4375449_3023.jpg b/artists-to-study/ats/thumbnail/house/fareast/fareast_Dai Jin_0.4375449_3023.jpg new file mode 100644 index 0000000000000000000000000000000000000000..332c7a4714789369cacabad9ca415fe402434275 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/fareast/fareast_Dai Jin_0.4375449_3023.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71b8b9999a1bf94322c428dfbd17a8b544ee4e1f950e7c20e31183dab0c24095 +size 15457 diff --git a/artists-to-study/ats/thumbnail/house/fareast/fareast_Dain Yoon_0.45977795_2905.jpg b/artists-to-study/ats/thumbnail/house/fareast/fareast_Dain Yoon_0.45977795_2905.jpg new file mode 100644 index 0000000000000000000000000000000000000000..41ed3cc445fda6851ba705780429c791b8dae65e --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/fareast/fareast_Dain Yoon_0.45977795_2905.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f5b1f0223b6de2753b5d479866b4e59ff73408af34c54c3337c7016cecda71fd +size 16576 diff --git a/artists-to-study/ats/thumbnail/house/fareast/fareast_Dong Yuan_0.4303865_3073.jpg b/artists-to-study/ats/thumbnail/house/fareast/fareast_Dong Yuan_0.4303865_3073.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a3194fa903b68d5b544010811e33e43ac7eafac2 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/fareast/fareast_Dong Yuan_0.4303865_3073.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:821a21fd4ef61675faa28e30496b3fd5d99b9fb38dde0685e8e8561ea0b8e9ab +size 13632 diff --git a/artists-to-study/ats/thumbnail/house/fareast/fareast_Du Qiong_0.48414314_2753.jpg b/artists-to-study/ats/thumbnail/house/fareast/fareast_Du Qiong_0.48414314_2753.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6997a362a6a49483d93978d61db400f0fad992f9 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/fareast/fareast_Du Qiong_0.48414314_2753.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d8f13342331698ce6697e6ef344910095c704fc1734f1dd1666d67e0bd89593c +size 14298 diff --git a/artists-to-study/ats/thumbnail/house/fareast/fareast_Fang Congyi_0.45240825_2948.jpg b/artists-to-study/ats/thumbnail/house/fareast/fareast_Fang Congyi_0.45240825_2948.jpg new file mode 100644 index 0000000000000000000000000000000000000000..cd2212fc03928beb73fe08cff2a8d1a24d079c6f --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/fareast/fareast_Fang Congyi_0.45240825_2948.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:29d131ec604e59b0c09f142c8444a7ddc1d83d8417d08faf8cdb0e6681f1eaa0 +size 13035 diff --git a/artists-to-study/ats/thumbnail/house/fareast/fareast_Fei Danxu_0.4433627_2992.jpg b/artists-to-study/ats/thumbnail/house/fareast/fareast_Fei Danxu_0.4433627_2992.jpg new file mode 100644 index 0000000000000000000000000000000000000000..efa9554d5139982c61014d21491b0010249807b0 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/fareast/fareast_Fei Danxu_0.4433627_2992.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3125a46ace4bb4b07dd2999d9a47f06884e898f4f81399ff4c61845c33a6a9b7 +size 12837 diff --git a/artists-to-study/ats/thumbnail/house/fareast/fareast_Fenghua Zhong_0.56492203_2172.jpg b/artists-to-study/ats/thumbnail/house/fareast/fareast_Fenghua Zhong_0.56492203_2172.jpg new file mode 100644 index 0000000000000000000000000000000000000000..82e0b33623e9ab011dbbcb66202c72ce95ccee9c --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/fareast/fareast_Fenghua Zhong_0.56492203_2172.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e1536da92e3d5f2eae61b14cbe4d9e552183d69db898e90dc650e9dfe43e3895 +size 12797 diff --git a/artists-to-study/ats/thumbnail/house/fareast/fareast_Fuyuko Matsui_0.5051116_2644.jpg b/artists-to-study/ats/thumbnail/house/fareast/fareast_Fuyuko Matsui_0.5051116_2644.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6b97c83b550201f5fa13fa2b515cff5a3841f926 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/fareast/fareast_Fuyuko Matsui_0.5051116_2644.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:51ecc10c5596ab5f899c049e6a499843da61de3ad74eea8bc49504a90d29bb04 +size 10953 diff --git a/artists-to-study/ats/thumbnail/house/fareast/fareast_Gao Fenghan_0.5732926_2098.jpg b/artists-to-study/ats/thumbnail/house/fareast/fareast_Gao Fenghan_0.5732926_2098.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2c5aec578f99f9b5a142dd8fc71579262e7f978e --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/fareast/fareast_Gao Fenghan_0.5732926_2098.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a35c73bd34e0e990adbe504f50fcd9f2f3e078e194b5dd69a6ab8bce1f4b53af +size 14271 diff --git a/artists-to-study/ats/thumbnail/house/fareast/fareast_Gao Qipei_0.4860631_2746.jpg b/artists-to-study/ats/thumbnail/house/fareast/fareast_Gao Qipei_0.4860631_2746.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d82245b9b98238da95302cc23dc8a526eaf2667d --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/fareast/fareast_Gao Qipei_0.4860631_2746.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8171ab3a0b6ee112287209dfffb30a18a42429b1eb050d0a93c013d28d27ea4a +size 15070 diff --git a/artists-to-study/ats/thumbnail/house/fareast/fareast_Gao Xiang_0.5392419_2413.jpg b/artists-to-study/ats/thumbnail/house/fareast/fareast_Gao Xiang_0.5392419_2413.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a60c6700cc95745b65165ee9b0d94279d020bcba --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/fareast/fareast_Gao Xiang_0.5392419_2413.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:440200173595bf42fb4af6df9db06d3b5b9a5a2b8f04d936f6728984f4e90569 +size 12890 diff --git a/artists-to-study/ats/thumbnail/house/fareast/fareast_Gu Hongzhong_0.4454906_2981.jpg b/artists-to-study/ats/thumbnail/house/fareast/fareast_Gu Hongzhong_0.4454906_2981.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4b9f6284e30719b7c97579d86fef888fca2012d0 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/fareast/fareast_Gu Hongzhong_0.4454906_2981.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c6b3cbcd873b3a41412014345d801926492011948318160e069a8af66e762c81 +size 10260 diff --git a/artists-to-study/ats/thumbnail/house/fareast/fareast_Gu Kaizhi_0.6110798_1700.jpg b/artists-to-study/ats/thumbnail/house/fareast/fareast_Gu Kaizhi_0.6110798_1700.jpg new file mode 100644 index 0000000000000000000000000000000000000000..944bec4dde0a0908ead42fde380a3a8c02e9fd63 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/fareast/fareast_Gu Kaizhi_0.6110798_1700.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1167ae8b1dc2b35c936231cbb4a6244c83db63f46a333fdd26f777cdd5c72fb7 +size 11421 diff --git a/artists-to-study/ats/thumbnail/house/fareast/fareast_Guan Daosheng_0.506712_2636.jpg b/artists-to-study/ats/thumbnail/house/fareast/fareast_Guan Daosheng_0.506712_2636.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2bb8a13bfbd02ce382785a30e11831d2e09236d0 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/fareast/fareast_Guan Daosheng_0.506712_2636.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c4eac42b1a077e337735e2d539c13b3bf66696aaa279c203ac85ae3afa35a427 +size 12805 diff --git a/artists-to-study/ats/thumbnail/house/fareast/fareast_Guo Pei_0.5857794_1958.jpg b/artists-to-study/ats/thumbnail/house/fareast/fareast_Guo Pei_0.5857794_1958.jpg new file mode 100644 index 0000000000000000000000000000000000000000..411027ae669a1218f082e2556b2aba7a4dc58125 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/fareast/fareast_Guo Pei_0.5857794_1958.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a42d82fae56ce10f791fb4e939ae5f6b895fc02af96c42878730e8df84f7d7b5 +size 20239 diff --git "a/artists-to-study/ats/thumbnail/house/fareast/fareast_Gusukuma Seih\305\215_0.60479784_1758.jpg" "b/artists-to-study/ats/thumbnail/house/fareast/fareast_Gusukuma Seih\305\215_0.60479784_1758.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..03df4e79800b3c3590c4f5a1cadfb34925be77e9 --- /dev/null +++ "b/artists-to-study/ats/thumbnail/house/fareast/fareast_Gusukuma Seih\305\215_0.60479784_1758.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:90a02dc552ee9ca82f1fbc393a836cfb194e421b8f60f0fb150f140f823fcc8e +size 14306 diff --git a/artists-to-study/ats/thumbnail/house/fareast/fareast_Hasegawa Settan_0.5647092_2175.jpg b/artists-to-study/ats/thumbnail/house/fareast/fareast_Hasegawa Settan_0.5647092_2175.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bacb8ddd129b5a36acb12c5db2f0e7f0ddf872c7 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/fareast/fareast_Hasegawa Settan_0.5647092_2175.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5df22a3ea4e5e31e06f1a872941c09a75e145bc3f2d059905461a909b973d50f +size 14336 diff --git a/artists-to-study/ats/thumbnail/house/fareast/fareast_Henry Justice Ford_0.51214355_0813.jpg b/artists-to-study/ats/thumbnail/house/fareast/fareast_Henry Justice Ford_0.51214355_0813.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a4cc21821722f4be73f96925ccb79a6d4c794595 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/fareast/fareast_Henry Justice Ford_0.51214355_0813.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a010ad97040b87916124fb9155f404e40111ee05d67d1fd0f87a71f770242bd +size 15513 diff --git "a/artists-to-study/ats/thumbnail/house/fareast/fareast_Hidari Jingor\305\215_0.63388014_1478.jpg" "b/artists-to-study/ats/thumbnail/house/fareast/fareast_Hidari Jingor\305\215_0.63388014_1478.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..7cff9d821617c9c57e7c84cad5f0662566035b63 --- /dev/null +++ "b/artists-to-study/ats/thumbnail/house/fareast/fareast_Hidari Jingor\305\215_0.63388014_1478.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8795677476bf28d10aaa0661a856d49af08ccccade3074d5ed0690680ff1ff8c +size 13067 diff --git a/artists-to-study/ats/thumbnail/house/fareast/fareast_Hideyuki Kikuchi_0.544193_2360.jpg b/artists-to-study/ats/thumbnail/house/fareast/fareast_Hideyuki Kikuchi_0.544193_2360.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7e8617b5846a5a7242429014ae77f8807bb35d4d --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/fareast/fareast_Hideyuki Kikuchi_0.544193_2360.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b09ccf8cafc6855714e58429b422e09fad2f539bc46f9639f317f782f08fc2f +size 15243 diff --git a/artists-to-study/ats/thumbnail/house/fareast/fareast_Hiromitsu Takahashi_0.5805599_2023.jpg b/artists-to-study/ats/thumbnail/house/fareast/fareast_Hiromitsu Takahashi_0.5805599_2023.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7e603a22a024d5798d9a47dd751b271b9e916b74 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/fareast/fareast_Hiromitsu Takahashi_0.5805599_2023.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f76733060ea6c56450089353648415ef00bafcfc87d34a0215cab1367d11b6a1 +size 15167 diff --git a/artists-to-study/ats/thumbnail/house/fareast/fareast_Hiroyuki Tajima_0.5816242_2008.jpg b/artists-to-study/ats/thumbnail/house/fareast/fareast_Hiroyuki Tajima_0.5816242_2008.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ee3ec427a8827790cb83a37564398a6b7ad4c186 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/fareast/fareast_Hiroyuki Tajima_0.5816242_2008.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c341df95bdef2b55e70b3c431a7b676badd36214a2f6154912abc385d22cc1e5 +size 16547 diff --git "a/artists-to-study/ats/thumbnail/house/fareast/fareast_Hishida Shuns\305\215_0.751617_0306.jpg" "b/artists-to-study/ats/thumbnail/house/fareast/fareast_Hishida Shuns\305\215_0.751617_0306.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..6bef2815c34bb8b9dd4f6d62bfd413046ba33482 --- /dev/null +++ "b/artists-to-study/ats/thumbnail/house/fareast/fareast_Hishida Shuns\305\215_0.751617_0306.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:74da82aac2d01287c9711545104753ddce6124e0251146ec1e0af60dfa12b70b +size 13723 diff --git a/artists-to-study/ats/thumbnail/house/fareast/fareast_Hisui Sugiura_0.603034_1783.jpg b/artists-to-study/ats/thumbnail/house/fareast/fareast_Hisui Sugiura_0.603034_1783.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5de4f8e7f973da739d3a9551b46cb68ae4668ce6 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/fareast/fareast_Hisui Sugiura_0.603034_1783.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e8b0dd8f82621535bcc270f9d67e0c39149ec6ef65799963a06b49d5b3b3bfd +size 13975 diff --git a/artists-to-study/ats/thumbnail/house/fareast/fareast_Hu Jieqing_0.45889485_2913.jpg b/artists-to-study/ats/thumbnail/house/fareast/fareast_Hu Jieqing_0.45889485_2913.jpg new file mode 100644 index 0000000000000000000000000000000000000000..121e8c4bd572a825b2f97b77109a92fbb816132f --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/fareast/fareast_Hu Jieqing_0.45889485_2913.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c6bc0d750806fd5040667a0be995008e81898cdb9ab1f6e5985a5949f74e085 +size 12023 diff --git a/artists-to-study/ats/thumbnail/house/fareast/fareast_Hu Zaobin_0.5510481_2295.jpg b/artists-to-study/ats/thumbnail/house/fareast/fareast_Hu Zaobin_0.5510481_2295.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7d17fee558c33977822670ecb5a059c00d8efd67 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/fareast/fareast_Hu Zaobin_0.5510481_2295.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a3a4778186dd74f28085181dc8cbb637c1508e2ceaec83aa87eac5122f4f85f0 +size 12532 diff --git a/artists-to-study/ats/thumbnail/house/fareast/fareast_Huang Ding_0.45233482_2949.jpg b/artists-to-study/ats/thumbnail/house/fareast/fareast_Huang Ding_0.45233482_2949.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ab1480e3b5f65805cc41632789477d4be8b560fe --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/fareast/fareast_Huang Ding_0.45233482_2949.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:731f9ae146bfc7a4d5483470cccb351c91896e3cdc85df90dd6e103447b72644 +size 14906 diff --git a/artists-to-study/ats/thumbnail/house/fareast/fareast_Huang Gongwang_0.47269204_2824.jpg b/artists-to-study/ats/thumbnail/house/fareast/fareast_Huang Gongwang_0.47269204_2824.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b3f98c785d166146e64113ff08674ac277b6d50c --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/fareast/fareast_Huang Gongwang_0.47269204_2824.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9682096a4866f061271d5834a98b2e46116b982a6439c8b27852ee3b796194ff +size 13065 diff --git a/artists-to-study/ats/thumbnail/house/fareast/fareast_Huang Guangjian_0.49286693_2705.jpg b/artists-to-study/ats/thumbnail/house/fareast/fareast_Huang Guangjian_0.49286693_2705.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2ac38bdfc2c04d82dfee68c508776d1c2ca853ba --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/fareast/fareast_Huang Guangjian_0.49286693_2705.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:95c8d4a300b8692b152ce3877cf46b4a131aff2dc4a082abe083f31542a00864 +size 13305 diff --git a/artists-to-study/ats/thumbnail/house/fareast/fareast_Huang Ji_0.48611963_2744.jpg b/artists-to-study/ats/thumbnail/house/fareast/fareast_Huang Ji_0.48611963_2744.jpg new file mode 100644 index 0000000000000000000000000000000000000000..132614102f2044b4e9484e1104c4de125beb959a --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/fareast/fareast_Huang Ji_0.48611963_2744.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d3aea76fa2abfec51d21ab2cad0d24bf28249f7a4f4e44e64a90c994a97acf10 +size 12520 diff --git a/artists-to-study/ats/thumbnail/house/fareast/fareast_Huang Tingjian_0.6290358_1527.jpg b/artists-to-study/ats/thumbnail/house/fareast/fareast_Huang Tingjian_0.6290358_1527.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6fb85aadffc9204c62cdad7f914afe62276ad729 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/fareast/fareast_Huang Tingjian_0.6290358_1527.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40c2cce11f9a9e2046a908ff21595764bc8a90d6b614f1f86481c26f5aae97cf +size 13437 diff --git a/artists-to-study/ats/thumbnail/house/fareast/fareast_Ian Miller_0.42153555_1801.jpg b/artists-to-study/ats/thumbnail/house/fareast/fareast_Ian Miller_0.42153555_1801.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ac7fef35425eda04f33dfd265105e3769c5ddeef --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/fareast/fareast_Ian Miller_0.42153555_1801.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9a422b8eb09b6b9de0d3a711fef5e54439e0d630ead59c72ecb6dabdc59723bc +size 17470 diff --git a/artists-to-study/ats/thumbnail/house/fareast/fareast_Inoue Naohisa_0.5809933_2015.jpg b/artists-to-study/ats/thumbnail/house/fareast/fareast_Inoue Naohisa_0.5809933_2015.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fc4311fb8bfb756d4c0f3d269ffa96f5ee4e98e8 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/fareast/fareast_Inoue Naohisa_0.5809933_2015.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ea8e5f6a6995c56e2cba09d7906ca68aed30c7c6149886fbd47d05c54b0491d6 +size 14381 diff --git a/artists-to-study/ats/thumbnail/house/fareast/fareast_Josh Kao_0.45725146_2922.jpg b/artists-to-study/ats/thumbnail/house/fareast/fareast_Josh Kao_0.45725146_2922.jpg new file mode 100644 index 0000000000000000000000000000000000000000..566385f296f2f0164208f37a4a1d7141143d52fc --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/fareast/fareast_Josh Kao_0.45725146_2922.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e138bdf03e61f1edd8cc351c38651c3a72eb7ddd2c8272673f3fb8f636e61478 +size 14130 diff --git a/artists-to-study/ats/thumbnail/house/fareast/fareast_Naomi Okubo_0.5782754_1517.jpg b/artists-to-study/ats/thumbnail/house/fareast/fareast_Naomi Okubo_0.5782754_1517.jpg new file mode 100644 index 0000000000000000000000000000000000000000..652e4d165c7eff0f19521a22f9839f3e0966e91c --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/fareast/fareast_Naomi Okubo_0.5782754_1517.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e75feb53e97822813f8b2e7ff92a91ca3899b16e2ee86e45ba5885ebfb023cdb +size 20905 diff --git a/artists-to-study/ats/thumbnail/house/fareast/fareast_Naoto Hattori_0.621745_1229.jpg b/artists-to-study/ats/thumbnail/house/fareast/fareast_Naoto Hattori_0.621745_1229.jpg new file mode 100644 index 0000000000000000000000000000000000000000..79e0a6ad141165f981c84f05bd6594a2d7a75249 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/fareast/fareast_Naoto Hattori_0.621745_1229.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9107afb72929cda5514744d2e46bb4982f7d1d92312c2b231a5455135eef8bd6 +size 17713 diff --git a/artists-to-study/ats/thumbnail/house/fareast/fareast_Ni Chuanjing_0.46254826_2881.jpg b/artists-to-study/ats/thumbnail/house/fareast/fareast_Ni Chuanjing_0.46254826_2881.jpg new file mode 100644 index 0000000000000000000000000000000000000000..64e7ffb52c51d9a016d0622fe78830f5b770cbc4 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/fareast/fareast_Ni Chuanjing_0.46254826_2881.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:35ef10eb4b1e611466fb3dba2734a75a6bab8da0d3854768e34df9a083667205 +size 11845 diff --git a/artists-to-study/ats/thumbnail/house/fareast/fareast_Nobuyoshi Araki_0.70108867_0707.jpg b/artists-to-study/ats/thumbnail/house/fareast/fareast_Nobuyoshi Araki_0.70108867_0707.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bd7f8ab9445af25339616300f120de75b94d2208 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/fareast/fareast_Nobuyoshi Araki_0.70108867_0707.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:80202ec13a75a04f17a2add223f1c74b15f56ae474e3724e563fbec1361ace48 +size 14068 diff --git a/artists-to-study/ats/thumbnail/house/fareast/fareast_Ogawa Kazumasa_0.61427975_1670.jpg b/artists-to-study/ats/thumbnail/house/fareast/fareast_Ogawa Kazumasa_0.61427975_1670.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7fd58170e38c3629e7602c372cc757384792eb4d --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/fareast/fareast_Ogawa Kazumasa_0.61427975_1670.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:36c2f6b4f7c2c2098e6f99c88d988bb41dcde58fa3bf0a5bf3a1fa4656d847f3 +size 12540 diff --git a/artists-to-study/ats/thumbnail/house/fareast/fareast_Qian Xuan_0.50150526_2660.jpg b/artists-to-study/ats/thumbnail/house/fareast/fareast_Qian Xuan_0.50150526_2660.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0f06cd24f7b28b53e4cfad1f585f550fac3c6975 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/fareast/fareast_Qian Xuan_0.50150526_2660.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:89317ac7f59249896c537956e2767f5e3eec1512efa37369b5fcace533841e0a +size 10537 diff --git a/artists-to-study/ats/thumbnail/house/fareast/fareast_Sangyeob Park_0.49150884_2713.jpg b/artists-to-study/ats/thumbnail/house/fareast/fareast_Sangyeob Park_0.49150884_2713.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4096ee5a8d91d41e5dd91b421f64f331845b2665 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/fareast/fareast_Sangyeob Park_0.49150884_2713.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a74c455688bdb83c478e32a356dae190a9975ef113b7916e09694d2e9a054ca2 +size 13051 diff --git a/artists-to-study/ats/thumbnail/house/fareast/fareast_Shin Jeongho_0.5092497_2619.jpg b/artists-to-study/ats/thumbnail/house/fareast/fareast_Shin Jeongho_0.5092497_2619.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2029baf3407d1b709802bdfd93fa7f8c36d186c5 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/fareast/fareast_Shin Jeongho_0.5092497_2619.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0b9a8e46256d4bcc57e8c0782807afc1eaaf37342a68019117139f40cded0bb +size 12652 diff --git a/artists-to-study/ats/thumbnail/house/fareast/fareast_Sou Fujimoto_0.5162528_2563.jpg b/artists-to-study/ats/thumbnail/house/fareast/fareast_Sou Fujimoto_0.5162528_2563.jpg new file mode 100644 index 0000000000000000000000000000000000000000..850c78a9d7f0c15c0b1b8855c49766e0f18ec5be --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/fareast/fareast_Sou Fujimoto_0.5162528_2563.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e31557f8c80c81c1687a216d142de00110907b2a684acad46730e29b982940b +size 16713 diff --git a/artists-to-study/ats/thumbnail/house/fareast/fareast_Susan Luo_0.43198025_3060.jpg b/artists-to-study/ats/thumbnail/house/fareast/fareast_Susan Luo_0.43198025_3060.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8e5aa43b6c112436984730e39a228ae6b3a8dacf --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/fareast/fareast_Susan Luo_0.43198025_3060.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd72d9d74006abe2b208768030008ec9f17f5276220035d45e0ffc57b88bcb07 +size 10125 diff --git a/artists-to-study/ats/thumbnail/house/fareast/fareast_Tadao Ando_0.57429105_2084.jpg b/artists-to-study/ats/thumbnail/house/fareast/fareast_Tadao Ando_0.57429105_2084.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0164bb117b25a75a97611f1fb4d81e3fb5deac81 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/fareast/fareast_Tadao Ando_0.57429105_2084.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c1cb3138bb37d97354ffcc7e734890c8f1ac9ab8cd18cce2b6f79b323471fee0 +size 13179 diff --git a/artists-to-study/ats/thumbnail/house/fareast/fareast_Toshiharu Mizutani_0.48315164_2762.jpg b/artists-to-study/ats/thumbnail/house/fareast/fareast_Toshiharu Mizutani_0.48315164_2762.jpg new file mode 100644 index 0000000000000000000000000000000000000000..312f61250078486a7eb2cea4ccf8f5c514d5c0d7 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/fareast/fareast_Toshiharu Mizutani_0.48315164_2762.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cae9acba587546aeae544c72f4fc8ce165f6e0027746f8754065bdf842b3074f +size 17507 diff --git a/artists-to-study/ats/thumbnail/house/fareast/fareast_Yasutomo Oka_0.5731342_2101.jpg b/artists-to-study/ats/thumbnail/house/fareast/fareast_Yasutomo Oka_0.5731342_2101.jpg new file mode 100644 index 0000000000000000000000000000000000000000..49919c81cdbbdd3081544ec533cf048661561315 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/fareast/fareast_Yasutomo Oka_0.5731342_2101.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:35b5011bc5026aed130e50ed0e2308b1577aa9e690b6d72a25d1968fa3012c85 +size 13454 diff --git a/artists-to-study/ats/thumbnail/house/fareast/fareast_Yoshitaka Amano_0.5491855_2310.jpg b/artists-to-study/ats/thumbnail/house/fareast/fareast_Yoshitaka Amano_0.5491855_2310.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b8dcf3b2ebe0c316ea4b72af39b9dc078e831939 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/fareast/fareast_Yoshitaka Amano_0.5491855_2310.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a4ef8dd74c285945433e89b9893b690fc9853de08868d8ce26f8ec24b63795a3 +size 17546 diff --git a/artists-to-study/ats/thumbnail/house/fareast/fareast_Zhang Kechun_0.6595939_1199.jpg b/artists-to-study/ats/thumbnail/house/fareast/fareast_Zhang Kechun_0.6595939_1199.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ac679d91a7e4ab7fe6141614212ff7c914177f70 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/fareast/fareast_Zhang Kechun_0.6595939_1199.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b70962701c6ee587cd8e557d4538e4941fee2c9e855ac0e78fff98435843c04 +size 8981 diff --git a/artists-to-study/ats/thumbnail/house/fareast/fareast_tokyogenso_0.45406622_2937.jpg b/artists-to-study/ats/thumbnail/house/fareast/fareast_tokyogenso_0.45406622_2937.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2d751aeb82f803f9ff686b6364a3299503efbda7 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/fareast/fareast_tokyogenso_0.45406622_2937.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6dc58bb4e7482720298a76d4638e66ccf1f83c984a461c16353f9a64c1db520f +size 18464 diff --git a/artists-to-study/ats/thumbnail/house/fineart/fineart_A. R. Middleton Todd_0.50988734_2476.jpg b/artists-to-study/ats/thumbnail/house/fineart/fineart_A. R. Middleton Todd_0.50988734_2476.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e4dc614e69fd68ff43e50de0f781afc916b5dcc2 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/fineart/fineart_A. R. Middleton Todd_0.50988734_2476.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a29ebe2b30b6fb6c14529ac66892e61a62c9516ba54f52bdff593fc385edd6d6 +size 13869 diff --git a/artists-to-study/ats/thumbnail/house/fineart/fineart_A.B. Frost_0.5375025_2425.jpg b/artists-to-study/ats/thumbnail/house/fineart/fineart_A.B. Frost_0.5375025_2425.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e88d44ef9c92b91d654a2c8133725e8439e5d016 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/fineart/fineart_A.B. Frost_0.5375025_2425.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e12c228bec061db9a4215aec9656a44613a86a0bb6533294fc9b39b647d585e +size 11494 diff --git a/artists-to-study/ats/thumbnail/house/fineart/fineart_Aaron Douglas_0.6437089_1382.jpg b/artists-to-study/ats/thumbnail/house/fineart/fineart_Aaron Douglas_0.6437089_1382.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3fd99a20be2086734b23eba42ce8a26cbfc4fbac --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/fineart/fineart_Aaron Douglas_0.6437089_1382.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c5ea8196811b591cbf73f7231e6e405f42e253d64325ee43137b6ac2d9fb102d +size 11331 diff --git a/artists-to-study/ats/thumbnail/house/fineart/fineart_Aaron Horkey_0.6676864_1102.jpg b/artists-to-study/ats/thumbnail/house/fineart/fineart_Aaron Horkey_0.6676864_1102.jpg new file mode 100644 index 0000000000000000000000000000000000000000..568485a6671c88ef6b3221e933fb5c27a8d7d417 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/fineart/fineart_Aaron Horkey_0.6676864_1102.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:874b9ebc7c203b55b8146267232668bf4faba896cb3b303a965f0849e11c66f9 +size 21265 diff --git a/artists-to-study/ats/thumbnail/house/fineart/fineart_Aaron Jasinski_0.57948315_1494.jpg b/artists-to-study/ats/thumbnail/house/fineart/fineart_Aaron Jasinski_0.57948315_1494.jpg new file mode 100644 index 0000000000000000000000000000000000000000..51bf51b6949b219fd4b6f21a0877a8a4c0256ad2 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/fineart/fineart_Aaron Jasinski_0.57948315_1494.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21133d07c08e1d2566e32930d9c069e49b4feb7992f4008b50dcb8452de3409c +size 16313 diff --git a/artists-to-study/ats/thumbnail/house/fineart/fineart_Abbott Fuller Graves_0.6025608_1787.jpg b/artists-to-study/ats/thumbnail/house/fineart/fineart_Abbott Fuller Graves_0.6025608_1787.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fc03a0a48cb3772839d4ff363acccdb81fcb2a8f --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/fineart/fineart_Abbott Fuller Graves_0.6025608_1787.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ec30b15c5f22bf669b0b4968fb99eb1b626d8d7202b49467958e74bb1b76ecf +size 12691 diff --git a/artists-to-study/ats/thumbnail/house/fineart/fineart_Abbott Handerson Thayer_0.63428533_1475.jpg b/artists-to-study/ats/thumbnail/house/fineart/fineart_Abbott Handerson Thayer_0.63428533_1475.jpg new file mode 100644 index 0000000000000000000000000000000000000000..96b1b3f0c205e335e6e6d38250109400d47f90a6 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/fineart/fineart_Abbott Handerson Thayer_0.63428533_1475.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d18720386e9a66f5ec87ee684e2c2eefaf1ba8c5d27af0ad921a930bb9e01fb +size 12339 diff --git a/artists-to-study/ats/thumbnail/house/fineart/fineart_Abraham Bloemaert_0.68036544_0937.jpg b/artists-to-study/ats/thumbnail/house/fineart/fineart_Abraham Bloemaert_0.68036544_0937.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fab11476c20b187fc25685ff8c8ea12de099ef35 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/fineart/fineart_Abraham Bloemaert_0.68036544_0937.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c3f8d60fed182e22076f86717af6a556ccb1cdca4e37510394a30bf88e6ffa6 +size 14269 diff --git a/artists-to-study/ats/thumbnail/house/fineart/fineart_Abraham Bosschaert_0.6535562_1271.jpg b/artists-to-study/ats/thumbnail/house/fineart/fineart_Abraham Bosschaert_0.6535562_1271.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2e5464b6d402233f226ec09344bd33930c30f0e0 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/fineart/fineart_Abraham Bosschaert_0.6535562_1271.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd72baf0ce02ca43780a199d3d6a133e00a5ad5d13b8899424f9a3b62fe1981e +size 12596 diff --git a/artists-to-study/ats/thumbnail/house/fineart/fineart_Abraham Hondius_0.574326_2083.jpg b/artists-to-study/ats/thumbnail/house/fineart/fineart_Abraham Hondius_0.574326_2083.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a288ac6c2b3ccbc8600294d600b24d5d5ac1cec5 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/fineart/fineart_Abraham Hondius_0.574326_2083.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:395ff33f4abc1e22f988342d84eb47ec656817b179f9acb11d4dd462c61bc217 +size 12600 diff --git a/artists-to-study/ats/thumbnail/house/fineart/fineart_Abraham Mignon_0.60605425_0765.jpg b/artists-to-study/ats/thumbnail/house/fineart/fineart_Abraham Mignon_0.60605425_0765.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9103d5d395097b888ddf1e408e98c125f794b404 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/fineart/fineart_Abraham Mignon_0.60605425_0765.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d8e63b9c7a79b5a3853fdade95ea2f4104fab93c0ec9400040f9bdf36d9e6bc +size 10384 diff --git a/artists-to-study/ats/thumbnail/house/fineart/fineart_Abraham Pether_0.66922426_0964.jpg b/artists-to-study/ats/thumbnail/house/fineart/fineart_Abraham Pether_0.66922426_0964.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3e24e81e218802f55af88c04cf045c48741d2017 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/fineart/fineart_Abraham Pether_0.66922426_0964.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:648615aa37e454dc93c4a3f28a519d59b2e7dd02f3422abdb6513ed5921f0e8c +size 11213 diff --git a/artists-to-study/ats/thumbnail/house/fineart/fineart_Abraham Storck_0.5929502_1882.jpg b/artists-to-study/ats/thumbnail/house/fineart/fineart_Abraham Storck_0.5929502_1882.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b275d89abdc49574e2f1967ffca6e651baf8cdbd --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/fineart/fineart_Abraham Storck_0.5929502_1882.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a5e2de042ddd738c679bdf233d8cf3b0e858623548d30e593d27d53b91edaaf +size 12898 diff --git a/artists-to-study/ats/thumbnail/house/fineart/fineart_Abraham Willaerts_0.5966594_1089.jpg b/artists-to-study/ats/thumbnail/house/fineart/fineart_Abraham Willaerts_0.5966594_1089.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4c3a54cbfbe873f0065c691c6c5e1aa0f8da7f89 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/fineart/fineart_Abraham Willaerts_0.5966594_1089.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21b4cdaebcc29aafcadacda6f46f2ee6c39ec1001745ee48ddaf00d89da1bf2c +size 10704 diff --git a/artists-to-study/ats/thumbnail/house/fineart/fineart_Abraham de Vries_0.5859101_1604.jpg b/artists-to-study/ats/thumbnail/house/fineart/fineart_Abraham de Vries_0.5859101_1604.jpg new file mode 100644 index 0000000000000000000000000000000000000000..941a69ef63995ea67b265d5c50189711fc90af47 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/fineart/fineart_Abraham de Vries_0.5859101_1604.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c4ac8b26dc05d8f21b6b94ee2dce83b583e759fb7401ee12eade886195f20813 +size 12920 diff --git a/artists-to-study/ats/thumbnail/house/fineart/fineart_Abraham van Beijeren_0.6356113_1376.jpg b/artists-to-study/ats/thumbnail/house/fineart/fineart_Abraham van Beijeren_0.6356113_1376.jpg new file mode 100644 index 0000000000000000000000000000000000000000..aeda59d1588b01454c2ce194254378d5513df1ba --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/fineart/fineart_Abraham van Beijeren_0.6356113_1376.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a88686e8e9f15a218ea2d3732bf12375546c92d41272a7687574a38788f64cc +size 11017 diff --git a/artists-to-study/ats/thumbnail/house/fineart/fineart_Abraham van Calraet_0.63841593_0844.jpg b/artists-to-study/ats/thumbnail/house/fineart/fineart_Abraham van Calraet_0.63841593_0844.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e9a546836deea1232f8deb4971066d4eed2224a8 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/fineart/fineart_Abraham van Calraet_0.63841593_0844.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fabfc878fba5023716258bef0595daef7915c65cc0ec406b7d88aeeb2dbcb47d +size 11467 diff --git a/artists-to-study/ats/thumbnail/house/fineart/fineart_Abraham van den Tempel_0.66463804_0887.jpg b/artists-to-study/ats/thumbnail/house/fineart/fineart_Abraham van den Tempel_0.66463804_0887.jpg new file mode 100644 index 0000000000000000000000000000000000000000..236dcf9e3711e255ec1bf59010a6cb114c9af430 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/fineart/fineart_Abraham van den Tempel_0.66463804_0887.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:38e4f2ef18312cc47775d690364c00172495934a8569295e816a229b638b5e26 +size 13010 diff --git a/artists-to-study/ats/thumbnail/house/fineart/fineart_Abram Arkhipov_0.6550962_1256.jpg b/artists-to-study/ats/thumbnail/house/fineart/fineart_Abram Arkhipov_0.6550962_1256.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3aae2773e4012fac310265ac39981cef5246fbf6 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/fineart/fineart_Abram Arkhipov_0.6550962_1256.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1357a884ed28566e7f8d91eff3dee13ce336d9e9b240338cd26a09a672365b14 +size 13073 diff --git a/artists-to-study/ats/thumbnail/house/fineart/fineart_Abram Efimovich Arkhipov_0.60128385_1796.jpg b/artists-to-study/ats/thumbnail/house/fineart/fineart_Abram Efimovich Arkhipov_0.60128385_1796.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1391c24566cab4eb0058f38a39a4ccd39a8b5091 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/fineart/fineart_Abram Efimovich Arkhipov_0.60128385_1796.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2bb26b129f4bd11bc81538ca923fda7ffd341a2f818b0a9331999d765af2a419 +size 11911 diff --git a/artists-to-study/ats/thumbnail/house/fineart/fineart_Achille Leonardi_0.56674325_2157.jpg b/artists-to-study/ats/thumbnail/house/fineart/fineart_Achille Leonardi_0.56674325_2157.jpg new file mode 100644 index 0000000000000000000000000000000000000000..73bd95e9960688e98ce1314fb5f711b5f8f5b8d2 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/fineart/fineart_Achille Leonardi_0.56674325_2157.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:baaaee25524488c1269bdd82cef998be002f161559e6e6938e9d2d94d24c9e2e +size 12890 diff --git a/artists-to-study/ats/thumbnail/house/fineart/fineart_Ada Hill Walker_0.52207166_2520.jpg b/artists-to-study/ats/thumbnail/house/fineart/fineart_Ada Hill Walker_0.52207166_2520.jpg new file mode 100644 index 0000000000000000000000000000000000000000..74e30be278f344d42f2e1ed18ccca996d64d2991 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/fineart/fineart_Ada Hill Walker_0.52207166_2520.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:674e1adac645fee85e7861d5205737db341ce3cf3b6aa491ff4b8348ec666c6a +size 15138 diff --git a/artists-to-study/ats/thumbnail/house/fineart/fineart_Adam Elsheimer_0.6716068_0901.jpg b/artists-to-study/ats/thumbnail/house/fineart/fineart_Adam Elsheimer_0.6716068_0901.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6fe1db80f2402afb0dd91074c1ac2347f54ac40c --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/fineart/fineart_Adam Elsheimer_0.6716068_0901.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:164992ab2453657b71578ba5544cca0c80d6d09366c17447e70b1a25faae30f2 +size 15295 diff --git "a/artists-to-study/ats/thumbnail/house/fineart/fineart_Adam Szentp\303\251tery_0.4434548_2990.jpg" "b/artists-to-study/ats/thumbnail/house/fineart/fineart_Adam Szentp\303\251tery_0.4434548_2990.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..3123cfea733f30d9ea9dff2ee42e1a9c62326659 --- /dev/null +++ "b/artists-to-study/ats/thumbnail/house/fineart/fineart_Adam Szentp\303\251tery_0.4434548_2990.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b7916351afef7f91ddda43b3af4edf28d76adce6da186588bf576e0a78d602f +size 13532 diff --git a/artists-to-study/ats/thumbnail/house/fineart/fineart_Adi Granov_0.40670198_2804.jpg b/artists-to-study/ats/thumbnail/house/fineart/fineart_Adi Granov_0.40670198_2804.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c878327e2770a2e4f7ee57451942ee6edcf9df5d --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/fineart/fineart_Adi Granov_0.40670198_2804.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18f670548e02a29d43ac704e7bac5c03ff3954c2161b5a26fc88e2725eea45b3 +size 13345 diff --git a/artists-to-study/ats/thumbnail/house/fineart/fineart_Adolf Bierbrauer_0.56129396_1630.jpg b/artists-to-study/ats/thumbnail/house/fineart/fineart_Adolf Bierbrauer_0.56129396_1630.jpg new file mode 100644 index 0000000000000000000000000000000000000000..90b892749d94154cbcfce89a271baa64a2a86129 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/fineart/fineart_Adolf Bierbrauer_0.56129396_1630.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:09499c1a0027b90e8a75cfec9e28552bbf1e583fffe8e074fd2d13aae08be954 +size 12663 diff --git a/artists-to-study/ats/thumbnail/house/fineart/fineart_Adolf Born_0.55848217_2223.jpg b/artists-to-study/ats/thumbnail/house/fineart/fineart_Adolf Born_0.55848217_2223.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7429f72da8e65ef282368234552a2235d3df1cbc --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/fineart/fineart_Adolf Born_0.55848217_2223.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b75d6d5d859efc02993e7feaa477bdb50c7c29f96b25528aa36426bd52ff4191 +size 13392 diff --git a/artists-to-study/ats/thumbnail/house/fineart/fineart_Adolf Dietrich_0.590169_1383.jpg b/artists-to-study/ats/thumbnail/house/fineart/fineart_Adolf Dietrich_0.590169_1383.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d4c58302d5b56276893716103dd063d1bf6736c0 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/fineart/fineart_Adolf Dietrich_0.590169_1383.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a2f31b1d06eb55edb6b7d26e443a609a8fa781c14d5ae47d21efb243b366f0ea +size 11413 diff --git "a/artists-to-study/ats/thumbnail/house/fineart/fineart_Adolf F\303\251nyes_0.54192233_1737.jpg" "b/artists-to-study/ats/thumbnail/house/fineart/fineart_Adolf F\303\251nyes_0.54192233_1737.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..b7726d82bc2f7d5dc6781c586d27fc23cd73b785 --- /dev/null +++ "b/artists-to-study/ats/thumbnail/house/fineart/fineart_Adolf F\303\251nyes_0.54192233_1737.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b79db8927570d1ea833fba7005023b3895bc2e8dc6a92c7809a9987ff59115aa +size 14602 diff --git "a/artists-to-study/ats/thumbnail/house/fineart/fineart_Adolf Hir\303\251my-Hirschl_0.5946784_1555.jpg" "b/artists-to-study/ats/thumbnail/house/fineart/fineart_Adolf Hir\303\251my-Hirschl_0.5946784_1555.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..93d369e7c746fa4bb9c17aa6852aff5bf97bf484 --- /dev/null +++ "b/artists-to-study/ats/thumbnail/house/fineart/fineart_Adolf Hir\303\251my-Hirschl_0.5946784_1555.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:180f8ac611e0799901db6cf29da067cfdff8c2b0f19fa52297f9fff8b8555d54 +size 12385 diff --git "a/artists-to-study/ats/thumbnail/house/fineart/fineart_Adolf H\303\266lzel_0.5303149_2470.jpg" "b/artists-to-study/ats/thumbnail/house/fineart/fineart_Adolf H\303\266lzel_0.5303149_2470.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..3b71e4644bc70349968fe2c585860818596e4f80 --- /dev/null +++ "b/artists-to-study/ats/thumbnail/house/fineart/fineart_Adolf H\303\266lzel_0.5303149_2470.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ecfe6e1f8c1f4544a981712177bee4ee157ae80ded8c396dc53241ac5b52ee22 +size 12744 diff --git "a/artists-to-study/ats/thumbnail/house/fineart/fineart_Adolf Schr\303\266dter_0.55316544_2274.jpg" "b/artists-to-study/ats/thumbnail/house/fineart/fineart_Adolf Schr\303\266dter_0.55316544_2274.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..92230839b3b1ba3f16cae3feceeb95a89cb57d7b --- /dev/null +++ "b/artists-to-study/ats/thumbnail/house/fineart/fineart_Adolf Schr\303\266dter_0.55316544_2274.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cebb9727950baab19ce54249959dbacba4abf26808b6b25987451e1d766283a3 +size 13370 diff --git "a/artists-to-study/ats/thumbnail/house/fineart/fineart_Adolfo M\303\274ller-Ury_0.57944727_2036.jpg" "b/artists-to-study/ats/thumbnail/house/fineart/fineart_Adolfo M\303\274ller-Ury_0.57944727_2036.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..f2b83505c8a240a52613d94c2abbd132a2462603 --- /dev/null +++ "b/artists-to-study/ats/thumbnail/house/fineart/fineart_Adolfo M\303\274ller-Ury_0.57944727_2036.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:10fa9b15e5bcf29d2debf9ff58b5e9efb618fd8e7972d78e00ca6ba27a89fbc8 +size 12695 diff --git a/artists-to-study/ats/thumbnail/house/fineart/fineart_Adolph Menzel_0.6455246_1365.jpg b/artists-to-study/ats/thumbnail/house/fineart/fineart_Adolph Menzel_0.6455246_1365.jpg new file mode 100644 index 0000000000000000000000000000000000000000..92033bbed5e72901908d3e4e1cf66a4695dc2f8d --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/fineart/fineart_Adolph Menzel_0.6455246_1365.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8dbadf3bec5d5a16f84b588565a8d2984776b32fb1b5e80ec9067db3c7bac794 +size 14643 diff --git a/artists-to-study/ats/thumbnail/house/fineart/fineart_Adolphe Willette_0.6396935_1416.jpg b/artists-to-study/ats/thumbnail/house/fineart/fineart_Adolphe Willette_0.6396935_1416.jpg new file mode 100644 index 0000000000000000000000000000000000000000..445a187bd5000d47b7d1977324322bbf7ed53afa --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/fineart/fineart_Adolphe Willette_0.6396935_1416.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:047e506dcafb5e26ada75b8e9fa1e3ae7b5dd095a02ce3ca9f48546768d5a2e0 +size 12372 diff --git a/artists-to-study/ats/thumbnail/house/fineart/fineart_Adriaen Brouwer_0.6815058_0928.jpg b/artists-to-study/ats/thumbnail/house/fineart/fineart_Adriaen Brouwer_0.6815058_0928.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0f34f7d3bbebbb85aa81e2f59e42672450e018e5 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/fineart/fineart_Adriaen Brouwer_0.6815058_0928.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5addbf9fa0236da3cdaa98dd85084b8213c5340fbc9492f3eadd44c87f2d1e4 +size 13048 diff --git a/artists-to-study/ats/thumbnail/house/fineart/fineart_Adriaen Coorte_0.6670663_1105.jpg b/artists-to-study/ats/thumbnail/house/fineart/fineart_Adriaen Coorte_0.6670663_1105.jpg new file mode 100644 index 0000000000000000000000000000000000000000..332feddbbdda70f18127a52d075dc044866ad809 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/fineart/fineart_Adriaen Coorte_0.6670663_1105.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a38688529dfc0709aa9cd20e88f5f4d7d5af0d75559f9b587f826ccd165c181 +size 11496 diff --git a/artists-to-study/ats/thumbnail/house/fineart/fineart_Adriaen Hanneman_0.6514815_1294.jpg b/artists-to-study/ats/thumbnail/house/fineart/fineart_Adriaen Hanneman_0.6514815_1294.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c6d6cea92ea5792d411e5e3d7f784d66d9e0eda1 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/fineart/fineart_Adriaen Hanneman_0.6514815_1294.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f8e9a7310fbe3c7a86d7b74eaa59edaf689cee3cfb7a0bea195fe52e7b9e695 +size 12695 diff --git a/artists-to-study/ats/thumbnail/house/fineart/fineart_Adriaen Isenbrant_0.6475428_1345.jpg b/artists-to-study/ats/thumbnail/house/fineart/fineart_Adriaen Isenbrant_0.6475428_1345.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6170e7b3011c74053c6c2134bb15184dce2d665b --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/fineart/fineart_Adriaen Isenbrant_0.6475428_1345.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:598c00e5fd383b8800d9351d8b60150b3718d19a13e26c690eb09948e1235c83 +size 10236 diff --git a/artists-to-study/ats/thumbnail/house/fineart/fineart_Adriaen van Ostade_0.67220736_1051.jpg b/artists-to-study/ats/thumbnail/house/fineart/fineart_Adriaen van Ostade_0.67220736_1051.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fde8f2eefdcbc3b31705484de45867daac0d0c08 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/fineart/fineart_Adriaen van Ostade_0.67220736_1051.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f3196f74f62a2d2ee2b550e0bd8011bc56ba54ca7e2b6ca0e6977c1ab49208c0 +size 11296 diff --git a/artists-to-study/ats/thumbnail/house/fineart/fineart_Adriaen van Outrecht_0.67682564_0982.jpg b/artists-to-study/ats/thumbnail/house/fineart/fineart_Adriaen van Outrecht_0.67682564_0982.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5aa77cec25fdbec291120dff80272b066e6686e8 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/fineart/fineart_Adriaen van Outrecht_0.67682564_0982.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ac28e9015105bd8a524b325e0062809ee2f9aa2bf9d5feb3b8afb8122c40970 +size 12649 diff --git a/artists-to-study/ats/thumbnail/house/fineart/fineart_Adriaen van de Velde_0.69716156_0754.jpg b/artists-to-study/ats/thumbnail/house/fineart/fineart_Adriaen van de Velde_0.69716156_0754.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e9e5420520a9651d8d1ac52650208ff7e2dd9c45 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/fineart/fineart_Adriaen van de Velde_0.69716156_0754.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe2fce56a85afe53d1c0542d5c7f3c0621216d312adc3f5af4e214c6b4b856f4 +size 11831 diff --git a/artists-to-study/ats/thumbnail/house/fineart/fineart_Adriaen van de Venne_0.6899867_0833.jpg b/artists-to-study/ats/thumbnail/house/fineart/fineart_Adriaen van de Venne_0.6899867_0833.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0c803cca945f94f37c6475ad8abbc07dc7fb7ab1 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/fineart/fineart_Adriaen van de Venne_0.6899867_0833.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:881a5d9cd36012d379da5e3214baf17817eac718713babd40bd65da82e6cf83c +size 12319 diff --git a/artists-to-study/ats/thumbnail/house/fineart/fineart_Adriaen van der Werff_0.638286_1183.jpg b/artists-to-study/ats/thumbnail/house/fineart/fineart_Adriaen van der Werff_0.638286_1183.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ae1ced970a94a58456cd4ab039fbcc16bad34fbc --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/fineart/fineart_Adriaen van der Werff_0.638286_1183.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e0e6d2de1a781d5a6f74a3ed593a3706337b7fac00724068c12d1588ff871450 +size 12281 diff --git a/artists-to-study/ats/thumbnail/house/fineart/fineart_Adrianus Eversen_0.58259964_0883.jpg b/artists-to-study/ats/thumbnail/house/fineart/fineart_Adrianus Eversen_0.58259964_0883.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0e7cf90b1b1b42277e83609daac3ed8f561bfe32 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/fineart/fineart_Adrianus Eversen_0.58259964_0883.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a981aadf1d6072b3153209d7d6f7528f6ab35f60e9e1210d9e6e4a6cf498454d +size 12414 diff --git "a/artists-to-study/ats/thumbnail/house/fineart/fineart_Ad\303\251la\303\257de Labille-Guiard_0.6066263_1261.jpg" "b/artists-to-study/ats/thumbnail/house/fineart/fineart_Ad\303\251la\303\257de Labille-Guiard_0.6066263_1261.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..cac446331adf30031a347b5d7001a114de756185 --- /dev/null +++ "b/artists-to-study/ats/thumbnail/house/fineart/fineart_Ad\303\251la\303\257de Labille-Guiard_0.6066263_1261.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ae6690746add5d8b237085ddbdd98aa90f5fbfa8c93bc3d0fb88f76d705c1f9 +size 14419 diff --git "a/artists-to-study/ats/thumbnail/house/fineart/fineart_Ad\303\251la\303\257de Victoire Hall_0.539939_2405.jpg" "b/artists-to-study/ats/thumbnail/house/fineart/fineart_Ad\303\251la\303\257de Victoire Hall_0.539939_2405.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..308acc588829558c01ec57617d28dfda6a8106bf --- /dev/null +++ "b/artists-to-study/ats/thumbnail/house/fineart/fineart_Ad\303\251la\303\257de Victoire Hall_0.539939_2405.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7509f094855a2402f699d47ee331c8a155d3ea673539b489548b63bca8d7dbc2 +size 12718 diff --git a/artists-to-study/ats/thumbnail/house/fineart/fineart_Aelbert Cuyp_0.7033657_0691.jpg b/artists-to-study/ats/thumbnail/house/fineart/fineart_Aelbert Cuyp_0.7033657_0691.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5296ec6e8bf0f302ce1941fef3c98808e8bfe4ac --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/fineart/fineart_Aelbert Cuyp_0.7033657_0691.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed788c6baf4fa0c37cbc17f6babd4f0d425c75ae50f6aa15b85986a7286a808f +size 9346 diff --git a/artists-to-study/ats/thumbnail/house/fineart/fineart_Aert van der Neer_0.6159286_0871.jpg b/artists-to-study/ats/thumbnail/house/fineart/fineart_Aert van der Neer_0.6159286_0871.jpg new file mode 100644 index 0000000000000000000000000000000000000000..73e25ace9c72a5e261d944f74859c35d2fc32ac1 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/fineart/fineart_Aert van der Neer_0.6159286_0871.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:79b3d9e6f13b2af472c9618f6aa9eaf3175ea51506567ed3aa5559f75c35a164 +size 9825 diff --git a/artists-to-study/ats/thumbnail/house/fineart/fineart_Aertgen van Leyden_0.6951305_0773.jpg b/artists-to-study/ats/thumbnail/house/fineart/fineart_Aertgen van Leyden_0.6951305_0773.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a06c629a3edf003bf2957116b681571548817628 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/fineart/fineart_Aertgen van Leyden_0.6951305_0773.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac7957b50abd0311d8745c6d46f00c9cab828766ff8b7c37a8bbf0d381f7de24 +size 16448 diff --git a/artists-to-study/ats/thumbnail/house/fineart/fineart_Agnolo Bronzino_0.6787985_0963.jpg b/artists-to-study/ats/thumbnail/house/fineart/fineart_Agnolo Bronzino_0.6787985_0963.jpg new file mode 100644 index 0000000000000000000000000000000000000000..51eac865616bd696be8bbac3a61efb2432ee6144 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/fineart/fineart_Agnolo Bronzino_0.6787985_0963.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:29009160c90b2e54b1da9eda1045abe1d1af44ea236c48e8bc9b79d4c98c359a +size 15565 diff --git a/artists-to-study/ats/thumbnail/house/fineart/fineart_Agnolo Gaddi_0.79369193_0156.jpg b/artists-to-study/ats/thumbnail/house/fineart/fineart_Agnolo Gaddi_0.79369193_0156.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3d66cbcbdff7c82010736b5674c9b35d0bef5be7 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/fineart/fineart_Agnolo Gaddi_0.79369193_0156.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8559fd11961661b4b1b52d73d32b2af6c0226e2d93b4affcea66c2c9ecbecd2e +size 18183 diff --git a/artists-to-study/ats/thumbnail/house/fineart/fineart_Agostino Arrivabene_0.61166185_0811.jpg b/artists-to-study/ats/thumbnail/house/fineart/fineart_Agostino Arrivabene_0.61166185_0811.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5d1cb7db48294f219c0da1691a59f50419f8e6b7 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/fineart/fineart_Agostino Arrivabene_0.61166185_0811.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c35ff01a0fd85d65fb352a5ba7dd5c95d987b9e6e17566ae0383003f7d886f5 +size 8627 diff --git a/artists-to-study/ats/thumbnail/house/fineart/fineart_Agostino Carracci_0.7128167_0597.jpg b/artists-to-study/ats/thumbnail/house/fineart/fineart_Agostino Carracci_0.7128167_0597.jpg new file mode 100644 index 0000000000000000000000000000000000000000..42b4cd9cb32234d37a221a5a12c99b71b7f51536 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/fineart/fineart_Agostino Carracci_0.7128167_0597.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8efd2e244a994f56304532d5c4a0f5f8a26a3a15879c0ad492fc7a5199ab4719 +size 15968 diff --git a/artists-to-study/ats/thumbnail/house/fineart/fineart_Agostino Tassi_0.59265685_1885.jpg b/artists-to-study/ats/thumbnail/house/fineart/fineart_Agostino Tassi_0.59265685_1885.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2fbe9e5aed759e90544862f73d4610bcb4f15b02 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/fineart/fineart_Agostino Tassi_0.59265685_1885.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:decf9bc908faa1b04e027ef428d1f1b6a4046f15b729d3d065bba3f1808f3cfb +size 13025 diff --git "a/artists-to-study/ats/thumbnail/house/fineart/fineart_Agust\303\255n Fern\303\241ndez_0.53403986_2443.jpg" "b/artists-to-study/ats/thumbnail/house/fineart/fineart_Agust\303\255n Fern\303\241ndez_0.53403986_2443.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..4226fe0a4c6a1be02179a39e997c7f606e7ece07 --- /dev/null +++ "b/artists-to-study/ats/thumbnail/house/fineart/fineart_Agust\303\255n Fern\303\241ndez_0.53403986_2443.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c9756ca92f218254bb41c824ba6a7f8fe6d21da27fe8219bee217105ea417003 +size 9774 diff --git a/artists-to-study/ats/thumbnail/house/fineart/fineart_Akseli Gallen-Kallela_0.66927314_1083.jpg b/artists-to-study/ats/thumbnail/house/fineart/fineart_Akseli Gallen-Kallela_0.66927314_1083.jpg new file mode 100644 index 0000000000000000000000000000000000000000..52b36e4c55ea0176b476ead8997edcd486b5278f --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/fineart/fineart_Akseli Gallen-Kallela_0.66927314_1083.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8a5c11d277e6a506ec1aaec0760c775d00283a03f0d55bbc9c791db639c702b8 +size 12395 diff --git a/artists-to-study/ats/thumbnail/house/fineart/fineart_Al Capp_0.6239494_1576.jpg b/artists-to-study/ats/thumbnail/house/fineart/fineart_Al Capp_0.6239494_1576.jpg new file mode 100644 index 0000000000000000000000000000000000000000..72014c39f485e798f6823f9375a79def30a90687 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/fineart/fineart_Al Capp_0.6239494_1576.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c75301c3cf287c2788cb55a5bdab4f0cbb3c017ff40501221343a40f6538b7f5 +size 24308 diff --git a/artists-to-study/ats/thumbnail/house/fineart/fineart_Al Feldstein_0.6087723_1727.jpg b/artists-to-study/ats/thumbnail/house/fineart/fineart_Al Feldstein_0.6087723_1727.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6c3189d3dd8782c8da09d4458a620f8a58b475a1 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/fineart/fineart_Al Feldstein_0.6087723_1727.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:406d62130848dea319eb20d0d15bca61bca0e5f89d56837b602226945b996556 +size 24838 diff --git a/artists-to-study/ats/thumbnail/house/fineart/fineart_Alan Bean_0.57788515_2047.jpg b/artists-to-study/ats/thumbnail/house/fineart/fineart_Alan Bean_0.57788515_2047.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1bb89cad35949d100082b99a5a5a8a5319a15900 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/fineart/fineart_Alan Bean_0.57788515_2047.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb60c8882ee0b01f593019f7b0ed84afae24728e3272b7b1bf6e63315f4f05b1 +size 18519 diff --git a/artists-to-study/ats/thumbnail/house/fineart/fineart_Alan Davis_0.6029676_1784.jpg b/artists-to-study/ats/thumbnail/house/fineart/fineart_Alan Davis_0.6029676_1784.jpg new file mode 100644 index 0000000000000000000000000000000000000000..cc32f8d84f2da9f1ea623360af2de91a50e024c0 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/fineart/fineart_Alan Davis_0.6029676_1784.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2db60e492eb2ce1027a61194857c54ab54fcfe80823987fa5f8db5fa6583ca24 +size 26981 diff --git a/artists-to-study/ats/thumbnail/house/fineart/fineart_Alan Lee_0.5848701_1965.jpg b/artists-to-study/ats/thumbnail/house/fineart/fineart_Alan Lee_0.5848701_1965.jpg new file mode 100644 index 0000000000000000000000000000000000000000..67382130d24f81dd49b516dd35a08f871b4f0d8b --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/fineart/fineart_Alan Lee_0.5848701_1965.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb89c76aadff042f103fd5f59e128be61aceb0c98e3d45c4fc30ab8511c3b622 +size 11700 diff --git a/artists-to-study/ats/thumbnail/house/fineart/fineart_Alayna Lemmer_0.48293802_2134.jpg b/artists-to-study/ats/thumbnail/house/fineart/fineart_Alayna Lemmer_0.48293802_2134.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7c2fb0164a16f5e7559e89f6acac88b0323ecc30 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/fineart/fineart_Alayna Lemmer_0.48293802_2134.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:890b59aa2f1235a933a7e19b711194ca6a8825d1b8f04545e4c6884971efc1e8 +size 13872 diff --git a/artists-to-study/ats/thumbnail/house/fineart/fineart_Albert Anker_0.62389827_1578.jpg b/artists-to-study/ats/thumbnail/house/fineart/fineart_Albert Anker_0.62389827_1578.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f17dcf97a05b5605854abd207edaf4a50b251333 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/fineart/fineart_Albert Anker_0.62389827_1578.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f5c073ef6d75aa770847ae88c65729f79c0bc4e1ea3fdcbf04430d39f932674b +size 13594 diff --git a/artists-to-study/ats/thumbnail/house/fineart/fineart_Albert Bierstadt_0.67935765_0958.jpg b/artists-to-study/ats/thumbnail/house/fineart/fineart_Albert Bierstadt_0.67935765_0958.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e3da9ae97332a9cd19189ed748d8f052f6d2a12a --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/fineart/fineart_Albert Bierstadt_0.67935765_0958.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:131e1b3bc4464b826f8f240da2f4c21e7bc49784e7cd85acfc06d78df075b8e3 +size 13926 diff --git a/artists-to-study/ats/thumbnail/house/fineart/fineart_Albert Dorne_0.56395364_2183.jpg b/artists-to-study/ats/thumbnail/house/fineart/fineart_Albert Dorne_0.56395364_2183.jpg new file mode 100644 index 0000000000000000000000000000000000000000..150d62de45ea4158b06d0fe50cd993ba310cda98 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/fineart/fineart_Albert Dorne_0.56395364_2183.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a8e49a1691a6942b561907e1fa72f0c55480e43fcafca3d2624f28f2fe9b9b0 +size 14472 diff --git a/artists-to-study/ats/thumbnail/house/fineart/fineart_Albert Dubois-Pillet_0.57526016_1119.jpg b/artists-to-study/ats/thumbnail/house/fineart/fineart_Albert Dubois-Pillet_0.57526016_1119.jpg new file mode 100644 index 0000000000000000000000000000000000000000..36e3955ed5e31a43526e01d8981b00c751ee7ecd --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/fineart/fineart_Albert Dubois-Pillet_0.57526016_1119.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:08f893d936d463edda7d4c8289269a7633f01d85b43e387a67485dd15e110eba +size 14901 diff --git a/artists-to-study/ats/thumbnail/house/fineart/fineart_Albert Eckhout_0.5284096_2483.jpg b/artists-to-study/ats/thumbnail/house/fineart/fineart_Albert Eckhout_0.5284096_2483.jpg new file mode 100644 index 0000000000000000000000000000000000000000..57910b574647358e54da6f5cfcbd1a6a1e013a60 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/fineart/fineart_Albert Eckhout_0.5284096_2483.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2bf251fa04fd57cc17075739a3a8eb7d44227107998f515c66504a614cb9d55a +size 12588 diff --git a/artists-to-study/ats/thumbnail/house/fineart/fineart_Albert Edelfelt_0.57466495_2079.jpg b/artists-to-study/ats/thumbnail/house/fineart/fineart_Albert Edelfelt_0.57466495_2079.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ed6652cf0d06bf100081242495679f38d36962a9 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/fineart/fineart_Albert Edelfelt_0.57466495_2079.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae24ee5fb48d7b42f804c330becce0265b9ee07985252bb20f3f88a97becd218 +size 11512 diff --git a/artists-to-study/ats/thumbnail/house/fineart/fineart_Albert Goodwin_0.6368695_1444.jpg b/artists-to-study/ats/thumbnail/house/fineart/fineart_Albert Goodwin_0.6368695_1444.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a75bc770485e7d83699c4ba149c8ea0bd04cf1b4 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/fineart/fineart_Albert Goodwin_0.6368695_1444.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:02824fc2d4260a78aba4c19ce5770848cbc3c478828ab23aa5ab23380e432a99 +size 11365 diff --git a/artists-to-study/ats/thumbnail/house/fineart/fineart_Albert Guillaume_0.56529653_1596.jpg b/artists-to-study/ats/thumbnail/house/fineart/fineart_Albert Guillaume_0.56529653_1596.jpg new file mode 100644 index 0000000000000000000000000000000000000000..502173b9e16975e701ad4dff4bce97005e283b43 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/fineart/fineart_Albert Guillaume_0.56529653_1596.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6eff83aafa619e0d920faef44b8a692e8e3b141725d8296baad1eed1976725f1 +size 11731 diff --git a/artists-to-study/ats/thumbnail/house/fineart/fineart_Albert Henry Krehbiel_0.54952574_2308.jpg b/artists-to-study/ats/thumbnail/house/fineart/fineart_Albert Henry Krehbiel_0.54952574_2308.jpg new file mode 100644 index 0000000000000000000000000000000000000000..623f0cc76e921e24bf2399cf4627ed806b6694ba --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/fineart/fineart_Albert Henry Krehbiel_0.54952574_2308.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e4a4fe92dc63fc502f1171a910a886bc4d225deb9632fb1c869ee7eb7a4d8ab +size 12762 diff --git a/artists-to-study/ats/thumbnail/house/fineart/fineart_Albert J. Welti_0.5736257_2091.jpg b/artists-to-study/ats/thumbnail/house/fineart/fineart_Albert J. Welti_0.5736257_2091.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c4f2751bab4a4ef0d55ca57dfe020e615ebcca02 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/fineart/fineart_Albert J. Welti_0.5736257_2091.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f5d302ff3f6df19f48639265c795a5a203244c5a71a9c1efbaeb52e08e66c4f4 +size 15788 diff --git a/artists-to-study/ats/thumbnail/house/fineart/fineart_Albert Joseph Moore_0.6374316_1439.jpg b/artists-to-study/ats/thumbnail/house/fineart/fineart_Albert Joseph Moore_0.6374316_1439.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4d436a0602760d69081c3b8301ef00bd0343615e --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/fineart/fineart_Albert Joseph Moore_0.6374316_1439.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:030e3a879db479b3a67514d7dce5078bc0ac9fa2c51b2ca7b65f8c1330f8d87b +size 13012 diff --git "a/artists-to-study/ats/thumbnail/house/fineart/fineart_Albert Joseph P\303\251not_0.65085316_1305.jpg" "b/artists-to-study/ats/thumbnail/house/fineart/fineart_Albert Joseph P\303\251not_0.65085316_1305.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..cb002ead8c94c12bb972f52724abd8994db691be --- /dev/null +++ "b/artists-to-study/ats/thumbnail/house/fineart/fineart_Albert Joseph P\303\251not_0.65085316_1305.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:369519d7bdbb300aeb12cd8d8c3e8c3f2a4d2d007831c7621f17f2773bc3c466 +size 11964 diff --git a/artists-to-study/ats/thumbnail/house/fineart/fineart_Albert Koetsier_0.45385844_2939.jpg b/artists-to-study/ats/thumbnail/house/fineart/fineart_Albert Koetsier_0.45385844_2939.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b87dc0525cd5e7b280269dc897ccdb859f9edafa --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/fineart/fineart_Albert Koetsier_0.45385844_2939.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ab488f365d0ae84d4ffce38e4ac244a3b7d496f6361afa2bc4e40a02ddde251 +size 12085 diff --git a/artists-to-study/ats/thumbnail/house/fineart/fineart_Albert Kotin_0.55737317_2240.jpg b/artists-to-study/ats/thumbnail/house/fineart/fineart_Albert Kotin_0.55737317_2240.jpg new file mode 100644 index 0000000000000000000000000000000000000000..84970e69447b40665f5db34c192aa486d133d648 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/fineart/fineart_Albert Kotin_0.55737317_2240.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87ab2d9d2cea9e704476bff3b73cd3977414264f0a6a6cabf6976500d5de58d1 +size 15357 diff --git a/artists-to-study/ats/thumbnail/house/fineart/fineart_Albert Lynch_0.56497896_2170.jpg b/artists-to-study/ats/thumbnail/house/fineart/fineart_Albert Lynch_0.56497896_2170.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6694b1a6f517523b812272f0b66f235cba18aa2d --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/fineart/fineart_Albert Lynch_0.56497896_2170.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e133794b4e8e025f9fd88ece418c91ad27f2a25e8ebb89aefe3a957950beb9b +size 14153 diff --git a/artists-to-study/ats/thumbnail/house/fineart/fineart_Albert Marquet_0.64471006_1371.jpg b/artists-to-study/ats/thumbnail/house/fineart/fineart_Albert Marquet_0.64471006_1371.jpg new file mode 100644 index 0000000000000000000000000000000000000000..45a31ea54c0b9947cb50f9094ff058bf2e54b5cb --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/fineart/fineart_Albert Marquet_0.64471006_1371.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4429f2fd66ebc44dc9109a4fd4f2689c0a3d2e49cb1bef26170270412428df64 +size 15388 diff --git a/artists-to-study/ats/thumbnail/house/fineart/fineart_Albert Namatjira_0.6573372_1226.jpg b/artists-to-study/ats/thumbnail/house/fineart/fineart_Albert Namatjira_0.6573372_1226.jpg new file mode 100644 index 0000000000000000000000000000000000000000..54adbd15f08b57cde9214fd31fcec6232c8e9bda --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/fineart/fineart_Albert Namatjira_0.6573372_1226.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f9a18c61397a972434ce2fbd12e42320f201bea663cee031e1a433dad567156 +size 13655 diff --git "a/artists-to-study/ats/thumbnail/house/fineart/fineart_Albert Paris G\303\274tersloh_0.5817827_2004.jpg" "b/artists-to-study/ats/thumbnail/house/fineart/fineart_Albert Paris G\303\274tersloh_0.5817827_2004.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..fd558cf3eedd6168a22d5179cd0100c319c8d072 --- /dev/null +++ "b/artists-to-study/ats/thumbnail/house/fineart/fineart_Albert Paris G\303\274tersloh_0.5817827_2004.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a637e392dcfe11135f5253b4eb638b19d2734c501f94574ff25c9b4bdee7f19 +size 13398 diff --git a/artists-to-study/ats/thumbnail/house/fineart/fineart_Albert Pinkham Ryder_0.7338848_0295.jpg b/artists-to-study/ats/thumbnail/house/fineart/fineart_Albert Pinkham Ryder_0.7338848_0295.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bd1eb35f1f5d9e5beefbc5acc2fdfc7fb25bb7a0 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/fineart/fineart_Albert Pinkham Ryder_0.7338848_0295.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:523ac00c4c8c9bf9b8661f0228988ecfd072adc5b57c27461fb43551bf424d61 +size 8750 diff --git a/artists-to-study/ats/thumbnail/house/fineart/fineart_Albert Swinden_0.5375844_2423.jpg b/artists-to-study/ats/thumbnail/house/fineart/fineart_Albert Swinden_0.5375844_2423.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b7feb5ce5c52b38c3a4b217b9ac97799eff5d2c7 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/fineart/fineart_Albert Swinden_0.5375844_2423.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce4c853ebf3458aca82c41f6ae6c72267ecceaee5fe4d530989d24944e5f363b +size 12212 diff --git a/artists-to-study/ats/thumbnail/house/fineart/fineart_Alberto Morrocco_0.64352196_1386.jpg b/artists-to-study/ats/thumbnail/house/fineart/fineart_Alberto Morrocco_0.64352196_1386.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ffe301c587de3d4d5c476b33862bb1a6cdd7e183 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/fineart/fineart_Alberto Morrocco_0.64352196_1386.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b86d3bcafcc4123ead3765636d5e085cc4dfbb7b97bfad0bfaf3a36d2d8eb87 +size 11342 diff --git a/artists-to-study/ats/thumbnail/house/fineart/fineart_Alberto Seveso_0.47735062_2338.jpg b/artists-to-study/ats/thumbnail/house/fineart/fineart_Alberto Seveso_0.47735062_2338.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1f6b2de9337abdb4be8e2329312200c48329c65e --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/fineart/fineart_Alberto Seveso_0.47735062_2338.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fb62ca02b74c0533e1baf099e1b7404a0bc9d1d974d5330e6eac3bc77aa4234f +size 16634 diff --git a/artists-to-study/ats/thumbnail/house/fineart/fineart_Alberto Sughi_0.5736495_2090.jpg b/artists-to-study/ats/thumbnail/house/fineart/fineart_Alberto Sughi_0.5736495_2090.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3db4a84c382c0c6a9621af3d4bbb745898475af9 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/fineart/fineart_Alberto Sughi_0.5736495_2090.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb083156d9bebc9abe9b9c8955215136ef8571c2e15a802d729b3a56d2474a0c +size 13639 diff --git a/artists-to-study/ats/thumbnail/house/fineart/fineart_Albin Egger-Lienz_0.72120845_0520.jpg b/artists-to-study/ats/thumbnail/house/fineart/fineart_Albin Egger-Lienz_0.72120845_0520.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3ed577e9ad491e37d7e127150684c10dfdee4499 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/fineart/fineart_Albin Egger-Lienz_0.72120845_0520.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a54a0573bbf5f7e9abc248d905602ede3538106f2981040ab79818854aef04a3 +size 10730 diff --git a/artists-to-study/ats/thumbnail/house/fineart/fineart_Albrecht Altdorfer_0.7663378_0242.jpg b/artists-to-study/ats/thumbnail/house/fineart/fineart_Albrecht Altdorfer_0.7663378_0242.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d191b15754f89825c96fb997929426877f9ec35b --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/fineart/fineart_Albrecht Altdorfer_0.7663378_0242.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a03ff547c32eb80462e1d12b8a166b34ae0e311c1d6e5bd676de01e670776d5a +size 18403 diff --git a/artists-to-study/ats/thumbnail/house/fineart/fineart_Albrecht Anker_0.65531695_1250.jpg b/artists-to-study/ats/thumbnail/house/fineart/fineart_Albrecht Anker_0.65531695_1250.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b702d7c1ae5e4556eefcf2704d423f646938f1dd --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/fineart/fineart_Albrecht Anker_0.65531695_1250.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5bf6b7218d2cc1e5b351aadd9486548b7a58abf4ad7d7ed56b931d6cbdf89e54 +size 15339 diff --git a/artists-to-study/ats/thumbnail/house/fineart/fineart_Albrecht Durer_0.7122327_0605.jpg b/artists-to-study/ats/thumbnail/house/fineart/fineart_Albrecht Durer_0.7122327_0605.jpg new file mode 100644 index 0000000000000000000000000000000000000000..57b33fbc274caf6b158aa6a2b4df4478d3fdd4ce --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/fineart/fineart_Albrecht Durer_0.7122327_0605.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87f69d722dd4a4b49e5590af2e08911ff19134a829199e09e3f619b00e72a27c +size 18307 diff --git "a/artists-to-study/ats/thumbnail/house/fineart/fineart_Albrecht D\303\274rer_0.72946966_0441.jpg" "b/artists-to-study/ats/thumbnail/house/fineart/fineart_Albrecht D\303\274rer_0.72946966_0441.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..832b22a364c208be8ea8ed04f202219dbc2f6599 --- /dev/null +++ "b/artists-to-study/ats/thumbnail/house/fineart/fineart_Albrecht D\303\274rer_0.72946966_0441.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:99ea418ba6ae78a645c91a4750eedcc1f46763ea6088acd0b0f5a63f962677b2 +size 17909 diff --git a/artists-to-study/ats/thumbnail/house/fineart/fineart_Aldus Manutius_0.67366326_1024.jpg b/artists-to-study/ats/thumbnail/house/fineart/fineart_Aldus Manutius_0.67366326_1024.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bb1a82824abf3b8b22abae15c882c8528ca7dfa7 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/fineart/fineart_Aldus Manutius_0.67366326_1024.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:032c88ced6f8f5f1e661d5d8980ab76e20caf8a9dcc7db063e36a9581b19ccd1 +size 18584 diff --git a/artists-to-study/ats/thumbnail/house/fineart/fineart_Aleksander Gierymski_0.5590013_2221.jpg b/artists-to-study/ats/thumbnail/house/fineart/fineart_Aleksander Gierymski_0.5590013_2221.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f0f37dd3b611d7278de192e67888f6872fee5d51 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/fineart/fineart_Aleksander Gierymski_0.5590013_2221.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ed0019b526b4155dcadae2487c50c7aacf0626c6f2516b255791f2bc4032cde +size 12311 diff --git a/artists-to-study/ats/thumbnail/house/fineart/fineart_Aleksandr Ivanovich Laktionov_0.606544_1744.jpg b/artists-to-study/ats/thumbnail/house/fineart/fineart_Aleksandr Ivanovich Laktionov_0.606544_1744.jpg new file mode 100644 index 0000000000000000000000000000000000000000..99694a1b81603f9a9062746dd3a67c52ed1958be --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/fineart/fineart_Aleksandr Ivanovich Laktionov_0.606544_1744.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa9aa88bf7f2ee731e3cabccb17f5e843b5e2722aff0bc15f3b0b8e2b4211639 +size 12137 diff --git a/artists-to-study/ats/thumbnail/house/fineart/fineart_Aleksey Savrasov_0.65207493_0923.jpg b/artists-to-study/ats/thumbnail/house/fineart/fineart_Aleksey Savrasov_0.65207493_0923.jpg new file mode 100644 index 0000000000000000000000000000000000000000..054d0453a9e2cb7b212e2e681b9bc518ee3d44f6 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/fineart/fineart_Aleksey Savrasov_0.65207493_0923.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de52a3fc0cb86e2268f01e718d7e7f9ce4d6aaece5f207784ab24e694bccf835 +size 9813 diff --git a/artists-to-study/ats/thumbnail/house/fineart/fineart_Aleksi Briclot_0.46056762_1746.jpg b/artists-to-study/ats/thumbnail/house/fineart/fineart_Aleksi Briclot_0.46056762_1746.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0c67b346b4e03fe0c3fdb9060ef16c2242c3f761 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/fineart/fineart_Aleksi Briclot_0.46056762_1746.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:157fb80602491a844940658f501ab4f0f40133fb2c29f72848f868219febc6fe +size 13720 diff --git a/artists-to-study/ats/thumbnail/house/fineart/fineart_Alessandro Allori_0.6892961_0843.jpg b/artists-to-study/ats/thumbnail/house/fineart/fineart_Alessandro Allori_0.6892961_0843.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2b1fb33ae61e26e146f897448562ebdf5b5a83f6 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/fineart/fineart_Alessandro Allori_0.6892961_0843.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:20163176a1f64931c23208f2e657f4e1cd8eaf8cc1340fc21d841219096c36f6 +size 14501 diff --git a/artists-to-study/ats/thumbnail/house/fineart/fineart_Alessandro Galli Bibiena_0.6412889_1400.jpg b/artists-to-study/ats/thumbnail/house/fineart/fineart_Alessandro Galli Bibiena_0.6412889_1400.jpg new file mode 100644 index 0000000000000000000000000000000000000000..890877cc80be14b437b71c8c7a6645a42b28874e --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/fineart/fineart_Alessandro Galli Bibiena_0.6412889_1400.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ddac3252a036d882ff2b78de3d8a9394b411ede6b372f02586eba5babf612195 +size 15175 diff --git a/artists-to-study/ats/thumbnail/house/fineart/fineart_Alex Colville_0.68787855_0863.jpg b/artists-to-study/ats/thumbnail/house/fineart/fineart_Alex Colville_0.68787855_0863.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5a86852ed011f38cb951acd47205d2831fd67732 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/fineart/fineart_Alex Colville_0.68787855_0863.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f6a200bae8bd80e520fd89fda76ccd6b6e7fde049bd1ed330f478a9fd15c129d +size 12232 diff --git a/artists-to-study/ats/thumbnail/house/fineart/fineart_Alex Maleev_0.6067118_1742.jpg b/artists-to-study/ats/thumbnail/house/fineart/fineart_Alex Maleev_0.6067118_1742.jpg new file mode 100644 index 0000000000000000000000000000000000000000..af8efcf2330889da2e4775a5ebef74a4318fb401 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/fineart/fineart_Alex Maleev_0.6067118_1742.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec70d72376a9eff184be2b2e626ed65ae884cf0db5f99fe3b134075fcb7edc31 +size 12322 diff --git a/artists-to-study/ats/thumbnail/house/n/n_Amadou Opa Bathily_0.5536976_2271.jpg b/artists-to-study/ats/thumbnail/house/n/n_Amadou Opa Bathily_0.5536976_2271.jpg new file mode 100644 index 0000000000000000000000000000000000000000..30d7e4efd00c0446230c287c05fc1a9f1ecfa3ae --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/n/n_Amadou Opa Bathily_0.5536976_2271.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:471514062a49630cb98078103bf6a750ba8b8730f0ef80d9581c19cc202231a8 +size 11075 diff --git a/artists-to-study/ats/thumbnail/house/n/n_Barkley Hendricks_0.6883637_0854.jpg b/artists-to-study/ats/thumbnail/house/n/n_Barkley Hendricks_0.6883637_0854.jpg new file mode 100644 index 0000000000000000000000000000000000000000..626a706c6966b70885e01cb439c6dde90c751ce7 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/n/n_Barkley Hendricks_0.6883637_0854.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c0c7ae900b02613bedfb9d16054c2246f7f9ccc5c45694f9bc3dbb4b02a1ae14 +size 13198 diff --git a/artists-to-study/ats/thumbnail/house/n/n_Barkley L. Hendricks_0.69986427_0728.jpg b/artists-to-study/ats/thumbnail/house/n/n_Barkley L. Hendricks_0.69986427_0728.jpg new file mode 100644 index 0000000000000000000000000000000000000000..473069fe13ec30b57f7a6ce1d0ea6eda2c3a8e22 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/n/n_Barkley L. Hendricks_0.69986427_0728.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e7db0633d8649e70c904d42ea0cc6bf6922a294ad93a5994a03259d49eed529e +size 13127 diff --git a/artists-to-study/ats/thumbnail/house/n/n_Bruce Onobrakpeya_0.42588046_2994.jpg b/artists-to-study/ats/thumbnail/house/n/n_Bruce Onobrakpeya_0.42588046_2994.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8b389725d21a974303610c281e834c0015008cfc --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/n/n_Bruce Onobrakpeya_0.42588046_2994.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e090477d1ae548d326bf9b5c7e379eb4d8189ca10149d5fb349fba7c273d448 +size 16388 diff --git a/artists-to-study/ats/thumbnail/house/n/n_Carrie Mae Weems_0.6645416_0810.jpg b/artists-to-study/ats/thumbnail/house/n/n_Carrie Mae Weems_0.6645416_0810.jpg new file mode 100644 index 0000000000000000000000000000000000000000..eaef4b7de19d4e5bfe3c0c0042104ee6205dcfdf --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/n/n_Carrie Mae Weems_0.6645416_0810.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c34374c1560a7c0458aa8d4c5a9358476441d961956c79fe3a4f4984abaf57d8 +size 12909 diff --git a/artists-to-study/ats/thumbnail/house/n/n_Chinwe Chukwuogo-Roy_0.49445248_2693.jpg b/artists-to-study/ats/thumbnail/house/n/n_Chinwe Chukwuogo-Roy_0.49445248_2693.jpg new file mode 100644 index 0000000000000000000000000000000000000000..84942bb19c1eac2ada38d092a0a87f58f7990cae --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/n/n_Chinwe Chukwuogo-Roy_0.49445248_2693.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec9d0b7503be5e8da342468ab5bbffaad89b2f7fc5d4e3572551fde17c7513c1 +size 10746 diff --git a/artists-to-study/ats/thumbnail/house/n/n_Howardena Pindell_0.7686921_0235.jpg b/artists-to-study/ats/thumbnail/house/n/n_Howardena Pindell_0.7686921_0235.jpg new file mode 100644 index 0000000000000000000000000000000000000000..df0b25535e9bbb9e7f5c15749f6363c9a7bccdfd --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/n/n_Howardena Pindell_0.7686921_0235.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7557e512aca74065ac91cb80fbcba42a79b457ff43534495fcc912473053fa0d +size 17798 diff --git a/artists-to-study/ats/thumbnail/house/n/n_Juliana Huxtable_0.5364195_2428.jpg b/artists-to-study/ats/thumbnail/house/n/n_Juliana Huxtable_0.5364195_2428.jpg new file mode 100644 index 0000000000000000000000000000000000000000..dd0c51867e994fa93c35ed9944334c7b5bc6e6b4 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/n/n_Juliana Huxtable_0.5364195_2428.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3cb4def16cd2bbdc03d5463c79ddc243a8f620eef8354e51c13441e2782ed61c +size 16902 diff --git a/artists-to-study/ats/thumbnail/house/n/n_Kadir Nelson_0.5669006_2154.jpg b/artists-to-study/ats/thumbnail/house/n/n_Kadir Nelson_0.5669006_2154.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7c2f595b1f0a1705417c8ecea56b1a0779a957bd --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/n/n_Kadir Nelson_0.5669006_2154.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:41aa14933326dfff18162c1661bf039a05baabe90b1be643bfedd27d55320271 +size 15081 diff --git a/artists-to-study/ats/thumbnail/house/n/n_Kehinde Wiley_0.66218376_1171.jpg b/artists-to-study/ats/thumbnail/house/n/n_Kehinde Wiley_0.66218376_1171.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4367b33e6ee5c20a69446dff9b2fc1d2fca1e585 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/n/n_Kehinde Wiley_0.66218376_1171.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e580a6eccd032e3eacd5186bd3d87e79dedb757b6e5c12eafb2fb8b35ba3c371 +size 21862 diff --git a/artists-to-study/ats/thumbnail/house/n/n_Mati Klarwein_0.7066092_0663.jpg b/artists-to-study/ats/thumbnail/house/n/n_Mati Klarwein_0.7066092_0663.jpg new file mode 100644 index 0000000000000000000000000000000000000000..508f7424b9d08078d3d4aa8559b32f2fdc33acac --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/n/n_Mati Klarwein_0.7066092_0663.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e39ec44e6456ccf02bacc079106d2ec37bf82dfd6751bb8576c94a1cb65e0cb +size 18033 diff --git a/artists-to-study/ats/thumbnail/house/n/n_RETNA (Marquis Lewis)_0.47963_1398.jpg b/artists-to-study/ats/thumbnail/house/n/n_RETNA (Marquis Lewis)_0.47963_1398.jpg new file mode 100644 index 0000000000000000000000000000000000000000..cc720918b4c4759399faedee0f3da621164e5005 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/n/n_RETNA (Marquis Lewis)_0.47963_1398.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a9a0b63f377d0ab82cf5ed52106f90cbe2fa9721454f66cd8c2e5d3d531b8bed +size 19716 diff --git a/artists-to-study/ats/thumbnail/house/n/n_Teophilus Tetteh_0.46064255_2897.jpg b/artists-to-study/ats/thumbnail/house/n/n_Teophilus Tetteh_0.46064255_2897.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c56334940d91f09ecea1967165a1210c8ff7aa0a --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/n/n_Teophilus Tetteh_0.46064255_2897.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:856d5c39f876e6ec242e2c0f6adeba99037db5f35fed6ba692927e2f195a55d5 +size 13678 diff --git a/artists-to-study/ats/thumbnail/house/n/n_Wangechi Mutu_0.6394607_1417.jpg b/artists-to-study/ats/thumbnail/house/n/n_Wangechi Mutu_0.6394607_1417.jpg new file mode 100644 index 0000000000000000000000000000000000000000..feb241690b2aa00b21303a0ec5022fb4c53e7e1d --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/n/n_Wangechi Mutu_0.6394607_1417.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e0759b6b567539d9c61d080779fcab9e3543b8918175fe1fed3deee278aa3bc +size 14640 diff --git a/artists-to-study/ats/thumbnail/house/n/n_Yinka Shonibare_0.68256056_0919.jpg b/artists-to-study/ats/thumbnail/house/n/n_Yinka Shonibare_0.68256056_0919.jpg new file mode 100644 index 0000000000000000000000000000000000000000..069c3ed51f3c7cdb984f219896512e8ad3864de4 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/n/n_Yinka Shonibare_0.68256056_0919.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c4146c8b35743b8c80fc438906209f0aff1da440927b9a6de39505acbf78774 +size 18358 diff --git a/artists-to-study/ats/thumbnail/house/n/n_Zanele Muholi_0.58554715_1164.jpg b/artists-to-study/ats/thumbnail/house/n/n_Zanele Muholi_0.58554715_1164.jpg new file mode 100644 index 0000000000000000000000000000000000000000..cf2c31af4ce914c87e4956fdb611d49997fe5dab --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/n/n_Zanele Muholi_0.58554715_1164.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:56c0f83f90127926e6cc9e2d8055e21f815124f579a63435efd07d71181866e0 +size 14942 diff --git a/artists-to-study/ats/thumbnail/house/nudity/nudity_Affandi_0.7170285_0550.jpg b/artists-to-study/ats/thumbnail/house/nudity/nudity_Affandi_0.7170285_0550.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c5a6320c3f874143e37058a64e9a0ef0137464f5 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/nudity/nudity_Affandi_0.7170285_0550.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9790ff43fcebc8d1e15aab949713ce7b42b7e4da09f6c2cc8e63fd1821aa44a5 +size 22566 diff --git a/artists-to-study/ats/thumbnail/house/nudity/nudity_Albert Benois_0.5902705_1907.jpg b/artists-to-study/ats/thumbnail/house/nudity/nudity_Albert Benois_0.5902705_1907.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0bc4910293aeb157eddb0128d66fbd17fb9e4a69 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/nudity/nudity_Albert Benois_0.5902705_1907.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c90c4f322bd671eb466e2383801c7e65c854f4cb399b843b9a04eca0c547ee9 +size 12576 diff --git a/artists-to-study/ats/thumbnail/house/nudity/nudity_Albert Bertelsen_0.54038215_2397.jpg b/artists-to-study/ats/thumbnail/house/nudity/nudity_Albert Bertelsen_0.54038215_2397.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ca2e7e7e8694a082f419ee80627b2bf5b6e1541c --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/nudity/nudity_Albert Bertelsen_0.54038215_2397.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:95e4a6575d06808879ff02a74060bc64d5a064a8eb71dd9a47fc323d54b468db +size 16106 diff --git a/artists-to-study/ats/thumbnail/house/nudity/nudity_Albert Bloch_0.69573116_0766.jpg b/artists-to-study/ats/thumbnail/house/nudity/nudity_Albert Bloch_0.69573116_0766.jpg new file mode 100644 index 0000000000000000000000000000000000000000..071a8b990b1b4161ce3c6d305af005db2c6694af --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/nudity/nudity_Albert Bloch_0.69573116_0766.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c98665f0d8c226d7592ce69a82bac5c6c8d9598753aed1c6d9c8975fc9ac70e +size 14460 diff --git "a/artists-to-study/ats/thumbnail/house/nudity/nudity_Aleksander Or\305\202owski_0.546705_2322.jpg" "b/artists-to-study/ats/thumbnail/house/nudity/nudity_Aleksander Or\305\202owski_0.546705_2322.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..0e056fcaba6ee8f056f13bf9e7000698323ebe3a --- /dev/null +++ "b/artists-to-study/ats/thumbnail/house/nudity/nudity_Aleksander Or\305\202owski_0.546705_2322.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d29f8e16ec2964096985b9e403407062edc5c691e79c1a00b63230d06df2b6fd +size 11522 diff --git a/artists-to-study/ats/thumbnail/house/nudity/nudity_Alex Grey_0.62908936_1464.jpg b/artists-to-study/ats/thumbnail/house/nudity/nudity_Alex Grey_0.62908936_1464.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ef6f46bda783091d8cd0aa03829149fe8d730df0 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/nudity/nudity_Alex Grey_0.62908936_1464.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:908f9e70442a87a0dfd9faed5a4667e29d73b662df095533b978dda555954a1a +size 24466 diff --git a/artists-to-study/ats/thumbnail/house/nudity/nudity_Alfred Kelsner_0.5455753_2352.jpg b/artists-to-study/ats/thumbnail/house/nudity/nudity_Alfred Kelsner_0.5455753_2352.jpg new file mode 100644 index 0000000000000000000000000000000000000000..12e07fca466c62ac95a4cb7b27778ecada290747 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/nudity/nudity_Alfred Kelsner_0.5455753_2352.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:74186dd43c02aece92e5b9ffc932af923bfcab298fba425d1311d547db770141 +size 11827 diff --git a/artists-to-study/ats/thumbnail/house/nudity/nudity_Anne-Louis Girodet_0.58104825_0752.jpg b/artists-to-study/ats/thumbnail/house/nudity/nudity_Anne-Louis Girodet_0.58104825_0752.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3dba58ae62c1b180617392c1ea956a12f8f41f6b --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/nudity/nudity_Anne-Louis Girodet_0.58104825_0752.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:41e514a0b71640400b69b50e40d8dcb92cd740f01967eb0276c5000896789c2f +size 14313 diff --git a/artists-to-study/ats/thumbnail/house/nudity/nudity_Arnold Franz Brasz_0.65834284_1217.jpg b/artists-to-study/ats/thumbnail/house/nudity/nudity_Arnold Franz Brasz_0.65834284_1217.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c6aa81949e62a13cdc1e56b65be77e51dd694062 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/nudity/nudity_Arnold Franz Brasz_0.65834284_1217.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fdfd1b90e141ce00639cc680d53a3846aa1de8358c10e5f81fa0fd4aeaacabbc +size 13010 diff --git a/artists-to-study/ats/thumbnail/house/nudity/nudity_Aron Wiesenfeld_0.68331146_0909.jpg b/artists-to-study/ats/thumbnail/house/nudity/nudity_Aron Wiesenfeld_0.68331146_0909.jpg new file mode 100644 index 0000000000000000000000000000000000000000..aa788a7835edd4929cd20b40db000a9663fa193d --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/nudity/nudity_Aron Wiesenfeld_0.68331146_0909.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:98c881d19d6c8fb75651f80fd6e0ac666c7530547e64aea8c8310b4bd58a120d +size 8468 diff --git a/artists-to-study/ats/thumbnail/house/nudity/nudity_Benjamin Marra_0.61809736_1241.jpg b/artists-to-study/ats/thumbnail/house/nudity/nudity_Benjamin Marra_0.61809736_1241.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1969b67dd7ceb77e2ce0e1cc46601ac497c3fcac --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/nudity/nudity_Benjamin Marra_0.61809736_1241.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8dd21bb6421d65b80393bf38e193f22d9c56e4005359c07957d1bcf95d59c6c1 +size 23067 diff --git a/artists-to-study/ats/thumbnail/house/nudity/nudity_Bonnard Pierre_0.72309464_0503.jpg b/artists-to-study/ats/thumbnail/house/nudity/nudity_Bonnard Pierre_0.72309464_0503.jpg new file mode 100644 index 0000000000000000000000000000000000000000..201e0f30e59329ccea80ae5f63277b217f826c88 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/nudity/nudity_Bonnard Pierre_0.72309464_0503.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:41602ae9b5377c7d57ead4feeb02d23e439ca2108ca055ad02114569964fd708 +size 15189 diff --git "a/artists-to-study/ats/thumbnail/house/nudity/nudity_B\303\251la Iv\303\241nyi-Gr\303\274nwald_0.56355745_2188.jpg" "b/artists-to-study/ats/thumbnail/house/nudity/nudity_B\303\251la Iv\303\241nyi-Gr\303\274nwald_0.56355745_2188.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..efd3a63b1770bdc2d1f859b8c556d879a13d45be --- /dev/null +++ "b/artists-to-study/ats/thumbnail/house/nudity/nudity_B\303\251la Iv\303\241nyi-Gr\303\274nwald_0.56355745_2188.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a4e573ef1ebb21e57fa0f95cd12a0f03a5691d57523ae49c6b79973e8bdb1cdd +size 11845 diff --git a/artists-to-study/ats/thumbnail/house/nudity/nudity_Carlo Galli Bibiena_0.6511681_1298.jpg b/artists-to-study/ats/thumbnail/house/nudity/nudity_Carlo Galli Bibiena_0.6511681_1298.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8ed81a50895a5a8bf2caa8bfc6cb72684e7e3418 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/nudity/nudity_Carlo Galli Bibiena_0.6511681_1298.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:41e5126157bb2aeba58799f74ce3a51f5ab863a00fa298e12e4d3bfee7969fd1 +size 14676 diff --git a/artists-to-study/ats/thumbnail/house/nudity/nudity_Dali_0.5928694_1686.jpg b/artists-to-study/ats/thumbnail/house/nudity/nudity_Dali_0.5928694_1686.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b5a61fb6ffdd760a25154a19aa2a2adee918be8a --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/nudity/nudity_Dali_0.5928694_1686.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df917d7731721cf864b379432be9e50e94854f218f2e47bd4af5b25b99229c04 +size 10586 diff --git a/artists-to-study/ats/thumbnail/house/nudity/nudity_Edward Corbett_0.55701995_2244.jpg b/artists-to-study/ats/thumbnail/house/nudity/nudity_Edward Corbett_0.55701995_2244.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ca463ee7a91b6038b43b89877a8ad399aeb91ebf --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/nudity/nudity_Edward Corbett_0.55701995_2244.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13eb23b24ec437d4d362cc1b7c02c4d468797e14071b26dbbf4f9d82aa18559b +size 14925 diff --git a/artists-to-study/ats/thumbnail/house/nudity/nudity_Emil Alzamora_0.5844039_1075.jpg b/artists-to-study/ats/thumbnail/house/nudity/nudity_Emil Alzamora_0.5844039_1075.jpg new file mode 100644 index 0000000000000000000000000000000000000000..785a621a45f8b927787f4ba64979e16aeed373a5 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/nudity/nudity_Emil Alzamora_0.5844039_1075.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85e921d6e3654592da03525540c66f2b105a2b06799a364aa70319672e73d380 +size 11583 diff --git a/artists-to-study/ats/thumbnail/house/nudity/nudity_Ernst Fuchs_0.6953538_0769.jpg b/artists-to-study/ats/thumbnail/house/nudity/nudity_Ernst Fuchs_0.6953538_0769.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f698c873b953a9d2d797ec4356f79208a75fa523 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/nudity/nudity_Ernst Fuchs_0.6953538_0769.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:869f1fdc624ce8f9ffb6dd37e6704f2c2553bc24c5cd8a64cf4edca286c37097 +size 15309 diff --git "a/artists-to-study/ats/thumbnail/house/nudity/nudity_Eugeniusz \305\273ak_0.556925_2245.jpg" "b/artists-to-study/ats/thumbnail/house/nudity/nudity_Eugeniusz \305\273ak_0.556925_2245.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..032dd1c5393946fd9b9d3c164c36d3fb60675a00 --- /dev/null +++ "b/artists-to-study/ats/thumbnail/house/nudity/nudity_Eugeniusz \305\273ak_0.556925_2245.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cefac20cb1d4289bee831bc52c2f24c68e09b9046002da6d124ae2d87d0ca624 +size 10531 diff --git a/artists-to-study/ats/thumbnail/house/nudity/nudity_Ferdinand Hodler_0.7213758_0517.jpg b/artists-to-study/ats/thumbnail/house/nudity/nudity_Ferdinand Hodler_0.7213758_0517.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5ffd0c87134dbdd1b6c970f3bf8bb45dae726792 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/nudity/nudity_Ferdinand Hodler_0.7213758_0517.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:969720cb99cff53dabec91f65dd37a51338883cee36814ccca119e84a25303ff +size 15323 diff --git a/artists-to-study/ats/thumbnail/house/nudity/nudity_Fernand Khnopff_0.6512954_1296.jpg b/artists-to-study/ats/thumbnail/house/nudity/nudity_Fernand Khnopff_0.6512954_1296.jpg new file mode 100644 index 0000000000000000000000000000000000000000..48389845d599567f6ad00d7bc6984c5862501404 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/nudity/nudity_Fernand Khnopff_0.6512954_1296.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fbbccf1070f0ee93e02c2b3ab39053c5fc1ec81f819ac353bcaf29a61b1ae471 +size 11823 diff --git a/artists-to-study/ats/thumbnail/house/nudity/nudity_Fernando Botero_0.7412504_0363.jpg b/artists-to-study/ats/thumbnail/house/nudity/nudity_Fernando Botero_0.7412504_0363.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c888d84d854da07b01a11201bdeea2aa8b5bdf8b --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/nudity/nudity_Fernando Botero_0.7412504_0363.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d19fd14fff183c4c11dbee9ed2197eaa51f73484f29b2b06c555e36001c5628 +size 12300 diff --git a/artists-to-study/ats/thumbnail/house/nudity/nudity_Francesco del Cossa_0.7104901_0620.jpg b/artists-to-study/ats/thumbnail/house/nudity/nudity_Francesco del Cossa_0.7104901_0620.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d8bd9d138f084956b060113ace7147f62a8b1ff6 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/nudity/nudity_Francesco del Cossa_0.7104901_0620.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f26c1549bf1c8117d5fe0dce0c1d4adc11dc184e72ac54e02ba96be51bae4d59 +size 14302 diff --git a/artists-to-study/ats/thumbnail/house/nudity/nudity_Frank Frazetta_0.551121_1799.jpg b/artists-to-study/ats/thumbnail/house/nudity/nudity_Frank Frazetta_0.551121_1799.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9a365e936624a94b7e99ee7e64fe3c9282752536 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/nudity/nudity_Frank Frazetta_0.551121_1799.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eabc7816b4e6e80ebe38773f41d142ff03543ec7a901eb20e4a08c6f4d641df9 +size 16967 diff --git a/artists-to-study/ats/thumbnail/house/nudity/nudity_Gao Cen_0.60618126_1750.jpg b/artists-to-study/ats/thumbnail/house/nudity/nudity_Gao Cen_0.60618126_1750.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d9a9ac7bbe377a0fa19b775e70402024acb17ee9 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/nudity/nudity_Gao Cen_0.60618126_1750.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a177406f65804e4531b5529c3217c0aec88c4ac156165ec58f80067b4e5b8e1 +size 17306 diff --git a/artists-to-study/ats/thumbnail/house/nudity/nudity_Gustav Klimt_0.72356784_0501.jpg b/artists-to-study/ats/thumbnail/house/nudity/nudity_Gustav Klimt_0.72356784_0501.jpg new file mode 100644 index 0000000000000000000000000000000000000000..019bf46694ab56d8066989ac7788a0aa12642eb6 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/nudity/nudity_Gustav Klimt_0.72356784_0501.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b622fc827d46341a0efaf17d8fde5ee39a2aa83636ff045f102fcc453a2b7a6a +size 16453 diff --git a/artists-to-study/ats/thumbnail/house/nudity/nudity_Hajime Sorayama_0.60325956_1779.jpg b/artists-to-study/ats/thumbnail/house/nudity/nudity_Hajime Sorayama_0.60325956_1779.jpg new file mode 100644 index 0000000000000000000000000000000000000000..77cd397e9dd386789824c4975e846583852e887e --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/nudity/nudity_Hajime Sorayama_0.60325956_1779.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a684fef31506cae6b73db775566ebea89e213d4a34b78206e84f3676d05ceb58 +size 14957 diff --git a/artists-to-study/ats/thumbnail/house/nudity/nudity_Hans Bellmer_0.6735973_1027.jpg b/artists-to-study/ats/thumbnail/house/nudity/nudity_Hans Bellmer_0.6735973_1027.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d910297d0c239c7a62e573db3b30cb7609081d94 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/nudity/nudity_Hans Bellmer_0.6735973_1027.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:365e6a0d1840ea2d5b7251c9d259c3b2048c0739f3553e079c87417c87d9580f +size 13112 diff --git a/artists-to-study/ats/thumbnail/house/nudity/nudity_Henri Biva_0.54013556_2136.jpg b/artists-to-study/ats/thumbnail/house/nudity/nudity_Henri Biva_0.54013556_2136.jpg new file mode 100644 index 0000000000000000000000000000000000000000..74e1a247fd42e9098e84048da9520dbc44e428b0 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/nudity/nudity_Henri Biva_0.54013556_2136.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67caf9188788d6b55724237e99ae8fe237c36564f700cd9441bc0a729c5197c6 +size 12736 diff --git a/artists-to-study/ats/thumbnail/house/nudity/nudity_Henry Moore_0.59767926_1831.jpg b/artists-to-study/ats/thumbnail/house/nudity/nudity_Henry Moore_0.59767926_1831.jpg new file mode 100644 index 0000000000000000000000000000000000000000..45b17276d6c7734a83880060940c925080ecd597 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/nudity/nudity_Henry Moore_0.59767926_1831.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e184473f22cbacfabd33c054c4e2204f6b6a106be0db797c914e3f627d4cb65e +size 11160 diff --git a/artists-to-study/ats/thumbnail/house/nudity/nudity_Hermenegildo Anglada Camarasa_0.7214374_0514.jpg b/artists-to-study/ats/thumbnail/house/nudity/nudity_Hermenegildo Anglada Camarasa_0.7214374_0514.jpg new file mode 100644 index 0000000000000000000000000000000000000000..27d4734aa77daaf8a449adad44f89a815951016a --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/nudity/nudity_Hermenegildo Anglada Camarasa_0.7214374_0514.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:91b2c59b8a93c89e24bafbdd42bd35724602522f32d4b60a83e2af0a8ec6b14f +size 15079 diff --git a/artists-to-study/ats/thumbnail/house/nudity/nudity_Howard Chandler Christy_0.5702813_2126.jpg b/artists-to-study/ats/thumbnail/house/nudity/nudity_Howard Chandler Christy_0.5702813_2126.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b44e613e720402c0780414d17935157e8ae963a4 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/nudity/nudity_Howard Chandler Christy_0.5702813_2126.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:441db2d0e9d975cb1bb9b7896de6c238b095bd7ce2866434de73f5163876ebd9 +size 15082 diff --git a/artists-to-study/ats/thumbnail/house/nudity/nudity_Joseph Cornell_0.75023884_0317.jpg b/artists-to-study/ats/thumbnail/house/nudity/nudity_Joseph Cornell_0.75023884_0317.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bac90e07056f467782a1d7cc7fae09769a0282b3 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/nudity/nudity_Joseph Cornell_0.75023884_0317.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ea184bd29abd4b5ae936b5a07ff8506766ce79218a6e554b48f71c16cc93b56 +size 16625 diff --git a/artists-to-study/ats/thumbnail/house/nudity/nudity_Lucian Freud_0.6203146_1615.jpg b/artists-to-study/ats/thumbnail/house/nudity/nudity_Lucian Freud_0.6203146_1615.jpg new file mode 100644 index 0000000000000000000000000000000000000000..867c6a2d51a5f62888b1f108f64a73499495cd20 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/nudity/nudity_Lucian Freud_0.6203146_1615.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3170a2dd3fa77d1069fdc5023b241db1b219a6757182273f2f76c4b51733bcc2 +size 15415 diff --git a/artists-to-study/ats/thumbnail/house/nudity/nudity_Maginel Wright Enright Barney_0.6034306_1776.jpg b/artists-to-study/ats/thumbnail/house/nudity/nudity_Maginel Wright Enright Barney_0.6034306_1776.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a4ee394b67d14373e3ef8d9df8730dac4ddf1e3c --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/nudity/nudity_Maginel Wright Enright Barney_0.6034306_1776.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:063e4ffea7916de1a135a9a6ef4d18eb9f37a249278c29e593ef90dc5d23b19a +size 15468 diff --git a/artists-to-study/ats/thumbnail/house/nudity/nudity_Neil Welliver_0.68297863_0916.jpg b/artists-to-study/ats/thumbnail/house/nudity/nudity_Neil Welliver_0.68297863_0916.jpg new file mode 100644 index 0000000000000000000000000000000000000000..984244260d4455975b79a49de76f40dad096ed48 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/nudity/nudity_Neil Welliver_0.68297863_0916.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9017eb9c87e049a064fe0bb49fbd5401abd5df56062f5fdfecc67d49c63293f1 +size 16868 diff --git a/artists-to-study/ats/thumbnail/house/nudity/nudity_Nicola Samori_0.68747556_0512.jpg b/artists-to-study/ats/thumbnail/house/nudity/nudity_Nicola Samori_0.68747556_0512.jpg new file mode 100644 index 0000000000000000000000000000000000000000..46510888a923bb7001b750886e1e36ec93776298 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/nudity/nudity_Nicola Samori_0.68747556_0512.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0cf4030aa21a7557976a7e5673446b6a51b18a466b1cb6f03515766e755df8fa +size 12635 diff --git a/artists-to-study/ats/thumbnail/house/nudity/nudity_Raymond Duchamp-Villon_0.6489605_1327.jpg b/artists-to-study/ats/thumbnail/house/nudity/nudity_Raymond Duchamp-Villon_0.6489605_1327.jpg new file mode 100644 index 0000000000000000000000000000000000000000..83c1456a44b4b8bbd0f55648971c170351901a77 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/nudity/nudity_Raymond Duchamp-Villon_0.6489605_1327.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ddc33761a22fc044ecd5ba386b902e2b6612304860ba3a76ed05d7b2aeb0ca29 +size 13847 diff --git a/artists-to-study/ats/thumbnail/house/nudity/nudity_Richard Hamilton_0.5461275_2347.jpg b/artists-to-study/ats/thumbnail/house/nudity/nudity_Richard Hamilton_0.5461275_2347.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d2664c809c832c8d017acb056c5c9664fa84bd22 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/nudity/nudity_Richard Hamilton_0.5461275_2347.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e7857c8fc7cf46147cbc1f78e7b0c3f917309c533157bd51b53067427b1b787 +size 10922 diff --git a/artists-to-study/ats/thumbnail/house/nudity/nudity_Roberto Ferri_0.538221_0545.jpg b/artists-to-study/ats/thumbnail/house/nudity/nudity_Roberto Ferri_0.538221_0545.jpg new file mode 100644 index 0000000000000000000000000000000000000000..002d385fc740d6a14fd3c425ddff574aa705d208 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/nudity/nudity_Roberto Ferri_0.538221_0545.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ffb8e829e7eaaaf869500f14b86f327a1783f00833b06f4201d804ece6942496 +size 10962 diff --git a/artists-to-study/ats/thumbnail/house/nudity/nudity_Roger Dean_0.6529647_1279.jpg b/artists-to-study/ats/thumbnail/house/nudity/nudity_Roger Dean_0.6529647_1279.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2ccc4827561b39edb8123a62130191d26c70fe05 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/nudity/nudity_Roger Dean_0.6529647_1279.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:abafa038ae812ea0cd1fbe1242e2da797fc6650f444a4b5d89c4892e77fb0537 +size 14368 diff --git a/artists-to-study/ats/thumbnail/house/nudity/nudity_Ron Mueck_0.5581811_2228.jpg b/artists-to-study/ats/thumbnail/house/nudity/nudity_Ron Mueck_0.5581811_2228.jpg new file mode 100644 index 0000000000000000000000000000000000000000..021a4ebd0943780d62db1def1497c1e0121e18a7 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/nudity/nudity_Ron Mueck_0.5581811_2228.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2a0c5f1d54c7188dd8968cbd21e69f8681199a4b6f0ae1ac0bd76bd1f6c287f +size 14307 diff --git a/artists-to-study/ats/thumbnail/house/nudity/nudity_Saturno Butto_0.6331184_1484.jpg b/artists-to-study/ats/thumbnail/house/nudity/nudity_Saturno Butto_0.6331184_1484.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2c285d34f21cae742d63b0b0af9d1827bbd51ac0 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/nudity/nudity_Saturno Butto_0.6331184_1484.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e78ece1c61080821dd00aaf3b37dcb9802db4d1d0c604db745218ddcc9a6b812 +size 12948 diff --git a/artists-to-study/ats/thumbnail/house/nudity/nudity_Shohei Otomo_0.7132803_0498.jpg b/artists-to-study/ats/thumbnail/house/nudity/nudity_Shohei Otomo_0.7132803_0498.jpg new file mode 100644 index 0000000000000000000000000000000000000000..17ed6f9a1befbc9c28e06cfc3fa18b401a97b525 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/nudity/nudity_Shohei Otomo_0.7132803_0498.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ae0d87576ba4b88ec487b5c8348c959531d5092032f57f43d6d309dbf1f2ee5 +size 23597 diff --git a/artists-to-study/ats/thumbnail/house/nudity/nudity_William Etty_0.6497544_0426.jpg b/artists-to-study/ats/thumbnail/house/nudity/nudity_William Etty_0.6497544_0426.jpg new file mode 100644 index 0000000000000000000000000000000000000000..258eab013f4a6f12d7aa6d0cc1efcac9553e36f9 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/nudity/nudity_William Etty_0.6497544_0426.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad6d9f13c8c8e4bf7b02251b9ec305c60bca7f47778fb4dcf5993d0bbe0e115c +size 14312 diff --git a/artists-to-study/ats/thumbnail/house/nudity/nudity_Yasushi Nirasawa_0.6016714_1794.jpg b/artists-to-study/ats/thumbnail/house/nudity/nudity_Yasushi Nirasawa_0.6016714_1794.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7b7f0e4f81ddf294206ea253456fa944b80cac73 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/nudity/nudity_Yasushi Nirasawa_0.6016714_1794.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14d40c07ffda63b729761e41f7e345da88efcfd64e96f308133e1370ec832dbf +size 19070 diff --git a/artists-to-study/ats/thumbnail/house/scribbles/scribbles_A. J. Casson_0.73666203_0389.jpg b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_A. J. Casson_0.73666203_0389.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6a4413f460d77e734f3b4d9762a95a469a888cc8 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_A. J. Casson_0.73666203_0389.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:89e20a5df514d3f8ec26fb466e2a55764695699d43c315256dedf0e9e3b6117f +size 10655 diff --git a/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Adolph Gottlieb_0.79061794_0161.jpg b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Adolph Gottlieb_0.79061794_0161.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f47ccdee4590b1eec34098f32aa0188cd97ef12e --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Adolph Gottlieb_0.79061794_0161.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:828da39c443b4281dc6790eede4aa987ba29dc0fdf27a64b9362e4980e2a1550 +size 14386 diff --git a/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Adrian Tomine_0.79109013_0160.jpg b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Adrian Tomine_0.79109013_0160.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e3641199aac82659837ccc26a0913ce4eb52d8ac --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Adrian Tomine_0.79109013_0160.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9aea7344454f76239c35c80120f09d5d527d4367b16fd4cda002feb6bb95e088 +size 21338 diff --git a/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Afarin Sajedi_0.62475824_1564.jpg b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Afarin Sajedi_0.62475824_1564.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4b88ba6d4a2eedc46b94ba3969c2bf0fd61b9ee8 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Afarin Sajedi_0.62475824_1564.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e8335b50f01b64a050ed727b8f566cdbfac5e8ba39d01c436de6e77d295aae3 +size 12193 diff --git a/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Agnes Lawrence Pelton_0.73960555_0372.jpg b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Agnes Lawrence Pelton_0.73960555_0372.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e5b4103d8f279d9d6cb5bf6ccb0c26f7fbe3b575 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Agnes Lawrence Pelton_0.73960555_0372.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2db6435340b57ae04d617bfb71165dbbdacc73d7482c2ce8f60f739c828ad686 +size 8818 diff --git a/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Agnes Martin_0.8028028_0140.jpg b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Agnes Martin_0.8028028_0140.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2b5948d3848a20ad7e3c07c9d7b3ad7cb04b384a --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Agnes Martin_0.8028028_0140.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b30c22f5c10ef7c7c4c4964ec7b9e5eca156146e5c62e2f3b321b2ab33e598a +size 11728 diff --git a/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Alasdair Gray_0.7992301_0146.jpg b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Alasdair Gray_0.7992301_0146.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2620cfa5d4a98838d89a62ea46d6e845478f8234 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Alasdair Gray_0.7992301_0146.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4cc00a9b730906d213b343a619b481b038e916d5c989572382d698cb76536758 +size 25311 diff --git a/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Albert Gleizes_0.76658314_0239.jpg b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Albert Gleizes_0.76658314_0239.jpg new file mode 100644 index 0000000000000000000000000000000000000000..00b5596a143f317e4eeb388367391f9a2fac7dff --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Albert Gleizes_0.76658314_0239.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ebe75e0473a054227bebd7d2da63327c5a395214c68fa837faa6300274ece01 +size 18595 diff --git a/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Albert Irvin_0.79688835_0152.jpg b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Albert Irvin_0.79688835_0152.jpg new file mode 100644 index 0000000000000000000000000000000000000000..95b19e8ebdec6a453b1620f58323667969cf7b77 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Albert Irvin_0.79688835_0152.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bb2ae64c98c3829bbc05ff72901d7e68fed0deac3f1db236e855dd8deaeed546 +size 15642 diff --git a/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Alberto Burri_0.6618252_1115.jpg b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Alberto Burri_0.6618252_1115.jpg new file mode 100644 index 0000000000000000000000000000000000000000..de260bbd37d1a447f004f93dccc23ed3112d71b5 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Alberto Burri_0.6618252_1115.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a94d9f3260942cecc232fc781d984cc99b0c5c5a037c2a0e2f2ac2742f7e3ebc +size 9210 diff --git a/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Alberto Giacometti_0.7596302_0265.jpg b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Alberto Giacometti_0.7596302_0265.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1ebb523929de7721abc4b8eaedc04f74441dcb2f --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Alberto Giacometti_0.7596302_0265.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:223a88b42ebf02d8a3d8b518290d71a46eb3f9f56a0d86b5ad7a6bb2d0cc4b0e +size 16862 diff --git a/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Alessandro Gottardo_0.79321593_0157.jpg b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Alessandro Gottardo_0.79321593_0157.jpg new file mode 100644 index 0000000000000000000000000000000000000000..65f93d664ee6da72a019f01212c5ecdc57fd252d --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Alessandro Gottardo_0.79321593_0157.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:147cb6509517752233729b119473de688ad378e5d2c4b3e38da97a9593eab65b +size 11178 diff --git a/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Alex Garant_0.7333658_0411.jpg b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Alex Garant_0.7333658_0411.jpg new file mode 100644 index 0000000000000000000000000000000000000000..68a1142209488df4ba52bcb0bad69b1d20f96378 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Alex Garant_0.7333658_0411.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:54e4b88f6c4d2b685f15e8f261ff697d205cce8154a9f81a204d1ab8a000dfa9 +size 18074 diff --git a/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Alex Katz_0.76317835_0256.jpg b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Alex Katz_0.76317835_0256.jpg new file mode 100644 index 0000000000000000000000000000000000000000..96df22133888106cc0c353b278267cdc2c344770 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Alex Katz_0.76317835_0256.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:51bc69e82a713e688937c3df29dae4fc7cbb8cfd435ae049dc282176509f832c +size 10542 diff --git a/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Alexander Archipenko_0.7759824_0201.jpg b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Alexander Archipenko_0.7759824_0201.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fbe6d07152d67cc8fb9d4c86b56b052488dcf3b5 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Alexander Archipenko_0.7759824_0201.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f716d87b3bbc41d7beee4c0e89493e46e1c353988b2a1b99577051b0485ccd68 +size 12546 diff --git a/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Alexander Calder_0.83832693_0074.jpg b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Alexander Calder_0.83832693_0074.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1b8a00423d4d7a4d428cce535f9d8d09974e42ba --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Alexander Calder_0.83832693_0074.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:daae69134cb59cc476c15b6b51218167aa29c6b8cdfa26336fd2f72dbe2735f7 +size 14343 diff --git a/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Alexander Jansson_0.69298327_0798.jpg b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Alexander Jansson_0.69298327_0798.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2586d8e878e35756f2176b8e4c36e5ea6a333f86 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Alexander Jansson_0.69298327_0798.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f3a0a89ab422de2b83573c0eb858059dfdf66a4afcc9d32bdb2b793715f009e1 +size 16976 diff --git a/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Alexander Millar_0.7011144_0706.jpg b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Alexander Millar_0.7011144_0706.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c5864f58019ac76122d4100424cf142da5d01311 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Alexander Millar_0.7011144_0706.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:731325fa5584a2866bd022789cce19d89316f04c401a89c07cb504ad1eea8fd4 +size 12773 diff --git a/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Alexander Rodchenko_0.67415404_0615.jpg b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Alexander Rodchenko_0.67415404_0615.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7cc5fe09e520c811e739191e5cd3dffd2b170445 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Alexander Rodchenko_0.67415404_0615.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1792611472555ed2b56081fad1f5b942b20e76208c0c3b04b0fe15cb12473d02 +size 13196 diff --git a/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Alexej von Jawlensky_0.8308932_0086.jpg b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Alexej von Jawlensky_0.8308932_0086.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6518ce3bc3dfd9ec39f530bf0e924c45b3fc8702 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Alexej von Jawlensky_0.8308932_0086.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33e733618229d1aea00f931903e71118693454e630cd13883eb36b6286779d12 +size 15453 diff --git a/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Alfred Wallis_0.77926695_0189.jpg b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Alfred Wallis_0.77926695_0189.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0a8533fe658f850c093565275cbb7f97b0e13a03 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Alfred Wallis_0.77926695_0189.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dbd8955caff3bb7fe4dc8d845c7462f1c07a022a2424b6473765453d53752365 +size 13453 diff --git a/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Alice Neel_0.67255914_1045.jpg b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Alice Neel_0.67255914_1045.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fd3a82c103be68f512c4805c8834875492775a96 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Alice Neel_0.67255914_1045.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b63e8467d8824c20f27e57c0b4670c9c5ee2b17c6b3e7668fe561a3c1ca4bf1a +size 15244 diff --git a/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Alice Rahon_0.6777824_0971.jpg b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Alice Rahon_0.6777824_0971.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5506cd4323f5a7396330069155111b323225c97c --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Alice Rahon_0.6777824_0971.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:358c01ddf6e9516fa49f6dee4219e8f0c61a85e6152598e880187f1df99cf09a +size 12597 diff --git a/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Alison Bechdel_0.68096143_0930.jpg b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Alison Bechdel_0.68096143_0930.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2d58cc71647063a132a4ae74839a593c7c484d7e --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Alison Bechdel_0.68096143_0930.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe0b745bbdd2fb775a1d780d220f66db11d8ff506c76330ca869dd46e77a3394 +size 22343 diff --git a/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Allen Jones_0.6869935_0872.jpg b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Allen Jones_0.6869935_0872.jpg new file mode 100644 index 0000000000000000000000000000000000000000..931210110c214a1557a2f1a0c0ecc6fd58ddc96a --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Allen Jones_0.6869935_0872.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da652a8ad5b095510f84b933064690166a9eee4655b92748340cd7c778e4af97 +size 12602 diff --git a/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Amedeo Modigliani_0.71788836_0543.jpg b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Amedeo Modigliani_0.71788836_0543.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ff245c9c1a4527fcab7d2e4633bd6c5c85f41cc9 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Amedeo Modigliani_0.71788836_0543.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b7ce6b96705dab2dab08f3bd99c2ffab212018076cc6efdba1fa17967a6e95df +size 14568 diff --git a/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Amy Sillman_0.752921_0301.jpg b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Amy Sillman_0.752921_0301.jpg new file mode 100644 index 0000000000000000000000000000000000000000..93219c54d9ce3f00346962ef6e2ee3239267bc3e --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Amy Sillman_0.752921_0301.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ef3cb50e629978db574473336f706ee21a8bef5ebdff3375d0e0917eaf0431a +size 17450 diff --git a/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Andre Derain_0.73050404_0434.jpg b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Andre Derain_0.73050404_0434.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f2ebb2288c0a51ac780e71684d1f8e59400d9926 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Andre Derain_0.73050404_0434.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b1d229f9cec647e2c188b54ee84213079543b4d5935b3e5b98de856aa9a76d6 +size 14737 diff --git "a/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Andr\303\251 Derain_0.7009005_0709.jpg" "b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Andr\303\251 Derain_0.7009005_0709.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..76c76cf165278ae92d6a10c09b592f39a40c7eeb --- /dev/null +++ "b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Andr\303\251 Derain_0.7009005_0709.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:59571d0e3521f92c5b8dcf831886dc98bee830465ccb3d539f0f3870784a8923 +size 16373 diff --git "a/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Andr\303\251 Lhote_0.68718815_0815.jpg" "b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Andr\303\251 Lhote_0.68718815_0815.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..a4519aa0b4b763bc935af91f1534f1ee1615e564 --- /dev/null +++ "b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Andr\303\251 Lhote_0.68718815_0815.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6da57fecae277f96c8ec56cfec6302abbf03fec9e2223b9b6283c04d2434a981 +size 17326 diff --git "a/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Andr\303\251 Masson_0.727404_0465.jpg" "b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Andr\303\251 Masson_0.727404_0465.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..48a78c5473d706f3cc4f0cfd49ec88cdd88e10c5 --- /dev/null +++ "b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Andr\303\251 Masson_0.727404_0465.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a64b192aced575a07569713f5e578767004d188399f5a9648e901a2bb4295db8 +size 23334 diff --git a/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Andy Warhol_0.8654825_0050.jpg b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Andy Warhol_0.8654825_0050.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a93311a49366756b37f9e90450d1ac3756471d67 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Andy Warhol_0.8654825_0050.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da6a947de70507c7f9136e8b530f9b2ec20b0d8790c2ce6675a02301487e7b4f +size 15501 diff --git a/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Anna Bocek_0.6382304_1429.jpg b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Anna Bocek_0.6382304_1429.jpg new file mode 100644 index 0000000000000000000000000000000000000000..afab703a112b1b1da7de856dc0b62355f5ad1020 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Anna Bocek_0.6382304_1429.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:43eb1bee90464718826e5bf3f63cd68a119f575c4e787c17563e93dcb61c80ed +size 16763 diff --git a/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Anne Redpath_0.66407835_1152.jpg b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Anne Redpath_0.66407835_1152.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0977fc7d1b4eea9c33b5142d1a9e45d5088b6a8b --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Anne Redpath_0.66407835_1152.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ae26c30e9a23bab03a23163bc3824b4677f3bade522e040ddd6ffc827d6ee80 +size 14106 diff --git a/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Anne Rothenstein_0.70502245_0676.jpg b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Anne Rothenstein_0.70502245_0676.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c37b78a206ef76a701a975aa239a353e1616606c --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Anne Rothenstein_0.70502245_0676.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dafba944fd98c47e4e5b75292b7831f3e5859815ba32092c8283b0eb13333684 +size 8036 diff --git a/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Anne Truitt_0.73297834_0413.jpg b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Anne Truitt_0.73297834_0413.jpg new file mode 100644 index 0000000000000000000000000000000000000000..eabaf5e25cebfb3acfe41a5d4e37a43d8b6ea89a --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Anne Truitt_0.73297834_0413.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:00e11695a0fa00d24ada215b7933f2e74b8b193690d52cec9c0eaac027f92b79 +size 9471 diff --git a/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Annie Soudain_0.7671485_0238.jpg b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Annie Soudain_0.7671485_0238.jpg new file mode 100644 index 0000000000000000000000000000000000000000..dbd64d6bf9e5a68f9032b3fb0102785a03d2b663 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Annie Soudain_0.7671485_0238.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26a289a451a1947b83c31d47892066f3c3c8c641eb43f5aeadb21e916c1480ee +size 17813 diff --git a/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Anselm Kiefer_0.71514887_0570.jpg b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Anselm Kiefer_0.71514887_0570.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f244a8e1a422557ad48761a6a5c3b73939949336 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Anselm Kiefer_0.71514887_0570.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:499a454e9048270e12ce79a134bc0f4eb4e3ea7f2eb6979aa1ba6ce217d6ce16 +size 16634 diff --git a/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Antonio Saura_0.7155949_0567.jpg b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Antonio Saura_0.7155949_0567.jpg new file mode 100644 index 0000000000000000000000000000000000000000..cf4a2756956c212b7cb6736baeea77244c9f4185 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Antonio Saura_0.7155949_0567.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e6284d823a7734686c7f5fe510420e5315d1e9d1c1b00297b523679ddd109ae +size 17074 diff --git a/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Archibald Motley_0.7343683_0406.jpg b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Archibald Motley_0.7343683_0406.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1b40ff5399165cc5c88dd823f9990ab96064049a --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Archibald Motley_0.7343683_0406.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f3fd3dbcbf6904b166e06fa17d288b57b28c3d6c457c1d22f581c0d8f0ae536d +size 13658 diff --git a/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Aristarkh Lentulov_0.846537_0064.jpg b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Aristarkh Lentulov_0.846537_0064.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7efed6faa0f36e947f30895b86b6b1960f456779 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Aristarkh Lentulov_0.846537_0064.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d704b18578fc471a8015525982f2945b2f033d0309fa76f75137a38a13373e0 +size 21117 diff --git a/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Aristide Maillol_0.66843045_1097.jpg b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Aristide Maillol_0.66843045_1097.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c98603ba0e336ea042d3b1d18fdda0d790cde42a --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Aristide Maillol_0.66843045_1097.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7d0e59bdee873a4c19e1c72781b94e2cbbe6b7c6649cc1be25abfc9785e777fa +size 13234 diff --git a/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Armand Guillaumin_0.7840431_0176.jpg b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Armand Guillaumin_0.7840431_0176.jpg new file mode 100644 index 0000000000000000000000000000000000000000..83b57ec8379d2d7c4cf6e280653efdc574f42f9c --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Armand Guillaumin_0.7840431_0176.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:23e3c3a2c1f8274ae446ba0fac753affdbdeac53645a1dfe830693ba5fa52193 +size 18193 diff --git a/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Arshile Gorky_0.71459055_0574.jpg b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Arshile Gorky_0.71459055_0574.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3046897666f4c82b5ae5ecc0c99a8f5781dac34c --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Arshile Gorky_0.71459055_0574.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e178f7f6f787c68efd277de40c600e823755f27ae85dcf27c164612c8e99e5e0 +size 14245 diff --git a/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Art Spiegelman_0.7656343_0245.jpg b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Art Spiegelman_0.7656343_0245.jpg new file mode 100644 index 0000000000000000000000000000000000000000..597ae95276576bc523a335420eb39254a2bf8bbc --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Art Spiegelman_0.7656343_0245.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eff790a88db349dc930a9f841c9808f49f83fbf7ce40a8ef205ad583f6bd8ff3 +size 28050 diff --git a/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Arthur Dove_0.74383533_0348.jpg b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Arthur Dove_0.74383533_0348.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8cf118e43ded6aaf566e7528e8aa5035d661181b --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Arthur Dove_0.74383533_0348.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67c0c5e6146c928777c11ce9f7605a1a81644c917fb29ca02148aa53e268dbb9 +size 11109 diff --git a/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Arthur Garfield Dove_0.6694996_1079.jpg b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Arthur Garfield Dove_0.6694996_1079.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a805dccef072fe733c95879a03a14a5e5ecb8efe --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Arthur Garfield Dove_0.6694996_1079.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ee2b39829a90418eea6144de7c5c3fbac20c96f13fc7fd773e7f1d709afa126 +size 9051 diff --git a/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Arthur Lismer_0.7251765_0484.jpg b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Arthur Lismer_0.7251765_0484.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b94cf9df5a235dc78a40a678f684996951ff2019 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Arthur Lismer_0.7251765_0484.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5913e4ddd23ef2ce5f780a9e3d4491cc232c9b620ff02cd6fc7c01fbbfeb8c30 +size 17789 diff --git a/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Asaf Hanuka_0.72222745_0510.jpg b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Asaf Hanuka_0.72222745_0510.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9811c75c65857fd8092717f0848dc6e6261c57fe --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Asaf Hanuka_0.72222745_0510.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b051e6126f1ce2dd3e4c3d5bbda13e0d480d771a46619a6f2bc73a8c7203179 +size 20397 diff --git a/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Asger Jorn_0.7129575_0595.jpg b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Asger Jorn_0.7129575_0595.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e2412cd3400f695f58131bbc7d7ba40f6bf6de3c --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Asger Jorn_0.7129575_0595.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c8dcbea86d88c7a6f0add1dd73f40df7ee82e897fe81ea784a75d83184e4ab5e +size 16376 diff --git a/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Atey Ghailan_0.674873_1007.jpg b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Atey Ghailan_0.674873_1007.jpg new file mode 100644 index 0000000000000000000000000000000000000000..79a4bc2de9574903864a25ce00e48d1510d5de31 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Atey Ghailan_0.674873_1007.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d13b06e8d43e95bc9f85ee55bcb4f60e0af745da75d1bdbbee0afe0e23c0d4ab +size 11265 diff --git a/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Aubrey Beardsley_0.77970016_0187.jpg b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Aubrey Beardsley_0.77970016_0187.jpg new file mode 100644 index 0000000000000000000000000000000000000000..785939ada5c53a31d621a644e7283c57e7f1319b --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Aubrey Beardsley_0.77970016_0187.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:114e9c424531fb43fb8e607a72328689f016d337f119139e7d2a46084842d38f +size 22547 diff --git a/artists-to-study/ats/thumbnail/house/scribbles/scribbles_August Macke_0.8362022_0076.jpg b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_August Macke_0.8362022_0076.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9ba5160f0afe36fd645b58b66750b829ac22c7f9 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_August Macke_0.8362022_0076.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d51a0cf43a45b1475fc061f6a8f699002d239b63abb8c47eb7b380b0a4f23c4 +size 14798 diff --git a/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Auguste Herbin_0.6866145_0628.jpg b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Auguste Herbin_0.6866145_0628.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9e72e997728c20f2fc7d9595d5d5b5a25e8fe39a --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Auguste Herbin_0.6866145_0628.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19cb051f93420e67e46244543e6b99c37bd3b98be3ba16c4b7c1ceddfa7bcb77 +size 15849 diff --git a/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Balthus_0.6314323_1500.jpg b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Balthus_0.6314323_1500.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a6d042f1d6f928e0e361b37710c195e0b79db0c4 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Balthus_0.6314323_1500.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d25ffbf398dd26ea946924fc9b8a13c02bd55676212bb00c5df00c4fb0296485 +size 10902 diff --git a/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Banksy_0.80695426_0130.jpg b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Banksy_0.80695426_0130.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ed07b0fc949c7518675e7dc83452c42664788637 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Banksy_0.80695426_0130.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:743a1dbfe5cbc200dbcffeeee660525c3e9bc95631805bea4fa1a0eb8694c9ad +size 13547 diff --git a/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Barbara Kruger_0.7562784_0286.jpg b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Barbara Kruger_0.7562784_0286.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8f65de431800a7684a6a0d6c493c9b8a7bba8ee7 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Barbara Kruger_0.7562784_0286.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a3e85c037996e266c50e03807ad65b5093a4e8f0fe07fb397b9faf14cdbdf465 +size 22237 diff --git a/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Barbara Takenaga_0.86223894_0051.jpg b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Barbara Takenaga_0.86223894_0051.jpg new file mode 100644 index 0000000000000000000000000000000000000000..216e98d76a75b5d93a25664a7e57af9803f67f44 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Barbara Takenaga_0.86223894_0051.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d0a738c8a963ab20740a50c03c2284c5b782b319a64c65792cbd2c10b5026de1 +size 23767 diff --git a/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Barnett Newman_0.7236389_0499.jpg b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Barnett Newman_0.7236389_0499.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fe4fc6cd423ca105ef707f26777cb63fd32cfdaa --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Barnett Newman_0.7236389_0499.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c73fbf251aff8929ce5240d975f5e361e1f147009031d5c6a6b2712bb6963bd +size 12024 diff --git a/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Barry McGee_0.77618384_0199.jpg b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Barry McGee_0.77618384_0199.jpg new file mode 100644 index 0000000000000000000000000000000000000000..23c2cd1cb04862a2662bf0e2b2cbbb122ddcc8a5 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Barry McGee_0.77618384_0199.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af7d731697d0ad3593191476cb071874e24e7a54fac07206390b5757b7caa56f +size 18077 diff --git a/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Beauford Delaney_0.72999024_0436.jpg b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Beauford Delaney_0.72999024_0436.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4ad5658cf9055b81a326894c9dd6cfa978e4ce4b --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Beauford Delaney_0.72999024_0436.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2422ba276c598a83a510f45c621b308b8e6fa53db855de5ea479976cd0cfadf7 +size 13183 diff --git a/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Ben Nicholson_0.7411573_0364.jpg b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Ben Nicholson_0.7411573_0364.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d2327796e4e0c7cdc716b668d5f1d3f3e045715f --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Ben Nicholson_0.7411573_0364.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b707d3ad242cfb1bc315d858bf126d877d65d76936b8632f42f856cf0d7434f +size 10268 diff --git a/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Ben Shahn_0.8104582_0119.jpg b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Ben Shahn_0.8104582_0119.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e3c2091b10710d359e7eed3f747380163c08429c --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Ben Shahn_0.8104582_0119.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:65c8bcce1a98e45960c5992a7961b715ba7389663faa1041936e0113e4e2f5e6 +size 14382 diff --git a/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Bert Stern_0.53411555_0745.jpg b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Bert Stern_0.53411555_0745.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7659b0ee5a185e7a1082c7bcb6872d1e306ae30b --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Bert Stern_0.53411555_0745.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06638aa81724b13725e379e8b4e8433c22fc186dcd888a2c63f1930ed7fe4f65 +size 14164 diff --git a/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Bhupen Khakhar_0.8077607_0127.jpg b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Bhupen Khakhar_0.8077607_0127.jpg new file mode 100644 index 0000000000000000000000000000000000000000..eac60ea354da7d87f10512cff3eb3eb1d95aa414 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Bhupen Khakhar_0.8077607_0127.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:66cfa2e5db3925833502549d802a249aec1007ef7781a39adbae9730fea451c5 +size 16214 diff --git a/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Bill Traylor_0.73189163_0421.jpg b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Bill Traylor_0.73189163_0421.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a12f37462d79b575447400ca8102236ee75b5bce --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Bill Traylor_0.73189163_0421.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4cca8a58af42a1993815f64d946052efabff35596396f45051311abf57090bcd +size 10124 diff --git a/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Billy Childish_0.6902057_0830.jpg b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Billy Childish_0.6902057_0830.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3089844043110ea88f25d47f114c04b6589be030 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Billy Childish_0.6902057_0830.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e4821335ad0fc1a21503b8ddcd47ef065ee64e73bb35d2bdef12e4c367ea727 +size 20187 diff --git a/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Boris Grigoriev_0.6107853_1706.jpg b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Boris Grigoriev_0.6107853_1706.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4a9c9fbece1c5a7d5f8531350309e042717ab77e --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Boris Grigoriev_0.6107853_1706.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bfdd065cd24bf404e10ee7f5aa59cdcec4974145549718a179796feddd8fd109 +size 14297 diff --git a/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Botero_0.63843524_1427.jpg b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Botero_0.63843524_1427.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ccb6aff54d23c37ddb0acbd7150a15d9c0229f98 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Botero_0.63843524_1427.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc2b8544e77de6cf6933ebfecc796a3671b4e34cd6cb35a93867b199bd1a1b61 +size 13509 diff --git a/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Brett Whiteley_0.81601924_0108.jpg b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Brett Whiteley_0.81601924_0108.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f5fac6c54f0293134b53dff1435296289f1e3825 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Brett Whiteley_0.81601924_0108.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:113d65de70042627f722df7c5017c9110fc312cfd5b4581a62f651a4617337f4 +size 15282 diff --git a/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Brian Bolland_0.68496394_0892.jpg b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Brian Bolland_0.68496394_0892.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4c486f3f51eb10318f0be5cee178b42a75b13f15 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Brian Bolland_0.68496394_0892.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87db482dc95f38c883190fd0641bbf0ae28ee2789c0fb220f241f16a14acbcc5 +size 24469 diff --git a/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Brian Kesinger_0.63037646_1513.jpg b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Brian Kesinger_0.63037646_1513.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ef7ae981dc80140643f38f4aa4f9548e788b93f0 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Brian Kesinger_0.63037646_1513.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a060b6fef30a96ede4a8bb3bfaf3d9e0943404976f6ad9b9894da607aae7c4b +size 18739 diff --git a/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Brian Stelfreeze_0.7478351_0325.jpg b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Brian Stelfreeze_0.7478351_0325.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8510da52c68ee02ba9a988f98cef1c8380386042 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Brian Stelfreeze_0.7478351_0325.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f21ce92f927758af23c86f0c59e7772608d25fdbf64582508b2fc723a13c81bf +size 20839 diff --git a/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Bridget Bate Tichenor_0.73274165_0416.jpg b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Bridget Bate Tichenor_0.73274165_0416.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e16309e57fff71a52802edc36da277f1d0ae2625 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Bridget Bate Tichenor_0.73274165_0416.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0199f48765c05c891e30cfae95e9c156dfad61db9bd189aaa906a0d76100b870 +size 11475 diff --git a/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Bruce McLean_0.76335883_0254.jpg b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Bruce McLean_0.76335883_0254.jpg new file mode 100644 index 0000000000000000000000000000000000000000..aa4c03acec62524c33e795bfefc910a313018efa --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Bruce McLean_0.76335883_0254.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5568def29a6c94d423f27edaa1a36ef95bc7391188169e1f18bfa0455513736 +size 13628 diff --git a/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Bruce Timm_0.6477877_1340.jpg b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Bruce Timm_0.6477877_1340.jpg new file mode 100644 index 0000000000000000000000000000000000000000..07800c5b2c83c6ab21df99db3cadd9613879e9fe --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Bruce Timm_0.6477877_1340.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9cd5bbf7752d97c7ed740c1c7e90e339180dbffc58b0767525030b0defe3b242 +size 20123 diff --git a/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Catherine Hyde_0.71266896_0600.jpg b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Catherine Hyde_0.71266896_0600.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f41b858bffcc406d4149e16460c294e2ed0f1731 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Catherine Hyde_0.71266896_0600.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f240071b2adfda851193b3e71702b5d7f77608a1594cfd31a992a4d5563ec3c +size 7737 diff --git a/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Catrin Welz-Stein_0.73117495_0425.jpg b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Catrin Welz-Stein_0.73117495_0425.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fc2276ed9b4874f82583f2ff02d13b21d2286c17 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Catrin Welz-Stein_0.73117495_0425.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13c7af3d491e6741c6bc35f324fe306ec4f3abdec00dacbc23b21dabf1881daa +size 15733 diff --git a/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Chagall_0.8718535_0046.jpg b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Chagall_0.8718535_0046.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b6006894f5c6a91c09ba3bd6e425b8326a2da10c --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Chagall_0.8718535_0046.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ee0e87b091153e4febe5b02b1bf8a4dd6f3e3ad1e00d79bfec86717ca549cf8 +size 20739 diff --git a/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Chaim Soutine_0.73662066_0390.jpg b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Chaim Soutine_0.73662066_0390.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7dd27ffbcfff06ac18d55101f7f8dd1e07b25634 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Chaim Soutine_0.73662066_0390.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d5c26781281ba8daf01fa053eedef33df7c1da77bfecd4bdf9f044f78566f4fb +size 18482 diff --git a/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Chantal Joffe_0.70036674_0720.jpg b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Chantal Joffe_0.70036674_0720.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9d4741b8a0ed89457d2d2fbc163fb4ef7e4291c0 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Chantal Joffe_0.70036674_0720.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d110782c8d91494d740a0cee08010c0b76c057c30d3ae095c12658ba2d33cd6 +size 14341 diff --git a/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Charles Addams_0.7344034_0404.jpg b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Charles Addams_0.7344034_0404.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d66becdf97b5886ae97af70ccef57629809387f5 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Charles Addams_0.7344034_0404.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ba139441e4235ffce396fcb6f49457a4bff522bc8376f5f6fee05e994f664fa +size 16894 diff --git a/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Charles Blackman_0.83200824_0084.jpg b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Charles Blackman_0.83200824_0084.jpg new file mode 100644 index 0000000000000000000000000000000000000000..924f642500aef4e3995f66ba6980cef006ec0d7e --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Charles Blackman_0.83200824_0084.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d44ac0575d974a43a7c6ac08ae1f5d3270e765e1e3f7a7c40f7199a47c4b93d2 +size 13564 diff --git a/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Charles Camoin_0.7395686_0373.jpg b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Charles Camoin_0.7395686_0373.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b7318f303da007777c201b8f3a61b742fb42206a --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Charles Camoin_0.7395686_0373.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b72748ad5938d2214e5d8fc1d84b456fcc828adf1f149c1f850ece04a45faee +size 16568 diff --git a/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Charles Demuth_0.71605396_0562.jpg b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Charles Demuth_0.71605396_0562.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3d23a1115daf4342b8c07e78a6b72f048f5a99ed --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Charles Demuth_0.71605396_0562.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e7104d2dbf602391a772b19d042d02904a0aafb7c68f1f25ca6e2977af65ef3 +size 15838 diff --git a/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Charles E. Burchfield_0.75174403_0305.jpg b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Charles E. Burchfield_0.75174403_0305.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8e7df2236405e526569cd71764ba1b61133acbfd --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Charles E. Burchfield_0.75174403_0305.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:46309fc79c87bda478c4e957e48daf1752db97607fc93d4468c1ffb85066327c +size 16711 diff --git a/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Charles Gwathmey_0.7394747_0375.jpg b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Charles Gwathmey_0.7394747_0375.jpg new file mode 100644 index 0000000000000000000000000000000000000000..531dc2b3eafc470fcb8fecf932d6c6ca653a340d --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Charles Gwathmey_0.7394747_0375.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c9050dbf06094b012cb220cd3decf52fc60015daa8a766ac7a2514385cfaa65f +size 11017 diff --git a/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Charles Rennie Mackintosh_0.81297064_0113.jpg b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Charles Rennie Mackintosh_0.81297064_0113.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9649920a77f744cced84055f8e755a4126c4c5e9 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Charles Rennie Mackintosh_0.81297064_0113.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4bc9d4d4e86bdd29489be23e3cf61cc97702ba810bbcd8b46bd099d849274ffb +size 17581 diff --git a/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Charline von Heyl_0.753142_0299.jpg b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Charline von Heyl_0.753142_0299.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a12ecddcd4bd88f2b0a09f8bf7d63444baafd687 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Charline von Heyl_0.753142_0299.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:30e1090e0ad5fcc22359df3f5e92cd3ea7fb4ee82b18fd508d5de92dc99ebcd1 +size 22421 diff --git "a/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Cha\303\257m Soutine_0.72603923_0475.jpg" "b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Cha\303\257m Soutine_0.72603923_0475.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..f2a0e6985d6ad878cd039962575de3288f154967 --- /dev/null +++ "b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Cha\303\257m Soutine_0.72603923_0475.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:276cf29b8c116af6b501221699887349258cc7aa2cbfe2741ddebe28f2f4a727 +size 17638 diff --git a/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Chris Ofili_0.8073793_0129.jpg b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Chris Ofili_0.8073793_0129.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ef61de68d6c47b879f66fd237fcc8515ad7157f6 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Chris Ofili_0.8073793_0129.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:78ef5fb83f2f2a6f07d30f848e7a23615bf2f78f10a4e21f8d23bc5796a9e413 +size 20291 diff --git a/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Chris Ware_0.71628594_0558.jpg b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Chris Ware_0.71628594_0558.jpg new file mode 100644 index 0000000000000000000000000000000000000000..740048ccd0f19c197effb3c8452cba1e4c3677d3 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Chris Ware_0.71628594_0558.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6697f1cb9ff2016eb87cd3968ae1e1a495b592810208a749cb4ddc2dd0c039a8 +size 22174 diff --git a/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Cleon Peterson_0.74163914_0358.jpg b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Cleon Peterson_0.74163914_0358.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b5241264ac8e05b8a87a3d1d447e71ff6510f511 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Cleon Peterson_0.74163914_0358.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e0ba24f09c607fa38f6306a2cbbebf408c15b8dc3808067d51a1519b7ebb52d +size 25666 diff --git a/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Coles Phillips_0.7158309_0563.jpg b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Coles Phillips_0.7158309_0563.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e5c27b662e8a6f4358e1e9d7876a6b7821e25c63 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Coles Phillips_0.7158309_0563.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7fdc91ccee55aa544a58f7ef731246f8a744a822609a195e54cc2960ea59c8e1 +size 13708 diff --git a/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Colin McCahon_0.76086944_0262.jpg b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Colin McCahon_0.76086944_0262.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d7454a27ce63231f6d09959086ba163505c8d2b1 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Colin McCahon_0.76086944_0262.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df1334ee61354884477ef1285ad0d82fffc3e2f3ec354834f3ad265c5d75080c +size 12076 diff --git a/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Constantin Brancusi_0.7004367_0717.jpg b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Constantin Brancusi_0.7004367_0717.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c963f1b8f1d293951b7c3b475f28a1ff9572a568 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Constantin Brancusi_0.7004367_0717.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cec866b0c33db4c09798e5691da2b4c703301cce4595dc9ae2d1c1b7bd98dc69 +size 11093 diff --git a/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Craola_0.65639997_1240.jpg b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Craola_0.65639997_1240.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e6f429a8c354d4cb9137f323289cd413ba291a14 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Craola_0.65639997_1240.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:07383da0dbfbf76b37dc18b82815b6d5b48d08b9ec97c6cf073c13a89ffc36cf +size 21478 diff --git a/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Cuno Amiet_0.7979497_0150.jpg b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Cuno Amiet_0.7979497_0150.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f4998a6b09061c9ad843a8b455c611a29ddb8727 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Cuno Amiet_0.7979497_0150.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:10e47a77ff5b0241b74c66e7a610ec7278c175a736b116362ecb80a364bab8f9 +size 11762 diff --git a/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Cy Twombly_0.72814107_0452.jpg b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Cy Twombly_0.72814107_0452.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b1e2929b2ede1d7f48cc8ffcde655a1373a943dd --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_Cy Twombly_0.72814107_0452.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6bbefeaf330c724ce802890841e2d05448b9cd667047f5421960b3d594862701 +size 11239 diff --git "a/artists-to-study/ats/thumbnail/house/scribbles/scribbles_C\303\251zanne_0.7879481_0170.jpg" "b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_C\303\251zanne_0.7879481_0170.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..8d6175f771fa10df4801d81f79794457f6b58b0f --- /dev/null +++ "b/artists-to-study/ats/thumbnail/house/scribbles/scribbles_C\303\251zanne_0.7879481_0170.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991f88b73416796172be390606bebdb93d91bbd51f585ca2261a7417436a2811 +size 20552 diff --git a/artists-to-study/ats/thumbnail/house/special/special_Akihiko Yoshida_0.5901294_1910.jpg b/artists-to-study/ats/thumbnail/house/special/special_Akihiko Yoshida_0.5901294_1910.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4a59ab77e986dced19dbceb8bb5f0f160d2bb539 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/special/special_Akihiko Yoshida_0.5901294_1910.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6307f6a22560f0ff373d9e1d34148b42ff7b00d45349a7f0526c26947279700a +size 17665 diff --git a/artists-to-study/ats/thumbnail/house/special/special_Alejandro Burdisio_0.47482288_2335.jpg b/artists-to-study/ats/thumbnail/house/special/special_Alejandro Burdisio_0.47482288_2335.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ffa511d0d2e095bf6c28db2a9a853330190f370e --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/special/special_Alejandro Burdisio_0.47482288_2335.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:08ec0bf3c76f018cf273ba20c49193e6795fbaa5fe7f3798f306575ac5a198ac +size 11254 diff --git a/artists-to-study/ats/thumbnail/house/special/special_Alfonse Mucha_0.7139052_0585.jpg b/artists-to-study/ats/thumbnail/house/special/special_Alfonse Mucha_0.7139052_0585.jpg new file mode 100644 index 0000000000000000000000000000000000000000..47fd69fdeeb4dc24d7e2fd94169407addbc82d68 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/special/special_Alfonse Mucha_0.7139052_0585.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4242f8373ee7186842601a73b436b6e6bd1042c87399cdfc18895519864a3e02 +size 21004 diff --git a/artists-to-study/ats/thumbnail/house/special/special_Alphonse Mucha_0.74171394_0357.jpg b/artists-to-study/ats/thumbnail/house/special/special_Alphonse Mucha_0.74171394_0357.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ffbda8e7b454aa5ba4088d742d3ef239522ecd92 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/special/special_Alphonse Mucha_0.74171394_0357.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:47310c8896e12284df6d9240ca2585aceb13eb4c49a1aae6e04b7baad45b8cf3 +size 22281 diff --git a/artists-to-study/ats/thumbnail/house/special/special_Andre Kohn_0.5581832_2227.jpg b/artists-to-study/ats/thumbnail/house/special/special_Andre Kohn_0.5581832_2227.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c3ece68b9b10dc7d5f992d96621787432db17605 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/special/special_Andre Kohn_0.5581832_2227.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae6b6091b30d8789ff97c13eecf2ec736d44ff0b7e87a75cb9a3d99322e3a105 +size 13448 diff --git a/artists-to-study/ats/thumbnail/house/special/special_Andreas Rocha_0.49621177_2368.jpg b/artists-to-study/ats/thumbnail/house/special/special_Andreas Rocha_0.49621177_2368.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3a20f976b739031019e5503dabf532cb0697b374 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/special/special_Andreas Rocha_0.49621177_2368.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c5553403c601518d8908be43ad5857879b051d6995a19d4032660c6105d506cd +size 12026 diff --git a/artists-to-study/ats/thumbnail/house/special/special_Andy Fairhurst_0.6480388_1337.jpg b/artists-to-study/ats/thumbnail/house/special/special_Andy Fairhurst_0.6480388_1337.jpg new file mode 100644 index 0000000000000000000000000000000000000000..588c7bd211a5d61802ee2f99772eb44b3d91defa --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/special/special_Andy Fairhurst_0.6480388_1337.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9150081af6dbe26713a3759f3f0b25db4edb06b304865de1c6f462db732b478d +size 12868 diff --git a/artists-to-study/ats/thumbnail/house/special/special_Bastien L. Deharme_0.583349_1933.jpg b/artists-to-study/ats/thumbnail/house/special/special_Bastien L. Deharme_0.583349_1933.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c0c8f97c49af0b1460c8905da265967bf5c72171 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/special/special_Bastien L. Deharme_0.583349_1933.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c325764fb09f2a99dad8221d033359dbacddb0b210f125a64f526ac6e8b905a +size 12085 diff --git a/artists-to-study/ats/thumbnail/house/special/special_Charlie Bowater_0.4410439_1802.jpg b/artists-to-study/ats/thumbnail/house/special/special_Charlie Bowater_0.4410439_1802.jpg new file mode 100644 index 0000000000000000000000000000000000000000..68a51d21df19e3ad97bed1d051703c4ca3592008 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/special/special_Charlie Bowater_0.4410439_1802.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5444c7bf409ec0e6103c0cc9df765b9c0198c9f36571b9cdf5c07120ce11ea5 +size 11463 diff --git a/artists-to-study/ats/thumbnail/house/special/special_Christopher Balaskas_0.67935324_0614.jpg b/artists-to-study/ats/thumbnail/house/special/special_Christopher Balaskas_0.67935324_0614.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1543e1a0f3d388b148e3e728439f30a860891025 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/special/special_Christopher Balaskas_0.67935324_0614.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a3cc733b0d6bc2bb464c1795431ae93d9164522de2057606be69586cf2a1ece3 +size 8065 diff --git a/artists-to-study/ats/thumbnail/house/special/special_Craig Davison_0.499598_2588.jpg b/artists-to-study/ats/thumbnail/house/special/special_Craig Davison_0.499598_2588.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f687d4d0f04750cd49ed8f7819f147202b4e3dad --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/special/special_Craig Davison_0.499598_2588.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c1e9eae779d3c9f0ad88685e2c8f70b21a180977b5a14cd9ce1c50a61762dc7 +size 11756 diff --git a/artists-to-study/ats/thumbnail/house/special/special_Daniela Uhlig_0.4691466_0459.jpg b/artists-to-study/ats/thumbnail/house/special/special_Daniela Uhlig_0.4691466_0459.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d5f86a4ce6654f2d8842afce9a9a6f524323f6a4 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/special/special_Daniela Uhlig_0.4691466_0459.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33b98e757f1f427c2cd981666ccaa0f177edb822c5336f07f90eb1fe35bb3f04 +size 10368 diff --git a/artists-to-study/ats/thumbnail/house/special/special_Edward Hopper_0.6884258_0853.jpg b/artists-to-study/ats/thumbnail/house/special/special_Edward Hopper_0.6884258_0853.jpg new file mode 100644 index 0000000000000000000000000000000000000000..60395614128a8320c3803914fa0e054f6a42a3eb --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/special/special_Edward Hopper_0.6884258_0853.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f70868b5cd3d944c6cc92ff5e2b21b4a7f932a5bed720334a564fd3373bfb40a +size 11740 diff --git a/artists-to-study/ats/thumbnail/house/special/special_Evgeny Lushpin_0.5714827_2116.jpg b/artists-to-study/ats/thumbnail/house/special/special_Evgeny Lushpin_0.5714827_2116.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4d6b1ee8ba8cf4a22cd0e7fa0f08abb42606e610 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/special/special_Evgeny Lushpin_0.5714827_2116.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ffe816eb205941fad4888fcec45b8c917e49fd4047145a22e8f74aec4cd9ea7 +size 15033 diff --git a/artists-to-study/ats/thumbnail/house/special/special_Greg Rutkowski_0.5203395_2033.jpg b/artists-to-study/ats/thumbnail/house/special/special_Greg Rutkowski_0.5203395_2033.jpg new file mode 100644 index 0000000000000000000000000000000000000000..88df94cf2b3f87712ab9e7d9fd09227949e84af3 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/special/special_Greg Rutkowski_0.5203395_2033.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:11e23340aaa09577e5c1fe6243be34e08733bae5ea503c1946d183ff7c8da285 +size 11202 diff --git a/artists-to-study/ats/thumbnail/house/special/special_Grzegorz Rutkowski_0.48906532_2531.jpg b/artists-to-study/ats/thumbnail/house/special/special_Grzegorz Rutkowski_0.48906532_2531.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ab5c248428836e8f47bd7c893645b57a7c600298 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/special/special_Grzegorz Rutkowski_0.48906532_2531.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:50df345374a681faa74217c20cbf658310d937a13c18cdf6e8cf660c5900aa18 +size 9828 diff --git a/artists-to-study/ats/thumbnail/house/special/special_Ilya Kuvshinov_0.5805521_2024.jpg b/artists-to-study/ats/thumbnail/house/special/special_Ilya Kuvshinov_0.5805521_2024.jpg new file mode 100644 index 0000000000000000000000000000000000000000..dee834cedf2bdf8e7e05622d5f49a8863798de82 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/special/special_Ilya Kuvshinov_0.5805521_2024.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01407853fd6dc0185e4cf5394abb708e3bccd657d000fe5e9f53c55a69bb2f77 +size 13637 diff --git a/artists-to-study/ats/thumbnail/house/special/special_Ismail Inceoglu_0.72561014_0480.jpg b/artists-to-study/ats/thumbnail/house/special/special_Ismail Inceoglu_0.72561014_0480.jpg new file mode 100644 index 0000000000000000000000000000000000000000..16340c299d65c0e9fa2c03af5173f21092a10ea2 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/special/special_Ismail Inceoglu_0.72561014_0480.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6b8db35be20a2a55ca65784e58a5d60f6e27750c3201504f3ea85906a4183ee +size 11453 diff --git a/artists-to-study/ats/thumbnail/house/special/special_Jessica Rossier_0.54958373_1850.jpg b/artists-to-study/ats/thumbnail/house/special/special_Jessica Rossier_0.54958373_1850.jpg new file mode 100644 index 0000000000000000000000000000000000000000..11b1d444e67463f5065389f163f8c5a2eea2067f --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/special/special_Jessica Rossier_0.54958373_1850.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7026a547c45e1015874e88a9bf4d33fdc8a7960724987a4b93dd855d77f2885b +size 9094 diff --git a/artists-to-study/ats/thumbnail/house/special/special_Joe Madureira_0.6377177_1436.jpg b/artists-to-study/ats/thumbnail/house/special/special_Joe Madureira_0.6377177_1436.jpg new file mode 100644 index 0000000000000000000000000000000000000000..23580a2759beb046325e7a95678be89e971148a8 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/special/special_Joe Madureira_0.6377177_1436.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:523d2de7cf8d37bf68a8d2c20b6a2152046abc554dde96b605cdcff072367bc4 +size 23963 diff --git a/artists-to-study/ats/thumbnail/house/special/special_Krenz Cushart_0.59026587_1908.jpg b/artists-to-study/ats/thumbnail/house/special/special_Krenz Cushart_0.59026587_1908.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e1ea4355137cf9ea1d742f932deb03dd998b776a --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/special/special_Krenz Cushart_0.59026587_1908.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b5e2325e273f1cab64d33dab33ad25bdeb35bbaa5ee918354bda08e71511b477 +size 13524 diff --git a/artists-to-study/ats/thumbnail/house/special/special_Liam Wong_0.7262276_0472.jpg b/artists-to-study/ats/thumbnail/house/special/special_Liam Wong_0.7262276_0472.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2a06d82f763234892401cf1f051274fbd909b25c --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/special/special_Liam Wong_0.7262276_0472.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:683e85b3e93548c329583732ed5acefa69b25eb494d7a591be9e80f170db0df6 +size 18311 diff --git a/artists-to-study/ats/thumbnail/house/special/special_Ross Tran_0.5259248_2359.jpg b/artists-to-study/ats/thumbnail/house/special/special_Ross Tran_0.5259248_2359.jpg new file mode 100644 index 0000000000000000000000000000000000000000..46c2aa7cdaa494acbd0016a00954705a47af469f --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/special/special_Ross Tran_0.5259248_2359.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3df75bc6fb4512b867a7165b67ae8d57561f14eba1caeb4413118dec39d5ea97 +size 12082 diff --git a/artists-to-study/ats/thumbnail/house/special/special_Ruan Jia_0.5398549_2252.jpg b/artists-to-study/ats/thumbnail/house/special/special_Ruan Jia_0.5398549_2252.jpg new file mode 100644 index 0000000000000000000000000000000000000000..17452addf365ad348e97d08c849efe1a3d033e6b --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/special/special_Ruan Jia_0.5398549_2252.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec68598169ae0cdd4ec691f92afc358784a83af64adae3f8c958225bb73f84e9 +size 10571 diff --git a/artists-to-study/ats/thumbnail/house/special/special_Simon Stalenhag_0.6912775_0821.jpg b/artists-to-study/ats/thumbnail/house/special/special_Simon Stalenhag_0.6912775_0821.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d0afba3ebb4523423092a51bf71a9c5825910a81 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/special/special_Simon Stalenhag_0.6912775_0821.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06a7600c89a9840bc2d6bf7eaed5afafaf637f4cc3a372b6dea0f50bbcc0ef1c +size 10003 diff --git "a/artists-to-study/ats/thumbnail/house/special/special_Taiy\305\215 Matsumoto_0.63372946_1479.jpg" "b/artists-to-study/ats/thumbnail/house/special/special_Taiy\305\215 Matsumoto_0.63372946_1479.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..fb391ccbbe9eb234d569a0166d8c52c4ddb0a90a --- /dev/null +++ "b/artists-to-study/ats/thumbnail/house/special/special_Taiy\305\215 Matsumoto_0.63372946_1479.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f7ceed5088bac87a32182a7856985ea2d20a7602a210c53766ddf2069ef08f7f +size 15711 diff --git a/artists-to-study/ats/thumbnail/house/special/special_Thomas W Schaller_0.69093937_0824.jpg b/artists-to-study/ats/thumbnail/house/special/special_Thomas W Schaller_0.69093937_0824.jpg new file mode 100644 index 0000000000000000000000000000000000000000..cfbaa53711131d0897f58afc78f368f052f27bfa --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/special/special_Thomas W Schaller_0.69093937_0824.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e686e975f27853c3a8137411f9b2a6779ecb3311e23e2fa803770bf9f283e04 +size 15013 diff --git a/artists-to-study/ats/thumbnail/house/ukioe/ukioe_Abdur Rahman Chughtai_0.7004994_0716.jpg b/artists-to-study/ats/thumbnail/house/ukioe/ukioe_Abdur Rahman Chughtai_0.7004994_0716.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d942848830fd3ba7a72e831e5c3554bf595975a4 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/ukioe/ukioe_Abdur Rahman Chughtai_0.7004994_0716.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe0ac5e76b79b993352305b8ac01ae2e9dbeaa751d9497a1040afb9f1c79d1e5 +size 9205 diff --git a/artists-to-study/ats/thumbnail/house/ukioe/ukioe_Chen Hongshou_0.71268153_0599.jpg b/artists-to-study/ats/thumbnail/house/ukioe/ukioe_Chen Hongshou_0.71268153_0599.jpg new file mode 100644 index 0000000000000000000000000000000000000000..316161de496df892005d4c1ce5b0292922ef7c46 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/ukioe/ukioe_Chen Hongshou_0.71268153_0599.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:90147f00c80b075415451eb9a150bc4ea504b645a7e298d9c6af7b083ad23f9d +size 14331 diff --git a/artists-to-study/ats/thumbnail/house/ukioe/ukioe_Emperor Huizong of Song_0.7525214_0302.jpg b/artists-to-study/ats/thumbnail/house/ukioe/ukioe_Emperor Huizong of Song_0.7525214_0302.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9cb2b0d2520bdf0ad73754b9ac950943ce876722 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/ukioe/ukioe_Emperor Huizong of Song_0.7525214_0302.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff4dbe15e9a31b6e98df2777243c90c87dc65e1f5b1b4ba30d646b65dd4775b3 +size 14358 diff --git a/artists-to-study/ats/thumbnail/house/ukioe/ukioe_Fujiwara Takanobu_0.70410216_0685.jpg b/artists-to-study/ats/thumbnail/house/ukioe/ukioe_Fujiwara Takanobu_0.70410216_0685.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ba55695f0ab9f02130a76532886fd2ac5dd37c92 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/ukioe/ukioe_Fujiwara Takanobu_0.70410216_0685.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de510e9f5e47b69f9f4e47930d54478bd4f9244990c8ec2bca322a2571d523d7 +size 12629 diff --git "a/artists-to-study/ats/thumbnail/house/ukioe/ukioe_Goy\305\215 Hashiguchi_0.7595048_0266.jpg" "b/artists-to-study/ats/thumbnail/house/ukioe/ukioe_Goy\305\215 Hashiguchi_0.7595048_0266.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..7ade82360ff6169559d2bb8f54d3e7a135caea44 --- /dev/null +++ "b/artists-to-study/ats/thumbnail/house/ukioe/ukioe_Goy\305\215 Hashiguchi_0.7595048_0266.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca80f20d01d7bffcfab01e80ce4f7a3b6c88487eff0fc6f4f0552597dfa71c0f +size 12121 diff --git "a/artists-to-study/ats/thumbnail/house/ukioe/ukioe_Hanabusa Itch\305\215 II_0.81187993_0117.jpg" "b/artists-to-study/ats/thumbnail/house/ukioe/ukioe_Hanabusa Itch\305\215 II_0.81187993_0117.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..8e4bf414afaec2cab5e2b3f03e05dfc012dd51c5 --- /dev/null +++ "b/artists-to-study/ats/thumbnail/house/ukioe/ukioe_Hanabusa Itch\305\215 II_0.81187993_0117.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ff27c7dc1fb975e884273219c6ad2ec4c43a74cb1e8c1d3e51a1fddc6507f96 +size 14498 diff --git "a/artists-to-study/ats/thumbnail/house/ukioe/ukioe_Hanabusa Itch\305\215_0.68023074_0942.jpg" "b/artists-to-study/ats/thumbnail/house/ukioe/ukioe_Hanabusa Itch\305\215_0.68023074_0942.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..e31abf09ab4da8455f42985311892335a1161ef6 --- /dev/null +++ "b/artists-to-study/ats/thumbnail/house/ukioe/ukioe_Hanabusa Itch\305\215_0.68023074_0942.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e9d940aefe508129343ff18ed1a7c7f67df7d7e023af559e832d1f1e657d0efb +size 14538 diff --git a/artists-to-study/ats/thumbnail/house/ukioe/ukioe_Hasui Kawase_0.8040483_0137.jpg b/artists-to-study/ats/thumbnail/house/ukioe/ukioe_Hasui Kawase_0.8040483_0137.jpg new file mode 100644 index 0000000000000000000000000000000000000000..46547aa4fa169572d8a8a303edcec62bac87eb9e --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/ukioe/ukioe_Hasui Kawase_0.8040483_0137.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bcabff80fa052fc2689cff268f0b039d2c0a0e155d70a64dcd1075d9b4dc3076 +size 16273 diff --git a/artists-to-study/ats/thumbnail/house/ukioe/ukioe_Hiroshi Yoshida_0.73787534_0382.jpg b/artists-to-study/ats/thumbnail/house/ukioe/ukioe_Hiroshi Yoshida_0.73787534_0382.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ad2487f13f912570407855994774f538dd33b49b --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/ukioe/ukioe_Hiroshi Yoshida_0.73787534_0382.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:533cab73f59a27caa7db1fb864835ea3c66d601eb5b5bc0ed3761a6c705054ca +size 13676 diff --git a/artists-to-study/ats/thumbnail/house/ukioe/ukioe_Hiroshige_0.93995106_0034.jpg b/artists-to-study/ats/thumbnail/house/ukioe/ukioe_Hiroshige_0.93995106_0034.jpg new file mode 100644 index 0000000000000000000000000000000000000000..40f4f8f22b61765a35b62b5c66cd7a760be0a653 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/ukioe/ukioe_Hiroshige_0.93995106_0034.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0543fe32fce59c5356dcf12f6e8c0188ba2492606ae4400fae95097f54e4a530 +size 14420 diff --git a/artists-to-study/ats/thumbnail/house/ukioe/ukioe_Hishikawa Moronobu_0.7794119_0188.jpg b/artists-to-study/ats/thumbnail/house/ukioe/ukioe_Hishikawa Moronobu_0.7794119_0188.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8e9b865ec927c8d9ca55a5e14a05e66f7d970011 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/ukioe/ukioe_Hishikawa Moronobu_0.7794119_0188.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c789dcaa911e066d91aa279b497982a5b16cf27552d334ca8b099e329b479470 +size 16342 diff --git a/artists-to-study/ats/thumbnail/house/ukioe/ukioe_Hokusai_0.85046995_0058.jpg b/artists-to-study/ats/thumbnail/house/ukioe/ukioe_Hokusai_0.85046995_0058.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0a818641c08841f3aa0f4fb83741ed60a4151f1c --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/ukioe/ukioe_Hokusai_0.85046995_0058.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:967bc651619e0023b0f37ee40d6278636c39928f906ae432aba542858602c4b7 +size 14977 diff --git a/artists-to-study/ats/thumbnail/house/ukioe/ukioe_Katsushika Hokusai_0.8887236_0037.jpg b/artists-to-study/ats/thumbnail/house/ukioe/ukioe_Katsushika Hokusai_0.8887236_0037.jpg new file mode 100644 index 0000000000000000000000000000000000000000..dc2ab59aaa135d4a02b5c9944df4dbe669fe20e1 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/ukioe/ukioe_Katsushika Hokusai_0.8887236_0037.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40035728ecf988acc1b603a1f1008e193982e7457ccc672be2b6b22ff02434bf +size 15827 diff --git "a/artists-to-study/ats/thumbnail/house/ukioe/ukioe_Kawanabe Ky\305\215sai_0.86612236_0049.jpg" "b/artists-to-study/ats/thumbnail/house/ukioe/ukioe_Kawanabe Ky\305\215sai_0.86612236_0049.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..ee5b7fd3c78e43fa106d7252538f9a6f6dadd410 --- /dev/null +++ "b/artists-to-study/ats/thumbnail/house/ukioe/ukioe_Kawanabe Ky\305\215sai_0.86612236_0049.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:abcc0d15a00af6804ed91f706730f9852029be298211c9d08d579a9beee506fe +size 13683 diff --git a/artists-to-study/ats/thumbnail/house/ukioe/ukioe_Kitagawa Utamaro_0.83333457_0080.jpg b/artists-to-study/ats/thumbnail/house/ukioe/ukioe_Kitagawa Utamaro_0.83333457_0080.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d2d9a385186cb5426c42e6538785fbd84beb7713 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/ukioe/ukioe_Kitagawa Utamaro_0.83333457_0080.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:916a7c88e562ce97738f14dc468a3a88df9afe3bbe10e234bdad80eacc1e8fc5 +size 15919 diff --git a/artists-to-study/ats/thumbnail/house/ukioe/ukioe_Kunisada_0.80493814_0134.jpg b/artists-to-study/ats/thumbnail/house/ukioe/ukioe_Kunisada_0.80493814_0134.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4cee208eeaebf77301e0626bbfce1930bc15d965 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/ukioe/ukioe_Kunisada_0.80493814_0134.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a2ecd4dbd038b484ecda852f5c77471eaf9be8c551771268effad9294b162397 +size 17182 diff --git a/artists-to-study/ats/thumbnail/house/ukioe/ukioe_Ohara Koson_0.78132576_0185.jpg b/artists-to-study/ats/thumbnail/house/ukioe/ukioe_Ohara Koson_0.78132576_0185.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2c66db30e0d73375f9146085fba8fcc6424c2b46 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/ukioe/ukioe_Ohara Koson_0.78132576_0185.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cbda9894c44e4c21aec3eacb29bd3e1e456449e433eddd5917a1b561f1370bfd +size 12127 diff --git a/artists-to-study/ats/thumbnail/house/ukioe/ukioe_Takato Yamamoto_0.78460765_0173.jpg b/artists-to-study/ats/thumbnail/house/ukioe/ukioe_Takato Yamamoto_0.78460765_0173.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0af4d1949865788cb6ed596ba6511df8dfe08454 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/ukioe/ukioe_Takato Yamamoto_0.78460765_0173.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b03e8b07bf15a212f5e1934dd99a412651acfa3e720f72921136a9de0c069774 +size 17978 diff --git a/artists-to-study/ats/thumbnail/house/ukioe/ukioe_Uemura Shoen_0.7342118_0408.jpg b/artists-to-study/ats/thumbnail/house/ukioe/ukioe_Uemura Shoen_0.7342118_0408.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9cd5a2fd09255ba22816575557d59870a584414d --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/ukioe/ukioe_Uemura Shoen_0.7342118_0408.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf7ee481238c1aa5c46d631ce7c491c93f03d7176af9aef88755e357984b87f4 +size 13122 diff --git a/artists-to-study/ats/thumbnail/house/ukioe/ukioe_Utagawa Hiroshige_0.8728796_0045.jpg b/artists-to-study/ats/thumbnail/house/ukioe/ukioe_Utagawa Hiroshige_0.8728796_0045.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1d4b719925ea2a3aaa319a7cba2506c61b9a87d6 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/ukioe/ukioe_Utagawa Hiroshige_0.8728796_0045.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9288da3c51374957989015565edcdf9811695c855dbe6437b643d57bfed34d81 +size 15536 diff --git a/artists-to-study/ats/thumbnail/house/ukioe/ukioe_Yasuo Kuniyoshi_0.79870003_0147.jpg b/artists-to-study/ats/thumbnail/house/ukioe/ukioe_Yasuo Kuniyoshi_0.79870003_0147.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b23ded6ce45f45974b714972c9f09503d5ca1b2a --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/ukioe/ukioe_Yasuo Kuniyoshi_0.79870003_0147.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6936a3d563e3859ac2b69d36e9791af3279d873c6c93971c8e9e29f633015cc +size 14772 diff --git a/artists-to-study/ats/thumbnail/house/weird/weird_Alma Thomas_0.87658304_0043.jpg b/artists-to-study/ats/thumbnail/house/weird/weird_Alma Thomas_0.87658304_0043.jpg new file mode 100644 index 0000000000000000000000000000000000000000..db637c92e50e0f3b92ef9fd70f67ae6287fbcbcb --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/weird/weird_Alma Thomas_0.87658304_0043.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9322bf93e71260d3eef20c5bc64e65cf303e3a51c8a895c2ebfd86fc1b495681 +size 13731 diff --git a/artists-to-study/ats/thumbnail/house/weird/weird_Anne Packard_0.7046703_0682.jpg b/artists-to-study/ats/thumbnail/house/weird/weird_Anne Packard_0.7046703_0682.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f6ca93d2f03ff6ad626ff684bb015f14d6c7fb01 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/weird/weird_Anne Packard_0.7046703_0682.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a422655702174f00c323e990f8828c8aae53055b224365c66b33d755c26f6f9c +size 8522 diff --git a/artists-to-study/ats/thumbnail/house/weird/weird_Artur Bordalo_0.7364549_0391.jpg b/artists-to-study/ats/thumbnail/house/weird/weird_Artur Bordalo_0.7364549_0391.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c885474326e3c9386a0b5798aec24c192851eff1 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/weird/weird_Artur Bordalo_0.7364549_0391.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d37f7938014ef05900292ba78956ec8f92ebe70ef46656233b195d7634a5e166 +size 20599 diff --git a/artists-to-study/ats/thumbnail/house/weird/weird_Brandon Mably_0.8128239_0114.jpg b/artists-to-study/ats/thumbnail/house/weird/weird_Brandon Mably_0.8128239_0114.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c0b0887ed7f0994b13cccceeb7e3de18c9f71c65 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/weird/weird_Brandon Mably_0.8128239_0114.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d20de5f7865633c33bc3763562ac965a0e94e203e91529c1c0068e852385438a +size 25348 diff --git a/artists-to-study/ats/thumbnail/house/weird/weird_Bruno Munari_0.73918355_0378.jpg b/artists-to-study/ats/thumbnail/house/weird/weird_Bruno Munari_0.73918355_0378.jpg new file mode 100644 index 0000000000000000000000000000000000000000..dadbd795d338548cdec4b0a0b893bf35822a8a4e --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/weird/weird_Bruno Munari_0.73918355_0378.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a21e2fdb2a832c01845118b7b6d05a69cb5cad13744f6fbcf1dc74cff423d068 +size 14012 diff --git a/artists-to-study/ats/thumbnail/house/weird/weird_Carne Griffiths_0.660091_1190.jpg b/artists-to-study/ats/thumbnail/house/weird/weird_Carne Griffiths_0.660091_1190.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1810ab52ece8f2a1bb01d3e9b8a6be537263bb5f --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/weird/weird_Carne Griffiths_0.660091_1190.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e0604bfdff37d50ab65234a694608797299dec7e07d0697a4d166d907947813 +size 23293 diff --git a/artists-to-study/ats/thumbnail/house/weird/weird_Claude Cahun_0.7588153_0272.jpg b/artists-to-study/ats/thumbnail/house/weird/weird_Claude Cahun_0.7588153_0272.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2a8f990c0762b09589819c93be377f4a39f329b4 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/weird/weird_Claude Cahun_0.7588153_0272.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb4bd37ceeec2496c38c2b821c93106cf0d5e211ef99ce0460d6ee78ed146227 +size 15804 diff --git a/artists-to-study/ats/thumbnail/house/weird/weird_David Bowie_0.73773724_0384.jpg b/artists-to-study/ats/thumbnail/house/weird/weird_David Bowie_0.73773724_0384.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bd2589072d08659762aa3928bc29dbcb3b01b1e8 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/weird/weird_David Bowie_0.73773724_0384.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0de8be1b95d997148935ebd602cb9faf8ecdb12bea993f693211149b28ac46a6 +size 19382 diff --git a/artists-to-study/ats/thumbnail/house/weird/weird_Eduardo Kobra_0.85036755_0059.jpg b/artists-to-study/ats/thumbnail/house/weird/weird_Eduardo Kobra_0.85036755_0059.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1ecdf8cc4b1ddeddd3c8f58149ebe6edc7b278a9 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/weird/weird_Eduardo Kobra_0.85036755_0059.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:033e688ab2f058d8c70f423339d011d29d60aa6b42184fb63ea96f6e2f92fc10 +size 17233 diff --git a/artists-to-study/ats/thumbnail/house/weird/weird_Emily Kame Kngwarreye_0.7532016_0298.jpg b/artists-to-study/ats/thumbnail/house/weird/weird_Emily Kame Kngwarreye_0.7532016_0298.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c151401b62e11e7511bb4f0a112f6a57df892cb8 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/weird/weird_Emily Kame Kngwarreye_0.7532016_0298.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:301fc384980b80bf03b57bb944f9dc17bdffbd09f9f48c287f499f697cb0ac70 +size 20534 diff --git a/artists-to-study/ats/thumbnail/house/weird/weird_Frank Auerbach_0.6201102_1616.jpg b/artists-to-study/ats/thumbnail/house/weird/weird_Frank Auerbach_0.6201102_1616.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c0a5c0887d7fbbbe5994c4ea9d650a3001fc8af6 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/weird/weird_Frank Auerbach_0.6201102_1616.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db6d6f11298b532008b00ca5f1430e38a774e46bd7868878491cbf0650cc2120 +size 16527 diff --git a/artists-to-study/ats/thumbnail/house/weird/weird_H. R. Giger_0.6456823_1364.jpg b/artists-to-study/ats/thumbnail/house/weird/weird_H. R. Giger_0.6456823_1364.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bcc07e32331634127b2f61b7e5a9425d8397451e --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/weird/weird_H. R. Giger_0.6456823_1364.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ee1385830bfeef034116325177041fcf7ca6f94f28a35281b456770c72b6331 +size 20781 diff --git a/artists-to-study/ats/thumbnail/house/weird/weird_Hikari Shimoda_0.7104546_0622.jpg b/artists-to-study/ats/thumbnail/house/weird/weird_Hikari Shimoda_0.7104546_0622.jpg new file mode 100644 index 0000000000000000000000000000000000000000..554010b6e0d15d733e40b719beb42c7459a55614 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/weird/weird_Hikari Shimoda_0.7104546_0622.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c1e5d35e0557f1ad3103e8ba702a751b8b273551f47eb5ae198d1527a2bdc680 +size 18895 diff --git a/artists-to-study/ats/thumbnail/house/weird/weird_Isaac Cordal_0.71046066_0621.jpg b/artists-to-study/ats/thumbnail/house/weird/weird_Isaac Cordal_0.71046066_0621.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9088d7368145645238d59c013a5cb2ff66d0f0f0 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/weird/weird_Isaac Cordal_0.71046066_0621.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44902f4d5cb51be4f4c8bab310fce6d3b0c37229dacdb4e5b29dc685653f869d +size 10282 diff --git a/artists-to-study/ats/thumbnail/house/weird/weird_Jaume Plensa_0.7756799_0202.jpg b/artists-to-study/ats/thumbnail/house/weird/weird_Jaume Plensa_0.7756799_0202.jpg new file mode 100644 index 0000000000000000000000000000000000000000..03fb0a9074b7af92d780d6b5884d42ba9204e87f --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/weird/weird_Jaume Plensa_0.7756799_0202.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c9c05f9cf7abed6686ef3f8a5ae5abcade4ebc6870d32ab90f5cf0136a5da0d2 +size 19250 diff --git a/artists-to-study/ats/thumbnail/house/weird/weird_Judy Chicago_0.6952246_0771.jpg b/artists-to-study/ats/thumbnail/house/weird/weird_Judy Chicago_0.6952246_0771.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f45d893baebfcdc211aee0c43b13f12f2343d969 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/weird/weird_Judy Chicago_0.6952246_0771.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14ed14968b7d3c57497c652983789fe1dff275bd4fe17bbfed2b96e90283baf9 +size 16766 diff --git a/artists-to-study/ats/thumbnail/house/weird/weird_Keith Haring_0.9431302_0033.jpg b/artists-to-study/ats/thumbnail/house/weird/weird_Keith Haring_0.9431302_0033.jpg new file mode 100644 index 0000000000000000000000000000000000000000..89fb613d2057a7f94080d95aaee2aa5d62433183 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/weird/weird_Keith Haring_0.9431302_0033.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac6c869c5ff1f3991fcc55e77309decde487767d20b8595f42583d892bdd7f70 +size 30052 diff --git a/artists-to-study/ats/thumbnail/house/weird/weird_OSGEMEOS_0.7829088_0181.jpg b/artists-to-study/ats/thumbnail/house/weird/weird_OSGEMEOS_0.7829088_0181.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7eadbe6f9ced1feb5bd42db74afefa554a0189c5 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/weird/weird_OSGEMEOS_0.7829088_0181.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:73722940edd33fa01656d121b714c8c65da487c773322a58c9fef2f8e8938904 +size 17756 diff --git a/artists-to-study/ats/thumbnail/house/weird/weird_Peter Max_0.99715996_0030.jpg b/artists-to-study/ats/thumbnail/house/weird/weird_Peter Max_0.99715996_0030.jpg new file mode 100644 index 0000000000000000000000000000000000000000..606c180ff00dd369ffab0937b6c607b2a2844444 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/weird/weird_Peter Max_0.99715996_0030.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:380dd54080d2935cf1a085d6e66fca1e70a2344158ff7c7e9df162b946bbfe7c +size 18392 diff --git a/artists-to-study/ats/thumbnail/house/weird/weird_Rebecca Louise Law_0.81214285_0115.jpg b/artists-to-study/ats/thumbnail/house/weird/weird_Rebecca Louise Law_0.81214285_0115.jpg new file mode 100644 index 0000000000000000000000000000000000000000..78384fbb26969cfe668fbd5c1670218b2266997d --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/weird/weird_Rebecca Louise Law_0.81214285_0115.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5aa549cbdf7c7596947353fe8b3dc34ea5fdff144b063d202254aa5c53b87c43 +size 18456 diff --git a/artists-to-study/ats/thumbnail/house/weird/weird_Remedios Varo_0.7150927_0571.jpg b/artists-to-study/ats/thumbnail/house/weird/weird_Remedios Varo_0.7150927_0571.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f58228ee9f2771eeaa2b734bebd9ff523e951563 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/weird/weird_Remedios Varo_0.7150927_0571.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8c2ed83ce5b7f9934850eea34ab22740cbef8ece5808c727cb13ea7fe4214e93 +size 13144 diff --git a/artists-to-study/ats/thumbnail/house/weird/weird_Roz Chast_0.8432013_0069.jpg b/artists-to-study/ats/thumbnail/house/weird/weird_Roz Chast_0.8432013_0069.jpg new file mode 100644 index 0000000000000000000000000000000000000000..75d8235e9be87daa66eb2604b57be87fbc35da02 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/weird/weird_Roz Chast_0.8432013_0069.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:651b4d1753b7af0c6c06e551586a7cd64cd5e7396f03932e269a9ac7f00c8518 +size 21209 diff --git a/artists-to-study/ats/thumbnail/house/weird/weird_Stephen Gammell_0.74001735_0264.jpg b/artists-to-study/ats/thumbnail/house/weird/weird_Stephen Gammell_0.74001735_0264.jpg new file mode 100644 index 0000000000000000000000000000000000000000..836c73fbc5b6edb99dd80744568e7e48f00a7ae2 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/weird/weird_Stephen Gammell_0.74001735_0264.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0cc0926bdf16a1da2ab322083406b992d619df15d06f98023bc93e777585d241 +size 13110 diff --git a/artists-to-study/ats/thumbnail/house/weird/weird_Takashi Murakami_0.81338763_0110.jpg b/artists-to-study/ats/thumbnail/house/weird/weird_Takashi Murakami_0.81338763_0110.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bb47150abbfd33c9fffb9b8b6eea3c8c15e70f93 --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/weird/weird_Takashi Murakami_0.81338763_0110.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1819c0d1cb33f474ee0bc5a74ebdd0735ad33a920a699013e21d9cd6da2ca325 +size 31111 diff --git a/artists-to-study/ats/thumbnail/house/weird/weird_Yayoi Kusama_0.81886625_0101.jpg b/artists-to-study/ats/thumbnail/house/weird/weird_Yayoi Kusama_0.81886625_0101.jpg new file mode 100644 index 0000000000000000000000000000000000000000..792960c274a1171634d410a6ef4a2f7faf0267ac --- /dev/null +++ b/artists-to-study/ats/thumbnail/house/weird/weird_Yayoi Kusama_0.81886625_0101.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:63dcc1d7524853adf631d5121725a33b64e446b27b9e5538eeb44a6c45086d42 +size 27004 diff --git a/artists-to-study/ats/thumbnail/portrait/anime/anime_Adam Hughes_0.60854626_1798.jpg b/artists-to-study/ats/thumbnail/portrait/anime/anime_Adam Hughes_0.60854626_1798.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a79adeaf76039d93ce1e8aa8cad9801fec323217 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/anime/anime_Adam Hughes_0.60854626_1798.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:88fd402ce12e5209fe01e9c737f650012506f4deccebd27bbc3e134a61a5f46f +size 17843 diff --git a/artists-to-study/ats/thumbnail/portrait/anime/anime_Akira Toriyama_0.6635002_1230.jpg b/artists-to-study/ats/thumbnail/portrait/anime/anime_Akira Toriyama_0.6635002_1230.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8f05a7d7fb2546f09d9e970912786fdd0a5a94a9 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/anime/anime_Akira Toriyama_0.6635002_1230.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b74b52e3ba79e33895de87e2c2b28b15ff36f4b013794dd16024a8aa7d7199c +size 18542 diff --git a/artists-to-study/ats/thumbnail/portrait/anime/anime_Apollonia Saintclair_0.7718383_0290.jpg b/artists-to-study/ats/thumbnail/portrait/anime/anime_Apollonia Saintclair_0.7718383_0290.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c8385fd9ffd0d6ae24524bb20cefb2e6d24f322b --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/anime/anime_Apollonia Saintclair_0.7718383_0290.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fb0416da7dd0eb0693861018271d4f1700df7ac5a867a9658fac8a03e6129b68 +size 21541 diff --git a/artists-to-study/ats/thumbnail/portrait/anime/anime_Armin Hansen_0.59669334_1908.jpg b/artists-to-study/ats/thumbnail/portrait/anime/anime_Armin Hansen_0.59669334_1908.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a0ef3276b50b929cdf18d3aa3737f375df72a114 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/anime/anime_Armin Hansen_0.59669334_1908.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ec2d2d5fd4311ba6b6527018247e7aa57c42b1c21ec9ffe76fc031c2dd358e0 +size 10421 diff --git a/artists-to-study/ats/thumbnail/portrait/anime/anime_Awataguchi Takamitsu_0.6656272_1202.jpg b/artists-to-study/ats/thumbnail/portrait/anime/anime_Awataguchi Takamitsu_0.6656272_1202.jpg new file mode 100644 index 0000000000000000000000000000000000000000..aeeaaa574b551a76e473beb622e6b2f07b0344da --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/anime/anime_Awataguchi Takamitsu_0.6656272_1202.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:64667ba93e7807aa87e2559e156f472bcfa5d1ed8865cec7acd7232a41f3a387 +size 9314 diff --git "a/artists-to-study/ats/thumbnail/portrait/anime/anime_Bai\305\215ken Eishun_0.6730663_1107.jpg" "b/artists-to-study/ats/thumbnail/portrait/anime/anime_Bai\305\215ken Eishun_0.6730663_1107.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..6e1a70435e2da251ea4881edd9c22475ae458f73 --- /dev/null +++ "b/artists-to-study/ats/thumbnail/portrait/anime/anime_Bai\305\215ken Eishun_0.6730663_1107.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d94f611846eecea640db3c4430f3c0b1182795da4642e4aa4d7273060e988e20 +size 13387 diff --git a/artists-to-study/ats/thumbnail/portrait/anime/anime_Bakemono Zukushi_0.67051035_1142.jpg b/artists-to-study/ats/thumbnail/portrait/anime/anime_Bakemono Zukushi_0.67051035_1142.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b00caf7cdfea4ad3059ad59a1019b734ecd75610 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/anime/anime_Bakemono Zukushi_0.67051035_1142.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d68847901d4466efb6f78680feaecb13fd6fb2a47605f8fe750f94ea12030e4 +size 13202 diff --git a/artists-to-study/ats/thumbnail/portrait/anime/anime_Chiho Aoshima_0.71801454_0612.jpg b/artists-to-study/ats/thumbnail/portrait/anime/anime_Chiho Aoshima_0.71801454_0612.jpg new file mode 100644 index 0000000000000000000000000000000000000000..aec48ba8f320c073dfa5d4322ece04836a7f9919 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/anime/anime_Chiho Aoshima_0.71801454_0612.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dded15d7cbdd614cc673432a6fdbd71b25cfb4aee7416e9db8030fd91f1c1bed +size 20094 diff --git a/artists-to-study/ats/thumbnail/portrait/anime/anime_Eiichiro Oda_0.64772165_1412.jpg b/artists-to-study/ats/thumbnail/portrait/anime/anime_Eiichiro Oda_0.64772165_1412.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f560935644e9cc4248d77b2d25510acfaa48dd57 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/anime/anime_Eiichiro Oda_0.64772165_1412.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:38bf4aeca89ef10d64ea330bebe147e86b514f2e40e3bdc1e8f8ed8ee2e7ffde +size 22316 diff --git a/artists-to-study/ats/thumbnail/portrait/anime/anime_Fujishima Takeji_0.6751577_1074.jpg b/artists-to-study/ats/thumbnail/portrait/anime/anime_Fujishima Takeji_0.6751577_1074.jpg new file mode 100644 index 0000000000000000000000000000000000000000..30604d3579674841c640a1a51e329f115bda7da4 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/anime/anime_Fujishima Takeji_0.6751577_1074.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bb7fde8fe27fef858eaf3a120510c20e425e2dd9d93a0b2e384da7d3be20704f +size 9690 diff --git a/artists-to-study/ats/thumbnail/portrait/anime/anime_Gai Qi_0.613744_1746.jpg b/artists-to-study/ats/thumbnail/portrait/anime/anime_Gai Qi_0.613744_1746.jpg new file mode 100644 index 0000000000000000000000000000000000000000..88bb3f2f14c3068952a20f15fc16e031ef6fbdc6 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/anime/anime_Gai Qi_0.613744_1746.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be74341ff94dd81286d9d94d68d5dc9c5bbcbac583d41a588ff0a3c2302c02bc +size 9698 diff --git "a/artists-to-study/ats/thumbnail/portrait/anime/anime_Gat\305\215ken Shunshi_0.6833314_0977.jpg" "b/artists-to-study/ats/thumbnail/portrait/anime/anime_Gat\305\215ken Shunshi_0.6833314_0977.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..53c76478c8c5d3c98c8a8a7046aef08c059b9dd6 --- /dev/null +++ "b/artists-to-study/ats/thumbnail/portrait/anime/anime_Gat\305\215ken Shunshi_0.6833314_0977.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9a1addcf1bc0a601906db589ea169e61f91d87d2087ed006a6a3d6ec9ffb06fa +size 12823 diff --git a/artists-to-study/ats/thumbnail/portrait/anime/anime_Go Nagai_0.72770613_0530.jpg b/artists-to-study/ats/thumbnail/portrait/anime/anime_Go Nagai_0.72770613_0530.jpg new file mode 100644 index 0000000000000000000000000000000000000000..72d7255758a4e79213addef482b42d4aec52439d --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/anime/anime_Go Nagai_0.72770613_0530.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a4f52a7e094b5b6faf16b9c4f94d434ba5306949bbbca04d77f3785e2c61c953 +size 13062 diff --git "a/artists-to-study/ats/thumbnail/portrait/anime/anime_Gyosh\305\253 Hayami_0.68665624_0945.jpg" "b/artists-to-study/ats/thumbnail/portrait/anime/anime_Gyosh\305\253 Hayami_0.68665624_0945.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..052b65e8725ef5183be790b1708f5106eb35490d --- /dev/null +++ "b/artists-to-study/ats/thumbnail/portrait/anime/anime_Gyosh\305\253 Hayami_0.68665624_0945.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:edc68a36f3dd1f1e935b2b2a02cfd4c4bc340999f4744bc67e3a153e3a9fd1d6 +size 9908 diff --git a/artists-to-study/ats/thumbnail/portrait/anime/anime_Hariton Pushwagner_0.6556745_1316.jpg b/artists-to-study/ats/thumbnail/portrait/anime/anime_Hariton Pushwagner_0.6556745_1316.jpg new file mode 100644 index 0000000000000000000000000000000000000000..54062ba6f9642e5cce846602a1359f95710ff476 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/anime/anime_Hariton Pushwagner_0.6556745_1316.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c488bccc0e60da1ebbce5f98b6a5f91bb2ca11633c2a1bea7d440830997ce2e +size 12845 diff --git "a/artists-to-study/ats/thumbnail/portrait/anime/anime_Hasegawa T\305\215haku_0.66146004_1246.jpg" "b/artists-to-study/ats/thumbnail/portrait/anime/anime_Hasegawa T\305\215haku_0.66146004_1246.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..c09ccd50f77dfb6a7c453d8682b855718fa3f59f --- /dev/null +++ "b/artists-to-study/ats/thumbnail/portrait/anime/anime_Hasegawa T\305\215haku_0.66146004_1246.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16b5c6bec333e9f89ce7dabfa303898cb72dc12a8e85cf7f337a482b929f67d1 +size 10694 diff --git a/artists-to-study/ats/thumbnail/portrait/anime/anime_Hayao Miyazaki_0.6800754_1016.jpg b/artists-to-study/ats/thumbnail/portrait/anime/anime_Hayao Miyazaki_0.6800754_1016.jpg new file mode 100644 index 0000000000000000000000000000000000000000..304b825d19f676e5def05936c0b7e2a346f707a5 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/anime/anime_Hayao Miyazaki_0.6800754_1016.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:02dd0b65ba4c5a7eb5e0b0ad49235b82e788fc7115c2daedbd1d8e7d06b0413f +size 12940 diff --git a/artists-to-study/ats/thumbnail/portrait/anime/anime_Hirohiko Araki_0.6914078_0888.jpg b/artists-to-study/ats/thumbnail/portrait/anime/anime_Hirohiko Araki_0.6914078_0888.jpg new file mode 100644 index 0000000000000000000000000000000000000000..eb63fd35fedbda4a73521ea8db17fdd2d1eebbf1 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/anime/anime_Hirohiko Araki_0.6914078_0888.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d41f52889f21a0ce081ca8d96a68b2d08bc2bb45d381ddd748e06561dcea276 +size 20017 diff --git a/artists-to-study/ats/thumbnail/portrait/anime/anime_Hiromu Arakawa_0.64371413_1451.jpg b/artists-to-study/ats/thumbnail/portrait/anime/anime_Hiromu Arakawa_0.64371413_1451.jpg new file mode 100644 index 0000000000000000000000000000000000000000..efbcebebb66eae971bd4a1da6cd94117152c68f1 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/anime/anime_Hiromu Arakawa_0.64371413_1451.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d5c77a722e6efc2d337ee75b91cf541cb52a5aa558b2d2919a23adf8c621b60e +size 17902 diff --git a/artists-to-study/ats/thumbnail/portrait/anime/anime_Ike no Taiga_0.5795857_2106.jpg b/artists-to-study/ats/thumbnail/portrait/anime/anime_Ike no Taiga_0.5795857_2106.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3cae955eccc767ea5af5baebb59591fa35520e37 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/anime/anime_Ike no Taiga_0.5795857_2106.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:576d352bc8b796d572a602b39497d043ba0be3dec46721cd0e7cc08f6a066daa +size 11335 diff --git a/artists-to-study/ats/thumbnail/portrait/anime/anime_Inio Asano_0.6965007_0830.jpg b/artists-to-study/ats/thumbnail/portrait/anime/anime_Inio Asano_0.6965007_0830.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2685560bf95074166964e8e8fb0afe076143ee64 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/anime/anime_Inio Asano_0.6965007_0830.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e94589d7733f5c46ca10b49f03837caf26f3995f7c510f8bd4b1359cb59776c3 +size 19928 diff --git a/artists-to-study/ats/thumbnail/portrait/anime/anime_John Kenn Mortensen_0.74758303_0389.jpg b/artists-to-study/ats/thumbnail/portrait/anime/anime_John Kenn Mortensen_0.74758303_0389.jpg new file mode 100644 index 0000000000000000000000000000000000000000..51a8a9b75033693dde9dd0e228588cb3cf73c97a --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/anime/anime_John Kenn Mortensen_0.74758303_0389.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ed94c3a9a941107685e348c208b15017aa34adf197a529d257fb6cd98e10f59 +size 10787 diff --git a/artists-to-study/ats/thumbnail/portrait/anime/anime_Junji Ito_0.7188978_0607.jpg b/artists-to-study/ats/thumbnail/portrait/anime/anime_Junji Ito_0.7188978_0607.jpg new file mode 100644 index 0000000000000000000000000000000000000000..572694942080881a166383eb57517144284c44ca --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/anime/anime_Junji Ito_0.7188978_0607.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:486dddfa8d3e20e1e1a46085dd572f08dc90a26aa1e5281100537528dd875b79 +size 23537 diff --git a/artists-to-study/ats/thumbnail/portrait/anime/anime_Katsuhiro Otomo_0.746364_0407.jpg b/artists-to-study/ats/thumbnail/portrait/anime/anime_Katsuhiro Otomo_0.746364_0407.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2c730fe4ac21b3baaff5ded3e8340725feb56b91 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/anime/anime_Katsuhiro Otomo_0.746364_0407.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:51f3a9e3d4248bc1fbfcb1ec7c16a9031dce3f81735e50b76b9ba359b1bbaa28 +size 15622 diff --git a/artists-to-study/ats/thumbnail/portrait/anime/anime_Ken Sugimori_0.6932626_0865.jpg b/artists-to-study/ats/thumbnail/portrait/anime/anime_Ken Sugimori_0.6932626_0865.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0e609cec67fc8bd911c3e3889a45575b567b3785 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/anime/anime_Ken Sugimori_0.6932626_0865.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e7d629a37d2a71ef23321b90a37e90bb56f642c83ccf0734340e969afb180c4 +size 24712 diff --git a/artists-to-study/ats/thumbnail/portrait/anime/anime_Kentaro Miura_0.697743_0819.jpg b/artists-to-study/ats/thumbnail/portrait/anime/anime_Kentaro Miura_0.697743_0819.jpg new file mode 100644 index 0000000000000000000000000000000000000000..19435327160a40d7ed8d657c74a1cdd1f943a187 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/anime/anime_Kentaro Miura_0.697743_0819.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:42698007ea414ab3a615dea3d1d79c8cd0bdffcfa3fe13cd62f952ccbb49afb4 +size 20852 diff --git a/artists-to-study/ats/thumbnail/portrait/anime/anime_Kobayashi Kiyochika_0.6239368_1647.jpg b/artists-to-study/ats/thumbnail/portrait/anime/anime_Kobayashi Kiyochika_0.6239368_1647.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9ba43ff2447bb89532d37cf5a16b211772aae5e8 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/anime/anime_Kobayashi Kiyochika_0.6239368_1647.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e96631d3b6b7e6e22922aee6e8e20816c7916bc0926284c5e20632639563529 +size 9852 diff --git a/artists-to-study/ats/thumbnail/portrait/anime/anime_Leiji Matsumoto_0.66089404_1252.jpg b/artists-to-study/ats/thumbnail/portrait/anime/anime_Leiji Matsumoto_0.66089404_1252.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b8093ec1ddf46fc9576af0a0135afa3d1e31798f --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/anime/anime_Leiji Matsumoto_0.66089404_1252.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:61e84142f1d88f9c4110f9400988fe8efd02bc5c567f904c2ce7d0d3cb03aa4b +size 16167 diff --git a/artists-to-study/ats/thumbnail/portrait/anime/anime_Makoto Shinkai_0.67610705_1062.jpg b/artists-to-study/ats/thumbnail/portrait/anime/anime_Makoto Shinkai_0.67610705_1062.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7bc713a75741b619ecd7880b12205c21c27dc660 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/anime/anime_Makoto Shinkai_0.67610705_1062.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0db5e67c2c89e23135a2299047cdec83536639193cf5458df2c50b62d2951c2d +size 12291 diff --git a/artists-to-study/ats/thumbnail/portrait/anime/anime_Masaaki Sasamoto_0.6597158_1263.jpg b/artists-to-study/ats/thumbnail/portrait/anime/anime_Masaaki Sasamoto_0.6597158_1263.jpg new file mode 100644 index 0000000000000000000000000000000000000000..993a96030f16c31ca18d251d9479153e6419b892 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/anime/anime_Masaaki Sasamoto_0.6597158_1263.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:05d5c36fb1286c2b757c15d0a88ec6e3bec23a0b773ebdae4f7669bca71269e4 +size 11806 diff --git a/artists-to-study/ats/thumbnail/portrait/anime/anime_Masamune Shirow_0.65592873_1314.jpg b/artists-to-study/ats/thumbnail/portrait/anime/anime_Masamune Shirow_0.65592873_1314.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a406e9e88d8b4334d9398ac89a973946a7f3e0db --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/anime/anime_Masamune Shirow_0.65592873_1314.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c844c81d0f9c7d9df77061aee6e4b81cd0f59418ee27ba87a43639a31f512f3b +size 22727 diff --git a/artists-to-study/ats/thumbnail/portrait/anime/anime_Michael Cheval_0.61138546_1767.jpg b/artists-to-study/ats/thumbnail/portrait/anime/anime_Michael Cheval_0.61138546_1767.jpg new file mode 100644 index 0000000000000000000000000000000000000000..201b54028b90856293752caec7339a88ad63f22e --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/anime/anime_Michael Cheval_0.61138546_1767.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f6206241b5b67ab9f40dabfa0e65cf684045711d5c8a8bc4eb1d7e41d270c41a +size 17922 diff --git a/artists-to-study/ats/thumbnail/portrait/anime/anime_Miho Hirano_0.6724092_1117.jpg b/artists-to-study/ats/thumbnail/portrait/anime/anime_Miho Hirano_0.6724092_1117.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7402e9ecf1b2adfeee0fa896ac0ef157141304a0 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/anime/anime_Miho Hirano_0.6724092_1117.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e137189cc34d0101549552f03ed801524bd093e37bd01e8c09461d04e6db42c1 +size 13200 diff --git a/artists-to-study/ats/thumbnail/portrait/anime/anime_Naoki Urasawa_0.7469665_0404.jpg b/artists-to-study/ats/thumbnail/portrait/anime/anime_Naoki Urasawa_0.7469665_0404.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5ceb794a4a72f4925eb5b9b9a0d5330e70c88b0f --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/anime/anime_Naoki Urasawa_0.7469665_0404.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b50f583137ad9d57ad7c2f2224fc80e1752de8598a90e52ba87865a21e4fbab +size 10922 diff --git a/artists-to-study/ats/thumbnail/portrait/anime/anime_Naoko Takeuchi_0.80482674_0205.jpg b/artists-to-study/ats/thumbnail/portrait/anime/anime_Naoko Takeuchi_0.80482674_0205.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d3b71f012b7fd1360ed93fa30bf9c2de81cfc25a --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/anime/anime_Naoko Takeuchi_0.80482674_0205.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:15a392c4fafec1455e0626ca0693b9cb631436014316aa5189c8677dd6027053 +size 24679 diff --git a/artists-to-study/ats/thumbnail/portrait/anime/anime_Phil Noto_0.6470769_1421.jpg b/artists-to-study/ats/thumbnail/portrait/anime/anime_Phil Noto_0.6470769_1421.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a822c95c97b2a8d4b52abc1c3c4f1df8f220d6af --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/anime/anime_Phil Noto_0.6470769_1421.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1cb7b4be7e8abe52276f3a84491bbb7edb2d71aedb5d00028b2e3bd1170a1f68 +size 10464 diff --git a/artists-to-study/ats/thumbnail/portrait/anime/anime_Posuka Demizu_0.64843124_1405.jpg b/artists-to-study/ats/thumbnail/portrait/anime/anime_Posuka Demizu_0.64843124_1405.jpg new file mode 100644 index 0000000000000000000000000000000000000000..148fa8a265c0425f8ca6c75b878318ede5e58190 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/anime/anime_Posuka Demizu_0.64843124_1405.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c9fefb209240d3a3d7efc3258e0872c8354d42cc103876a791076b45fd2e244a +size 18339 diff --git a/artists-to-study/ats/thumbnail/portrait/anime/anime_Rumiko Takahashi_0.8301817_0157.jpg b/artists-to-study/ats/thumbnail/portrait/anime/anime_Rumiko Takahashi_0.8301817_0157.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ba3023fe98ad5910c09279225f2c792974020c69 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/anime/anime_Rumiko Takahashi_0.8301817_0157.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa01f6477214206a928a2d32e139e7e3e6c9a552e670aac89c0a0933a27cef3a +size 16603 diff --git a/artists-to-study/ats/thumbnail/portrait/anime/anime_Sailor Moon_0.73281246_0485.jpg b/artists-to-study/ats/thumbnail/portrait/anime/anime_Sailor Moon_0.73281246_0485.jpg new file mode 100644 index 0000000000000000000000000000000000000000..48ac6e53f8cdffe3d3efa851e4e813ab53453fd3 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/anime/anime_Sailor Moon_0.73281246_0485.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bbcbaedba17a19be984bbe5b60313566257aa47bbbb997542b90cd86b1f95d2f +size 22505 diff --git a/artists-to-study/ats/thumbnail/portrait/anime/anime_Satoshi Kon_0.65606606_1313.jpg b/artists-to-study/ats/thumbnail/portrait/anime/anime_Satoshi Kon_0.65606606_1313.jpg new file mode 100644 index 0000000000000000000000000000000000000000..474f5125421094e5c3fb23bf7bff50faeca374f4 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/anime/anime_Satoshi Kon_0.65606606_1313.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b1b0360237b4129b0910a82966610621a0591c5ee47ec73e634323c171b05d3 +size 14776 diff --git a/artists-to-study/ats/thumbnail/portrait/anime/anime_Shinji Aramaki_0.61246127_1757.jpg b/artists-to-study/ats/thumbnail/portrait/anime/anime_Shinji Aramaki_0.61246127_1757.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a9ec2e3d880b4939872bb3163d846bb2143b13be --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/anime/anime_Shinji Aramaki_0.61246127_1757.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0bef8aafbe04cd0cc20566e9d97043fe0965afa8c948a52ef3e371af5b4b1ce2 +size 9761 diff --git a/artists-to-study/ats/thumbnail/portrait/anime/anime_Shintaro Kago_0.7484431_0392.jpg b/artists-to-study/ats/thumbnail/portrait/anime/anime_Shintaro Kago_0.7484431_0392.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0eb1d30b180d30c7b560c2cb4e67a3eeafe255fd --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/anime/anime_Shintaro Kago_0.7484431_0392.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf2e2816c9f439ad4f74e57080f1bf4df21d2d4cdf1945414aafd9a8be4195fe +size 21684 diff --git a/artists-to-study/ats/thumbnail/portrait/anime/anime_Shotaro Ishinomori_0.7292093_0513.jpg b/artists-to-study/ats/thumbnail/portrait/anime/anime_Shotaro Ishinomori_0.7292093_0513.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7d2bf374ceae7e167df28b5acbb604358eb5e841 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/anime/anime_Shotaro Ishinomori_0.7292093_0513.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ec9a6b3061abe34efb82cdd17495da30c11b9241b54b6d3a03f89bf07218607 +size 22285 diff --git a/artists-to-study/ats/thumbnail/portrait/anime/anime_Shusei Nagaoko_0.7238965_0566.jpg b/artists-to-study/ats/thumbnail/portrait/anime/anime_Shusei Nagaoko_0.7238965_0566.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7d94a7412055f8cf1790399eb4702efd10e6dce2 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/anime/anime_Shusei Nagaoko_0.7238965_0566.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:97f7880216044009695548cf85c82645b0bfb468931b313830ac8f991ee9c20f +size 14009 diff --git a/artists-to-study/ats/thumbnail/portrait/anime/anime_Studio Ghibli_0.73439026_0475.jpg b/artists-to-study/ats/thumbnail/portrait/anime/anime_Studio Ghibli_0.73439026_0475.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2489bbfda2adff4e3d7af2c45de1545edd7301e1 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/anime/anime_Studio Ghibli_0.73439026_0475.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa2eab256eb7880e1f710e3ec7dc0732c1b807684ba2ca71a534c97bb7c1f020 +size 19832 diff --git a/artists-to-study/ats/thumbnail/portrait/anime/anime_Takeshi Obata_0.67643225_1058.jpg b/artists-to-study/ats/thumbnail/portrait/anime/anime_Takeshi Obata_0.67643225_1058.jpg new file mode 100644 index 0000000000000000000000000000000000000000..70a4324ce10cf3eed37935a414bb68e4aba9cfcd --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/anime/anime_Takeshi Obata_0.67643225_1058.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ebc70648247a662fd56679dd4c07540e1e5d70ae5c327fcd286140962f4a5b8 +size 25707 diff --git a/artists-to-study/ats/thumbnail/portrait/anime/anime_Toei Animations_0.6629127_1236.jpg b/artists-to-study/ats/thumbnail/portrait/anime/anime_Toei Animations_0.6629127_1236.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c17651093039e708cd5085c4a2ed65a68ffc42e2 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/anime/anime_Toei Animations_0.6629127_1236.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da04b0ffe67003c73482c28fe7aae2216f3b28356d4816b972cacf3c4c385383 +size 20418 diff --git a/artists-to-study/ats/thumbnail/portrait/anime/anime_Tsutomu Nihei_0.7070495_0726.jpg b/artists-to-study/ats/thumbnail/portrait/anime/anime_Tsutomu Nihei_0.7070495_0726.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d49fc78ea14196cef95f2ac9ecdbae8597fc7fa8 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/anime/anime_Tsutomu Nihei_0.7070495_0726.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a4743e666f5e8b1416ae6cdba62c819e7f83add4a7a5297da0fe5f502fc6265 +size 23340 diff --git a/artists-to-study/ats/thumbnail/portrait/anime/anime_Yoji Shinkawa_0.5287015_2552.jpg b/artists-to-study/ats/thumbnail/portrait/anime/anime_Yoji Shinkawa_0.5287015_2552.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7d9e14cd496e162b27eab082cbad3b5ab4dde7b0 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/anime/anime_Yoji Shinkawa_0.5287015_2552.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff312cebb47c95b6fe3bb5cee4f684bbc79a2d2fdb0838102116eb318df27bb0 +size 15917 diff --git a/artists-to-study/ats/thumbnail/portrait/anime/anime_Yoshiyuki Tomino_0.6998095_0799.jpg b/artists-to-study/ats/thumbnail/portrait/anime/anime_Yoshiyuki Tomino_0.6998095_0799.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4fed4172c78e1dfcc1133c1f75237c4fbf864a9b --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/anime/anime_Yoshiyuki Tomino_0.6998095_0799.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b8b195e6eecb4728e9ab16d6469d16221ee3e9e77f25a42d125b385da686b019 +size 11197 diff --git a/artists-to-study/ats/thumbnail/portrait/black-white/black-white_Albert Servaes_0.60250103_1858.jpg b/artists-to-study/ats/thumbnail/portrait/black-white/black-white_Albert Servaes_0.60250103_1858.jpg new file mode 100644 index 0000000000000000000000000000000000000000..09ad39c7db4dc38c11f78b17864f063c27035f09 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/black-white/black-white_Albert Servaes_0.60250103_1858.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc53fb4cec1738dd2c3ff8645348ff80bdecc42382e1a2233a1ae8d08a076ab0 +size 9855 diff --git a/artists-to-study/ats/thumbnail/portrait/black-white/black-white_Alfred Eisenstaedt_0.67213774_1122.jpg b/artists-to-study/ats/thumbnail/portrait/black-white/black-white_Alfred Eisenstaedt_0.67213774_1122.jpg new file mode 100644 index 0000000000000000000000000000000000000000..18ff8d4285d8cfcdc02c34b31ba514d07c240abb --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/black-white/black-white_Alfred Eisenstaedt_0.67213774_1122.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:66e67e3c71e87762e9ef94914eb4ab8961b7530a0434ad0146b0333f087ffd24 +size 15285 diff --git a/artists-to-study/ats/thumbnail/portrait/black-white/black-white_Alvin Langdon Coburn_0.8035004_0208.jpg b/artists-to-study/ats/thumbnail/portrait/black-white/black-white_Alvin Langdon Coburn_0.8035004_0208.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4ee55dbde26dd7c11394300605eb49a6e5db94ef --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/black-white/black-white_Alvin Langdon Coburn_0.8035004_0208.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:72192ed78f9ca620345852d5515f3bbd230f7b9c6e239dfc2a13cc5a4de2d711 +size 10037 diff --git a/artists-to-study/ats/thumbnail/portrait/black-white/black-white_Ando Fuchs_0.73406494_0479.jpg b/artists-to-study/ats/thumbnail/portrait/black-white/black-white_Ando Fuchs_0.73406494_0479.jpg new file mode 100644 index 0000000000000000000000000000000000000000..cf0366e770268288b48e4cf049d2e175e746cb9d --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/black-white/black-white_Ando Fuchs_0.73406494_0479.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d5aada71b31e925fef35a5fb51081cf7540169449eed57ad2aea76705151280 +size 13065 diff --git a/artists-to-study/ats/thumbnail/portrait/black-white/black-white_Andre Kertesz_0.7228358_0439.jpg b/artists-to-study/ats/thumbnail/portrait/black-white/black-white_Andre Kertesz_0.7228358_0439.jpg new file mode 100644 index 0000000000000000000000000000000000000000..295d4ae8e68f63fda06327d09eaaa7b6a369977b --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/black-white/black-white_Andre Kertesz_0.7228358_0439.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:56a3661fb2593e174fc8992030a35998f82c304f565fc56952a3909021108626 +size 11382 diff --git "a/artists-to-study/ats/thumbnail/portrait/black-white/black-white_Andr\303\251 Kert\303\251sz_0.7319392_0349.jpg" "b/artists-to-study/ats/thumbnail/portrait/black-white/black-white_Andr\303\251 Kert\303\251sz_0.7319392_0349.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..76731af329a5d41f81adbaaecc03047e18a60209 --- /dev/null +++ "b/artists-to-study/ats/thumbnail/portrait/black-white/black-white_Andr\303\251 Kert\303\251sz_0.7319392_0349.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f58effc6e1aceecc2d41726a6122197c9e5a7a8851a02755f1bfdee863766dcf +size 11708 diff --git a/artists-to-study/ats/thumbnail/portrait/black-white/black-white_Anne Brigman_0.6865817_0869.jpg b/artists-to-study/ats/thumbnail/portrait/black-white/black-white_Anne Brigman_0.6865817_0869.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d827cf6907d816339f77d926c220cbf6a4d26f92 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/black-white/black-white_Anne Brigman_0.6865817_0869.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f53812843b9d468062e227302388311ebb77233c25d71794a3167d316daff1a +size 8806 diff --git a/artists-to-study/ats/thumbnail/portrait/black-white/black-white_Antanas Sutkus_0.7369492_0456.jpg b/artists-to-study/ats/thumbnail/portrait/black-white/black-white_Antanas Sutkus_0.7369492_0456.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fd032aa1cb88d0e3fb8b9392356361496b489b50 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/black-white/black-white_Antanas Sutkus_0.7369492_0456.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7bbae369420c6cbd636679c3f54795d367f5a77156704161f7d9d275e1bd459b +size 13580 diff --git a/artists-to-study/ats/thumbnail/portrait/black-white/black-white_August Sander_0.6644566_0416.jpg b/artists-to-study/ats/thumbnail/portrait/black-white/black-white_August Sander_0.6644566_0416.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d905090e0c65499a3318d5a1f46b1841c41f3331 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/black-white/black-white_August Sander_0.6644566_0416.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eb04563b38c49bd4fb6e2fd56854219ba6b8b48d0323717cd46b83eaa0fc47e6 +size 11585 diff --git a/artists-to-study/ats/thumbnail/portrait/black-white/black-white_Bert Hardy_0.6972966_0823.jpg b/artists-to-study/ats/thumbnail/portrait/black-white/black-white_Bert Hardy_0.6972966_0823.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0154fc0809fa5697d9201d6c0930bf33425bba29 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/black-white/black-white_Bert Hardy_0.6972966_0823.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0de73e548d149f452d47aa2c571f19eb005a5c0e8f924f8a3ffdcec0c87e0d16 +size 12043 diff --git a/artists-to-study/ats/thumbnail/portrait/black-white/black-white_Bill Brandt_0.6833408_0385.jpg b/artists-to-study/ats/thumbnail/portrait/black-white/black-white_Bill Brandt_0.6833408_0385.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0bea931d1dbd791d9b6ce87e46fe7f7a7437ccbf --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/black-white/black-white_Bill Brandt_0.6833408_0385.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ebcd341c0445bb756cd371d7f8edf4dc48b581346ada87081575bf80adfd064 +size 10870 diff --git a/artists-to-study/ats/thumbnail/portrait/black-white/black-white_Brett Weston_0.6891357_0374.jpg b/artists-to-study/ats/thumbnail/portrait/black-white/black-white_Brett Weston_0.6891357_0374.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f83fd77852d82bd3a01f132221c5cc0e4935eadf --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/black-white/black-white_Brett Weston_0.6891357_0374.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c12902b7687de33f0107fcc64811d6bfdb086e354922a2de99f6547dadae6b7e +size 13649 diff --git a/artists-to-study/ats/thumbnail/portrait/black-white/black-white_Bruce Gilden_0.7256681_0285.jpg b/artists-to-study/ats/thumbnail/portrait/black-white/black-white_Bruce Gilden_0.7256681_0285.jpg new file mode 100644 index 0000000000000000000000000000000000000000..68803c1d3828088699e760bb19b638d4d82bc142 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/black-white/black-white_Bruce Gilden_0.7256681_0285.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:502d647b1105c4a2ce4f5fbf561129f5fe917f7a75956f6d2bd8964edd3622a1 +size 14541 diff --git a/artists-to-study/ats/thumbnail/portrait/black-white/black-white_Cecil Beaton_0.66362655_0784.jpg b/artists-to-study/ats/thumbnail/portrait/black-white/black-white_Cecil Beaton_0.66362655_0784.jpg new file mode 100644 index 0000000000000000000000000000000000000000..140636a7f8a820eda4bef7f7891909d3fc986e96 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/black-white/black-white_Cecil Beaton_0.66362655_0784.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d1f98bdb5f436eafab6acf3404f58a8bf77f2fdfb9daf46cfeb85896353d316 +size 12763 diff --git a/artists-to-study/ats/thumbnail/portrait/black-white/black-white_Dorothea Lange_0.71361613_0658.jpg b/artists-to-study/ats/thumbnail/portrait/black-white/black-white_Dorothea Lange_0.71361613_0658.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e079df5426601c4a03931cd1e0977081f0384b28 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/black-white/black-white_Dorothea Lange_0.71361613_0658.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a92bb8472af52d348792bd315406862c6dd410ecb4064378f12171a14e959ed8 +size 14784 diff --git a/artists-to-study/ats/thumbnail/portrait/black-white/black-white_Edward Steichen_0.69837445_0809.jpg b/artists-to-study/ats/thumbnail/portrait/black-white/black-white_Edward Steichen_0.69837445_0809.jpg new file mode 100644 index 0000000000000000000000000000000000000000..584339cbdda886054f3d33aa1c477cfc6ca65c9b --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/black-white/black-white_Edward Steichen_0.69837445_0809.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c718776b206700bb82be13d525e61f92defb9f81999d0c25b739281e45ed4646 +size 9559 diff --git a/artists-to-study/ats/thumbnail/portrait/black-white/black-white_Edward Weston_0.7061382_0739.jpg b/artists-to-study/ats/thumbnail/portrait/black-white/black-white_Edward Weston_0.7061382_0739.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5eeec1eb7ca5aa8ef7cd76b9743dbc3181cc3320 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/black-white/black-white_Edward Weston_0.7061382_0739.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aca7a3fbd84a23a45ecae77ed17a37952632872c28cd0804e1f53b062ef416a9 +size 11145 diff --git a/artists-to-study/ats/thumbnail/portrait/black-white/black-white_Elliott Erwitt_0.69950557_0756.jpg b/artists-to-study/ats/thumbnail/portrait/black-white/black-white_Elliott Erwitt_0.69950557_0756.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fccbe3f97c4dcdd0992c44d87db9c4c0579f7176 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/black-white/black-white_Elliott Erwitt_0.69950557_0756.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1544039dbc7ba6e943ec749db723eba43163b104b8459d1e4043607d9eed4b21 +size 11215 diff --git a/artists-to-study/ats/thumbnail/portrait/black-white/black-white_Garry Winogrand_0.83994275_0142.jpg b/artists-to-study/ats/thumbnail/portrait/black-white/black-white_Garry Winogrand_0.83994275_0142.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e77f0fee7bf47f5ec0edc4e1c858b6cde7df914c --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/black-white/black-white_Garry Winogrand_0.83994275_0142.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8017feb6b16bafc365e437b333b6e1c954a0cf0d3e5fd212b2ad910b9ac05e3e +size 16645 diff --git a/artists-to-study/ats/thumbnail/portrait/black-white/black-white_Germaine Krull_0.6621777_0741.jpg b/artists-to-study/ats/thumbnail/portrait/black-white/black-white_Germaine Krull_0.6621777_0741.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1440d09e37f7695a042960eb967a5c41e382eb77 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/black-white/black-white_Germaine Krull_0.6621777_0741.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:48f6af0d3df06333a94e1c9d5d5d6af4bee6c8705871c3dac3f303e2510d8441 +size 9941 diff --git a/artists-to-study/ats/thumbnail/portrait/black-white/black-white_Henri Cartier-Bresson_0.7735415_0282.jpg b/artists-to-study/ats/thumbnail/portrait/black-white/black-white_Henri Cartier-Bresson_0.7735415_0282.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4589933ac9909e109dfc8b228fedf0a6c740a649 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/black-white/black-white_Henri Cartier-Bresson_0.7735415_0282.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a69b69002bdb9475396771f37f2591b4d3045e00111450369cc0c7ea88217a4 +size 12537 diff --git a/artists-to-study/ats/thumbnail/portrait/black-white/black-white_Herbert List_0.68455493_0386.jpg b/artists-to-study/ats/thumbnail/portrait/black-white/black-white_Herbert List_0.68455493_0386.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c90cce9ab6d911fe4aeedeae5e5bd1826f295e6c --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/black-white/black-white_Herbert List_0.68455493_0386.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a44e8adf27a4550a79e9ddcb3655c79003f7bf23ef7b07200ebff2d44eb34a1e +size 10804 diff --git "a/artists-to-study/ats/thumbnail/portrait/black-white/black-white_Herv\303\251 Guibert_0.55973417_1069.jpg" "b/artists-to-study/ats/thumbnail/portrait/black-white/black-white_Herv\303\251 Guibert_0.55973417_1069.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..490c84697dda0b7c5cf0bb2bd309a3f83cac2a67 --- /dev/null +++ "b/artists-to-study/ats/thumbnail/portrait/black-white/black-white_Herv\303\251 Guibert_0.55973417_1069.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b4d543fc94dce72c5c4d57dc762b34c80e1228c83e24dcdc134e15796b02358 +size 10981 diff --git a/artists-to-study/ats/thumbnail/portrait/black-white/black-white_Hugh Ferriss_0.72443527_0441.jpg b/artists-to-study/ats/thumbnail/portrait/black-white/black-white_Hugh Ferriss_0.72443527_0441.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a319ecea7e6a349c1eccb69b1c90b0b02ac62052 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/black-white/black-white_Hugh Ferriss_0.72443527_0441.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bfdc88e3cf878886f86a2de2672644d07f306bc1dd41cb42a0847c4efa4200c6 +size 10553 diff --git a/artists-to-study/ats/thumbnail/portrait/black-white/black-white_Jeanloup Sieff_0.7196009_0410.jpg b/artists-to-study/ats/thumbnail/portrait/black-white/black-white_Jeanloup Sieff_0.7196009_0410.jpg new file mode 100644 index 0000000000000000000000000000000000000000..346cf6b949fdbc431add799c34a06079e1d4c25d --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/black-white/black-white_Jeanloup Sieff_0.7196009_0410.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:36551d575473dc821c7df6d36c02ba8d83536d74ccd63420aae385c174c9c1c2 +size 12993 diff --git a/artists-to-study/ats/thumbnail/portrait/black-white/black-white_John Stezaker_0.6726847_1112.jpg b/artists-to-study/ats/thumbnail/portrait/black-white/black-white_John Stezaker_0.6726847_1112.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5848664a39739e3b7ca9cf1c7b19f7e16a80c182 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/black-white/black-white_John Stezaker_0.6726847_1112.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b23627af17d14d20caed6157ce94fa71c4f35c5879295450880787168caef6b +size 9819 diff --git a/artists-to-study/ats/thumbnail/portrait/black-white/black-white_Karl Blossfeldt_0.77652574_0265.jpg b/artists-to-study/ats/thumbnail/portrait/black-white/black-white_Karl Blossfeldt_0.77652574_0265.jpg new file mode 100644 index 0000000000000000000000000000000000000000..693cb60800748aedf7a2d8d2d48283c414680d55 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/black-white/black-white_Karl Blossfeldt_0.77652574_0265.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:94a331ee9657c06f58d182ba5df4a80f325d349ddcaf8e4a28447e65101567e1 +size 9509 diff --git a/artists-to-study/ats/thumbnail/portrait/black-white/black-white_Kati Horna_0.71486115_0643.jpg b/artists-to-study/ats/thumbnail/portrait/black-white/black-white_Kati Horna_0.71486115_0643.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bcaab40b678a36e3cd1aa0b439cbd477c15d400e --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/black-white/black-white_Kati Horna_0.71486115_0643.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60d446f6762e715d94af0f600caf60f03682623a0e46bea4cab469620cf15514 +size 9112 diff --git a/artists-to-study/ats/thumbnail/portrait/black-white/black-white_Max Dupain_0.6661642_0333.jpg b/artists-to-study/ats/thumbnail/portrait/black-white/black-white_Max Dupain_0.6661642_0333.jpg new file mode 100644 index 0000000000000000000000000000000000000000..98831bc99d128d279da7ad1e93f1ed74ad414dc4 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/black-white/black-white_Max Dupain_0.6661642_0333.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f0365370b14c8496e249e3a71fd3986fba210c27b09d8280e7eda4db95fd63fa +size 10864 diff --git a/artists-to-study/ats/thumbnail/portrait/black-white/black-white_Nathan Wirth_0.6436741_0388.jpg b/artists-to-study/ats/thumbnail/portrait/black-white/black-white_Nathan Wirth_0.6436741_0388.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9defffd2969a52354f9115d51724173afcd2e07a --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/black-white/black-white_Nathan Wirth_0.6436741_0388.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:65229df0633c04ed3212230bafe19ad2657f9211ede521b825bb8e35bfc6266a +size 10002 diff --git a/artists-to-study/ats/thumbnail/portrait/black-white/black-white_Paul Strand_0.7080332_0444.jpg b/artists-to-study/ats/thumbnail/portrait/black-white/black-white_Paul Strand_0.7080332_0444.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1b1436321d81162edf7f14c691abbeb4720c696b --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/black-white/black-white_Paul Strand_0.7080332_0444.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:403b8bd88ecb1b0ab9a8257c1f30517a622fef7722bc1f2c7f4e3ff039e1f65f +size 11598 diff --git a/artists-to-study/ats/thumbnail/portrait/black-white/black-white_Roger Ballen_0.64683115_0343.jpg b/artists-to-study/ats/thumbnail/portrait/black-white/black-white_Roger Ballen_0.64683115_0343.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1bfa66c82a41e16349e1e904e955e0981fc1979c --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/black-white/black-white_Roger Ballen_0.64683115_0343.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:95208d3d4e7f566d972d1c69555004664b4ac4ea9d130eb16596b17a020070fe +size 12976 diff --git a/artists-to-study/ats/thumbnail/portrait/black-white/black-white_Ruth Bernhard_0.72990334_0507.jpg b/artists-to-study/ats/thumbnail/portrait/black-white/black-white_Ruth Bernhard_0.72990334_0507.jpg new file mode 100644 index 0000000000000000000000000000000000000000..86fe38c494e1738886e7402ed77af963f2ef9baa --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/black-white/black-white_Ruth Bernhard_0.72990334_0507.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc5f06bf93ead3242d699088c726b3dd6aa8ba9a65f48d41d2fc4bcb2afd4558 +size 11367 diff --git a/artists-to-study/ats/thumbnail/portrait/black-white/black-white_Sally Mann_0.6534312_0652.jpg b/artists-to-study/ats/thumbnail/portrait/black-white/black-white_Sally Mann_0.6534312_0652.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5023e9de4504a85d10aa01d9359ea9d0bd5768fd --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/black-white/black-white_Sally Mann_0.6534312_0652.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e7413b14f3cc6efbf0ba50c7d432cecbfc5fdf5bd3f06528bf1d1c11ffd1724f +size 15460 diff --git a/artists-to-study/ats/thumbnail/portrait/c/c_Alain Laboile_0.67634284_0311.jpg b/artists-to-study/ats/thumbnail/portrait/c/c_Alain Laboile_0.67634284_0311.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f6be03b55764c7f1148dd57814acfa0c4a216c9c --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/c/c_Alain Laboile_0.67634284_0311.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4cf098ebf3065a883ef074dcaa04ecc40a2d7ba45639c04d83ab9837954ea8df +size 14874 diff --git a/artists-to-study/ats/thumbnail/portrait/c/c_Bapu_0.6122084_1759.jpg b/artists-to-study/ats/thumbnail/portrait/c/c_Bapu_0.6122084_1759.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c49490a753e8978e66860e480a78407761ca4c6c --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/c/c_Bapu_0.6122084_1759.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:294d7a799fbeb906a5c0e361f498a02dc9921ca9c051cc2a2d9b266e6b5d8250 +size 13369 diff --git a/artists-to-study/ats/thumbnail/portrait/c/c_Cassius Marcellus Coolidge_0.5805516_2097.jpg b/artists-to-study/ats/thumbnail/portrait/c/c_Cassius Marcellus Coolidge_0.5805516_2097.jpg new file mode 100644 index 0000000000000000000000000000000000000000..eb310ec669748d79e1d294d3191394e95e26328d --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/c/c_Cassius Marcellus Coolidge_0.5805516_2097.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3844c3c42eae11aba7252d4becac9d8bcd4dd18729e998a97dc9e4d759f8ee76 +size 12427 diff --git a/artists-to-study/ats/thumbnail/portrait/c/c_Dr. Seuss_0.5597466_2288.jpg b/artists-to-study/ats/thumbnail/portrait/c/c_Dr. Seuss_0.5597466_2288.jpg new file mode 100644 index 0000000000000000000000000000000000000000..461c30f080f76f2a52bd7defe98cad4f06bf4da1 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/c/c_Dr. Seuss_0.5597466_2288.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b1ae85c5abd3d1f710419538b494b6a807568a188ddf8276a1bd82577ac1908a +size 18618 diff --git a/artists-to-study/ats/thumbnail/portrait/c/c_Henning Jakob Henrik Lund_0.5147134_2647.jpg b/artists-to-study/ats/thumbnail/portrait/c/c_Henning Jakob Henrik Lund_0.5147134_2647.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e822ec1294996cb9a61638f07d2e3f7e5be18509 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/c/c_Henning Jakob Henrik Lund_0.5147134_2647.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:15576a8b2549120a16175fbc063851e7b2b76970f5e49383ad73f8e1e54e84ed +size 10348 diff --git a/artists-to-study/ats/thumbnail/portrait/c/c_Julie Blackmon_0.72862685_0517.jpg b/artists-to-study/ats/thumbnail/portrait/c/c_Julie Blackmon_0.72862685_0517.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3bf29436bb1b60c805c41b5fb6bd1f3fffdc1296 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/c/c_Julie Blackmon_0.72862685_0517.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f1c822164912c1810ae8350444abd7269fe8896402990f56b10cb586649621c +size 15249 diff --git a/artists-to-study/ats/thumbnail/portrait/c/c_Robert Irwin_0.58078_2090.jpg b/artists-to-study/ats/thumbnail/portrait/c/c_Robert Irwin_0.58078_2090.jpg new file mode 100644 index 0000000000000000000000000000000000000000..73ca4d5ac253569080c467f590e1367a2f14e0c9 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/c/c_Robert Irwin_0.58078_2090.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:23804a56b1836bf72a135a48fa18936909657b966039cd3a034147719c9051b2 +size 9719 diff --git a/artists-to-study/ats/thumbnail/portrait/c/c_William-Adolphe Bouguereau_0.618265_1708.jpg b/artists-to-study/ats/thumbnail/portrait/c/c_William-Adolphe Bouguereau_0.618265_1708.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e3fe0b4edc11db4453cd596b6d4ca8741dee065b --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/c/c_William-Adolphe Bouguereau_0.618265_1708.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d477d032fe3afa5afeb9a770804813bb3bc3646761637c8be5515a9215fa1bd +size 10482 diff --git a/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Abigail Larson_0.7319012_0490.jpg b/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Abigail Larson_0.7319012_0490.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ca1e7c5a513ae8480f6e8e8daa4565307349e464 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Abigail Larson_0.7319012_0490.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:edcf323255948f77ca03ddab3c99602ea8f13eb70dbd3384aa9026ad9e55c0b8 +size 10914 diff --git a/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Al Williamson_0.742113_0424.jpg b/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Al Williamson_0.742113_0424.jpg new file mode 100644 index 0000000000000000000000000000000000000000..aa4663018c5300479bce8cbf65fce6d0f56d756f --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Al Williamson_0.742113_0424.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6281d88e0c0ac4640cc9d22b22873e021769cf40ba2c18c3034151293209e701 +size 23303 diff --git a/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Albert Robida_0.7485741_0391.jpg b/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Albert Robida_0.7485741_0391.jpg new file mode 100644 index 0000000000000000000000000000000000000000..baa200b72447e83ebc6da6c9365e6c32576c3c89 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Albert Robida_0.7485741_0391.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:176d2db654dab80c300cac84215c142578bf8ff669d80a7378c20a079f247509 +size 17412 diff --git a/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Alberto Vargas_0.7747376_0274.jpg b/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Alberto Vargas_0.7747376_0274.jpg new file mode 100644 index 0000000000000000000000000000000000000000..73e7e4f1189fa2bc7ac828396cfce399a25a7f06 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Alberto Vargas_0.7747376_0274.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2146e8d666aec91d190d788a2cae703e14e27f38bdab8eae9fea9908871e80ec +size 10480 diff --git a/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Alena Aenami_0.77210015_0288.jpg b/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Alena Aenami_0.77210015_0288.jpg new file mode 100644 index 0000000000000000000000000000000000000000..da648ead3261999e250a5f4fefd2d375b945d610 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Alena Aenami_0.77210015_0288.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:030722aa1286cc3e20f24b0b2c4f91f9ef2eb7987f89009a36c3902ba211f034 +size 14220 diff --git a/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Alex Hirsch_0.6157384_1724.jpg b/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Alex Hirsch_0.6157384_1724.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e63f6ab861cc9079635453d68d1e57e79537c1cd --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Alex Hirsch_0.6157384_1724.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e170b98a27b73040e301ffe722d95c25e175bba4dd1c6010d0ca5bd3c4b1820 +size 14419 diff --git a/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Alice Pasquini_0.78949904_0235.jpg b/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Alice Pasquini_0.78949904_0235.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a102b78d3826aff93cc7f03dd9507171cae6b607 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Alice Pasquini_0.78949904_0235.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd02b8d3df123357b9cd2f2bb81edb8820c14c576e3084a5e25aaf77a533a688 +size 22789 diff --git a/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Andy Kehoe_0.82063186_0165.jpg b/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Andy Kehoe_0.82063186_0165.jpg new file mode 100644 index 0000000000000000000000000000000000000000..57eb63dc8635bc31a91620e8603a08e0cc91be24 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Andy Kehoe_0.82063186_0165.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b7314381535d6170e59d1f148bddc674925e66a0bc45c2447032d285591b86d +size 9510 diff --git a/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Anna Dittmann_0.62327325_1655.jpg b/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Anna Dittmann_0.62327325_1655.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2bfd22d0bd6d78fc6ef6b0a9076d460149393c29 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Anna Dittmann_0.62327325_1655.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e6fe6626cb80e1b9bf19062268462694373fe716f599ba571b21cec76204fdde +size 14381 diff --git a/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Anton Fadeev_0.73433846_0477.jpg b/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Anton Fadeev_0.73433846_0477.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ecaaf256a8907fca00e6814630c169322762d2e0 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Anton Fadeev_0.73433846_0477.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:116b0cff6702094e96746783303347e6f968cb979abd4520ab2e5c3ec8eb6f48 +size 14181 diff --git a/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Barry Windsor Smith_0.6765375_1057.jpg b/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Barry Windsor Smith_0.6765375_1057.jpg new file mode 100644 index 0000000000000000000000000000000000000000..707ded847de31f07e454eefdf4873177df16d041 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Barry Windsor Smith_0.6765375_1057.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa3e4a45fad05af6f2cc296aae15effb7940cdedca7cfe94af9d7caab79ddda +size 19100 diff --git a/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Bart Sears_0.5838427_2051.jpg b/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Bart Sears_0.5838427_2051.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fab8d8b33c91aec7b93f601cb62205e7896e2965 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Bart Sears_0.5838427_2051.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c42c84312b3b4cfa032d7dcee97093773952dd39364a4f93e8d8cb38e16c2f1f +size 22038 diff --git a/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Becky Cloonan_0.67192084_1128.jpg b/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Becky Cloonan_0.67192084_1128.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7b0d615aa971b3bcb8d88a76d52d2e33905ee355 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Becky Cloonan_0.67192084_1128.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:82168a63ce8044e18bfb4cb5cd7cf24b95fcfe7e516be5e70b5e0f40b42b83d2 +size 22907 diff --git a/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Bernard Buffet_0.7103491_0695.jpg b/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Bernard Buffet_0.7103491_0695.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f7cb537edc1c6fa7d8f080e253a4169cb737500f --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Bernard Buffet_0.7103491_0695.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2654d681d013809059c127450acabc2d751d4d58ab77fe0030bd5da1ca5dc09a +size 20660 diff --git a/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Brian K. Vaughan_0.64147836_1467.jpg b/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Brian K. Vaughan_0.64147836_1467.jpg new file mode 100644 index 0000000000000000000000000000000000000000..93700c16e3f719a0c62d46f686283f848ab495a4 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Brian K. Vaughan_0.64147836_1467.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d683742316db8263159f1262ae9bfce45bb56c1d209ccb7209e8c2d51afbe473 +size 22305 diff --git a/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Bryan Hitch_0.6518333_1360.jpg b/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Bryan Hitch_0.6518333_1360.jpg new file mode 100644 index 0000000000000000000000000000000000000000..30f842857aa1e775f9c605f22cb6fa98d8e74e3a --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Bryan Hitch_0.6518333_1360.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e7fdff013dcf41057055b1be2c097d6fb807b6462c3987f0153e8d2345d3f359 +size 29375 diff --git a/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Butcher Billy_0.7593378_0338.jpg b/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Butcher Billy_0.7593378_0338.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f27733b862537847d5f484780e5185b7809b9a4d --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Butcher Billy_0.7593378_0338.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8191083239a735da57c677cf98943f9f4416a394be97f7a49252be0867d4ff89 +size 21735 diff --git a/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Carl Barks_0.6923666_0877.jpg b/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Carl Barks_0.6923666_0877.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5a8575bc960b0f056904c95a509c6fd07b22cd84 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Carl Barks_0.6923666_0877.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21feede454cfc0f5525f6c09b0cef3f3ea55905aaf7296f2b61d4cce4411a302 +size 17457 diff --git a/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Carl Larsson_0.7296195_0510.jpg b/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Carl Larsson_0.7296195_0510.jpg new file mode 100644 index 0000000000000000000000000000000000000000..cd90a66f8c8dbb87024b2ec913371f3182122e1b --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Carl Larsson_0.7296195_0510.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c9b1344656eecbae1e96ced9d5099f4a07e1226661f46a18978c23de6ddf501 +size 13334 diff --git a/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Casey Weldon_0.6047672_1830.jpg b/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Casey Weldon_0.6047672_1830.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7b29cf106fcf127f205e3465b1236bb8bc817493 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Casey Weldon_0.6047672_1830.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a8848d61bb9e153d6ce04a5727ded0517fb0c5b2db9e37b98e17032ffd464627 +size 17020 diff --git a/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Charles Vess_0.6512271_1367.jpg b/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Charles Vess_0.6512271_1367.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2f4fd872505d96b317f6c179bd60ed92f59fccf2 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Charles Vess_0.6512271_1367.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4964e5cfdfe3e93ad622bfbf5217ba0ab0aefb9452ee7ddeba0eb885be9945a7 +size 18437 diff --git a/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Chip Zdarsky_0.6381826_1502.jpg b/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Chip Zdarsky_0.6381826_1502.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bd35075c45f66f7a6c9df858ef3834dcee4aced3 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Chip Zdarsky_0.6381826_1502.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7eebe473fda87f189647873407d1d2be82320b7a6407e2110196d50f4c627976 +size 23543 diff --git a/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Conrad Roset_0.8190752_0169.jpg b/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Conrad Roset_0.8190752_0169.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fe5a3a51f3f5113d24235b0bf8889cdfc074e794 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Conrad Roset_0.8190752_0169.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f84761414b4f9ec86b877b4627c759c4ceec7fc487bc9e20f06c3b98f9727376 +size 11990 diff --git a/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Cory Loftis_0.6168619_1718.jpg b/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Cory Loftis_0.6168619_1718.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ae1cbe6761c94f6ebfdf69f935f8a90e1495a349 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Cory Loftis_0.6168619_1718.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:66e517d9159dd8059d005e23118dae0feab3300861fdf5b20e6e72fcf15d3d06 +size 10972 diff --git a/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Cyril Rolando_0.68644965_0948.jpg b/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Cyril Rolando_0.68644965_0948.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4a6eba65c196714334ad94fa0a3854f3c130979b --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Cyril Rolando_0.68644965_0948.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a8b218f4ba35b040a8bbefc7126aa2453d268919a601336f9c1f8a2b5471d9c +size 15060 diff --git a/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Dan Mumford_0.5843051_2043.jpg b/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Dan Mumford_0.5843051_2043.jpg new file mode 100644 index 0000000000000000000000000000000000000000..04bd04564c903d9b766128df169d5a1b66970843 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Dan Mumford_0.5843051_2043.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dfb2c8115b5c4029f44e56fc946c7a4ce6618c9d7e34f5a24043128a8e7933ee +size 19188 diff --git a/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Dave McKean_0.6438012_1450.jpg b/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Dave McKean_0.6438012_1450.jpg new file mode 100644 index 0000000000000000000000000000000000000000..38dee1b71029c1b98dd5bfb85358414763db9ecd --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Dave McKean_0.6438012_1450.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d7ab39762261d25dc3bb339202158ccced03b7258e29ee03be4711ae5cfe5c7 +size 15779 diff --git a/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Debbie Criswell_0.7895031_0234.jpg b/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Debbie Criswell_0.7895031_0234.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f5779301e9785af9fcf0b9b3d7a3b83c45059351 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Debbie Criswell_0.7895031_0234.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5e2399582c0f5f202cb2bc7328fe587a953132ee8382dbd6ec36685063c10e3 +size 15220 diff --git a/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Dmitry Kustanovich_0.7241322_0564.jpg b/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Dmitry Kustanovich_0.7241322_0564.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e4049f05dbabb178d4865f480523aabc85f41232 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Dmitry Kustanovich_0.7241322_0564.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc60623898af87ebd7bff3e1b3c9ac68891ab3354709e4d25c9a65c2c6a742d1 +size 22849 diff --git a/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Don Bluth_0.6693046_1153.jpg b/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Don Bluth_0.6693046_1153.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1536547dfb17e44fecd9d96af84800e26e0fa3dc --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Don Bluth_0.6693046_1153.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5344f32b234d1f5e462638b263c03cc8247e3193003b7ba916b1703d7835b707 +size 16901 diff --git a/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Dustin Nguyen_0.64909416_1396.jpg b/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Dustin Nguyen_0.64909416_1396.jpg new file mode 100644 index 0000000000000000000000000000000000000000..028576642cf0624139f765d8f59001de8066fe75 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Dustin Nguyen_0.64909416_1396.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9cb654fcdbe569d9909cd3cfc4477e054de80eec6706329e96ac07620bef53d9 +size 19818 diff --git a/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_E. H. Shepard_0.7091189_0708.jpg b/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_E. H. Shepard_0.7091189_0708.jpg new file mode 100644 index 0000000000000000000000000000000000000000..dda08fd2d4ecfc8f5e0fe8e9e9521e35ba1962a4 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_E. H. Shepard_0.7091189_0708.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ea692a4012c0b0318d87eefa3c2593e566e1ab565d2c1e23ce9a65e1955e190e +size 10537 diff --git a/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Ed Mell_0.6637067_0549.jpg b/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Ed Mell_0.6637067_0549.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fcf04a691cd59aea0d1923656e39d80d3c22384e --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Ed Mell_0.6637067_0549.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b717ab9ecaf474b0a9c4f7976013d27a39ee25375eec0c6ba9816d5bbc8fa1cd +size 13235 diff --git a/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Ernie Barnes_0.6307126_1578.jpg b/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Ernie Barnes_0.6307126_1578.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ca85d51223040c953f861ca4c4aa7e1e2fba4dc2 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Ernie Barnes_0.6307126_1578.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1fdd4fd09325708d8910f635972e4cb29320dfd987bb5da651cfcad334d6ac71 +size 13208 diff --git a/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Ethan Van Sciver_0.65442884_1334.jpg b/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Ethan Van Sciver_0.65442884_1334.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9968fef8fe2a5653207ac5c17c2ef2235ca70306 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Ethan Van Sciver_0.65442884_1334.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b218f891179a81f4466748661515fe115827a99ca281257a246ab030d8638b8e +size 26026 diff --git a/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Gabriel Ba_0.6773366_1047.jpg b/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Gabriel Ba_0.6773366_1047.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9dbaecef72a69b4779849f67f5d4afcb176649cf --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Gabriel Ba_0.6773366_1047.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:25b8e1cf290e298f6d7a614fb52852a715643b1e0dfca07beed82474c57374a5 +size 25504 diff --git a/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Glen Keane_0.60287905_1855.jpg b/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Glen Keane_0.60287905_1855.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ff99016f9899c8175745606e4c1b3a4070d438bf --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Glen Keane_0.60287905_1855.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16761189339e3c6cf6bf3cac02d4334315056e5f8551ab9e39e8a02d372769b1 +size 12736 diff --git a/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Goro Fujita_0.6346491_1542.jpg b/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Goro Fujita_0.6346491_1542.jpg new file mode 100644 index 0000000000000000000000000000000000000000..37ef6c7416e727619b3aa93656e6ab49e865f294 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Goro Fujita_0.6346491_1542.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce1f028697de0c4f964ce29c319b18c388f2dfd28d4ef74238e8f8b218ae028e +size 9018 diff --git a/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Guido Crepax_0.7835321_0250.jpg b/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Guido Crepax_0.7835321_0250.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d942b3fa313668af23df9fec9860035691f2e263 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Guido Crepax_0.7835321_0250.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:97ab170e2edf59ee387c6dda281c29b7cab6aa32fd28bf26158b8c3612dfabf0 +size 23303 diff --git a/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Gustaf Tenggren_0.7006041_0785.jpg b/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Gustaf Tenggren_0.7006041_0785.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b4f70473918bb42a16dc73220efc5a16891c64a4 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Gustaf Tenggren_0.7006041_0785.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8482aa0be49568c9f824e6ef23a80b2d7ca2acd59db1cc0f5241ccea40559cd3 +size 11381 diff --git a/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Hanna-Barbera_0.6588123_1276.jpg b/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Hanna-Barbera_0.6588123_1276.jpg new file mode 100644 index 0000000000000000000000000000000000000000..75414a20332a7efae470e54d751cedeba1927a19 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Hanna-Barbera_0.6588123_1276.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:27b150644a28940bc1d798b3d750afe4ff5922d03ef0627e43f09552bae02746 +size 15935 diff --git a/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Harry Clarke_0.7688428_0304.jpg b/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Harry Clarke_0.7688428_0304.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e5480b4c714ea67149589e8f2f66074d68092a37 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Harry Clarke_0.7688428_0304.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4cdf7e63466b7b0e23f323c7588ae5571dd3b99780364890f662c26f284d2bb4 +size 21725 diff --git a/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Harvey Kurtzman_0.64772683_1411.jpg b/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Harvey Kurtzman_0.64772683_1411.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8540c21a646eafda74456e3838c80a0e766c9809 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Harvey Kurtzman_0.64772683_1411.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b71ddeeb2ca15f36e300f207f6766db2bb70315e3ac3a267bbabcebf9fca3869 +size 27315 diff --git a/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Henri De Toulouse Lautrec_0.7294263_0512.jpg b/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Henri De Toulouse Lautrec_0.7294263_0512.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fcc81dcc89e7427e7cdc55ec30e1d598aebe4e6e --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Henri De Toulouse Lautrec_0.7294263_0512.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:267d4e269be3d548ce3c6716a4e9377d943f8f97005eec0c407223703be2e75d +size 12046 diff --git a/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Hiroshi Nagai_0.847129_0133.jpg b/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Hiroshi Nagai_0.847129_0133.jpg new file mode 100644 index 0000000000000000000000000000000000000000..074a75673af0b79a87a3db636e98eb09aeadb3b8 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Hiroshi Nagai_0.847129_0133.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c1a7db810d5ff9d2c54bb651f399c1a97077b18ce8da9b2c1749592211b3719 +size 15854 diff --git a/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Howard Chaykin_0.7213998_0586.jpg b/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Howard Chaykin_0.7213998_0586.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e8e714549c91bb7a177ded91c834d262b50ef62d --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Howard Chaykin_0.7213998_0586.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e8359b488fcb2acb54ac1f5a8d64610d8c9cd518f42c5984fa62fb79b61b2f2 +size 19750 diff --git a/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Jack Kirby_0.6467424_1425.jpg b/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Jack Kirby_0.6467424_1425.jpg new file mode 100644 index 0000000000000000000000000000000000000000..aaad7f0788e4a08fdea2d3fad07fd68f1e2900fc --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Jack Kirby_0.6467424_1425.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0922bb15b5088cd1d4d4922e8f409162c0c73ac3fff82ad4e2b50be6a086ee82 +size 24976 diff --git a/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_James Gilleard_0.6849431_0963.jpg b/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_James Gilleard_0.6849431_0963.jpg new file mode 100644 index 0000000000000000000000000000000000000000..eb010c6073ec3c2b4fe602d88a15cd3c47ce678c --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_James Gilleard_0.6849431_0963.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7926398678232a5f42c17ebd807f325e7a6cbf1bb1c73a6632d08397d972a9a0 +size 12466 diff --git a/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Jeffrey Catherine Jones_0.7012148_0774.jpg b/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Jeffrey Catherine Jones_0.7012148_0774.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8b9e99e3ba8c763b60b70c913037f35c1dadee75 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Jeffrey Catherine Jones_0.7012148_0774.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:96e5b2d26c851d9e0763d3e14e9aed3b88b24c00fad0284cfc269705c20b9586 +size 11678 diff --git a/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Jeremiah Ketner_0.8075384_0198.jpg b/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Jeremiah Ketner_0.8075384_0198.jpg new file mode 100644 index 0000000000000000000000000000000000000000..05d4bc9aa1db2f9439f3072418294b3f7df355cd --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Jeremiah Ketner_0.8075384_0198.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e729e36c71e6b01ee7326db56729427f5834c3be4d31a6940317d7a4aa54e759 +size 22164 diff --git a/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Jim Mahfood_0.6936606_0861.jpg b/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Jim Mahfood_0.6936606_0861.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d0be48631edb9e7dbb3774f135687250442560c0 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Jim Mahfood_0.6936606_0861.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e3b9c02d88db0f8ccee6cd04c98865de0865352474af3d69419f7d18ef3fc03 +size 26542 diff --git a/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_John Philip Falter_0.623418_1653.jpg b/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_John Philip Falter_0.623418_1653.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2cd527e004a31fbc042c6ba521553c0bd0c8d57b --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_John Philip Falter_0.623418_1653.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:94186eae0beee748a5e671cff9b448a81d902b0939183bea8b5dcc691469f006 +size 15203 diff --git a/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Josan Gonzalez_0.6193469_1370.jpg b/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Josan Gonzalez_0.6193469_1370.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2130034763c673b178d53dcf2a482516fd21db9b --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Josan Gonzalez_0.6193469_1370.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a70dbb400814160808f41b9f3b431ef867113455d19e005c97a298de7f59e63 +size 19268 diff --git a/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Karel Thole_0.7305395_0503.jpg b/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Karel Thole_0.7305395_0503.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7e6de2014d49601e6f32aba7d19888caa7b3d21f --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Karel Thole_0.7305395_0503.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c994c853584afe630d9da3aa8b6b3a87c248a7fe66d8c9bc578f8294f13362de +size 13492 diff --git a/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Kaws_0.6470336_1422.jpg b/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Kaws_0.6470336_1422.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a3689712a38799f31b0a2017e92d06b8b4c43aa6 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Kaws_0.6470336_1422.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e693b3921b2bb3f0d37c474320d68d3964df0d27312137f72ca623414a20ab27 +size 16114 diff --git a/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Kim Jung Gi_0.6472225_1419.jpg b/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Kim Jung Gi_0.6472225_1419.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c391772904c92e3c6c1dcf992737a1bd4386c69d --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Kim Jung Gi_0.6472225_1419.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf383df6490ab6793945454571cda0e64a2f4653a53d5b7bcf4783b5dd7bb675 +size 12715 diff --git a/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Klaus Janson_0.64129144_1469.jpg b/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Klaus Janson_0.64129144_1469.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bb8c06d53924a4e8d6ca4ebfe1cbd0e27e6ca896 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Klaus Janson_0.64129144_1469.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d56d4daf525164f5e0df372fa499503bc68c8e3f06842d8a3dba1ba8053d838 +size 23046 diff --git a/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Laurie Greasley_0.70072114_0782.jpg b/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Laurie Greasley_0.70072114_0782.jpg new file mode 100644 index 0000000000000000000000000000000000000000..23be7e1552464e4a9cbab83806cb578a59a78e53 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Laurie Greasley_0.70072114_0782.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7268c7d8fe0235dab035decebb990ab47a7cfffb7812ee20bba962010cf21379 +size 27053 diff --git a/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Lisa Frank_0.7892591_0237.jpg b/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Lisa Frank_0.7892591_0237.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7ce1eeeeb6067d0b116c3362451a7294d4dbb6d0 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Lisa Frank_0.7892591_0237.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:624121b71209fafe1c316d259798ada4628f24d2c3533f1750df23f3e4d23b1c +size 25613 diff --git a/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_M.W. Kaluta_0.71612585_0630.jpg b/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_M.W. Kaluta_0.71612585_0630.jpg new file mode 100644 index 0000000000000000000000000000000000000000..dd653e9e2cc9d214d671df4979fd299efdaf2961 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_M.W. Kaluta_0.71612585_0630.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f763cf876e4b578ae9adac937019797181a4f8c1cb9496d905dbdc5daef814d +size 15937 diff --git a/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Marc Davis_0.61837333_1704.jpg b/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Marc Davis_0.61837333_1704.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ee5c0c6d0e03530784db876b048cb5224036172a --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Marc Davis_0.61837333_1704.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9aa6351e792446ca19b60bd71d2ac0c01e84bece9ff38d6d264cf24aa1c755e3 +size 12529 diff --git a/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Matt Fraction_0.58463776_2039.jpg b/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Matt Fraction_0.58463776_2039.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b95cdd4033777cf373c6b7a21dfd8f3b69f5d886 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Matt Fraction_0.58463776_2039.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9539a63e26a9d44d68eb911ce8b2e78ebc6414faf4190df5c192f15eb7a47525 +size 22819 diff --git a/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Maurice Sendak_0.7690118_0303.jpg b/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Maurice Sendak_0.7690118_0303.jpg new file mode 100644 index 0000000000000000000000000000000000000000..831b7b810885efae99fa9c2cc408957dbfd41178 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Maurice Sendak_0.7690118_0303.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:25e1276709eb600f9c6eb3f06afd9c5d5277d21ffbe42edffadfd7bed653629f +size 14704 diff --git a/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Mike Deodato_0.6061201_1821.jpg b/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Mike Deodato_0.6061201_1821.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d2bad785ff6f1b13473aef3ff4d7bd0184f27a7f --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Mike Deodato_0.6061201_1821.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f4e55765c744a782abf4ccf4718c4a63441f6b0feb5559bbbe7c0a11122f297 +size 24782 diff --git a/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Mike Mayhew_0.5765857_2132.jpg b/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Mike Mayhew_0.5765857_2132.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6336353bbfe103a757b97390ee02d6a627e7f0ff --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Mike Mayhew_0.5765857_2132.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e2e9732b899963e3cd9721be55f69a356d5bc5c4764e995731f0880cac03eda +size 17438 diff --git a/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Mike Mignola_0.642346_1465.jpg b/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Mike Mignola_0.642346_1465.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b52cf00ece4d6e1171bd02bdcd256a7c22a6f55f --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Mike Mignola_0.642346_1465.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:211841db8bb5ea67043f23b495e7fb3672be21e70c5d859941c90f533777edcb +size 23039 diff --git a/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Milo Manara_0.6471776_1420.jpg b/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Milo Manara_0.6471776_1420.jpg new file mode 100644 index 0000000000000000000000000000000000000000..77ba9c29cc6e30dd0097be96c6c4c74a58fb2700 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Milo Manara_0.6471776_1420.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:945ec06ccacbe7bc66bf8e7be1642e4b1823512d847ecba5e5957dd750b039b9 +size 13913 diff --git a/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Milton Caniff_0.7905358_0232.jpg b/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Milton Caniff_0.7905358_0232.jpg new file mode 100644 index 0000000000000000000000000000000000000000..70f5069b569927eac105141e113fdc9217af12b1 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Milton Caniff_0.7905358_0232.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a80e38b5cd5c613e23302de4fe7fa8e2912248a0a58bb9f1d2638274be7e19d +size 21982 diff --git a/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_NHK Animation_0.6907677_0895.jpg b/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_NHK Animation_0.6907677_0895.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9b095b97c9f99d7fbb8cc38fb2527d483f14764d --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_NHK Animation_0.6907677_0895.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1568a1ef1a9267707cd02630c655f78703900ba186bfefb508ce3e8d528a63a7 +size 14320 diff --git a/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Osamu Tezuka_0.8005524_0211.jpg b/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Osamu Tezuka_0.8005524_0211.jpg new file mode 100644 index 0000000000000000000000000000000000000000..372fea564d900d50ddf635c58e89e82a63d23814 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Osamu Tezuka_0.8005524_0211.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d5b0a279d5a3faf3f123f16d8450fcb18e482ec41f5680e4ec5a0d58c24dfdda +size 16382 diff --git a/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Paul Lehr_0.70854837_0329.jpg b/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Paul Lehr_0.70854837_0329.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e84b26bf7f800a9aa6e093cec994740dfd937460 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Paul Lehr_0.70854837_0329.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:56f196990fca7a3414969439f2ffe424adb486f2262998cb76329c096842e7ba +size 12476 diff --git a/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Peter De Seve_0.6616659_1244.jpg b/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Peter De Seve_0.6616659_1244.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ab31c1350b01c9cfdf2b78dc559922f6532c6935 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Peter De Seve_0.6616659_1244.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ffaac7754a11a62637381f90188b81cee00b8a302c3d9d908a2d53d610875609 +size 11584 diff --git a/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Peter Wileman_0.71271706_0668.jpg b/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Peter Wileman_0.71271706_0668.jpg new file mode 100644 index 0000000000000000000000000000000000000000..276c70467e3b83a46d523b43be2795fa6a7ac520 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Peter Wileman_0.71271706_0668.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6d6ba7b411deae1ef17552083e77a22d120d1502540a7d74cb355b1fc9f973af +size 11414 diff --git a/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Phil Jimenez_0.60625625_1819.jpg b/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Phil Jimenez_0.60625625_1819.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c7b00bce6d4467bd7f7b10be510fbe4cb4f9bc7f --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Phil Jimenez_0.60625625_1819.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a7b65202afafd93a3739d341c848b4ed7ce17340067a52403bfc57cfaa05240 +size 21983 diff --git a/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Philippe Druillet_0.7363382_0464.jpg b/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Philippe Druillet_0.7363382_0464.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e7d00cc2c53f8cc1a4ca94d4d152ed44d3966f29 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Philippe Druillet_0.7363382_0464.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b519044eafc88fe1a027621d41050df633fbb224e8d9181622e84f5dd1bcc20 +size 26518 diff --git a/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Pixar Concept Artists_0.6667752_1180.jpg b/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Pixar Concept Artists_0.6667752_1180.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c7bc065fec92e8631fc0bb26219a9f5ceab80c6a --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Pixar Concept Artists_0.6667752_1180.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c6b95b50084153e19292dd37804bde977b35ea32c5d6a317407c92cf4ecb782 +size 11589 diff --git a/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Pixar_0.6495793_1391.jpg b/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Pixar_0.6495793_1391.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ca7ab8f8cd95c93402102d558df489cb226ac9d1 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Pixar_0.6495793_1391.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c2ade8f6903a0c510f04cf70b5cc1fcaaaeffe17b83ea8af2cd6b93b4a7494a5 +size 17318 diff --git a/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Rebecca Guay_0.72439146_0560.jpg b/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Rebecca Guay_0.72439146_0560.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a78b1d1393f73d436a46076cf6d5c3de72705cbc --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Rebecca Guay_0.72439146_0560.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ab2085c3d4c1b22515558d22ba3408d66fc690e7144075a07c9a89ad27dd811 +size 18711 diff --git a/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Roy Lichtenstein_0.98272276_0101.jpg b/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Roy Lichtenstein_0.98272276_0101.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1ada4cf95602b9c72fcc7e90321de564efb56d2b --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Roy Lichtenstein_0.98272276_0101.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a7714037e1d29a37aba45dc0f283ab72ddb21a3ec44b413421036337578d6457 +size 22399 diff --git a/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Siya Oum_0.6435919_1455.jpg b/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Siya Oum_0.6435919_1455.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ed6b8b129a06d7ccb0004966233069ee6d911d63 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Siya Oum_0.6435919_1455.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f71aa517fe8fdacc6bae8c6cd6f08c0e54072f92557e67021c1b2fbbcb5b83b9 +size 21711 diff --git a/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Skottie Young_0.5440119_2434.jpg b/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Skottie Young_0.5440119_2434.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fbfa902ab37764a2b1183c1d8d8cfb8ce6720ea2 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Skottie Young_0.5440119_2434.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da0b97dd42fbb8921a47bfe332acebdc9f31e5810ac099dd9f0134b42f0b3cf8 +size 29970 diff --git a/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Tatsuro Kiuchi_0.8597267_0122.jpg b/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Tatsuro Kiuchi_0.8597267_0122.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9f671fbedb0e4aae5ca5ba7879606d4120c8fda3 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Tatsuro Kiuchi_0.8597267_0122.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f08937304b3fbc28e4693daf08b1b85155c7b13394ed9375623d38233c79056 +size 10305 diff --git a/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Terada Katsuya_0.6944026_0853.jpg b/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Terada Katsuya_0.6944026_0853.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5be1a0b6352c2aaacd1ca18243366610e4371ecb --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Terada Katsuya_0.6944026_0853.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f50f6e59452b450c6e0d64e7444a6f0bd0ec3d76e37b4c1a50e6a0f78296519e +size 11308 diff --git a/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Tex Avery_0.6104007_1782.jpg b/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Tex Avery_0.6104007_1782.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bb45bc6f62bd019068e0486231add9f75eb66dde --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Tex Avery_0.6104007_1782.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee60cc6ed40bfe26490877bab6cd04371a8082f85f113965cfa65c2a75e5923d +size 10755 diff --git a/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Todd McFarlane_0.6647763_1215.jpg b/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Todd McFarlane_0.6647763_1215.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5c00ebef83fb45f507d1294a7882d554c295507c --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Todd McFarlane_0.6647763_1215.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:faa178ee6d322a34762228ae322ca13ec90aea26dce9d2a10c7b2349e08690d8 +size 20962 diff --git a/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Tomer Hanuka_0.6643152_1219.jpg b/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Tomer Hanuka_0.6643152_1219.jpg new file mode 100644 index 0000000000000000000000000000000000000000..476fe6dc3182a5714595e973b8ccd28a33a436fc --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Tomer Hanuka_0.6643152_1219.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:105eb7f684a22c5d86e2bdb0ae7abebae6c4f412ad68dea018a258bd8ac90d15 +size 14711 diff --git a/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Tony DiTerlizzi_0.6114657_1766.jpg b/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Tony DiTerlizzi_0.6114657_1766.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2ef0956c97afae21849c536cb5557926d2053513 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Tony DiTerlizzi_0.6114657_1766.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:455646af0fefa6d8a777c3553473ea3758136391eef2a351a3671f34051cf2d6 +size 16961 diff --git a/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Ub Iwerks_0.625396_1629.jpg b/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Ub Iwerks_0.625396_1629.jpg new file mode 100644 index 0000000000000000000000000000000000000000..490c4f9bce5020c22daf7ed010f26bd76a8d1d48 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Ub Iwerks_0.625396_1629.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:22560e3132161fe8f5098a9f182aee991bc538a87111bd0ab526c3b96e48a494 +size 10540 diff --git a/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Victo Ngai_0.81195843_0186.jpg b/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Victo Ngai_0.81195843_0186.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f2ba75bcc7befa397fb0100253427d05c816f45b --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Victo Ngai_0.81195843_0186.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ece4280732db22369c8ef8a53f8d13dcc79aa2362e6205ef0004bfeb88f6fb0 +size 12098 diff --git a/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_W. Heath Robinson_0.75374347_0363.jpg b/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_W. Heath Robinson_0.75374347_0363.jpg new file mode 100644 index 0000000000000000000000000000000000000000..cc831f421979d6f291863e3dca07a18343176249 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_W. Heath Robinson_0.75374347_0363.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5357c7c63446ed37f3d70135bcc6c6c619187a3168ab39d94e13cd65c9c738da +size 16459 diff --git a/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Will Eisner_0.63349223_1552.jpg b/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Will Eisner_0.63349223_1552.jpg new file mode 100644 index 0000000000000000000000000000000000000000..084a0037b47a7c942575628e2d9936a905d26ff0 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_Will Eisner_0.63349223_1552.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f3e5115ed8b3cf2cb911659f6f1ea3b7330508af376c7b0ae5c8962e3f73d7aa +size 22900 diff --git a/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_theCHAMBA_0.6742506_1087.jpg b/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_theCHAMBA_0.6742506_1087.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d3e1f5bbdf199ea2263df4cc8e4bf130ea893e15 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/cartoon/cartoon_theCHAMBA_0.6742506_1087.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad54d8842d7e924aa82fd4fb6aed0da46205aa1a99f9968ca483f9c977251f98 +size 18478 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_A.D.M. Cooper_0.53244877_2527.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_A.D.M. Cooper_0.53244877_2527.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1f64980c074463bab9571347093e3f5f64d07df2 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_A.D.M. Cooper_0.53244877_2527.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:23774910c5be3a5907e9f652cb23b0d1711fdabe8f91df79ff0179c662f0418b +size 9331 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Abraham Mintchine_0.46088243_2963.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Abraham Mintchine_0.46088243_2963.jpg new file mode 100644 index 0000000000000000000000000000000000000000..aa273b3f6e4c183488b9e766dda12a7c2d75a9d0 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Abraham Mintchine_0.46088243_2963.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:717efdb6f732f9887d6fa6f53fdbd1458dc2b753507bd19a6403773ecab1d414 +size 10695 diff --git "a/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Adolf Ulric Wertm\303\274ller_0.5278296_2559.jpg" "b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Adolf Ulric Wertm\303\274ller_0.5278296_2559.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..47c001b39a4a3adc95081f4c9db00ab4d2943a95 --- /dev/null +++ "b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Adolf Ulric Wertm\303\274ller_0.5278296_2559.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f5a128031cc402fcf5287995eca872663cce112b1eb5d24f6bd7b69fe8ff445 +size 11771 diff --git "a/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Adolf W\303\266lfli_0.5372333_2289.jpg" "b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Adolf W\303\266lfli_0.5372333_2289.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..fd8aa6eca48aaf8b1fa08fb2ebf91308f2efe906 --- /dev/null +++ "b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Adolf W\303\266lfli_0.5372333_2289.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:49816ec28d71ca0f3ab689b3dd935224b27263c532caa1dddd7ebe886a3848af +size 8813 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Adrian Ghenie_0.6193521_1694.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Adrian Ghenie_0.6193521_1694.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5422ada219283ebf4da0a1fa0fe7cd245c6314ff --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Adrian Ghenie_0.6193521_1694.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d2e4e08d1afba4e0baa6481703c6682b61cefa356bdb0e1dca1031fceb6b423 +size 15201 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Adrian Smith_0.4716923_2901.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Adrian Smith_0.4716923_2901.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a5f80954216343c3addcd54ce2e2597938bbca32 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Adrian Smith_0.4716923_2901.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7688a6d4319e06d5ac214d3f7ab4960ddc80125f420624d93486d655d051d62d +size 14987 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Agnes Cecile_0.6192814_1695.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Agnes Cecile_0.6192814_1695.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1c4512354b3f70622fa0b2bdda74d549f09bdf30 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Agnes Cecile_0.6192814_1695.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf138f8df6e82a3dafef460150b1dfc24563961c8a785c1c01913c813bccf9b6 +size 14630 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Ahmed Yacoubi_0.544767_2426.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Ahmed Yacoubi_0.544767_2426.jpg new file mode 100644 index 0000000000000000000000000000000000000000..52a4939de6f51e6d0b00ee6e3592cad179b652cb --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Ahmed Yacoubi_0.544767_2426.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae59ca62274e1aa7d9e350a1c25e3747bc77c6f8b5fce5bd34951cfb5e287728 +size 11207 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Ai Weiwei_0.5576034_2306.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Ai Weiwei_0.5576034_2306.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7db71d4eef7e5cb4b148b2c74f232e3e727a5dd2 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Ai Weiwei_0.5576034_2306.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:79abcef34c6b2a3ca66a2efbaa95aa78e41684724a8be093cbcb9091e63dadff +size 16504 diff --git "a/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Aim\303\251 Barraud_0.55265915_2351.jpg" "b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Aim\303\251 Barraud_0.55265915_2351.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..e2bef12134c9ee3933b2b464e5b09d2f6f66b149 --- /dev/null +++ "b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Aim\303\251 Barraud_0.55265915_2351.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:10100ecdc42884b8369a703ca565f454516c40c56b109f0c8e12aa341990a44e +size 9123 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Akos Major_0.7103802_0694.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Akos Major_0.7103802_0694.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3a2dc7d2c22a0e5cb2b22c81034429eda1cf4396 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Akos Major_0.7103802_0694.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fab35bb487a288d883763b109d15efe3deb82bdb99c5587d87ba7e22a4177c5a +size 9981 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Alan Parry_0.5694952_2203.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Alan Parry_0.5694952_2203.jpg new file mode 100644 index 0000000000000000000000000000000000000000..461f2bda79de93d7c3d544ccbe576c0170df31d3 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Alan Parry_0.5694952_2203.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf96c6be7f2a97e0eacdd7430a9ab6f7e6071f4df3bccc114c2ab1b34a75abba +size 10068 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Alasdair McLellan_0.6898454_0904.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Alasdair McLellan_0.6898454_0904.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1130752b32f9e85e1b231d512288e31def45a8d8 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Alasdair McLellan_0.6898454_0904.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:210cdb7771f0e94f0bb1fa96d6c6962d296dfe0471c384152e9e4ddc33462a40 +size 14967 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Albert Welti_0.5425134_2450.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Albert Welti_0.5425134_2450.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a180e32ccb2613dcb9afb9220ee712810cb60bd0 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Albert Welti_0.5425134_2450.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6be70a8f9f42f26063ed00da43c4b242c05ea3d12a4889ba358ab60290042bf9 +size 7958 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Alec Soth_0.5597321_0981.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Alec Soth_0.5597321_0981.jpg new file mode 100644 index 0000000000000000000000000000000000000000..44caef32022d0816a53178e6740908591d1ee657 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Alec Soth_0.5597321_0981.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e7099ff2912124f4b2502a1a90042d1e95fdd2220afeda699267ba02c5040988 +size 13683 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Alejandro Jodorowsky_0.5429065_2442.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Alejandro Jodorowsky_0.5429065_2442.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0b8dabd728725332c484ccec4a1f6f7b18357bc8 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Alejandro Jodorowsky_0.5429065_2442.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a34c28f4474f3eb8d4174efec2b1de2b373fec512dc0d5cfca7feed28a0a4af +size 15993 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Alessio Albi_0.6752633_1072.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Alessio Albi_0.6752633_1072.jpg new file mode 100644 index 0000000000000000000000000000000000000000..afbada831718a064c915d1d8245f9f45489a0daf --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Alessio Albi_0.6752633_1072.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c954838fe1894ef2f3744fe1cd4486579adb7cbbf43586a1d47c2aa0baa7ebf +size 11780 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Alex Andreev_0.6442978_0516.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Alex Andreev_0.6442978_0516.jpg new file mode 100644 index 0000000000000000000000000000000000000000..350eeb7c9dc9aecf35b56a3c027fcf0f0d20c633 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Alex Andreev_0.6442978_0516.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a647bdbf303c33594924f077532a16fe5e200a3ae9f889e99a1546b6e4cbd2c +size 9621 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Alex Gross_0.60837066_1800.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Alex Gross_0.60837066_1800.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8c35de9d32af3119951046da3c101ecdcba68720 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Alex Gross_0.60837066_1800.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f0b007d086afcb816c3730ff59324d06f75e84dec2db627f690a673b0d1a769 +size 15171 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Alex Howitt_0.52858865_1155.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Alex Howitt_0.52858865_1155.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bbd513dc9588f27864358ae3fe5445cdb8c1fdcd --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Alex Howitt_0.52858865_1155.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d03473e2a12404830c3009fb5358468c9014d8b73e9ab9fdae49ada83b5bf0e8 +size 8578 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Alex Russell Flint_0.5900352_1983.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Alex Russell Flint_0.5900352_1983.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3d52ac1fb9f7999fae32b51845daffd7f6a3611b --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Alex Russell Flint_0.5900352_1983.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16df2f1c283ac611b67b808fdcbf760706be7e8a8f250b344429474c35050ec6 +size 9300 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Alex Timmermans_0.64443207_0322.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Alex Timmermans_0.64443207_0322.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1d59a538996f7d835c083ed6665e8973878376a6 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Alex Timmermans_0.64443207_0322.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afc9a6cb3482de4950dec86e2f11f5589e9ecfe4cb92aaf4cec9791985f1b1dc +size 14207 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Alex Toth_0.6305541_1580.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Alex Toth_0.6305541_1580.jpg new file mode 100644 index 0000000000000000000000000000000000000000..93d3832ce1ee2fe353d9c31035b9e253e095dc31 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Alex Toth_0.6305541_1580.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af6e7b8f3b27a645a5f6f91d2295d6f84dacdd0eaca997216993e44884bdbdcd +size 21215 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Alexander Runciman_0.5944449_1932.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Alexander Runciman_0.5944449_1932.jpg new file mode 100644 index 0000000000000000000000000000000000000000..dba883a9d92f33272675ad702cebb6d4ae6d5b88 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Alexander Runciman_0.5944449_1932.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d43f12ab3aea60cd004ad6e2211ab3c4e33517d491fcf65280f97e4585ea656 +size 9889 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Alfred East_0.5296565_2546.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Alfred East_0.5296565_2546.jpg new file mode 100644 index 0000000000000000000000000000000000000000..74bbc4ca8100fc67fe16df0243c156401973362f --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Alfred East_0.5296565_2546.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eba9917f21d934be231824e4f2563619120afa5d996ef1db9bb09244a8c2009 +size 9913 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Alfred Janes_0.5264481_2570.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Alfred Janes_0.5264481_2570.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6cedd6818dc51878eb5aa783fd3d08f0a7f84acb --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Alfred Janes_0.5264481_2570.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ae5cd7328bf76dc34ec8e1e18743e3976e02a9ea629ca4dcab5ba2b237bb4c5 +size 11326 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Alfredo Jaar_0.6952965_0840.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Alfredo Jaar_0.6952965_0840.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5f11efe69d7bf2f24cf343d66de0dc0cea781114 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Alfredo Jaar_0.6952965_0840.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:73273e1d59ffd9181900c4aef2c283476867193ea3c5a0d7546648d2b41dee23 +size 19130 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Alice Prin_0.54435575_2428.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Alice Prin_0.54435575_2428.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1002ed184c33cb368ba6f931a8e1ddd0507962a7 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Alice Prin_0.54435575_2428.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d7eef15d0b08f5274c22c42610fd003932105cbe47e24552ddd954e0f0a67dd +size 11289 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Alison Kinnaird_0.6306353_1579.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Alison Kinnaird_0.6306353_1579.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bd632463c76575953dd251f124368658c0e3ced5 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Alison Kinnaird_0.6306353_1579.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e30748318051c6b1b9b5ba7fa4c472956e1211a8aef287ec068c74463a9d0def +size 12045 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Aliza Razell_0.5863178_1436.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Aliza Razell_0.5863178_1436.jpg new file mode 100644 index 0000000000000000000000000000000000000000..16f083b4054bed00462bf35ff674789ba8f6a524 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Aliza Razell_0.5863178_1436.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1317dcb30ac69143df88db07011a6d05866057f90a4912e080faac240336aabc +size 15501 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Allie Brosh_0.6042061_1839.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Allie Brosh_0.6042061_1839.jpg new file mode 100644 index 0000000000000000000000000000000000000000..daabc89423a764b87a77dbb1cce839576728265e --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Allie Brosh_0.6042061_1839.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fbec807d152470a50a1e459ac7426cb6914c5d1ea4fa51c9b81234d7d434e6ef +size 18475 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Allison Bechdel_0.58383805_2052.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Allison Bechdel_0.58383805_2052.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b9e1abc8aa06fa921410de481bff6c9597adbd75 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Allison Bechdel_0.58383805_2052.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:42e37f0bcc6a9165cd8e0ceab5173008b85f88e94b1a9bbc67afca8a781bdfce +size 15805 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Alson S. Clark_0.5278568_2558.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Alson S. Clark_0.5278568_2558.jpg new file mode 100644 index 0000000000000000000000000000000000000000..17885ede8551e08a967742ca0fb5205a398442f3 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Alson S. Clark_0.5278568_2558.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab7cdedcc7747390db9f80e5444cbdd579eb954a2c88d324d86d31ab78183368 +size 9961 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Alvar Aalto_0.61122143_1769.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Alvar Aalto_0.61122143_1769.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5b3299913c62abe5919e434a5053dec2acb67791 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Alvar Aalto_0.61122143_1769.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dae9c91551da95a329c744b0b093b941dcd8d7b39900178eb63ddb26bf0c027d +size 11874 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Alvaro Siza_0.58406967_2045.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Alvaro Siza_0.58406967_2045.jpg new file mode 100644 index 0000000000000000000000000000000000000000..774787f28e91d433796e6ee986d84b67eb843606 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Alvaro Siza_0.58406967_2045.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8f2c6af4325a772e3d84db73a96bb178fe799251abb50512cbaba6b0d4978385 +size 9397 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Amalia Lindegren_0.5471987_2408.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Amalia Lindegren_0.5471987_2408.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f75fa0d574d7f8f507e77fc0804524692ba5cdb5 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Amalia Lindegren_0.5471987_2408.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d104db65d908a3d5ace3715b328e8eae32e7e45e8478a61816e41b97cb45fafd +size 9180 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Amandine Van Ray_0.6174208_1556.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Amandine Van Ray_0.6174208_1556.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4afd2d30e414c1f9fd50c3de384ddd790a0480cb --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Amandine Van Ray_0.6174208_1556.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eaf67e275e4ac8c4ed85056f73ca3b4ebc3fcbe2b840d149f4a2945c429ffa52 +size 10468 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Ambrosius Bosschaert_0.67364097_1095.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Ambrosius Bosschaert_0.67364097_1095.jpg new file mode 100644 index 0000000000000000000000000000000000000000..703f636fa037fcfc2bde5d9ed8e997a2858bf03d --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Ambrosius Bosschaert_0.67364097_1095.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1972af371a47573d74e1f08ac5f68c668bb9af0a5087280445071a2dfa8101e5 +size 14110 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Amy Judd_0.57142305_2189.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Amy Judd_0.57142305_2189.jpg new file mode 100644 index 0000000000000000000000000000000000000000..aa1623647d4c22b52e103e66e3bbcf6c80daf497 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Amy Judd_0.57142305_2189.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf7accc148f6204389a0384599b2bc2411288300e97abdf6184b599736b1a1e5 +size 8779 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Anato Finnstark_0.6744919_1082.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Anato Finnstark_0.6744919_1082.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c6d7d9716ace808187cf6f87f3e0940f72e29d4c --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Anato Finnstark_0.6744919_1082.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e094e66daafedce06d5689a73ba061074de2233d7e31ff3c9728f4279922bb39 +size 12789 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Andre De Dienes_0.5683014_0390.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Andre De Dienes_0.5683014_0390.jpg new file mode 100644 index 0000000000000000000000000000000000000000..72e4ce6f49efae6432dfa852eb5b5b95a6dcd8b3 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Andre De Dienes_0.5683014_0390.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6974f8a68974d356b4a699531858b8d038eb994532cc6d53f01354aa86a3a76b +size 14323 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Andreas Gursky_0.67610145_1063.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Andreas Gursky_0.67610145_1063.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c7cf14f75690e59d0e57a56d1da5b4dbebc822f6 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Andreas Gursky_0.67610145_1063.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:56d4b369b20d15bd9cf9096a328edebd237dfaeaacc095c9a8d3dcea57f50963 +size 25013 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Andrew Robertson_0.5529603_2348.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Andrew Robertson_0.5529603_2348.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a18dd69c62aa2150ab3639c47edb69a99b553119 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Andrew Robertson_0.5529603_2348.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:97fa897a987d6560b68221294fb4e13f755c0912640635f095504f68b926d06a +size 11293 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Andrey Remnev_0.7041204_0754.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Andrey Remnev_0.7041204_0754.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ec844c64cd0ee2eb5e8b1cd9160d66c986fe4cf2 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Andrey Remnev_0.7041204_0754.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c0483feabfbed0bab1d20d7b8b3ce3887bf9d77d33c8abd014858f8590777338 +size 10314 diff --git "a/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Andre\314\201i Arinouchkine_0.52763486_2562.jpg" "b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Andre\314\201i Arinouchkine_0.52763486_2562.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..69fd4484820cd6958b3790f4aa7892a9ec8d5136 --- /dev/null +++ "b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Andre\314\201i Arinouchkine_0.52763486_2562.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60b7c290a8f78a32fe28618e9a214d051ce28373b99efd81eeed245ff75c6bea +size 9539 diff --git "a/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Andr\303\251 Thomkins_0.5343785_1921.jpg" "b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Andr\303\251 Thomkins_0.5343785_1921.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..397d3495a95016a4ca6d967c7872df5455e40c95 --- /dev/null +++ "b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Andr\303\251 Thomkins_0.5343785_1921.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e4778b24d69e07609d1e4e972be9aa509641d344bbeacbd1a8ecfd663ddb9082 +size 9321 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Andy Goldsworthy_0.7307565_0500.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Andy Goldsworthy_0.7307565_0500.jpg new file mode 100644 index 0000000000000000000000000000000000000000..76764bb2d3e1fdb5a592855c8b5fb6e0c198b791 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Andy Goldsworthy_0.7307565_0500.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a4beb5b1fe01a2f60e7590ede91d6f83459787e435c6531f58ffccb3af39866 +size 17529 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Angela Barrett_0.55976534_2141.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Angela Barrett_0.55976534_2141.jpg new file mode 100644 index 0000000000000000000000000000000000000000..be6483b1ebedadf784b073c556f6d0bceafcdd91 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Angela Barrett_0.55976534_2141.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:78e87cc7315682819ec14224d43ad2785b2ffcfa3d03150ccb11194cbf2e4be3 +size 12179 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Angus McKie_0.61487424_1734.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Angus McKie_0.61487424_1734.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b8b6ef40c4ecca71bb62ac6e231265a70662ae7f --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Angus McKie_0.61487424_1734.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c4416979105f6ce09cd70de1d2e2d41fd01c9dc1557ef83bed2a4d68ce15471 +size 19044 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Anish Kapoor_0.6067015_1813.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Anish Kapoor_0.6067015_1813.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ffb93101922b343b176d1748063ec9cbb5dccada --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Anish Kapoor_0.6067015_1813.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:65dac04ab6df5bdd02cd7923637cee8ca7f8cfd16f351a30a29d665150065b8d +size 15537 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Anja Millen_0.6064488_0943.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Anja Millen_0.6064488_0943.jpg new file mode 100644 index 0000000000000000000000000000000000000000..db16d83c54b834abf057d67a48fb79597895abba --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Anja Millen_0.6064488_0943.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:98f8b6b899644c68f227ad67edca19f4c1e6281bd3951665b29378d24db2ccce +size 10266 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Anka Zhuravleva_0.5822078_2069.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Anka Zhuravleva_0.5822078_2069.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8062aa5e51d9dc836ffbd05b78fb0475945a0ded --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Anka Zhuravleva_0.5822078_2069.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f8f6b6a7f2efafdf2440e6f40b093cb713959317a0527ab0c9d93e5c8a435691 +size 10406 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Ann Stookey_0.54269934_2448.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Ann Stookey_0.54269934_2448.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3ed2729ea87f921195c9bbbea80392a5cb1a24cd --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Ann Stookey_0.54269934_2448.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4bd331cc1e18dded3dcc87f6553a2a1d24452f54200071d733a24885aade33b3 +size 10170 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Ann Thetis Blacker_0.5416629_2459.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Ann Thetis Blacker_0.5416629_2459.jpg new file mode 100644 index 0000000000000000000000000000000000000000..32d32e1de7b3bb653ce6c460d4719e775bf5ebd2 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Ann Thetis Blacker_0.5416629_2459.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16f5cbd1ee6d20e8c53eafd040852e16783fb5a3f1789ae0da9120825c22c838 +size 9728 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Anna Findlay_0.54018176_2471.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Anna Findlay_0.54018176_2471.jpg new file mode 100644 index 0000000000000000000000000000000000000000..61c3f9015e5633cbbba90233e4bab9585393ba38 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Anna Findlay_0.54018176_2471.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f808a06c1d8170adffa4af6631b6b92d146af36fa45f4e5e6a54f46fceee6db6 +size 10238 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Anne Savage_0.5310638_2535.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Anne Savage_0.5310638_2535.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e0469e9f4e6ae218ae8db96998478b8347f345d1 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Anne Savage_0.5310638_2535.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f0fb8a2638d082d27c82c0ede8b8ba27667b85e6591c57d3e975401f5aa8beed +size 10699 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Anni Albers_0.65708244_0992.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Anni Albers_0.65708244_0992.jpg new file mode 100644 index 0000000000000000000000000000000000000000..12bc2caf9a39e8bccd5d2804e204261238c35d3c --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Anni Albers_0.65708244_0992.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:88bf47ae6dbd964b6c9de7a3a5150227ec91402357a165b0c94ad3180d427532 +size 17325 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Anthony Gerace_0.636678_0561.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Anthony Gerace_0.636678_0561.jpg new file mode 100644 index 0000000000000000000000000000000000000000..337451108325e286e9c0b2ccbbed99c88e8e0b64 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Anthony Gerace_0.636678_0561.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:429aff97c8732088442e71453a95d5def55c0865eb5c03f49044ffe7bb3f99f4 +size 9619 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Anton Corbijn_0.5550669_0345.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Anton Corbijn_0.5550669_0345.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b62a18cf5695e582a4a7fe33f23f545972b1ca04 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Anton Corbijn_0.5550669_0345.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:09e6faf2beb431f3ea3a5159eaec2fb2751c44f9dd74b4e25b90fa3bbfb55e10 +size 11378 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Anton Semenov_0.6552501_1321.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Anton Semenov_0.6552501_1321.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8f35ad755b24755c218041147ed3956479061f43 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Anton Semenov_0.6552501_1321.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6df3991a072023f0e04b3cf16040b34d84fa8f89de55f2e8f51ca3aafcc04c20 +size 9923 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Antonio Galli Bibiena_0.6399247_1483.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Antonio Galli Bibiena_0.6399247_1483.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d24f3be1cb6b0ddbacf1985e1c389bf93f8a7556 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Antonio Galli Bibiena_0.6399247_1483.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b178c6634bb4958eabeb3b69102598da35a5c725543a8c43f071dc175fe9929 +size 14921 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Antonio Mora_0.5334297_1918.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Antonio Mora_0.5334297_1918.jpg new file mode 100644 index 0000000000000000000000000000000000000000..04120ef558f22bc5d0b8c5040da1eacd9c164cd0 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Antonio Mora_0.5334297_1918.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9585fb8278384a5dcc0960e508d13a9bc5ef3ad6df467423d050ed99590c9bed +size 13127 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Antony Gormley_0.54696125_2412.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Antony Gormley_0.54696125_2412.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ba5d63901cbaf4aac3834172eeaee3ae77aadb3a --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Antony Gormley_0.54696125_2412.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f54a246a0b7dae72cfe8d947a8ef3bd34f3fbd12792870491d3aa0e9af3b7a1 +size 9972 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Archibald Robertson_0.55129635_2362.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Archibald Robertson_0.55129635_2362.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7cfeb0234ee027ef720e76cb906483a97a2db169 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Archibald Robertson_0.55129635_2362.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0533a64d098e7f62974291d5a1ad70fb815d0c8e3a91d09666b91523f2e3e9a6 +size 9995 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Archibald Standish Hartrick_0.54850936_2392.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Archibald Standish Hartrick_0.54850936_2392.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5dd4f1c807fe2a394d5b5f92d8c906fe97de8030 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Archibald Standish Hartrick_0.54850936_2392.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:43d6a9c17622e6f2d3f632cc281480742b88cd4961f2ced2f2bb0fedad0a7baf +size 10231 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Arkhyp Kuindzhi_0.6928072_0871.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Arkhyp Kuindzhi_0.6928072_0871.jpg new file mode 100644 index 0000000000000000000000000000000000000000..59700ea7be6334fd97e13d5cd96dc0469094db0e --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Arkhyp Kuindzhi_0.6928072_0871.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:37d8f391f6c2103457b57cc057d84d3b8acbce85ca1f9558ad7e645b768cac46 +size 8188 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Arnold Newman_0.5736342_0663.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Arnold Newman_0.5736342_0663.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0becfded29c4891c16b5d07268beb8561f239291 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Arnold Newman_0.5736342_0663.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc9e0c102381363c72e6a51dfbd739db5f29f28b291b0b009fbb3bd64ea5f9f2 +size 10200 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Art Green_0.5714495_2188.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Art Green_0.5714495_2188.jpg new file mode 100644 index 0000000000000000000000000000000000000000..61f3518ee9fb0cb181991716cda9505e1e749eb8 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Art Green_0.5714495_2188.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2cbd194b1d2ed6348f6cb03c62a950971619d0b84b2a45ff7feeb12df91f5903 +size 10281 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Arthur Tress_0.6301861_0990.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Arthur Tress_0.6301861_0990.jpg new file mode 100644 index 0000000000000000000000000000000000000000..68a0848149c30086e93f97d5ba0ba4c817c741b5 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Arthur Tress_0.6301861_0990.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:294906284a19d4312847f945d23901f354a1b0dce5a935a26a8166a664f00c5d +size 17777 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Augustus Jansson_0.6845705_0965.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Augustus Jansson_0.6845705_0965.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0e3589af4e2627df96030414902dbfedcb34285e --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Augustus Jansson_0.6845705_0965.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3bfd322831d232bb8080cf770691284552715cdf371199c3a68663cf56d7a33e +size 11500 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Barbara Nessim_0.60589516_1601.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Barbara Nessim_0.60589516_1601.jpg new file mode 100644 index 0000000000000000000000000000000000000000..340032411dcc7c82ea8f5fc8caddc5a75be39ef3 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Barbara Nessim_0.60589516_1601.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f667b55fd2033c2ba5c709fe1ef91e741e23d253ffa05b411a1319c282e1465 +size 10001 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Barclay Shaw_0.53689134_2274.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Barclay Shaw_0.53689134_2274.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c73938e1749b335954984a1b75dd767cba255dad --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Barclay Shaw_0.53689134_2274.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b9979f8276780143ab93ce7f0ce577c99c78ab2072856195cc2f5aa30a37677e +size 15538 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Beatrice Huntington_0.5328165_2524.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Beatrice Huntington_0.5328165_2524.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3ecbd532921d2de0d825922a6818b50d9be9e129 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Beatrice Huntington_0.5328165_2524.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:81427cee2d174c898b517fbb882bd2f65e0f32a7ec945aa71c08c1d4c29f71ca +size 8639 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Bella Kotak_0.6409608_1475.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Bella Kotak_0.6409608_1475.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6ba1271e4b7375dd61ffdc0f73c721be560ae82e --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Bella Kotak_0.6409608_1475.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e98be844a186d94ec02773cbaef97b79a070a335dd7067df4cd3c73975509df3 +size 16595 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Ben Goossens_0.53002644_2438.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Ben Goossens_0.53002644_2438.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e5f5da66268a4f1d14c1b54c02dd766c67f08d8d --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Ben Goossens_0.53002644_2438.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:073085f14287b0fb4ef103958b3d608288348713ef8dccde05b2c60c2c78011c +size 10711 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Ben Templesmith_0.5498991_1907.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Ben Templesmith_0.5498991_1907.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d937ae31f9dcbaf808ef4a787287c5adeca97f73 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Ben Templesmith_0.5498991_1907.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f74a796fca6c9b4a4bdc8853b5ff6ba57f208d161c21ea290ea9a8548dec998 +size 14386 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Benjamin Block_0.55251944_2354.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Benjamin Block_0.55251944_2354.jpg new file mode 100644 index 0000000000000000000000000000000000000000..afea7718cb7ac0bd72af67d5b9359d1766d62f0b --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Benjamin Block_0.55251944_2354.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd734231944da487a9742d753613f59a9a7827b92bf522174d38a709bfdcd06c +size 9124 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Bernard Fleetwood-Walker_0.57987773_2102.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Bernard Fleetwood-Walker_0.57987773_2102.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8e528a778f78d769ae6646648686066b4f147879 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Bernard Fleetwood-Walker_0.57987773_2102.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1335887242dc65efef99693d89106f63b9316180c539537c456d04693f77e608 +size 9858 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Bernard Meninsky_0.5302034_2421.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Bernard Meninsky_0.5302034_2421.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d4e30ac8f03afed27e5eb6891f676833b36be929 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Bernard Meninsky_0.5302034_2421.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b72ebf05db7c27bf168783f211b45b5b9ceb60fed64ee0d0188bfb4ebd6522c +size 8823 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Bernt Tunold_0.56383425_2256.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Bernt Tunold_0.56383425_2256.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b1435ae9fbcf518702354b0cd5af8b108bab401b --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Bernt Tunold_0.56383425_2256.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:948b843067534f6c504103cb7ef4b516ff74a3069c860517bcdd856613f42eb8 +size 9456 diff --git "a/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Bertalan Sz\303\251kely_0.5548113_2031.jpg" "b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Bertalan Sz\303\251kely_0.5548113_2031.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..66c95bcbf8784d07611a1ed744d8f73dbaf14722 --- /dev/null +++ "b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Bertalan Sz\303\251kely_0.5548113_2031.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f043dc9668f04cbfb7ca127ef5f61a764153de85549d720275b7ec370f3cd53 +size 9458 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Bessie Wheeler_0.5269164_2566.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Bessie Wheeler_0.5269164_2566.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ec1a8a3a0c914c63618a834531610bbdb7de7a2a --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Bessie Wheeler_0.5269164_2566.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b0bd46a4db203ce3ec93e12597530b130ee727a728fceb25a9ad66eccd81be8 +size 11757 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Beth Conklin_0.6388204_1491.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Beth Conklin_0.6388204_1491.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9ac05fe5bfb56cd4b430c618bbf4b3339de12a92 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Beth Conklin_0.6388204_1491.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3582c82310c11e9a608c2fbb5154113732c8138f5ccea6ec20b74d96281244ba +size 12144 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Betty Merken_0.56281745_2266.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Betty Merken_0.56281745_2266.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f0cca627b69177898e631c70d915b920e9c369a8 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Betty Merken_0.56281745_2266.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71175db5597645d6f2dda2b7686589d1a3e320e79a1b8ad3d35473a3dd08225b +size 10633 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Bill Henson_0.5394536_1498.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Bill Henson_0.5394536_1498.jpg new file mode 100644 index 0000000000000000000000000000000000000000..93a5d5ea54b495429c688f7a58cb6e9e58458b55 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Bill Henson_0.5394536_1498.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c3ed72ddc3c2d68ac6f7737ff26e1651585c7352bdb48557180e90a840621a3 +size 8362 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Bill Sienkiewicz_0.6125557_1639.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Bill Sienkiewicz_0.6125557_1639.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2c05db0c321e5a9352a47c5c7e941b42dd275ad7 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Bill Sienkiewicz_0.6125557_1639.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc9cf667a8503b25ba5727408c8126dfb5ddca1fcfadd89b978eb5ac831e5ff6 +size 21451 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Bill Viola_0.62409425_1643.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Bill Viola_0.62409425_1643.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bd008d0ee817ffe51bf7c8c92d5d2f5af15aaf16 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Bill Viola_0.62409425_1643.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f9fb3be3d1ef14e442e803611f576daa27495d1d5e5d24f65958a39122f2d16e +size 9054 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Bill Ward_0.61953044_1692.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Bill Ward_0.61953044_1692.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0b8601167607558692c0968382aa8010f696821f --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Bill Ward_0.61953044_1692.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0755be6b22785f9bd7ab00e0f7c4b8ac6bb378b3a891a2a23f6f5a7460c80fca +size 14647 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Bill Watterson_0.5542879_2339.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Bill Watterson_0.5542879_2339.jpg new file mode 100644 index 0000000000000000000000000000000000000000..03d70bdb4ba624a15e8eff5577cf1950c70cf360 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Bill Watterson_0.5542879_2339.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33fe1d18815e70672997e0a451a4690d24aa979c7138b539e6837dc488f89496 +size 20018 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Billie Waters_0.65684533_1305.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Billie Waters_0.65684533_1305.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7185c950ca7e577b81700b6aded84bed92c5d201 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Billie Waters_0.65684533_1305.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9bac9b1c964cd2d2a0d70b03544bb5951506a88935dc18b15fc5e2c2842283e5 +size 10199 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Bjarke Ingels_0.68933153_0911.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Bjarke Ingels_0.68933153_0911.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4227dd985a87adfe0f5f20c2d54741b80b556a8e --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Bjarke Ingels_0.68933153_0911.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd5da4baf4001b15639fc654ab43defa539524b16398f1ac73c50ad8fe473fb4 +size 12975 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Bob Eggleton_0.63277495_1557.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Bob Eggleton_0.63277495_1557.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f9364ba0158504ab391bb170b7315ceea6f77f25 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Bob Eggleton_0.63277495_1557.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a358eef64c32f50dcb1757dbf99a707ac8af9c8d2c5059bba881b46b9748c811 +size 13919 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Bob Ringwood_0.5935273_1946.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Bob Ringwood_0.5935273_1946.jpg new file mode 100644 index 0000000000000000000000000000000000000000..95b043c08615c2c0dc2b2b1ac7f09edcfafdebb9 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Bob Ringwood_0.5935273_1946.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5cb4df293f2d2816b44106e7ee5c5b6712ecf48c7e5c7b46a486e9ddb049a23 +size 11411 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Bordalo II_0.7467364_0406.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Bordalo II_0.7467364_0406.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5e172e3dd19cedc86690997b700f88038445e6d7 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Bordalo II_0.7467364_0406.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9dc7b73167711a0ec9e44e7f8c33d8813d50965f311d69481ddf9606e57b16d4 +size 19662 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Boris Groh_0.5888809_1995.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Boris Groh_0.5888809_1995.jpg new file mode 100644 index 0000000000000000000000000000000000000000..cac38b88ab7b70738534109df0cf455989411e90 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Boris Groh_0.5888809_1995.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c994b245da5361557d28da855a4baa8a3e6a06ac69014bdb0fa131a38e5a60d +size 12849 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Brandon Woelfel_0.6727086_0696.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Brandon Woelfel_0.6727086_0696.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2a694ce891d27dcf0cfe9ac9c7673726a4cb4a85 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Brandon Woelfel_0.6727086_0696.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60dc0552030b2bfb70a52eb028c15ce6465d34f89fc6c1b857867f602637150f +size 16376 diff --git "a/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Brassa\303\257_0.6361966_0431.jpg" "b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Brassa\303\257_0.6361966_0431.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..f5d4571ec63e36c9de184073dd86b6b2d8573578 --- /dev/null +++ "b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Brassa\303\257_0.6361966_0431.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b8b556aac932596bd559db7557dcc18be00d3dd14804d4d742e5fe449fa2657 +size 11406 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Brian Mashburn_0.63395154_0797.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Brian Mashburn_0.63395154_0797.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4d23295fab773ca369848808ed33b5f11f122175 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Brian Mashburn_0.63395154_0797.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:58233acc4980e42a8d78331b9483d0e918bad5298594131acfcfaf7ef4979085 +size 11055 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Brice Marden_0.70673287_0731.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Brice Marden_0.70673287_0731.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1d560beeb27149bb05d060305aa3af4114042ccb --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Brice Marden_0.70673287_0731.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a4477f7d604adac145c7b54f90a2efc8e0d1d074488b98977270036ca05f91a +size 10248 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Brigid Derham_0.6270125_1617.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Brigid Derham_0.6270125_1617.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9b2ab3e14c9ab03376850e0348acf28e8f436eae --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-high-impact/digipa-high-impact_Brigid Derham_0.6270125_1617.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7cdf6644ce6906873d998a7b87021df25abca7ac376da1c940b57cdb47b5e420 +size 8132 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Adam Bruce Thomson_0.43847767_3088.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Adam Bruce Thomson_0.43847767_3088.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f28c1ff40190da19549d15657c8c0ba066798c7b --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Adam Bruce Thomson_0.43847767_3088.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b1c7a0677a1c6dcee7112ef080be8fbb1b91e0f1bb1df11a02b071a5376eeb6 +size 13515 diff --git "a/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Adrienn Henczn\303\251 De\303\241k_0.445518_3050.jpg" "b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Adrienn Henczn\303\251 De\303\241k_0.445518_3050.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..6cd8e8786a580454a2031a4f6d1fd6ff9585f332 --- /dev/null +++ "b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Adrienn Henczn\303\251 De\303\241k_0.445518_3050.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:512fa90b240074b5ca1be6b2528b6de9c4e3874b2d852b2762dc504806d5acff +size 9902 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Ahmed Karahisari_0.4259451_2582.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Ahmed Karahisari_0.4259451_2582.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ae46d1e0f69006f71e9c247b5eb1a0e155583322 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Ahmed Karahisari_0.4259451_2582.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d881eaecf72d6183234e1ffa9ab9fd981bec48384e86e06c7282a46972c4b18 +size 10932 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Alan Moore_0.4573369_2991.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Alan Moore_0.4573369_2991.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c1804d57d7782a4bdba6c8199300a2f272e1e247 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Alan Moore_0.4573369_2991.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:367d58be7d5a7b43b3881f131ac7f3054e132236d2f822d2ea0ac6dffd569698 +size 19312 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Alberto Biasi_0.42917693_1193.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Alberto Biasi_0.42917693_1193.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d5fd87334d37802b9887ac0525e1579dd2824cbd --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Alberto Biasi_0.42917693_1193.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d512d455cb1753ee7befca3056bafdd8a1b8d875bb9fbe5cafbf96ad6d594f1d +size 14991 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Aleksander Gine_0.4326849_3124.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Aleksander Gine_0.4326849_3124.jpg new file mode 100644 index 0000000000000000000000000000000000000000..80d6d9374495a03b8c6319ab92b6f7bcbbe14333 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Aleksander Gine_0.4326849_3124.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f1c39b0e0e9f8adc5e2e4d7f533fda6f6ad13373fbf8a341769e280785ac01e +size 9886 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Aleksander Kobzdej_0.45552525_2999.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Aleksander Kobzdej_0.45552525_2999.jpg new file mode 100644 index 0000000000000000000000000000000000000000..41a4c7e682bdf75da27d29d2e1bab4ae47ff824b --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Aleksander Kobzdej_0.45552525_2999.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60d77dd0881dec4e7db2da24fbb4b6179746519972e5a162bd191fc3521a8f28 +size 8694 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Alex Alemany_0.43974748_2718.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Alex Alemany_0.43974748_2718.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a317a60c2d5dfe1611f55c3239f8da50dc886d2f --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Alex Alemany_0.43974748_2718.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:277d4187dc7d0e3791080c2992c11e41a16d9fed3965e67de99e6beb4bd171fe +size 14687 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Alex Horley-Orlandelli_0.42623433_2981.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Alex Horley-Orlandelli_0.42623433_2981.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3f3202a210a02e6f203c36271392d03b2dc6abde --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Alex Horley-Orlandelli_0.42623433_2981.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f3b61cfdb3ec8414e42bfb6305f89c8c4f144d20e8baf441990098e8e9cae9f6 +size 10833 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Alex Ross_0.42460668_2089.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Alex Ross_0.42460668_2089.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c5226976fdfa7dd20a4573b8419cd4a97b541014 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Alex Ross_0.42460668_2089.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e635ef261dce01841f3e33a11a35f89dda407ea78b6cbb52383c8a52817e279 +size 16795 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Alex Schomburg_0.46614102_2002.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Alex Schomburg_0.46614102_2002.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1824bd8165606552199d23d7f901e3727d8f8d74 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Alex Schomburg_0.46614102_2002.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9557f8134308b234c07bb13713e577b261513baf406467021322b266aad09a16 +size 20845 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Alexander Carse_0.46078917_2964.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Alexander Carse_0.46078917_2964.jpg new file mode 100644 index 0000000000000000000000000000000000000000..eda08699d663f5bc37ac209bc7f23f55b99645f5 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Alexander Carse_0.46078917_2964.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4eb3198d76947cb226cec44e4509d152d89efc2bc7b4fd5a79cc75d63f3a1961 +size 10237 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Alexander Ivanov_0.4539051_2668.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Alexander Ivanov_0.4539051_2668.jpg new file mode 100644 index 0000000000000000000000000000000000000000..07311b144b0405128c93730cbe8444b883f69397 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Alexander Ivanov_0.4539051_2668.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:08bc01407b40a2443018b7e81f88652c772aa737e53b67a9b76b4517733daf0d +size 8397 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Alexander Johnston_0.4326589_3125.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Alexander Johnston_0.4326589_3125.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a5654a81e3a9e3b0e1618dfbefcb5fa525e11538 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Alexander Johnston_0.4326589_3125.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c1c729a7a6cd44ab5b1996f400aa4541b4605484569a30291cefcec6952c270c +size 9946 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Alexander Robertson_0.4300743_3147.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Alexander Robertson_0.4300743_3147.jpg new file mode 100644 index 0000000000000000000000000000000000000000..21372522314af03ad27a9c1b826d90c2bb3dd603 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Alexander Robertson_0.4300743_3147.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc446de6cf81a87b7b583eab410855a7d61f428ed4f5cbbe5e33dc47314a7747 +size 9908 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Alexandre Jacovleff_0.3991747_1823.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Alexandre Jacovleff_0.3991747_1823.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e868c9a3bd4c929ae95adab2366690194edeebfa --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Alexandre Jacovleff_0.3991747_1823.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e3daec86d359e5e421a6b901f340c51ed7404b750fbde7c7c06f31eb0c104b5 +size 9386 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Alexey Merinov_0.4469615_2728.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Alexey Merinov_0.4469615_2728.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9b7edad65e71e97676988f9f4ba5900254045837 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Alexey Merinov_0.4469615_2728.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a194db81f9569c91b58717b093376383af6d888e6601683a56e1bcef3136113 +size 10625 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Alexis Grimou_0.41958088_2622.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Alexis Grimou_0.41958088_2622.jpg new file mode 100644 index 0000000000000000000000000000000000000000..db4be9576f3d13ab989af5ef394f99445c9048dd --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Alexis Grimou_0.41958088_2622.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f34276c54e88ba6bc3b3a0f9b0a85a3b7da7e3dcc8925c37401591b72cf8856b +size 11218 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Alexis Simon Belle_0.3190395_1698.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Alexis Simon Belle_0.3190395_1698.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b34b0c451cbc2341f67548d7df0caa5cbe1501bb --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Alexis Simon Belle_0.3190395_1698.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:00379aa38d8de4c7ec698aeb8d2ead6df4aaa2135c25e676bb7702de1efbafde +size 8482 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Alfred Krupa_0.47052455_2906.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Alfred Krupa_0.47052455_2906.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1d6ca6c0126220794d9493c19a6cdc51db181ae5 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Alfred Krupa_0.47052455_2906.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e342b54a6589288efad9d9303efb0fa7fe3aed2804f0d7bda3cb05b412d0455 +size 9968 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Alison Watt_0.43141022_2948.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Alison Watt_0.43141022_2948.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6b99ebf8881b0e098687b547dd8326789ae04220 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Alison Watt_0.43141022_2948.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:07272370b3d73352e5cfdb38abea31ade5f3713b5dcdfefb8a60207d8d2fd336 +size 10718 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Allan Brooks_0.46882123_2912.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Allan Brooks_0.46882123_2912.jpg new file mode 100644 index 0000000000000000000000000000000000000000..098c885cc41a8e2afe15775c674e03dde10ba75a --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Allan Brooks_0.46882123_2912.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5dea244bd7064bbd93dbbd3381ec2d6cc2d8048c76b6ed35c2ec48a610632aea +size 10004 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Allan Linder_0.46812692_2916.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Allan Linder_0.46812692_2916.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2f070643730d1c26f4658ec424abc2ac7ccb7dc3 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Allan Linder_0.46812692_2916.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3be283ac94e42e5e2b3d5df66672d12872a9f74b5b94cedcf76dbec125868f26 +size 9847 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Allen Tupper True_0.43556124_3104.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Allen Tupper True_0.43556124_3104.jpg new file mode 100644 index 0000000000000000000000000000000000000000..71a1e2880cf4d93114e564ab46ede7eda64f3a83 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Allen Tupper True_0.43556124_3104.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d80fb9949cdc181b23eaca5fc31070bbbec671b2ecf353f0685e9499694e2b6c +size 11760 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Alpo Jaakola_0.44981295_3031.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Alpo Jaakola_0.44981295_3031.jpg new file mode 100644 index 0000000000000000000000000000000000000000..85ab5793ce8cdae95d89f51206ee5bce5772f1e6 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Alpo Jaakola_0.44981295_3031.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d094230d57b5426f4c8dfbf76ee76300879debafa13511826a8602c779157fef +size 11137 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Alton Tobey_0.4416385_3075.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Alton Tobey_0.4416385_3075.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4318a9db039735c8b3071fbe36fdcc241b3a5d3a --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Alton Tobey_0.4416385_3075.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28d05e9df79a2ffd3bb6272c0afbd07dcd1d4e406b91c2862eb2d247de4eee9f +size 10389 diff --git "a/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Amelia Pel\303\241ez_0.46764764_2921.jpg" "b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Amelia Pel\303\241ez_0.46764764_2921.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..614a350378e67694200f096f92b7d5bb0bf333b1 --- /dev/null +++ "b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Amelia Pel\303\241ez_0.46764764_2921.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:65c0f968e7b6fa11e218a13ebaa6d999d8cad4e626b98e3b950d24084b13003e +size 8583 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Amiet Cuno_0.41975892_2873.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Amiet Cuno_0.41975892_2873.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1e124f0b9af851a6a2a0d2d6c171aee9c1d9ef49 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Amiet Cuno_0.41975892_2873.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2185ec1662c3785151c2028fa936b45e9dc37d30ec95cfb11f01c1159e4177e9 +size 11635 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Ammi Phillips_0.43095884_3138.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Ammi Phillips_0.43095884_3138.jpg new file mode 100644 index 0000000000000000000000000000000000000000..61a88988fa95ed4cf6ac2007c2e7283fd3af7fc1 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Ammi Phillips_0.43095884_3138.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f8077fbb2e1e9fb847349d9923695f9638f6f05da1082c107b6ce7f4ed31a19 +size 12653 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Amos Ferguson_0.4418735_3074.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Amos Ferguson_0.4418735_3074.jpg new file mode 100644 index 0000000000000000000000000000000000000000..97f0e7c1f23622f264fe58b315526b77356ffba8 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Amos Ferguson_0.4418735_3074.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c7029585ba7d808415382a2e439f4d590830af7931bd1f5229c863592185e249 +size 11145 diff --git "a/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Am\303\251d\303\251e Ozenfant_0.4585215_2984.jpg" "b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Am\303\251d\303\251e Ozenfant_0.4585215_2984.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..90947bdacd1234ce9793325b5c3a051ab5f9a1b1 --- /dev/null +++ "b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Am\303\251d\303\251e Ozenfant_0.4585215_2984.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:00bbe574f2b51ff2298949ca5278e3ea30b4df3edfe00755bb4c1a0ca2bc9b57 +size 9968 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Andre de Krayewski_0.4628024_2949.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Andre de Krayewski_0.4628024_2949.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2febc2526215575835856f57d88e1a1365199dd2 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Andre de Krayewski_0.4628024_2949.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8fe530831643689a62ad91c485584aabcf8470d720b3d07905f655cea26f547c +size 10134 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Andreas Franke_0.4300047_3012.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Andreas Franke_0.4300047_3012.jpg new file mode 100644 index 0000000000000000000000000000000000000000..09fe4cd514e2320b3ae9f59c1f11420acb5bee95 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Andreas Franke_0.4300047_3012.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe10425ab88a2ddc48f7f90cde3aadc709ff612abe1f2c9a3a956a7cf62088d4 +size 16107 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Andreas Levers_0.42125136_2201.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Andreas Levers_0.42125136_2201.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f9af2f210c1d604d53755d87e447e1818e3942df --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Andreas Levers_0.42125136_2201.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c4b1bf8e045df0d0f449540c07e41c31973c2bcb44c04a60f6cf3eb4fbf46ec +size 11634 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Andrei Kolkoutine_0.44328922_3063.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Andrei Kolkoutine_0.44328922_3063.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d8351e305e75088d54663a21b9752fd3990539ad --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Andrei Kolkoutine_0.44328922_3063.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b06876a0ba29375fadc6361efabdfd39f0dab95059880bb5d3336fec3c5fe60 +size 9814 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Andrew Whem_0.43512022_3109.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Andrew Whem_0.43512022_3109.jpg new file mode 100644 index 0000000000000000000000000000000000000000..57687750540ea1fb9db10f0b7d525785a575bf73 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Andrew Whem_0.43512022_3109.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc3ee535a7054148952067141b8cdc30b10819bbd0de8edc6dc14e9158d85fe1 +size 11087 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Anita Kunz_0.4356005_3102.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Anita Kunz_0.4356005_3102.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3728a4061a134c5e9bb14d22633ff218d9001494 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Anita Kunz_0.4356005_3102.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c8029b4bf65c1fd1d82f974ff82f0f3235b7091012a9c9ae14914beb3737c5e +size 11280 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Anja Percival_0.45039332_1981.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Anja Percival_0.45039332_1981.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6da43655be290740f53a3f7445ff141eede3ac8e --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Anja Percival_0.45039332_1981.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b783b1ce8b9cfa3262da7317a107a15faa40e8dec4e940463669d75fbf017e0d +size 10223 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Anna Maria Barbara Abesch_0.4611045_2961.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Anna Maria Barbara Abesch_0.4611045_2961.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b681f4c14da7f48d4da792847860a08a1c1c8444 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Anna Maria Barbara Abesch_0.4611045_2961.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:48789455508a53ef938ea392d172c4897eda63d755983e7a8c1c7c9ce3383b47 +size 9229 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Anna and Elena Balbusso_0.59955937_1879.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Anna and Elena Balbusso_0.59955937_1879.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4d6bf72ac3ed26b16d8048a7ae2c17ecb7b9f84e --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Anna and Elena Balbusso_0.59955937_1879.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef55ce63496a8b59f77b6c55b2f25b554485b241eda6af33dd8e6975b5bfabec +size 11396 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Anne Dunn_0.46722376_2926.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Anne Dunn_0.46722376_2926.jpg new file mode 100644 index 0000000000000000000000000000000000000000..eb79da5e1c4b2107c6c2a7243e9c2e6f0bcdcc36 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Anne Dunn_0.46722376_2926.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d3ff8bfafb12c2060679392473bb34881e3932e0fb18d102172b9a730da846a6 +size 11029 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Anne Geddes_0.45785287_2987.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Anne Geddes_0.45785287_2987.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1afc34aa906ce38e14b767326c209c057779d513 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Anne Geddes_0.45785287_2987.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:53ee5266172cd4f3ca7e8df0d5e08763326c74e124a412bea74ce287cc992d01 +size 11890 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Anne Mccaffrey_0.4719924_2899.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Anne Mccaffrey_0.4719924_2899.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b1a4d7258e22bacee7d08e00b5b82e67f2f1e555 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Anne Mccaffrey_0.4719924_2899.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d896072eb5b3ba37e36bca4afd265fe29f45945b14e6c8d2737c223be9e512e1 +size 13253 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Anson Maddocks_0.46539295_2938.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Anson Maddocks_0.46539295_2938.jpg new file mode 100644 index 0000000000000000000000000000000000000000..944f0ee9d9992b97f54caeeb97b4e6ac1c67dee9 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Anson Maddocks_0.46539295_2938.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a9d0cda2bd24ec5b1b406746f08154202a468cd7643091d6c07d0a3400ee271f +size 8515 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Anto Carte_0.4708289_2489.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Anto Carte_0.4708289_2489.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e4c6793dbde09edee705b73cc51c3e2fc5e21f39 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Anto Carte_0.4708289_2489.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba5b971394ad26cea1fc3e83acb4a6bf078d374fa22f673cfb8a2bd126ce3a93 +size 13427 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Anton Graff_0.38569996_3046.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Anton Graff_0.38569996_3046.jpg new file mode 100644 index 0000000000000000000000000000000000000000..00a8b3e5836c271413f4ce19f774ca722ef18e96 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Anton Graff_0.38569996_3046.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:428bef4ce7f5728ffad82756fe2a215b160e46e75e9f1d9ed6f28b79202c80ff +size 10580 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Antoni Pitxot_0.40582713_2596.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Antoni Pitxot_0.40582713_2596.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4578f5fb8774615db750511d3507d467b3b18dc3 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Antoni Pitxot_0.40582713_2596.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:43e46b4c008dc4638d81235d4e0ac7e830767e60acf9a811774989deca5e5040 +size 9343 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Antonio Cavallucci_0.4645282_2942.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Antonio Cavallucci_0.4645282_2942.jpg new file mode 100644 index 0000000000000000000000000000000000000000..459b8348ef1e8f182f0812629bd863a20c2c9db0 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Antonio Cavallucci_0.4645282_2942.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f437e0f6b6c4078e174d97c395d1104f4281deb82d200189dd8d360dfb3a838 +size 8818 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Antonio Donghi_0.4610982_2511.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Antonio Donghi_0.4610982_2511.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bc93c6f2d10d0960abf1b190183261afab928822 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Antonio Donghi_0.4610982_2511.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9fb8ea7ab662c0154d96160903b999aac33f3cb75c07046fe32a955cf9673954 +size 8574 diff --git "a/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Anton\303\255n Chittussi_0.431248_3137.jpg" "b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Anton\303\255n Chittussi_0.431248_3137.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..c6d4b30dae30d3169a609aea1bee26f44c6ae4b2 --- /dev/null +++ "b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Anton\303\255n Chittussi_0.431248_3137.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd083e501157b7649aa6ebfe9cc8c3aa07bab8f21cd852fec86a7971b8deecfd +size 8892 diff --git "a/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Ant\303\264nio Parreiras_0.45269623_3016.jpg" "b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Ant\303\264nio Parreiras_0.45269623_3016.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..31842d9998b90096fa5187cb2445e85a81628be3 --- /dev/null +++ "b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Ant\303\264nio Parreiras_0.45269623_3016.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b7d21c489f77f93ed183891606a7bedaaf34c58032b5c7e4bd7f3e7375e8743a +size 12814 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Araceli Gilbert_0.44399196_3055.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Araceli Gilbert_0.44399196_3055.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a05948362e35ac85cf3413f26b94a54f47589c61 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Araceli Gilbert_0.44399196_3055.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:610f0a449c28541b60d591a4cfbe6d128621e1fde765a5b8c8201828faa0959c +size 10546 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Arent Arentsz_0.43373522_3118.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Arent Arentsz_0.43373522_3118.jpg new file mode 100644 index 0000000000000000000000000000000000000000..13ce18276679bebf5e8d2c93214413e47db7bc43 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Arent Arentsz_0.43373522_3118.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21d22a5bb0cc92c55792d75b2de9c019093c1ed30c1de29deaabf8275ff9fc8b +size 9622 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Arlington Nelson Lindenmuth_0.4683814_2914.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Arlington Nelson Lindenmuth_0.4683814_2914.jpg new file mode 100644 index 0000000000000000000000000000000000000000..16fcf6b15d374b95aaf9b246640911e6809de199 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Arlington Nelson Lindenmuth_0.4683814_2914.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:52e3e2ba03dff40ce559ca181fc4ab45038a4a9c658bdf594cd705f2822998b6 +size 9802 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Armin Baumgarten_0.444061_3054.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Armin Baumgarten_0.444061_3054.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5656e333bba5f5832421a8f76522408a96e7b017 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Armin Baumgarten_0.444061_3054.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ab79438c1cdb6f3b5950143c39e1089a29e2c5e9b9c7c996a2c00b153bda088 +size 9852 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Art Brenner_0.42619684_2190.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Art Brenner_0.42619684_2190.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c6d77b2c4b3d5555887a8d4f1bbc876b24860ba2 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Art Brenner_0.42619684_2190.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e131194b80c3073f4078cd9dd32486ba6a2d49b73ce40e10e433e100cf0bc7f +size 9579 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Arvid Nyholm_0.46697336_2928.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Arvid Nyholm_0.46697336_2928.jpg new file mode 100644 index 0000000000000000000000000000000000000000..99da13889ce178c53ba20525d9026eb1426685d2 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Arvid Nyholm_0.46697336_2928.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ddb6e8c18f663e782d5b70e8949e4689d592629331f8a8085d0051d342c774e5 +size 10883 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Ashley Wood_0.4398396_3084.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Ashley Wood_0.4398396_3084.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2396c428407fcd09b66188ead05bd2d5e278627c --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Ashley Wood_0.4398396_3084.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9256031dc8ee11256fba4b65d29aa53ae9fcbbac069485c8e35c0936497448f2 +size 14196 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Auseklis Ozols_0.46569023_2935.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Auseklis Ozols_0.46569023_2935.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0200bdd539f1cf6b6a35325cb2900ed32489b43e --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Auseklis Ozols_0.46569023_2935.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:70e5a16e7646231519a60c39d1feed8a86e0dd52ce7e48bcd6a68ee2e7bb8198 +size 9446 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Aykut Aydogdu_0.43111503_2134.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Aykut Aydogdu_0.43111503_2134.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3e007219b5d1c94ea20d820e267e857172a799cc --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Aykut Aydogdu_0.43111503_2134.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:496b4014361a8e6f0f3b22e50ab458c0b0518ece1f634a7c997730b2c4cc2164 +size 9748 diff --git "a/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Ayshia Ta\305\237k\304\261n_0.463412_2947.jpg" "b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Ayshia Ta\305\237k\304\261n_0.463412_2947.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..dc6e5871a7d5acb74066a8f4e8c7547948a25cdd --- /dev/null +++ "b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Ayshia Ta\305\237k\304\261n_0.463412_2947.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae6d22b59ecd4db86476462589c620a52836bb118ddf08cee0b37df6530d7876 +size 11201 diff --git "a/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Bal\303\241zs Di\303\263szegi_0.432244_3127.jpg" "b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Bal\303\241zs Di\303\263szegi_0.432244_3127.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..78160d199b1167301c19b5683e1974818208dbe3 --- /dev/null +++ "b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Bal\303\241zs Di\303\263szegi_0.432244_3127.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:acdb8820ca10439328c7a2bd71ae0e75e367cc9df27cc2e11d5ac59926104cb5 +size 9114 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Bauhaus_0.43454266_2675.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Bauhaus_0.43454266_2675.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e73001f21b8aabc32b8f72f3c605b35e55ebee2d --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Bauhaus_0.43454266_2675.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a98dd3ab805cde7617f67fcd4594534aa7c79e75ae886a8f07d4cbc28d7150f +size 13587 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Bedwyr Williams_0.44616276_3045.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Bedwyr Williams_0.44616276_3045.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e615fdd4d167b7f350aba8d09d3f940c5daebb00 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Bedwyr Williams_0.44616276_3045.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:709ea0ec1f605c14b9c22dd4001ebfc193e97e88416357670982700eded5daf9 +size 11236 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Beeple_0.40085253_2603.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Beeple_0.40085253_2603.jpg new file mode 100644 index 0000000000000000000000000000000000000000..40ddedbd166e5c32316dc5a6fb4a8ab5a5ce6eb7 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Beeple_0.40085253_2603.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b732ba6b48c99dc136a1d0b109189744174ddb14f02773c6c375ffcfe0c0b895 +size 10891 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Ben Thompson_0.43436068_3115.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Ben Thompson_0.43436068_3115.jpg new file mode 100644 index 0000000000000000000000000000000000000000..28c35f48bdf2af17421278a1931bbfbdb264ec7f --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Ben Thompson_0.43436068_3115.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5758783221edf314e2faf64eb6e699f8142b0a978efedf9544d77e0882544ade +size 10068 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Ben Zoeller_0.44368798_3059.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Ben Zoeller_0.44368798_3059.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4e4407c1b620923b0d5067d2bfc617f0b0d1585d --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Ben Zoeller_0.44368798_3059.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:872688dafedb450484aeccb12fc81033c9e238ecdc2befb25858cf0f82d3a0d5 +size 10971 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Bernardo Daddi_0.46088326_2962.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Bernardo Daddi_0.46088326_2962.jpg new file mode 100644 index 0000000000000000000000000000000000000000..00914846de3b7818505faec375b8ed1e9a06fbee --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Bernardo Daddi_0.46088326_2962.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dfc1a19bf5c9d0bd33c41f20b14fbfe7a47107cbb9850a274c06bcf401eff646 +size 9520 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Bertil Nilsson_0.45724383_2993.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Bertil Nilsson_0.45724383_2993.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e5321b50977b0d07a0a2644622476a26c4eee6be --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Bertil Nilsson_0.45724383_2993.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0d6ba1e1392175ade63bb7ed22576444ac36c317e532d4d4fee66dfe47f5aba +size 9683 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Bertram Brooker_0.46176457_2957.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Bertram Brooker_0.46176457_2957.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1441fc0fdb0503f2a4375fcd6eca29757c329aad --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Bertram Brooker_0.46176457_2957.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d9b68108b39c4e4b4e9cc1da393b8ae6cb3f767916abedb3eed178d4eafef72f +size 10828 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Bess Hamiti_0.46062252_2968.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Bess Hamiti_0.46062252_2968.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ce259d4cfb460fd850bdde553de24af59b0f41ad --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Bess Hamiti_0.46062252_2968.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67730d67a047ccc7e8ae34bd182384dec21baf5a920fa05c1b3906a57d24494e +size 11254 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Bholekar Srihari_0.47387534_2889.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Bholekar Srihari_0.47387534_2889.jpg new file mode 100644 index 0000000000000000000000000000000000000000..98723d193c469226e517c96eeee52d2406781c39 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Bholekar Srihari_0.47387534_2889.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fb3e7b156f6fcd89da15bd55beb5a4607c0257069b7e58b222314aef29548399 +size 13355 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Bikash Bhattacharjee_0.45775396_2988.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Bikash Bhattacharjee_0.45775396_2988.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fa856c5ae9cc83833cfe0d2d4aadc9ae2e06fcce --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Bikash Bhattacharjee_0.45775396_2988.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3526c77b956dbe39c2797b674f93c95df87d6ed730c943c4274c950d11172abe +size 15371 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Bill Durgin_0.4300932_3146.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Bill Durgin_0.4300932_3146.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3833509eb40b23bc81abb580b02983313332cacd --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Bill Durgin_0.4300932_3146.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b9a81c24c59a101cc5ce3edada683518957860427a17b02a4e69b576222ad720 +size 8501 diff --git "a/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Bj\303\270rn Wiinblad_0.45934483_2980.jpg" "b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Bj\303\270rn Wiinblad_0.45934483_2980.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..cf66a029f585cfbb89135100fc3f612b4cdb6ba8 --- /dev/null +++ "b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Bj\303\270rn Wiinblad_0.45934483_2980.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:31d196ec6c5cf6e1f9d5e459e605cb312ac3413350d13a73a77f78cf4d83d481 +size 9838 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Bohumil Kubista_0.4679809_2917.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Bohumil Kubista_0.4679809_2917.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7edf082dcb7cfe79e3ad7a2e42976c584c441572 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Bohumil Kubista_0.4679809_2917.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9893ccc920a147f0e9b38980bf1f2c4b49ccce41c925de9da48d5cb336959c08 +size 9811 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Brad Rigney_0.28446302_2955.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Brad Rigney_0.28446302_2955.jpg new file mode 100644 index 0000000000000000000000000000000000000000..77c4237415bbbd984dca54408dcbccbc7407a3d5 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Brad Rigney_0.28446302_2955.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:700a95700529f2f0977edbd633584ad90101dbd2652f7438612d23af965a410f +size 9839 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Bradley Walker Tomlin_0.47462896_2884.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Bradley Walker Tomlin_0.47462896_2884.jpg new file mode 100644 index 0000000000000000000000000000000000000000..153ddce2fc86fc61b45d8cda52889fa1bf35347f --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Bradley Walker Tomlin_0.47462896_2884.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:594687dbc15139dcac998f35de6a339bd58ee8a0c6c61ae460b7e0fea9dab522 +size 12474 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Breyten Breytenbach_0.4699338_2907.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Breyten Breytenbach_0.4699338_2907.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2b1d584ec22c21204fcb75a6da33e9afc8ffbb76 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Breyten Breytenbach_0.4699338_2907.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:483afe72aa3ef3c1fe823cc52fdd240f8cb7f5ff19d9116b0e3103e826c8e682 +size 12667 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Brian Despain_0.41538632_2960.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Brian Despain_0.41538632_2960.jpg new file mode 100644 index 0000000000000000000000000000000000000000..91c2e3d6cb0f53eaf52dab9b8036e1b450e611e6 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Brian Despain_0.41538632_2960.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2222c4c0c55a118f98ce8220726ee4c98c0645ce8664110c525ba57514a271fd +size 12111 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Brian Oldham_0.396231_1785.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Brian Oldham_0.396231_1785.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e276da05bb58cd065627995d62f9414441ffbec5 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Brian Oldham_0.396231_1785.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44d705cb35766151bfff0fb4461c2d8e9be9936bc97d95ef7ffe6b000b743677 +size 10250 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Brothers Grimm_0.47249007_2895.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Brothers Grimm_0.47249007_2895.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e0a631cc256bb50e0bc900ac99a2db3fa07844f1 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Brothers Grimm_0.47249007_2895.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8a64f13c656f0fcac6ab60cb89aa23c16cc0e8bb9cdbe4b330a66b20be4422c1 +size 16073 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Camilo Egas_0.4586727_2786.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Camilo Egas_0.4586727_2786.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7a03c2e90edf376fd20d4e8cc4e712c72aa58465 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Camilo Egas_0.4586727_2786.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd5129801d01907de5750f75d32a94a1a97e41e908d8fe8eac13d2d3add1e910 +size 9316 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Carey Morris_0.44388965_3056.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Carey Morris_0.44388965_3056.jpg new file mode 100644 index 0000000000000000000000000000000000000000..46a814704b6a4b86991121881a93d1bc8001495d --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Carey Morris_0.44388965_3056.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:72f6591843fecbfc011def8833678ed3e262c80fad73b57555a32098bf818a46 +size 10254 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Carl Critchlow_0.4636_2946.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Carl Critchlow_0.4636_2946.jpg new file mode 100644 index 0000000000000000000000000000000000000000..245d8f72d2fc2ac710ef1dda0f5cb0359a201698 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Carl Critchlow_0.4636_2946.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:013aee7f36a3e5adc4d7036f63e0e2552216479b3e6587a82429bd237a5b24ad +size 9518 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Carl Hoppe_0.44270635_3068.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Carl Hoppe_0.44270635_3068.jpg new file mode 100644 index 0000000000000000000000000000000000000000..781631531c3983fe344af4557227ea315896720d --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Carl Hoppe_0.44270635_3068.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:deb6b7a4f888b5a70b0c95246e5da1a948627807bf340ec1ac9f9bf341122370 +size 9619 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Carles Delclaux Is_0.46734855_2923.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Carles Delclaux Is_0.46734855_2923.jpg new file mode 100644 index 0000000000000000000000000000000000000000..208d258a1aeede40764d901d3a5b8bcc5a315433 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Carles Delclaux Is_0.46734855_2923.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:122bba98009ac7c079a6b66fea039616f590f64e2a4d0d64db632d8601285574 +size 10675 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Carlos Berlanga_0.440354_3082.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Carlos Berlanga_0.440354_3082.jpg new file mode 100644 index 0000000000000000000000000000000000000000..87f319379a638cd1438abe349a8e2db3b63fb069 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Carlos Berlanga_0.440354_3082.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:05627e2a5c182d380a791487cd1391194bf7ee6b9cabb4fc2d6a0cd5a57a8c1d +size 9744 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Carlos Saenz de Tejada_0.47332364_2465.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Carlos Saenz de Tejada_0.47332364_2465.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9fe0e66f63ce8709bdedb6d3c368eadcb5a4ab52 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Carlos Saenz de Tejada_0.47332364_2465.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed111b8b17d4714a6619d2d88d94956ba92e55b153818967e0692d00f7489564 +size 8431 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Carlos Trillo Name_0.4470371_3039.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Carlos Trillo Name_0.4470371_3039.jpg new file mode 100644 index 0000000000000000000000000000000000000000..45eab371e9e2c171df3273461b1678905848730f --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Carlos Trillo Name_0.4470371_3039.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:256666b691ca11a7b0f2cdda3992766ec26626d2f76d949214e062bab93f9a5c +size 11397 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Carmen Saldana_0.44076762_3080.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Carmen Saldana_0.44076762_3080.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1bbcb0d27f13ae8c5c520a5d1614f1c0bad01cd4 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Carmen Saldana_0.44076762_3080.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b0de77d65ae1749aabf9f552e33df3e50c2e0c4125ced77a4c8d03878145f7bd +size 10720 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Caroline Gotch_0.44263047_3069.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Caroline Gotch_0.44263047_3069.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e8ba82089093c3cdd953a56a29aa26df53132c6d --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Caroline Gotch_0.44263047_3069.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f81ca112fb1865b0690d4d05001b2097ab396fe0ffe2454654745130ec0316a0 +size 9562 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Cecile Walton_0.46672013_2267.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Cecile Walton_0.46672013_2267.jpg new file mode 100644 index 0000000000000000000000000000000000000000..cd2c08b1a0e01bb796adb5812a222a84818b5d92 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Cecile Walton_0.46672013_2267.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fed38ae7f8b70ac8f7c96483121bfaadbe481db847f60054c60d4ad005486231 +size 8570 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Cedric Peyravernay_0.4200587_2669.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Cedric Peyravernay_0.4200587_2669.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9e474e8b074c4dc689039e5d5e04a4016e6cd7f0 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Cedric Peyravernay_0.4200587_2669.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2dc498c0bfbbe6e800e5c75abac584553819341dec2eef300059febc0a5739e4 +size 10876 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Cedric Seaut (Keos Masons)_0.4317356_3131.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Cedric Seaut (Keos Masons)_0.4317356_3131.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e7fdaedd4bed9873755e2069137f99cf050eb63d --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Cedric Seaut (Keos Masons)_0.4317356_3131.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bfb0d1d2c798177ffaa4b69bf88673f71600f71f17007b4e9ec103cbb857cab1 +size 12071 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Cedric Seaut_0.43521535_3107.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Cedric Seaut_0.43521535_3107.jpg new file mode 100644 index 0000000000000000000000000000000000000000..af69a7bcaac5e36f0413369c9b5ed91bdb444d68 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Cedric Seaut_0.43521535_3107.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f80ac8db113ee957ab8a5830ed8aac39def84486ddea9d1bfcab9997ee21db24 +size 12682 diff --git "a/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Cefer\303\255 Oliv\303\251_0.46058378_2969.jpg" "b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Cefer\303\255 Oliv\303\251_0.46058378_2969.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..cacf86a619e6a0ec0705ddeb8bd1cbbad0e86f0e --- /dev/null +++ "b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Cefer\303\255 Oliv\303\251_0.46058378_2969.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:32d4d2552680c5dfc718259d2941f298714f6b49950b4f8bf9628cf39a39f549 +size 9021 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Chica Macnab_0.4365166_3095.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Chica Macnab_0.4365166_3095.jpg new file mode 100644 index 0000000000000000000000000000000000000000..25bbd4cd8f50217cd8344d554ddf2335a2ec4424 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Chica Macnab_0.4365166_3095.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:668d05526b09a2384491f8e922602dfb831e0985b97ca6ba3735aa9dfdfdeab5 +size 11109 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Chris LaBrooy_0.45497298_1673.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Chris LaBrooy_0.45497298_1673.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1b5ea716e9e90ea04b6ba83787871f6ae9c94eb7 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Chris LaBrooy_0.45497298_1673.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dace8d1247194fb59e156e5434daf58c8fa84cd45f1543ea622d36950d04fe0d +size 15116 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Chris Saunders_0.41429797_2844.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Chris Saunders_0.41429797_2844.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3f692d72b79a508f4162b867ae2d6c48159a0af0 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-low-impact/digipa-low-impact_Chris Saunders_0.41429797_2844.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f122ff7d0ea715caefb73a20bd5c57e9b1707338290af804e795b6ce0f9c725 +size 19260 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_A. B. Jackson_0.4883623_2802.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_A. B. Jackson_0.4883623_2802.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e2bdfc7c5dfc44143d1406fdaf7c986b9c6faa09 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_A. B. Jackson_0.4883623_2802.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33836f942ac3e717794a74ebdb89a456302d53bde700586f92432d971a5925bd +size 12263 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Aaron Bohrod_0.48175076_2843.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Aaron Bohrod_0.48175076_2843.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7029dc69523fb41efad9bf0b1bdc1049a2ae8039 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Aaron Bohrod_0.48175076_2843.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2666c54df9c07405240f23fd50bd09afcad13e133453bc51b2c5708c517874d +size 9889 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Aaron Siskind_0.4852289_0555.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Aaron Siskind_0.4852289_0555.jpg new file mode 100644 index 0000000000000000000000000000000000000000..72eeea09c6e8c5cac327bc8b3f78355fdc83def3 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Aaron Siskind_0.4852289_0555.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e9fa2600fbbbb9e264b70fbbfa627b30838115eb1424aa4767b40627403f7b7 +size 14197 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Abdel Hadi Al Gazzar_0.49631482_2753.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Abdel Hadi Al Gazzar_0.49631482_2753.jpg new file mode 100644 index 0000000000000000000000000000000000000000..66ec6adb464aed16d9ecfaacc9d55f739d523949 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Abdel Hadi Al Gazzar_0.49631482_2753.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c6e2c761537964ee44d70e6a781d07f8515e18d9e6ebf7125a51eee89556239 +size 10782 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Abed Abdi_0.4948855_2758.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Abed Abdi_0.4948855_2758.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d4eee5e29dd989dc980fb9edc94f6d3cc6ceaca8 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Abed Abdi_0.4948855_2758.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a2b3b6fe29d923202612bdabae726a9f99c868ad16efa46d7f491c166e97008 +size 11273 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Abraham Begeyn_0.5172538_2627.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Abraham Begeyn_0.5172538_2627.jpg new file mode 100644 index 0000000000000000000000000000000000000000..abecb140182d8c9473fdc63e9000421ed1965df4 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Abraham Begeyn_0.5172538_2627.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26561858df463698aa57752ab672acf45986ec053500d791dd4cd908feafb337 +size 8989 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Adam Martinakis_0.48973057_1551.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Adam Martinakis_0.48973057_1551.jpg new file mode 100644 index 0000000000000000000000000000000000000000..af33d9cc396e8d8eeb590859404c5e93e5d6d811 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Adam Martinakis_0.48973057_1551.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19561b891cc0e05ca75ea10ae62b89af55519f4d8c95a26faf931396f9c47037 +size 13077 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Adonna Khare_0.4858036_2512.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Adonna Khare_0.4858036_2512.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1a55e5e54351e70a30a5b16fd684862c74af6990 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Adonna Khare_0.4858036_2512.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9896fe99dddec4ee38cae3991ea2801b3ee8233a789b89cf9fecdeaa58b57d45 +size 11029 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Adrian Paul Allinson_0.48211843_2839.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Adrian Paul Allinson_0.48211843_2839.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c04eebb6e35b7a9e75f47e1b86b331636d3d540f --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Adrian Paul Allinson_0.48211843_2839.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:68055f49bb585d6e3c8adde796910259d21665db1a7c2e25ce42560526228b60 +size 11346 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Aert de Gelder_0.519166_2479.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Aert de Gelder_0.519166_2479.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d29cde66bb949bd7d0cbb2202bcab2401878b778 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Aert de Gelder_0.519166_2479.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce0a100e343738e50de8a705c64bace9285f377de9d839c6c0380be855a0b0bd +size 11139 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Aileen Eagleton_0.49318358_2771.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Aileen Eagleton_0.49318358_2771.jpg new file mode 100644 index 0000000000000000000000000000000000000000..460760e448c788dddf1f0f19ed2703164404bca3 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Aileen Eagleton_0.49318358_2771.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed4aaf695cb62a73125f17ec3ae7fc1c6e926094645cf4f7ce56494c6b4a9db2 +size 11098 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Alasdair Grant Taylor_0.47802624_2867.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Alasdair Grant Taylor_0.47802624_2867.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c406855a0a73cf6b24e90dcdd39f8ef46df55b96 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Alasdair Grant Taylor_0.47802624_2867.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:55754699c1fb2af7a5c90362ddc44a784fde415298137ac984166571785f44aa +size 9602 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Albert Keller_0.47825447_2865.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Albert Keller_0.47825447_2865.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4fc0b58429d0d5b281bb0cc157accd67299a8cc7 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Albert Keller_0.47825447_2865.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ffac503689d0f42e47a43cbff18f0e11e03decfbc6901f4afde47f096d5f6354 +size 9189 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Albert Tucker_0.4854299_2817.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Albert Tucker_0.4854299_2817.jpg new file mode 100644 index 0000000000000000000000000000000000000000..88164a20a3a511970d41d884a770e67cfa3944a2 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Albert Tucker_0.4854299_2817.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d9e63458f03e296bd37239e97a1141ca78936017d3fc302166e92fc0fed78c5 +size 9844 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Albert Watson_0.48901254_0252.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Albert Watson_0.48901254_0252.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b0132bc2c0cdf582cd005f194c2c57968942dda3 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Albert Watson_0.48901254_0252.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4fc41b1c01d912cd693703a9b5dfd1b24cfcf0ed6d961c6c3e38ee1c577326d2 +size 11473 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Alberto Magnelli_0.5103212_2679.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Alberto Magnelli_0.5103212_2679.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6f503fad4bd941bd78f32d5802cdcc81380e2cc4 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Alberto Magnelli_0.5103212_2679.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dca33bcd786ac91ca3e766c7f30ed0cc37781281642fd8ea4fcf347e9ba1dad5 +size 9278 diff --git "a/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Alejandro Obreg\303\263n_0.5190562_2616.jpg" "b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Alejandro Obreg\303\263n_0.5190562_2616.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..82dfaafdee6d28ad796fb8504f2b26b39715ef51 --- /dev/null +++ "b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Alejandro Obreg\303\263n_0.5190562_2616.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b54daca673423b87c9ffeead2577bb7aa595ba89b736858fee180c8f1c0395fe +size 10329 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Aleksander Kotsis_0.4953621_2755.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Aleksander Kotsis_0.4953621_2755.jpg new file mode 100644 index 0000000000000000000000000000000000000000..93ba85c3b5bd871c308ed36d5e00722e3fb35612 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Aleksander Kotsis_0.4953621_2755.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:89cb4ebec5193b4c30f3252551dbe426d40fcc023ddb6a560a859407793da093 +size 10270 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Aleksandr Gerasimov_0.48736423_2808.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Aleksandr Gerasimov_0.48736423_2808.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7862112f85e5d2165cf34ed8a139ee13f4e0d7d0 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Aleksandr Gerasimov_0.48736423_2808.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fbd0a46c8d4ed4acfec2cbedde6eb2ca5dca934cb29a01a26da71f5b18044492 +size 12568 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Alesso Baldovinetti_0.49849576_2745.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Alesso Baldovinetti_0.49849576_2745.jpg new file mode 100644 index 0000000000000000000000000000000000000000..68a3ed2f21150b6fdf3c449dcd937c699916bbf1 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Alesso Baldovinetti_0.49849576_2745.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9a8d0799756014f81b1790a22269fb362c21926bc16eb6ebe9ab6d285178d66d +size 10721 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Alexander Bogen_0.48421195_2821.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Alexander Bogen_0.48421195_2821.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3d56d4fe0b2a9c5a38f8c3018bd7ba64ac714659 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Alexander Bogen_0.48421195_2821.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d6cc09f528b2b0370528770cd51e1bf3a6bb535c6aa966e620ee75de2233f62 +size 9379 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Alexander Fedosav_0.48360944_2828.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Alexander Fedosav_0.48360944_2828.jpg new file mode 100644 index 0000000000000000000000000000000000000000..dedb5bc32c059c8fce8afb5a767cab2a7ef7cc22 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Alexander Fedosav_0.48360944_2828.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:09ccff37cb11b8d968464cce586a724f448125d3837c854226f3176c00dd56e1 +size 10317 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Alexander McQueen_0.5101986_2681.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Alexander McQueen_0.5101986_2681.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e5f7600a7a6d158e1c57485c1f94e2d30598cfdc --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Alexander McQueen_0.5101986_2681.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:30030adf11618f3fdeb46e263dd9fbef3eca657655e4646d4f5f758044b0704d +size 11635 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Alexander Sharpe Ross_0.49519226_2756.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Alexander Sharpe Ross_0.49519226_2756.jpg new file mode 100644 index 0000000000000000000000000000000000000000..70108fa9aec69c09f606db2dbbd5e9a3caa81418 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Alexander Sharpe Ross_0.49519226_2756.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9923c2d1a97419546cd7fb429da35d95973bc3c42c53925ace1ac7640ee95151 +size 9950 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Alexei Harlamoff_0.48255378_2835.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Alexei Harlamoff_0.48255378_2835.jpg new file mode 100644 index 0000000000000000000000000000000000000000..30545538fa2e43a57caba174e970675f1b6387e0 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Alexei Harlamoff_0.48255378_2835.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:619a1cc4e534628bba158eaaa1a06b193836f654eb673a38e9fd94a410540f86 +size 9398 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Alfons von Czibulka_0.4801954_2849.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Alfons von Czibulka_0.4801954_2849.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4d709c86e83c4feb6d5aaa87dc3a55ff3c0b7f4a --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Alfons von Czibulka_0.4801954_2849.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d3d47393466e6635071bdaf86b39ae907aba5d0cd52b77ed312d27bc9c9ad02 +size 11533 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Alfred Jensen_0.49291304_2774.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Alfred Jensen_0.49291304_2774.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bb77cf5a4ec880a3f8ddba865f20ccaa3a094973 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Alfred Jensen_0.49291304_2774.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:685cf458b725b10e8b1cc83d6380acfd38997a1bca629b730696f91c0ce4cc3f +size 11589 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Alfred Parsons_0.5127445_2657.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Alfred Parsons_0.5127445_2657.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0ebe713a52f7f91f03554e04d304f700a24f2064 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Alfred Parsons_0.5127445_2657.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b0b4bb999f3bb7abb4363880ef7697129dc717afe41d1dab79abf31ec86bcd1 +size 9661 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Alfredo Volpi_0.49367586_2768.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Alfredo Volpi_0.49367586_2768.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ffa2f9b6569c5bdd67fddd44c9a4bb954c2c504b --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Alfredo Volpi_0.49367586_2768.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac30454f8154a71eaa4f94effb4eb6d976baf7520d45b36bb762c3db3902cdee +size 10528 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Alison Debenham_0.4998683_2741.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Alison Debenham_0.4998683_2741.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3a117afca2557f6d374bd2369073e19e8fea7d0c --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Alison Debenham_0.4998683_2741.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c829bc6328493b263b1f67b8ff55f9298ac2b5042120a57ee26f14f9dc2630f1 +size 10772 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Allen Williams_0.47675848_2875.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Allen Williams_0.47675848_2875.jpg new file mode 100644 index 0000000000000000000000000000000000000000..77930e6fd68a45b9d6d1714d0b4c2a42e0db118e --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Allen Williams_0.47675848_2875.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec4b1dcf2cbee3c3b81ad028ba41bae8bc6076cfb7da66a517c615839f327877 +size 10940 diff --git "a/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Almeida J\303\272nior_0.515856_2639.jpg" "b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Almeida J\303\272nior_0.515856_2639.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..c0238957b1888cd513222d8a28ec73aec33bf3fb --- /dev/null +++ "b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Almeida J\303\272nior_0.515856_2639.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3361185463781490a336696cf60b5803520e24b80e84a802c660a7e9fee5f8cb +size 9310 diff --git "a/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Alonso V\303\241zquez_0.49205148_2778.jpg" "b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Alonso V\303\241zquez_0.49205148_2778.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..453678a6dd278570686a5e2f8c3a2fbda3f25202 --- /dev/null +++ "b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Alonso V\303\241zquez_0.49205148_2778.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3deedc3bdcfb89735ac3d15baa0752e5e6720ca1ca39e112f51d635f6c53588d +size 9046 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Aloysius O'Kelly_0.5102891_2680.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Aloysius O'Kelly_0.5102891_2680.jpg new file mode 100644 index 0000000000000000000000000000000000000000..94269f039322abd5e448bfcb360bf6ff00cd13e4 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Aloysius O'Kelly_0.5102891_2680.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0776a2a6da7f3fad9707ad2b9ee20d9903f8b0e03c92ddb7d65cdb2bde73d7b1 +size 9851 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Altoon Sultan_0.4820177_2840.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Altoon Sultan_0.4820177_2840.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bff9fd09a5c8a30d1004546a4122c5e170d4790d --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Altoon Sultan_0.4820177_2840.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:821cf65c9eb441f5a106dcaf9f84093fb39b598f41c911644cc558a30f2dce73 +size 8640 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Alyssa Monks_0.50734174_2701.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Alyssa Monks_0.50734174_2701.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8a91e5f359e8f2058a325ece4e385a08d51790f4 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Alyssa Monks_0.50734174_2701.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f08f27c0461c12dee21f658ae039aa9255623abdc15b12756df6fb16a6c80f8c +size 8576 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Amedee Ozenfant_0.47950014_2850.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Amedee Ozenfant_0.47950014_2850.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7cb6189b853a2e78e3625bc0d1b0aecfef963c53 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Amedee Ozenfant_0.47950014_2850.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:30931e0ae2900f474a11acb0292d005dc3eb54ee6ecec7b4cc0e56f5c870339d +size 11966 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Americo Makk_0.5034161_2726.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Americo Makk_0.5034161_2726.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2357110a484053f13285104b5f180fb7024a4908 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Americo Makk_0.5034161_2726.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67ba38937faf60abf37d66c6e15d2dd709a9e27f8b0b924b24c390069a3fde97 +size 10566 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Anatoly Metlan_0.48020265_2848.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Anatoly Metlan_0.48020265_2848.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ff67df61ea8b31ac3a46606a768d4347eac916f8 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Anatoly Metlan_0.48020265_2848.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d364709375a79d59ef808da1f81b364e2300183d52d6c6334f2e94a5f473072f +size 10244 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Ancell Stronach_0.5084514_2695.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Ancell Stronach_0.5084514_2695.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6314041e11c2d4ecfc4db8a530f8490890712e16 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Ancell Stronach_0.5084514_2695.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c384ea8d8762743f37b0e8a965d5e36c392ff633886d8c21d1283bcb2e8bed6e +size 10060 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Andre Norton_0.5007602_2733.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Andre Norton_0.5007602_2733.jpg new file mode 100644 index 0000000000000000000000000000000000000000..80742df8d0d484a95906962153c43b2d2b842c62 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Andre Norton_0.5007602_2733.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9bd7cb61f51e8e762d84655ddf1006f1b4d73e6d188ddd50146daea976a7b493 +size 13334 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Andrea Kowch_0.51822996_2620.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Andrea Kowch_0.51822996_2620.jpg new file mode 100644 index 0000000000000000000000000000000000000000..faf55d560f68994d028a1b011d2b46f7f0b35a3e --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Andrea Kowch_0.51822996_2620.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f59ff0cfce6d40a6b66416cf4384a83c8940cf93cc770acbce8a98004b2f2bb +size 15934 diff --git "a/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Andr\303\251 Castro_0.4771826_2872.jpg" "b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Andr\303\251 Castro_0.4771826_2872.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..670fa1575099f6e6dcf5322ceb3b4a353bcb7fd1 --- /dev/null +++ "b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Andr\303\251 Castro_0.4771826_2872.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:56b6b90f4349efd697def49cc3f0c40ade54cdbaef7e11ca22c146ce54932892 +size 11709 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Aniello Falcone_0.51475304_2646.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Aniello Falcone_0.51475304_2646.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6028e5ddee24481c56e7f0b7b78717e38c511924 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Aniello Falcone_0.51475304_2646.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c5557b5185e4936b94432efa4d555605d7ce0aa0fa83dd89daafe7c99adc4745 +size 9554 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Anita Malfatti_0.5080986_2697.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Anita Malfatti_0.5080986_2697.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7af27463edadd8e27d27f319f682c14734f903fd --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Anita Malfatti_0.5080986_2697.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:917baf310b087f262f348a20ccf2fcd0c4220659a5676e46daa8f397f1ac3673 +size 11264 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Anna Haifisch_0.47672725_2876.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Anna Haifisch_0.47672725_2876.jpg new file mode 100644 index 0000000000000000000000000000000000000000..179e96a9eb186bdd0aca1763492a7202b1d24a6e --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Anna Haifisch_0.47672725_2876.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0031307c45970c024ea0e70ad00824510e1e793edaf127a54cb9c772ef0a0d64 +size 11162 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Anna Razumovskaya_0.5229187_2361.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Anna Razumovskaya_0.5229187_2361.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b5ec0963f4f17f80e24a85b566f910e920c525cc --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Anna Razumovskaya_0.5229187_2361.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a1ad75b735fb5079131aa63a4c3fac0bf6a62de5bedb39fbd7eb1f8223bf0b0d +size 10020 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Annabel Eyres_0.51136214_2670.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Annabel Eyres_0.51136214_2670.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0d04fa97d2f096df1e24b0356090eb86ab71482b --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Annabel Eyres_0.51136214_2670.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2cfbfda05b2fa719c7420c6c5472b499ca5596fc59f942cb76509c80b5ef82f6 +size 10282 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Annabel Kidston_0.51327646_2653.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Annabel Kidston_0.51327646_2653.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b3682df6355b35e65df3ebcbdf57aa33cfda9282 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Annabel Kidston_0.51327646_2653.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c0ea5356275d0128fca910ebe957f056835212ff91e86dab9e103cb6e8f3b67c +size 11061 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Anne Rigney_0.48357943_2829.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Anne Rigney_0.48357943_2829.jpg new file mode 100644 index 0000000000000000000000000000000000000000..cadc50408e95d3815afbb0b9b5949e63db63aa9c --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Anne Rigney_0.48357943_2829.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bb32a684474677beb53320fffe90345e31e99b53ec158a115f3c8ead474dd9b5 +size 10632 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Anne Ryan_0.48511976_2819.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Anne Ryan_0.48511976_2819.jpg new file mode 100644 index 0000000000000000000000000000000000000000..912aed1c138570b36e01ea3350af7964342f3af4 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Anne Ryan_0.48511976_2819.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d321c69f96eff8f2d17b48163184370a1d4618992cd6d472c775e96427d248ce +size 10137 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Anne Said_0.49473995_2760.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Anne Said_0.49473995_2760.jpg new file mode 100644 index 0000000000000000000000000000000000000000..307ddab1375ce071bbd2207d63ddc616a8bd57ce --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Anne Said_0.49473995_2760.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:104a88cf3019471ba54e337818f2c50bda207722941ab4bcbc2c95ff5bbcc6bb +size 9287 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Anne Stokes_0.4786997_2858.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Anne Stokes_0.4786997_2858.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b46ddce5b6857fde29d45e6312aa99df9514ee0e --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Anne Stokes_0.4786997_2858.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5be294a9ff2b300e4e7efba914d0bc9fcf24c47475cc495c7adba64d636a1233 +size 14379 diff --git "a/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Anton M\303\266ller_0.5127209_2658.jpg" "b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Anton M\303\266ller_0.5127209_2658.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..95e5828c99f676ca2878fa44591327578451c8b9 --- /dev/null +++ "b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Anton M\303\266ller_0.5127209_2658.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:25a5ec0ade75e851fe879a7cfe965fdefbac21a6a37c2bfde2b56744ca2a3035 +size 9421 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Antonio Roybal_0.4792729_2853.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Antonio Roybal_0.4792729_2853.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b2027a4f0dab46b4762f796b5d297668b64dd384 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Antonio Roybal_0.4792729_2853.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:455134077637e5f728859e844e19e4fabf8d54ff71259528888be370fd32a6e5 +size 11644 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Arabella Rankin_0.50572735_2712.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Arabella Rankin_0.50572735_2712.jpg new file mode 100644 index 0000000000000000000000000000000000000000..774dbb1e0ce0fc96fa51f7885dfdcd33b6b5cb8f --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Arabella Rankin_0.50572735_2712.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f630e8229a3852a478577f8aa0b98d450a8f82f246365abd113933b14686d1d4 +size 11422 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Aries Moross_0.4863676_2812.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Aries Moross_0.4863676_2812.jpg new file mode 100644 index 0000000000000000000000000000000000000000..697dbfb14dde9d7f02532d32f20f2d9e0e1067b6 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Aries Moross_0.4863676_2812.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:782b5207c8ec8cf54ba28fded68af4909c0a231666bf46eb5afa9827a96b4b21 +size 15392 diff --git "a/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Arnold Br\303\274gger_0.5080749_2698.jpg" "b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Arnold Br\303\274gger_0.5080749_2698.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..113a928dfe7bbd8707be8013865f9c20aeacc206 --- /dev/null +++ "b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Arnold Br\303\274gger_0.5080749_2698.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd88b5551bb2e3eb28e33506867ab71895c7f3b0dc6a57adc8537c73b5069a8f +size 9688 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Aron Demetz_0.49895018_2744.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Aron Demetz_0.49895018_2744.jpg new file mode 100644 index 0000000000000000000000000000000000000000..41351ef06ea8a6e3ba684a03f34f1af33c7c0930 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Aron Demetz_0.49895018_2744.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af4d0a14a4c9ae90566354c3815f5c34df9d6a47c671c118dcc28aaf7c3bd18a +size 9422 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Avigdor Arikha_0.49384058_2766.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Avigdor Arikha_0.49384058_2766.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ea279d45fac1b411f4e45c1cee7406bfb5c34305 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Avigdor Arikha_0.49384058_2766.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:96d8910e101f387a781b11be81af0f1c4301ac808a8985946fd19755cda36f5a +size 10853 diff --git "a/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Axel T\303\266rneman_0.49401706_2765.jpg" "b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Axel T\303\266rneman_0.49401706_2765.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..7770a949a5be3e20f8b1faa4026f55295f7a2251 --- /dev/null +++ "b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Axel T\303\266rneman_0.49401706_2765.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4cdfed9a7cd4a9c6548aacb95560b06175fae334cd6aefdcedabd37ee7465a33 +size 8983 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Balcomb Greene_0.5162045_2635.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Balcomb Greene_0.5162045_2635.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7e2c1878f0af13c28cd8c24a74252676115aa3d9 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Balcomb Greene_0.5162045_2635.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:04a6a76652d3018b3e202aff9267c13c30b61bdb8b8d81333e7821a171d927cb +size 12627 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Barbara Greg_0.50674164_2706.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Barbara Greg_0.50674164_2706.jpg new file mode 100644 index 0000000000000000000000000000000000000000..101518724d32ce2be60c6f96fbdc119df6ece369 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Barbara Greg_0.50674164_2706.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a001640fe15db1cfd71a526d46e4df6a316a696d6649aac32c4cf2386eff6df4 +size 10773 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Bartolomeo Cesi_0.5136737_2651.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Bartolomeo Cesi_0.5136737_2651.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e178fcc5a5e7aedd5742d50e3f66650704c4a8a4 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Bartolomeo Cesi_0.5136737_2651.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b2ce4cd991c75b9c25f8cc15ff8f1425bd8eace8f144f0984521f7119ba7a92 +size 11435 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Basuki Abdullah_0.50613165_2709.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Basuki Abdullah_0.50613165_2709.jpg new file mode 100644 index 0000000000000000000000000000000000000000..57e545cdd0834882ff352f04d4b02146f5ed74fd --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Basuki Abdullah_0.50613165_2709.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f8da862d9013cf437d4ed7afd1e3240cf67b45c8f6acbbde900bfcccb2208f20 +size 10777 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Benedetto Caliari_0.52370214_2588.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Benedetto Caliari_0.52370214_2588.jpg new file mode 100644 index 0000000000000000000000000000000000000000..548092e57665d7cfe945d2c8a16e9d515fd1a00c --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Benedetto Caliari_0.52370214_2588.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b7756a7583de7cc8c770ca0d61c6fcd0f11571d0ad5d1611dc1dc3ccb2fcf3f8 +size 9796 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Benoit B. Mandelbrot_0.5033001_0498.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Benoit B. Mandelbrot_0.5033001_0498.jpg new file mode 100644 index 0000000000000000000000000000000000000000..791d721f5310d6e8a854afbb67574f50c7572a0e --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Benoit B. Mandelbrot_0.5033001_0498.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bb62b9b916ebdcc480790e315d9ad9bef045adf42d38271b8f846794dfa2863b +size 19837 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Berndnaut Smilde_0.50864_2692.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Berndnaut Smilde_0.50864_2692.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0283e296b989c72ad41e8b77083796477c9cedd6 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Berndnaut Smilde_0.50864_2692.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:191eb44e5960d03022ee88d7d922cdffcd0a759125ce769be8bed8ca557412f3 +size 9145 diff --git "a/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Bernie D\342\200\231Andrea_0.48813275_2803.jpg" "b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Bernie D\342\200\231Andrea_0.48813275_2803.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..dcc51d1595a9e81bde043386eff655f90821c889 --- /dev/null +++ "b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Bernie D\342\200\231Andrea_0.48813275_2803.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7d2cc6272b417ab822be130555e12631e4dca1d582b4e3eebf385a5d7ce52cae +size 11844 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Bertalan Karlovszky_0.48338628_2830.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Bertalan Karlovszky_0.48338628_2830.jpg new file mode 100644 index 0000000000000000000000000000000000000000..86cb6179182448f4d8f980c41fc2ae0a3a67cd6e --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Bertalan Karlovszky_0.48338628_2830.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2110bd1f44f5afa6c9adb0cd6b474c5ece104a21a186d40e70c95493e5fb1e95 +size 9743 diff --git "a/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Bertalan P\303\263r_0.4930132_2773.jpg" "b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Bertalan P\303\263r_0.4930132_2773.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..75ed7ab62e69c3da0e9704bc99893e8f7ca9c506 --- /dev/null +++ "b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Bertalan P\303\263r_0.4930132_2773.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a8fed0f2c580a9db288b0c444b214c750a1464372ab983d9e0491f008e2bac5e +size 8689 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Bettina Heinen-Ayech_0.51334465_2652.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Bettina Heinen-Ayech_0.51334465_2652.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a6c42649d96c5f272194997bff24a483d9d08c4c --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Bettina Heinen-Ayech_0.51334465_2652.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:491ec61ea5e747df1e1ce6259d2116cf9cc882c018b88398bb443f7913badf54 +size 11845 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Bill Gekas_0.48848945_2798.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Bill Gekas_0.48848945_2798.jpg new file mode 100644 index 0000000000000000000000000000000000000000..59b8ec22689b9cc131293c90f3eb48f2742bcd45 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Bill Gekas_0.48848945_2798.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c2ca21337e27af60bba5d8f717f038ce97599b40db359a198c9e4f7d91803e9c +size 11542 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Bill Lewis_0.48635158_2813.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Bill Lewis_0.48635158_2813.jpg new file mode 100644 index 0000000000000000000000000000000000000000..cb62f8d3233513fb5f54b2fd07ff197993dccdfd --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Bill Lewis_0.48635158_2813.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc7768945f68d7b5656d71ac422347a6c7e67ffd1d7d2f8b2b1389ea1c3c72fe +size 9392 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Blek Le Rat_0.49008566_2790.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Blek Le Rat_0.49008566_2790.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fdf1374da9e66d996987b6db0f0badeab836d17f --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Blek Le Rat_0.49008566_2790.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a14949599c30123ec6bc22e83c931abafee9bade21c26a2bec790b5e3768b40b +size 17977 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Bo Bartlett_0.51341593_2585.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Bo Bartlett_0.51341593_2585.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5c187de9c06d5484194085c32d98d834910617de --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Bo Bartlett_0.51341593_2585.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8f3714e14b3ab3a0d0ec86b6d370f015a7dd550e0f4dc7347bb342cc077b6b3c +size 8910 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Bouchta El Hayani_0.49455142_2762.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Bouchta El Hayani_0.49455142_2762.jpg new file mode 100644 index 0000000000000000000000000000000000000000..475e2600e52a2c50cd82aec1e69f037c6acdff17 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Bouchta El Hayani_0.49455142_2762.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:08c2a1b3f83f37b1fc3571e1284e8f09fd82b0c4b12a7e3644502b76fe2b1ba6 +size 10944 diff --git "a/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Bo\305\276idar Jakac_0.4763106_2880.jpg" "b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Bo\305\276idar Jakac_0.4763106_2880.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..dd5a10ed64db5dc0d19a5f8489a5e43c9152c47d --- /dev/null +++ "b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Bo\305\276idar Jakac_0.4763106_2880.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bdb2f7b89bb8271d8882fdbdcd9b379c7eb830dbaa7f452e45241d58c2f2e998 +size 9211 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Brooke DiDonato_0.47680336_1803.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Brooke DiDonato_0.47680336_1803.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1393b101239be11ee6e0ffb78e3f845288a852f2 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Brooke DiDonato_0.47680336_1803.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ddc6b2a24af189e38d7c8d166ee53bc604b3f5724f2a027161ca5c6af821c11 +size 7978 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Buckminster Fuller_0.51607454_2637.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Buckminster Fuller_0.51607454_2637.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1f5f49162294188997e343670b0255efe3863927 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Buckminster Fuller_0.51607454_2637.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de4b620562a3dea560ce4ee5116ff0b62f4ab27f6aa2b7cff1005d72f32c0d8e +size 11443 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Caesar Andrade Faini_0.51971483_2613.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Caesar Andrade Faini_0.51971483_2613.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9c65b7ad16d51cbcab7cd26d0505947af1a04392 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Caesar Andrade Faini_0.51971483_2613.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:20d6fec96208b139f23a74d23e1c18655b4467cc994c41df00aaa1c805e6e211 +size 12414 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Cam Sykes_0.510071_2682.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Cam Sykes_0.510071_2682.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3aff0b1e78302a1d90b0ae48b6528c11edf21daf --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Cam Sykes_0.510071_2682.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:58762817e9999117a0882b452c343897ca9eefc4be0bafe8371cc25d34cd5ef1 +size 10805 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Carl Rahl_0.5040115_2724.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Carl Rahl_0.5040115_2724.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2b154be420b6afd1e1b8dd51fa20c5f230cc1759 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Carl Rahl_0.5040115_2724.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd068aa321275b509d58253d57b0d00975595a68fa6380052cf178c4b8474f96 +size 9594 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Carl-Henning Pedersen_0.4998986_2740.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Carl-Henning Pedersen_0.4998986_2740.jpg new file mode 100644 index 0000000000000000000000000000000000000000..617a12f562ba82507775e7ed1d40a74b7f402ed2 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Carl-Henning Pedersen_0.4998986_2740.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7794ebe01347d45e8e37b8aa3d8b560667e7726c9b5c115ab1eb6c7c32408f86 +size 9464 diff --git "a/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Carlos Enr\303\255quez G\303\263mez_0.49494863_2757.jpg" "b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Carlos Enr\303\255quez G\303\263mez_0.49494863_2757.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..95cd124b4653965a51e344f104b27b8747d540c6 --- /dev/null +++ "b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Carlos Enr\303\255quez G\303\263mez_0.49494863_2757.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:964f15908df12cfcedee65c07d4973bdf63d372866f1642e1c0dddb2aa3f61ba +size 9920 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Caroline Lucy Scott_0.49190843_2244.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Caroline Lucy Scott_0.49190843_2244.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b8abb32ac688ae303b72d9696b4cd865c47a1867 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Caroline Lucy Scott_0.49190843_2244.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:002aa4058b1141dacf052ceff63a9975cb2811e794a7c7a098d33ab98667724f +size 9176 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Caspar Netscher_0.5019529_2729.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Caspar Netscher_0.5019529_2729.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2fd5980921964009b29c31cb15a789104968c455 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Caspar Netscher_0.5019529_2729.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e11e2b7baccb7bca78d6c5a09f91056c1c6e78209dc7a6cb04725e040bd7fb6 +size 10325 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Celia Fiennes_0.51266706_2661.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Celia Fiennes_0.51266706_2661.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f118adb7227a2ee15b76bca8d83c5b236f85eb8e --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Celia Fiennes_0.51266706_2661.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca5cfdfe63cda78b38a8d72dfab64d0e523d2d2e7a167a5b87addf06cca6519e +size 10668 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Charles Mozley_0.5171356_2628.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Charles Mozley_0.5171356_2628.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d217e7628ec362e696e57f7fc33f22d93be061e9 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Charles Mozley_0.5171356_2628.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac1bd88ed05bdd07708e767a515d0f817dbe4ea5127cc06e61aa11b0e64c8524 +size 10857 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Charles Schridde_0.51308405_2654.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Charles Schridde_0.51308405_2654.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e16d6295d30b95f720a612cfc5cac6a6f5bee61a --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Charles Schridde_0.51308405_2654.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a5cb66ad07bf5c1bb13710544430146a2e0a96f773d07a333eed486d65ee717 +size 9582 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Charles Williams_0.510406_2676.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Charles Williams_0.510406_2676.jpg new file mode 100644 index 0000000000000000000000000000000000000000..75183b82161f30f7afbd7735af96aaaecff874ec --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Charles Williams_0.510406_2676.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7431257b1473815709d924908d245f039aefc0574e11260b9036f73e7982cf0c +size 10131 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Chen Zhen_0.5071876_2702.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Chen Zhen_0.5071876_2702.jpg new file mode 100644 index 0000000000000000000000000000000000000000..44d4423e20d895c0212cf279f9d61c1bfe8242ac --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Chen Zhen_0.5071876_2702.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:75b74b85bdc1cfdcec8e2dab0d884f09c50ea701c8831b8feefc68a654dbbd03 +size 11866 diff --git "a/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Christen K\303\270bke_0.49961317_2743.jpg" "b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Christen K\303\270bke_0.49961317_2743.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..22e0bc3bb750c3862e4d378d165be06c4fde54f0 --- /dev/null +++ "b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Christen K\303\270bke_0.49961317_2743.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b57a5331bd5e920dba23f850c48f20337cfa7b941c9c605a6119405a8737dd18 +size 11247 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Christian August Lorentzen_0.50989646_2685.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Christian August Lorentzen_0.50989646_2685.jpg new file mode 100644 index 0000000000000000000000000000000000000000..53671dc0e4283662254e7fa642714c4431133acc --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Christian August Lorentzen_0.50989646_2685.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb13d895960ae07c462dee6fcf8e65359e4d09936e5f653b251d6c86376794db +size 11983 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Christopher Williams_0.5052288_2714.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Christopher Williams_0.5052288_2714.jpg new file mode 100644 index 0000000000000000000000000000000000000000..da13b6f021e48e9a8a1eda9b7f089390a186468f --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Christopher Williams_0.5052288_2714.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e55ef01c11e387b8ab34f450e18710c86be26504b23614afff469466092cc2f +size 10907 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Christopher Wood_0.49360397_2592.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Christopher Wood_0.49360397_2592.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ddd8f4dbe7ca70ab2120155bed7893c93474b126 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Christopher Wood_0.49360397_2592.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd0bbf7eb615309a4bb3991ca6862ebbbd429d9bc7d98a92187695a641753f2c +size 11036 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Clara Miller Burd_0.47797233_2845.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Clara Miller Burd_0.47797233_2845.jpg new file mode 100644 index 0000000000000000000000000000000000000000..621f46a3bea1db4425aba60b8f69f6341fae96da --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Clara Miller Burd_0.47797233_2845.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d7bfdbaea632f2fcc0e26ef5d25b9658a5d34eddf22083a094f5a77172b9954f +size 9871 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Clarice Beckett_0.487809_2804.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Clarice Beckett_0.487809_2804.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9dc03665422b720e92394ba703022176cec21bb4 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Clarice Beckett_0.487809_2804.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b89a208c5d2828d784204bf7d81125597db8777ea443e0b6b9db22208640dd14 +size 9235 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Clovis Trouille_0.47669724_2877.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Clovis Trouille_0.47669724_2877.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0febce07220b8a98b4815af7b94dbc9b562e5d0f --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Clovis Trouille_0.47669724_2877.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f35e3f4b757d4c5e6daef653d1be6728373c6a12c8dd5f5a84177f873e2106cb +size 10320 diff --git a/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Conrad Marca-Relli_0.5148334_2517.jpg b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Conrad Marca-Relli_0.5148334_2517.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ed28b2fe2220742133357e7783f86afbd5a8f425 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/digipa-med-impact/digipa-med-impact_Conrad Marca-Relli_0.5148334_2517.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d85f11aafaf95729411e9dc68dc5a851669656fc42f1595591299dfbd0598b9 +size 9307 diff --git a/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Aguri Uchida_0.5005107_2736.jpg b/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Aguri Uchida_0.5005107_2736.jpg new file mode 100644 index 0000000000000000000000000000000000000000..57084814e24021f553c91b679a72d4e2f68c0f57 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Aguri Uchida_0.5005107_2736.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2012117d487b8d763d6573f800b4014c7c842b0195226f78e91ca50ad1bcee0c +size 9720 diff --git a/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Ai Xuan_0.43150818_3135.jpg b/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Ai Xuan_0.43150818_3135.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c4947285a57d7795a1d27a67c67de6ddbcb61ea9 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Ai Xuan_0.43150818_3135.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e1fc4f060029d8eaf19b66531f9373d7add1ffb3b9ac6222ddf709ffb2bca73 +size 9290 diff --git a/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Ai Yazawa_0.55768114_2304.jpg b/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Ai Yazawa_0.55768114_2304.jpg new file mode 100644 index 0000000000000000000000000000000000000000..18562a0df730f6c7c56839e3294ca3175ee9cb9d --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Ai Yazawa_0.55768114_2304.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8602e67a841c15564d752ba366683d57a0ee41a4347201654f9357fc0fec6222 +size 11619 diff --git a/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Alice Mason_0.48188528_2841.jpg b/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Alice Mason_0.48188528_2841.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d7d37b5ee293fdf4c1e5762a310c043c1baead95 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Alice Mason_0.48188528_2841.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:488024225909685ed535c7d9e3ba347306e8e89cc4a3b9c9be2a89c2623e3fbd +size 11346 diff --git a/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Amanda Sage_0.37731662_2319.jpg b/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Amanda Sage_0.37731662_2319.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4831a98aab8342dbd6b1ee6f548791532785bd98 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Amanda Sage_0.37731662_2319.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:464074db6c409f6e534e7fa8e146dfd5579409fee250602900360f4d18208ffa +size 19178 diff --git a/artists-to-study/ats/thumbnail/portrait/fareast/fareast_An Zhengwen_0.56942475_2204.jpg b/artists-to-study/ats/thumbnail/portrait/fareast/fareast_An Zhengwen_0.56942475_2204.jpg new file mode 100644 index 0000000000000000000000000000000000000000..55df91ab7789e4cfebcbe4c833c099635c0f194a --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/fareast/fareast_An Zhengwen_0.56942475_2204.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d2d8de7403678dee51da0843895e7254957b153d261bc84044a053948db01e3b +size 9960 diff --git a/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Android Jones_0.61023116_1786.jpg b/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Android Jones_0.61023116_1786.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8aba1360313eb6973b67cf6498be357086273e99 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Android Jones_0.61023116_1786.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6d16839084951ff2a46d7f2401c6877d5410d2c819772ac3094301222051b7b6 +size 17657 diff --git a/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Angela Sung_0.391746_3141.jpg b/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Angela Sung_0.391746_3141.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d6adff82f753736e5ffe7aec3b1a5c775dec9e20 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Angela Sung_0.391746_3141.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7fdec6ed335112c8bc8f5d63e2e904e78289890adb6131dedf387fd65494c775 +size 10888 diff --git a/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Ayako Rokkaku_0.61891204_1701.jpg b/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Ayako Rokkaku_0.61891204_1701.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0e8290ea2713309bb79d243e0871766181992e5d --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Ayako Rokkaku_0.61891204_1701.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5870a17cf9bf429151b3ef997a6ec7c3629f97cb969ea0900aff15b0be1073b7 +size 11222 diff --git a/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Bernat Sanjuan_0.45074993_3024.jpg b/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Bernat Sanjuan_0.45074993_3024.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9a7add931969f6e818789b6708dd6b114535bfa5 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Bernat Sanjuan_0.45074993_3024.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:621252138f382503189d7966ee68383170df15a79f216745f336c8ef657e7a20 +size 9505 diff --git a/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Byeon Sang-byeok_0.59200096_1963.jpg b/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Byeon Sang-byeok_0.59200096_1963.jpg new file mode 100644 index 0000000000000000000000000000000000000000..342e8669e10909992324738aea1c994027b46577 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Byeon Sang-byeok_0.59200096_1963.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e47d15a1e0d1282348e76f7b66f5578dca6e37d78d32e26edbac4e2349c99c39 +size 7738 diff --git a/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Byron Galvez_0.39178842_2557.jpg b/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Byron Galvez_0.39178842_2557.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a5d1f94f3db4868399691d7bc0e09a44932b5784 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Byron Galvez_0.39178842_2557.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae16347637119e9e8fedaf39db5b3904d98fbb123333f0467f4820b058f4146d +size 9835 diff --git a/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Cao Zhibai_0.47476804_2883.jpg b/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Cao Zhibai_0.47476804_2883.jpg new file mode 100644 index 0000000000000000000000000000000000000000..00a75da913df051808de48c9adaa6ff8553dc034 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Cao Zhibai_0.47476804_2883.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8cbadfc8ae5ff81d685120545c56db17560dbc74f16c5bc11402e761e68f8ee2 +size 9457 diff --git a/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Charles Martin_0.43582463_3100.jpg b/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Charles Martin_0.43582463_3100.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f306ca905d3ed76a2914965db5c0736f2ce0fd0f --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Charles Martin_0.43582463_3100.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:56cc7ca8703e5579e42032d9c2b286aea5c217577fa8e53b18bcd5151e87355d +size 8991 diff --git a/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Chen Hong_0.46516004_2939.jpg b/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Chen Hong_0.46516004_2939.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8f671c416806de08c66cec91680dd2dcd0ce5469 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Chen Hong_0.46516004_2939.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:125aa3713b48ace47eb86c991ebee429141ea16e78486873518e11dc6b9dcdea +size 9444 diff --git a/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Chen Jiru_0.4553378_3001.jpg b/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Chen Jiru_0.4553378_3001.jpg new file mode 100644 index 0000000000000000000000000000000000000000..56ecc7d43bf086f031fd827f30691cec2af09f5c --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Chen Jiru_0.4553378_3001.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2275183039cd2bf8c14d8ed7a3bdb012a2f8d2e1baa2206981f17097d229674d +size 11624 diff --git a/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Chen Lin_0.45035738_3028.jpg b/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Chen Lin_0.45035738_3028.jpg new file mode 100644 index 0000000000000000000000000000000000000000..932e94a831cacf457c853ca67084751e3a64c9d9 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Chen Lin_0.45035738_3028.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:588370af106391fdeda7aecac591f67ca949434f288c9fb98c06852e64aca6b1 +size 9354 diff --git a/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Cheng Jiasui_0.48889247_2796.jpg b/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Cheng Jiasui_0.48889247_2796.jpg new file mode 100644 index 0000000000000000000000000000000000000000..430f231e1cf3829882ae86eee6df3a23275ed4b8 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Cheng Jiasui_0.48889247_2796.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f895634234d04b3827178c5650e38ebeaff686996e5bd012698ff4181cf80cfb +size 10871 diff --git a/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Cheng Zhengkui_0.57990086_2101.jpg b/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Cheng Zhengkui_0.57990086_2101.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1f57780bd915bc18db94808ca537b485996a9a78 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Cheng Zhengkui_0.57990086_2101.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8341966bc060a83e62a727aba08a98f46bfdaab14bef6a05f5f3e92a34bf9c4e +size 8801 diff --git a/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Ching Yeh_0.46177_2956.jpg b/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Ching Yeh_0.46177_2956.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9573ffd9d72e5983bcfe8b4d34f718bd04e850a7 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Ching Yeh_0.46177_2956.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9469af63e1dcee68e0f30c446fbb19335aa9d392460a5d6caa2aad1508fbac24 +size 8578 diff --git a/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Chizuko Yoshida_0.6233001_1654.jpg b/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Chizuko Yoshida_0.6233001_1654.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b4d684bfb1683ca77c2c8a9fcdbe045856f18bf4 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Chizuko Yoshida_0.6233001_1654.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c4668d0f4b8e7fd676cec5c10d597ffbbddb58b3585268439a3e5380255c3c94 +size 10189 diff --git a/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Choi Buk_0.44892842_3035.jpg b/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Choi Buk_0.44892842_3035.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9ec2a604387c267f977206bfba4713e5c6a0058b --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Choi Buk_0.44892842_3035.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:336197dad6e6867a7218ed6f609f12b90e4fd53552cc4d8e53aab3b97684fe9d +size 9302 diff --git a/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Cui Zizhong_0.47902682_2854.jpg b/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Cui Zizhong_0.47902682_2854.jpg new file mode 100644 index 0000000000000000000000000000000000000000..99608c4704e0521cea7f1aaf91f8de1d594ea212 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Cui Zizhong_0.47902682_2854.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fb09f9070eb6e9814484be07d40dca4d30eaadb8130bb5938d0f69ccf0192183 +size 9477 diff --git a/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Dai Jin_0.4375449_3093.jpg b/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Dai Jin_0.4375449_3093.jpg new file mode 100644 index 0000000000000000000000000000000000000000..51f5c6a7dcf26b9eb25ae6c6fd9d10b7e834c1c0 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Dai Jin_0.4375449_3093.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f9e5128624609a7d5abaec65859db86d009f8f685f73997ac2e87c0a6315c3b3 +size 8561 diff --git a/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Dain Yoon_0.45977795_2975.jpg b/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Dain Yoon_0.45977795_2975.jpg new file mode 100644 index 0000000000000000000000000000000000000000..93069dd8d95c42b087b43dc1e9b191d9109d53fb --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Dain Yoon_0.45977795_2975.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2164f1656ebd892dd80e53b2e394fb4cd28496a8dd276396acb82ffd2412eabd +size 11770 diff --git a/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Dong Yuan_0.4303865_3143.jpg b/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Dong Yuan_0.4303865_3143.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4cf5e0f3bc78819512b14432fd4eb7048b1b0e05 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Dong Yuan_0.4303865_3143.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b72ecd2e339127cb15e18bf1307041b095445269a24fc2fe79c3d521a573499e +size 12760 diff --git a/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Du Qiong_0.48414314_2823.jpg b/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Du Qiong_0.48414314_2823.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4b0110e77beb7ec266fea7a2e0d7bb66af4f219b --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Du Qiong_0.48414314_2823.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4cc63c331db9c8ed0706222b40c1b6c7413a000f310eef016eec0b76d61bff09 +size 8655 diff --git a/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Fang Congyi_0.45240825_3018.jpg b/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Fang Congyi_0.45240825_3018.jpg new file mode 100644 index 0000000000000000000000000000000000000000..24c8558a6a2246e04daa78427263e20444658af9 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Fang Congyi_0.45240825_3018.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c4f876f7406fe65ee5ec215542e5efe6bc6ddb1a470d22eae96229061664bd69 +size 8458 diff --git a/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Fei Danxu_0.4433627_3062.jpg b/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Fei Danxu_0.4433627_3062.jpg new file mode 100644 index 0000000000000000000000000000000000000000..81617b365d0dbfcbe7279c07c95d08a6596cfaf7 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Fei Danxu_0.4433627_3062.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2799ffa181d4f1ecc699ef3c4c96d8c4e47ba8b928940c5b1c2b28178c57c2b8 +size 8852 diff --git a/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Fenghua Zhong_0.56492203_2243.jpg b/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Fenghua Zhong_0.56492203_2243.jpg new file mode 100644 index 0000000000000000000000000000000000000000..389a45e9376d74bb59da0e67fde2a44e11c612e6 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Fenghua Zhong_0.56492203_2243.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d8391dfd53d36918d02ebc654913da65b8d3031cd0910da04e6c21d28932c941 +size 10265 diff --git a/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Fuyuko Matsui_0.5051116_2715.jpg b/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Fuyuko Matsui_0.5051116_2715.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d3bcdf4ddd5f8c2e2cba112a6a31adaaca1a2f1d --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Fuyuko Matsui_0.5051116_2715.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c808d31cd590b2a9b0060f5bb49e3df186d576fcf035194a0fde208b51555d93 +size 10133 diff --git a/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Gao Fenghan_0.5732926_2169.jpg b/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Gao Fenghan_0.5732926_2169.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b9a169f58805b1321541c61fbb9fd97cd9459a31 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Gao Fenghan_0.5732926_2169.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff33ff5aabc1534c434385b47ef63b0e52f5c942118e3c17e84932a129a2e141 +size 10173 diff --git a/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Gao Qipei_0.4860631_2816.jpg b/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Gao Qipei_0.4860631_2816.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2d110ce6c4e4a302da794c8c8bd0fe53247f5444 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Gao Qipei_0.4860631_2816.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8bbc318ae6fe7c84878b600d205b7b1f3b181924558c64a873597230046ecb28 +size 8851 diff --git a/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Gao Xiang_0.5392419_2484.jpg b/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Gao Xiang_0.5392419_2484.jpg new file mode 100644 index 0000000000000000000000000000000000000000..01b2fee44ac2400ce6e0d940bf22f17d01d3b181 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Gao Xiang_0.5392419_2484.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7d11c319cc96f53e306b13f8894a4d4f609b51a1c40e1a640ccb4c289b309749 +size 8613 diff --git a/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Gu Hongzhong_0.4454906_3051.jpg b/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Gu Hongzhong_0.4454906_3051.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d4eb4cb3884de48668c68e42e0da27e0351016f8 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Gu Hongzhong_0.4454906_3051.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f24228f088c05509d60db232b249da284b22a0bd2e2efcfe076a75522cc6946 +size 8774 diff --git a/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Gu Kaizhi_0.6110798_1770.jpg b/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Gu Kaizhi_0.6110798_1770.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2fc7fbb70944d5e909235f5163356f3c0c8682d0 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Gu Kaizhi_0.6110798_1770.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d413ee3c4cdcf21576572020c4f180dfc9c02852ca5cf843ca15769b4954e984 +size 9261 diff --git a/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Guan Daosheng_0.506712_2707.jpg b/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Guan Daosheng_0.506712_2707.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7c9f310586e6f4f38c15fa15ad9be882945b10f3 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Guan Daosheng_0.506712_2707.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa2cdbbefc1f8817ce15161df2b435a19f0fa2b190e53c13a327868f83c5b9f8 +size 7697 diff --git a/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Guo Pei_0.5857794_2028.jpg b/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Guo Pei_0.5857794_2028.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ea311ae361dae4caab26b498036a25049024b990 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Guo Pei_0.5857794_2028.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2cde6cd13e77e7d9dc631d80718c8d71a6bc83e29e6c058f816efff14693b621 +size 20852 diff --git "a/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Gusukuma Seih\305\215_0.60479784_1828.jpg" "b/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Gusukuma Seih\305\215_0.60479784_1828.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..a5b73ceae5900dc910a93b305fcfac09f7eda021 --- /dev/null +++ "b/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Gusukuma Seih\305\215_0.60479784_1828.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:04c58544eabb655a25c1b8ae16aabc50f21f386fe9f691985d7920e4c1e89514 +size 8672 diff --git a/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Hasegawa Settan_0.5647092_2246.jpg b/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Hasegawa Settan_0.5647092_2246.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b7a0579b5d64c61faeedceeac83ba7f6fd104c7f --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Hasegawa Settan_0.5647092_2246.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:627243123ff960eeb0dcf071793dc4ebf93a10db5d7f894259590c7815b27462 +size 11089 diff --git a/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Henry Justice Ford_0.51214355_0883.jpg b/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Henry Justice Ford_0.51214355_0883.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1aec55cc1122cdc08509add368400b5321049cd5 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Henry Justice Ford_0.51214355_0883.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:95c185d80b3dbcea9bf04e82f56f2cc7a3ca58d6a39dc20af172f63cf1a19cc5 +size 13489 diff --git "a/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Hidari Jingor\305\215_0.63388014_1548.jpg" "b/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Hidari Jingor\305\215_0.63388014_1548.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..b4a3a85b24949283326af06b1e3c9808cda5d2a2 --- /dev/null +++ "b/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Hidari Jingor\305\215_0.63388014_1548.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:319c8dc983f071de7b319ce90e5a4ff6ad0ccd44afe14e9e3c9e46be78252b45 +size 12865 diff --git a/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Hideyuki Kikuchi_0.544193_2431.jpg b/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Hideyuki Kikuchi_0.544193_2431.jpg new file mode 100644 index 0000000000000000000000000000000000000000..45f78f62ed3549e0c46cd7990c90281df0b7691b --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Hideyuki Kikuchi_0.544193_2431.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:07001af17452733439dcfc13ecf4dd7fc83dfcc7bef2e3bf73fcf5195d9d8f25 +size 10403 diff --git a/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Hiromitsu Takahashi_0.5805599_2095.jpg b/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Hiromitsu Takahashi_0.5805599_2095.jpg new file mode 100644 index 0000000000000000000000000000000000000000..58d07bd66f9fb80f19c6dcc1de99f9cb62e8ae18 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Hiromitsu Takahashi_0.5805599_2095.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:786e5625783b47bbc206d24cd192039d1d9037ef07330d18a65d253fdc088955 +size 8425 diff --git a/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Hiroyuki Tajima_0.5816242_2078.jpg b/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Hiroyuki Tajima_0.5816242_2078.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f19cbefba4b210689d059cbd517d17571b3d3e9a --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Hiroyuki Tajima_0.5816242_2078.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d983db16c4d7506250dbd1d63d5464f993295d9a182f61e296257cc5a366411 +size 12928 diff --git "a/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Hishida Shuns\305\215_0.751617_0376.jpg" "b/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Hishida Shuns\305\215_0.751617_0376.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..be73f3ef610686a8b5a760c39c9b716b18493a0d --- /dev/null +++ "b/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Hishida Shuns\305\215_0.751617_0376.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f3a1e768a85682e5c7d95c7c6f583ec50bdb1eeae2e50836671ee8eedf5fb1d +size 8937 diff --git a/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Hisui Sugiura_0.603034_1853.jpg b/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Hisui Sugiura_0.603034_1853.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c7bea0d0fd874b9b87484912693928bb6c377fcb --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Hisui Sugiura_0.603034_1853.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d4ca9df085cc0f250c20b2c12cb50cd6b39b1248a2cee9b33b1e20503c3fa5d +size 8838 diff --git a/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Hu Jieqing_0.45889485_2983.jpg b/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Hu Jieqing_0.45889485_2983.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d35388b6f4da89c1c979e393e4791204bf2ee586 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Hu Jieqing_0.45889485_2983.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e93ea64f386f93adb3ea80483b907ff9d26e35b87d7dc649befae8df7bce050 +size 7827 diff --git a/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Hu Zaobin_0.5510481_2366.jpg b/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Hu Zaobin_0.5510481_2366.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9b81c8de19c36c3f0ad13fd2619246769b43b079 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Hu Zaobin_0.5510481_2366.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f0d610d06982c75c21cb7dbb03fe56e48eb699c66efa031a0d040f3d6f68ac04 +size 10053 diff --git a/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Huang Ding_0.45233482_3019.jpg b/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Huang Ding_0.45233482_3019.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5b90d89be631b8f1347fb752e76912ef281f01a4 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Huang Ding_0.45233482_3019.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c6e4a65f7ff5e1f90148b53dd31cf7638872e3f8593823a5de39f0df7fcd8ff +size 9782 diff --git a/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Huang Gongwang_0.47269204_2894.jpg b/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Huang Gongwang_0.47269204_2894.jpg new file mode 100644 index 0000000000000000000000000000000000000000..97d65345a7980727dd5eaf0e9dfb162710d40c8c --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Huang Gongwang_0.47269204_2894.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40ef396b4fbb49f3628ee70d7f4f4151e33025da3867edafd656d19739fcd772 +size 7669 diff --git a/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Huang Guangjian_0.49286693_2775.jpg b/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Huang Guangjian_0.49286693_2775.jpg new file mode 100644 index 0000000000000000000000000000000000000000..27b6dd9edbf4166c865d96f4c1d7f41c80325cb6 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Huang Guangjian_0.49286693_2775.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b3284036220016613fb695784dcee74e8fad0227f40d969063f0d2a1e0a8764 +size 12883 diff --git a/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Huang Ji_0.48611963_2814.jpg b/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Huang Ji_0.48611963_2814.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d8b485a8045636eb620d542c431d90e9ca607ab1 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Huang Ji_0.48611963_2814.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc0b7b21b2151cf9620697c36fa852121a4e549c22fe0a64cbe4d4ed9d86f4e9 +size 8827 diff --git a/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Huang Tingjian_0.6290358_1597.jpg b/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Huang Tingjian_0.6290358_1597.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a592431e1607c670bf0f8aa5e26b913bf32b9c24 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Huang Tingjian_0.6290358_1597.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:614b3720585c7985137cdfa4e1b1c01c337d52ce0c813f3212c359f6b944d2d9 +size 8137 diff --git a/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Ian Miller_0.42153555_1871.jpg b/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Ian Miller_0.42153555_1871.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b262df0b144f2e1a23b96152e0583957271fc0aa --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Ian Miller_0.42153555_1871.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d5f1eb98cd9418f2d8b1d105404b8a348f255beb38e5938485d457d049d3e4d +size 18471 diff --git a/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Inoue Naohisa_0.5809933_2087.jpg b/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Inoue Naohisa_0.5809933_2087.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4fe9a4c5a37d94adfe23514ceb2ea48d6a885bdc --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Inoue Naohisa_0.5809933_2087.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d4ec96645b7e9e4c1c56b487c1c00676de8518ca685f21417a0a88e7a6d218b2 +size 7737 diff --git a/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Josh Kao_0.45725146_2992.jpg b/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Josh Kao_0.45725146_2992.jpg new file mode 100644 index 0000000000000000000000000000000000000000..dcdd78499637c93753bd4640e2ca0e898126a809 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Josh Kao_0.45725146_2992.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a805a47c4a3ff461c014094473c86ec9a18a8ffee7cd961e9fc319844d73a79 +size 10403 diff --git a/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Naomi Okubo_0.5782754_1587.jpg b/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Naomi Okubo_0.5782754_1587.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e0986de7bde6dc922927e174f955f2767ddb805f --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Naomi Okubo_0.5782754_1587.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c3ae110c9e44f7a7535d8e01a26af02bc579194b3cfe6068b56fa5197064750c +size 20754 diff --git a/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Naoto Hattori_0.621745_1299.jpg b/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Naoto Hattori_0.621745_1299.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e24ade2c7e618200c5c2c31f0f14ccd74a29a59b --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Naoto Hattori_0.621745_1299.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b86321063178cce4f8e3c370dcc4d0ce1e28ffebfb3020d7218be5954d3bdb3a +size 15122 diff --git a/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Ni Chuanjing_0.46254826_2951.jpg b/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Ni Chuanjing_0.46254826_2951.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8654b1d08af43835083bae7975416779824c02ed --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Ni Chuanjing_0.46254826_2951.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed6bbe7330eb24749b435c33f9bcdfb3b92380d582b017b3c5931dc2f43c6c22 +size 12229 diff --git a/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Nobuyoshi Araki_0.70108867_0777.jpg b/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Nobuyoshi Araki_0.70108867_0777.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e86b928ecf500916d065a2d8e57ca95144eaf080 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Nobuyoshi Araki_0.70108867_0777.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:602b7d69b0b36654a656b957ad49dc5fedd7a615eed7661cdaa1f8151735d34c +size 11174 diff --git a/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Ogawa Kazumasa_0.61427975_1740.jpg b/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Ogawa Kazumasa_0.61427975_1740.jpg new file mode 100644 index 0000000000000000000000000000000000000000..34cf60083cdb06ed010b947c69beac9cbf39eeb3 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Ogawa Kazumasa_0.61427975_1740.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:473f09e4ce998fba52414271ac4ff0017c3fa3fdbfe4c28ee1688e3c23864b31 +size 9243 diff --git a/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Qian Xuan_0.50150526_2731.jpg b/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Qian Xuan_0.50150526_2731.jpg new file mode 100644 index 0000000000000000000000000000000000000000..33d9b7c85b9f1ad515aa45618730b5d6c2fa66c1 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Qian Xuan_0.50150526_2731.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b64efca23a723e48eefbfcc103a3736215f84c9dbfa5c5a283cbe4dd83bce00d +size 8488 diff --git a/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Sangyeob Park_0.49150884_2783.jpg b/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Sangyeob Park_0.49150884_2783.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d7883ba89b51f2624061add0821df5cad544e081 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Sangyeob Park_0.49150884_2783.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a58a38b6bc2277a31d90b32936ba373929f71202ea1d1b0304afab0239957868 +size 9147 diff --git a/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Shin Jeongho_0.5092497_2690.jpg b/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Shin Jeongho_0.5092497_2690.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3a57b374234532de7c6e8fcce118bf73375fb319 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Shin Jeongho_0.5092497_2690.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3607904ecb3b11391162de226e2282eae722e9c0a279daec8711740de170d1c0 +size 7807 diff --git a/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Sou Fujimoto_0.5162528_2634.jpg b/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Sou Fujimoto_0.5162528_2634.jpg new file mode 100644 index 0000000000000000000000000000000000000000..88e72d5e4d9f06314690620cadbff26352ca96f6 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Sou Fujimoto_0.5162528_2634.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d9aa1a2fd35f93eba329d9502c03b6dc83db38787af0aa1ea9bb112bb9525f7 +size 17975 diff --git a/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Susan Luo_0.43198025_3130.jpg b/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Susan Luo_0.43198025_3130.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7166b6b4ffb7905e03ad9e73dc3b3ced8d99d649 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Susan Luo_0.43198025_3130.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f8ea746cabef744b9288582a8861dfb4fdbe5f0a069305fd12284545dc0b6b6e +size 9064 diff --git a/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Tadao Ando_0.57429105_2155.jpg b/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Tadao Ando_0.57429105_2155.jpg new file mode 100644 index 0000000000000000000000000000000000000000..888817cf6380ffc305c94830fbd2026b02e5cc56 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Tadao Ando_0.57429105_2155.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c5b0212411ba6a5e3a8fe9a2d39c5c4d05232a1434e4859f2ef04f43674bdc16 +size 9926 diff --git a/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Toshiharu Mizutani_0.48315164_2832.jpg b/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Toshiharu Mizutani_0.48315164_2832.jpg new file mode 100644 index 0000000000000000000000000000000000000000..eeb79b98a1c28d5b0209217bf6c7250cc5498dbf --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Toshiharu Mizutani_0.48315164_2832.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:acb540d35df08a90bd84d3e9ace0b20e943f39e26e63fdcd1dec411a82b8d136 +size 9928 diff --git a/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Yasutomo Oka_0.5731342_2172.jpg b/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Yasutomo Oka_0.5731342_2172.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1a262870eecc0bd9f6579f0a71bc9ddfd2fd6f07 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Yasutomo Oka_0.5731342_2172.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:36b4eb22cb6e0e5409bb8f9a1b81a07c9b350959cc73d784e37d122fd44df307 +size 8618 diff --git a/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Yoshitaka Amano_0.5491855_2381.jpg b/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Yoshitaka Amano_0.5491855_2381.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1f9ea9c935e687ed62f841427d578ad2a5219367 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Yoshitaka Amano_0.5491855_2381.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40ff87c0c8c1f9068a0a63ed6ca9cc582c774a40b78e6f7f34e3498c0b7edfce +size 12244 diff --git a/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Zhang Kechun_0.6595939_1269.jpg b/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Zhang Kechun_0.6595939_1269.jpg new file mode 100644 index 0000000000000000000000000000000000000000..858cba6bd8591e1f5777fdbde762f6dcda5ad04f --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/fareast/fareast_Zhang Kechun_0.6595939_1269.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e101fd4a27f3951d541399dc6d3ff8242dce3545adeb3596e0ed175e803a23c +size 8096 diff --git a/artists-to-study/ats/thumbnail/portrait/fareast/fareast_tokyogenso_0.45406622_3007.jpg b/artists-to-study/ats/thumbnail/portrait/fareast/fareast_tokyogenso_0.45406622_3007.jpg new file mode 100644 index 0000000000000000000000000000000000000000..17566f55123cd5b1b7a02d6d707120a3de502884 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/fareast/fareast_tokyogenso_0.45406622_3007.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:000bee8f2684deda4896dddfac580fb143770889fcd9d5b8e4216902bf4fa14e +size 12749 diff --git a/artists-to-study/ats/thumbnail/portrait/fineart/fineart_A. R. Middleton Todd_0.50988734_2547.jpg b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_A. R. Middleton Todd_0.50988734_2547.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1c7d59b074edfc6dfa33d956520f995325bd224a --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_A. R. Middleton Todd_0.50988734_2547.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:876db556973cb53324ea04c9b74cbfd83e1ebb2e7198ab34523a4853e3006a36 +size 10739 diff --git a/artists-to-study/ats/thumbnail/portrait/fineart/fineart_A.B. Frost_0.5375025_2496.jpg b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_A.B. Frost_0.5375025_2496.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0ed92f12664add4389fe6c99f7116c4445b6f527 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_A.B. Frost_0.5375025_2496.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aea4d886bb8f399e513925518ccbca50234130501c671a3d67158c0efb5b908b +size 11072 diff --git a/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Aaron Douglas_0.6437089_1452.jpg b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Aaron Douglas_0.6437089_1452.jpg new file mode 100644 index 0000000000000000000000000000000000000000..91f2dd08c9f85485965921dc1f583167c1418a35 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Aaron Douglas_0.6437089_1452.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f8b9059119c18b52be2e5f2ad0613c6b195bc88dfa20ab3d3b8b59c1409a5273 +size 15632 diff --git a/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Aaron Horkey_0.6676864_1172.jpg b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Aaron Horkey_0.6676864_1172.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2e364a854bbc71fd4f7902fd196bf7c8b755e7a6 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Aaron Horkey_0.6676864_1172.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5cdabe6302abf2ddfba377e982054915653e04bb6f74910076e52c7638024c72 +size 20392 diff --git a/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Aaron Jasinski_0.57948315_1564.jpg b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Aaron Jasinski_0.57948315_1564.jpg new file mode 100644 index 0000000000000000000000000000000000000000..50530fe9aad9c141cd56a1edff465a6ec4758914 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Aaron Jasinski_0.57948315_1564.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b200644c76468cd0bd879973bb6c69c6d82baf4d0af412a10c2262316701667d +size 14485 diff --git a/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Abbott Fuller Graves_0.6025608_1857.jpg b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Abbott Fuller Graves_0.6025608_1857.jpg new file mode 100644 index 0000000000000000000000000000000000000000..47bc0f980f92e343d70f3cd908ed4386bf17a10e --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Abbott Fuller Graves_0.6025608_1857.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a53c472b07f5cfde9569069e2760d6aca797ec9cca60c3530a88f45e2e101c24 +size 12223 diff --git a/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Abbott Handerson Thayer_0.63428533_1545.jpg b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Abbott Handerson Thayer_0.63428533_1545.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f5f8d2c765da9cfd9e0350f2435b60fef111bdc0 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Abbott Handerson Thayer_0.63428533_1545.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:68831c0b4b8d7c76dcc1444a145cecc46f6a3da8158ba4454a46ccfbc9d8f190 +size 10087 diff --git a/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Abraham Bloemaert_0.68036544_1007.jpg b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Abraham Bloemaert_0.68036544_1007.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6c28fb6f114e941b1aa10ecdd979a338ecdaa3da --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Abraham Bloemaert_0.68036544_1007.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e7a3948645af49ef43941f2b2f11490e4d26b6ee3bb7943a5a2457f6fb0856c +size 11473 diff --git a/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Abraham Bosschaert_0.6535562_1341.jpg b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Abraham Bosschaert_0.6535562_1341.jpg new file mode 100644 index 0000000000000000000000000000000000000000..dfdd8b370b2785ddcdde787b7caba2e507e2cd27 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Abraham Bosschaert_0.6535562_1341.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c10cef7e6c1703362c3dcc7362dfb9d6a115f103ff72b7cb56f1649c0b3a2df1 +size 13511 diff --git a/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Abraham Hondius_0.574326_2154.jpg b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Abraham Hondius_0.574326_2154.jpg new file mode 100644 index 0000000000000000000000000000000000000000..409a0630acb09eedacd312ad1fde8f904dd65cb1 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Abraham Hondius_0.574326_2154.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d13c4a90e6f4399d676c9fd9a229ae712856f65ebc5f212726d9ba46a915a9aa +size 9819 diff --git a/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Abraham Mignon_0.60605425_0835.jpg b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Abraham Mignon_0.60605425_0835.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bd1d5acaa2a48e64eed3e3e662ad438b3af957f2 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Abraham Mignon_0.60605425_0835.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:43778e844aad963a883cce1292561a24f50f7cbcce4a183fdb8c1dbbbba1f8ce +size 11583 diff --git a/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Abraham Pether_0.66922426_1034.jpg b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Abraham Pether_0.66922426_1034.jpg new file mode 100644 index 0000000000000000000000000000000000000000..04a505c2fad742d7d6ee4aa8caff50f3575ebea9 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Abraham Pether_0.66922426_1034.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:630c0ee18333b5874a8ce23304ac7870b03c0e7ca845ce3fd75515ceeefa2958 +size 12711 diff --git a/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Abraham Storck_0.5929502_1952.jpg b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Abraham Storck_0.5929502_1952.jpg new file mode 100644 index 0000000000000000000000000000000000000000..cb99f2e1f76d25ccac0ae61cbafec583a4efa2dc --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Abraham Storck_0.5929502_1952.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:57fa33475196309a2ec4b17ee3b5626d83e9c2a7405ad47439c1d7b2c093b0dc +size 13148 diff --git a/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Abraham Willaerts_0.5966594_1160.jpg b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Abraham Willaerts_0.5966594_1160.jpg new file mode 100644 index 0000000000000000000000000000000000000000..174887c994e70b06bda3f7769ba3937a6d6cfd32 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Abraham Willaerts_0.5966594_1160.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f97923a455dec33e9a266aaf7e8b1421817d221b09ea9c319c814d3e116f6f8d +size 10321 diff --git a/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Abraham de Vries_0.5859101_1674.jpg b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Abraham de Vries_0.5859101_1674.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f04c1dbb8c9c3eedbe404a6675ee5bd94068d3b1 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Abraham de Vries_0.5859101_1674.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f9d71a948e4a11f6c181605059a79b0e323baa448a1354d28836cf4117cab05c +size 11520 diff --git a/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Abraham van Beijeren_0.6356113_1446.jpg b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Abraham van Beijeren_0.6356113_1446.jpg new file mode 100644 index 0000000000000000000000000000000000000000..22e41f3b1932ee23ff835efd9659accdd82c6e16 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Abraham van Beijeren_0.6356113_1446.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e1a2f583b968f178184a9ef28149bb92d14d92da336f29f8356a0ffc5aaf96a7 +size 10942 diff --git a/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Abraham van Calraet_0.63841593_0914.jpg b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Abraham van Calraet_0.63841593_0914.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5178811c9d637c3cd39b875bd60668c45ed65598 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Abraham van Calraet_0.63841593_0914.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a8a30fdcb70a846bca7d8318945667d6efa6f9fbc63c3a42f30711f1d397ac6c +size 10394 diff --git a/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Abraham van den Tempel_0.66463804_0957.jpg b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Abraham van den Tempel_0.66463804_0957.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d0b9dcf25a73b54bb542120eec79895528a36fcb --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Abraham van den Tempel_0.66463804_0957.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7eca15328fffac79cc5ebbc594df06b12234c3dcd1bbe8774120fbbb97df8f1c +size 13137 diff --git a/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Abram Arkhipov_0.6550962_1326.jpg b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Abram Arkhipov_0.6550962_1326.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4cd293917568d498ed4107941997e9a0e959ea1e --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Abram Arkhipov_0.6550962_1326.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e19061d9f5c2056279269f817fd51407eecfa6b25a67eb56da109b1c07cabaa +size 10353 diff --git a/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Abram Efimovich Arkhipov_0.60128385_1866.jpg b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Abram Efimovich Arkhipov_0.60128385_1866.jpg new file mode 100644 index 0000000000000000000000000000000000000000..735a7c00e1e6e09dbeb6a91c9cc3784bf0acbb55 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Abram Efimovich Arkhipov_0.60128385_1866.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:46404bfb80b43482c3c5ec752f2da5fd6b91c9daa1e9b239c9f152524fe0e716 +size 12022 diff --git a/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Achille Leonardi_0.56674325_2228.jpg b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Achille Leonardi_0.56674325_2228.jpg new file mode 100644 index 0000000000000000000000000000000000000000..66fc48b0662d5da740f2d3335cb34735c3f127a4 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Achille Leonardi_0.56674325_2228.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:20a6619178d1b17466c5decf256d3bbac613a8873d53b4e9b54de0724d022a71 +size 10212 diff --git a/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Ada Hill Walker_0.52207166_2591.jpg b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Ada Hill Walker_0.52207166_2591.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6f1fca9c63ebb419c7a4920ecb6bbf96592de85c --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Ada Hill Walker_0.52207166_2591.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5292f84ac8dd2ea837e36c5f6df0316948bb1045c69da3b0d23d916c9c4e2077 +size 10874 diff --git a/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Adam Elsheimer_0.6716068_0971.jpg b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Adam Elsheimer_0.6716068_0971.jpg new file mode 100644 index 0000000000000000000000000000000000000000..004580a2dad5b1ab3d5d51a3ca2d590c769ca370 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Adam Elsheimer_0.6716068_0971.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f30d9cc7fb4616a8856a46cf153005a859348e8513c6d787a1093bcc8f5d58e +size 13299 diff --git "a/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Adam Szentp\303\251tery_0.4434548_3060.jpg" "b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Adam Szentp\303\251tery_0.4434548_3060.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..1ffd5327713e94eec262b6495546575ded580441 --- /dev/null +++ "b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Adam Szentp\303\251tery_0.4434548_3060.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f9d769fee577f73ad10f0b3405c93158921aa503d663e59a0d5ee79792a3080a +size 10895 diff --git a/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Adi Granov_0.40670198_2874.jpg b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Adi Granov_0.40670198_2874.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d9946ceaf56c5cb8e92e1c57c3a5b8ac91e0daaf --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Adi Granov_0.40670198_2874.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a8271f11a7b26081936182662a31c3c48a0d198af78847c52dabd5db4369cf7 +size 10835 diff --git a/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Adolf Bierbrauer_0.56129396_1700.jpg b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Adolf Bierbrauer_0.56129396_1700.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f4eca8fd9a51917be5bc40b4d2bdc890c698f226 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Adolf Bierbrauer_0.56129396_1700.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c4b2b2e749eaaab940c012e7cbd10b99d853b94d93611b01d51c0a755b7eeef +size 11939 diff --git a/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Adolf Born_0.55848217_2294.jpg b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Adolf Born_0.55848217_2294.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2d5e9d9d49626e296bfcacd7271393fcbce0ea38 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Adolf Born_0.55848217_2294.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28452aaa0f8dadbe625eba08f707d7d1d8c0896f619fa451ff4d21c286fcae03 +size 11040 diff --git a/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Adolf Dietrich_0.590169_1453.jpg b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Adolf Dietrich_0.590169_1453.jpg new file mode 100644 index 0000000000000000000000000000000000000000..11ed0b381803ca884deaf632cb1214bfc51de062 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Adolf Dietrich_0.590169_1453.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c5de8ceba84e3f561c67bebc5b199baedb1754c82d13f74ae032f364762656dc +size 10596 diff --git "a/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Adolf F\303\251nyes_0.54192233_1807.jpg" "b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Adolf F\303\251nyes_0.54192233_1807.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..853eb5d2b93ce92f7e16ba0151a39207e1026c9d --- /dev/null +++ "b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Adolf F\303\251nyes_0.54192233_1807.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:211152d7d0fca86057914bf7d2f459b1885c33214edf61cda60fd9acd3475bf7 +size 9516 diff --git "a/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Adolf Hir\303\251my-Hirschl_0.5946784_1625.jpg" "b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Adolf Hir\303\251my-Hirschl_0.5946784_1625.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..ebd66a0c5c3b23e5f9cb02805af216c0c3703ee6 --- /dev/null +++ "b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Adolf Hir\303\251my-Hirschl_0.5946784_1625.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cfbd1759265a21ccaa8705d452c5278c0f5a30affc6abe2a77703a270d8fcaec +size 10010 diff --git "a/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Adolf H\303\266lzel_0.5303149_2541.jpg" "b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Adolf H\303\266lzel_0.5303149_2541.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..fba4fbfcac56d0f6da76462bce9ebf77765b0a61 --- /dev/null +++ "b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Adolf H\303\266lzel_0.5303149_2541.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff9f02f776e45d9fc4c356cb9f95dad10ff91599de271d71e84a2233fcbe6db9 +size 10311 diff --git "a/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Adolf Schr\303\266dter_0.55316544_2345.jpg" "b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Adolf Schr\303\266dter_0.55316544_2345.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..03e35e71650378e152a1b5dca6e8479ba69ca979 --- /dev/null +++ "b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Adolf Schr\303\266dter_0.55316544_2345.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b904fafc92ffe8942faf5a9841652e73508630fbc4d7c33f56413c169c55b00a +size 11686 diff --git "a/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Adolfo M\303\274ller-Ury_0.57944727_2108.jpg" "b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Adolfo M\303\274ller-Ury_0.57944727_2108.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..a2b996629d7df0d63e867413ebb0d7630560b02f --- /dev/null +++ "b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Adolfo M\303\274ller-Ury_0.57944727_2108.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:091f827635cc78bf22b3195b92a73a779754830359afe733ea9293c7da685119 +size 9497 diff --git a/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Adolph Menzel_0.6455246_1435.jpg b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Adolph Menzel_0.6455246_1435.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a6f629f08b6586b1eb0be905cc590256a026b20b --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Adolph Menzel_0.6455246_1435.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:901dc77d1a6f29d6d53f48bd94c4cb76f1d77decd82dc05ce681a3a3ccab2e8e +size 13282 diff --git a/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Adolphe Willette_0.6396935_1486.jpg b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Adolphe Willette_0.6396935_1486.jpg new file mode 100644 index 0000000000000000000000000000000000000000..17b09ff56882af3e54c2865b41d41538f6769dc2 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Adolphe Willette_0.6396935_1486.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e52f9e5aa9eb1f7508d73af65f6684a10858b6ea512e1587cc1b1910edd8c3b9 +size 11662 diff --git a/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Adriaen Brouwer_0.6815058_0998.jpg b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Adriaen Brouwer_0.6815058_0998.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b6c6d8b2ed163d406de73b26a3b8dd21bb7b225a --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Adriaen Brouwer_0.6815058_0998.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dcf6e49b3d26a55e430a508e9ce1fbda4a9c23dd2fa8c497fd2c130617b2a0d8 +size 11284 diff --git a/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Adriaen Coorte_0.6670663_1175.jpg b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Adriaen Coorte_0.6670663_1175.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fff9b89835bd53ecf498383e34d5351f58b381eb --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Adriaen Coorte_0.6670663_1175.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9285f66deacf3b0d86c5185c285d134061fb27151a89a7bb60a6f6c1092ed6cb +size 10999 diff --git a/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Adriaen Hanneman_0.6514815_1364.jpg b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Adriaen Hanneman_0.6514815_1364.jpg new file mode 100644 index 0000000000000000000000000000000000000000..43ccb234c8d58bf75d9166ffbf57efbda2fd2fe3 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Adriaen Hanneman_0.6514815_1364.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c9813379c0d80582776f4e3fb39d7608323148c78353e8cfbdb332ae4067f866 +size 11496 diff --git a/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Adriaen Isenbrant_0.6475428_1415.jpg b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Adriaen Isenbrant_0.6475428_1415.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b0fad682c9fcdcfb54d797e7a875cd367211b9ac --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Adriaen Isenbrant_0.6475428_1415.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28f68e73b8303bc7dd073ae41ec43603cc85d31135f513307951c40990b4634a +size 11895 diff --git a/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Adriaen van Ostade_0.67220736_1121.jpg b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Adriaen van Ostade_0.67220736_1121.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9d7e5df817e0488f174ea1fc0a3af3196fc5951d --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Adriaen van Ostade_0.67220736_1121.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:76ea604e2f30b6bbf2e44aab2db6650fbb179e00b978c204a44c8195b71484b0 +size 10322 diff --git a/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Adriaen van Outrecht_0.67682564_1052.jpg b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Adriaen van Outrecht_0.67682564_1052.jpg new file mode 100644 index 0000000000000000000000000000000000000000..38aaa6e3e07819bb4a3d42dee3b6af86e23dbc24 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Adriaen van Outrecht_0.67682564_1052.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c6787d7ccb67b6caa7bb44ffaf27a9c1905b7abb66b0e05a9d6d653bbdb4a4c +size 10927 diff --git a/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Adriaen van de Velde_0.69716156_0824.jpg b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Adriaen van de Velde_0.69716156_0824.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c4d9d8a47d0291d0953568b85ea256a798c3e0b6 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Adriaen van de Velde_0.69716156_0824.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:53d01d2086354c07a56e782bfb0cb0fe6c03abf77f75058a74002ee3a6a3cb3f +size 12033 diff --git a/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Adriaen van de Venne_0.6899867_0903.jpg b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Adriaen van de Venne_0.6899867_0903.jpg new file mode 100644 index 0000000000000000000000000000000000000000..98c020665de434ea4667ffd58fcb1c3735b62d49 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Adriaen van de Venne_0.6899867_0903.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d1402dd942debf0a3006021ad2d134c64178c6497ef187b5fe1f4c17af4ec816 +size 12398 diff --git a/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Adriaen van der Werff_0.638286_1253.jpg b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Adriaen van der Werff_0.638286_1253.jpg new file mode 100644 index 0000000000000000000000000000000000000000..87517544dfa6484acd2467a17d39ece9eb6d264b --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Adriaen van der Werff_0.638286_1253.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e719252dcd1640f10f83549eeb155ade8fef1a9e9d248f0e2a904e5a5b3a0809 +size 10579 diff --git a/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Adrianus Eversen_0.58259964_0953.jpg b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Adrianus Eversen_0.58259964_0953.jpg new file mode 100644 index 0000000000000000000000000000000000000000..74de3c1764668b0ca37db54c03d971784cbb65c3 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Adrianus Eversen_0.58259964_0953.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:08b0d036878ccb142ba7f77e5a17de97728af669b7d354e8971adad8aa49db0f +size 9819 diff --git "a/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Ad\303\251la\303\257de Labille-Guiard_0.6066263_1331.jpg" "b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Ad\303\251la\303\257de Labille-Guiard_0.6066263_1331.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..3cf1bf3804ba0c74a8b131411e720bd439fd48f2 --- /dev/null +++ "b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Ad\303\251la\303\257de Labille-Guiard_0.6066263_1331.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:732fafaadc03a4c1d079397ec26ba1023899cf00b5c682422703d9af1bf4480b +size 11855 diff --git "a/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Ad\303\251la\303\257de Victoire Hall_0.539939_2476.jpg" "b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Ad\303\251la\303\257de Victoire Hall_0.539939_2476.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..8b87ddaa7a72d0f8b431bc50e346dc8daed0c138 --- /dev/null +++ "b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Ad\303\251la\303\257de Victoire Hall_0.539939_2476.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4661d41724ebf34844e56982f62bcbeacb0e6477cd4cef7d68198f302ee09ffc +size 9864 diff --git a/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Aelbert Cuyp_0.7033657_0761.jpg b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Aelbert Cuyp_0.7033657_0761.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fc9bf0c15ed3dea923b58fa8e25e623b0d380142 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Aelbert Cuyp_0.7033657_0761.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:42293d7e1ace4a26b77c6c342c827112c6b7f06c388fe1ba849f6b88137bfbe9 +size 13075 diff --git a/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Aert van der Neer_0.6159286_0941.jpg b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Aert van der Neer_0.6159286_0941.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9d0902c1f0639a255cb7bd5cb0a572a81334a020 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Aert van der Neer_0.6159286_0941.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:80cc4432493a98b0fb9d538b968d168bb761706884d79f8f278adc0b2c09195a +size 8266 diff --git a/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Aertgen van Leyden_0.6951305_0843.jpg b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Aertgen van Leyden_0.6951305_0843.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d75057b1149915ce7557e2216096ed0fba174520 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Aertgen van Leyden_0.6951305_0843.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a6564cb3c6c48627ef120dabf86d2a6b76566962ee442088262e9a230a5a886 +size 15717 diff --git a/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Agnolo Bronzino_0.6787985_1033.jpg b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Agnolo Bronzino_0.6787985_1033.jpg new file mode 100644 index 0000000000000000000000000000000000000000..eccd84e565893049b9dfce4700b1ea0f1dac5807 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Agnolo Bronzino_0.6787985_1033.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f6c92100925612ce3422fa9dbdd3675833d6acc6dfad5e43b7122285c3dc6751 +size 12983 diff --git a/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Agnolo Gaddi_0.79369193_0226.jpg b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Agnolo Gaddi_0.79369193_0226.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e1ad9cd641dae2037775aaa5f7a6ddcab19554dd --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Agnolo Gaddi_0.79369193_0226.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8358a696e549b4fdfbbf401899f6f4540687446efba04eb68a61b1e11df4705e +size 17869 diff --git a/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Agostino Arrivabene_0.61166185_0881.jpg b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Agostino Arrivabene_0.61166185_0881.jpg new file mode 100644 index 0000000000000000000000000000000000000000..20a8fb0f1c5ca1ae7fe3a0a22dbe470befd1ffbc --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Agostino Arrivabene_0.61166185_0881.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff3cb8c33f46ddfb7d5b83f11d42c90ab55f01254c86aacaa521020378b59b97 +size 8709 diff --git a/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Agostino Carracci_0.7128167_0667.jpg b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Agostino Carracci_0.7128167_0667.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4c955f88a30c20f35f5e70217b8f53424789e74d --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Agostino Carracci_0.7128167_0667.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e71bedfef5ea85dd4a033dd355ee9120e5817191af72848693c9615770c6957f +size 15167 diff --git a/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Agostino Tassi_0.59265685_1955.jpg b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Agostino Tassi_0.59265685_1955.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f4230efa342703b3fc85db733f364d6b1f5fa6aa --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Agostino Tassi_0.59265685_1955.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f6b8c6d9f16e57a5be6e31a8aadd81a0a988935ea12ceda681956330a73dae6 +size 9748 diff --git "a/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Agust\303\255n Fern\303\241ndez_0.53403986_2514.jpg" "b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Agust\303\255n Fern\303\241ndez_0.53403986_2514.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..6c7b42e4ccbba8194dc83df1a30e9e758f2f521b --- /dev/null +++ "b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Agust\303\255n Fern\303\241ndez_0.53403986_2514.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01c5d4497e482c74f755db02304644beb8c5680ad6616e7e7793d01875e0ca94 +size 11139 diff --git a/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Akseli Gallen-Kallela_0.66927314_1154.jpg b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Akseli Gallen-Kallela_0.66927314_1154.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d863b7402b2cc3963635f1d7795a5bea4393c4bc --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Akseli Gallen-Kallela_0.66927314_1154.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:efeb7f241aba9cd86fad1d968fa966d515b75a550e43660c61a85106bf650e9f +size 11403 diff --git a/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Al Capp_0.6239494_1646.jpg b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Al Capp_0.6239494_1646.jpg new file mode 100644 index 0000000000000000000000000000000000000000..46296f261e4f5bc36c5e31d496184fd55961b449 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Al Capp_0.6239494_1646.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a98d84efd02a322368a013edc138c69f3b699f7d4c55842905abca921316d44f +size 18368 diff --git a/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Al Feldstein_0.6087723_1797.jpg b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Al Feldstein_0.6087723_1797.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f6dc765f620edf8137df739cde4ce5317c9679f5 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Al Feldstein_0.6087723_1797.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:36bdca35eeb3216899765d5ae20116871056536703c3f77be3087169eb2cc691 +size 18924 diff --git a/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Alan Bean_0.57788515_2118.jpg b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Alan Bean_0.57788515_2118.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b7375a9c99cc101a28c5406023e91a31810b5e9c --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Alan Bean_0.57788515_2118.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:74cece28f7c01ff63b43939410046704fa83867f042b2fdef091d4831cb1427b +size 21964 diff --git a/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Alan Davis_0.6029676_1854.jpg b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Alan Davis_0.6029676_1854.jpg new file mode 100644 index 0000000000000000000000000000000000000000..89992252964e2331962ba9d240a45c0a699cee2d --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Alan Davis_0.6029676_1854.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ddc1ef58c0cff4c69e7cb1ba1ac67178497b60646c423af28d78cc0e33c03d62 +size 18443 diff --git a/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Alan Lee_0.5848701_2035.jpg b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Alan Lee_0.5848701_2035.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1841ff1364db84decd4a0a30fd2e280fec91bc0d --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Alan Lee_0.5848701_2035.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d8f49b1405b3d34ff012391c8bef5bf27ce44cbeeeb36fbf7011d508b6b8e36a +size 8678 diff --git a/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Alayna Lemmer_0.48293802_2205.jpg b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Alayna Lemmer_0.48293802_2205.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7f4cdade87c56ec9a0502cb70fa03e29ef6e3ca9 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Alayna Lemmer_0.48293802_2205.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ca86528830ad3d746d917e931b5a42d633ff819b7be184215586b91e6293ea0 +size 13742 diff --git a/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Albert Anker_0.62389827_1648.jpg b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Albert Anker_0.62389827_1648.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e2eac0b4afe0c56f38f7d00b22fa7fe7775ba990 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Albert Anker_0.62389827_1648.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24779cecf2fde425855bdff5faa6caf71654f33c477abddc2b7e0304b0090921 +size 10340 diff --git a/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Albert Bierstadt_0.67935765_1028.jpg b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Albert Bierstadt_0.67935765_1028.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b92619f3917f0ade329af55e546519c4e319ea57 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Albert Bierstadt_0.67935765_1028.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:78d7aec302d0cc4747817ba471040d11f8aeb6c1444ec63bd7071710b9cf95a8 +size 13615 diff --git a/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Albert Dorne_0.56395364_2254.jpg b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Albert Dorne_0.56395364_2254.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8640f1903f611067709bdf31f6f1a268fdabc149 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Albert Dorne_0.56395364_2254.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8188f848e4a3b494495b3022a5d2a11d5322b42ef6f7696e777209c7bc0bca86 +size 10979 diff --git a/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Albert Dubois-Pillet_0.57526016_1189.jpg b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Albert Dubois-Pillet_0.57526016_1189.jpg new file mode 100644 index 0000000000000000000000000000000000000000..143778deed6828cd7059f58cb3e90722b4b2e186 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Albert Dubois-Pillet_0.57526016_1189.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac9e5a394291089333a69a52adcad1f15f209bb072a9c64cfa34df344e46ca58 +size 8743 diff --git a/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Albert Eckhout_0.5284096_2554.jpg b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Albert Eckhout_0.5284096_2554.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5fed84bfef0deffcdd68e5c909625ba9b5da34d9 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Albert Eckhout_0.5284096_2554.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e30cb33af45439f9a5c58937ac992a36b92892451018116ce5428a7a1f3c94d0 +size 9998 diff --git a/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Albert Edelfelt_0.57466495_2150.jpg b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Albert Edelfelt_0.57466495_2150.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0c125e69560959e4f97533396b4b2dd5ded9a426 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Albert Edelfelt_0.57466495_2150.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:813dcd804a1331160e4454a45d98032ea74e60f7ce776bf48ee8aa0397d984fd +size 8560 diff --git a/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Albert Goodwin_0.6368695_1514.jpg b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Albert Goodwin_0.6368695_1514.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8d1f7bfbc360f0859b307d08658530687458b8b8 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Albert Goodwin_0.6368695_1514.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6bca597b6c196b3a97af878ea28c78d1e051c77bf63006cc0a04097a7977a7b9 +size 10782 diff --git a/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Albert Guillaume_0.56529653_1666.jpg b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Albert Guillaume_0.56529653_1666.jpg new file mode 100644 index 0000000000000000000000000000000000000000..529614cc1ff4a728c09286b63bb7907f52ef5207 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Albert Guillaume_0.56529653_1666.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d1ee322255fbc67fddee9215a1ea6527403a1b4ee09e544fabfd9c5f71fa0b13 +size 12428 diff --git a/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Albert Henry Krehbiel_0.54952574_2379.jpg b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Albert Henry Krehbiel_0.54952574_2379.jpg new file mode 100644 index 0000000000000000000000000000000000000000..cca1c163ce525cdea3488d91373ad6cfa115a61e --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Albert Henry Krehbiel_0.54952574_2379.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:75d11609c3a03d2fe34114afd69afd004c70b22d51fc37d89c52f0cd9411c289 +size 9665 diff --git a/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Albert J. Welti_0.5736257_2162.jpg b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Albert J. Welti_0.5736257_2162.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f6dd4b4216884cc81459d20d69e6766cb2b073a2 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Albert J. Welti_0.5736257_2162.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e41597d295af397cada742f917f249df778d2a130f290351b3342aaaa3be96f0 +size 8467 diff --git a/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Albert Joseph Moore_0.6374316_1509.jpg b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Albert Joseph Moore_0.6374316_1509.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8f8cdf709971a586d99eb2a867fe3f3f52f3a4a7 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Albert Joseph Moore_0.6374316_1509.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4adff4df14e0f522a007fd7686d8b6260002b94879cd621e79f584ef011bc939 +size 11660 diff --git "a/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Albert Joseph P\303\251not_0.65085316_1375.jpg" "b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Albert Joseph P\303\251not_0.65085316_1375.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..f660db38076295b24911c79c0ba163c9a4fc0ae2 --- /dev/null +++ "b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Albert Joseph P\303\251not_0.65085316_1375.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b700474004a39be7d13f52772ee94975c5bcc0339484a667e97f29a4b2aa751 +size 10783 diff --git a/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Albert Koetsier_0.45385844_3009.jpg b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Albert Koetsier_0.45385844_3009.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2002b05b6c5623b2a52a215cc01575559ea148e3 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Albert Koetsier_0.45385844_3009.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ef514bd80330996295dd905419aa47f8f30da51c16b4f91b35194dc2c392cde +size 9541 diff --git a/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Albert Kotin_0.55737317_2311.jpg b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Albert Kotin_0.55737317_2311.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7c7c2f146f603465dca2db788b6164ecfafeb403 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Albert Kotin_0.55737317_2311.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e29bd35c9e4e2f2b1129f226a6416b1ece2720d08e37bc0b4b527cf482a05a0 +size 11656 diff --git a/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Albert Lynch_0.56497896_2241.jpg b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Albert Lynch_0.56497896_2241.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c8d858416204d46f2e0fb135e738330ff8f0af79 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Albert Lynch_0.56497896_2241.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a147b36e9a9bf5ff2ac57d3452ed73b0c0d7f8b397b03e5c504325125f39c913 +size 9497 diff --git a/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Albert Marquet_0.64471006_1441.jpg b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Albert Marquet_0.64471006_1441.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c006d21a21c522934064e6184474efc8758fe15d --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Albert Marquet_0.64471006_1441.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c06b37a39e97fbeec700745a7451e81e888d83fa87f16db515aeb6372ea84fc6 +size 15255 diff --git a/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Albert Namatjira_0.6573372_1296.jpg b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Albert Namatjira_0.6573372_1296.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a19c38ac9fd935e33e3a95a45438188e30fc53f8 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Albert Namatjira_0.6573372_1296.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c19906d259edc86e244739036ca88998b88aadf3f28732d91e0ae5d8cd05e0f3 +size 12788 diff --git "a/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Albert Paris G\303\274tersloh_0.5817827_2074.jpg" "b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Albert Paris G\303\274tersloh_0.5817827_2074.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..b6db1eb09122550cca7a286f306c510e3bc8b566 --- /dev/null +++ "b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Albert Paris G\303\274tersloh_0.5817827_2074.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28223662487677aab82c034a1c690ee3ddd174121dcbc318727d512b81472645 +size 11509 diff --git a/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Albert Pinkham Ryder_0.7338848_0365.jpg b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Albert Pinkham Ryder_0.7338848_0365.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f64c4fd0f2b228dcf76bc339b6af0e3bbed9b9eb --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Albert Pinkham Ryder_0.7338848_0365.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:132c0745af2f7a32c501707314f5be008a73861a405d328213bdad07582c0108 +size 12788 diff --git a/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Albert Swinden_0.5375844_2494.jpg b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Albert Swinden_0.5375844_2494.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3c00eb6018e9dd0f1d6a20ea833c751cc5cc7b10 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Albert Swinden_0.5375844_2494.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e5c5fc08d884f2aeb79bac47dc3a289a3e2bf4c3635b2c9f45f1fa47836b17d +size 9397 diff --git a/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Alberto Morrocco_0.64352196_1456.jpg b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Alberto Morrocco_0.64352196_1456.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f52b7bd47cbfde4878684d59cc377f54ab6b12c1 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Alberto Morrocco_0.64352196_1456.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ca4cbfb1f41b9288e1c64bba2d418513d33a39db557fdc224018432cdcae5e8 +size 11479 diff --git a/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Alberto Seveso_0.47735062_2409.jpg b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Alberto Seveso_0.47735062_2409.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0b1c5d1396de20ee444ae65c985537b69f8cfa97 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Alberto Seveso_0.47735062_2409.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3af3716607f38976ab097e08061c4a8d29133724f885dd1866457edc036b6d8c +size 14698 diff --git a/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Alberto Sughi_0.5736495_2161.jpg b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Alberto Sughi_0.5736495_2161.jpg new file mode 100644 index 0000000000000000000000000000000000000000..be07fe3b708c329759f5c3b710088d663d644609 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Alberto Sughi_0.5736495_2161.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d6737fcbf4d340eda07f555e61483fe82c11c7ff4a20b0d62409548ed2459616 +size 13854 diff --git a/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Albin Egger-Lienz_0.72120845_0590.jpg b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Albin Egger-Lienz_0.72120845_0590.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ff9b94aba9bc871174f9fa8ba706b07ee38948ed --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Albin Egger-Lienz_0.72120845_0590.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d9efa7ced72aee8eb4f5bf42ef3d187202d7bd4afb119b027c054d0f8d9eaca +size 11035 diff --git a/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Albrecht Altdorfer_0.7663378_0312.jpg b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Albrecht Altdorfer_0.7663378_0312.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f006925bdd22a17921c615aaab1bc6aa137b52b2 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Albrecht Altdorfer_0.7663378_0312.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:94bb0494b04b70a0b92fb88b2a1406c0c3e7890303fec4874d91d4101754359f +size 15549 diff --git a/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Albrecht Anker_0.65531695_1320.jpg b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Albrecht Anker_0.65531695_1320.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ce8360433b81d09126a9a1380b28689748d7eecf --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Albrecht Anker_0.65531695_1320.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a7f23f63140ce5f4aade861f8342ea9aa71b48a428507288b41920b7514e1c17 +size 10288 diff --git a/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Albrecht Durer_0.7122327_0675.jpg b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Albrecht Durer_0.7122327_0675.jpg new file mode 100644 index 0000000000000000000000000000000000000000..add53b06fe890a0383907bbed7f6dda7967457fa --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Albrecht Durer_0.7122327_0675.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c77b2335559b0e07e750fb131240b34149c24f8bdbf15236416ed0e3165a07a3 +size 14582 diff --git "a/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Albrecht D\303\274rer_0.72946966_0511.jpg" "b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Albrecht D\303\274rer_0.72946966_0511.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..7fb84fbaff2bc72d5088d094812cc4c6fa830928 --- /dev/null +++ "b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Albrecht D\303\274rer_0.72946966_0511.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:70817aed20265235e0b6677b5ed03345d51ecc69dbbbbaf5ee6653eb2769af0c +size 16222 diff --git a/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Aldus Manutius_0.67366326_1094.jpg b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Aldus Manutius_0.67366326_1094.jpg new file mode 100644 index 0000000000000000000000000000000000000000..eda39ed1aa3fa7971094ab103e1b17bab9e214ee --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Aldus Manutius_0.67366326_1094.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b1bb413012b033b883036d4a1844325458483df897d8e3e73f8c31bc4de3ed32 +size 17714 diff --git a/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Aleksander Gierymski_0.5590013_2292.jpg b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Aleksander Gierymski_0.5590013_2292.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8ac87fc5bc1f1f0cc688975567342398d71bbb7a --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Aleksander Gierymski_0.5590013_2292.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2724d0dad779e033a5c59320df9f4264856eee60216aff57a8e08dd4568646a5 +size 10957 diff --git a/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Aleksandr Ivanovich Laktionov_0.606544_1814.jpg b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Aleksandr Ivanovich Laktionov_0.606544_1814.jpg new file mode 100644 index 0000000000000000000000000000000000000000..16157c53e3fdd8c080e4114377a2260cf54ab71b --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Aleksandr Ivanovich Laktionov_0.606544_1814.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b089b2a360d1953daca105dcb815c20497d9ecb1031f848a3505daecd1563ea2 +size 8309 diff --git a/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Aleksey Savrasov_0.65207493_0993.jpg b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Aleksey Savrasov_0.65207493_0993.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ed2413670ad6bc86648051a27672b5d3ad1cd8ec --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Aleksey Savrasov_0.65207493_0993.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a4ff97350cfaab7d4b766734686547f7d3f690767782d00b7f0cc5c8ad31eb2 +size 9484 diff --git a/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Aleksi Briclot_0.46056762_1816.jpg b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Aleksi Briclot_0.46056762_1816.jpg new file mode 100644 index 0000000000000000000000000000000000000000..dc7e0b5c68d238ef4fc740082c9f47cd2101b4f0 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Aleksi Briclot_0.46056762_1816.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:262e52ae0d288fa084c39a0e83f0475792667282e4bb72fe891bf00c62cd036c +size 12837 diff --git a/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Alessandro Allori_0.6892961_0913.jpg b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Alessandro Allori_0.6892961_0913.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bd84de50f0ce3f9e5b8447f85012771fa475c957 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Alessandro Allori_0.6892961_0913.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5361690fc3a9c9d0a9f2703b43dc4f53882009426fb64234361383e54faf973 +size 16573 diff --git a/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Alessandro Galli Bibiena_0.6412889_1470.jpg b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Alessandro Galli Bibiena_0.6412889_1470.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a15301cd41a1e638a793b0d952195ea4ec0589d4 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Alessandro Galli Bibiena_0.6412889_1470.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0adcac15250ba77aeaf81edb2af2ccac0298fb15445bebb706b648c91294f2f4 +size 12250 diff --git a/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Alex Colville_0.68787855_0933.jpg b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Alex Colville_0.68787855_0933.jpg new file mode 100644 index 0000000000000000000000000000000000000000..20168b49816974464d4eb4e001e6193646fe4bb5 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Alex Colville_0.68787855_0933.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a79dae3a9e20ac2716f4f039d638f490f2d9fa68d7de47e34e3bd5cc9ba83b4 +size 11149 diff --git a/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Alex Maleev_0.6067118_1812.jpg b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Alex Maleev_0.6067118_1812.jpg new file mode 100644 index 0000000000000000000000000000000000000000..763ce87ea92fcfbdecdee9e1fa77a2893f6b8f21 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/fineart/fineart_Alex Maleev_0.6067118_1812.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e0ed2fe2794fc422be953f7692facce382df8aea4a087bd2046488fd720a2a3f +size 12105 diff --git a/artists-to-study/ats/thumbnail/portrait/n/n_Amadou Opa Bathily_0.5536976_2342.jpg b/artists-to-study/ats/thumbnail/portrait/n/n_Amadou Opa Bathily_0.5536976_2342.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8335e97b8c3553af689e9b042a9f8532b61f4411 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/n/n_Amadou Opa Bathily_0.5536976_2342.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e60502c9ba54f1c592594f65fe6fc41d2b389106abc3367f3cd1ef067a95e5d9 +size 11637 diff --git a/artists-to-study/ats/thumbnail/portrait/n/n_Barkley Hendricks_0.6883637_0924.jpg b/artists-to-study/ats/thumbnail/portrait/n/n_Barkley Hendricks_0.6883637_0924.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0331bdaad009db85338d5d95d77512222b921077 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/n/n_Barkley Hendricks_0.6883637_0924.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:817f14f627108c7dd2fcc6f223499c9f8d0029853f72fc169e4f4e8f48135106 +size 10414 diff --git a/artists-to-study/ats/thumbnail/portrait/n/n_Barkley L. Hendricks_0.69986427_0798.jpg b/artists-to-study/ats/thumbnail/portrait/n/n_Barkley L. Hendricks_0.69986427_0798.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c2b2832805d721c70ca627114cf3ffcd60df5037 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/n/n_Barkley L. Hendricks_0.69986427_0798.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f3a56859d3e162abe1feb0a4fd42453bedd957cfc9ef681dbfbf1b3cbc23344b +size 10081 diff --git a/artists-to-study/ats/thumbnail/portrait/n/n_Bruce Onobrakpeya_0.42588046_3064.jpg b/artists-to-study/ats/thumbnail/portrait/n/n_Bruce Onobrakpeya_0.42588046_3064.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7445ce1398f1bcefa4416f2512d5ea5d0988a244 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/n/n_Bruce Onobrakpeya_0.42588046_3064.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b32d7e1800f585793c88926af0760bddeea2fe1fc0641ed293d4066c9f5b669 +size 13179 diff --git a/artists-to-study/ats/thumbnail/portrait/n/n_Carrie Mae Weems_0.6645416_0880.jpg b/artists-to-study/ats/thumbnail/portrait/n/n_Carrie Mae Weems_0.6645416_0880.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7affec7cad90e6b3af74ce8badd4770b990bdfc3 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/n/n_Carrie Mae Weems_0.6645416_0880.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b25f6f44f4f74dac51f0c3441c5027e2bf5aacefb1631025123e8db65a6aa71f +size 10825 diff --git a/artists-to-study/ats/thumbnail/portrait/n/n_Chinwe Chukwuogo-Roy_0.49445248_2763.jpg b/artists-to-study/ats/thumbnail/portrait/n/n_Chinwe Chukwuogo-Roy_0.49445248_2763.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7ff94b0a7084c6a91c7bf9b331b30748f51c2452 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/n/n_Chinwe Chukwuogo-Roy_0.49445248_2763.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ebdf46d3793cdacee5a4421a0b61bd3a5a75cdb93019002dbab59f8b5b7dd0b6 +size 10593 diff --git a/artists-to-study/ats/thumbnail/portrait/n/n_Howardena Pindell_0.7686921_0305.jpg b/artists-to-study/ats/thumbnail/portrait/n/n_Howardena Pindell_0.7686921_0305.jpg new file mode 100644 index 0000000000000000000000000000000000000000..868d941a0ede2017b0527a33dbbf9a31f6fdebda --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/n/n_Howardena Pindell_0.7686921_0305.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a6f779bfb85e0167d92c0948245107dd3996b22b15045778c2a8661125974e69 +size 14932 diff --git a/artists-to-study/ats/thumbnail/portrait/n/n_Juliana Huxtable_0.5364195_2499.jpg b/artists-to-study/ats/thumbnail/portrait/n/n_Juliana Huxtable_0.5364195_2499.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a0e68e54e4a032f7488c7d0715d95b424677e4e1 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/n/n_Juliana Huxtable_0.5364195_2499.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f1b59a2305b3f786a28ab37f7ef5bbcc32b41e4f103ae900525c5f6bc75b865 +size 19649 diff --git a/artists-to-study/ats/thumbnail/portrait/n/n_Kadir Nelson_0.5669006_2225.jpg b/artists-to-study/ats/thumbnail/portrait/n/n_Kadir Nelson_0.5669006_2225.jpg new file mode 100644 index 0000000000000000000000000000000000000000..be2e41cfa7f8fe5cad53d87149d373a7dbace8f5 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/n/n_Kadir Nelson_0.5669006_2225.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9bbba58afb8716127fa3aa7ccb856705b2b7c86bb808df377b9a7acc0eeb283f +size 11183 diff --git a/artists-to-study/ats/thumbnail/portrait/n/n_Kehinde Wiley_0.66218376_1241.jpg b/artists-to-study/ats/thumbnail/portrait/n/n_Kehinde Wiley_0.66218376_1241.jpg new file mode 100644 index 0000000000000000000000000000000000000000..96f6c4031eb2224be303e1c13d97722ed24ddd46 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/n/n_Kehinde Wiley_0.66218376_1241.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dcec8ac4ea7b11ece252bde606169b1b425396a0051acc3d0b668d6c5b92b88c +size 20818 diff --git a/artists-to-study/ats/thumbnail/portrait/n/n_Mati Klarwein_0.7066092_0733.jpg b/artists-to-study/ats/thumbnail/portrait/n/n_Mati Klarwein_0.7066092_0733.jpg new file mode 100644 index 0000000000000000000000000000000000000000..df01712b61da144dea2ead852b35118c418d8588 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/n/n_Mati Klarwein_0.7066092_0733.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:38f9ea421513f32c0d1127a11162e5d4ac9bb4ccc16b92809d3cffbb453b5098 +size 14581 diff --git a/artists-to-study/ats/thumbnail/portrait/n/n_RETNA (Marquis Lewis)_0.47963_1468.jpg b/artists-to-study/ats/thumbnail/portrait/n/n_RETNA (Marquis Lewis)_0.47963_1468.jpg new file mode 100644 index 0000000000000000000000000000000000000000..25f63f7b2158053a607dfe784beab72e81db6f94 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/n/n_RETNA (Marquis Lewis)_0.47963_1468.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:09491acdda3085d4ed9322470188c623bc70e7d6b6a8cd1902fe190af5676c22 +size 25887 diff --git a/artists-to-study/ats/thumbnail/portrait/n/n_Teophilus Tetteh_0.46064255_2967.jpg b/artists-to-study/ats/thumbnail/portrait/n/n_Teophilus Tetteh_0.46064255_2967.jpg new file mode 100644 index 0000000000000000000000000000000000000000..371748f22acc4f420c7020ec8760f68895c08807 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/n/n_Teophilus Tetteh_0.46064255_2967.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e9515772171e8acedb2e45b06a0bc4a5fb1fc258c080422d77ef821bccb1e0e +size 10845 diff --git a/artists-to-study/ats/thumbnail/portrait/n/n_Wangechi Mutu_0.6394607_1487.jpg b/artists-to-study/ats/thumbnail/portrait/n/n_Wangechi Mutu_0.6394607_1487.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bc1d1852df88e7243eec2e5c682b02d896132193 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/n/n_Wangechi Mutu_0.6394607_1487.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba054e75591d998c56d837966d9f52435a12aef80f23b4794e467b74e0af338f +size 13458 diff --git a/artists-to-study/ats/thumbnail/portrait/n/n_Yinka Shonibare_0.68256056_0989.jpg b/artists-to-study/ats/thumbnail/portrait/n/n_Yinka Shonibare_0.68256056_0989.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1f0f3a127f86ffaf10153d02aadd6a8b9aa11a6e --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/n/n_Yinka Shonibare_0.68256056_0989.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e72c17cd001db151345ef6aedf181fc33ad57de61a001013ed72dd8b0c2bc11 +size 19509 diff --git a/artists-to-study/ats/thumbnail/portrait/n/n_Zanele Muholi_0.58554715_1234.jpg b/artists-to-study/ats/thumbnail/portrait/n/n_Zanele Muholi_0.58554715_1234.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9c2a2bca77a72e2ea7dc166c16928663e2e4acff --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/n/n_Zanele Muholi_0.58554715_1234.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bb3406706c7383166f8ff45461dbd914d3fda34e1bfca9017f778631cf4726de +size 13672 diff --git a/artists-to-study/ats/thumbnail/portrait/nudity/nudity_Affandi_0.7170285_0620.jpg b/artists-to-study/ats/thumbnail/portrait/nudity/nudity_Affandi_0.7170285_0620.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b8fb062e4a5fb0a0ce8b580194927b33c3f288b7 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/nudity/nudity_Affandi_0.7170285_0620.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b897de9ce8070c90f0dba5a29cc5eeba26d8bf02d4b5c2a698b6b98ee51cca78 +size 17199 diff --git a/artists-to-study/ats/thumbnail/portrait/nudity/nudity_Albert Benois_0.5902705_1977.jpg b/artists-to-study/ats/thumbnail/portrait/nudity/nudity_Albert Benois_0.5902705_1977.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2c1f42e7b628be82d50058697935383f08a6d9dc --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/nudity/nudity_Albert Benois_0.5902705_1977.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:625afd6b2f056441d330f9129b44ded55acb8256030a9f47a9397ff8c30036a0 +size 10561 diff --git a/artists-to-study/ats/thumbnail/portrait/nudity/nudity_Albert Bertelsen_0.54038215_2468.jpg b/artists-to-study/ats/thumbnail/portrait/nudity/nudity_Albert Bertelsen_0.54038215_2468.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5710a60185c6a7789e24051a175344eda217fc4e --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/nudity/nudity_Albert Bertelsen_0.54038215_2468.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d267dae2c48add522a7a2704751b7bb67475eaeb2e79621ebf7df1c8c1a71680 +size 12009 diff --git a/artists-to-study/ats/thumbnail/portrait/nudity/nudity_Albert Bloch_0.69573116_0836.jpg b/artists-to-study/ats/thumbnail/portrait/nudity/nudity_Albert Bloch_0.69573116_0836.jpg new file mode 100644 index 0000000000000000000000000000000000000000..70c25e559d4e515ed7e0fe5a9fc4cfb538e357b6 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/nudity/nudity_Albert Bloch_0.69573116_0836.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:73f926815c9719fa5b3c7085854da0534719de239177641fb16dd5a7ce9bf8bf +size 14768 diff --git "a/artists-to-study/ats/thumbnail/portrait/nudity/nudity_Aleksander Or\305\202owski_0.546705_2393.jpg" "b/artists-to-study/ats/thumbnail/portrait/nudity/nudity_Aleksander Or\305\202owski_0.546705_2393.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..542558b875f9e4e9a1971aad34f1e6d925edef42 --- /dev/null +++ "b/artists-to-study/ats/thumbnail/portrait/nudity/nudity_Aleksander Or\305\202owski_0.546705_2393.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33924abb5df460a917107224b0809638977f40809f60b971eaf0b2e32c16464d +size 9859 diff --git a/artists-to-study/ats/thumbnail/portrait/nudity/nudity_Alex Grey_0.62908936_1534.jpg b/artists-to-study/ats/thumbnail/portrait/nudity/nudity_Alex Grey_0.62908936_1534.jpg new file mode 100644 index 0000000000000000000000000000000000000000..233607bfdaf8dbecaf0d3b83533c83146b99f9ec --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/nudity/nudity_Alex Grey_0.62908936_1534.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c5728be52b4d30b9474aa7a8953982fb1e17b6bf7fa6cf07ee15f7920580207 +size 22955 diff --git a/artists-to-study/ats/thumbnail/portrait/nudity/nudity_Alfred Kelsner_0.5455753_2423.jpg b/artists-to-study/ats/thumbnail/portrait/nudity/nudity_Alfred Kelsner_0.5455753_2423.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5de5cfeff4740ba1b2102c0e8df5212997fb9945 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/nudity/nudity_Alfred Kelsner_0.5455753_2423.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff10cf1fee659ffd6d8cb42ce0995edcd0832488567a0128d74098f88766763d +size 10131 diff --git a/artists-to-study/ats/thumbnail/portrait/nudity/nudity_Anne-Louis Girodet_0.58104825_0822.jpg b/artists-to-study/ats/thumbnail/portrait/nudity/nudity_Anne-Louis Girodet_0.58104825_0822.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4b8ab25855773cbe7d2e1a7a774c4eb78a4b13f8 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/nudity/nudity_Anne-Louis Girodet_0.58104825_0822.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6f088c8bf1942dd0c13c2316a49064d40cdce8e629eb1e33e1818e79a86d477 +size 13466 diff --git a/artists-to-study/ats/thumbnail/portrait/nudity/nudity_Arnold Franz Brasz_0.65834284_1287.jpg b/artists-to-study/ats/thumbnail/portrait/nudity/nudity_Arnold Franz Brasz_0.65834284_1287.jpg new file mode 100644 index 0000000000000000000000000000000000000000..773504f451498f637ba6c495da12e788fdb6cf7c --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/nudity/nudity_Arnold Franz Brasz_0.65834284_1287.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:253c8e1cf2de88dbdd59ed2829908610ecbe660df1f789939b5949f7a4363681 +size 11860 diff --git a/artists-to-study/ats/thumbnail/portrait/nudity/nudity_Aron Wiesenfeld_0.68331146_0979.jpg b/artists-to-study/ats/thumbnail/portrait/nudity/nudity_Aron Wiesenfeld_0.68331146_0979.jpg new file mode 100644 index 0000000000000000000000000000000000000000..816f4914ed5a1042f487770833f6f03c8b3f1506 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/nudity/nudity_Aron Wiesenfeld_0.68331146_0979.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85313b9ebc1f5a22076746ee180b1900f1cb5c11fe604f5fd96405bee6e8ba2c +size 7361 diff --git a/artists-to-study/ats/thumbnail/portrait/nudity/nudity_Benjamin Marra_0.61809736_1311.jpg b/artists-to-study/ats/thumbnail/portrait/nudity/nudity_Benjamin Marra_0.61809736_1311.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ede98cdd1083c951bc9d061c1cc3e504f400b229 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/nudity/nudity_Benjamin Marra_0.61809736_1311.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec958c23bfbf797f30f771be4b20e82dccbca07e4e24e4be62403a762990a338 +size 27806 diff --git a/artists-to-study/ats/thumbnail/portrait/nudity/nudity_Bonnard Pierre_0.72309464_0573.jpg b/artists-to-study/ats/thumbnail/portrait/nudity/nudity_Bonnard Pierre_0.72309464_0573.jpg new file mode 100644 index 0000000000000000000000000000000000000000..70dba2a4ece2bbbe50b98245a3426618b2899ec0 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/nudity/nudity_Bonnard Pierre_0.72309464_0573.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e383b61d23e88d6ef6ab9ad5e03391e7cc9afda18b4abd086d6bacc7a0b3817d +size 14731 diff --git "a/artists-to-study/ats/thumbnail/portrait/nudity/nudity_B\303\251la Iv\303\241nyi-Gr\303\274nwald_0.56355745_2259.jpg" "b/artists-to-study/ats/thumbnail/portrait/nudity/nudity_B\303\251la Iv\303\241nyi-Gr\303\274nwald_0.56355745_2259.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..2da64707048f05512ec2b30d08862fb54674cebe --- /dev/null +++ "b/artists-to-study/ats/thumbnail/portrait/nudity/nudity_B\303\251la Iv\303\241nyi-Gr\303\274nwald_0.56355745_2259.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:90928b3c2c92db98a539854b04bb68e2169447a1a62f5b99bb0fd286e85e410d +size 10149 diff --git a/artists-to-study/ats/thumbnail/portrait/nudity/nudity_Carlo Galli Bibiena_0.6511681_1368.jpg b/artists-to-study/ats/thumbnail/portrait/nudity/nudity_Carlo Galli Bibiena_0.6511681_1368.jpg new file mode 100644 index 0000000000000000000000000000000000000000..340835d41d5ba0af1f6c67a8baab4f7ba1d969b7 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/nudity/nudity_Carlo Galli Bibiena_0.6511681_1368.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a9fe520fad545cd0d598d8cd8fd3362c7acff0126d4eb28922138bf69a777d54 +size 10904 diff --git a/artists-to-study/ats/thumbnail/portrait/nudity/nudity_Dali_0.5928694_1756.jpg b/artists-to-study/ats/thumbnail/portrait/nudity/nudity_Dali_0.5928694_1756.jpg new file mode 100644 index 0000000000000000000000000000000000000000..631e29500fa13d3d875e8803e30ac8b75c34e1ad --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/nudity/nudity_Dali_0.5928694_1756.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:793c6c52ab4d78a13c1f1d0f6dd04a9917238f82499d5de615b16acac9314180 +size 12666 diff --git a/artists-to-study/ats/thumbnail/portrait/nudity/nudity_Edward Corbett_0.55701995_2315.jpg b/artists-to-study/ats/thumbnail/portrait/nudity/nudity_Edward Corbett_0.55701995_2315.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7566b5e1b1ed7ae7a248f235b77835b4b38b0776 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/nudity/nudity_Edward Corbett_0.55701995_2315.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5bc803e37bb182a6e8dc382958f2bb08d6beacf5b9936ffce0e84cca34a4468f +size 8293 diff --git a/artists-to-study/ats/thumbnail/portrait/nudity/nudity_Emil Alzamora_0.5844039_1146.jpg b/artists-to-study/ats/thumbnail/portrait/nudity/nudity_Emil Alzamora_0.5844039_1146.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8272672b80835a30e6d8eac578935c1ec79e5238 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/nudity/nudity_Emil Alzamora_0.5844039_1146.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:57fea0bf14a1178e038c8ab00ff77f654ffc2e59b16688f78800bd47e9700372 +size 10249 diff --git a/artists-to-study/ats/thumbnail/portrait/nudity/nudity_Ernst Fuchs_0.6953538_0839.jpg b/artists-to-study/ats/thumbnail/portrait/nudity/nudity_Ernst Fuchs_0.6953538_0839.jpg new file mode 100644 index 0000000000000000000000000000000000000000..29c2ae6d6db60a674920fd0a465267ec390962b3 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/nudity/nudity_Ernst Fuchs_0.6953538_0839.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d77f46815f376076cf228c9ff273960dc45d7ca9abe67a05e4d1a2e5af4b4ffd +size 12966 diff --git "a/artists-to-study/ats/thumbnail/portrait/nudity/nudity_Eugeniusz \305\273ak_0.556925_2316.jpg" "b/artists-to-study/ats/thumbnail/portrait/nudity/nudity_Eugeniusz \305\273ak_0.556925_2316.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..3a4701db236d2ff95bc6603f6d29e1d0c238e67b --- /dev/null +++ "b/artists-to-study/ats/thumbnail/portrait/nudity/nudity_Eugeniusz \305\273ak_0.556925_2316.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1088737e69b7020c0e342b0cfddf80d0f0fdc259496f39b8ed6716d1324ee7ce +size 10028 diff --git a/artists-to-study/ats/thumbnail/portrait/nudity/nudity_Ferdinand Hodler_0.7213758_0587.jpg b/artists-to-study/ats/thumbnail/portrait/nudity/nudity_Ferdinand Hodler_0.7213758_0587.jpg new file mode 100644 index 0000000000000000000000000000000000000000..83cd86e8a3608a22574f7a3ad75c38fc344358ac --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/nudity/nudity_Ferdinand Hodler_0.7213758_0587.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13659a3391e00ca3b811e611aaa052e03dd5fef355dffe2c06a9dd53add56301 +size 15810 diff --git a/artists-to-study/ats/thumbnail/portrait/nudity/nudity_Fernand Khnopff_0.6512954_1366.jpg b/artists-to-study/ats/thumbnail/portrait/nudity/nudity_Fernand Khnopff_0.6512954_1366.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0bbd27dc517023d70d9565ac58a17774426ce684 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/nudity/nudity_Fernand Khnopff_0.6512954_1366.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f129c81b4224085589209a509bcff4b1e9e660fabe80106ad881ed6a10f39873 +size 10779 diff --git a/artists-to-study/ats/thumbnail/portrait/nudity/nudity_Fernando Botero_0.7412504_0433.jpg b/artists-to-study/ats/thumbnail/portrait/nudity/nudity_Fernando Botero_0.7412504_0433.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6f84eb29849e61365d1ee86e5e38d509bab57d1b --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/nudity/nudity_Fernando Botero_0.7412504_0433.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8acbcce36f8416090eba1fa006af810c8502d41feb3949f48672501daa5582a9 +size 12580 diff --git a/artists-to-study/ats/thumbnail/portrait/nudity/nudity_Francesco del Cossa_0.7104901_0690.jpg b/artists-to-study/ats/thumbnail/portrait/nudity/nudity_Francesco del Cossa_0.7104901_0690.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8a375b302402bef4e9a7520598fa1a01c406846c --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/nudity/nudity_Francesco del Cossa_0.7104901_0690.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:23433c05dba28bd03c12a6466ef863f5e9a7ac8678a7fcb63b33647b842a8f6b +size 14295 diff --git a/artists-to-study/ats/thumbnail/portrait/nudity/nudity_Frank Frazetta_0.551121_1869.jpg b/artists-to-study/ats/thumbnail/portrait/nudity/nudity_Frank Frazetta_0.551121_1869.jpg new file mode 100644 index 0000000000000000000000000000000000000000..83e09e05233f9650e8f03359cebabaca04b590ce --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/nudity/nudity_Frank Frazetta_0.551121_1869.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3acebc912fa58906552eedc12745c117510fa8a749d3973e0138ad91f2e34a82 +size 15358 diff --git a/artists-to-study/ats/thumbnail/portrait/nudity/nudity_Gao Cen_0.60618126_1820.jpg b/artists-to-study/ats/thumbnail/portrait/nudity/nudity_Gao Cen_0.60618126_1820.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6e5e94f75cd5d068fab385666fef95e9821d70f6 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/nudity/nudity_Gao Cen_0.60618126_1820.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc02521336521874bdf1a139c58b975c15420ec2494b361cbd894b02fbfb499d +size 8698 diff --git a/artists-to-study/ats/thumbnail/portrait/nudity/nudity_Gustav Klimt_0.72356784_0571.jpg b/artists-to-study/ats/thumbnail/portrait/nudity/nudity_Gustav Klimt_0.72356784_0571.jpg new file mode 100644 index 0000000000000000000000000000000000000000..55f03f66e7392b02657c780f047439bacea98348 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/nudity/nudity_Gustav Klimt_0.72356784_0571.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:22df0793840950167add2966aff3dc915723e9b7fa1634e3d3d86e8e4bd1379b +size 19243 diff --git a/artists-to-study/ats/thumbnail/portrait/nudity/nudity_Hajime Sorayama_0.60325956_1849.jpg b/artists-to-study/ats/thumbnail/portrait/nudity/nudity_Hajime Sorayama_0.60325956_1849.jpg new file mode 100644 index 0000000000000000000000000000000000000000..020061a1c8d35fe0bffad1f85f0ab744bfb4c08d --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/nudity/nudity_Hajime Sorayama_0.60325956_1849.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ac6686c9131f834f727ae4d3b135f5b105dcfcd891fe2c3539b562fd244449c +size 11984 diff --git a/artists-to-study/ats/thumbnail/portrait/nudity/nudity_Hans Bellmer_0.6735973_1097.jpg b/artists-to-study/ats/thumbnail/portrait/nudity/nudity_Hans Bellmer_0.6735973_1097.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e078b24a91ea21650ad9b269349d0182079b850b --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/nudity/nudity_Hans Bellmer_0.6735973_1097.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:955a71a74b45ef4cfa86e06e82eaeebb47d2cac38d67f9cb6812944b8922dcb9 +size 10805 diff --git a/artists-to-study/ats/thumbnail/portrait/nudity/nudity_Henri Biva_0.54013556_2207.jpg b/artists-to-study/ats/thumbnail/portrait/nudity/nudity_Henri Biva_0.54013556_2207.jpg new file mode 100644 index 0000000000000000000000000000000000000000..78448269ae7146223acfa0d24b266b44c81f37f5 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/nudity/nudity_Henri Biva_0.54013556_2207.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:75b7482b4fd1e84891c354fd761341542daa1b5ad597788c04a9b734152af8c0 +size 9502 diff --git a/artists-to-study/ats/thumbnail/portrait/nudity/nudity_Henry Moore_0.59767926_1901.jpg b/artists-to-study/ats/thumbnail/portrait/nudity/nudity_Henry Moore_0.59767926_1901.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c27b337ae15f04bbefa901862793bd7130ed4529 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/nudity/nudity_Henry Moore_0.59767926_1901.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:567d0e56123ff1a53cb27bec8e8b2c57ecfc335253285cd5458989ba2d24a8d6 +size 9749 diff --git a/artists-to-study/ats/thumbnail/portrait/nudity/nudity_Hermenegildo Anglada Camarasa_0.7214374_0584.jpg b/artists-to-study/ats/thumbnail/portrait/nudity/nudity_Hermenegildo Anglada Camarasa_0.7214374_0584.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7675da5a134c8b335b4fc392aaf5cc4abed0a0d0 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/nudity/nudity_Hermenegildo Anglada Camarasa_0.7214374_0584.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a8c59bd57ab0a4ea6258baa95b6470277a5a3946abee86afb10336495e49b5a +size 13139 diff --git a/artists-to-study/ats/thumbnail/portrait/nudity/nudity_Howard Chandler Christy_0.5702813_2197.jpg b/artists-to-study/ats/thumbnail/portrait/nudity/nudity_Howard Chandler Christy_0.5702813_2197.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6f9b6f8bd79feb685fc18c076581652cd22fd627 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/nudity/nudity_Howard Chandler Christy_0.5702813_2197.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28bbd63bb344d45a2510722789a68c67e786695f6c8ad2e8d9ae662a9b37bb28 +size 12494 diff --git a/artists-to-study/ats/thumbnail/portrait/nudity/nudity_Joseph Cornell_0.75023884_0387.jpg b/artists-to-study/ats/thumbnail/portrait/nudity/nudity_Joseph Cornell_0.75023884_0387.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9043d66b6e1f9d8d94a99aaed3304d2d37508ca2 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/nudity/nudity_Joseph Cornell_0.75023884_0387.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:83765adc1c0dff030aa9d6294b9b0d8400d73403aebbf83c791d21dc423d2a03 +size 14001 diff --git a/artists-to-study/ats/thumbnail/portrait/nudity/nudity_Lucian Freud_0.6203146_1685.jpg b/artists-to-study/ats/thumbnail/portrait/nudity/nudity_Lucian Freud_0.6203146_1685.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8be36a3bb318c1aa7dfb66afae20c08b793cf82e --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/nudity/nudity_Lucian Freud_0.6203146_1685.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f8f45f996ecf58c1ac911c88eb86d98e2a9c460dfb20d3942b32dff007a34f1e +size 15515 diff --git a/artists-to-study/ats/thumbnail/portrait/nudity/nudity_Maginel Wright Enright Barney_0.6034306_1846.jpg b/artists-to-study/ats/thumbnail/portrait/nudity/nudity_Maginel Wright Enright Barney_0.6034306_1846.jpg new file mode 100644 index 0000000000000000000000000000000000000000..688270afad72e64445cc57dad7c6cd30e9755b34 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/nudity/nudity_Maginel Wright Enright Barney_0.6034306_1846.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2cec1312b240184a576701236ceb6134254799ee45546d76ab7b937c6dccbf4 +size 10786 diff --git a/artists-to-study/ats/thumbnail/portrait/nudity/nudity_Neil Welliver_0.68297863_0986.jpg b/artists-to-study/ats/thumbnail/portrait/nudity/nudity_Neil Welliver_0.68297863_0986.jpg new file mode 100644 index 0000000000000000000000000000000000000000..476cb0214c06ed5ff5817551810ec2ffc6fc3b0c --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/nudity/nudity_Neil Welliver_0.68297863_0986.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:278d31cea95e1c7f479b902560477fb043d2643f0ea181a65389f63ca323a72c +size 17501 diff --git a/artists-to-study/ats/thumbnail/portrait/nudity/nudity_Nicola Samori_0.68747556_0582.jpg b/artists-to-study/ats/thumbnail/portrait/nudity/nudity_Nicola Samori_0.68747556_0582.jpg new file mode 100644 index 0000000000000000000000000000000000000000..156cbf262380edcbe258140ddfcfec3f529d4e5f --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/nudity/nudity_Nicola Samori_0.68747556_0582.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:254f6a8552e44f68995531af400b1f16569c946af83ba5a8346586f918a6d195 +size 11323 diff --git a/artists-to-study/ats/thumbnail/portrait/nudity/nudity_Raymond Duchamp-Villon_0.6489605_1397.jpg b/artists-to-study/ats/thumbnail/portrait/nudity/nudity_Raymond Duchamp-Villon_0.6489605_1397.jpg new file mode 100644 index 0000000000000000000000000000000000000000..abd5fa80d66f1c810a69fe2afc1dc03eaabc622a --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/nudity/nudity_Raymond Duchamp-Villon_0.6489605_1397.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa1de1353ad2dc8cdcda48929a8452d9e4c4ff4e6b30dbc0c1d118bfc5ec3b49 +size 11232 diff --git a/artists-to-study/ats/thumbnail/portrait/nudity/nudity_Richard Hamilton_0.5461275_2418.jpg b/artists-to-study/ats/thumbnail/portrait/nudity/nudity_Richard Hamilton_0.5461275_2418.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a25a8166d6dd582b883caffac550a164d89bfe60 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/nudity/nudity_Richard Hamilton_0.5461275_2418.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ddb043ba1b32235af296da03e71ea625e4856fa09e59a270f216848d58365ae8 +size 12368 diff --git a/artists-to-study/ats/thumbnail/portrait/nudity/nudity_Roberto Ferri_0.538221_0615.jpg b/artists-to-study/ats/thumbnail/portrait/nudity/nudity_Roberto Ferri_0.538221_0615.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bab3b6ff8181cade14b5b66a7d55e815bf76dcc1 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/nudity/nudity_Roberto Ferri_0.538221_0615.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:602a4166a7667926b43a281f6abcfbfa006129d5d252efe13a42b613561d2496 +size 9060 diff --git a/artists-to-study/ats/thumbnail/portrait/nudity/nudity_Roger Dean_0.6529647_1349.jpg b/artists-to-study/ats/thumbnail/portrait/nudity/nudity_Roger Dean_0.6529647_1349.jpg new file mode 100644 index 0000000000000000000000000000000000000000..58a8a13dc226d0a7c85520935092d62f350a7e16 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/nudity/nudity_Roger Dean_0.6529647_1349.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df348bc0574b89224cf35cbba8f9dec3a9413eb536404e915b7cf8034e83d55e +size 14634 diff --git a/artists-to-study/ats/thumbnail/portrait/nudity/nudity_Ron Mueck_0.5581811_2299.jpg b/artists-to-study/ats/thumbnail/portrait/nudity/nudity_Ron Mueck_0.5581811_2299.jpg new file mode 100644 index 0000000000000000000000000000000000000000..befee64f3c5c6a4a53637dc82507a331a6fbb928 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/nudity/nudity_Ron Mueck_0.5581811_2299.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d25bcdcc56b35f6339453c4340861e4646e9d9c332623f8e9a7ea442c2c8886f +size 10396 diff --git a/artists-to-study/ats/thumbnail/portrait/nudity/nudity_Saturno Butto_0.6331184_1554.jpg b/artists-to-study/ats/thumbnail/portrait/nudity/nudity_Saturno Butto_0.6331184_1554.jpg new file mode 100644 index 0000000000000000000000000000000000000000..95dff7f4cdcc4e533bd2c84eb424af6cae47b143 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/nudity/nudity_Saturno Butto_0.6331184_1554.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f2e4201597f22ba1ed8ff3f247228c4b9fcc6d98c340aee3e4341a6bbbd9b1d0 +size 12064 diff --git a/artists-to-study/ats/thumbnail/portrait/nudity/nudity_Shohei Otomo_0.7132803_0568.jpg b/artists-to-study/ats/thumbnail/portrait/nudity/nudity_Shohei Otomo_0.7132803_0568.jpg new file mode 100644 index 0000000000000000000000000000000000000000..802e241039bf4b8ad9f17536727b18ea6bb9ef21 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/nudity/nudity_Shohei Otomo_0.7132803_0568.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d73ecead4eae03a7b65496fd39e49077a6691103dd4738196533f6f9b4dbcae1 +size 21031 diff --git a/artists-to-study/ats/thumbnail/portrait/nudity/nudity_William Etty_0.6497544_0496.jpg b/artists-to-study/ats/thumbnail/portrait/nudity/nudity_William Etty_0.6497544_0496.jpg new file mode 100644 index 0000000000000000000000000000000000000000..40619909933ee852f523741b3011796d8e76e5bd --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/nudity/nudity_William Etty_0.6497544_0496.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:954b0d412a047afa3eb5363e3c333ee36ee46c892fd3a46106b4c50e44adac9f +size 12765 diff --git a/artists-to-study/ats/thumbnail/portrait/nudity/nudity_Yasushi Nirasawa_0.6016714_1864.jpg b/artists-to-study/ats/thumbnail/portrait/nudity/nudity_Yasushi Nirasawa_0.6016714_1864.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e0cb2a60fe4dfe21d9f40d7cc3dbaecceff4c473 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/nudity/nudity_Yasushi Nirasawa_0.6016714_1864.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a2758b7afb7dec8f26d208c3029c97ab9e911bb3ffc7b554aa651bd531e0baa +size 15279 diff --git a/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_A. J. Casson_0.73666203_0459.jpg b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_A. J. Casson_0.73666203_0459.jpg new file mode 100644 index 0000000000000000000000000000000000000000..dfb40813f3a6c230357af5c7f09645c80e975230 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_A. J. Casson_0.73666203_0459.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2371f5f6fb05f19553e773ca8eb153aab889ecde7f7eaaf7a08d44933ed60ab2 +size 11468 diff --git a/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Adolph Gottlieb_0.79061794_0231.jpg b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Adolph Gottlieb_0.79061794_0231.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7630edc1b6af0f6a4aa3f48d3f1785f69172dc43 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Adolph Gottlieb_0.79061794_0231.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:30dfa4818b363994f9669c99d5e397e44d74dcc36a97160e39f23f6d6efe73ab +size 13911 diff --git a/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Adrian Tomine_0.79109013_0230.jpg b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Adrian Tomine_0.79109013_0230.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8451eca26bd0e0d019a980c06eed4bd04d207cab --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Adrian Tomine_0.79109013_0230.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c277e7d2fd50d401cd1a9000644453cecfcd1b7e1ce4f82e4340e5b8f94348b3 +size 14359 diff --git a/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Afarin Sajedi_0.62475824_1634.jpg b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Afarin Sajedi_0.62475824_1634.jpg new file mode 100644 index 0000000000000000000000000000000000000000..cf5655a39cfa218d20d083d09b90bdc99727845b --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Afarin Sajedi_0.62475824_1634.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3970c4d90f5d2b6937912fc76f2af2bdd6efeced396b26ac986f89be41ede7d2 +size 11470 diff --git a/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Agnes Lawrence Pelton_0.73960555_0442.jpg b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Agnes Lawrence Pelton_0.73960555_0442.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1f8dad52290811e0f6c4b7e832148198d3146254 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Agnes Lawrence Pelton_0.73960555_0442.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f8a4558ee945de6edb5a282a3b2c1e1cefd6d5063ca130ee09d72f34a18e66d1 +size 9893 diff --git a/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Agnes Martin_0.8028028_0210.jpg b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Agnes Martin_0.8028028_0210.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a8af32f50d58ce15c48577631165bece2e81c65a --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Agnes Martin_0.8028028_0210.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c7a043b1af0016a93a431113e78e78d398dc361e7b280771d9400d7294099f55 +size 10752 diff --git a/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Alasdair Gray_0.7992301_0216.jpg b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Alasdair Gray_0.7992301_0216.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e1648c5a36b5201324c96b16acd8f1a23fac6488 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Alasdair Gray_0.7992301_0216.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8dc3f0c5b81704c176d8301b54fff59fd7541c2deb50dfc9842a20ea7252e8bc +size 18756 diff --git a/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Albert Gleizes_0.76658314_0309.jpg b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Albert Gleizes_0.76658314_0309.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0336ccedf860919efee1931270049ce967499e4f --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Albert Gleizes_0.76658314_0309.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:586c83d68020ba83fb3ca55a756a8b828255f32e218c78e634995b9b0561163e +size 17506 diff --git a/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Albert Irvin_0.79688835_0222.jpg b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Albert Irvin_0.79688835_0222.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4564627e67f26f20e5c98d9646377820310735e9 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Albert Irvin_0.79688835_0222.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5443992c70ca7bd548bbac6da94edf2be413b2593705eaa67981b4a52143b856 +size 17318 diff --git a/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Alberto Burri_0.6618252_1185.jpg b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Alberto Burri_0.6618252_1185.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b57993dacf7c957271224a30e9fd81c9a26d6774 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Alberto Burri_0.6618252_1185.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e9f50c1c0194a4c358420f6a4df38bfae26d04c34d44a775c02df90083c6f820 +size 10719 diff --git a/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Alberto Giacometti_0.7596302_0335.jpg b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Alberto Giacometti_0.7596302_0335.jpg new file mode 100644 index 0000000000000000000000000000000000000000..dedc67cdbbb548d34a0eae5110680325e69d16a6 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Alberto Giacometti_0.7596302_0335.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d3e824b4af539cf92e0446dbd8a782bfba78081516ee21bc757e8ed3d31a7b7 +size 15877 diff --git a/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Alessandro Gottardo_0.79321593_0227.jpg b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Alessandro Gottardo_0.79321593_0227.jpg new file mode 100644 index 0000000000000000000000000000000000000000..19cba9c10fc05ff842c20bfffbe2583606efa5b7 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Alessandro Gottardo_0.79321593_0227.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3220a74d498ea3d9ec208079c2689e1e50a532d433b16a2052d5a690f453b584 +size 8279 diff --git a/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Alex Garant_0.7333658_0481.jpg b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Alex Garant_0.7333658_0481.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bc6849c8cf29bc1a9f765a004aa52669f2a1d3b6 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Alex Garant_0.7333658_0481.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d10475e221fbd04adac9631e5b84db5e0d815324c8e542b1b45bd5ff40b55f1 +size 15292 diff --git a/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Alex Katz_0.76317835_0326.jpg b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Alex Katz_0.76317835_0326.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b8fdfa01cbb55fa81ffbd06eb3a43ff4b28313d5 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Alex Katz_0.76317835_0326.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b16000762b4f3192c27532bcc28e99208e07d51cd29af2191caf08e03617538 +size 9423 diff --git a/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Alexander Archipenko_0.7759824_0271.jpg b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Alexander Archipenko_0.7759824_0271.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8033276876cf5a1d0105d29485934f954311f8f0 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Alexander Archipenko_0.7759824_0271.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1075f0a5f0c66343e6990ec946815b45522c485f94e381fb51fe21c77496c7ee +size 14123 diff --git a/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Alexander Calder_0.83832693_0144.jpg b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Alexander Calder_0.83832693_0144.jpg new file mode 100644 index 0000000000000000000000000000000000000000..94df1ceaab00aa68925a4b097ffbad67d9fefc23 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Alexander Calder_0.83832693_0144.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ea00e6d24ff68d24406e6634517054be25b28548c381b17787d1cca9de746a1 +size 17883 diff --git a/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Alexander Jansson_0.69298327_0868.jpg b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Alexander Jansson_0.69298327_0868.jpg new file mode 100644 index 0000000000000000000000000000000000000000..011f8066f7db63c459de95ed32a0b30fa27c8223 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Alexander Jansson_0.69298327_0868.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d878f130cd03f810b7639d6652be13476b0bf5b2e089bfb5b14e3ea265f0596 +size 16006 diff --git a/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Alexander Millar_0.7011144_0776.jpg b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Alexander Millar_0.7011144_0776.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c82dc45df68d88fabe928e8adf76f30dfcb4f086 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Alexander Millar_0.7011144_0776.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f13ebda3afcf257ccbca93d14f9591061f3eb90641c55a1a513c82bd6cb99d9 +size 11786 diff --git a/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Alexander Rodchenko_0.67415404_0685.jpg b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Alexander Rodchenko_0.67415404_0685.jpg new file mode 100644 index 0000000000000000000000000000000000000000..123dfca3ced53ae6f93bd834122dfed7a9d965c8 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Alexander Rodchenko_0.67415404_0685.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8740f2ec2ef5e5a81bb2f7c89268a3d8276535874fd8a0cf6bb335356548bd66 +size 11628 diff --git a/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Alexej von Jawlensky_0.8308932_0156.jpg b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Alexej von Jawlensky_0.8308932_0156.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6bcd3972247de2b1f86b525118d090d2e60411d6 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Alexej von Jawlensky_0.8308932_0156.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7aa04a6deb749bc44fe3f98891ee86db0f2af9364519b92f2c12b22f50113471 +size 14829 diff --git a/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Alfred Wallis_0.77926695_0259.jpg b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Alfred Wallis_0.77926695_0259.jpg new file mode 100644 index 0000000000000000000000000000000000000000..23fdcae330888d8b45576e1b5129f95c72813d71 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Alfred Wallis_0.77926695_0259.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa75112bcaabbf2600e7b76bfe0840b39ad0b214c0bf2d1d17f00096802f429a +size 13229 diff --git a/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Alice Neel_0.67255914_1115.jpg b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Alice Neel_0.67255914_1115.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ff73a69f57262f546051d0663513b42f5998db1a --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Alice Neel_0.67255914_1115.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:296ec39f5875503267b84510b632ecb12d2ed9ef0bb8fcad19b78fa2de0c38c2 +size 13919 diff --git a/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Alice Rahon_0.6777824_1041.jpg b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Alice Rahon_0.6777824_1041.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4a4fb693d09bbca80458c1781d02a2468a2ceafe --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Alice Rahon_0.6777824_1041.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c875fc0e3affc74079121a57394fed805da480f5f48cac9fcea0fa8e962d7e46 +size 11271 diff --git a/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Alison Bechdel_0.68096143_1000.jpg b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Alison Bechdel_0.68096143_1000.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7c13e2ffd3068de89e7906519b1f3e8735dbc96e --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Alison Bechdel_0.68096143_1000.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c70e5ea2d0967554036258fad87dcad35e051d604b0ab00212d2863bdb2b43be +size 20298 diff --git a/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Allen Jones_0.6869935_0942.jpg b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Allen Jones_0.6869935_0942.jpg new file mode 100644 index 0000000000000000000000000000000000000000..09f3cd71edcbf44f6db72330069a28ab13c91a4a --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Allen Jones_0.6869935_0942.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:90e9b246d5a423f362fe2d1a11e09a9724615302bcfbcb691eb52aa2fb9ea96b +size 11816 diff --git a/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Amedeo Modigliani_0.71788836_0613.jpg b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Amedeo Modigliani_0.71788836_0613.jpg new file mode 100644 index 0000000000000000000000000000000000000000..81fa528d430ac07c1cf0593edb79b1b42adb2ac0 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Amedeo Modigliani_0.71788836_0613.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf981597e2079bac99b773f2d594fea452a94fdcfd16ca38acf85078500d13ce +size 13545 diff --git a/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Amy Sillman_0.752921_0371.jpg b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Amy Sillman_0.752921_0371.jpg new file mode 100644 index 0000000000000000000000000000000000000000..25092d99c4c6f6214d8483688af8545cfa8b20ef --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Amy Sillman_0.752921_0371.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6dc81a3d76c5bfa3d4e13d34e9ba96f67d5cd1d2ec16649441146bf8baf95fa2 +size 15589 diff --git a/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Andre Derain_0.73050404_0504.jpg b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Andre Derain_0.73050404_0504.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e27feb02b5b260195a3f0c56058b6fa4f9495a47 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Andre Derain_0.73050404_0504.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7207a0a75e9d2185b936cba806e9972d36182fe7cec96d4e91442180abcc8626 +size 14395 diff --git "a/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Andr\303\251 Derain_0.7009005_0779.jpg" "b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Andr\303\251 Derain_0.7009005_0779.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..e4416f24075a310b9d0eba3d06869e23fc8e45b1 --- /dev/null +++ "b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Andr\303\251 Derain_0.7009005_0779.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d5c94dba59bc17f92f7ed3b987186402805f6d5f88c77e89a44e2e5ab53ef485 +size 15332 diff --git "a/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Andr\303\251 Lhote_0.68718815_0885.jpg" "b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Andr\303\251 Lhote_0.68718815_0885.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..d5c1ffe675bbea90fb45feb40737ec6ebba6ce58 --- /dev/null +++ "b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Andr\303\251 Lhote_0.68718815_0885.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:30341c00f0c2bbe2e211f496c30c636ad6fbd62fe525bc72e488c21ed3e44680 +size 16171 diff --git "a/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Andr\303\251 Masson_0.727404_0535.jpg" "b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Andr\303\251 Masson_0.727404_0535.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..80381c75f61ec66015c9f8e41423088a5055a81e --- /dev/null +++ "b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Andr\303\251 Masson_0.727404_0535.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3155d27472f36ed3cf8cd08981b3e1c4283f45f9a0097859e8ea072d1eb271b2 +size 19168 diff --git a/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Andy Warhol_0.8654825_0120.jpg b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Andy Warhol_0.8654825_0120.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2b0699ccee44e3c958673b5050f447ef35c6726f --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Andy Warhol_0.8654825_0120.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e4fd66234c0e2aa882b85b0c3e4225d5fa3a42497c4ac61c9135375ebf1306d3 +size 19906 diff --git a/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Anna Bocek_0.6382304_1499.jpg b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Anna Bocek_0.6382304_1499.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bb78e23482478fe2786154684af557be91367117 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Anna Bocek_0.6382304_1499.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f692daa2c7c5fcd484c55756828fef706a606b59286a8d0d4da66867a246da0 +size 18726 diff --git a/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Anne Redpath_0.66407835_1222.jpg b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Anne Redpath_0.66407835_1222.jpg new file mode 100644 index 0000000000000000000000000000000000000000..da151867fadab4c1a00412776618f81fe5dc8d6c --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Anne Redpath_0.66407835_1222.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:958e75c1c51f69d9bc883c15d5c57c5cbc216027309aadf950c2ad9cf4d04ebe +size 14361 diff --git a/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Anne Rothenstein_0.70502245_0746.jpg b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Anne Rothenstein_0.70502245_0746.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a6afb9cb0787fd83c5a405c7d48917fb4d383b80 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Anne Rothenstein_0.70502245_0746.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:61d5e1a96cc39128e069b79a3bad22acba852995907acb671d760e00ef7ddf75 +size 8109 diff --git a/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Anne Truitt_0.73297834_0483.jpg b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Anne Truitt_0.73297834_0483.jpg new file mode 100644 index 0000000000000000000000000000000000000000..83a00e7f87bbd8d091caf7e2bac55d3d4f94fc69 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Anne Truitt_0.73297834_0483.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:62ab8134a6a08e9c24a95265f4cc916b9110ce886c0bb29e6c41d86cf736801e +size 10536 diff --git a/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Annie Soudain_0.7671485_0308.jpg b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Annie Soudain_0.7671485_0308.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bb70abab0748254cb9ad2612d5bb520e1c9f9c33 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Annie Soudain_0.7671485_0308.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de15c87b9d811ab8b0b21e63b766b15a0fdceaa0e9ed0863d2584074dbc03148 +size 16492 diff --git a/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Anselm Kiefer_0.71514887_0640.jpg b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Anselm Kiefer_0.71514887_0640.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4420224b5425e305f3bc52ba396882716328edc4 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Anselm Kiefer_0.71514887_0640.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf71266814cde77c7b433c80c15b3feb1d96b87ee933538674b42650d2cb2e8d +size 14036 diff --git a/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Antonio Saura_0.7155949_0637.jpg b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Antonio Saura_0.7155949_0637.jpg new file mode 100644 index 0000000000000000000000000000000000000000..03cc1fa0d456a44a49cc199587bdd82412d0ce67 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Antonio Saura_0.7155949_0637.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bdedfb7ddda1ca8a035f9279950ac9a83f4b240b30092c0cc5ddeb306efe5d11 +size 15468 diff --git a/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Archibald Motley_0.7343683_0476.jpg b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Archibald Motley_0.7343683_0476.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a8657e3683fe9cb9de1aa954d43772b2fe922c43 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Archibald Motley_0.7343683_0476.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:152f59e540909bc05f285ab68e3b214aa3c1e0368d9d47e1acce5f1bd90ac1b5 +size 12379 diff --git a/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Aristarkh Lentulov_0.846537_0134.jpg b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Aristarkh Lentulov_0.846537_0134.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3104d1e36d634ba93139578da13c352a91c86ccf --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Aristarkh Lentulov_0.846537_0134.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c60cffde255c7cb0cedd2830ac75a4a8a820cb0cd00b098e968c8721590a76d0 +size 17472 diff --git a/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Aristide Maillol_0.66843045_1167.jpg b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Aristide Maillol_0.66843045_1167.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0e644eb2f0386a438d80a78f6f2163c7e5f1483f --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Aristide Maillol_0.66843045_1167.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca168ab5f912784990f07a1d24aabebdc3b28fafba305c5357ce4297f3628747 +size 12000 diff --git a/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Armand Guillaumin_0.7840431_0246.jpg b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Armand Guillaumin_0.7840431_0246.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8ef4ab72fe95f0ffc6e92586dab70149532cd27f --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Armand Guillaumin_0.7840431_0246.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d658f85fbb76c747b215541d6fbd5d89f91d8dbd3781777559cfd333e688d59 +size 19838 diff --git a/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Arshile Gorky_0.71459055_0644.jpg b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Arshile Gorky_0.71459055_0644.jpg new file mode 100644 index 0000000000000000000000000000000000000000..23dd3d1535e3b2e84c0bb88a9ff28bef9b54f21d --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Arshile Gorky_0.71459055_0644.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6e411318ca91e1784e89ac8f818cdb3ebc36118f96c325d0f3474009dd1c0ae +size 15320 diff --git a/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Art Spiegelman_0.7656343_0315.jpg b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Art Spiegelman_0.7656343_0315.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8082c2eefa05c2bda2b285dcc9ea99552676125f --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Art Spiegelman_0.7656343_0315.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:68fa53f8d2e62eb3bd344b51fb0dab0c7b531e54188da387808f86c8f4673336 +size 20032 diff --git a/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Arthur Dove_0.74383533_0418.jpg b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Arthur Dove_0.74383533_0418.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6dac343aedbfab6f59648b3490790fce1e787b06 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Arthur Dove_0.74383533_0418.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:632a10685b6bb581fe90839913833a9b88a272eeac58a93d1a3ba80e8e0b472a +size 12542 diff --git a/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Arthur Garfield Dove_0.6694996_1150.jpg b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Arthur Garfield Dove_0.6694996_1150.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9d4f27dd2f3434a96528eb90d4857a37223d0be0 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Arthur Garfield Dove_0.6694996_1150.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c951f07fce7b9a8bd3ba83e3867fe5ade86e2da46439198da8d7a3c80b3713e7 +size 14273 diff --git a/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Arthur Lismer_0.7251765_0554.jpg b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Arthur Lismer_0.7251765_0554.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5fc195622523cd88681462f5c13c39a502005f6b --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Arthur Lismer_0.7251765_0554.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8388f362a6b796718208e2f4342af09c381a732288612536f1132c1a7c16ce2c +size 18693 diff --git a/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Asaf Hanuka_0.72222745_0580.jpg b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Asaf Hanuka_0.72222745_0580.jpg new file mode 100644 index 0000000000000000000000000000000000000000..835b8ebc7c3fefed869875806e99aff10a4c34a4 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Asaf Hanuka_0.72222745_0580.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c4c93db56da5690d0fbfd29d5c30250b39d6e0c73b9769b53c4a17c22fa74b55 +size 22748 diff --git a/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Asger Jorn_0.7129575_0665.jpg b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Asger Jorn_0.7129575_0665.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ace219ae5a43fa003d56ad5c928c58c62823ad34 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Asger Jorn_0.7129575_0665.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f888f9660f510d3cf304980729e333522a932ecfb9dbae25895f403db194bcdf +size 16243 diff --git a/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Atey Ghailan_0.674873_1077.jpg b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Atey Ghailan_0.674873_1077.jpg new file mode 100644 index 0000000000000000000000000000000000000000..000ef42fac20d45d0299383349ec7b86110c0f4a --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Atey Ghailan_0.674873_1077.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b898e6cf6eff01f9d43d2490f99799614579818b5d10d2a2e31c3bc9abfd931 +size 9569 diff --git a/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Aubrey Beardsley_0.77970016_0257.jpg b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Aubrey Beardsley_0.77970016_0257.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a32f21ae40d88e716cc9ba3c8a72a10ced43a603 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Aubrey Beardsley_0.77970016_0257.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:17a4978f93741a7a39f38c2dd8d86e2ae59914e6ebd5971b5214f59e9859447f +size 18537 diff --git a/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_August Macke_0.8362022_0146.jpg b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_August Macke_0.8362022_0146.jpg new file mode 100644 index 0000000000000000000000000000000000000000..78f1e251a4045fedd26bf52f99560552eed4336a --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_August Macke_0.8362022_0146.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06c9c14f7e6781c888de7b837c5b0164b0e9281000eb87619328abcffbca56a1 +size 14352 diff --git a/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Auguste Herbin_0.6866145_0698.jpg b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Auguste Herbin_0.6866145_0698.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fd2a6721aaa3bc328215b9b4b1c9898b7a474ae0 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Auguste Herbin_0.6866145_0698.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e72de16675b874bff9f23cd956fd1edeb160a1055463b6f2ce3bd1bd46d3589 +size 12956 diff --git a/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Balthus_0.6314323_1570.jpg b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Balthus_0.6314323_1570.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e55fa26667644cc1a21975fd778765e65cbdba69 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Balthus_0.6314323_1570.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:815846d5eb8d633a366dd91105223caa7295c442373bf98baec6e63eba1610f2 +size 11931 diff --git a/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Banksy_0.80695426_0200.jpg b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Banksy_0.80695426_0200.jpg new file mode 100644 index 0000000000000000000000000000000000000000..67719df4fc47eb4d1398c6ada30f8b5bd3301c11 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Banksy_0.80695426_0200.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b2249e584bd3d02906db636944f0c774c5e35388ec48b2829d34a8013f811cc +size 14553 diff --git a/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Barbara Kruger_0.7562784_0356.jpg b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Barbara Kruger_0.7562784_0356.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6a498eda9e85b84c4fb482fc02c7df7cfe85a926 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Barbara Kruger_0.7562784_0356.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9a9aa2dbcd7ef1437de080ddd4a7587d5a4501b779c217e98e846c1e6e3022ec +size 20971 diff --git a/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Barbara Takenaga_0.86223894_0121.jpg b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Barbara Takenaga_0.86223894_0121.jpg new file mode 100644 index 0000000000000000000000000000000000000000..668faa02d163d238e8edfe1477b75d60fc9b2324 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Barbara Takenaga_0.86223894_0121.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:69a4c1e42bfa690cb8640001fa08d4829b5a19aaba35180176c426e5920c3e35 +size 17975 diff --git a/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Barnett Newman_0.7236389_0569.jpg b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Barnett Newman_0.7236389_0569.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d739936fb8308da555c0ebf9a322ba3708544429 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Barnett Newman_0.7236389_0569.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:56b27dee220fbe958835f5baad64d0364befee000f01d32a3b4fc4c284425ffc +size 10291 diff --git a/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Barry McGee_0.77618384_0269.jpg b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Barry McGee_0.77618384_0269.jpg new file mode 100644 index 0000000000000000000000000000000000000000..87f106e1446af5a16bd69fcfd591f4b79342c477 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Barry McGee_0.77618384_0269.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a8c762cbb5c8a641cb078770c80a8677301f04ca2c7172d49df2b4d54b71e7a8 +size 25325 diff --git a/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Beauford Delaney_0.72999024_0506.jpg b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Beauford Delaney_0.72999024_0506.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b921400feb5f88756f4c137076a8d0d3b4b5b907 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Beauford Delaney_0.72999024_0506.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:98f6f364dfdcbd89524beca4ddd4c3b3482ff08434cd631817d6c2caf266a267 +size 15111 diff --git a/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Ben Nicholson_0.7411573_0434.jpg b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Ben Nicholson_0.7411573_0434.jpg new file mode 100644 index 0000000000000000000000000000000000000000..79bf7401405588fa6646a3e545ffe87a028173db --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Ben Nicholson_0.7411573_0434.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:59e26e9aa7d0bbaa64dcc4846367cf6ac167adf8b3dc567933a6dbd55f58df45 +size 13323 diff --git a/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Ben Shahn_0.8104582_0189.jpg b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Ben Shahn_0.8104582_0189.jpg new file mode 100644 index 0000000000000000000000000000000000000000..12d2e5e08cc1ed56854dbf899df16aea7c48b7ec --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Ben Shahn_0.8104582_0189.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:853cff2ab5cc42fb4e0271b0ec0fc5dcd8b33a47bb4eab1223a94144f28d35bd +size 17401 diff --git a/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Bert Stern_0.53411555_0815.jpg b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Bert Stern_0.53411555_0815.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a127d0b027b9403043a269b9fbc7f98b11c57028 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Bert Stern_0.53411555_0815.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ef0331804e116f1b0b0cf92190a955450a41831e00e5892e1cbaed43ad906df +size 14745 diff --git a/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Bhupen Khakhar_0.8077607_0197.jpg b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Bhupen Khakhar_0.8077607_0197.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6df00584775dbe9a98bbaea7d469a83b0a5f216e --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Bhupen Khakhar_0.8077607_0197.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:381b8965b3b4ae7e3dc084acc0ca3ff04e0cfb60811f8dafc1b26ffddcd065cc +size 13285 diff --git a/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Bill Traylor_0.73189163_0491.jpg b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Bill Traylor_0.73189163_0491.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1e2a530a25e381d696d7d6f65d2b9c1671c37846 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Bill Traylor_0.73189163_0491.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe5d6c4d9d9bb1ac198413080bad1ed0513b94fe9332aec250b2c073eadf7b1a +size 10808 diff --git a/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Billy Childish_0.6902057_0900.jpg b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Billy Childish_0.6902057_0900.jpg new file mode 100644 index 0000000000000000000000000000000000000000..320d60aadf2e37a1ed569c125af2036909d412c8 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Billy Childish_0.6902057_0900.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:477d76c66fcea5387453c41d56cb9b5bcd64ae9ac534a9f5c62386ec7945f3a2 +size 16912 diff --git a/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Boris Grigoriev_0.6107853_1776.jpg b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Boris Grigoriev_0.6107853_1776.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5363c0dd431f1a76788738eecbc2ea3dae27b090 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Boris Grigoriev_0.6107853_1776.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7adc4de9e0b5cc163fe1f54d9872ade278b23bfa7500c160e4301d1e22318360 +size 13026 diff --git a/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Botero_0.63843524_1497.jpg b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Botero_0.63843524_1497.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e77a1c7ea7a4e591037f80fca6aa292747f4633e --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Botero_0.63843524_1497.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:42c41570ea6f6fad5fac2371e4a0127d5297c640fd564bc185b29027668a6969 +size 12848 diff --git a/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Brett Whiteley_0.81601924_0178.jpg b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Brett Whiteley_0.81601924_0178.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fb324b1aee5545dd7459faa6580a66d05e5bacbe --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Brett Whiteley_0.81601924_0178.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b10c4674c75bf1b2d174c0a52e2f825a42ba7aee84481b1b4d590daac2e8305 +size 16548 diff --git a/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Brian Bolland_0.68496394_0962.jpg b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Brian Bolland_0.68496394_0962.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3049017bb719be50c7276e1a35609b8564dc779f --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Brian Bolland_0.68496394_0962.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e309fea138841158921fe90ef55956dc4b382af10ea78acc9d153342b34f2c44 +size 26959 diff --git a/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Brian Kesinger_0.63037646_1583.jpg b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Brian Kesinger_0.63037646_1583.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c1cb6fd1490a75cb43db0fae0121ee39295573bc --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Brian Kesinger_0.63037646_1583.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5550d0a87671478668e532f691efc992e489b48cee10a3f552ac8e4d8c0583fa +size 19084 diff --git a/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Brian Stelfreeze_0.7478351_0395.jpg b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Brian Stelfreeze_0.7478351_0395.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f6df9f946ce5b0a7dd4fdc7fc1d5c8e5eebdc2b1 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Brian Stelfreeze_0.7478351_0395.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f76d1fbfa92887e4bff17206671e2394773984ec5ba6debd2bdc7b806a1b6084 +size 15618 diff --git a/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Bridget Bate Tichenor_0.73274165_0486.jpg b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Bridget Bate Tichenor_0.73274165_0486.jpg new file mode 100644 index 0000000000000000000000000000000000000000..cf77f02dfee60d9aeb3aa01eb0f09b492fdbbf2a --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Bridget Bate Tichenor_0.73274165_0486.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6746d2a923a12278e499739c05bacf6a17cdabe1e49fbddc806dd2a63c0da159 +size 11415 diff --git a/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Bruce McLean_0.76335883_0324.jpg b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Bruce McLean_0.76335883_0324.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6a2a08c6e35bf7eeaf78383f14cbda3631c43373 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Bruce McLean_0.76335883_0324.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5908faa49916d59d0047200090566e7465046afdceec98e7fe15bc7e12289512 +size 12914 diff --git a/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Bruce Timm_0.6477877_1410.jpg b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Bruce Timm_0.6477877_1410.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fc6f47e06ee75dd6d06af27ecc3975ac61c9b531 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Bruce Timm_0.6477877_1410.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f3b822b0de6a9a5d50b9bded28bd1e27025b1ad61a713da219aa5a6e0020f2fd +size 21288 diff --git a/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Catherine Hyde_0.71266896_0670.jpg b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Catherine Hyde_0.71266896_0670.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5994a9da77dbd20ea1db8086df8ddf6223a2e8ed --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Catherine Hyde_0.71266896_0670.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b01e8b14863cb8e1dd4fa106b5bca669ca24fd401b50dc064761dd37dbe39c65 +size 9031 diff --git a/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Catrin Welz-Stein_0.73117495_0495.jpg b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Catrin Welz-Stein_0.73117495_0495.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4e5e622900d9d6016616afccedac65b599e57ba2 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Catrin Welz-Stein_0.73117495_0495.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:62fdb7fb226fa5f739038fe8da6b31fa08eb1d441e040da6b73d06593a434caf +size 13763 diff --git a/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Chagall_0.8718535_0116.jpg b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Chagall_0.8718535_0116.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c7c6d401fe0dc2b05943765a764a96b967e9cee6 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Chagall_0.8718535_0116.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b197b7bc835a93cb8f098af49cdadc55f7e951d1ae1a78698fb4e7f7cdabfac +size 19306 diff --git a/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Chaim Soutine_0.73662066_0460.jpg b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Chaim Soutine_0.73662066_0460.jpg new file mode 100644 index 0000000000000000000000000000000000000000..dc6fcf6364f952771132491120c116a2d29c66d1 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Chaim Soutine_0.73662066_0460.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:614b933727530bbb2fca586f9c7e08a13848156331d4daf8f1e904f2bc53c07c +size 18883 diff --git a/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Chantal Joffe_0.70036674_0790.jpg b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Chantal Joffe_0.70036674_0790.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3be3efffd633eb2610179c8646e1ed6708d99c59 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Chantal Joffe_0.70036674_0790.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:254dfa52a68cf0ad5d8582ee94f71b62c5492d37a5ac492a832d50bde18c229d +size 12514 diff --git a/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Charles Addams_0.7344034_0474.jpg b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Charles Addams_0.7344034_0474.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f3272556720a5b8fb7d40b2cab5925d049c3ae0a --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Charles Addams_0.7344034_0474.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd5c040f03fe3b2996d608bb50add39d5e4ea9d8d8d757b1a3ac589916642901 +size 14104 diff --git a/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Charles Blackman_0.83200824_0154.jpg b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Charles Blackman_0.83200824_0154.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d880a2d63b3ffd776dc8152aa12667843259192f --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Charles Blackman_0.83200824_0154.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bdcee25fa7d7fa598c945f42c0270aa3d2b0e96edf3c562b89b910e9e37104ff +size 13439 diff --git a/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Charles Camoin_0.7395686_0443.jpg b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Charles Camoin_0.7395686_0443.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8f5fe608212f7263304df71f1885ed98d5d1ae63 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Charles Camoin_0.7395686_0443.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5825911310a92a4a91370bf1300982eb2ccab8fd2996c57c0da978bc304c8742 +size 15446 diff --git a/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Charles Demuth_0.71605396_0632.jpg b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Charles Demuth_0.71605396_0632.jpg new file mode 100644 index 0000000000000000000000000000000000000000..338575e6b2d619035d6845004d5d99e071587d0e --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Charles Demuth_0.71605396_0632.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e32c05ac78cb9a4d6f44dea888f33827a3e5c0bacdc0691e49eb157311b02e4 +size 11996 diff --git a/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Charles E. Burchfield_0.75174403_0375.jpg b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Charles E. Burchfield_0.75174403_0375.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a4858643f6076e6e941d8334fc01cf37ca00d7c3 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Charles E. Burchfield_0.75174403_0375.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5487320ef5365bc09136fa66ca7d86d5527bdf6c9b05c518749aa31fa76cc4e7 +size 17319 diff --git a/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Charles Gwathmey_0.7394747_0445.jpg b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Charles Gwathmey_0.7394747_0445.jpg new file mode 100644 index 0000000000000000000000000000000000000000..23aed6abf574d92ed361bb463b185f89fc39e525 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Charles Gwathmey_0.7394747_0445.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:79086b13743cd277f57a8a4d41a312482b0d2f3930abdfebc7a719ee2cac527f +size 12818 diff --git a/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Charles Rennie Mackintosh_0.81297064_0183.jpg b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Charles Rennie Mackintosh_0.81297064_0183.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1bdb61c98772a3e84d22783f36191180d8a6afb9 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Charles Rennie Mackintosh_0.81297064_0183.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ea01e4fe9eac42e4d28c646874ebc5810bcc34eabacf732dc5f4748b09849950 +size 17147 diff --git a/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Charline von Heyl_0.753142_0369.jpg b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Charline von Heyl_0.753142_0369.jpg new file mode 100644 index 0000000000000000000000000000000000000000..733aa2f038508c544c1707a5c0e51664aab88c0a --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Charline von Heyl_0.753142_0369.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cbbf7ffebb369893bed22e01fddac1b29281f592cda13fa0517a9664047019b4 +size 18784 diff --git "a/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Cha\303\257m Soutine_0.72603923_0545.jpg" "b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Cha\303\257m Soutine_0.72603923_0545.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..7394ffef93bef5d55b0b147a980c29a534c7e2ab --- /dev/null +++ "b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Cha\303\257m Soutine_0.72603923_0545.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf9ecc71e1c5890ac2e0c835d461ff0035f6c27b6389df2e8555e603f04a8806 +size 18477 diff --git a/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Chris Ofili_0.8073793_0199.jpg b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Chris Ofili_0.8073793_0199.jpg new file mode 100644 index 0000000000000000000000000000000000000000..036e5b89ca375e99d637295bc6a966990fe7c0d9 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Chris Ofili_0.8073793_0199.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24601142f7f02229bdff31c3c562e7ba794babb1ec5f4879df952bb0725b0497 +size 18355 diff --git a/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Chris Ware_0.71628594_0628.jpg b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Chris Ware_0.71628594_0628.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a20ab70023418faed7227c51200b649d723de90b --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Chris Ware_0.71628594_0628.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c01058fbc42f79a00978b92feb35393f49b6abd2144918a55e233070f612d9c +size 19770 diff --git a/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Cleon Peterson_0.74163914_0428.jpg b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Cleon Peterson_0.74163914_0428.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d3e996e90b35bb49a97365ed70594926043eb5a9 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Cleon Peterson_0.74163914_0428.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c14f187004378fb2e0160d765865d428283238511db135f367c3d591c8826433 +size 19375 diff --git a/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Coles Phillips_0.7158309_0633.jpg b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Coles Phillips_0.7158309_0633.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6c4c831e1d19afe5053159b9e12859756c5d4c2d --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Coles Phillips_0.7158309_0633.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e4e8e83735f54838f13f5765c8b484383590abb7e88e56bedbea78bb3843a87 +size 12728 diff --git a/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Colin McCahon_0.76086944_0332.jpg b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Colin McCahon_0.76086944_0332.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2a51e1adc45a5fd548294109fa0280da4325980c --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Colin McCahon_0.76086944_0332.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:985a7231b7b74a23504b8a050c6a892b2e60b035e156bbef5c1e6866f8ca69a3 +size 13335 diff --git a/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Constantin Brancusi_0.7004367_0787.jpg b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Constantin Brancusi_0.7004367_0787.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d9b4a8108aceb8711f767aa465a32aa01574f452 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Constantin Brancusi_0.7004367_0787.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:38990c698b5556ecae103a35f0dca895caeae4ae9147e1d5f300da9b726d4eff +size 9701 diff --git a/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Craola_0.65639997_1310.jpg b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Craola_0.65639997_1310.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2e32a033164c77d80f83ef0212d83808b6e7cb9a --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Craola_0.65639997_1310.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:91fac20a8341606d8a36206016d6b256ab885c1eda3b9984ade0be97900a4e5d +size 20314 diff --git a/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Cuno Amiet_0.7979497_0220.jpg b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Cuno Amiet_0.7979497_0220.jpg new file mode 100644 index 0000000000000000000000000000000000000000..85f23f7797c08d4e09904c4cf86327b0728201a2 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Cuno Amiet_0.7979497_0220.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ed4608572c0755e38f9845b9fb301039fd2395cb22f00a8a9df99b14bac1df1 +size 12257 diff --git a/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Cy Twombly_0.72814107_0522.jpg b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Cy Twombly_0.72814107_0522.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e6c03a61a69919133684fbcf84373cad5d85293f --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_Cy Twombly_0.72814107_0522.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e0525a8e1458a2b89b3bc6d6f70da8eb1b45d855cf0ea87a27614d490a08a5b +size 12001 diff --git "a/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_C\303\251zanne_0.7879481_0240.jpg" "b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_C\303\251zanne_0.7879481_0240.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..2bd23e1e2d992276a95141586bd91cd1e84d07e8 --- /dev/null +++ "b/artists-to-study/ats/thumbnail/portrait/scribbles/scribbles_C\303\251zanne_0.7879481_0240.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a61196f10c86bcbdb899f844e159b8f8798f802e08c9e455e13df8e36b2975df +size 17675 diff --git a/artists-to-study/ats/thumbnail/portrait/special/special_Akihiko Yoshida_0.5901294_1980.jpg b/artists-to-study/ats/thumbnail/portrait/special/special_Akihiko Yoshida_0.5901294_1980.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9a6ae6132256c3d59f8b11a55665c39c220b743c --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/special/special_Akihiko Yoshida_0.5901294_1980.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afe94b3c05f60270929bfe019332d1bb5ebd74df2eda88550107c1b9afab27ac +size 13093 diff --git a/artists-to-study/ats/thumbnail/portrait/special/special_Alejandro Burdisio_0.47482288_2406.jpg b/artists-to-study/ats/thumbnail/portrait/special/special_Alejandro Burdisio_0.47482288_2406.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3ad7ec6991dc996a8cdd965642f3a2207cb762fb --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/special/special_Alejandro Burdisio_0.47482288_2406.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c922d97b2573791d63ed6154548ece04d18ac161d8b6b6995262ff8d1642c11a +size 11075 diff --git a/artists-to-study/ats/thumbnail/portrait/special/special_Alfonse Mucha_0.7139052_0655.jpg b/artists-to-study/ats/thumbnail/portrait/special/special_Alfonse Mucha_0.7139052_0655.jpg new file mode 100644 index 0000000000000000000000000000000000000000..84b97b81ae224bc2cc1a14f03367dbff7572d8a2 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/special/special_Alfonse Mucha_0.7139052_0655.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:04713849969503454dd4cd58f9b74c0b374b3b29d84c06b682068a31a0f0cee7 +size 18471 diff --git a/artists-to-study/ats/thumbnail/portrait/special/special_Alphonse Mucha_0.74171394_0427.jpg b/artists-to-study/ats/thumbnail/portrait/special/special_Alphonse Mucha_0.74171394_0427.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a9a527b8b5ea498ad78b2918d13847ba34337642 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/special/special_Alphonse Mucha_0.74171394_0427.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eab5e44e29eed9b3565e6e59c7c012d097453cecec3ba5285dc887c42d1b8023 +size 20394 diff --git a/artists-to-study/ats/thumbnail/portrait/special/special_Andre Kohn_0.5581832_2298.jpg b/artists-to-study/ats/thumbnail/portrait/special/special_Andre Kohn_0.5581832_2298.jpg new file mode 100644 index 0000000000000000000000000000000000000000..57a314df7efbf698f251ab8068e1af39a91c4151 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/special/special_Andre Kohn_0.5581832_2298.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e9184619c979f3681b09ea7886d76c220f01e29e1cc9ff2d38c69383c99c4e93 +size 10586 diff --git a/artists-to-study/ats/thumbnail/portrait/special/special_Andreas Rocha_0.49621177_2439.jpg b/artists-to-study/ats/thumbnail/portrait/special/special_Andreas Rocha_0.49621177_2439.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c002086669fce8eb37b9fbfeb2a38c4c5910f7b9 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/special/special_Andreas Rocha_0.49621177_2439.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6c5325794e5c9f2853bdcb1f5637b4ea1b61eaae5ffe97270bce09590a22cd2 +size 10001 diff --git a/artists-to-study/ats/thumbnail/portrait/special/special_Andy Fairhurst_0.6480388_1407.jpg b/artists-to-study/ats/thumbnail/portrait/special/special_Andy Fairhurst_0.6480388_1407.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f260fb1249d9707370effcb53adc34d36777c1b9 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/special/special_Andy Fairhurst_0.6480388_1407.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db3dc3dc9c1e38c7058df83cfc40a7244b8b7a03e49665ea70d3288f28d20550 +size 10851 diff --git a/artists-to-study/ats/thumbnail/portrait/special/special_Bastien L. Deharme_0.583349_2003.jpg b/artists-to-study/ats/thumbnail/portrait/special/special_Bastien L. Deharme_0.583349_2003.jpg new file mode 100644 index 0000000000000000000000000000000000000000..70d9b5274fa5c94b23c0d35e6fe5143f76df0df2 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/special/special_Bastien L. Deharme_0.583349_2003.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e6a1e6bd5b5bc6cb719440f4510b663e77759197b048dafb8910a116651e37d +size 9749 diff --git a/artists-to-study/ats/thumbnail/portrait/special/special_Charlie Bowater_0.4410439_1872.jpg b/artists-to-study/ats/thumbnail/portrait/special/special_Charlie Bowater_0.4410439_1872.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9c3998378731b6a30bc384759d785f9cb3eba6b9 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/special/special_Charlie Bowater_0.4410439_1872.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e62c9e961fa76c211557ad4f4f68c43cbe9229aa2051683d3e8cf13f48fc3f4a +size 10039 diff --git a/artists-to-study/ats/thumbnail/portrait/special/special_Christopher Balaskas_0.67935324_0684.jpg b/artists-to-study/ats/thumbnail/portrait/special/special_Christopher Balaskas_0.67935324_0684.jpg new file mode 100644 index 0000000000000000000000000000000000000000..56fb31f3e4bd96467521709e6c2148ba75096939 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/special/special_Christopher Balaskas_0.67935324_0684.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:31c5401195541dce67d2ed1122a15fa6a0f0faea8d4f58c1b75821dffed4bec5 +size 9082 diff --git a/artists-to-study/ats/thumbnail/portrait/special/special_Craig Davison_0.499598_2659.jpg b/artists-to-study/ats/thumbnail/portrait/special/special_Craig Davison_0.499598_2659.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4d877e339ba509cbae6e051809131bb6195c1de8 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/special/special_Craig Davison_0.499598_2659.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ce60892a27bf98472d238094c045ebf790d4c4278189ad481ad5728fd37c96a +size 10419 diff --git a/artists-to-study/ats/thumbnail/portrait/special/special_Daniela Uhlig_0.4691466_0529.jpg b/artists-to-study/ats/thumbnail/portrait/special/special_Daniela Uhlig_0.4691466_0529.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c505480e6ec7beea20768480bb2b7c9637dcc7fd --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/special/special_Daniela Uhlig_0.4691466_0529.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:302e1212bfd192fdc500f5b3d7137c334ce6e23fd1e0a4f5868e5b044011f43d +size 9777 diff --git a/artists-to-study/ats/thumbnail/portrait/special/special_Edward Hopper_0.6884258_0923.jpg b/artists-to-study/ats/thumbnail/portrait/special/special_Edward Hopper_0.6884258_0923.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bbf6adb07b301f97d7050b7c5fabbb23352795aa --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/special/special_Edward Hopper_0.6884258_0923.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bbff556e8202d3f3f2bc3e9faf11c806af9e0f3a7514c03be32e9b32cd128a0e +size 12363 diff --git a/artists-to-study/ats/thumbnail/portrait/special/special_Evgeny Lushpin_0.5714827_2187.jpg b/artists-to-study/ats/thumbnail/portrait/special/special_Evgeny Lushpin_0.5714827_2187.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d6368d3141aef218576916f4ac90dbd8dc7451c4 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/special/special_Evgeny Lushpin_0.5714827_2187.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2577198529e88ff6f648fd70fba6be5c1403db60566daae504df7e3cdea34e5 +size 14170 diff --git a/artists-to-study/ats/thumbnail/portrait/special/special_Greg Rutkowski_0.5203395_2105.jpg b/artists-to-study/ats/thumbnail/portrait/special/special_Greg Rutkowski_0.5203395_2105.jpg new file mode 100644 index 0000000000000000000000000000000000000000..644380f42633b84c07a3fe6501deda2997bb627c --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/special/special_Greg Rutkowski_0.5203395_2105.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1974f2e5d4617b97bf9e338f84165c6642df0de9efc8ad4c026e347812edca9a +size 9500 diff --git a/artists-to-study/ats/thumbnail/portrait/special/special_Grzegorz Rutkowski_0.48906532_2602.jpg b/artists-to-study/ats/thumbnail/portrait/special/special_Grzegorz Rutkowski_0.48906532_2602.jpg new file mode 100644 index 0000000000000000000000000000000000000000..87cdd524022ab3f3a05adfd2fdbd20df07f3f803 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/special/special_Grzegorz Rutkowski_0.48906532_2602.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da8c9fa514c98dffe2c957752a709266e4a7d88d3a02f434505a655609070d24 +size 8382 diff --git a/artists-to-study/ats/thumbnail/portrait/special/special_Ilya Kuvshinov_0.5805521_2096.jpg b/artists-to-study/ats/thumbnail/portrait/special/special_Ilya Kuvshinov_0.5805521_2096.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f5c5adf72101b902d929dc5e28f1345b7b581ebb --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/special/special_Ilya Kuvshinov_0.5805521_2096.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:063d0e918f6748063394203ae2bf4b734031225a700ea146dd46cb9368dfdf07 +size 10338 diff --git a/artists-to-study/ats/thumbnail/portrait/special/special_Ismail Inceoglu_0.72561014_0550.jpg b/artists-to-study/ats/thumbnail/portrait/special/special_Ismail Inceoglu_0.72561014_0550.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6b7bb3be72f0251b6a06b8e1f2aae55f500ce9cb --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/special/special_Ismail Inceoglu_0.72561014_0550.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f6a0d0ed887e6b80bb3a788e14af6096770ec576e443a5d3e32aa20a12c9ad88 +size 10073 diff --git a/artists-to-study/ats/thumbnail/portrait/special/special_Jessica Rossier_0.54958373_1920.jpg b/artists-to-study/ats/thumbnail/portrait/special/special_Jessica Rossier_0.54958373_1920.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2304360fc052746025c1e5ec0ce711cb9ce140ab --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/special/special_Jessica Rossier_0.54958373_1920.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f001cd081b5eb514b5495f8466ab8dca0e8a59a783905b502c71018a5e80d89b +size 8182 diff --git a/artists-to-study/ats/thumbnail/portrait/special/special_Joe Madureira_0.6377177_1506.jpg b/artists-to-study/ats/thumbnail/portrait/special/special_Joe Madureira_0.6377177_1506.jpg new file mode 100644 index 0000000000000000000000000000000000000000..269cf6daba614abfaf6ea0ee4cfb0c9550c33401 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/special/special_Joe Madureira_0.6377177_1506.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb45cfd83503d6d8f129ad1c0f9264dd9789242f265c26f33160c61e09184299 +size 23629 diff --git a/artists-to-study/ats/thumbnail/portrait/special/special_Krenz Cushart_0.59026587_1978.jpg b/artists-to-study/ats/thumbnail/portrait/special/special_Krenz Cushart_0.59026587_1978.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d118f06e5a96a3b2b334a1f9dfb296506e3196eb --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/special/special_Krenz Cushart_0.59026587_1978.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf2acf95f482845a11a12f8cc6392883c85680daa1ac8eb1f5e5951cf23184f9 +size 8980 diff --git a/artists-to-study/ats/thumbnail/portrait/special/special_Liam Wong_0.7262276_0542.jpg b/artists-to-study/ats/thumbnail/portrait/special/special_Liam Wong_0.7262276_0542.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c3211dfa28b2eb279fe544cd906634a33d824d9c --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/special/special_Liam Wong_0.7262276_0542.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d95b13ee41fdc6d28bb7647ae586f765769117ca197251166a87480ee01198e5 +size 19599 diff --git a/artists-to-study/ats/thumbnail/portrait/special/special_Ross Tran_0.5259248_2430.jpg b/artists-to-study/ats/thumbnail/portrait/special/special_Ross Tran_0.5259248_2430.jpg new file mode 100644 index 0000000000000000000000000000000000000000..89983fa53261ffef48c65656d496ee2ebe1096f5 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/special/special_Ross Tran_0.5259248_2430.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:25a756504bab8dacd3403c4ccdd223831e1bd90476f9d69aadf1006e6dff74fc +size 11160 diff --git a/artists-to-study/ats/thumbnail/portrait/special/special_Ruan Jia_0.5398549_2323.jpg b/artists-to-study/ats/thumbnail/portrait/special/special_Ruan Jia_0.5398549_2323.jpg new file mode 100644 index 0000000000000000000000000000000000000000..861f49cdaaf6344eb7d075be17a96848c60608ba --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/special/special_Ruan Jia_0.5398549_2323.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33367187e35145012fe62674b57b8c8cb34b2f87d076701f76e221f5b1045b17 +size 8250 diff --git a/artists-to-study/ats/thumbnail/portrait/special/special_Simon Stalenhag_0.6912775_0891.jpg b/artists-to-study/ats/thumbnail/portrait/special/special_Simon Stalenhag_0.6912775_0891.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d00c55518cc32134e5cf8104d1e5539a1850d3f0 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/special/special_Simon Stalenhag_0.6912775_0891.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:952b7563fc19b6e8384244b3abb8b04c186fb9637f206156e20e1c2783300f7d +size 9703 diff --git "a/artists-to-study/ats/thumbnail/portrait/special/special_Taiy\305\215 Matsumoto_0.63372946_1549.jpg" "b/artists-to-study/ats/thumbnail/portrait/special/special_Taiy\305\215 Matsumoto_0.63372946_1549.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..44c8129a7ca1536a6d4a9a8d2fd1e2b346ff8252 --- /dev/null +++ "b/artists-to-study/ats/thumbnail/portrait/special/special_Taiy\305\215 Matsumoto_0.63372946_1549.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dcadd9782f980ec28043d431c490b1460a782118134dc46f0fe4ae5f5e1ca52d +size 8956 diff --git a/artists-to-study/ats/thumbnail/portrait/special/special_Thomas W Schaller_0.69093937_0894.jpg b/artists-to-study/ats/thumbnail/portrait/special/special_Thomas W Schaller_0.69093937_0894.jpg new file mode 100644 index 0000000000000000000000000000000000000000..43360aa75757eb5739a7097042d8fffeff5e9bdf --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/special/special_Thomas W Schaller_0.69093937_0894.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5da4ab748e0f834025016f8cfd23983e9b6f2700ff9821265a24113e98c5b235 +size 17092 diff --git a/artists-to-study/ats/thumbnail/portrait/ukioe/ukioe_Abdur Rahman Chughtai_0.7004994_0786.jpg b/artists-to-study/ats/thumbnail/portrait/ukioe/ukioe_Abdur Rahman Chughtai_0.7004994_0786.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4990e166f77c37f753ccbae445b661cc6949e365 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/ukioe/ukioe_Abdur Rahman Chughtai_0.7004994_0786.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:49cced22331bef96cd49257eace2c336c18ef0d58b4cddd2fbb0a707f8961437 +size 11332 diff --git a/artists-to-study/ats/thumbnail/portrait/ukioe/ukioe_Chen Hongshou_0.71268153_0669.jpg b/artists-to-study/ats/thumbnail/portrait/ukioe/ukioe_Chen Hongshou_0.71268153_0669.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0574fcf707fb5cf77ccf77c0c53e463dd6c9c960 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/ukioe/ukioe_Chen Hongshou_0.71268153_0669.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d7f4d950dc75529684a3a7fdabdabb5aba45834e2d9d66298a4bf19063353187 +size 10704 diff --git a/artists-to-study/ats/thumbnail/portrait/ukioe/ukioe_Emperor Huizong of Song_0.7525214_0372.jpg b/artists-to-study/ats/thumbnail/portrait/ukioe/ukioe_Emperor Huizong of Song_0.7525214_0372.jpg new file mode 100644 index 0000000000000000000000000000000000000000..24c1e09cec20e395166f09a2839333f97983ef58 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/ukioe/ukioe_Emperor Huizong of Song_0.7525214_0372.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fb17b3942ca6d6df8fb41ff13024eb95f93f6f3ae3ebbb749720d995cf916f2c +size 11446 diff --git a/artists-to-study/ats/thumbnail/portrait/ukioe/ukioe_Fujiwara Takanobu_0.70410216_0755.jpg b/artists-to-study/ats/thumbnail/portrait/ukioe/ukioe_Fujiwara Takanobu_0.70410216_0755.jpg new file mode 100644 index 0000000000000000000000000000000000000000..921e2ea96467d918abf1e6443b57b9cb03faed36 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/ukioe/ukioe_Fujiwara Takanobu_0.70410216_0755.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee1a88cdcdd240a82264df5fb35dd4d2fe37d7710294f38fd3222252eb102709 +size 9800 diff --git "a/artists-to-study/ats/thumbnail/portrait/ukioe/ukioe_Goy\305\215 Hashiguchi_0.7595048_0336.jpg" "b/artists-to-study/ats/thumbnail/portrait/ukioe/ukioe_Goy\305\215 Hashiguchi_0.7595048_0336.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..9be63bfd5b53d6d4adf24846444db9f10f71fdfd --- /dev/null +++ "b/artists-to-study/ats/thumbnail/portrait/ukioe/ukioe_Goy\305\215 Hashiguchi_0.7595048_0336.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e8188d3ed2f510bcdef50817b7e44e8a8854caf77c823391ff7a5cb769797950 +size 7833 diff --git "a/artists-to-study/ats/thumbnail/portrait/ukioe/ukioe_Hanabusa Itch\305\215 II_0.81187993_0187.jpg" "b/artists-to-study/ats/thumbnail/portrait/ukioe/ukioe_Hanabusa Itch\305\215 II_0.81187993_0187.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..35a22cc4e45765061bb992db3aff21365769696a --- /dev/null +++ "b/artists-to-study/ats/thumbnail/portrait/ukioe/ukioe_Hanabusa Itch\305\215 II_0.81187993_0187.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d2913e877828d936fa3cb9dc21300ee5eba7c3aaca07df7686b19d81f12ac29a +size 11293 diff --git "a/artists-to-study/ats/thumbnail/portrait/ukioe/ukioe_Hanabusa Itch\305\215_0.68023074_1012.jpg" "b/artists-to-study/ats/thumbnail/portrait/ukioe/ukioe_Hanabusa Itch\305\215_0.68023074_1012.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..e45d38baf6cd3e94bfed1d35bdc131cbad3a595b --- /dev/null +++ "b/artists-to-study/ats/thumbnail/portrait/ukioe/ukioe_Hanabusa Itch\305\215_0.68023074_1012.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f86592a249fe41c25e462e0acf93415f50b40cadfe9c249dd2914229be9b4578 +size 8922 diff --git a/artists-to-study/ats/thumbnail/portrait/ukioe/ukioe_Hasui Kawase_0.8040483_0207.jpg b/artists-to-study/ats/thumbnail/portrait/ukioe/ukioe_Hasui Kawase_0.8040483_0207.jpg new file mode 100644 index 0000000000000000000000000000000000000000..47bb1cdc50d32795687ae22e95c654143f154987 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/ukioe/ukioe_Hasui Kawase_0.8040483_0207.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e1c2216fb16336240b284b38f2bbc4a851e3709f66add703b1dff3e1da33120 +size 13390 diff --git a/artists-to-study/ats/thumbnail/portrait/ukioe/ukioe_Hiroshi Yoshida_0.73787534_0452.jpg b/artists-to-study/ats/thumbnail/portrait/ukioe/ukioe_Hiroshi Yoshida_0.73787534_0452.jpg new file mode 100644 index 0000000000000000000000000000000000000000..36b984be839dc036deca414d9020d21bf87c9e72 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/ukioe/ukioe_Hiroshi Yoshida_0.73787534_0452.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c09073b5fb3290c1022e798fe8e2cc9edb9d0f0142f4c691c169020d7be65102 +size 10127 diff --git a/artists-to-study/ats/thumbnail/portrait/ukioe/ukioe_Hiroshige_0.93995106_0104.jpg b/artists-to-study/ats/thumbnail/portrait/ukioe/ukioe_Hiroshige_0.93995106_0104.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f943e1795dbf4182ce4eaf40c84b63a90ed70026 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/ukioe/ukioe_Hiroshige_0.93995106_0104.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cdd65eeb600b3980edb75854b302f22d232adb69160134ac3ef7a5c1ea4d4348 +size 15024 diff --git a/artists-to-study/ats/thumbnail/portrait/ukioe/ukioe_Hishikawa Moronobu_0.7794119_0258.jpg b/artists-to-study/ats/thumbnail/portrait/ukioe/ukioe_Hishikawa Moronobu_0.7794119_0258.jpg new file mode 100644 index 0000000000000000000000000000000000000000..85798b361750d745c9b4d177c0a03b31a3f8dde6 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/ukioe/ukioe_Hishikawa Moronobu_0.7794119_0258.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca2b4802ecb0b4f212e2cc776f04ba3a6d1476ad339e7c1ba3ec1efccbf76347 +size 16107 diff --git a/artists-to-study/ats/thumbnail/portrait/ukioe/ukioe_Hokusai_0.85046995_0128.jpg b/artists-to-study/ats/thumbnail/portrait/ukioe/ukioe_Hokusai_0.85046995_0128.jpg new file mode 100644 index 0000000000000000000000000000000000000000..59b50b8cc0c576061480aceaea4aa5f70c8631a4 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/ukioe/ukioe_Hokusai_0.85046995_0128.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d9596fe65fc5937a8c76ce2b57088b9b5e87e3bf7b51f886d6577da6bdecdbe +size 15943 diff --git a/artists-to-study/ats/thumbnail/portrait/ukioe/ukioe_Katsushika Hokusai_0.8887236_0107.jpg b/artists-to-study/ats/thumbnail/portrait/ukioe/ukioe_Katsushika Hokusai_0.8887236_0107.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7f97befa4670c8234e6d51ecde71cd22e36e8255 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/ukioe/ukioe_Katsushika Hokusai_0.8887236_0107.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af2808f8420ec285dfa4996f30243af6f4dd5364d7480c01b55a7d9f234801f2 +size 15095 diff --git "a/artists-to-study/ats/thumbnail/portrait/ukioe/ukioe_Kawanabe Ky\305\215sai_0.86612236_0119.jpg" "b/artists-to-study/ats/thumbnail/portrait/ukioe/ukioe_Kawanabe Ky\305\215sai_0.86612236_0119.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..eb2742fe807dee6cb9d94ea7df311421d55e9e19 --- /dev/null +++ "b/artists-to-study/ats/thumbnail/portrait/ukioe/ukioe_Kawanabe Ky\305\215sai_0.86612236_0119.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aac90d85c3974ebce59b1dd0dca1c04454db1b65bfbf13b8320721759c94f5ae +size 12275 diff --git a/artists-to-study/ats/thumbnail/portrait/ukioe/ukioe_Kitagawa Utamaro_0.83333457_0150.jpg b/artists-to-study/ats/thumbnail/portrait/ukioe/ukioe_Kitagawa Utamaro_0.83333457_0150.jpg new file mode 100644 index 0000000000000000000000000000000000000000..56f3c6e6218088791c612c899bcb62ab025c9070 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/ukioe/ukioe_Kitagawa Utamaro_0.83333457_0150.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b1ba810d9a28422d1a3ab74bafc152b6be17df07ab0aeb2367a9823aa1e37fe1 +size 13799 diff --git a/artists-to-study/ats/thumbnail/portrait/ukioe/ukioe_Kunisada_0.80493814_0204.jpg b/artists-to-study/ats/thumbnail/portrait/ukioe/ukioe_Kunisada_0.80493814_0204.jpg new file mode 100644 index 0000000000000000000000000000000000000000..12646a88758c26953c3f9b0fd42c52f7f7c01387 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/ukioe/ukioe_Kunisada_0.80493814_0204.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a11b7e558f4baae0ef12cf6ef0db22a06b2aeae8f99745ce9d64d682d78f825a +size 14693 diff --git a/artists-to-study/ats/thumbnail/portrait/ukioe/ukioe_Ohara Koson_0.78132576_0255.jpg b/artists-to-study/ats/thumbnail/portrait/ukioe/ukioe_Ohara Koson_0.78132576_0255.jpg new file mode 100644 index 0000000000000000000000000000000000000000..abd04cf510af525b1db78ed1400e35cdc992ccec --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/ukioe/ukioe_Ohara Koson_0.78132576_0255.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:794ac2f871cb1077e7ac102db89ef0d87e4fbd8489d0d4adef8b5dde50ac569d +size 11376 diff --git a/artists-to-study/ats/thumbnail/portrait/ukioe/ukioe_Takato Yamamoto_0.78460765_0243.jpg b/artists-to-study/ats/thumbnail/portrait/ukioe/ukioe_Takato Yamamoto_0.78460765_0243.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6e5b7f5bb3eda2f6a094786325cd5d5fa7120120 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/ukioe/ukioe_Takato Yamamoto_0.78460765_0243.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a1f7e4f77d08955c66848da40f770c79aa1909005073b70839ed724d0659d418 +size 18366 diff --git a/artists-to-study/ats/thumbnail/portrait/ukioe/ukioe_Uemura Shoen_0.7342118_0478.jpg b/artists-to-study/ats/thumbnail/portrait/ukioe/ukioe_Uemura Shoen_0.7342118_0478.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8197681df180bf2f358a767efddb1a727bbaa4c7 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/ukioe/ukioe_Uemura Shoen_0.7342118_0478.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c25128531bfb8eb0a25de224bdd6e1dc6c4e69c6d552de91e7c823dea5d98ea5 +size 10917 diff --git a/artists-to-study/ats/thumbnail/portrait/ukioe/ukioe_Utagawa Hiroshige_0.8728796_0115.jpg b/artists-to-study/ats/thumbnail/portrait/ukioe/ukioe_Utagawa Hiroshige_0.8728796_0115.jpg new file mode 100644 index 0000000000000000000000000000000000000000..37135a643948c4bed2485692acebe97c4efcf218 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/ukioe/ukioe_Utagawa Hiroshige_0.8728796_0115.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:63c9eb80ab9783cb11679307f14d6f8796d2f980c036465e9299cecf288610db +size 17379 diff --git a/artists-to-study/ats/thumbnail/portrait/ukioe/ukioe_Yasuo Kuniyoshi_0.79870003_0217.jpg b/artists-to-study/ats/thumbnail/portrait/ukioe/ukioe_Yasuo Kuniyoshi_0.79870003_0217.jpg new file mode 100644 index 0000000000000000000000000000000000000000..01d8c5e7d821fed2fb4d334e39563b37601e23fd --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/ukioe/ukioe_Yasuo Kuniyoshi_0.79870003_0217.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d9508a808710e288975a3facb1e77fbe3218df1fb1a9ef4ff2c0a94614bc890b +size 14889 diff --git a/artists-to-study/ats/thumbnail/portrait/weird/weird_Alma Thomas_0.87658304_0113.jpg b/artists-to-study/ats/thumbnail/portrait/weird/weird_Alma Thomas_0.87658304_0113.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4ce45242c356b5036731d38ae42341e061401a22 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/weird/weird_Alma Thomas_0.87658304_0113.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f761f2cd38768621ae2b99331ffac3da690a1568cdf54de9daad58e106a7f704 +size 15873 diff --git a/artists-to-study/ats/thumbnail/portrait/weird/weird_Anne Packard_0.7046703_0752.jpg b/artists-to-study/ats/thumbnail/portrait/weird/weird_Anne Packard_0.7046703_0752.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8de650b303ccc7fbbec50ed2084b8cba43055a9c --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/weird/weird_Anne Packard_0.7046703_0752.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cdceb2c81bd857a8e7bc4f86d8f5c976085f26b3d7ec86fd04b392d4ff134231 +size 11143 diff --git a/artists-to-study/ats/thumbnail/portrait/weird/weird_Artur Bordalo_0.7364549_0461.jpg b/artists-to-study/ats/thumbnail/portrait/weird/weird_Artur Bordalo_0.7364549_0461.jpg new file mode 100644 index 0000000000000000000000000000000000000000..96750f3a0b41dd53eb1dc1d9a167075759db3ff7 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/weird/weird_Artur Bordalo_0.7364549_0461.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:103e73ac0fa5ab1275bfbd6b8519ea20c29946a14c0fe631fa2fc9b53c0013cd +size 21658 diff --git a/artists-to-study/ats/thumbnail/portrait/weird/weird_Brandon Mably_0.8128239_0184.jpg b/artists-to-study/ats/thumbnail/portrait/weird/weird_Brandon Mably_0.8128239_0184.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f05b60f876d03932fde8f5713ba5a6d906f217a2 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/weird/weird_Brandon Mably_0.8128239_0184.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:12776a1787f21ee77f9f1f0f7d3a4952e9144c2f5ecaf2f04a943b776b1c346c +size 25623 diff --git a/artists-to-study/ats/thumbnail/portrait/weird/weird_Bruno Munari_0.73918355_0448.jpg b/artists-to-study/ats/thumbnail/portrait/weird/weird_Bruno Munari_0.73918355_0448.jpg new file mode 100644 index 0000000000000000000000000000000000000000..57b6db1bb3c76534c4ee813080e41461b26e6dab --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/weird/weird_Bruno Munari_0.73918355_0448.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff32692e1478769e8c464039510e0b02dc8e64cf1c8c45a9c4c821f17d9483f6 +size 13198 diff --git a/artists-to-study/ats/thumbnail/portrait/weird/weird_Carne Griffiths_0.660091_1260.jpg b/artists-to-study/ats/thumbnail/portrait/weird/weird_Carne Griffiths_0.660091_1260.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a9e839e31ae797575586b1a2bf55ef53e5fccadf --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/weird/weird_Carne Griffiths_0.660091_1260.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e63db9d6dffb0355bd256ed08753b62f59061e9b3f6a31b3d2c2d5541ee3633 +size 24783 diff --git a/artists-to-study/ats/thumbnail/portrait/weird/weird_Claude Cahun_0.7588153_0342.jpg b/artists-to-study/ats/thumbnail/portrait/weird/weird_Claude Cahun_0.7588153_0342.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ea90c7799714329635a59a36ce4aee83a79692d0 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/weird/weird_Claude Cahun_0.7588153_0342.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a1790070442dfe0375e4a9b28d22868cf0af627431bc417f099e34a1b95ef90 +size 12141 diff --git a/artists-to-study/ats/thumbnail/portrait/weird/weird_David Bowie_0.73773724_0454.jpg b/artists-to-study/ats/thumbnail/portrait/weird/weird_David Bowie_0.73773724_0454.jpg new file mode 100644 index 0000000000000000000000000000000000000000..28050e1de1496696e48209838f54e8f87e88a235 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/weird/weird_David Bowie_0.73773724_0454.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f532fe51803151d133d74b66e1c1ebe947fdd2c1a626303b6c080b925f9aa355 +size 14412 diff --git a/artists-to-study/ats/thumbnail/portrait/weird/weird_Eduardo Kobra_0.85036755_0129.jpg b/artists-to-study/ats/thumbnail/portrait/weird/weird_Eduardo Kobra_0.85036755_0129.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7062df95d64848eff9e6e8053d5e4c093ad36b68 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/weird/weird_Eduardo Kobra_0.85036755_0129.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ffdae86d9328a29616edfae7c103bc3a662afa98e665a40e92b1e2c6d735c46d +size 20169 diff --git a/artists-to-study/ats/thumbnail/portrait/weird/weird_Emily Kame Kngwarreye_0.7532016_0368.jpg b/artists-to-study/ats/thumbnail/portrait/weird/weird_Emily Kame Kngwarreye_0.7532016_0368.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0c9b2cb96b7ef49be89a709def1c71dd2cdaa2ea --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/weird/weird_Emily Kame Kngwarreye_0.7532016_0368.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:517f8945cb94cfbebc420d085bdd62226a02716b9d453aa22c882ccfcb691b57 +size 18630 diff --git a/artists-to-study/ats/thumbnail/portrait/weird/weird_Frank Auerbach_0.6201102_1686.jpg b/artists-to-study/ats/thumbnail/portrait/weird/weird_Frank Auerbach_0.6201102_1686.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c5756e02143e74060b749bff716f7b50bdc6e11d --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/weird/weird_Frank Auerbach_0.6201102_1686.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d74d1337f7cee674582454b17d2d8b880e03ac45370bed419eaaec6b17af2988 +size 14316 diff --git a/artists-to-study/ats/thumbnail/portrait/weird/weird_H. R. Giger_0.6456823_1434.jpg b/artists-to-study/ats/thumbnail/portrait/weird/weird_H. R. Giger_0.6456823_1434.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0d4f103756fa11d1d298d78f31aa4704ebcdcccd --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/weird/weird_H. R. Giger_0.6456823_1434.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:931a418b9dda87c2f21aa97109265e8da9ba38513174e1d23b9d50a7e41acb1a +size 18944 diff --git a/artists-to-study/ats/thumbnail/portrait/weird/weird_Hikari Shimoda_0.7104546_0692.jpg b/artists-to-study/ats/thumbnail/portrait/weird/weird_Hikari Shimoda_0.7104546_0692.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6a0b33a0758efef442003f0d08418fc48943968e --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/weird/weird_Hikari Shimoda_0.7104546_0692.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b219c5a355f7ee708feb694db674de427e3abb514ed56a8068942c6e2679aee8 +size 19645 diff --git a/artists-to-study/ats/thumbnail/portrait/weird/weird_Isaac Cordal_0.71046066_0691.jpg b/artists-to-study/ats/thumbnail/portrait/weird/weird_Isaac Cordal_0.71046066_0691.jpg new file mode 100644 index 0000000000000000000000000000000000000000..55f343c9ce2cdc819369275bd6990f8a9e8f46d3 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/weird/weird_Isaac Cordal_0.71046066_0691.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cbbecea670d1d1b347141fff25be16099db5a17d62967370d371d29b75c6475a +size 11510 diff --git a/artists-to-study/ats/thumbnail/portrait/weird/weird_Jaume Plensa_0.7756799_0272.jpg b/artists-to-study/ats/thumbnail/portrait/weird/weird_Jaume Plensa_0.7756799_0272.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b2e2d3e50c6e776ee83b8aec4331380c6634acbf --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/weird/weird_Jaume Plensa_0.7756799_0272.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dcf1cb626c7beb1489f26b7c8acebbd101c6e70b6b2923d02846820c9bc3e3db +size 16150 diff --git a/artists-to-study/ats/thumbnail/portrait/weird/weird_Judy Chicago_0.6952246_0841.jpg b/artists-to-study/ats/thumbnail/portrait/weird/weird_Judy Chicago_0.6952246_0841.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a71b3a3bf4e95d1e984ef17628913e843b7e38df --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/weird/weird_Judy Chicago_0.6952246_0841.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dfc1a3921008052dfe045aecb690e5b772554e58f36178362de7251f07e20c03 +size 16339 diff --git a/artists-to-study/ats/thumbnail/portrait/weird/weird_Keith Haring_0.9431302_0103.jpg b/artists-to-study/ats/thumbnail/portrait/weird/weird_Keith Haring_0.9431302_0103.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f82d6e76447ccea92621e7500876de78bcbc7af0 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/weird/weird_Keith Haring_0.9431302_0103.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:50eca9cd1a5ab5a3b7261884e449fe3e0cde50b0fbb8c85f9c99b0bf0fef1936 +size 26283 diff --git a/artists-to-study/ats/thumbnail/portrait/weird/weird_OSGEMEOS_0.7829088_0251.jpg b/artists-to-study/ats/thumbnail/portrait/weird/weird_OSGEMEOS_0.7829088_0251.jpg new file mode 100644 index 0000000000000000000000000000000000000000..17bcd0266d10979126a2cb936b73427b0aa99545 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/weird/weird_OSGEMEOS_0.7829088_0251.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5377a6ff63488db467847e0325240c83f3750e5b820ffda4479ab1c59ce1a6a7 +size 18095 diff --git a/artists-to-study/ats/thumbnail/portrait/weird/weird_Peter Max_0.99715996_0100.jpg b/artists-to-study/ats/thumbnail/portrait/weird/weird_Peter Max_0.99715996_0100.jpg new file mode 100644 index 0000000000000000000000000000000000000000..dfcac9ea384cd559001de93d384ccfe7c5715ff2 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/weird/weird_Peter Max_0.99715996_0100.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:efb26ef19fe58bcc26bfbc4a90b19c10c40ee3dc40263a2584777369f62ddace +size 16557 diff --git a/artists-to-study/ats/thumbnail/portrait/weird/weird_Rebecca Louise Law_0.81214285_0185.jpg b/artists-to-study/ats/thumbnail/portrait/weird/weird_Rebecca Louise Law_0.81214285_0185.jpg new file mode 100644 index 0000000000000000000000000000000000000000..79b23e19659d4c6e596e7c1166e5d56d08d6c84c --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/weird/weird_Rebecca Louise Law_0.81214285_0185.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d9240c608e943957afc32c69b009e45aed744892bcb4b368ad6e02a88941192 +size 19830 diff --git a/artists-to-study/ats/thumbnail/portrait/weird/weird_Remedios Varo_0.7150927_0641.jpg b/artists-to-study/ats/thumbnail/portrait/weird/weird_Remedios Varo_0.7150927_0641.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bbb1d9f1428515e9921547f4d3976e0aae7b4f00 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/weird/weird_Remedios Varo_0.7150927_0641.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:804edfce3a27badd14fb78826b24bb51156da16ebbd96c5a4b99ffb49a6ce84f +size 15425 diff --git a/artists-to-study/ats/thumbnail/portrait/weird/weird_Roz Chast_0.8432013_0139.jpg b/artists-to-study/ats/thumbnail/portrait/weird/weird_Roz Chast_0.8432013_0139.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b2f702ff25f7e22b613ddfdc74d9460cc667ded2 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/weird/weird_Roz Chast_0.8432013_0139.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:990c297bc68e0ba0fbe1c64aad4db868d77d9a62326d44165001ac07fec5920a +size 21256 diff --git a/artists-to-study/ats/thumbnail/portrait/weird/weird_Stephen Gammell_0.74001735_0334.jpg b/artists-to-study/ats/thumbnail/portrait/weird/weird_Stephen Gammell_0.74001735_0334.jpg new file mode 100644 index 0000000000000000000000000000000000000000..eb244edfd8f193db8882bce5a44fc57a480d02ce --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/weird/weird_Stephen Gammell_0.74001735_0334.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e536ae9c5737db47299128fd915d7928e2a486ed51811d9123653d7d2d411fe +size 12586 diff --git a/artists-to-study/ats/thumbnail/portrait/weird/weird_Takashi Murakami_0.81338763_0180.jpg b/artists-to-study/ats/thumbnail/portrait/weird/weird_Takashi Murakami_0.81338763_0180.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d4ba37974a8921ea0f034811feb4ed77d872b904 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/weird/weird_Takashi Murakami_0.81338763_0180.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa12cca46afafea56b9c90cf512768f47ecc824b3d1bce05aed4a435f4ba75b9 +size 32596 diff --git a/artists-to-study/ats/thumbnail/portrait/weird/weird_Yayoi Kusama_0.81886625_0171.jpg b/artists-to-study/ats/thumbnail/portrait/weird/weird_Yayoi Kusama_0.81886625_0171.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f2b1885e37db120c6e74aa42dc7a8e59a29eb423 --- /dev/null +++ b/artists-to-study/ats/thumbnail/portrait/weird/weird_Yayoi Kusama_0.81886625_0171.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:39bf3bbb04b652c22730702d99108d8697eb67f61decb1ec9ab7c410fe6f4b59 +size 27609 diff --git a/artists-to-study/ats/thumbnail/spaceship/anime/anime_Adam Hughes_0.60854626_1694.jpg b/artists-to-study/ats/thumbnail/spaceship/anime/anime_Adam Hughes_0.60854626_1694.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6620a19cb2092fc5b9ebcff442a6bc82b5d45037 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/anime/anime_Adam Hughes_0.60854626_1694.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14649415c38a1bf6c2427ae49a58fb4584af79f58f9a09a1ad7b5c53fa9de749 +size 17395 diff --git a/artists-to-study/ats/thumbnail/spaceship/anime/anime_Akira Toriyama_0.6635002_1127.jpg b/artists-to-study/ats/thumbnail/spaceship/anime/anime_Akira Toriyama_0.6635002_1127.jpg new file mode 100644 index 0000000000000000000000000000000000000000..936505de01ab4b7635e022307d49304066bae1ae --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/anime/anime_Akira Toriyama_0.6635002_1127.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e62263ea3cdc23aed3e63cd4bdfdfd4e50500545af7885555afe962afc0eee64 +size 23863 diff --git a/artists-to-study/ats/thumbnail/spaceship/anime/anime_Apollonia Saintclair_0.7718383_0191.jpg b/artists-to-study/ats/thumbnail/spaceship/anime/anime_Apollonia Saintclair_0.7718383_0191.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0a2fe95c6ede850f19831c6ea498f9507adb6ca9 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/anime/anime_Apollonia Saintclair_0.7718383_0191.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4cbd63a29c842e2de3e1fde22204aca0e56953777b01db573f3fb88b1f9d8d9d +size 27824 diff --git a/artists-to-study/ats/thumbnail/spaceship/anime/anime_Armin Hansen_0.59669334_1804.jpg b/artists-to-study/ats/thumbnail/spaceship/anime/anime_Armin Hansen_0.59669334_1804.jpg new file mode 100644 index 0000000000000000000000000000000000000000..659318039f891b53187556a1ec477d7e0cc7a384 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/anime/anime_Armin Hansen_0.59669334_1804.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3201b0bb137131c0d95b0ea04c2978b918dd403c53fa19c28908be2fb1d6ba29 +size 11515 diff --git a/artists-to-study/ats/thumbnail/spaceship/anime/anime_Awataguchi Takamitsu_0.6656272_1099.jpg b/artists-to-study/ats/thumbnail/spaceship/anime/anime_Awataguchi Takamitsu_0.6656272_1099.jpg new file mode 100644 index 0000000000000000000000000000000000000000..43e586864a5f1cda38a81cf5747a2bbce7c9a7dd --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/anime/anime_Awataguchi Takamitsu_0.6656272_1099.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c3d95b1105c5bb6fbafad38351e3998a9af3bcc6d61d638a6c61798e227f9f0 +size 12901 diff --git "a/artists-to-study/ats/thumbnail/spaceship/anime/anime_Bai\305\215ken Eishun_0.6730663_1005.jpg" "b/artists-to-study/ats/thumbnail/spaceship/anime/anime_Bai\305\215ken Eishun_0.6730663_1005.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..a7df96056affd12d8e7104788d6ec11a9e7afee4 --- /dev/null +++ "b/artists-to-study/ats/thumbnail/spaceship/anime/anime_Bai\305\215ken Eishun_0.6730663_1005.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3155bdaa181dbe772d69736d3d39ed9fb59cd55fd4bb2450b8422df4496ffc18 +size 21498 diff --git a/artists-to-study/ats/thumbnail/spaceship/anime/anime_Bakemono Zukushi_0.67051035_1039.jpg b/artists-to-study/ats/thumbnail/spaceship/anime/anime_Bakemono Zukushi_0.67051035_1039.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3ae122e14488f1e2953ca80bea26fb4fee474e52 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/anime/anime_Bakemono Zukushi_0.67051035_1039.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7352952eab28cd13ee65628137df871fe22a632776a9af78772d9bc2fa99577d +size 20400 diff --git a/artists-to-study/ats/thumbnail/spaceship/anime/anime_Chiho Aoshima_0.71801454_0513.jpg b/artists-to-study/ats/thumbnail/spaceship/anime/anime_Chiho Aoshima_0.71801454_0513.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f5d29558899623a002733d72ee14688342a2217b --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/anime/anime_Chiho Aoshima_0.71801454_0513.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef4b02908f41cc37593f1d28c2e768941ce3c4fa22156f4e972487002d0f28e3 +size 17658 diff --git a/artists-to-study/ats/thumbnail/spaceship/anime/anime_Eiichiro Oda_0.64772165_1309.jpg b/artists-to-study/ats/thumbnail/spaceship/anime/anime_Eiichiro Oda_0.64772165_1309.jpg new file mode 100644 index 0000000000000000000000000000000000000000..679284e480b65fa19113797e52ecb14a17042cfc --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/anime/anime_Eiichiro Oda_0.64772165_1309.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:73891f3b245d60ac5db2eec2ca22c1bfe3e9324b3ff55d701f648d77684cc543 +size 25372 diff --git a/artists-to-study/ats/thumbnail/spaceship/anime/anime_Fujishima Takeji_0.6751577_0972.jpg b/artists-to-study/ats/thumbnail/spaceship/anime/anime_Fujishima Takeji_0.6751577_0972.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9136fce74aecc51299343d746c84b1ffc8b6b2b7 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/anime/anime_Fujishima Takeji_0.6751577_0972.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cbcb727b435e1685d68e4fa356e186d812e750ff28bc7d0ad2d6dc630841b9eb +size 14124 diff --git a/artists-to-study/ats/thumbnail/spaceship/anime/anime_Gai Qi_0.613744_1642.jpg b/artists-to-study/ats/thumbnail/spaceship/anime/anime_Gai Qi_0.613744_1642.jpg new file mode 100644 index 0000000000000000000000000000000000000000..35a2c3673050a4e70f511690c492813ffe5c4c83 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/anime/anime_Gai Qi_0.613744_1642.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5eec6ff65ba921763448557f7019ff959500c78518538c9db3f80db2bdacaca5 +size 12914 diff --git "a/artists-to-study/ats/thumbnail/spaceship/anime/anime_Gat\305\215ken Shunshi_0.6833314_0876.jpg" "b/artists-to-study/ats/thumbnail/spaceship/anime/anime_Gat\305\215ken Shunshi_0.6833314_0876.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..5d5d1b1166c2981c2677887765215200db83a3bf --- /dev/null +++ "b/artists-to-study/ats/thumbnail/spaceship/anime/anime_Gat\305\215ken Shunshi_0.6833314_0876.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5bfdc4193ad0a90bc0417dbc60c9e994747f1527c02a3c4bea38d734d2e7b0d4 +size 17002 diff --git a/artists-to-study/ats/thumbnail/spaceship/anime/anime_Go Nagai_0.72770613_0431.jpg b/artists-to-study/ats/thumbnail/spaceship/anime/anime_Go Nagai_0.72770613_0431.jpg new file mode 100644 index 0000000000000000000000000000000000000000..249bd8c64402ea56f96d3c28675cacc084dd2719 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/anime/anime_Go Nagai_0.72770613_0431.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e1e859efa6e12f07c86d8b6d1761dfe3dcaf0fa0509d3ca8602a2f10bfb99081 +size 19395 diff --git "a/artists-to-study/ats/thumbnail/spaceship/anime/anime_Gyosh\305\253 Hayami_0.68665624_0844.jpg" "b/artists-to-study/ats/thumbnail/spaceship/anime/anime_Gyosh\305\253 Hayami_0.68665624_0844.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..74a4b13fa3e4a4b8203798537b73e8d6c8c98205 --- /dev/null +++ "b/artists-to-study/ats/thumbnail/spaceship/anime/anime_Gyosh\305\253 Hayami_0.68665624_0844.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67f41661cf451208ea2fe414b9fda3ae5c68fe0e091e2eb2224234313df31595 +size 19121 diff --git a/artists-to-study/ats/thumbnail/spaceship/anime/anime_Hariton Pushwagner_0.6556745_1214.jpg b/artists-to-study/ats/thumbnail/spaceship/anime/anime_Hariton Pushwagner_0.6556745_1214.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a0fb18b508460f21dc60fe049695b080814350ba --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/anime/anime_Hariton Pushwagner_0.6556745_1214.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d46640f99817f55befcffd66142493c2e7e1e38dc303a6ea8d8d1fc0df5a2102 +size 23430 diff --git "a/artists-to-study/ats/thumbnail/spaceship/anime/anime_Hasegawa T\305\215haku_0.66146004_1143.jpg" "b/artists-to-study/ats/thumbnail/spaceship/anime/anime_Hasegawa T\305\215haku_0.66146004_1143.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..f4037cd1ad3f9accc432701ec1c944e37ae9fba5 --- /dev/null +++ "b/artists-to-study/ats/thumbnail/spaceship/anime/anime_Hasegawa T\305\215haku_0.66146004_1143.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa7a728d30461382e8ed9910aea042a2c98235667a84f73835311f99897937e4 +size 15176 diff --git a/artists-to-study/ats/thumbnail/spaceship/anime/anime_Hayao Miyazaki_0.6800754_0914.jpg b/artists-to-study/ats/thumbnail/spaceship/anime/anime_Hayao Miyazaki_0.6800754_0914.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c1973bf6b9772471e04f1ed10ad4cb47e0ea4d7d --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/anime/anime_Hayao Miyazaki_0.6800754_0914.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a820ffbd391dcd4b384312752a8a3228a70deff0b6b8498960cb851214ed396 +size 16199 diff --git a/artists-to-study/ats/thumbnail/spaceship/anime/anime_Hirohiko Araki_0.6914078_0787.jpg b/artists-to-study/ats/thumbnail/spaceship/anime/anime_Hirohiko Araki_0.6914078_0787.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a68675c93d55c4c47e0a6d4fb270a646f8996f72 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/anime/anime_Hirohiko Araki_0.6914078_0787.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19eed818a5601169d41ea64dc64880361b65360927e2093107c10852feb0f0d3 +size 25853 diff --git a/artists-to-study/ats/thumbnail/spaceship/anime/anime_Hiromu Arakawa_0.64371413_1348.jpg b/artists-to-study/ats/thumbnail/spaceship/anime/anime_Hiromu Arakawa_0.64371413_1348.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a67442cd10125391ef490d6b3cc04623ca84e92b --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/anime/anime_Hiromu Arakawa_0.64371413_1348.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f2c9f4e0c54290fa50c8c609b22b9a46f2fc2976e1a4a08b2b02195972b3ab16 +size 25321 diff --git a/artists-to-study/ats/thumbnail/spaceship/anime/anime_Ike no Taiga_0.5795857_2000.jpg b/artists-to-study/ats/thumbnail/spaceship/anime/anime_Ike no Taiga_0.5795857_2000.jpg new file mode 100644 index 0000000000000000000000000000000000000000..876489a5b3e651f99a9ce06a8bd3c5db812060ab --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/anime/anime_Ike no Taiga_0.5795857_2000.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d219536f1416a40dea37c647d6a9b87d7b716314982987f9087e89d96cb21ca3 +size 16165 diff --git a/artists-to-study/ats/thumbnail/spaceship/anime/anime_Inio Asano_0.6965007_0730.jpg b/artists-to-study/ats/thumbnail/spaceship/anime/anime_Inio Asano_0.6965007_0730.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4fc79634f47f5d9d00fbc258a4a141fefa31db40 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/anime/anime_Inio Asano_0.6965007_0730.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fee9f6d07584056f6918101453a0e3f265e4266d3600378ca9a0f41c9f84b655 +size 23272 diff --git a/artists-to-study/ats/thumbnail/spaceship/anime/anime_John Kenn Mortensen_0.74758303_0290.jpg b/artists-to-study/ats/thumbnail/spaceship/anime/anime_John Kenn Mortensen_0.74758303_0290.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f40b3b4c470f886c883d5d75464f9370e38c94d5 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/anime/anime_John Kenn Mortensen_0.74758303_0290.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f250868f1f214817e0fc031e7a13355c281c81beac07a01dbc3fb95487bb1a2 +size 14021 diff --git a/artists-to-study/ats/thumbnail/spaceship/anime/anime_Junji Ito_0.7188978_0508.jpg b/artists-to-study/ats/thumbnail/spaceship/anime/anime_Junji Ito_0.7188978_0508.jpg new file mode 100644 index 0000000000000000000000000000000000000000..993e2884b757e9bbcfce4f18dae8e01b177252d9 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/anime/anime_Junji Ito_0.7188978_0508.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6305906621f92b31e31b9aa72c6a016c66732766ec141b5c2207b0ddd6a07db8 +size 30396 diff --git a/artists-to-study/ats/thumbnail/spaceship/anime/anime_Katsuhiro Otomo_0.746364_0308.jpg b/artists-to-study/ats/thumbnail/spaceship/anime/anime_Katsuhiro Otomo_0.746364_0308.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3ae335b4b3d8609e9af3d861fd62880c84896375 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/anime/anime_Katsuhiro Otomo_0.746364_0308.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b80bab42cd19540dc8b5f53b179acf708fe24036df55885041747bbba7391318 +size 20134 diff --git a/artists-to-study/ats/thumbnail/spaceship/anime/anime_Ken Sugimori_0.6932626_0764.jpg b/artists-to-study/ats/thumbnail/spaceship/anime/anime_Ken Sugimori_0.6932626_0764.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6ceb35abd8ab9e53e28bf8f8ab27772282a0bbea --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/anime/anime_Ken Sugimori_0.6932626_0764.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5de16d42aa46e0d27a5187fe89df999bb297e556fae36e27a4061f65256b9b2b +size 23361 diff --git a/artists-to-study/ats/thumbnail/spaceship/anime/anime_Kentaro Miura_0.697743_0719.jpg b/artists-to-study/ats/thumbnail/spaceship/anime/anime_Kentaro Miura_0.697743_0719.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e201be2d94e36a830e94d8eb4f56fc76c973ae86 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/anime/anime_Kentaro Miura_0.697743_0719.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:37e455e2cc345d313556a17400f4f08dcb233fa8eea24de7065c23f2ea2e5bed +size 22916 diff --git a/artists-to-study/ats/thumbnail/spaceship/anime/anime_Kobayashi Kiyochika_0.6239368_1543.jpg b/artists-to-study/ats/thumbnail/spaceship/anime/anime_Kobayashi Kiyochika_0.6239368_1543.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a719f582a33a100f58f62f0acf33775b4388e599 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/anime/anime_Kobayashi Kiyochika_0.6239368_1543.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e9caef7ad21581e7987083a8a5df864cb2990b6e49cc20e986da6fc0e658a547 +size 16754 diff --git a/artists-to-study/ats/thumbnail/spaceship/anime/anime_Leiji Matsumoto_0.66089404_1149.jpg b/artists-to-study/ats/thumbnail/spaceship/anime/anime_Leiji Matsumoto_0.66089404_1149.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e7201b1c2a35b6834de6d96da6fd790e2535c573 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/anime/anime_Leiji Matsumoto_0.66089404_1149.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:763073e635d937a1aadf47f3bd7b96a1334b84fe246b08a7f164571a2e1d2010 +size 15820 diff --git a/artists-to-study/ats/thumbnail/spaceship/anime/anime_Makoto Shinkai_0.67610705_0960.jpg b/artists-to-study/ats/thumbnail/spaceship/anime/anime_Makoto Shinkai_0.67610705_0960.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a4e5bf9244bd0ea3cae974b1b4f08e05a451fffe --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/anime/anime_Makoto Shinkai_0.67610705_0960.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:89c0bfb81b264cd790f84516dd45e83177eb05423e9991bdb6b10b24ee3a57dc +size 11752 diff --git a/artists-to-study/ats/thumbnail/spaceship/anime/anime_Masaaki Sasamoto_0.6597158_1160.jpg b/artists-to-study/ats/thumbnail/spaceship/anime/anime_Masaaki Sasamoto_0.6597158_1160.jpg new file mode 100644 index 0000000000000000000000000000000000000000..527cca48f51c02cd418a76e2d8a0a2651cf10789 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/anime/anime_Masaaki Sasamoto_0.6597158_1160.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:227605bd8788e152ba31677e8a671ccda385776fdc2f658d3843734822d168b3 +size 15381 diff --git a/artists-to-study/ats/thumbnail/spaceship/anime/anime_Masamune Shirow_0.65592873_1212.jpg b/artists-to-study/ats/thumbnail/spaceship/anime/anime_Masamune Shirow_0.65592873_1212.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4b80ad83a1faa3645645bd5d0ed52a92e8aeea0c --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/anime/anime_Masamune Shirow_0.65592873_1212.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:310b9f7bf43e2e76b45532de77ae920b08808413edf8f9ae5b6ba3cfdc699713 +size 24067 diff --git a/artists-to-study/ats/thumbnail/spaceship/anime/anime_Michael Cheval_0.61138546_1663.jpg b/artists-to-study/ats/thumbnail/spaceship/anime/anime_Michael Cheval_0.61138546_1663.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1f795124a876ab850bfa9fb501aa8b8c5583b390 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/anime/anime_Michael Cheval_0.61138546_1663.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:81a95d42adde891ecad7cf53be51c893f44898927e3c74fd8e72213fcf881c9d +size 19393 diff --git a/artists-to-study/ats/thumbnail/spaceship/anime/anime_Miho Hirano_0.6724092_1015.jpg b/artists-to-study/ats/thumbnail/spaceship/anime/anime_Miho Hirano_0.6724092_1015.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e0b6a9ad4eb486c9f627406e6bc563730ddd55cc --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/anime/anime_Miho Hirano_0.6724092_1015.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ae96456d6bd323d09e953a895ecc3f17e0b8ff45d29ede456c54f5e8fae71f3 +size 16818 diff --git a/artists-to-study/ats/thumbnail/spaceship/anime/anime_Naoki Urasawa_0.7469665_0305.jpg b/artists-to-study/ats/thumbnail/spaceship/anime/anime_Naoki Urasawa_0.7469665_0305.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a6640fa5e469cc50a71381cedc0f99802a307d62 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/anime/anime_Naoki Urasawa_0.7469665_0305.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:98959acad22ea15f30ad3b50dff83f409f515326b7bcc2d9e772aad47fcf1005 +size 23779 diff --git a/artists-to-study/ats/thumbnail/spaceship/anime/anime_Naoko Takeuchi_0.80482674_0106.jpg b/artists-to-study/ats/thumbnail/spaceship/anime/anime_Naoko Takeuchi_0.80482674_0106.jpg new file mode 100644 index 0000000000000000000000000000000000000000..04068aabf00ec6c66dddf5fd20b84489d76d4c96 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/anime/anime_Naoko Takeuchi_0.80482674_0106.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:46f07379d067e147e59e917193b55387ef12ac8de0c681a177286f0cd004f901 +size 25152 diff --git a/artists-to-study/ats/thumbnail/spaceship/anime/anime_Phil Noto_0.6470769_1318.jpg b/artists-to-study/ats/thumbnail/spaceship/anime/anime_Phil Noto_0.6470769_1318.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9dff432fe98cb387bbee68a422ebe21f651ea8f7 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/anime/anime_Phil Noto_0.6470769_1318.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b9e5652b0f730f429d5030228e83d56f64f0872a8bf6da73170af2a2eb9b25d5 +size 10305 diff --git a/artists-to-study/ats/thumbnail/spaceship/anime/anime_Posuka Demizu_0.64843124_1302.jpg b/artists-to-study/ats/thumbnail/spaceship/anime/anime_Posuka Demizu_0.64843124_1302.jpg new file mode 100644 index 0000000000000000000000000000000000000000..cfec68f253536f6c43e7739defb14f1c1e76b222 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/anime/anime_Posuka Demizu_0.64843124_1302.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a7c3ab1914b4e15fb9b8c7698d73c19ba036c844f9e19b3594651e0d7ea9065 +size 19398 diff --git a/artists-to-study/ats/thumbnail/spaceship/anime/anime_Rumiko Takahashi_0.8301817_0058.jpg b/artists-to-study/ats/thumbnail/spaceship/anime/anime_Rumiko Takahashi_0.8301817_0058.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1022cabc6f2841174926469e852825db387ed7e2 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/anime/anime_Rumiko Takahashi_0.8301817_0058.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eb36c16659fe02b17402f701c03944c10286ecfcaf3124c327eab6de85b91e57 +size 24090 diff --git a/artists-to-study/ats/thumbnail/spaceship/anime/anime_Sailor Moon_0.73281246_0386.jpg b/artists-to-study/ats/thumbnail/spaceship/anime/anime_Sailor Moon_0.73281246_0386.jpg new file mode 100644 index 0000000000000000000000000000000000000000..dbdeefe01004175e2859b60d8bfaa49b9851716f --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/anime/anime_Sailor Moon_0.73281246_0386.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60e074f2ac6bda262ee320bc858db77a569e57635e0d5b0e7a779d8eb9bc2773 +size 20930 diff --git a/artists-to-study/ats/thumbnail/spaceship/anime/anime_Satoshi Kon_0.65606606_1211.jpg b/artists-to-study/ats/thumbnail/spaceship/anime/anime_Satoshi Kon_0.65606606_1211.jpg new file mode 100644 index 0000000000000000000000000000000000000000..feaa9a0df9e358e1ac39f0793b831a945ddd7a70 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/anime/anime_Satoshi Kon_0.65606606_1211.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eb5425cdb0dfafc493ceea12b9f57038f5b12fc9dabf216c58f55accab4e7d95 +size 20853 diff --git a/artists-to-study/ats/thumbnail/spaceship/anime/anime_Shinji Aramaki_0.61246127_1653.jpg b/artists-to-study/ats/thumbnail/spaceship/anime/anime_Shinji Aramaki_0.61246127_1653.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f7fe54b3e75a443a5153586634f4bb30404d990c --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/anime/anime_Shinji Aramaki_0.61246127_1653.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e60e8c45a5d4831cc85bd3724eda9a7b5e11c3e69b410b220f26e2ad205e9be +size 11903 diff --git a/artists-to-study/ats/thumbnail/spaceship/anime/anime_Shintaro Kago_0.7484431_0293.jpg b/artists-to-study/ats/thumbnail/spaceship/anime/anime_Shintaro Kago_0.7484431_0293.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5c0d6051ddf7d16c0061f966d9ddf93a3ae58166 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/anime/anime_Shintaro Kago_0.7484431_0293.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:43a449ec15f2b879d4031ef58d81fa1060fb33605d7578bb940382905008d55e +size 26190 diff --git a/artists-to-study/ats/thumbnail/spaceship/anime/anime_Shotaro Ishinomori_0.7292093_0414.jpg b/artists-to-study/ats/thumbnail/spaceship/anime/anime_Shotaro Ishinomori_0.7292093_0414.jpg new file mode 100644 index 0000000000000000000000000000000000000000..470bdd4e92da622b72979a9641550dabda8fb080 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/anime/anime_Shotaro Ishinomori_0.7292093_0414.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe5ef3a0fdb0cba266caccb89aee70b0dae1c4317681cecb259129de7e3cd2f +size 24030 diff --git a/artists-to-study/ats/thumbnail/spaceship/anime/anime_Shusei Nagaoko_0.7238965_0467.jpg b/artists-to-study/ats/thumbnail/spaceship/anime/anime_Shusei Nagaoko_0.7238965_0467.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9593f16e3d70a681a8e9d7bac8cd707557dd1641 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/anime/anime_Shusei Nagaoko_0.7238965_0467.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff00c940d30f2dd727004c3ecc2c5cb4de3c2a9e82c833b1a5a6130f29f125fb +size 16675 diff --git a/artists-to-study/ats/thumbnail/spaceship/anime/anime_Studio Ghibli_0.73439026_0376.jpg b/artists-to-study/ats/thumbnail/spaceship/anime/anime_Studio Ghibli_0.73439026_0376.jpg new file mode 100644 index 0000000000000000000000000000000000000000..82dfcb069785770cd9a70a84c8fecc1ce442e91d --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/anime/anime_Studio Ghibli_0.73439026_0376.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ae17aae80471ce2ac942b7ecdb7e9160d4eb4e4a8fcd854a78c345996a29c4c +size 18297 diff --git a/artists-to-study/ats/thumbnail/spaceship/anime/anime_Takeshi Obata_0.67643225_0956.jpg b/artists-to-study/ats/thumbnail/spaceship/anime/anime_Takeshi Obata_0.67643225_0956.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a21e2002a69f0fba9f7facb9d21f9936a34a5918 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/anime/anime_Takeshi Obata_0.67643225_0956.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f797c978a8810ca1733866086f7fdcc4ff6916261687eb4160a4d0379ffbad9 +size 25345 diff --git a/artists-to-study/ats/thumbnail/spaceship/anime/anime_Toei Animations_0.6629127_1133.jpg b/artists-to-study/ats/thumbnail/spaceship/anime/anime_Toei Animations_0.6629127_1133.jpg new file mode 100644 index 0000000000000000000000000000000000000000..54268563cb66fabdb990318151c06c744609a3fc --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/anime/anime_Toei Animations_0.6629127_1133.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:38bc6dd4493c8abb4a9af4c79e76c6ef98ec3ace60f9aa45b647181fae38e2d6 +size 17487 diff --git a/artists-to-study/ats/thumbnail/spaceship/anime/anime_Tsutomu Nihei_0.7070495_0626.jpg b/artists-to-study/ats/thumbnail/spaceship/anime/anime_Tsutomu Nihei_0.7070495_0626.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e3748fc43c506da2c6c7455d0ff8493deaaafe55 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/anime/anime_Tsutomu Nihei_0.7070495_0626.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5729087e1c93eab8740e68f9b6b4972e0b58145cbd70f51ecd9cec5b1b501a50 +size 20594 diff --git a/artists-to-study/ats/thumbnail/spaceship/anime/anime_Yoji Shinkawa_0.5287015_2447.jpg b/artists-to-study/ats/thumbnail/spaceship/anime/anime_Yoji Shinkawa_0.5287015_2447.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3a39e5f4760d8f12beeaad7a5fc41164e77aa00d --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/anime/anime_Yoji Shinkawa_0.5287015_2447.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da5737524b7817f0ff9a42257bcaf7256e12df3cd8e6369567a0986f397a98a4 +size 25381 diff --git a/artists-to-study/ats/thumbnail/spaceship/anime/anime_Yoshiyuki Tomino_0.6998095_0699.jpg b/artists-to-study/ats/thumbnail/spaceship/anime/anime_Yoshiyuki Tomino_0.6998095_0699.jpg new file mode 100644 index 0000000000000000000000000000000000000000..67cc31ad890405947bdc9764bdaecfeaf9959737 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/anime/anime_Yoshiyuki Tomino_0.6998095_0699.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2378868f95f2565e9281d42647c40bf0af26d4c998e511aec9d3cf1f90dd1d5 +size 18279 diff --git a/artists-to-study/ats/thumbnail/spaceship/black-white/black-white_Albert Servaes_0.60250103_1754.jpg b/artists-to-study/ats/thumbnail/spaceship/black-white/black-white_Albert Servaes_0.60250103_1754.jpg new file mode 100644 index 0000000000000000000000000000000000000000..59e4f35f96aadfdf4bbdf29fb29f6b097fc4235d --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/black-white/black-white_Albert Servaes_0.60250103_1754.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e5c3cfa55ad23b16ef37da12738fbacaa55424f328dd98f57ab5ca973dbe032 +size 10211 diff --git a/artists-to-study/ats/thumbnail/spaceship/black-white/black-white_Alfred Eisenstaedt_0.67213774_1020.jpg b/artists-to-study/ats/thumbnail/spaceship/black-white/black-white_Alfred Eisenstaedt_0.67213774_1020.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b06eb4e8cb49b0ad2d6fe351e98c23ee87acb5aa --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/black-white/black-white_Alfred Eisenstaedt_0.67213774_1020.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24015dfbb8a9fb3e2eb82c25eb3003c19301288041ac6a06f14a5d71096a98cb +size 12982 diff --git a/artists-to-study/ats/thumbnail/spaceship/black-white/black-white_Alvin Langdon Coburn_0.8035004_0109.jpg b/artists-to-study/ats/thumbnail/spaceship/black-white/black-white_Alvin Langdon Coburn_0.8035004_0109.jpg new file mode 100644 index 0000000000000000000000000000000000000000..635c41cb7bbf3edc17389591544b0a2a3672044f --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/black-white/black-white_Alvin Langdon Coburn_0.8035004_0109.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd48f00a3b21e41c2b47e77b20e9ef9dc42dce878a1832829c3dc51713118982 +size 7916 diff --git a/artists-to-study/ats/thumbnail/spaceship/black-white/black-white_Ando Fuchs_0.73406494_0380.jpg b/artists-to-study/ats/thumbnail/spaceship/black-white/black-white_Ando Fuchs_0.73406494_0380.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6a6b9b4b79eb3a91c1e291f8dc3c7ac700c56dda --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/black-white/black-white_Ando Fuchs_0.73406494_0380.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:97f37de102c5b7616184b60967ac56b0e2803ac0390da0ff014e8513089f5655 +size 8891 diff --git a/artists-to-study/ats/thumbnail/spaceship/black-white/black-white_Andre Kertesz_0.7228358_0340.jpg b/artists-to-study/ats/thumbnail/spaceship/black-white/black-white_Andre Kertesz_0.7228358_0340.jpg new file mode 100644 index 0000000000000000000000000000000000000000..606e45d453ad4c1aa0f472701b00a3de7b826f2f --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/black-white/black-white_Andre Kertesz_0.7228358_0340.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f5b66a00bbd67d5d81c046e17b5ba8343c9795373737856576e38a5e4dc7087 +size 6729 diff --git "a/artists-to-study/ats/thumbnail/spaceship/black-white/black-white_Andr\303\251 Kert\303\251sz_0.7319392_0250.jpg" "b/artists-to-study/ats/thumbnail/spaceship/black-white/black-white_Andr\303\251 Kert\303\251sz_0.7319392_0250.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..5ddcfc5b51ae055278f4259ad9f601fdfe6230e4 --- /dev/null +++ "b/artists-to-study/ats/thumbnail/spaceship/black-white/black-white_Andr\303\251 Kert\303\251sz_0.7319392_0250.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4127ee700fd6a70911d7af524dba161b7d8f3f1c250efa9c09e3ec7575987b74 +size 8958 diff --git a/artists-to-study/ats/thumbnail/spaceship/black-white/black-white_Anne Brigman_0.6865817_0768.jpg b/artists-to-study/ats/thumbnail/spaceship/black-white/black-white_Anne Brigman_0.6865817_0768.jpg new file mode 100644 index 0000000000000000000000000000000000000000..150dc4656617830f6443aac70619fae545efd4a1 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/black-white/black-white_Anne Brigman_0.6865817_0768.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:74dd274d622e4182b79f5a8c4c6baec4273310bb975f13a89ee499335d31b7fd +size 8496 diff --git a/artists-to-study/ats/thumbnail/spaceship/black-white/black-white_Antanas Sutkus_0.7369492_0357.jpg b/artists-to-study/ats/thumbnail/spaceship/black-white/black-white_Antanas Sutkus_0.7369492_0357.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6013ee65098dfdc006931131a6a671ba6098d44a --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/black-white/black-white_Antanas Sutkus_0.7369492_0357.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8be34006915a39057f621386a54335f16bd0f969a255b64942bdbfdb9c0ed4e8 +size 10582 diff --git a/artists-to-study/ats/thumbnail/spaceship/black-white/black-white_August Sander_0.6644566_0317.jpg b/artists-to-study/ats/thumbnail/spaceship/black-white/black-white_August Sander_0.6644566_0317.jpg new file mode 100644 index 0000000000000000000000000000000000000000..58934686c330f72e8e5b8f3bdb11187f46bf92e0 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/black-white/black-white_August Sander_0.6644566_0317.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b9177488717717174dc6617b63df99d2e1104a2086d57d9260f055e4a3f603f3 +size 9862 diff --git a/artists-to-study/ats/thumbnail/spaceship/black-white/black-white_Bert Hardy_0.6972966_0723.jpg b/artists-to-study/ats/thumbnail/spaceship/black-white/black-white_Bert Hardy_0.6972966_0723.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bb18420b0a424dcdd2c6d310e49f4a7fc7029d73 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/black-white/black-white_Bert Hardy_0.6972966_0723.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:42616dbd6a0aee21945ee76a720c0d39ed4c85fc0a0dd3a169f31e8b0dbe4879 +size 9682 diff --git a/artists-to-study/ats/thumbnail/spaceship/black-white/black-white_Bill Brandt_0.6833408_0286.jpg b/artists-to-study/ats/thumbnail/spaceship/black-white/black-white_Bill Brandt_0.6833408_0286.jpg new file mode 100644 index 0000000000000000000000000000000000000000..50c22245f0622b3e7f1865310f417a1786c2825d --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/black-white/black-white_Bill Brandt_0.6833408_0286.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5ed0c12ac462bb0646d826dc32300497b69211f04fbb4f44fa153b14da58f2c +size 9611 diff --git a/artists-to-study/ats/thumbnail/spaceship/black-white/black-white_Brett Weston_0.6891357_0275.jpg b/artists-to-study/ats/thumbnail/spaceship/black-white/black-white_Brett Weston_0.6891357_0275.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6b6d9c05467a403dd30e774980ec99dbc111b53c --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/black-white/black-white_Brett Weston_0.6891357_0275.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:74d9e968c73d55d1797b8e2d849b22501c385f3b91d3167e0820a9d8037f9d92 +size 8515 diff --git a/artists-to-study/ats/thumbnail/spaceship/black-white/black-white_Bruce Gilden_0.7256681_0186.jpg b/artists-to-study/ats/thumbnail/spaceship/black-white/black-white_Bruce Gilden_0.7256681_0186.jpg new file mode 100644 index 0000000000000000000000000000000000000000..07f548105d9bc64c679d87b2f80a08349ba5cc93 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/black-white/black-white_Bruce Gilden_0.7256681_0186.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8474a65b89e69c21708bdf30a45c03f218d59f43340f33d16bee8e9bdcfd6883 +size 13504 diff --git a/artists-to-study/ats/thumbnail/spaceship/black-white/black-white_Cecil Beaton_0.66362655_0684.jpg b/artists-to-study/ats/thumbnail/spaceship/black-white/black-white_Cecil Beaton_0.66362655_0684.jpg new file mode 100644 index 0000000000000000000000000000000000000000..cb6551db358215d07f0507bd10bef2b42dd7150e --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/black-white/black-white_Cecil Beaton_0.66362655_0684.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:65ccede215756232dd237480a7770665587570767b0e3315388afb664e13fad2 +size 13749 diff --git a/artists-to-study/ats/thumbnail/spaceship/black-white/black-white_Dorothea Lange_0.71361613_0558.jpg b/artists-to-study/ats/thumbnail/spaceship/black-white/black-white_Dorothea Lange_0.71361613_0558.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6747ec47df226283e1583330436e185d9e3bb9db --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/black-white/black-white_Dorothea Lange_0.71361613_0558.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c4a6ccdbd0bc70d718358886ee4ab569dc2b794f31b3aa245f27d6496afa69af +size 10655 diff --git a/artists-to-study/ats/thumbnail/spaceship/black-white/black-white_Edward Steichen_0.69837445_0709.jpg b/artists-to-study/ats/thumbnail/spaceship/black-white/black-white_Edward Steichen_0.69837445_0709.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9938eb471ccda0c60e73ac972470f24d6c0bdcb6 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/black-white/black-white_Edward Steichen_0.69837445_0709.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:caee71c95cb3c12542459297ea1db790d9764454e50979c5a0d89304ee48c8c2 +size 10991 diff --git a/artists-to-study/ats/thumbnail/spaceship/black-white/black-white_Edward Weston_0.7061382_0639.jpg b/artists-to-study/ats/thumbnail/spaceship/black-white/black-white_Edward Weston_0.7061382_0639.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8bf3e8a566a5e820879f1cea63d801ff66987adb --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/black-white/black-white_Edward Weston_0.7061382_0639.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e5794ce1fdc8c2a6621f20c05da5747a81915a1249b2ed553f6b29b3ab0e89f6 +size 9609 diff --git a/artists-to-study/ats/thumbnail/spaceship/black-white/black-white_Elliott Erwitt_0.69950557_0656.jpg b/artists-to-study/ats/thumbnail/spaceship/black-white/black-white_Elliott Erwitt_0.69950557_0656.jpg new file mode 100644 index 0000000000000000000000000000000000000000..83cfd504061f9cad8149abd4d46aa706f642fc19 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/black-white/black-white_Elliott Erwitt_0.69950557_0656.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e1105d71af6abbb0bff902e8e8305ae61b5e5042236783bc426b89d4b65e8a5 +size 10700 diff --git a/artists-to-study/ats/thumbnail/spaceship/black-white/black-white_Garry Winogrand_0.83994275_0043.jpg b/artists-to-study/ats/thumbnail/spaceship/black-white/black-white_Garry Winogrand_0.83994275_0043.jpg new file mode 100644 index 0000000000000000000000000000000000000000..37e61caa7fd2a6343a9858f0cae6620a7346fff8 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/black-white/black-white_Garry Winogrand_0.83994275_0043.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fcc40fbf5d45bb4fe6f7d8673f321d00bea72105582b74afde5d47ec4f7775d7 +size 12219 diff --git a/artists-to-study/ats/thumbnail/spaceship/black-white/black-white_Germaine Krull_0.6621777_0641.jpg b/artists-to-study/ats/thumbnail/spaceship/black-white/black-white_Germaine Krull_0.6621777_0641.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8b52cbdaef244a40eafa251828029df6367455fc --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/black-white/black-white_Germaine Krull_0.6621777_0641.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85ea9fffed67d34a12c34e395bf3ad5bf35c816b2d2452f1b9cbd0a88f1b111f +size 15551 diff --git a/artists-to-study/ats/thumbnail/spaceship/black-white/black-white_Henri Cartier-Bresson_0.7735415_0183.jpg b/artists-to-study/ats/thumbnail/spaceship/black-white/black-white_Henri Cartier-Bresson_0.7735415_0183.jpg new file mode 100644 index 0000000000000000000000000000000000000000..da4c0c629f153aa44c067a9cc1a3a5a5076ebcaf --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/black-white/black-white_Henri Cartier-Bresson_0.7735415_0183.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b8605d73b580935ce71370765c389e7f79edfa270b325dbd60f6ebf7953becb +size 13270 diff --git a/artists-to-study/ats/thumbnail/spaceship/black-white/black-white_Herbert List_0.68455493_0287.jpg b/artists-to-study/ats/thumbnail/spaceship/black-white/black-white_Herbert List_0.68455493_0287.jpg new file mode 100644 index 0000000000000000000000000000000000000000..01a209740b96b267f796a95301f39f2895c56faa --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/black-white/black-white_Herbert List_0.68455493_0287.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5300f1563b1bc2829f4b9f963e059387a9fe295e744c65ae9990b9ee0e8eab86 +size 8387 diff --git "a/artists-to-study/ats/thumbnail/spaceship/black-white/black-white_Herv\303\251 Guibert_0.55973417_0967.jpg" "b/artists-to-study/ats/thumbnail/spaceship/black-white/black-white_Herv\303\251 Guibert_0.55973417_0967.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..5827e5213044bf16416a043574f802bb3a40e015 --- /dev/null +++ "b/artists-to-study/ats/thumbnail/spaceship/black-white/black-white_Herv\303\251 Guibert_0.55973417_0967.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:080b4aa5193b0ff86b2502ef4eaa94905cf8a97fdeaa2f01c7f7f4e632db471d +size 10808 diff --git a/artists-to-study/ats/thumbnail/spaceship/black-white/black-white_Hugh Ferriss_0.72443527_0342.jpg b/artists-to-study/ats/thumbnail/spaceship/black-white/black-white_Hugh Ferriss_0.72443527_0342.jpg new file mode 100644 index 0000000000000000000000000000000000000000..65099ffeca34f01b00d8fd155d9c3bf17d441345 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/black-white/black-white_Hugh Ferriss_0.72443527_0342.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a219c37ebba2588c5e66546a88f09e4d77c425ae96a311c84357f96b36554829 +size 19461 diff --git a/artists-to-study/ats/thumbnail/spaceship/black-white/black-white_Jeanloup Sieff_0.7196009_0311.jpg b/artists-to-study/ats/thumbnail/spaceship/black-white/black-white_Jeanloup Sieff_0.7196009_0311.jpg new file mode 100644 index 0000000000000000000000000000000000000000..aeb8aedad60954b4e252e1e558bb8e17fb83fec8 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/black-white/black-white_Jeanloup Sieff_0.7196009_0311.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b6c528e283f742843c9da693c8fed9d8b6281c0346bdfacaf6e82780cf3d67b +size 10882 diff --git a/artists-to-study/ats/thumbnail/spaceship/black-white/black-white_John Stezaker_0.6726847_1010.jpg b/artists-to-study/ats/thumbnail/spaceship/black-white/black-white_John Stezaker_0.6726847_1010.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4a7b4a5b67313c8bd078a302395b33c16f5cbc4f --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/black-white/black-white_John Stezaker_0.6726847_1010.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f50b29246e266e2522bcb80247fa00bfc6efe3a2c3b5ffe1e38fcc82d0a5cc15 +size 10604 diff --git a/artists-to-study/ats/thumbnail/spaceship/black-white/black-white_Karl Blossfeldt_0.77652574_0166.jpg b/artists-to-study/ats/thumbnail/spaceship/black-white/black-white_Karl Blossfeldt_0.77652574_0166.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8208b4d20f600c90427779e6b1145dc94f95ce61 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/black-white/black-white_Karl Blossfeldt_0.77652574_0166.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db6acd2028b77d750451490e0b926ccce6f49ede29e962767aabea81a537efd9 +size 10675 diff --git a/artists-to-study/ats/thumbnail/spaceship/black-white/black-white_Kati Horna_0.71486115_0543.jpg b/artists-to-study/ats/thumbnail/spaceship/black-white/black-white_Kati Horna_0.71486115_0543.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bf2b80c5545a929e50c5d3edd549d93d946d257e --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/black-white/black-white_Kati Horna_0.71486115_0543.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b3d9385948fd3ec8d04b015da4192b564b9d1cc50dd8436fd46d6d9566806c66 +size 9116 diff --git a/artists-to-study/ats/thumbnail/spaceship/black-white/black-white_Max Dupain_0.6661642_0234.jpg b/artists-to-study/ats/thumbnail/spaceship/black-white/black-white_Max Dupain_0.6661642_0234.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ec456ed6964525d5c58d2e3980c179986dc6cb26 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/black-white/black-white_Max Dupain_0.6661642_0234.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f3f7571f7534de3397529da2d2f912115e63872e827cec1077c88d5b570d6c19 +size 9962 diff --git a/artists-to-study/ats/thumbnail/spaceship/black-white/black-white_Nathan Wirth_0.6436741_0289.jpg b/artists-to-study/ats/thumbnail/spaceship/black-white/black-white_Nathan Wirth_0.6436741_0289.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ce37701565e797970cb9c79f1693d88923f5a568 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/black-white/black-white_Nathan Wirth_0.6436741_0289.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67ed971bf110c434dbbccc032a1facd907c2678e3a4f27298323626b75546518 +size 8572 diff --git a/artists-to-study/ats/thumbnail/spaceship/black-white/black-white_Paul Strand_0.7080332_0345.jpg b/artists-to-study/ats/thumbnail/spaceship/black-white/black-white_Paul Strand_0.7080332_0345.jpg new file mode 100644 index 0000000000000000000000000000000000000000..95fdd602917c2311e0612dc35f3c4c0c3ea46be8 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/black-white/black-white_Paul Strand_0.7080332_0345.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7bad2b32e8037ad3c2d6648146cb54494f536908d671ee3722ab91b1d2ce6abe +size 7698 diff --git a/artists-to-study/ats/thumbnail/spaceship/black-white/black-white_Roger Ballen_0.64683115_0244.jpg b/artists-to-study/ats/thumbnail/spaceship/black-white/black-white_Roger Ballen_0.64683115_0244.jpg new file mode 100644 index 0000000000000000000000000000000000000000..635fd598255b43f986551f98081d97f1a77fbd9a --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/black-white/black-white_Roger Ballen_0.64683115_0244.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eca9ca350bfeeaad4b456e676769a4a672eaa56fa86242ebc11320488b103ebb +size 11451 diff --git a/artists-to-study/ats/thumbnail/spaceship/black-white/black-white_Ruth Bernhard_0.72990334_0408.jpg b/artists-to-study/ats/thumbnail/spaceship/black-white/black-white_Ruth Bernhard_0.72990334_0408.jpg new file mode 100644 index 0000000000000000000000000000000000000000..550e2dacee72f349b8919e166738bbbd014d57ea --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/black-white/black-white_Ruth Bernhard_0.72990334_0408.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:20adb89699a9ff9bc03330f3ca5c1df175fde93ccfd18610cca046d1b9645ece +size 11599 diff --git a/artists-to-study/ats/thumbnail/spaceship/black-white/black-white_Sally Mann_0.6534312_0552.jpg b/artists-to-study/ats/thumbnail/spaceship/black-white/black-white_Sally Mann_0.6534312_0552.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e0b0f700366620c2d34f87f31df512bac6423657 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/black-white/black-white_Sally Mann_0.6534312_0552.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7aacdf554c9689e0e0e0ddd7ba9fc423ba0b6a6066495f2a33b6fe9ee1e627f3 +size 10454 diff --git a/artists-to-study/ats/thumbnail/spaceship/c/c_Alain Laboile_0.67634284_0212.jpg b/artists-to-study/ats/thumbnail/spaceship/c/c_Alain Laboile_0.67634284_0212.jpg new file mode 100644 index 0000000000000000000000000000000000000000..474bc8c1b02e62dd0cf3cb411fae844a522d058b --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/c/c_Alain Laboile_0.67634284_0212.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:74a9bb25f900245ace418581672552ac61f4e3ac07801b824b979a4d5bc5a251 +size 10773 diff --git a/artists-to-study/ats/thumbnail/spaceship/c/c_Bapu_0.6122084_1655.jpg b/artists-to-study/ats/thumbnail/spaceship/c/c_Bapu_0.6122084_1655.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d265f00f1c37a23f060ec6d9c647bcb44b9a5e82 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/c/c_Bapu_0.6122084_1655.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:926c7cb52376aa93645076bd610573cadb92bb54a46caf129a205d853bfe9e04 +size 20560 diff --git a/artists-to-study/ats/thumbnail/spaceship/c/c_Cassius Marcellus Coolidge_0.5805516_1991.jpg b/artists-to-study/ats/thumbnail/spaceship/c/c_Cassius Marcellus Coolidge_0.5805516_1991.jpg new file mode 100644 index 0000000000000000000000000000000000000000..310e071a0a6c68e9c1b25da4773fcbc7dc314630 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/c/c_Cassius Marcellus Coolidge_0.5805516_1991.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a864bcca0c3ab59e9afbcf778ac19f4cbfa4ce071a72896966386b7397689430 +size 15141 diff --git a/artists-to-study/ats/thumbnail/spaceship/c/c_Dr. Seuss_0.5597466_2183.jpg b/artists-to-study/ats/thumbnail/spaceship/c/c_Dr. Seuss_0.5597466_2183.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fe385845175b532cc0fb67008df0e0fff17f77e7 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/c/c_Dr. Seuss_0.5597466_2183.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe33a327e7089824a61962c4da0f7e182e6bcf1c77d08dcf22e7966123327d8d +size 25924 diff --git a/artists-to-study/ats/thumbnail/spaceship/c/c_Henning Jakob Henrik Lund_0.5147134_2542.jpg b/artists-to-study/ats/thumbnail/spaceship/c/c_Henning Jakob Henrik Lund_0.5147134_2542.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d012063b8a3d2f0d7e15ee702cc25f5ef34d32b4 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/c/c_Henning Jakob Henrik Lund_0.5147134_2542.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:362e5cd311dfe3a350ae31baa0e3795003257be389e690fb80f32e2365a49eff +size 11060 diff --git a/artists-to-study/ats/thumbnail/spaceship/c/c_Julie Blackmon_0.72862685_0418.jpg b/artists-to-study/ats/thumbnail/spaceship/c/c_Julie Blackmon_0.72862685_0418.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2181b26e7a1693efb2998a31a8e4d2d121cd3302 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/c/c_Julie Blackmon_0.72862685_0418.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:66122b509935550fe010e1e61ea919e309bb78a4a8b8e91e4d0bff6d4a4e70a7 +size 12168 diff --git a/artists-to-study/ats/thumbnail/spaceship/c/c_Robert Irwin_0.58078_1984.jpg b/artists-to-study/ats/thumbnail/spaceship/c/c_Robert Irwin_0.58078_1984.jpg new file mode 100644 index 0000000000000000000000000000000000000000..860b55125fa8c0cdcf597a57cf2e7c90e9ed9c2c --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/c/c_Robert Irwin_0.58078_1984.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e96ee5aeec8dfc186187d06ef778cc3dcb560805dfc8a51c80f0a46bf45a0e4 +size 14179 diff --git a/artists-to-study/ats/thumbnail/spaceship/c/c_William-Adolphe Bouguereau_0.618265_1604.jpg b/artists-to-study/ats/thumbnail/spaceship/c/c_William-Adolphe Bouguereau_0.618265_1604.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5173436d1e86911abe5a3e86869636aa5bebe093 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/c/c_William-Adolphe Bouguereau_0.618265_1604.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f93aed5adbe82f2251490979c56a460eff707c04aaaeaf70a859e4b4d1d7d13 +size 10991 diff --git a/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Abigail Larson_0.7319012_0391.jpg b/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Abigail Larson_0.7319012_0391.jpg new file mode 100644 index 0000000000000000000000000000000000000000..07ef613d27821246fdab7ad4dc39049fd231821e --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Abigail Larson_0.7319012_0391.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:41f94b94cef6cc3b862ca9c0852ee094167c26dbbe034203d0177d5f16124ad7 +size 15010 diff --git a/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Al Williamson_0.742113_0325.jpg b/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Al Williamson_0.742113_0325.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d4ef66d7e97f01c71c06c459b76fef5ec1403b8b --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Al Williamson_0.742113_0325.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:baa715928f9dc89fa8b35e04b1bc60f3fedfa427ecfeb4b72e95a16069e0f500 +size 26420 diff --git a/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Albert Robida_0.7485741_0292.jpg b/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Albert Robida_0.7485741_0292.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9aa30d458c2ddd8830c856fb5e87c17413f446c6 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Albert Robida_0.7485741_0292.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b8c3e35994bd75aab293cd9a56b82c9a090e5da51df89817dc36d21941107f8d +size 20981 diff --git a/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Alberto Vargas_0.7747376_0175.jpg b/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Alberto Vargas_0.7747376_0175.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d34687afd941be674835ddc12af9052b98d98f53 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Alberto Vargas_0.7747376_0175.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad5f5fe2306a45e14d3f06e16cdb69106fb46a804ab4248d8f26211b19f975b2 +size 19741 diff --git a/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Alena Aenami_0.77210015_0189.jpg b/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Alena Aenami_0.77210015_0189.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b63d1c5cce2f01f390f90051a9331f4d5b727317 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Alena Aenami_0.77210015_0189.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e2548def3f84c7623d8077f4d0ea4a17ddc9ab2d89d34452046b1d3ac800420 +size 11308 diff --git a/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Alex Hirsch_0.6157384_1620.jpg b/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Alex Hirsch_0.6157384_1620.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1fff3f14ac265141629351f26434b7e2866215c4 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Alex Hirsch_0.6157384_1620.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2bfbbfab16ed22cd82079141a008b08c0b3c4261161e0e688aeac18d2a1b0816 +size 23005 diff --git a/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Alice Pasquini_0.78949904_0136.jpg b/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Alice Pasquini_0.78949904_0136.jpg new file mode 100644 index 0000000000000000000000000000000000000000..205a2169fe267fc02500e54d5876c8ffaed5bb57 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Alice Pasquini_0.78949904_0136.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:765e8bf65b018bc6eb98b83952c3766754fac94918f40991e137ceb615835849 +size 22760 diff --git a/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Andy Kehoe_0.82063186_0066.jpg b/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Andy Kehoe_0.82063186_0066.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f2fad7f102f64282544d7911b719a13dac956635 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Andy Kehoe_0.82063186_0066.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a3b3bc68d4160c371dbeab6944d861f3148af44c55df4f60f983f767f9b9d82d +size 9466 diff --git a/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Anna Dittmann_0.62327325_1551.jpg b/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Anna Dittmann_0.62327325_1551.jpg new file mode 100644 index 0000000000000000000000000000000000000000..825e59b4e2966207adfbc4cb2887bcdadc3d88f9 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Anna Dittmann_0.62327325_1551.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:914a49fbcddf87d6c153295e82913bd46a183e627b7e6099e1bfdb8dd8a2e756 +size 14319 diff --git a/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Anton Fadeev_0.73433846_0378.jpg b/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Anton Fadeev_0.73433846_0378.jpg new file mode 100644 index 0000000000000000000000000000000000000000..401a8ac096f92bd285474820ba9e7bd99035f8b2 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Anton Fadeev_0.73433846_0378.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ddd8974f16d7c5665481cde8ea5856f1fb44656988005969ab33aa9d8b1ea08 +size 12988 diff --git a/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Barry Windsor Smith_0.6765375_0955.jpg b/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Barry Windsor Smith_0.6765375_0955.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a70620b088ac8d9109007bff66c2eb7434fd8545 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Barry Windsor Smith_0.6765375_0955.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f49bf46760deb5ff1993a1cf0bbc9639e3aedb8edd9344728c397647d03adb2 +size 26561 diff --git a/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Bart Sears_0.5838427_1947.jpg b/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Bart Sears_0.5838427_1947.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5e658faaa87322b2cbdfc2ff2b284e6d8fa9b029 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Bart Sears_0.5838427_1947.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3228d342a34c2a6d165b251d2a58a8de635ab86b28c88990b82b2747be22237c +size 21707 diff --git a/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Becky Cloonan_0.67192084_1026.jpg b/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Becky Cloonan_0.67192084_1026.jpg new file mode 100644 index 0000000000000000000000000000000000000000..63a4be7bdcd922704ad5dda7f729c7b1cc347fbf --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Becky Cloonan_0.67192084_1026.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:55ee9c11948d0e028b39f330b6d7f1147a79cb130fc33d8762c0d73b03a6d54f +size 24694 diff --git a/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Bernard Buffet_0.7103491_0595.jpg b/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Bernard Buffet_0.7103491_0595.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8abecfbf2821441d60b3c96e273e180a59f8244f --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Bernard Buffet_0.7103491_0595.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a8c86d4265ecd4797ed721889a6fa5c3e79fd2d209ff99fb9b0761faeac3d492 +size 27705 diff --git a/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Brian K. Vaughan_0.64147836_1364.jpg b/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Brian K. Vaughan_0.64147836_1364.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b889f4f39438f6b644a42371499e1abf7d04c495 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Brian K. Vaughan_0.64147836_1364.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:844b2639be721ebf26286fe58932ade495b4b9c6e96d037e785e905574c0ede1 +size 18649 diff --git a/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Bryan Hitch_0.6518333_1257.jpg b/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Bryan Hitch_0.6518333_1257.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7fe0d86dd98076edbd83421ff48e0c9faf002eba --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Bryan Hitch_0.6518333_1257.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1aa323080bf166dbaee7c61516c9a8d522d5a99cc930cb21b7d2492c4fcac8a6 +size 25371 diff --git a/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Butcher Billy_0.7593378_0239.jpg b/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Butcher Billy_0.7593378_0239.jpg new file mode 100644 index 0000000000000000000000000000000000000000..138054c0ee5826e9c079e8a70cf2bc0a7af58df3 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Butcher Billy_0.7593378_0239.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e3cce108f1387d7c1f92ca5913bda94c83fd97136c493e77ac9f2c3d38bb02fa +size 20079 diff --git a/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Carl Barks_0.6923666_0776.jpg b/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Carl Barks_0.6923666_0776.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7886b736673550f85e38ec68b12eee5dbcd11ecc --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Carl Barks_0.6923666_0776.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:434e7843cf6de264bbdf8e39a8049f0311212e51869dc5c02c0363ec96373913 +size 23603 diff --git a/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Carl Larsson_0.7296195_0411.jpg b/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Carl Larsson_0.7296195_0411.jpg new file mode 100644 index 0000000000000000000000000000000000000000..423ec659713513cd3dbef7828abcee2ce18d042c --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Carl Larsson_0.7296195_0411.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:753d00a7f42b151a3df15592181dbe81a90026c3a27f536ea1a8d0999f099b47 +size 19273 diff --git a/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Casey Weldon_0.6047672_1726.jpg b/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Casey Weldon_0.6047672_1726.jpg new file mode 100644 index 0000000000000000000000000000000000000000..cabf229ceda7382f640a02273329e2931e88e365 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Casey Weldon_0.6047672_1726.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:405839d3bfe171290d2c96e93e1026909224310492762dff499823e5aee6b6b7 +size 14177 diff --git a/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Charles Vess_0.6512271_1264.jpg b/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Charles Vess_0.6512271_1264.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b977d9c3fb46f98147bfe1c87e6e3b6a70201885 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Charles Vess_0.6512271_1264.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff39e732ac3c8826b02bf468a8852fcfaea5739b5b491ca4ad299bdbfa0d89ce +size 19033 diff --git a/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Chip Zdarsky_0.6381826_1399.jpg b/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Chip Zdarsky_0.6381826_1399.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c256981ded9d817c8a3995f24b0f659f16d8cc69 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Chip Zdarsky_0.6381826_1399.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d231ae23e4900c936d72be4f0f09bc9faaafe7ee60567d12b320d6242412e9f +size 21350 diff --git a/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Conrad Roset_0.8190752_0070.jpg b/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Conrad Roset_0.8190752_0070.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0025ab8b9dbe04f434d0dcf4bdd5cc8d22f49cea --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Conrad Roset_0.8190752_0070.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d05ffd79ce0ab83943bb4a0ee235b0ee5aaebfc06081224c0bf919a19a47c6ba +size 14517 diff --git a/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Cory Loftis_0.6168619_1614.jpg b/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Cory Loftis_0.6168619_1614.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c4b70a9219a25ce160546f8581ee3d318c2aa71d --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Cory Loftis_0.6168619_1614.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1706ee9914ed12e152ae8f38e6bdcc1e8b2452be5db1affaeb29a964a17ef0d1 +size 11322 diff --git a/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Cyril Rolando_0.68644965_0847.jpg b/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Cyril Rolando_0.68644965_0847.jpg new file mode 100644 index 0000000000000000000000000000000000000000..27f402216fe3e16dee5e6a505ae9f5a7667c16ae --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Cyril Rolando_0.68644965_0847.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b4fc5386644a40bd0232a5e1e58d14d8b03fb8c4af719a029b1d7a1f7e768fe1 +size 14605 diff --git a/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Dan Mumford_0.5843051_1939.jpg b/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Dan Mumford_0.5843051_1939.jpg new file mode 100644 index 0000000000000000000000000000000000000000..79ae3f65b9eb85553081797bb32d6874e74c9206 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Dan Mumford_0.5843051_1939.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c0a6f49490c0b74d18b05eb55dc346fd234f56eec649cc02c682ad06ed38005f +size 19524 diff --git a/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Dave McKean_0.6438012_1347.jpg b/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Dave McKean_0.6438012_1347.jpg new file mode 100644 index 0000000000000000000000000000000000000000..98b1f50d20fc8feeb83add34f6018b84c9bced59 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Dave McKean_0.6438012_1347.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:752043464522009ee06427f1fc78f6f785ace695c5aa0077c320fce081258e5f +size 12309 diff --git a/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Debbie Criswell_0.7895031_0135.jpg b/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Debbie Criswell_0.7895031_0135.jpg new file mode 100644 index 0000000000000000000000000000000000000000..94a3c8e7a742e8a57b1be94f4bef71a91b7c7a82 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Debbie Criswell_0.7895031_0135.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc15e4958e9af0f2ee55d3475f67ccba217d46300fdfe5486eeb206e410a8d22 +size 14156 diff --git a/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Dmitry Kustanovich_0.7241322_0465.jpg b/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Dmitry Kustanovich_0.7241322_0465.jpg new file mode 100644 index 0000000000000000000000000000000000000000..adfad298b289acd1ffc063b0a3f7d32b605eca14 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Dmitry Kustanovich_0.7241322_0465.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71a9c2b9f1908abd0ec5943fd2d580a31b9c6efcd05ff7a0e7f7218a3afc8bed +size 21676 diff --git a/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Don Bluth_0.6693046_1050.jpg b/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Don Bluth_0.6693046_1050.jpg new file mode 100644 index 0000000000000000000000000000000000000000..90fbbf9e2fe53801ea6ac306dc8bc0368370a02a --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Don Bluth_0.6693046_1050.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c8a892775ed82c32e915782a03cf2f6fd93942c3c5e0862eab6df09b39333f24 +size 18958 diff --git a/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Dustin Nguyen_0.64909416_1293.jpg b/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Dustin Nguyen_0.64909416_1293.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1360fc9ab5a09538509c254f556afea2e45022a2 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Dustin Nguyen_0.64909416_1293.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6435c5a06542dc63cf162437a253f57a7f801b3678df7b7c0443f4d46fe2e675 +size 19800 diff --git a/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_E. H. Shepard_0.7091189_0608.jpg b/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_E. H. Shepard_0.7091189_0608.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e29a10f5c2222071be413a8227fe00214faf29f1 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_E. H. Shepard_0.7091189_0608.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:39a1836458d6194072b069e6caae1667ba20fc1a0ae4bc36bdbc1cbcf0bf188f +size 22834 diff --git a/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Ed Mell_0.6637067_0450.jpg b/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Ed Mell_0.6637067_0450.jpg new file mode 100644 index 0000000000000000000000000000000000000000..11ea7e1979eac8f129c37c8bd8a518977414dedd --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Ed Mell_0.6637067_0450.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eca0ecbc3b796328eb50bf315a8c4f5dc3e2d75a366903e6955fcc84ea41cf00 +size 12507 diff --git a/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Ernie Barnes_0.6307126_1475.jpg b/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Ernie Barnes_0.6307126_1475.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8d4fb1f6bccc2b1b4ef1477c1968c0e1dd867a7d --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Ernie Barnes_0.6307126_1475.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e0dc4e270ec32bb6490484fe0d39ff870d21c0287858a6862c808706906ef9c +size 18526 diff --git a/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Ethan Van Sciver_0.65442884_1232.jpg b/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Ethan Van Sciver_0.65442884_1232.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9be97589067acfb2f6d1ddaa7392dea187878794 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Ethan Van Sciver_0.65442884_1232.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c24fc2aa78861d82bbd7de6b2a5b2e6c3ea825837c4ecbf9dfadaa1c678360e1 +size 24374 diff --git a/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Gabriel Ba_0.6773366_0945.jpg b/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Gabriel Ba_0.6773366_0945.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3c4c16699785f30552d2717abee78a0c109898af --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Gabriel Ba_0.6773366_0945.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:92f6f3f535a55694ee1ed94bd1a24a9e9c0d073d18dd7ac9a6411ab17907ac39 +size 19124 diff --git a/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Glen Keane_0.60287905_1751.jpg b/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Glen Keane_0.60287905_1751.jpg new file mode 100644 index 0000000000000000000000000000000000000000..87812a1af4d3067c088477a1dfc04db7fcdb4bee --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Glen Keane_0.60287905_1751.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:394c361b3cfdafd48e152a15bf614a88e89ddc7b58e828a375484f5f5ce4711e +size 17464 diff --git a/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Goro Fujita_0.6346491_1439.jpg b/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Goro Fujita_0.6346491_1439.jpg new file mode 100644 index 0000000000000000000000000000000000000000..dc2defcc2ec3da420bdbe68a1c5d6b7425266517 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Goro Fujita_0.6346491_1439.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:216dad952b91ee50879b1ce82a28d36582304107847b0db22870c84f64a7b060 +size 10336 diff --git a/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Guido Crepax_0.7835321_0151.jpg b/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Guido Crepax_0.7835321_0151.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ae3a6f6459ea736656afd590177726c22a4d0271 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Guido Crepax_0.7835321_0151.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f8cd450dcbc7768f4ad13589f7df0adade0256d94b0a38d5b21341570d2f34d +size 25451 diff --git a/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Gustaf Tenggren_0.7006041_0685.jpg b/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Gustaf Tenggren_0.7006041_0685.jpg new file mode 100644 index 0000000000000000000000000000000000000000..dd473261509c06af9a72c884139841e9c577aa13 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Gustaf Tenggren_0.7006041_0685.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:276564254e05afb0e9e260b4d4b6757c26bcc4e9b0a806ddc06555bf1c977006 +size 17184 diff --git a/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Hanna-Barbera_0.6588123_1173.jpg b/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Hanna-Barbera_0.6588123_1173.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3a960f3a7f5df6a9d889957abcdd91579755428a --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Hanna-Barbera_0.6588123_1173.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af8b5161e160e36e6db3d60164f33db6886b78fd84b940b7e4aff8bcafae21ed +size 23154 diff --git a/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Harry Clarke_0.7688428_0205.jpg b/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Harry Clarke_0.7688428_0205.jpg new file mode 100644 index 0000000000000000000000000000000000000000..33be5e58360a9c39557a284950810c18c18b2f43 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Harry Clarke_0.7688428_0205.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aad59dbce9fc93e7a10dea08eefabede392f010da56e33f9456ead79c900bfa3 +size 26596 diff --git a/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Harvey Kurtzman_0.64772683_1308.jpg b/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Harvey Kurtzman_0.64772683_1308.jpg new file mode 100644 index 0000000000000000000000000000000000000000..38a830a5e4549d1e74f76474306936f60a8e70bc --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Harvey Kurtzman_0.64772683_1308.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab1c9ef00512de4df722d4f7e96c01735c72ae79284286eff7e7343d08d79a3d +size 25858 diff --git a/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Henri De Toulouse Lautrec_0.7294263_0413.jpg b/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Henri De Toulouse Lautrec_0.7294263_0413.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2cc00b2803cc6d1c53e42fe943b936656c00de76 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Henri De Toulouse Lautrec_0.7294263_0413.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b078b68aac6add46ee60df1461b53fca012175d2cff0f30d83b9a0affc5ca83a +size 14941 diff --git a/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Hiroshi Nagai_0.847129_0034.jpg b/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Hiroshi Nagai_0.847129_0034.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e3bf89ef834cea25de6e94b9499f43caeba86617 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Hiroshi Nagai_0.847129_0034.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a4c7ed8759e343457b1cf4fe13e2d2c61ed9202d27a0a0a1e28345f24b828ad0 +size 12391 diff --git a/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Howard Chaykin_0.7213998_0487.jpg b/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Howard Chaykin_0.7213998_0487.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7a6df42cd0115b00b92f0181e20c9171ea771984 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Howard Chaykin_0.7213998_0487.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf1bc3a5431988d29b36ccc4cf936a51d12447ef65e311548672f907f39d1a3c +size 24188 diff --git a/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Jack Kirby_0.6467424_1322.jpg b/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Jack Kirby_0.6467424_1322.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ffdb2708f41adc5b6a8045f6cb9cb6cb2f4994ed --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Jack Kirby_0.6467424_1322.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:151afd4c7bb2c5cfbbed42f0889210d0ab5a56e2092bb0cb6460720be91d1396 +size 25271 diff --git a/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_James Gilleard_0.6849431_0862.jpg b/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_James Gilleard_0.6849431_0862.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bba9284144ddeaf24104a6d2421570a428a753d7 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_James Gilleard_0.6849431_0862.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7d0d59c30a9bdf914248bb09118e2d94d844dab31c19eea60b6119e79772f7e7 +size 12380 diff --git a/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Jeffrey Catherine Jones_0.7012148_0674.jpg b/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Jeffrey Catherine Jones_0.7012148_0674.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0cfbe40ca4de9f5e5e0fc7fd4380598756e1f4f8 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Jeffrey Catherine Jones_0.7012148_0674.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:465e0edd695dfd8c6a29411ec78c1ba9e805cc1e87292364088d8a340cf437c1 +size 12287 diff --git a/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Jeremiah Ketner_0.8075384_0099.jpg b/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Jeremiah Ketner_0.8075384_0099.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e436c9fc33319c7dcde0ea5cc77c0fa164e40fae --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Jeremiah Ketner_0.8075384_0099.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:906ffd35cd06a70d0f5b80b49216d010ccc354d605ed0923fccb9cd2a7964d29 +size 21587 diff --git a/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Jim Mahfood_0.6936606_0760.jpg b/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Jim Mahfood_0.6936606_0760.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e0393206a0e2f17abffcbdbdc673220b0aa69e7f --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Jim Mahfood_0.6936606_0760.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3502211be49217ad7bd0c4e56174d0a475d898fa854ae782026464eb127ec911 +size 29046 diff --git a/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_John Philip Falter_0.623418_1549.jpg b/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_John Philip Falter_0.623418_1549.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8fc10e1495898f790cd7a390ed721c6373619af3 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_John Philip Falter_0.623418_1549.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f61e4bf94850f7124fcf50d6091677a10ef6fa2f798f9361aa75411d39a9c9e9 +size 18001 diff --git a/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Josan Gonzalez_0.6193469_1267.jpg b/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Josan Gonzalez_0.6193469_1267.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d8fc83b2bc37e9af3b3e2fb1ae83430e0b7a7975 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Josan Gonzalez_0.6193469_1267.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a917435d1c46c5ea2234b7742f7b7bdb220266452e36349716f0586a2cc0f47 +size 18688 diff --git a/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Karel Thole_0.7305395_0404.jpg b/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Karel Thole_0.7305395_0404.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c79aacd98c7e03e0d4381b043cb132d013beab8d --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Karel Thole_0.7305395_0404.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:80e551cf404df2e6183be6a3b800dd5b5f0b8f2dd7bfb00904dc4453a72bc8ce +size 13585 diff --git a/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Kaws_0.6470336_1319.jpg b/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Kaws_0.6470336_1319.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d3d8eb2207ae2919cab08fcd96cbca26d0392af2 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Kaws_0.6470336_1319.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:81b05efbb11f38f5a19d0f1bb53475dabae516e0b33d7d3c64064c61a409a541 +size 21783 diff --git a/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Kim Jung Gi_0.6472225_1316.jpg b/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Kim Jung Gi_0.6472225_1316.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6ad5fa274506a13adf99a8e8cf3a1fdb4c602e0c --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Kim Jung Gi_0.6472225_1316.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d5e394217926154c2aa7001c8c6aec381a7452c07fc041b64b49e626c9988a6b +size 23041 diff --git a/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Klaus Janson_0.64129144_1366.jpg b/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Klaus Janson_0.64129144_1366.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9c291dbdb52d41049307e0ef6353be601b2f45d6 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Klaus Janson_0.64129144_1366.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:284391b8e052fa59915b64f80a2b65a2cf11dff710387acd3d7ed878cd195abd +size 20508 diff --git a/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Laurie Greasley_0.70072114_0682.jpg b/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Laurie Greasley_0.70072114_0682.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2ac489d2409a4d5adcb2e5d16f8a40881e7f6e05 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Laurie Greasley_0.70072114_0682.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6d8b6d000d8a4ea968d5cd4979add9a0e616244b24098d9a3afd2ce24432e963 +size 23359 diff --git a/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Lisa Frank_0.7892591_0138.jpg b/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Lisa Frank_0.7892591_0138.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a784897d85c3dd0c1e0c26542d486c29d7459a59 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Lisa Frank_0.7892591_0138.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d32270f4f81c1315c51c49dfb3cc3903cb313bc70552dbdd99e2c47a323cec8 +size 26119 diff --git a/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_M.W. Kaluta_0.71612585_0530.jpg b/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_M.W. Kaluta_0.71612585_0530.jpg new file mode 100644 index 0000000000000000000000000000000000000000..86ad10fe63dafbbd898f318449734c9488bef5d0 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_M.W. Kaluta_0.71612585_0530.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e37c3b9a4852497b04a283e5bcbb941ae8bad13c85ff72d3407716586fa8d05 +size 20101 diff --git a/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Marc Davis_0.61837333_1600.jpg b/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Marc Davis_0.61837333_1600.jpg new file mode 100644 index 0000000000000000000000000000000000000000..704aef3e6f4051efa785a3f31db36466e8ad7af7 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Marc Davis_0.61837333_1600.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e9991bbbc69a2884176c66f053367758c9ea08c8c989abacadab0a653dee2c2 +size 15714 diff --git a/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Matt Fraction_0.58463776_1935.jpg b/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Matt Fraction_0.58463776_1935.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7ec79904f48c5502ccb2ff74ab77c1e47648338a --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Matt Fraction_0.58463776_1935.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:30fb8d234b0e43cdfbf41dcd3c779ad72cc16341f4ed1e0650be1be34735d6f5 +size 23110 diff --git a/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Maurice Sendak_0.7690118_0204.jpg b/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Maurice Sendak_0.7690118_0204.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2f38d5c0b9e013db51c32b0da5bd5c688163f364 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Maurice Sendak_0.7690118_0204.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d45a2aa46ea0b824e95b1f6221fc4e01c04b32a1ced7442d69efdd496605ea5 +size 20822 diff --git a/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Mike Deodato_0.6061201_1717.jpg b/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Mike Deodato_0.6061201_1717.jpg new file mode 100644 index 0000000000000000000000000000000000000000..86076cd4868620143908da809b66856ed061fdb5 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Mike Deodato_0.6061201_1717.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b476060226a491c1fbb76c2119f00c2cd3dff3c479baba160ba9cfe66377d615 +size 25720 diff --git a/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Mike Mayhew_0.5765857_2026.jpg b/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Mike Mayhew_0.5765857_2026.jpg new file mode 100644 index 0000000000000000000000000000000000000000..52441e0bb2582cf6931d4e28a6da31e842caa46e --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Mike Mayhew_0.5765857_2026.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5e3203b73d8d3ec758e74bbf24697020ea18f2d63b2aa0dcb181fd571a53898 +size 18868 diff --git a/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Mike Mignola_0.642346_1362.jpg b/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Mike Mignola_0.642346_1362.jpg new file mode 100644 index 0000000000000000000000000000000000000000..89d29265e8510313d942048d8c7b557397ec65c9 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Mike Mignola_0.642346_1362.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b9bb8b770ab103c9ee7602787462709163c07aadb8c5fe994a09dba6983e1f51 +size 26322 diff --git a/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Milo Manara_0.6471776_1317.jpg b/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Milo Manara_0.6471776_1317.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f946738cfb8632b41eed40f1608c98daade28bb0 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Milo Manara_0.6471776_1317.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e075513115916e51dd8ccb6ac359168c097efae9567acd62df347f376c80e80d +size 19808 diff --git a/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Milton Caniff_0.7905358_0133.jpg b/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Milton Caniff_0.7905358_0133.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6679a9815b9838d416c040a8883ebadf4cbba52c --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Milton Caniff_0.7905358_0133.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:744ae8d0b5d3cad69ed0615cdbe68ad9418dbd2f036fa67c27952087744a21ab +size 27573 diff --git a/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_NHK Animation_0.6907677_0794.jpg b/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_NHK Animation_0.6907677_0794.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8fafb8f27b47fffc9bfeaaed36a0bfbd944975cc --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_NHK Animation_0.6907677_0794.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f8a19927a7dd7b9a2fefff93148a3339ea11bf8a35ea7cf58cbe84925c59fd7 +size 16519 diff --git a/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Osamu Tezuka_0.8005524_0112.jpg b/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Osamu Tezuka_0.8005524_0112.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8c75ff4752225162d96f816766f1742390ace853 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Osamu Tezuka_0.8005524_0112.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b06b715b548689458f977fab3e9eb4aa80c981654e140bd355221a78de5ac4e8 +size 22577 diff --git a/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Paul Lehr_0.70854837_0230.jpg b/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Paul Lehr_0.70854837_0230.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a2c0679c4da89ec2e118fb0bfb0054db93382e84 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Paul Lehr_0.70854837_0230.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cfb65ff54dae79e7e0289fa9c9afb73abc4946368dc6e57c9c2e82ad69f4d46c +size 13779 diff --git a/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Peter De Seve_0.6616659_1141.jpg b/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Peter De Seve_0.6616659_1141.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c4a304c289ad129ab35db4063184ccccee26db55 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Peter De Seve_0.6616659_1141.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:59b694362e59e8e31839fc57b75cc9e1129521dfb3b4947a39ba15a3b85011ae +size 13383 diff --git a/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Peter Wileman_0.71271706_0568.jpg b/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Peter Wileman_0.71271706_0568.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9a6896d4a98a28020a7e7876d6de76a10b798b7b --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Peter Wileman_0.71271706_0568.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:76121a64b3f4229802e9d837b083b631d8881ea81a6ea6f58f51f781ddbb1863 +size 10998 diff --git a/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Phil Jimenez_0.60625625_1715.jpg b/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Phil Jimenez_0.60625625_1715.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2a246cac297efe94ccf3075fbb5471481b74045a --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Phil Jimenez_0.60625625_1715.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6bcc63dd0aa89ef91e6b92c3dc8e206d44538c38857535c812d4f50a8fa5b148 +size 21783 diff --git a/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Philippe Druillet_0.7363382_0365.jpg b/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Philippe Druillet_0.7363382_0365.jpg new file mode 100644 index 0000000000000000000000000000000000000000..afb5d0b90f4e4b838c1af50893d7dc3d7dd3b172 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Philippe Druillet_0.7363382_0365.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a57ab8fd5f87ba2427b7169bf7abfaa37ed2d0424560538e5f2a67ccfcfeaed0 +size 26315 diff --git a/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Pixar Concept Artists_0.6667752_1077.jpg b/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Pixar Concept Artists_0.6667752_1077.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ed4193e99989e741e45bcfb1ee1e8cbd9ae6868a --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Pixar Concept Artists_0.6667752_1077.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bb919d70f90c71c4540417491ed247d77e756d206df98877e32fe579656ebcc7 +size 11470 diff --git a/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Pixar_0.6495793_1288.jpg b/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Pixar_0.6495793_1288.jpg new file mode 100644 index 0000000000000000000000000000000000000000..77e8703f310ac5ddeb46b29c90b85a2595b657ca --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Pixar_0.6495793_1288.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bdea9c58e7f92633c2becca89fe4b57baf7f5359f63c26805f365a3156ccef46 +size 14151 diff --git a/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Rebecca Guay_0.72439146_0461.jpg b/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Rebecca Guay_0.72439146_0461.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2fdcad371d8211b763401417d733073f9a95518c --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Rebecca Guay_0.72439146_0461.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:27135b69f3b8f053a12b100833d45cde109d6575618af24f9e24cbf1dc14a9cf +size 20790 diff --git a/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Roy Lichtenstein_0.98272276_0002.jpg b/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Roy Lichtenstein_0.98272276_0002.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8eb3488c60a6db62ff7ac8fdf3b23a96062e4cb7 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Roy Lichtenstein_0.98272276_0002.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2b611277f4c9df17075f830f93102f9d89c39c4d881aeddc1f00a8b74ac178c +size 23506 diff --git a/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Siya Oum_0.6435919_1352.jpg b/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Siya Oum_0.6435919_1352.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a5a304c38f2fd9bb96575279131320b4a99b4320 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Siya Oum_0.6435919_1352.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8f7da62b24cc55d5d4ae5c272a165b9b297800268e999d20472dc113f397e78e +size 21562 diff --git a/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Skottie Young_0.5440119_2329.jpg b/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Skottie Young_0.5440119_2329.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d746a8a38958239b4c4e7a509f3155ce5a0ddd50 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Skottie Young_0.5440119_2329.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b97d58a3f9197977ec58cb0cc9b4cbc7c5225110d627de2874678871803b948 +size 21420 diff --git a/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Tatsuro Kiuchi_0.8597267_0023.jpg b/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Tatsuro Kiuchi_0.8597267_0023.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3f5a64ffb7ea5a1026736090953a4d0500ff9639 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Tatsuro Kiuchi_0.8597267_0023.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d935d13e243e52e8a002c882d57956ec53e604614496e0d8b08fdd90fce1daa +size 8596 diff --git a/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Terada Katsuya_0.6944026_0752.jpg b/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Terada Katsuya_0.6944026_0752.jpg new file mode 100644 index 0000000000000000000000000000000000000000..91ca948fcb1ccb07d971aa2201833a05745516c8 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Terada Katsuya_0.6944026_0752.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2264f25d1a37a9d8f23fd362b74f11f7192be52dc7dbfbb8b93e57f252da0206 +size 23530 diff --git a/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Tex Avery_0.6104007_1678.jpg b/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Tex Avery_0.6104007_1678.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ac4745a6db7309933b858a6e14e9c19e63e9f384 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Tex Avery_0.6104007_1678.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a5aff03808df9d18adbd989124a009b3112489757e633686a535941b506a51b +size 12699 diff --git a/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Todd McFarlane_0.6647763_1112.jpg b/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Todd McFarlane_0.6647763_1112.jpg new file mode 100644 index 0000000000000000000000000000000000000000..57c5510ef4e6ddb027c9b6572d765639c0bc0243 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Todd McFarlane_0.6647763_1112.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:74027a0adfb4fd39caeb0b978232826d4561780adf65e430d8b5a6ffb4876f50 +size 27039 diff --git a/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Tomer Hanuka_0.6643152_1116.jpg b/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Tomer Hanuka_0.6643152_1116.jpg new file mode 100644 index 0000000000000000000000000000000000000000..16a1d0ae00b9c6512285f582a877febe23a1a9dc --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Tomer Hanuka_0.6643152_1116.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7fb5204df77b032b2552491c140b6ed7092ca259c24b772c7b3ad0b271670703 +size 15892 diff --git a/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Tony DiTerlizzi_0.6114657_1662.jpg b/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Tony DiTerlizzi_0.6114657_1662.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6a26181458a39522483a1ed682a2c11841bbae28 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Tony DiTerlizzi_0.6114657_1662.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:acbf86cbe866babd60cb6e981ec13390fd510817a675ef57dcab34a91956c5ca +size 22651 diff --git a/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Ub Iwerks_0.625396_1525.jpg b/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Ub Iwerks_0.625396_1525.jpg new file mode 100644 index 0000000000000000000000000000000000000000..498be2105881d16392f0ed7b7c6cccabc1142f6c --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Ub Iwerks_0.625396_1525.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84f8a5721cc05975af72ab68d7b6b8c15b174a0b52ce5b742c951c941adcd878 +size 26639 diff --git a/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Victo Ngai_0.81195843_0087.jpg b/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Victo Ngai_0.81195843_0087.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a57b3cd3e9e665ac717dbd8a8a20312caedc32c4 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Victo Ngai_0.81195843_0087.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e32aa4a4745449cdc1f4e9144897ea3eabb47bda86a94aeeea7f1cf141fda367 +size 14842 diff --git a/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_W. Heath Robinson_0.75374347_0264.jpg b/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_W. Heath Robinson_0.75374347_0264.jpg new file mode 100644 index 0000000000000000000000000000000000000000..89bcb4fcd4f0015a8dfbef236b5b9b64bbd2ffec --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_W. Heath Robinson_0.75374347_0264.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d179c26fc5b63e610bce02a05e94b6cfc7aa746ff6d9196fc471fa3eda09e48 +size 22027 diff --git a/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Will Eisner_0.63349223_1449.jpg b/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Will Eisner_0.63349223_1449.jpg new file mode 100644 index 0000000000000000000000000000000000000000..486bb66852dcd5aa17ffd32e5844d38e251d8aaa --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_Will Eisner_0.63349223_1449.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2efe499a0ddd3e7b2216345e56aca49bae19888d68071b8b823dde1e37e6388d +size 25174 diff --git a/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_theCHAMBA_0.6742506_0985.jpg b/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_theCHAMBA_0.6742506_0985.jpg new file mode 100644 index 0000000000000000000000000000000000000000..75a309f859758e8d62afb84c0dc756dbc7521b78 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/cartoon/cartoon_theCHAMBA_0.6742506_0985.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c77d1a64db2c499b6ca2fc7cd7d7d313e90092605315c032c61843c9d65eb451 +size 20569 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_A.D.M. Cooper_0.53244877_2422.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_A.D.M. Cooper_0.53244877_2422.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1d5069e1f95fadcdde0c31e7765b96ef694fd473 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_A.D.M. Cooper_0.53244877_2422.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e87d80ebfcf55262949de99725765520aef35c5a0c78cce3ac05bd0a85ec9ca +size 9961 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Abraham Mintchine_0.46088243_2858.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Abraham Mintchine_0.46088243_2858.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4051265bdfd4a81be9d93528bc5c12be6fb23246 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Abraham Mintchine_0.46088243_2858.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e8d99543710d0e7e1a1345b415242779d6555a0ab30c966111490ad7cf34229 +size 13005 diff --git "a/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Adolf Ulric Wertm\303\274ller_0.5278296_2454.jpg" "b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Adolf Ulric Wertm\303\274ller_0.5278296_2454.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..e62c316bf3745bb8e44ac34fd1239e95413e5772 --- /dev/null +++ "b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Adolf Ulric Wertm\303\274ller_0.5278296_2454.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6585c0fac5b558d4e0c065415c4d9f5198c2a2e96bddb4fb23f077c40241f2e1 +size 11071 diff --git "a/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Adolf W\303\266lfli_0.5372333_2184.jpg" "b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Adolf W\303\266lfli_0.5372333_2184.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..6726a6043cc64284484bfc0e04ce8d1890ec9235 --- /dev/null +++ "b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Adolf W\303\266lfli_0.5372333_2184.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f028af80c44fe262dcf3a81a8eaeabbdff0e5a8ff884878418da9f3d9e06bad +size 16157 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Adrian Ghenie_0.6193521_1590.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Adrian Ghenie_0.6193521_1590.jpg new file mode 100644 index 0000000000000000000000000000000000000000..cd844eef8e9e7c24016d9a9ad3fe45d7a53e927f --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Adrian Ghenie_0.6193521_1590.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d6605eb1b06c9e797401e7c7dd6c5d94bc596d9647e301b03b81e4e899aba12d +size 12202 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Adrian Smith_0.4716923_2796.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Adrian Smith_0.4716923_2796.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e56f67cb0cb5cd731da4fd64e68c6408786545f4 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Adrian Smith_0.4716923_2796.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c9ac5abacca1010eca85a8dbabd573b54e3cd8939c501d9b55be1ddfcc2ef6cc +size 14620 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Agnes Cecile_0.6192814_1591.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Agnes Cecile_0.6192814_1591.jpg new file mode 100644 index 0000000000000000000000000000000000000000..792c3ba128923a1a74b6378f38bb5e0364cbc1b9 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Agnes Cecile_0.6192814_1591.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b63e9d8b892d3f1dda46537b3dd6b3422a877e7a0c909c041673ea8e9b5cf17 +size 14950 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Ahmed Yacoubi_0.544767_2321.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Ahmed Yacoubi_0.544767_2321.jpg new file mode 100644 index 0000000000000000000000000000000000000000..11ab1c3a31b4453e18fba29cc83f6a92405a07ba --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Ahmed Yacoubi_0.544767_2321.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:70d707b65d68274b9689cd320d9bced5da2f50eb3cc0a89b0f639f902a221081 +size 11309 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Ai Weiwei_0.5576034_2201.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Ai Weiwei_0.5576034_2201.jpg new file mode 100644 index 0000000000000000000000000000000000000000..dd74b01f7d2468ff9659001dd518d99e527dc3f7 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Ai Weiwei_0.5576034_2201.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21507467c01c9458903e421b92ffcd8f7d2681bd567d9fcf47d936553bdb3099 +size 21216 diff --git "a/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Aim\303\251 Barraud_0.55265915_2246.jpg" "b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Aim\303\251 Barraud_0.55265915_2246.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..cc7f215f29ca5a1725ed7ceac6c90cb75f44e944 --- /dev/null +++ "b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Aim\303\251 Barraud_0.55265915_2246.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67f0816f18fc8bc43a78fe3b0ba0dffabb50d4184d1d9015d5bed249a0f89c83 +size 16907 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Akos Major_0.7103802_0594.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Akos Major_0.7103802_0594.jpg new file mode 100644 index 0000000000000000000000000000000000000000..942b3514711d271e00efde85b95dbe31633efce9 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Akos Major_0.7103802_0594.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b4a1fa11925522a550ee56a19109039718fa9ad1f23d5dc3d5308a1c8b62f87 +size 10051 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Alan Parry_0.5694952_2097.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Alan Parry_0.5694952_2097.jpg new file mode 100644 index 0000000000000000000000000000000000000000..05a53196a1d7fef5bca06058f016a2540eff5dfe --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Alan Parry_0.5694952_2097.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ec1e8bdfe34b51175170f4308c897d926340bd5e3ec509fc1c8df3f69ec2140 +size 10470 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Alasdair McLellan_0.6898454_0803.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Alasdair McLellan_0.6898454_0803.jpg new file mode 100644 index 0000000000000000000000000000000000000000..36bac5d68f59874fc5e8ef9402f1edd8f50535fb --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Alasdair McLellan_0.6898454_0803.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:99df9a489a6865417c9e1797db5544ca1faf6c91a222c6560bdd18d554136b55 +size 13060 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Albert Welti_0.5425134_2345.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Albert Welti_0.5425134_2345.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3f7e7d92d1e6f9d2440e694afdfb9d9d4ad364df --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Albert Welti_0.5425134_2345.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e075ffde9d4ed2e4b81ef0afd98392b5882a2cb0f0230bf2d9eb37cead96ce9f +size 12176 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Alec Soth_0.5597321_0880.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Alec Soth_0.5597321_0880.jpg new file mode 100644 index 0000000000000000000000000000000000000000..788ca4548b9f06d952f2fcb66d5cc67d07756e12 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Alec Soth_0.5597321_0880.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5ba1a2b33e33bae5f32da181597c6a11a95e9c5fe5233237537939be0694c0d +size 12011 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Alejandro Jodorowsky_0.5429065_2337.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Alejandro Jodorowsky_0.5429065_2337.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8f2271901d813bcf30a3083444f1c119f621e869 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Alejandro Jodorowsky_0.5429065_2337.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:27a9026593c41021dd070dc37b9f76bd6b1e2e0710e7844cd4ae9ca778ef8581 +size 19477 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Alessio Albi_0.6752633_0970.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Alessio Albi_0.6752633_0970.jpg new file mode 100644 index 0000000000000000000000000000000000000000..297d39c3804d8794b62acf71891a2656385b7acb --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Alessio Albi_0.6752633_0970.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a8d1dbe140985bb2f73f373d266f7e6516cd6c56fafbd83ff19f17888c39a23 +size 8440 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Alex Andreev_0.6442978_0417.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Alex Andreev_0.6442978_0417.jpg new file mode 100644 index 0000000000000000000000000000000000000000..867917f98511fb43248796023c73ee48580d2726 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Alex Andreev_0.6442978_0417.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c4c4d70ef4a532cf6dfb8865451d06de0ee1db2c2ff7d8d252cd2a9c1642e55f +size 9961 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Alex Gross_0.60837066_1696.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Alex Gross_0.60837066_1696.jpg new file mode 100644 index 0000000000000000000000000000000000000000..834df18992b41e31cdcf8be66f94aa5a0660ad02 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Alex Gross_0.60837066_1696.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:43c9d977b6e154c0f4d6c8f9bae2f2384b19a051cf833fcbc449ade94b2af95e +size 15561 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Alex Howitt_0.52858865_1052.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Alex Howitt_0.52858865_1052.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f0020c5682361ebd734bc6ab097a9997e0558aea --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Alex Howitt_0.52858865_1052.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b67a367d446cbe162348e20e3eb03848a058a171979077f6aa075f2a0b7cbbb +size 9169 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Alex Russell Flint_0.5900352_1879.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Alex Russell Flint_0.5900352_1879.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c5f854428dd6ff3c5b5deb3b8e4b599f83650149 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Alex Russell Flint_0.5900352_1879.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a0c4d489ea5bba6ac6cedfb7d6a71c409026dad7724fcb28d8711020478813f +size 10193 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Alex Timmermans_0.64443207_0223.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Alex Timmermans_0.64443207_0223.jpg new file mode 100644 index 0000000000000000000000000000000000000000..416d675d4c6cf460ff4f8b69218cefae826b05a8 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Alex Timmermans_0.64443207_0223.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a99554382a257280edc120e2e24b3d1329ff4e92b031f9cfb4a30dc841d2470 +size 10931 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Alex Toth_0.6305541_1477.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Alex Toth_0.6305541_1477.jpg new file mode 100644 index 0000000000000000000000000000000000000000..80cbdc7c77e35c8b73218df6bd413565592dcc6e --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Alex Toth_0.6305541_1477.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9301c34b4133ec88e403992b77d0524fcd8dafb452a149abd1afae40f0a8c455 +size 27582 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Alexander Runciman_0.5944449_1828.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Alexander Runciman_0.5944449_1828.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b2491009a7d8e66e953f9c3f5200e2371764b95f --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Alexander Runciman_0.5944449_1828.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5acd1f360ad5a412e90755aec927e2b2b124a2cb15300e0a30bf5302e60dafe3 +size 14184 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Alfred East_0.5296565_2441.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Alfred East_0.5296565_2441.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b18f1210b6e3b10a28b6bfec6b15f9fc8736d9ec --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Alfred East_0.5296565_2441.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df3720da38c41c7ddc106aa1cb022ec9c2673bd29dfa9687255488362796182c +size 13652 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Alfred Janes_0.5264481_2465.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Alfred Janes_0.5264481_2465.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7ba4d6ca50e953b697f854f15c1994e1fef9fa2d --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Alfred Janes_0.5264481_2465.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:90ae9abc136c2f2c27f62311f40ac078894d72ea316358991b5d81fd04f81dfb +size 13956 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Alfredo Jaar_0.6952965_0740.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Alfredo Jaar_0.6952965_0740.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6480ffd50261a135487b5036d5fc029289066234 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Alfredo Jaar_0.6952965_0740.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4bf2d6b0a89f2ac200f01c6bd89fb7a67cbb1dacef0256119f9b35f5d9bbabd7 +size 14621 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Alice Prin_0.54435575_2323.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Alice Prin_0.54435575_2323.jpg new file mode 100644 index 0000000000000000000000000000000000000000..08d26ee2f6dc93141ff34a3bccb4af4782aaf1d1 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Alice Prin_0.54435575_2323.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b4ce3bad05c1e1329acccb4c22577cc326906f9311e81ddb2a8d435e456139a +size 15405 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Alison Kinnaird_0.6306353_1476.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Alison Kinnaird_0.6306353_1476.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5c2ee6584edaa48fb974d6884dfb5fe590eb9696 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Alison Kinnaird_0.6306353_1476.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28db65e997625eacae4f7f5767e2a94a66fe909bcbe9ff19cc1abb82928d3954 +size 14546 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Aliza Razell_0.5863178_1333.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Aliza Razell_0.5863178_1333.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3d5c69ba68a396a31add6379431f8fa867c05bef --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Aliza Razell_0.5863178_1333.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f811eee99cd012cc2e4039bad192bff055f95e7a0b39d091cbe647da8e43bf3 +size 10849 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Allie Brosh_0.6042061_1735.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Allie Brosh_0.6042061_1735.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5246b029ab327bcd561a9f8a8acc8ea428665bde --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Allie Brosh_0.6042061_1735.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:edca09de4a2435b3a7c65ee8fb268a9f682a0778ef74de4d0f6e10860b01940c +size 22196 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Allison Bechdel_0.58383805_1948.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Allison Bechdel_0.58383805_1948.jpg new file mode 100644 index 0000000000000000000000000000000000000000..61aa11cab7b15594937ceaba83340a1ce1abd76a --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Allison Bechdel_0.58383805_1948.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85644079d3b19ebcd57082131b2197afe09561aac4ed9fb0c70bdb9ac6c89187 +size 26674 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Alson S. Clark_0.5278568_2453.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Alson S. Clark_0.5278568_2453.jpg new file mode 100644 index 0000000000000000000000000000000000000000..12225a6e94d038c3fe8efb778d89362dbaa668b3 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Alson S. Clark_0.5278568_2453.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f4f6170e06e781e904af70ad2aad4f8b0aa58529f960ffe8eb09d10816756267 +size 14798 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Alvar Aalto_0.61122143_1665.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Alvar Aalto_0.61122143_1665.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1032a9e2f5318636bb49c7160ed12c5bd87fbab8 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Alvar Aalto_0.61122143_1665.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9721dd229da41e5ac4a285ab5ee343d63f3a9476d850644fb398b151d4be7226 +size 10673 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Alvaro Siza_0.58406967_1941.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Alvaro Siza_0.58406967_1941.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6d29a6573ad6ce6e777f46511723f65d712de79f --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Alvaro Siza_0.58406967_1941.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c58c855a7f9a03019263dc80f3afecf8812d08d595e735d511bd675612f254d +size 9801 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Amalia Lindegren_0.5471987_2303.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Amalia Lindegren_0.5471987_2303.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fa22eb9ef81d6be0940d6cb0a86780cedb2cf568 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Amalia Lindegren_0.5471987_2303.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e5bd906b2b74290cebece318c9b3fbff4437de8288db7cf0e8ca61d572e4acc2 +size 14406 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Amandine Van Ray_0.6174208_1453.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Amandine Van Ray_0.6174208_1453.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1ba199b69435a6d5caaf72c2bebf16726c787604 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Amandine Van Ray_0.6174208_1453.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a23be3bac83f72a85fe1b6b0d8049d1223654bac470fab79acd3c895c0494f4f +size 11306 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Ambrosius Bosschaert_0.67364097_0993.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Ambrosius Bosschaert_0.67364097_0993.jpg new file mode 100644 index 0000000000000000000000000000000000000000..572637d9506431b1c6df83611f807687aadc7f39 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Ambrosius Bosschaert_0.67364097_0993.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:458ddd709a48577958192adafdfb2ad5dd1ad1f78eee63d5d8e79f53256bbcd9 +size 17009 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Amy Judd_0.57142305_2083.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Amy Judd_0.57142305_2083.jpg new file mode 100644 index 0000000000000000000000000000000000000000..71123385a66a445be0308aa7e10aba2dbb44ae1a --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Amy Judd_0.57142305_2083.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f161ec54c472aba27dce855c14885d34bc3a088ce7123922b8394b63e39e26e8 +size 8184 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Anato Finnstark_0.6744919_0980.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Anato Finnstark_0.6744919_0980.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0b90640131625c4099189f97e1b328d54ab6d9f2 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Anato Finnstark_0.6744919_0980.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c6dcb02742ef21a9bd9c36a29a080176f001c71ffe293777bfb9c63d36c7d871 +size 13232 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Andre De Dienes_0.5683014_0291.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Andre De Dienes_0.5683014_0291.jpg new file mode 100644 index 0000000000000000000000000000000000000000..172ab9cf8085e9004f7bec2859ba48cbb78ece09 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Andre De Dienes_0.5683014_0291.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:36c3194c343e03c8cfbe9a4e14b115f464c80ceaa70814066402c3ddd86a31a2 +size 10655 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Andreas Gursky_0.67610145_0961.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Andreas Gursky_0.67610145_0961.jpg new file mode 100644 index 0000000000000000000000000000000000000000..07e8bba00516ff5cda29465a88e2047fc3379b87 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Andreas Gursky_0.67610145_0961.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f7ba99da6ff759159e98cf180417a69c4cb7b460b15595991b3e15527f322ba3 +size 21760 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Andrei Arinouchkine_0.52763486_2457.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Andrei Arinouchkine_0.52763486_2457.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bd649719c682071c7cfcc54441d6b7483ac79dd0 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Andrei Arinouchkine_0.52763486_2457.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd8834268fed5cf48357dedd85af19a05e4f811a30a1c493b6648596d0e3adbd +size 15801 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Andrew Robertson_0.5529603_2243.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Andrew Robertson_0.5529603_2243.jpg new file mode 100644 index 0000000000000000000000000000000000000000..837fa1bd0a73a622d84eb261f1ded18c898b76be --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Andrew Robertson_0.5529603_2243.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b37079421bfec62f724e84be0dc8ee76d60ac9231e9423dbe9b450f69a4a7d8e +size 11484 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Andrey Remnev_0.7041204_0654.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Andrey Remnev_0.7041204_0654.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c484e97caf8e5cfddc8d0014db8e05ec9eb20973 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Andrey Remnev_0.7041204_0654.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3dbf0aafee02a2f00c9643a16dc6d001bc160009c0fd16f875df8f751ef4708d +size 11483 diff --git "a/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Andr\303\251 Thomkins_0.5343785_1817.jpg" "b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Andr\303\251 Thomkins_0.5343785_1817.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..358c8b7f62aa2557ddadd1cd7bc3bc147a841786 --- /dev/null +++ "b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Andr\303\251 Thomkins_0.5343785_1817.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de2f486a37927fb19e777a62b498b63226cf862ef0385950d4365ec0280a3b8e +size 11960 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Andy Goldsworthy_0.7307565_0401.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Andy Goldsworthy_0.7307565_0401.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c3b6f08c1b01810e4c294cbdfa6e2acf1c367225 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Andy Goldsworthy_0.7307565_0401.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:323cacb5c82200533f5ad32931f7f5ae48d5352071c1db0b8b80828e58d0579a +size 15743 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Angela Barrett_0.55976534_2035.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Angela Barrett_0.55976534_2035.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c6455a4788a835f95c7c3b62d83e24c46d8d7b7e --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Angela Barrett_0.55976534_2035.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:25c71ee69947c7cf295b2f2da57f73ebe4ef447f012bbcc37d58c530c909661b +size 14731 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Angus McKie_0.61487424_1630.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Angus McKie_0.61487424_1630.jpg new file mode 100644 index 0000000000000000000000000000000000000000..68ff67fce84195635afd4690ea862983289af89b --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Angus McKie_0.61487424_1630.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:191010c7fa20c2b109a40e2357a1555f9315fbe6349fe603a808b52a83ec9592 +size 17491 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Anish Kapoor_0.6067015_1709.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Anish Kapoor_0.6067015_1709.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9f0443017393df349e14d81aad51516fc5479a25 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Anish Kapoor_0.6067015_1709.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6d399e8e0b64a79ddd4d02c6e00f9e1954adc2063146723227c8364d032a4e77 +size 14156 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Anja Millen_0.6064488_0842.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Anja Millen_0.6064488_0842.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9b55f95d19d57b864eeb1a7c5b9c58d216679635 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Anja Millen_0.6064488_0842.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e8d56d56a6905f5897842b261bfb4fbe2ffefcfc35f9f86788f532afb0adece7 +size 10151 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Anka Zhuravleva_0.5822078_1965.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Anka Zhuravleva_0.5822078_1965.jpg new file mode 100644 index 0000000000000000000000000000000000000000..04364d62b967acd6cb886e031b7fba00d77b30b0 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Anka Zhuravleva_0.5822078_1965.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2984580959a82a045d33b96291b3f8a0427974b958341bead5d17597089d6932 +size 10615 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Ann Stookey_0.54269934_2343.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Ann Stookey_0.54269934_2343.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8e94c87d52dd0b1e1b695994d46c0813ed22fc77 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Ann Stookey_0.54269934_2343.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6d8d451624b5ae2a971c83c512b135d63f1ab9bc9d63fbd64bba43b804397224 +size 20018 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Ann Thetis Blacker_0.5416629_2354.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Ann Thetis Blacker_0.5416629_2354.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5599a2e03826f30325ab3c8aa8002a2250e214ec --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Ann Thetis Blacker_0.5416629_2354.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:baf617b9fd6e6c7aedb2b20aaf62cb1ce52aa547e5b432c69bbb2bdf29114d9f +size 15252 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Anna Findlay_0.54018176_2366.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Anna Findlay_0.54018176_2366.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2f9aaa37b1725fc2dd4b18f83f8c99da4c2bd824 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Anna Findlay_0.54018176_2366.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5342e991e355454d3c17c2b9127a3439d66b0574618b08a91aae41aecd855461 +size 17452 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Anne Savage_0.5310638_2430.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Anne Savage_0.5310638_2430.jpg new file mode 100644 index 0000000000000000000000000000000000000000..704683422f5f45f947893599a0a0d5d5d9000ea5 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Anne Savage_0.5310638_2430.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:97a7e76882505e58031aed02c3626f8d670d000a7f608761860677dd38d47f95 +size 14124 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Anni Albers_0.65708244_0891.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Anni Albers_0.65708244_0891.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f2691bb5c06264cab4d8f880d47094de1599f4d5 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Anni Albers_0.65708244_0891.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cecfe07bf946c471ab3738fb50830ffe812943043b7157780e18ab42fbc21a3f +size 14610 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Anthony Gerace_0.636678_0462.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Anthony Gerace_0.636678_0462.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0c323659ecca9acc9735c8ebe366e38477f38a75 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Anthony Gerace_0.636678_0462.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec61788e4ee23c238fcd1b980b2eba46811e076cfa9948a0928a9522485501ab +size 9039 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Anton Corbijn_0.5550669_0246.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Anton Corbijn_0.5550669_0246.jpg new file mode 100644 index 0000000000000000000000000000000000000000..95e23a45c4626a229573e39e0c7c2d0f471044ed --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Anton Corbijn_0.5550669_0246.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:beac62bb10b5205f6541c814a20a0594bd8c0069efa35692cbd2e0ca688ed6d1 +size 12426 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Anton Semenov_0.6552501_1219.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Anton Semenov_0.6552501_1219.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a5e9826535498646de16d809ed2a013abc180628 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Anton Semenov_0.6552501_1219.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8c8ee44b1e2cae3443d4f583c2e0396742c1aeed1be7b693ff1e3fd0479bf8c0 +size 9430 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Antonio Galli Bibiena_0.6399247_1380.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Antonio Galli Bibiena_0.6399247_1380.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1b4217daf91ae4298a618e4505aa5b3bc00a414a --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Antonio Galli Bibiena_0.6399247_1380.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:545dfc86f4d3a840c9ea91dab03244bcc04cdfb7d739f8d2fa49558e78f10a9a +size 13087 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Antonio Mora_0.5334297_1814.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Antonio Mora_0.5334297_1814.jpg new file mode 100644 index 0000000000000000000000000000000000000000..cc779c09bbd8c69ce73e7b43b3bb157029774657 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Antonio Mora_0.5334297_1814.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e351c699b7cd510f15eef0d5891c42f7fb5fd0414695c333c628e309908eeead +size 10406 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Antony Gormley_0.54696125_2307.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Antony Gormley_0.54696125_2307.jpg new file mode 100644 index 0000000000000000000000000000000000000000..93bc945b716abe79762425dad35a01543a2d4607 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Antony Gormley_0.54696125_2307.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:09691f867da5db7541676e3d2d42f506d758a43af33e7b9a76f5198810aabaaf +size 8868 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Archibald Robertson_0.55129635_2257.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Archibald Robertson_0.55129635_2257.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c178cb5ac32c5e761d21cb1579f2c3cad5cae4fd --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Archibald Robertson_0.55129635_2257.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c460f65e95a6601079d3bccb01b6f07712cf17d356228f01fb35ddf7d2bac9d +size 11182 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Archibald Standish Hartrick_0.54850936_2287.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Archibald Standish Hartrick_0.54850936_2287.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8b7e8f6ad5b8227de06e657e2443fa4d7eac257f --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Archibald Standish Hartrick_0.54850936_2287.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff6673ae64c317563b738db0dbc5ca4f87e550600d255343e96b2c7972ea660e +size 11878 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Arkhyp Kuindzhi_0.6928072_0770.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Arkhyp Kuindzhi_0.6928072_0770.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c919303951bffa02b91c790011720becab96c095 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Arkhyp Kuindzhi_0.6928072_0770.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c3a9c11cf0878196da8bcaa9f36ae88f6cd08cc763fd82465e661bff71509be +size 9594 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Arnold Newman_0.5736342_0563.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Arnold Newman_0.5736342_0563.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d654e1d26bfb39f96b85d48268ae9a7802290d1f --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Arnold Newman_0.5736342_0563.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b04b900e4d87445a8fd14346bdd33fced377027151626c73fdea62a055568c6 +size 11980 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Art Green_0.5714495_2082.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Art Green_0.5714495_2082.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2178598a04571f68b73f0af30ed646886b84434e --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Art Green_0.5714495_2082.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67541eee91a55a6df3717217fd4ee668d78d39b167bcbc85d244d1f221cdb05d +size 12635 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Arthur Tress_0.6301861_0889.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Arthur Tress_0.6301861_0889.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e166e6fb25e1e280adacc16f5858e5d5e9d9dbbb --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Arthur Tress_0.6301861_0889.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:088e530737e3bdf716dadf606d0eeb103d5a73921f0e0df7c642515545f8e20f +size 15997 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Augustus Jansson_0.6845705_0864.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Augustus Jansson_0.6845705_0864.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6bfca544ae0f89faffb71fee32861c71acb30b33 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Augustus Jansson_0.6845705_0864.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a59884f758691c59348249d3dbc298ed83d31c3d2733fa8c678ca0b26711241d +size 7589 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Barbara Nessim_0.60589516_1498.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Barbara Nessim_0.60589516_1498.jpg new file mode 100644 index 0000000000000000000000000000000000000000..380c8b6d8f194e593d58fdb2accb46659521f611 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Barbara Nessim_0.60589516_1498.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6d8bb421a316621217ee4649ebe7bd7313210d1c351ca0b88dca2475d4d1c26 +size 17378 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Barclay Shaw_0.53689134_2169.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Barclay Shaw_0.53689134_2169.jpg new file mode 100644 index 0000000000000000000000000000000000000000..cbc4d110c5f49598d0ff7ee6e9533f09838254d9 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Barclay Shaw_0.53689134_2169.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:450f3e7e391b1a17c79f9616f77a737d35197ad8392d24600d1743b37e78af54 +size 14248 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Beatrice Huntington_0.5328165_2419.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Beatrice Huntington_0.5328165_2419.jpg new file mode 100644 index 0000000000000000000000000000000000000000..43adbcf7775c12baf1b05b022e8cfc782e7334ce --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Beatrice Huntington_0.5328165_2419.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:82e588ed742769c322ae22bd972188136b9eb3307f174099a491358180fe4268 +size 14677 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Bella Kotak_0.6409608_1372.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Bella Kotak_0.6409608_1372.jpg new file mode 100644 index 0000000000000000000000000000000000000000..872db27615d8ba3f43f330d11a3f4af561c0c519 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Bella Kotak_0.6409608_1372.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f9b10a8e67519607f438fda3ac4339721b56b1d6de43b7496696102c68b91918 +size 14547 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Ben Goossens_0.53002644_2333.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Ben Goossens_0.53002644_2333.jpg new file mode 100644 index 0000000000000000000000000000000000000000..cdedb8cbfd925b5a91b14d626aecda49a898a078 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Ben Goossens_0.53002644_2333.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:62ecd87ae58f545ea1683156e88b905fc54d202ba4b87fa1a74b23dff350847f +size 10564 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Ben Templesmith_0.5498991_1803.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Ben Templesmith_0.5498991_1803.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5ad305aa00bc4a95c87fb27fd10ea0288de9ec63 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Ben Templesmith_0.5498991_1803.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ba15618bba688026445f135308e1e821a3bf31fbf69b98897aa4ccc695e30e4 +size 16210 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Benjamin Block_0.55251944_2249.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Benjamin Block_0.55251944_2249.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e960ceed93e6324ecf269ebdbdc81f83475402ca --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Benjamin Block_0.55251944_2249.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:78e7658ca2379972e4b2764d505295f175c5d6ca91976da95cc63f2c0e54fcd7 +size 13643 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Bernard Fleetwood-Walker_0.57987773_1996.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Bernard Fleetwood-Walker_0.57987773_1996.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4a0f9f7ebe69f26c853b31a03020a704337220ee --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Bernard Fleetwood-Walker_0.57987773_1996.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f101ce915621d65847009a6b842fdd9838f8175578c3a3351f3d8ce00760302 +size 10555 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Bernard Meninsky_0.5302034_2316.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Bernard Meninsky_0.5302034_2316.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6eb8142f24923938a517d8e9da4f416cab878d3e --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Bernard Meninsky_0.5302034_2316.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c34a775b82db3f8600cd7cb33d5c5e2aa46d7e0e3be1f67a2318a1a44fc20d7c +size 12143 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Bernt Tunold_0.56383425_2151.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Bernt Tunold_0.56383425_2151.jpg new file mode 100644 index 0000000000000000000000000000000000000000..435831b64443ebcdfbbbe4e5f7128981c3ea3bfa --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Bernt Tunold_0.56383425_2151.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:94074c226147b9459ac82840b749461b991efe4619dc340aecdcb2c277642f36 +size 12839 diff --git "a/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Bertalan Sz\303\251kely_0.5548113_1927.jpg" "b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Bertalan Sz\303\251kely_0.5548113_1927.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..0e8617da57ecb545c95b0838dd6ef4c91fc31430 --- /dev/null +++ "b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Bertalan Sz\303\251kely_0.5548113_1927.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1493ce4d662496c905129e9d1f6966f43858421c274fc6d8a11c11d907d2c6cc +size 11597 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Bessie Wheeler_0.5269164_2461.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Bessie Wheeler_0.5269164_2461.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5bf5a10d61970ce559961e928acd2a06c0109bc4 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Bessie Wheeler_0.5269164_2461.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8535468de9470ffdbbb16a5fffe6e2b64bf952c779da077c4f5f067bf1601843 +size 14646 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Beth Conklin_0.6388204_1388.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Beth Conklin_0.6388204_1388.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7bde08f5895433403f0bf3a49e3e0bac4c7e59a7 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Beth Conklin_0.6388204_1388.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:572f8f837dcd1e5bdaa47eeaf14c0d71af0bc76e65031a06fa64936f5061252e +size 13013 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Betty Merken_0.56281745_2161.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Betty Merken_0.56281745_2161.jpg new file mode 100644 index 0000000000000000000000000000000000000000..aa0710fe30b6e47bba9965bd914064df1c004ece --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Betty Merken_0.56281745_2161.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f2cdad99d938d29e145c5e71186b315a2e64ee89469412c535f1ea769bdd16b +size 18451 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Bill Henson_0.5394536_1395.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Bill Henson_0.5394536_1395.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a0550a7b412524a6b6e99d5d4c294d48de5e08ea --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Bill Henson_0.5394536_1395.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:052d5075a5a8c956b48e3c392a1f2864c41977b4969332d1804bc39043d8d8de +size 9514 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Bill Sienkiewicz_0.6125557_1535.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Bill Sienkiewicz_0.6125557_1535.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bc698fc55085654e6e45d30f7aa68d2a06581e94 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Bill Sienkiewicz_0.6125557_1535.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4540b2d7500cd50c0be911d522e873bc74be3dc05040a8b8f8a7c0a6b02b60c2 +size 24670 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Bill Viola_0.62409425_1539.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Bill Viola_0.62409425_1539.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a39bc209914db5183ad23c3707df53be87be6dff --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Bill Viola_0.62409425_1539.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8dcc2a2cedd2bbb3640e16cd21642bd7b3ba1f8ba8bd0a5093ed3a7a50b52940 +size 13169 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Bill Ward_0.61953044_1588.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Bill Ward_0.61953044_1588.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3aed49b0971e510d4ee6ba6dd3a6da403ef82572 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Bill Ward_0.61953044_1588.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be95d45c3c52b5d1f746a846d4fc483eaae0d611234fe0a2e02b5bf77246769a +size 19311 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Bill Watterson_0.5542879_2234.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Bill Watterson_0.5542879_2234.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c366c7fda02e03ade0363e127e01d2e813e459c0 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Bill Watterson_0.5542879_2234.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b7ea12314eac86f684ba6e25d7cce6305fa21c5724808aa0107b3d1a65cf25f +size 22637 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Billie Waters_0.65684533_1202.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Billie Waters_0.65684533_1202.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8e0434fcac5ed7c7c78649c0e533870df4db3538 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Billie Waters_0.65684533_1202.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a25c26914d93fc2f92f2d152cbe2fa3a826a12d7a62a1ebe9a95303259d84d8 +size 14731 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Bjarke Ingels_0.68933153_0810.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Bjarke Ingels_0.68933153_0810.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a29deaa8f811e40a9f6312b78ac7f87a02aa9dbb --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Bjarke Ingels_0.68933153_0810.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b7a9211efb8f461d57769a96a29e569a2b51f225cfe1d1334505a2e19e3c7f39 +size 16438 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Bob Eggleton_0.63277495_1454.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Bob Eggleton_0.63277495_1454.jpg new file mode 100644 index 0000000000000000000000000000000000000000..25f18193d7308dc07e7707e45e9cc96d2ca5d8d8 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Bob Eggleton_0.63277495_1454.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:34c4bc5ae88796585c3a1110315ad92cf62ef4c75a30edd1ff1e83953f92f6cd +size 12609 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Bob Ringwood_0.5935273_1842.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Bob Ringwood_0.5935273_1842.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e5a68861c67a5ef5b65baad66d64d5213d2464f3 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Bob Ringwood_0.5935273_1842.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0eb732267a8ae1bfd9bc98ef264c4993499df8af442ed55fd60df369df3c73e +size 14842 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Bordalo II_0.7467364_0307.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Bordalo II_0.7467364_0307.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3b6d401cc0490f51f733f06a4a1fecabfa46d20b --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Bordalo II_0.7467364_0307.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:51753dbf0abe0dfd7384bbdd7ee64f7b3dc45acf951110fb6b3ec2bc758c52f2 +size 21421 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Boris Groh_0.5888809_1891.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Boris Groh_0.5888809_1891.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d0f5b46188068707bce8b9500b4580af37d27146 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Boris Groh_0.5888809_1891.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e3092a47d8f7f56562a502796b98e942522f1aa2097ff0cef6919c0298de1a50 +size 13594 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Brandon Woelfel_0.6727086_0596.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Brandon Woelfel_0.6727086_0596.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5919c38648467b596bfad969836d16e4884f3ddb --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Brandon Woelfel_0.6727086_0596.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e7a5fcd4762fb4258bf0003e5c08b737f409af8a492e5f064c5d7858c93f51a3 +size 11825 diff --git "a/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Brassa\303\257_0.6361966_0332.jpg" "b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Brassa\303\257_0.6361966_0332.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..737af1e31a1fc303bc9764ca18d48f928819a88f --- /dev/null +++ "b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Brassa\303\257_0.6361966_0332.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c9882793d1e5e75c4ed74ac7b0a66447bbabfafa3dc9b71169a83e7a96329a9d +size 18215 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Brian Mashburn_0.63395154_0697.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Brian Mashburn_0.63395154_0697.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fd36756e2d2bff6081b5e7b439425e48c288c3c6 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Brian Mashburn_0.63395154_0697.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d47012bf2f0b72c047f4385fd8517becad746454fbe90e1feb886951f26357f +size 11904 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Brice Marden_0.70673287_0631.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Brice Marden_0.70673287_0631.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9c071ec2abddb688cf6798285aca32251c507a78 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Brice Marden_0.70673287_0631.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e9aa3d6d2ec8b5bb70a8d488f1eeee8dc19418c57d440a21035eefc6cbe072aa +size 19010 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Brigid Derham_0.6270125_1514.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Brigid Derham_0.6270125_1514.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e65d3fb43294bf656e60526ceaafd8ee044e00da --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-high-impact/digipa-high-impact_Brigid Derham_0.6270125_1514.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c834641607affeb54f956a4d65a2029fa0aaf012c3b51f543ec3a5d612387390 +size 12262 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Adam Bruce Thomson_0.43847767_2983.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Adam Bruce Thomson_0.43847767_2983.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2827ccb996e8e99c358fcd957f256cbc3f195e71 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Adam Bruce Thomson_0.43847767_2983.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ac0f5d4fc3c9e2e7e0c2eac3c4fc0b10cf59210dc0165fab73596841f4f30ff +size 13955 diff --git "a/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Adrienn Henczn\303\251 De\303\241k_0.445518_2945.jpg" "b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Adrienn Henczn\303\251 De\303\241k_0.445518_2945.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..0ee48981ba2e28760917143549f140864cde033f --- /dev/null +++ "b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Adrienn Henczn\303\251 De\303\241k_0.445518_2945.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4042e0486f4de76846f1908d9bd8b9d6d4a25cfff22eabcb587114a2fe6f5b7d +size 11488 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Ahmed Karahisari_0.4259451_2477.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Ahmed Karahisari_0.4259451_2477.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ef6c48a9f4eaa4637d978835e14e6abbfa925184 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Ahmed Karahisari_0.4259451_2477.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c9a6f92618d1b5649ce88030a9ae32e90c014c26eed63e8f34f73517368f8c9f +size 14095 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Alan Moore_0.4573369_2886.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Alan Moore_0.4573369_2886.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8677f0f00cd9120145e50fe6b3f1a68fe41447ac --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Alan Moore_0.4573369_2886.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c27880ed11864d4dbcd7ba0652a4921aeaf83508d409fd49c765b404b61cd802 +size 24916 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Alberto Biasi_0.42917693_1090.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Alberto Biasi_0.42917693_1090.jpg new file mode 100644 index 0000000000000000000000000000000000000000..777627da6e0117aa5afbce7ee0cf821d7b6c396e --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Alberto Biasi_0.42917693_1090.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:413e5cb88653c13ee7852e64f2f798bdb66f115134d6f359a1a79ef08d27da6d +size 16270 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Aleksander Gine_0.4326849_3019.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Aleksander Gine_0.4326849_3019.jpg new file mode 100644 index 0000000000000000000000000000000000000000..460718734c517601edb4e2f55bd66e38b8112ab0 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Aleksander Gine_0.4326849_3019.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:47f031dbe41cf325e5953138b43e45dffb00c8c1cce4a664f58ed6cf6c1e4ad5 +size 10921 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Aleksander Kobzdej_0.45552525_2894.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Aleksander Kobzdej_0.45552525_2894.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7c0bb7d6cc7398de2ed1ebd84d09eb741b58b287 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Aleksander Kobzdej_0.45552525_2894.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a908bf3214748313c591cd1b23c4b60a255e97e888a076b7a48809383ab39422 +size 12920 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Alex Alemany_0.43974748_2613.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Alex Alemany_0.43974748_2613.jpg new file mode 100644 index 0000000000000000000000000000000000000000..02232a7926b45d9046911c6280f77d228c39f11e --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Alex Alemany_0.43974748_2613.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fef34d095843c09ab2cce3f90ab2b65e221e5607916c2b53718b026c2222fcb1 +size 13943 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Alex Horley-Orlandelli_0.42623433_2876.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Alex Horley-Orlandelli_0.42623433_2876.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a4bcb4139e8c8e589c189db7df71cfae572c3c11 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Alex Horley-Orlandelli_0.42623433_2876.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5aaa0e5215cf16cb09d405c80f5c587e9b772512c3a7ffa64df97500c2226acd +size 12970 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Alex Ross_0.42460668_1983.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Alex Ross_0.42460668_1983.jpg new file mode 100644 index 0000000000000000000000000000000000000000..44c9f8ddc8a43c33e3813467601770152e3e2152 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Alex Ross_0.42460668_1983.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:269a725aee75c916866e6b0c00ad6c2b8715151b3f4b55bac4ffbfcc0566d64e +size 17023 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Alex Schomburg_0.46614102_1898.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Alex Schomburg_0.46614102_1898.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b3e4a1d23974cbb9c0cfdebb2d7f55e23b0a08db --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Alex Schomburg_0.46614102_1898.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d954b956bc930ea7efab3e7db2b2981a9c59a57809f62bbd32c790c65b691c1b +size 22762 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Alexander Carse_0.46078917_2859.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Alexander Carse_0.46078917_2859.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4edb5f7711877a27f5dca81b7bdd4c4c14034cdf --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Alexander Carse_0.46078917_2859.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb9262a4e5d80adb8935a8a5240cb7c2e5ade113e2db5b086e63048441b593d7 +size 11175 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Alexander Ivanov_0.4539051_2563.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Alexander Ivanov_0.4539051_2563.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f49b9010b2c8d0347df48640da194b4aad06a10d --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Alexander Ivanov_0.4539051_2563.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a853819753b57c0436b612c4eec950cbdbe6473a3873867c626a356881d34ddb +size 14603 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Alexander Johnston_0.4326589_3020.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Alexander Johnston_0.4326589_3020.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f94e64b0c39cd59b755817e70f4d03aa30bedbd4 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Alexander Johnston_0.4326589_3020.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c2a9f0ab8fabb74a3fa04df9102922623263612d420d7471a809259bbc07823 +size 17831 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Alexander Robertson_0.4300743_3042.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Alexander Robertson_0.4300743_3042.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e701c929277fc750a6471e4447b645bbd445885e --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Alexander Robertson_0.4300743_3042.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a871415b7466ab77bcc6a96f925a8a164078f43d01c8f78dd481f9dd3c185906 +size 15054 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Alexandre Jacovleff_0.3991747_1719.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Alexandre Jacovleff_0.3991747_1719.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c04f1fbc7b49ebc3a48eb3f2f5683b5c6738462c --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Alexandre Jacovleff_0.3991747_1719.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a97f4bf49f70797c3ff8a3992eb69c1906a6c9e44d8b6248cba78ff35075770 +size 13427 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Alexey Merinov_0.4469615_2623.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Alexey Merinov_0.4469615_2623.jpg new file mode 100644 index 0000000000000000000000000000000000000000..71c3d37ed31810be2d239fcc948a2a50dc69b623 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Alexey Merinov_0.4469615_2623.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a0541999fa7a5f7ed2f0fa4ddcd60246a6e92b1ed1ab047c5bded604e2fd461 +size 12897 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Alexis Grimou_0.41958088_2517.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Alexis Grimou_0.41958088_2517.jpg new file mode 100644 index 0000000000000000000000000000000000000000..dca8ba14017f6af3efb1899770475d103d29392a --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Alexis Grimou_0.41958088_2517.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c49c02b0ab80bbda74eabef944f0a24f223af1040ab051e1d7dce668fb0e8606 +size 13686 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Alexis Simon Belle_0.3190395_1594.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Alexis Simon Belle_0.3190395_1594.jpg new file mode 100644 index 0000000000000000000000000000000000000000..27c8799b35e41d37d00f0814a324afc65fd6c13c --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Alexis Simon Belle_0.3190395_1594.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b62738996638cb8bf886807586c9d9e186de07d0cdcb035500196bd563c0c53e +size 13522 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Alfred Krupa_0.47052455_2801.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Alfred Krupa_0.47052455_2801.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a7313ab06b3750320335a151a576d07c0f322311 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Alfred Krupa_0.47052455_2801.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9029ca88878c1d342193f6938415f9039214892c1951df4259a619caa1249628 +size 13280 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Alison Watt_0.43141022_2843.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Alison Watt_0.43141022_2843.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7bd3164c93e597c145d603ef824094f37c8a84bc --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Alison Watt_0.43141022_2843.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c74a6d56ec974b1ae81efc2c16af674f3d4210cf4fb1ce2fcb203ba7cd67d75 +size 13401 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Allan Brooks_0.46882123_2807.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Allan Brooks_0.46882123_2807.jpg new file mode 100644 index 0000000000000000000000000000000000000000..dac6a978d37dc7c360bc9f42c9ff2e80d0eac951 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Allan Brooks_0.46882123_2807.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b1b3a9d4ac680aa06f54bbfc1113752516a3b7a2212ef3d3f6a5df160fa2aab +size 14981 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Allan Linder_0.46812692_2811.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Allan Linder_0.46812692_2811.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e7d99288e88b830a1510e5304dde206cbfd31002 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Allan Linder_0.46812692_2811.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f4cc714da689cd5a6dc384d48fa3aeda251b3744cd70b5a884dd0d9a5158072f +size 13608 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Allen Tupper True_0.43556124_2999.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Allen Tupper True_0.43556124_2999.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0bc8f02aa2a5d95961f9291787e4b4457924ca27 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Allen Tupper True_0.43556124_2999.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:92df53af23f4d40de8aadf48853905f182d24993f8cf4c9215543d5c856762d3 +size 18755 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Alpo Jaakola_0.44981295_2926.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Alpo Jaakola_0.44981295_2926.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e4fcf724e33da96d4045b84ef39a5b83211a3422 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Alpo Jaakola_0.44981295_2926.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d651228a4bebf590edcec9b08c08787cfe5fedf625510a95090e59589c4d7eab +size 12387 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Alton Tobey_0.4416385_2970.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Alton Tobey_0.4416385_2970.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4d7eb6c61005a1064bc3a620f8004259edbc1eb4 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Alton Tobey_0.4416385_2970.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:35b52d86e069aeeba525d2bb75a98a6f597f02036a98e8a2d1754b94d85846ef +size 12822 diff --git "a/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Amelia Pel\303\241ez_0.46764764_2816.jpg" "b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Amelia Pel\303\241ez_0.46764764_2816.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..b155af2a75d94f564dc48b14e428e37f36c10004 --- /dev/null +++ "b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Amelia Pel\303\241ez_0.46764764_2816.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac99092ed1e5db47a99c55a789cac6e61d9f3bdff5df3c862eb7d9894b3d9ff1 +size 14110 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Amiet Cuno_0.41975892_2768.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Amiet Cuno_0.41975892_2768.jpg new file mode 100644 index 0000000000000000000000000000000000000000..809c1936a9789fdce69a6538700566f219bd7a80 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Amiet Cuno_0.41975892_2768.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0423156c965e3bf1e56b5320e71e1bcf56825f8bf86c09f04e993c881d19d87a +size 12371 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Ammi Phillips_0.43095884_3033.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Ammi Phillips_0.43095884_3033.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c1553017966629e996223deade43975eb6d0f926 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Ammi Phillips_0.43095884_3033.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:70b992efbe2197ef714d7ecc6216d4e1191bb974a0682e90d160530bccd8ad3d +size 16874 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Amos Ferguson_0.4418735_2969.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Amos Ferguson_0.4418735_2969.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6e6283ba53ac14af32e1e86169814612d60f73b7 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Amos Ferguson_0.4418735_2969.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b814a334e6f349d3a3b3eec03b3ad7c8c4730ca7abdea48c60015836271379fb +size 12008 diff --git "a/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Am\303\251d\303\251e Ozenfant_0.4585215_2879.jpg" "b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Am\303\251d\303\251e Ozenfant_0.4585215_2879.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..4f988ab9df981c8a6b0a4fa7ad73fb47d3eac50a --- /dev/null +++ "b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Am\303\251d\303\251e Ozenfant_0.4585215_2879.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bdc1974e4b2ab04341bd107f20330cc5ff5e5a689c8daf1b8e688c1374ee553d +size 12253 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Andre de Krayewski_0.4628024_2844.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Andre de Krayewski_0.4628024_2844.jpg new file mode 100644 index 0000000000000000000000000000000000000000..08ea440e96bd1fcca4d787f99baa728bc30092ad --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Andre de Krayewski_0.4628024_2844.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc02e31a382afc790db1c3fea4e93df96616157943b55b53ba5b8fa7c8a7cc0b +size 10416 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Andreas Franke_0.4300047_2907.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Andreas Franke_0.4300047_2907.jpg new file mode 100644 index 0000000000000000000000000000000000000000..903f586beb6c7879bb6177fcb8274e3f9b21257c --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Andreas Franke_0.4300047_2907.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:846fd3d1d4b0be949617d8df7d665e8855d054fb92495e03b39aa8fd5dae6a31 +size 14024 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Andreas Levers_0.42125136_2095.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Andreas Levers_0.42125136_2095.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e124d6951b3b8ecc06cbbae044b25ba28d80b034 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Andreas Levers_0.42125136_2095.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:361c7746a90879432c9c7f46244236084c1ed8688787ea4489b89a8cdedcaaf9 +size 8449 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Andrei Kolkoutine_0.44328922_2958.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Andrei Kolkoutine_0.44328922_2958.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c9317d54f662ada719c663d45c09783e21850ec1 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Andrei Kolkoutine_0.44328922_2958.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ade885c1bdf066f967d47f68db5e5bb3fb33f96e82704b11d3fff19f5a9e0a66 +size 13028 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Andrew Whem_0.43512022_3004.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Andrew Whem_0.43512022_3004.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8b31f73e008f4a991324bef806681b3a8dbd15b9 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Andrew Whem_0.43512022_3004.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e9325f00df3f5f74d3236eee37413455b3f861b44a2d22e3cf7dab81290ffc3e +size 13267 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Anita Kunz_0.4356005_2997.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Anita Kunz_0.4356005_2997.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0619cd41ae38be577288bfffc6860553972fd6b0 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Anita Kunz_0.4356005_2997.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b3b15b38ac4b360625655c82a7f4e16aae71c36ca42e24413460badedf81d9b2 +size 13862 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Anja Percival_0.45039332_1877.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Anja Percival_0.45039332_1877.jpg new file mode 100644 index 0000000000000000000000000000000000000000..421b1b03bde8c66bd0570c7b7535f17e9ffdcbb0 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Anja Percival_0.45039332_1877.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e0e6ac76eb6a72ad93e8d4f579102caa9684db09dd2d12344ab67d191ced8ae +size 9664 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Anna Maria Barbara Abesch_0.4611045_2856.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Anna Maria Barbara Abesch_0.4611045_2856.jpg new file mode 100644 index 0000000000000000000000000000000000000000..daebf7af5bac43a30f92c6db2105639bb8a74342 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Anna Maria Barbara Abesch_0.4611045_2856.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86cb451835ba6f57f0c40c90c30938184a4c12d88aae021e8d35ba4b4a42739a +size 19378 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Anna and Elena Balbusso_0.59955937_1775.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Anna and Elena Balbusso_0.59955937_1775.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6a81737c1583275708d1c6aea92af7165b27ef4d --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Anna and Elena Balbusso_0.59955937_1775.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:efb85e8275b4e9d2a2413b6ff7da54a4350982d2f3f76dfa8212904b40ce3c9c +size 18433 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Anne Dunn_0.46722376_2821.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Anne Dunn_0.46722376_2821.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5bdbea98c10e3e9a90fa200243a76f9960893382 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Anne Dunn_0.46722376_2821.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf9f6dfa22b631f11a88a0486151a717fd4e2f7b945968149ba91bba20075da0 +size 17467 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Anne Geddes_0.45785287_2882.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Anne Geddes_0.45785287_2882.jpg new file mode 100644 index 0000000000000000000000000000000000000000..970db7d30de186095479aa34211b07c6194eb518 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Anne Geddes_0.45785287_2882.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4845579f67d350fd05429a30d5977a518fcee6c929d911c140ffa2ae69448e7e +size 12249 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Anne Mccaffrey_0.4719924_2794.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Anne Mccaffrey_0.4719924_2794.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a696e5c8127b9e46786f7753d85918d9b1715209 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Anne Mccaffrey_0.4719924_2794.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f25a7855243cba096aa61f152309852a31452a8237bcd1bb19b3f14233f06ba +size 20453 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Anson Maddocks_0.46539295_2833.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Anson Maddocks_0.46539295_2833.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f8a0c31772aa6886c11232ea303381c602b782ef --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Anson Maddocks_0.46539295_2833.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e139856a53c640e6205448505a3979d9314852fb8d6e24438dd13ce2bb1c5cd7 +size 14348 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Anto Carte_0.4708289_2384.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Anto Carte_0.4708289_2384.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6d02053e857c43690928f0aebb2085e9439746ff --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Anto Carte_0.4708289_2384.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f17bcaebcb09e739691b734c35e5e636b9397913c2c4952f4139679a8854811 +size 18559 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Anton Graff_0.38569996_2941.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Anton Graff_0.38569996_2941.jpg new file mode 100644 index 0000000000000000000000000000000000000000..46c6127a421364e112e4ce4fdcbe9f55d672e892 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Anton Graff_0.38569996_2941.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f2005054259d011f74cb615ea88325e9971d95c1fc8a982606026b15fed36c03 +size 15000 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Antoni Pitxot_0.40582713_2491.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Antoni Pitxot_0.40582713_2491.jpg new file mode 100644 index 0000000000000000000000000000000000000000..dc20b10821209726a4042137386332da3ae7acaf --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Antoni Pitxot_0.40582713_2491.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ee80202c105c2c6e42ec37d05322960e33e0a285d593af153da7e5489542a1a +size 12020 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Antonio Cavallucci_0.4645282_2837.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Antonio Cavallucci_0.4645282_2837.jpg new file mode 100644 index 0000000000000000000000000000000000000000..61a05a7c93b10d5109932b514b4d37741ded60f3 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Antonio Cavallucci_0.4645282_2837.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd5a54eb8520e8492056a95cd7924c0cb4c4e38e2efcce7997379edf887b0a99 +size 12746 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Antonio Donghi_0.4610982_2406.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Antonio Donghi_0.4610982_2406.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9b74d5d6718fe980f91943bab8c49b19e43119a2 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Antonio Donghi_0.4610982_2406.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f33cfe87e868f74595af209df50cfe45f1ec9dda5bef33903c1da95bd2f9551 +size 9889 diff --git "a/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Anton\303\255n Chittussi_0.431248_3032.jpg" "b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Anton\303\255n Chittussi_0.431248_3032.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..555eea9e8a05fa21334ca710ba00992f77bb32f8 --- /dev/null +++ "b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Anton\303\255n Chittussi_0.431248_3032.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d2d400e1805ef816b7c5d2e1e3f4945090f0570635e4bde518740017e05d5333 +size 11866 diff --git "a/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Ant\303\264nio Parreiras_0.45269623_2911.jpg" "b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Ant\303\264nio Parreiras_0.45269623_2911.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..8c5e96778654647d5b1ce332e7c59b7f48eaaad3 --- /dev/null +++ "b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Ant\303\264nio Parreiras_0.45269623_2911.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2073270d9d56188f1853be3a3598bb9fc4e0b036529c336aa9255c23e6a5d2ab +size 11031 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Araceli Gilbert_0.44399196_2950.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Araceli Gilbert_0.44399196_2950.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2cb9818e8c4f5ae0582e065f9ce1952dcaedcc5b --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Araceli Gilbert_0.44399196_2950.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d611f9eb52e47fdb366e96fac328a83aa3d1469d925a946563ecb3613ed3093 +size 15784 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Arent Arentsz_0.43373522_3013.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Arent Arentsz_0.43373522_3013.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e065515042950d798bd4220ecc1862472b5851d2 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Arent Arentsz_0.43373522_3013.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:70766e545550eb5441209b992c579b9ec7fe532fc7b80e095a019d7f646b0a5d +size 16318 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Arlington Nelson Lindenmuth_0.4683814_2809.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Arlington Nelson Lindenmuth_0.4683814_2809.jpg new file mode 100644 index 0000000000000000000000000000000000000000..798d72fcbae66b0d2254b7529f1741e42da685ee --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Arlington Nelson Lindenmuth_0.4683814_2809.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:17a7db45545c218341e0cd6d7c1ff2877e8403714f9f6f62f13323748b040021 +size 11342 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Armin Baumgarten_0.444061_2949.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Armin Baumgarten_0.444061_2949.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4bb3fc5dfb7ebed514869d44e2313b384c1ead5a --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Armin Baumgarten_0.444061_2949.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6089aad83213d695c7949887c224d184bf71719c1b2abf9b4a9b196e5af6a2c0 +size 11047 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Art Brenner_0.42619684_2084.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Art Brenner_0.42619684_2084.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ae5b8c710b91909c199df3c1653ce303a68a8c6d --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Art Brenner_0.42619684_2084.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afc01a720fc0dd605e7034e74680aaca3d2efa67a531d48ce03ee8ce0f023c27 +size 16564 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Arvid Nyholm_0.46697336_2823.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Arvid Nyholm_0.46697336_2823.jpg new file mode 100644 index 0000000000000000000000000000000000000000..70e2ceb4c33c15c3709ed8f127d41c65cb5f898e --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Arvid Nyholm_0.46697336_2823.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e3abac1cfdfcb35cbc98064972c17074ae3868af3f5e76c590cc216360e5b8f +size 10176 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Ashley Wood_0.4398396_2979.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Ashley Wood_0.4398396_2979.jpg new file mode 100644 index 0000000000000000000000000000000000000000..05543d9e3b5c8e0ca9bb04719f38e9797a37d9c2 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Ashley Wood_0.4398396_2979.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c9f42c58fdf70693d7760c5167d370656e0b2cc9b86c4b2b29f5c54174b9a264 +size 17919 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Auseklis Ozols_0.46569023_2830.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Auseklis Ozols_0.46569023_2830.jpg new file mode 100644 index 0000000000000000000000000000000000000000..04acb39542dd51929bae123b938e109755ebcd20 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Auseklis Ozols_0.46569023_2830.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e85fff9920c7a70a3d1747ccd571dab5542cb70d7c8114091fc9e49af3e06af +size 12292 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Aykut Aydogdu_0.43111503_2028.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Aykut Aydogdu_0.43111503_2028.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2290fe403cc9d78902bf4510d710df296e57c371 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Aykut Aydogdu_0.43111503_2028.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a71d2976bdb5e8e72a74ae46de9750bf42332be174edbfa7247999c8f26f843 +size 9796 diff --git "a/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Ayshia Ta\305\237k\304\261n_0.463412_2842.jpg" "b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Ayshia Ta\305\237k\304\261n_0.463412_2842.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..f19344ef297b4e62388cd5bd66ad6ded236609ca --- /dev/null +++ "b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Ayshia Ta\305\237k\304\261n_0.463412_2842.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f8f31ba8fcf1cb951fe8cf0a9bf20dfe36d6c0f2d9c62b496f9ec942bd6fbd3 +size 15501 diff --git "a/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Bal\303\241zs Di\303\263szegi_0.432244_3022.jpg" "b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Bal\303\241zs Di\303\263szegi_0.432244_3022.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..2a2a1043a4a9336dbcafe04e6c64eca44a3cb107 --- /dev/null +++ "b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Bal\303\241zs Di\303\263szegi_0.432244_3022.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:48f0aaa24ed36b311734f52d0664e437ae50e93b498fdd6a3b04e2060e2ff848 +size 11191 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Bauhaus_0.43454266_2570.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Bauhaus_0.43454266_2570.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a5138ed3a4d8cfcfd36baeeea2c6f3f9135eb4e1 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Bauhaus_0.43454266_2570.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:632ce0fb2423f5ee926f8f4531ca5204f33514fa2c8ef20235e46d3a48fcd8a2 +size 11057 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Bedwyr Williams_0.44616276_2940.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Bedwyr Williams_0.44616276_2940.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f82be15fb795802a77a98ee6fcc4fa0a243c189d --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Bedwyr Williams_0.44616276_2940.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33c269700ec7482ca0d7265ca7b9580e7527f531124419ff32bfb4d7a43c87c5 +size 14722 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Beeple_0.40085253_2498.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Beeple_0.40085253_2498.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9ce83bcc42b4a25c7dfa1fcaa23703cc5f57e521 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Beeple_0.40085253_2498.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4da09bb054652fb75c43a28bac4b6b9cda2eb13a3a8c17085d41e61d0d9027bc +size 10550 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Ben Thompson_0.43436068_3010.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Ben Thompson_0.43436068_3010.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9425548776f1063b3e4542eac9d6aa99a408c24b --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Ben Thompson_0.43436068_3010.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a710eb9eb71c8b9e866fb3522fce32ddd6ae75ae8429b4ca8719f23381d66a90 +size 14253 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Ben Zoeller_0.44368798_2954.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Ben Zoeller_0.44368798_2954.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f70a1eebe2da2a0a352136bafced94ca159d521f --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Ben Zoeller_0.44368798_2954.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf29ce988f66f6054f548715404f79a17c7c5f66d36b1fd3c37da67d175b1392 +size 12575 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Bernardo Daddi_0.46088326_2857.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Bernardo Daddi_0.46088326_2857.jpg new file mode 100644 index 0000000000000000000000000000000000000000..82f9ea6b0fbb78696175cdfc6fedce3971ae5a01 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Bernardo Daddi_0.46088326_2857.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8483b47d9cfd5aab9b1bd3c47ea866fd3d26162f6832c99db984083e3d4b0c5e +size 16244 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Bertil Nilsson_0.45724383_2888.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Bertil Nilsson_0.45724383_2888.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8d3cb9b5d9accb734200e0731f649334c23c2924 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Bertil Nilsson_0.45724383_2888.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5bf8fe67c54352039f9a03284aa6f2f4e77dea3d8da1804500d10cc5615a9878 +size 8563 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Bertram Brooker_0.46176457_2852.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Bertram Brooker_0.46176457_2852.jpg new file mode 100644 index 0000000000000000000000000000000000000000..47ca96724a3d9843490cbddfd7fee703e65b57a5 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Bertram Brooker_0.46176457_2852.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:68db41a9c7a2fa499bddb98099623027e82bb6d2eee95dbef99108e99ca8b7ee +size 13250 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Bess Hamiti_0.46062252_2863.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Bess Hamiti_0.46062252_2863.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fd1eec80fdcfcc3f341cc4f68dc9f527f366742f --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Bess Hamiti_0.46062252_2863.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:23b7549b5f97b873c08b1f64f8204f7187d14c4127294731dcda99186ef25a0e +size 15003 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Bholekar Srihari_0.47387534_2784.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Bholekar Srihari_0.47387534_2784.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0f91e9c259bd38e63f29062bc2e006309f483cb7 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Bholekar Srihari_0.47387534_2784.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3edff75972ecbdef2e50ad98c0a4c90c344829791222916cfdb94f6602277c8f +size 12121 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Bikash Bhattacharjee_0.45775396_2883.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Bikash Bhattacharjee_0.45775396_2883.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ac6885c5962ed381fcb8320518f549cee77fddea --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Bikash Bhattacharjee_0.45775396_2883.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc523612ccdeee437cc48939dc61df2abda5eaa36134d0521e82daa0c1a507c9 +size 12707 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Bill Durgin_0.4300932_3041.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Bill Durgin_0.4300932_3041.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7ecb1050b49eea6cc18b13faaad9a2a9d37cdcbc --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Bill Durgin_0.4300932_3041.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e6597660ad913c4b1c420428ffac1fb6317a841163ace5cc58e7a429b2046957 +size 9999 diff --git "a/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Bj\303\270rn Wiinblad_0.45934483_2875.jpg" "b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Bj\303\270rn Wiinblad_0.45934483_2875.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..5b225c3d807c3349dd1e9a3268b5c455eff36b7b --- /dev/null +++ "b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Bj\303\270rn Wiinblad_0.45934483_2875.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b8c6c044274056356988f7fd9b89ae92fa91ded12cf4a74b6b06dba854fa0b06 +size 13500 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Bohumil Kubista_0.4679809_2812.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Bohumil Kubista_0.4679809_2812.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2853b59f4583a944c5eb9a657adf7fa5c0f7ae2d --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Bohumil Kubista_0.4679809_2812.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:59deb7c6cf749e63a1b608ccacca6e27da52784385bb812baf1afa51f4463e3f +size 12637 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Brad Rigney_0.28446302_2850.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Brad Rigney_0.28446302_2850.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9b30e7765f7011d35604aa8ab11f39d93e4f50dc --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Brad Rigney_0.28446302_2850.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16171c998c2dd6ab68526abb33f6017e68f698f1fd9ca3357d659a9e62c2c480 +size 11166 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Bradley Walker Tomlin_0.47462896_2779.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Bradley Walker Tomlin_0.47462896_2779.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0e7096c90d287c83282953221cc7e7075908146c --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Bradley Walker Tomlin_0.47462896_2779.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b82921a1bd130ad134249ab2da213aff241ecd9aec406c4c2ac2840e0bb11678 +size 16652 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Breyten Breytenbach_0.4699338_2802.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Breyten Breytenbach_0.4699338_2802.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4377cd14afe3a65c899f318564e55f8aef5c7aa0 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Breyten Breytenbach_0.4699338_2802.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5db76e9f6deea93ddf80642b48294d4a16f9f30bce79a18eb7b659de9eff4017 +size 13435 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Brian Despain_0.41538632_2855.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Brian Despain_0.41538632_2855.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b52f67716c3646aa7b5fd83e15074a8f32440fc0 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Brian Despain_0.41538632_2855.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a7ac1a4136153c8eb62d1628c7aec75c11a19607d93fe532d856374ab06b9e6b +size 12167 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Brian Oldham_0.396231_1681.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Brian Oldham_0.396231_1681.jpg new file mode 100644 index 0000000000000000000000000000000000000000..92c366028b0760a96e68f7e3c11489bb539b4db4 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Brian Oldham_0.396231_1681.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:878da7cb192cd6c238dee43d0e55d4f94911fde784bd5f9e9e5629d3c1dee4f7 +size 10572 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Brothers Grimm_0.47249007_2790.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Brothers Grimm_0.47249007_2790.jpg new file mode 100644 index 0000000000000000000000000000000000000000..dbe5dd44b7ba3909aa9337416f1402ca8e7c2395 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Brothers Grimm_0.47249007_2790.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c13fbe183a22c8e1d65e4b288a860dde9f7426a34f3a71a550eb87a238d188b +size 21899 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Camilo Egas_0.4586727_2681.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Camilo Egas_0.4586727_2681.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5151e76dc66924fe1dc2bcce91f935dce032114d --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Camilo Egas_0.4586727_2681.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fcd8542508d63f46d770c147c3ea5c2c62c84708c18ba58b205227897ac4fa3d +size 13665 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Carey Morris_0.44388965_2951.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Carey Morris_0.44388965_2951.jpg new file mode 100644 index 0000000000000000000000000000000000000000..12532082fc157a155ebb8f27847eeed93e1737a2 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Carey Morris_0.44388965_2951.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a536b4d3d68e25423f82d8892b6671590311d43c9bd749070a0451b2c648f42e +size 14611 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Carl Critchlow_0.4636_2841.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Carl Critchlow_0.4636_2841.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8f93ec5517bcb08a2db444a785587da9e6d48e37 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Carl Critchlow_0.4636_2841.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b75f3b791f6d12763b74cec9949b4638916055b9e233b301dfd5e613c95c514a +size 14721 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Carl Hoppe_0.44270635_2963.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Carl Hoppe_0.44270635_2963.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5a57bf274341ef9c826105c9d0b9cf00b538c134 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Carl Hoppe_0.44270635_2963.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:91bb422e3b6ca61b682dadadfad677e4243675cc56698681f05710dd0701a906 +size 12712 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Carles Delclaux Is_0.46734855_2818.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Carles Delclaux Is_0.46734855_2818.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2a2d38f2e7196faa623dbd16aca1c3659f128ea4 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Carles Delclaux Is_0.46734855_2818.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e258b2fbe498f80f1acf67a3b10008681c55352dd2aa175f3b3af07b22b232fd +size 10893 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Carlos Berlanga_0.440354_2977.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Carlos Berlanga_0.440354_2977.jpg new file mode 100644 index 0000000000000000000000000000000000000000..792b5196148826de2b79d5820d2160afad035359 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Carlos Berlanga_0.440354_2977.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf3a013313c013c8a73fc2a613cc0d36ad6000f47c859810b8c7d2bc29ee119b +size 13354 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Carlos Saenz de Tejada_0.47332364_2360.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Carlos Saenz de Tejada_0.47332364_2360.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8f9778a8925d412bb84864709589bb345b988ae3 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Carlos Saenz de Tejada_0.47332364_2360.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:94605faad319840734816533a6a75815a0d5e2851bdd7442a594bda2992e8137 +size 10416 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Carlos Trillo Name_0.4470371_2934.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Carlos Trillo Name_0.4470371_2934.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0729b8a1c618e20f9ebc1e12ec60c3cb70337bd4 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Carlos Trillo Name_0.4470371_2934.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae704bdb0217f2f1094cc58a6562c20a5462ae8f965fdcecb259c129816f297e +size 12601 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Carmen Saldana_0.44076762_2975.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Carmen Saldana_0.44076762_2975.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ef414ab77744722535c775a55eb4501673a79110 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Carmen Saldana_0.44076762_2975.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aecfa564d2e533abe3fcd5b958fd76916b0d726dcc6012a96e247221ea542b7f +size 13515 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Caroline Gotch_0.44263047_2964.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Caroline Gotch_0.44263047_2964.jpg new file mode 100644 index 0000000000000000000000000000000000000000..360564975e80874795dae027a21dfdbb9fb0c700 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Caroline Gotch_0.44263047_2964.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4093ea497774358190f7206ea8fdc712e3a40c2d52293bbec3fee107c01323bd +size 15822 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Cecile Walton_0.46672013_2162.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Cecile Walton_0.46672013_2162.jpg new file mode 100644 index 0000000000000000000000000000000000000000..112e8afe29824a413c2c689b2277f6edd70fe2a1 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Cecile Walton_0.46672013_2162.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b0e25a6176efa83328eb9cee213c3b00b73e29c009f6410a13c718c6900d1ef +size 15131 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Cedric Peyravernay_0.4200587_2564.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Cedric Peyravernay_0.4200587_2564.jpg new file mode 100644 index 0000000000000000000000000000000000000000..208871d4271c659c42c15d9d388f821f76f0960c --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Cedric Peyravernay_0.4200587_2564.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:908707ffc3e112e4501f43a7907612118f25d52e58ae58928ddb16100524c525 +size 11208 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Cedric Seaut (Keos Masons)_0.4317356_3026.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Cedric Seaut (Keos Masons)_0.4317356_3026.jpg new file mode 100644 index 0000000000000000000000000000000000000000..eb7e59888465b93eff85b11b62f1d055c90f8dc3 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Cedric Seaut (Keos Masons)_0.4317356_3026.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c91e8a573bb54536e931a864b88cc55ba954d53315912672b404899bcb5ea7d7 +size 11590 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Cedric Seaut_0.43521535_3002.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Cedric Seaut_0.43521535_3002.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f1a0e89da07a324e10f3a3fc1193d392beeb9473 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Cedric Seaut_0.43521535_3002.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16c5f04ae835a223ee9c968487b7f431e1aee39ef50ce497ccb36177620293c1 +size 10674 diff --git "a/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Cefer\303\255 Oliv\303\251_0.46058378_2864.jpg" "b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Cefer\303\255 Oliv\303\251_0.46058378_2864.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..d3a7ebabfb7d49fb151aa55278f2f712a4a9689a --- /dev/null +++ "b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Cefer\303\255 Oliv\303\251_0.46058378_2864.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:415abb75923a139ccf7e8f7cb225185d7487fdbe3c99c159d17c14a2f591ccc0 +size 12908 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Chica Macnab_0.4365166_2990.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Chica Macnab_0.4365166_2990.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d39830322e6c5b185fabcf15e1cd3b6d5d1e969f --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Chica Macnab_0.4365166_2990.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eb800b83c25ec6522e141656a0ec2ac8cfb5d70389273b47de17eccd2f745eb0 +size 15370 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Chris LaBrooy_0.45497298_1569.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Chris LaBrooy_0.45497298_1569.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bc8ce142e3dd67ddb9c133819b602e89aec8b2e9 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Chris LaBrooy_0.45497298_1569.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d0976bac8ce88aeb2515a4cffc137b11ee8ed97597bd6b246dda814b5f26c23 +size 11031 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Chris Saunders_0.41429797_2739.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Chris Saunders_0.41429797_2739.jpg new file mode 100644 index 0000000000000000000000000000000000000000..54ead3085bab11a4e64e36837c8bf2b572005d23 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-low-impact/digipa-low-impact_Chris Saunders_0.41429797_2739.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c0ad39197f64231f0432a621747d04e0054995b6582dfb94d2c25ee9765dc2b3 +size 20515 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_A. B. Jackson_0.4883623_2697.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_A. B. Jackson_0.4883623_2697.jpg new file mode 100644 index 0000000000000000000000000000000000000000..47d46c7b1fd7754746d96ff848780d95cd0f3e1c --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_A. B. Jackson_0.4883623_2697.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e69bd3e914d17b379e160445ca606ba785ba4822ad3f9328dab4b07250e9bc8 +size 10973 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Aaron Bohrod_0.48175076_2738.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Aaron Bohrod_0.48175076_2738.jpg new file mode 100644 index 0000000000000000000000000000000000000000..504a6320eb86a32257f51a3f552a32ae0040741b --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Aaron Bohrod_0.48175076_2738.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e2fcc9d1ed412239b3645ca279496ce3f3cb782722fbac2318b46a7adef642b +size 10983 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Aaron Siskind_0.4852289_0456.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Aaron Siskind_0.4852289_0456.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b744e993cb9b3e496a850939e6c479d53e6f07ed --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Aaron Siskind_0.4852289_0456.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6dfa663db289713facf5603df70f43a596d761fad1c1c2c468cca58e49934efc +size 9032 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Abdel Hadi Al Gazzar_0.49631482_2648.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Abdel Hadi Al Gazzar_0.49631482_2648.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ed0f2a9f28a84f84b3198eb106e342d47850c5d1 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Abdel Hadi Al Gazzar_0.49631482_2648.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f01a1e9f072034e85c5ed63ac58021f9095d8c15ff513e0282b8d3f38991c47d +size 12777 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Abed Abdi_0.4948855_2653.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Abed Abdi_0.4948855_2653.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2f84fa310cd338cab72dcbbb1e95dc9ffcfe1471 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Abed Abdi_0.4948855_2653.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:03fafcb02e32b0845ecafe249779398a7d6658255e562367d6acdd4686432d3b +size 12177 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Abraham Begeyn_0.5172538_2522.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Abraham Begeyn_0.5172538_2522.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7452ef0f8d357980bb76b35cf7d3989ee9b9ded9 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Abraham Begeyn_0.5172538_2522.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba4f547e79d4cbe5989a6738cf8ad13fb542ea149b916993eb3844783fb3ae89 +size 9685 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Adam Martinakis_0.48973057_1448.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Adam Martinakis_0.48973057_1448.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3f98e29da09c780ab26dba684616bf2b4af47adf --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Adam Martinakis_0.48973057_1448.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:78f6519707e43a7da6a11bbab057c6e1afeab1ced085ab419135b5285ca48130 +size 11350 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Adonna Khare_0.4858036_2407.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Adonna Khare_0.4858036_2407.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7a038395f20c52c5d072abc5e1511ad5d3d2570b --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Adonna Khare_0.4858036_2407.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6689e240f5792e483cf8df3265358a2327f7c84a2940ada8026e7de4e8606656 +size 12978 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Adrian Paul Allinson_0.48211843_2734.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Adrian Paul Allinson_0.48211843_2734.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8b6a09a3fcce620635a784500375aec9b40715d1 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Adrian Paul Allinson_0.48211843_2734.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:46f08c821005c7db0b791c7099e2b1a0e6d0a6dc48392cd9ab565256fb5eacfb +size 12584 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Aert de Gelder_0.519166_2374.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Aert de Gelder_0.519166_2374.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1922c2cd55887f68f804e898eb3d956e9d64c8bf --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Aert de Gelder_0.519166_2374.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9120e0d5552df7ed40ba3bddefb7fdd5150caf6d60175b412a7d337859d8edda +size 10667 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Aileen Eagleton_0.49318358_2666.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Aileen Eagleton_0.49318358_2666.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c6b433ddeae3e506a788ed590d64c8af04f88e93 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Aileen Eagleton_0.49318358_2666.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e77d585eb7692fb0a0b352e82bd9a997ea851ae7e1d373117d8bcd232888fade +size 15420 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Alasdair Grant Taylor_0.47802624_2762.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Alasdair Grant Taylor_0.47802624_2762.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e9c8c757517d7dcb621d6b45b4cad1367a9af9a2 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Alasdair Grant Taylor_0.47802624_2762.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:135bda00b3080944885bd2cc3490cd52bf45a69556d569c90d96616d2b0e5b27 +size 10511 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Albert Keller_0.47825447_2760.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Albert Keller_0.47825447_2760.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bba72e0bcb7036a3973c559ee8640c2d8bd9e867 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Albert Keller_0.47825447_2760.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d111d60881ab740d5e396b33c8ff608cc762a56144dcd84d697b5e3cb55c2cce +size 11024 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Albert Tucker_0.4854299_2712.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Albert Tucker_0.4854299_2712.jpg new file mode 100644 index 0000000000000000000000000000000000000000..568fb4817edf071f2e47cab5e2a4204b07189177 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Albert Tucker_0.4854299_2712.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:65a835146020f469f2c646dcd5431f36ab1cfc71cae6c4590cacc0f1622ddd0f +size 12575 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Albert Watson_0.48901254_0153.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Albert Watson_0.48901254_0153.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d5df24fae59c8339046ab0a37d7363a90433bf09 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Albert Watson_0.48901254_0153.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a359b900a03fd57182a5d89940706b863b20af3afeba1912c998598d539b736b +size 9431 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Alberto Magnelli_0.5103212_2574.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Alberto Magnelli_0.5103212_2574.jpg new file mode 100644 index 0000000000000000000000000000000000000000..239bd106c7539abb16419d45f1bb476b7c9573de --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Alberto Magnelli_0.5103212_2574.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c618047ae3a807d261858081fb3ac02c88c92fcda1b0a0e9bd1f3f59b6428612 +size 13398 diff --git "a/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Alejandro Obreg\303\263n_0.5190562_2511.jpg" "b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Alejandro Obreg\303\263n_0.5190562_2511.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..b83097122604d41bea6eefe9e33d3576e482326b --- /dev/null +++ "b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Alejandro Obreg\303\263n_0.5190562_2511.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c2e427d6188616a59e244e2bce5412be4e221e71fb8a0d9dff01a02be2079af6 +size 13260 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Aleksander Kotsis_0.4953621_2650.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Aleksander Kotsis_0.4953621_2650.jpg new file mode 100644 index 0000000000000000000000000000000000000000..16c3b0aa49c9dfdcf1b0dbbec896aaa814099e8b --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Aleksander Kotsis_0.4953621_2650.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bbe866ee24361521a360a7673515584aab91a270870138db09ae21933b57aa39 +size 12959 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Aleksandr Gerasimov_0.48736423_2703.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Aleksandr Gerasimov_0.48736423_2703.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9e762c1891615082c3f20878975d8b3abe9c36ba --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Aleksandr Gerasimov_0.48736423_2703.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c76cf1a94ac36dcac9d9ff010ab8224108fb0e2c70ca13817423295a526dc8f +size 14327 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Alesso Baldovinetti_0.49849576_2640.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Alesso Baldovinetti_0.49849576_2640.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3828d32e994a9aa94b9c0b7792ecdef1805d57b9 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Alesso Baldovinetti_0.49849576_2640.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa37e269a3f06a542896711ae7adc52a4490c5282a0fc3b7231b2c8b6562d99e +size 13393 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Alexander Bogen_0.48421195_2716.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Alexander Bogen_0.48421195_2716.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6be81bfa14fe7800b37ac1cbb9500d2cfc6512b8 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Alexander Bogen_0.48421195_2716.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c6695174cc3ce44cecf71d478a37cf0d45e281c9e570da40e91266df38d13960 +size 16180 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Alexander Fedosav_0.48360944_2723.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Alexander Fedosav_0.48360944_2723.jpg new file mode 100644 index 0000000000000000000000000000000000000000..03f245e55b88155561753a8c687a432b92074b5b --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Alexander Fedosav_0.48360944_2723.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:73989c6e17e5491874f2707e959cafb603515a9657e3777f1da0998ab176f291 +size 10363 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Alexander McQueen_0.5101986_2576.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Alexander McQueen_0.5101986_2576.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2d832ec24a85f333df4aa69ecdb475f0701cceb2 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Alexander McQueen_0.5101986_2576.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c83235a9a36d0ad64211abf8a9391abe4501c8ba62668410277170e0e49ca6b0 +size 18982 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Alexander Sharpe Ross_0.49519226_2651.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Alexander Sharpe Ross_0.49519226_2651.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f8b8de125c6288df0e834dfb55bceccd5345a7ab --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Alexander Sharpe Ross_0.49519226_2651.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b486692817a0ff7777db7c642b24fcf44f201524228526e6429e8e84d355b9bc +size 9775 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Alexei Harlamoff_0.48255378_2730.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Alexei Harlamoff_0.48255378_2730.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ea28cae0a095cf76fd2eeaf54e395511c9bec5f2 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Alexei Harlamoff_0.48255378_2730.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:903568fe118809a9d56d6cc3f97b77defcf331a26eef8fcf32fc51555d49c5d6 +size 11695 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Alfons von Czibulka_0.4801954_2744.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Alfons von Czibulka_0.4801954_2744.jpg new file mode 100644 index 0000000000000000000000000000000000000000..748fab446caede68a99229e1129bc61fb6df1474 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Alfons von Czibulka_0.4801954_2744.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:796f5730e58d44aea327f67fa9e0a76858a150288c05915a6609a5f00f62f0f3 +size 13002 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Alfred Jensen_0.49291304_2669.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Alfred Jensen_0.49291304_2669.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fdcb2a547193f547f44e43d9dde93cd89b0f0471 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Alfred Jensen_0.49291304_2669.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf4c5784944821435e2578d5e8966b5851c12ef8d69dd5b5912208802f53cb0f +size 11548 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Alfred Parsons_0.5127445_2552.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Alfred Parsons_0.5127445_2552.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0058ae6b4e704f5e631e0fb7fede80ca508149ec --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Alfred Parsons_0.5127445_2552.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f8a43a1ceb99b09242b59864425ed4144c11b57e3d7758eed5278bccc63e21c5 +size 11553 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Alfredo Volpi_0.49367586_2663.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Alfredo Volpi_0.49367586_2663.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1a38e693e21ab111e56c2c3a69006da52212b612 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Alfredo Volpi_0.49367586_2663.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:49c7a568de6a69013908d7009e2e133d0a986e036e562636bac36c13a4ac0709 +size 12049 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Alison Debenham_0.4998683_2636.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Alison Debenham_0.4998683_2636.jpg new file mode 100644 index 0000000000000000000000000000000000000000..78e11c19c1f9a9ce074c0af242f6417846ddafe4 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Alison Debenham_0.4998683_2636.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bea85b0919388e53abb8207f0226d4745660a3f90178625e2c82f07e267592b8 +size 22806 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Allen Williams_0.47675848_2770.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Allen Williams_0.47675848_2770.jpg new file mode 100644 index 0000000000000000000000000000000000000000..cc9d26e93ed168745cf1dd02de91f6419a27ed6a --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Allen Williams_0.47675848_2770.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5186468d41d9e370e67ca1ae3862e496e9ead1ca15b090b4b11b3a4c5a27327d +size 13710 diff --git "a/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Almeida J\303\272nior_0.515856_2534.jpg" "b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Almeida J\303\272nior_0.515856_2534.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..2a1a3fe32dadb04a00720d6dbee73d701cb81ace --- /dev/null +++ "b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Almeida J\303\272nior_0.515856_2534.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:59ca3d8edfbdf229130316cd970c6a5e174fa93b2f5a56e2990d79b243ba108f +size 13993 diff --git "a/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Alonso V\303\241zquez_0.49205148_2673.jpg" "b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Alonso V\303\241zquez_0.49205148_2673.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..74573f5245f6637186e042e9554fb24bca6ff9f8 --- /dev/null +++ "b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Alonso V\303\241zquez_0.49205148_2673.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d63401203bde973a5276690f6dde2c48c82a7b89dfe485f4e5fecf50775d6fd +size 13737 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Aloysius O'Kelly_0.5102891_2575.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Aloysius O'Kelly_0.5102891_2575.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b8b993cc4e850db6033600bbd30fa50db39b46f1 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Aloysius O'Kelly_0.5102891_2575.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b07b4414374810c31aa82e35f2660aade05229b2ca988ec186c163ac40ea2e47 +size 14785 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Altoon Sultan_0.4820177_2735.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Altoon Sultan_0.4820177_2735.jpg new file mode 100644 index 0000000000000000000000000000000000000000..81ee5d70dd9fefd8bf2b49f211b2f95793afae25 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Altoon Sultan_0.4820177_2735.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0bb0141a8eec9f31334af00b6e2a0f662f0f6bcb52425374356c38c36f956410 +size 12585 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Alyssa Monks_0.50734174_2596.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Alyssa Monks_0.50734174_2596.jpg new file mode 100644 index 0000000000000000000000000000000000000000..96edfc744c408f97d0941371858d335ef564c411 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Alyssa Monks_0.50734174_2596.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:11c960bf93f877684a7504978d23137a3af76d387ec355135289ec5e7e94a322 +size 9264 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Amedee Ozenfant_0.47950014_2745.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Amedee Ozenfant_0.47950014_2745.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7ff9a4d407be5df921aa1e855fd63b1d0170174b --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Amedee Ozenfant_0.47950014_2745.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b7a6dceeba7f730d288ca3c05c1c661d33202d193cdc0bdf3aa00baa7d989ee3 +size 15538 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Americo Makk_0.5034161_2621.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Americo Makk_0.5034161_2621.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4e2895f6756f99a72fa469065e0969e93bf4984b --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Americo Makk_0.5034161_2621.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:15da3fd5335af0ac9b3c8176f170db849967695422c51c241bcc37d83264b6cd +size 11192 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Anatoly Metlan_0.48020265_2743.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Anatoly Metlan_0.48020265_2743.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c56e3fe71ac4eecf81e2d917f3d51c6d3243ced8 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Anatoly Metlan_0.48020265_2743.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:54fd86e7f7e6fba02eaec4d2b9124a1f862bb815aed451127e3df93c771fd035 +size 11839 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Ancell Stronach_0.5084514_2590.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Ancell Stronach_0.5084514_2590.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2099926f69b97a37646509044aaf4e60dba552ad --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Ancell Stronach_0.5084514_2590.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:79ceb24f728e7d39a2b73115e5664145662950945d74281b85932b967b46dc25 +size 14468 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Andre Norton_0.5007602_2628.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Andre Norton_0.5007602_2628.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8935eedc8599d50b3cc26924cfaa8f2511b755a2 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Andre Norton_0.5007602_2628.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d64bae6399a1679064b8c14284fb96cf01b682c61176150d8dff41c409fb18be +size 20337 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Andrea Kowch_0.51822996_2515.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Andrea Kowch_0.51822996_2515.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fcbc66cd8bbe9f05aece64f0f3f92474cb6401f3 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Andrea Kowch_0.51822996_2515.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ea9b4fddc267fbff82b4ddc81e3adb1950eddd6dc607f05ab25c8381ce41cdf5 +size 11925 diff --git "a/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Andr\303\251 Castro_0.4771826_2767.jpg" "b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Andr\303\251 Castro_0.4771826_2767.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..d53ce61e29980f96c395ca7819cc20b08f3a59f3 --- /dev/null +++ "b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Andr\303\251 Castro_0.4771826_2767.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5df5a906b91d541751731bc56b70c174a1e19dbef14d7784b753d072d8ce4162 +size 12971 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Aniello Falcone_0.51475304_2541.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Aniello Falcone_0.51475304_2541.jpg new file mode 100644 index 0000000000000000000000000000000000000000..12b4450030010e3ce8752f345e7d83c519ea9047 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Aniello Falcone_0.51475304_2541.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e4d058cd26606d5e68c6f83cd5159e8e08488ee0ade86f5d37708439b7608a6 +size 11059 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Anita Malfatti_0.5080986_2592.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Anita Malfatti_0.5080986_2592.jpg new file mode 100644 index 0000000000000000000000000000000000000000..544027ae8f29d04ea11336a26e73586b0334552a --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Anita Malfatti_0.5080986_2592.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18dba2c13e9ab626cb99c1f8582dfe3b489d5387b02841ccea3404af91503b44 +size 17284 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Anna Haifisch_0.47672725_2771.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Anna Haifisch_0.47672725_2771.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f4d1488b84669adbb4ba4febd532b79586b53cc8 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Anna Haifisch_0.47672725_2771.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:574dc754b6f8223b2cb71360486713590ca7ecbfdb46b7f578e9623cf3c741b6 +size 11293 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Anna Razumovskaya_0.5229187_2256.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Anna Razumovskaya_0.5229187_2256.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4c6f3861e763f3507fbe83fcd2cd137c2977d9fe --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Anna Razumovskaya_0.5229187_2256.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:32e44c40a4c20beae868b3fffb370f3445260ea79a6ebca95011854d7ac4b172 +size 13699 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Annabel Eyres_0.51136214_2565.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Annabel Eyres_0.51136214_2565.jpg new file mode 100644 index 0000000000000000000000000000000000000000..aec8fb8602b3d469b0d4f4eea9ca2bb0ca0f67fe --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Annabel Eyres_0.51136214_2565.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:508a98dabb0b6235e7c0ac475cc768a20889e9932a273e64024ac3caf174157a +size 13468 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Annabel Kidston_0.51327646_2548.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Annabel Kidston_0.51327646_2548.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7717d41cf0bb064d15ce9acd9ec2d4a7c7a9021f --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Annabel Kidston_0.51327646_2548.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2acfa3c96e0514ca939fcbaab4e7140e8f8268a9e1fe523243bf1158108b85e7 +size 18086 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Anne Rigney_0.48357943_2724.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Anne Rigney_0.48357943_2724.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e5ff4122f539ac60f97b32172586e03e0656a20d --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Anne Rigney_0.48357943_2724.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e1687b8a4febbe336b9811fbddebec793fe03273c261c5b21b82ceb6ecc0611 +size 16638 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Anne Ryan_0.48511976_2714.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Anne Ryan_0.48511976_2714.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b5bcee727f2c89e63b43b0fbecfa33b3a515af6e --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Anne Ryan_0.48511976_2714.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:61a7470ec3d6583522e5fafbf29f7cf31167803cdad5e1e5be728a95ec07c8ae +size 14384 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Anne Said_0.49473995_2655.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Anne Said_0.49473995_2655.jpg new file mode 100644 index 0000000000000000000000000000000000000000..82a00596e4ef693cdc63190c89dd171d00c793ca --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Anne Said_0.49473995_2655.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:53096edd5274ec3a2fce07e2d522b226ac26afa47f02514e3f413206a0771f7d +size 14887 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Anne Stokes_0.4786997_2753.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Anne Stokes_0.4786997_2753.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a663068efd6d8726678b6addeb6cb9b11531f649 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Anne Stokes_0.4786997_2753.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f0aa5a8a878c2b390303349b700bc07a649df3c883c851c68705c8a9a3e54339 +size 17178 diff --git "a/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Anton M\303\266ller_0.5127209_2553.jpg" "b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Anton M\303\266ller_0.5127209_2553.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..ddc74798ebbf158614c1b350e10ab256e51efc17 --- /dev/null +++ "b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Anton M\303\266ller_0.5127209_2553.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:961024136b61cf1badae3b0510d1713e6f2e0cc68a54820a5ba3729522956c0f +size 13999 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Antonio Roybal_0.4792729_2748.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Antonio Roybal_0.4792729_2748.jpg new file mode 100644 index 0000000000000000000000000000000000000000..87069a13c1cbfff363338360222415ad2de2bba7 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Antonio Roybal_0.4792729_2748.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b1751bf800c0bc293652a2f20188f60c26fc893ac0d0433d64e151699dccd069 +size 12284 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Arabella Rankin_0.50572735_2607.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Arabella Rankin_0.50572735_2607.jpg new file mode 100644 index 0000000000000000000000000000000000000000..af280d02dfd2a962e606d7b69f761a44c6fc5cdf --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Arabella Rankin_0.50572735_2607.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:56bd7dc154d510f5eabe95dd986e7ad870df592c88202871d7d2740185e360a6 +size 15554 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Aries Moross_0.4863676_2707.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Aries Moross_0.4863676_2707.jpg new file mode 100644 index 0000000000000000000000000000000000000000..52bbb376e3934f6ead75207615767a65a9c58fe3 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Aries Moross_0.4863676_2707.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bb83dd984e9d14346ed6fb778e8a7507a8fb9f162347c7793653d62bee8664b4 +size 22520 diff --git "a/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Arnold Br\303\274gger_0.5080749_2593.jpg" "b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Arnold Br\303\274gger_0.5080749_2593.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..01faf8f29ad321b4ea86840f8a083d57c3822f1a --- /dev/null +++ "b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Arnold Br\303\274gger_0.5080749_2593.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b4969d351ca38a3f7c0d47a7f81b698083522098bc0416a856c360bbf9bcdc92 +size 11984 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Aron Demetz_0.49895018_2639.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Aron Demetz_0.49895018_2639.jpg new file mode 100644 index 0000000000000000000000000000000000000000..cc11ab0ae377ea7a232f3e195dd0aecdda81c714 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Aron Demetz_0.49895018_2639.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b4db2b7b08f25d924ef03fd69be509578b87ffadfe884072bdaba4e615c0b4b +size 13407 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Avigdor Arikha_0.49384058_2661.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Avigdor Arikha_0.49384058_2661.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f2b9fd5a7b4f2db36b0cbadc408c66ea747eb260 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Avigdor Arikha_0.49384058_2661.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:70ac4e5d20d8f15301361efb78fa822c05cc4f5738e3c738b4b13f5d9711a1db +size 12124 diff --git "a/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Axel T\303\266rneman_0.49401706_2660.jpg" "b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Axel T\303\266rneman_0.49401706_2660.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..6f293338ae059f764c05d2ab4781e204b5a9caa5 --- /dev/null +++ "b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Axel T\303\266rneman_0.49401706_2660.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9bc0ef284b2fcdd7df07fe83377f01885d20ecf31c8779ca90a9a3cf8fa9b3f8 +size 11339 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Balcomb Greene_0.5162045_2530.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Balcomb Greene_0.5162045_2530.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a9c061fe9c08240d078e211ed78d9950236aa1d3 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Balcomb Greene_0.5162045_2530.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed2e533099d0b20b24ff319fe0000ebed3fba4cfbae149d86e6e99481ba569f3 +size 14668 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Barbara Greg_0.50674164_2601.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Barbara Greg_0.50674164_2601.jpg new file mode 100644 index 0000000000000000000000000000000000000000..99f9869ee5e66ff9c003079f626d0040621a715b --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Barbara Greg_0.50674164_2601.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ae7d9f74a622c2e3de8abeb340380f02be144f3b41008bbb6711b37701beeea +size 14410 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Bartolomeo Cesi_0.5136737_2546.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Bartolomeo Cesi_0.5136737_2546.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c41253479b902f40fb5482c89f4525f197c14790 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Bartolomeo Cesi_0.5136737_2546.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a8628dc9748b2dae2ee055f7aa76474809a4e319e59b1896702cefd7267e3275 +size 13507 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Basuki Abdullah_0.50613165_2604.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Basuki Abdullah_0.50613165_2604.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f01883528b32f21b161a86eef5a84639c4141f67 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Basuki Abdullah_0.50613165_2604.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a20560b58f89ffd824c9e7190b7d61ad3ef88727548de620cef75649c818753 +size 12376 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Benedetto Caliari_0.52370214_2483.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Benedetto Caliari_0.52370214_2483.jpg new file mode 100644 index 0000000000000000000000000000000000000000..654c4848e37d8bd0c11264658c9b77bfd5fdd754 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Benedetto Caliari_0.52370214_2483.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a0f1ae7e78741dba35125d900456d50c2e4ed1465648e24a0db8e40f0d495aa +size 12387 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Benoit B. Mandelbrot_0.5033001_0399.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Benoit B. Mandelbrot_0.5033001_0399.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d9329ad44d121c0085c0bfc284d91eca0e82987d --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Benoit B. Mandelbrot_0.5033001_0399.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d93fecffacf96ff11b52a9615e3fe905e0aca4073d66045616a3acbe6a09bcf2 +size 15497 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Berndnaut Smilde_0.50864_2587.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Berndnaut Smilde_0.50864_2587.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ea8107f6c243f327c9f59c054701e258f7a06628 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Berndnaut Smilde_0.50864_2587.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d4a99a98e0769837ea61363e91c1cebaba991d54b2b4631ca8ad0db73d48bc73 +size 7528 diff --git "a/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Bernie D\342\200\231Andrea_0.48813275_2698.jpg" "b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Bernie D\342\200\231Andrea_0.48813275_2698.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..f657d42ac2f856c277803f8cc7d3c75fd090e7c7 --- /dev/null +++ "b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Bernie D\342\200\231Andrea_0.48813275_2698.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b9963af1680b2d3b5e29ec4148cc5c584acd39b596f082eac3c55e151c91e30 +size 13686 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Bertalan Karlovszky_0.48338628_2725.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Bertalan Karlovszky_0.48338628_2725.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8948cd6900946ff0c65e9218dc9f133ff8381afb --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Bertalan Karlovszky_0.48338628_2725.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:305d5ef68c705f2c3820848d4cc3a296c9332a1e4012739a9f4e6eb9bfcdc206 +size 12122 diff --git "a/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Bertalan P\303\263r_0.4930132_2668.jpg" "b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Bertalan P\303\263r_0.4930132_2668.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..206691b31ff58078f6dc6b78ff43362ae3acacf4 --- /dev/null +++ "b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Bertalan P\303\263r_0.4930132_2668.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:525d5192251c755f8f00b0e6547cabe1eeed7e399d7ef64dfff9922d044c75cb +size 11516 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Bettina Heinen-Ayech_0.51334465_2547.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Bettina Heinen-Ayech_0.51334465_2547.jpg new file mode 100644 index 0000000000000000000000000000000000000000..405f253125f52b5c85751512ccac65261a49b87a --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Bettina Heinen-Ayech_0.51334465_2547.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9dff3bc987124be04cea6ea032c994eb7079619963c94ef6a9cf7341669bdfd1 +size 9021 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Bill Gekas_0.48848945_2693.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Bill Gekas_0.48848945_2693.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7088851e964c5174f8f8e4db5adc9ae49fcc071e --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Bill Gekas_0.48848945_2693.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:48236be9068542a18c8af1a6fd9250c0c4488ccb805a8d6f82d7d371d2381682 +size 16343 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Bill Lewis_0.48635158_2708.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Bill Lewis_0.48635158_2708.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d7ca61916fb8091bb5411e99c2783174f7bd83a8 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Bill Lewis_0.48635158_2708.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a27de5284763c5b2bf111655d7098472a61221497edf4eacfe69a280b35f1b1 +size 13728 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Blek Le Rat_0.49008566_2685.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Blek Le Rat_0.49008566_2685.jpg new file mode 100644 index 0000000000000000000000000000000000000000..262858b63acecc1097a824f9efcd8e624bdbc2fe --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Blek Le Rat_0.49008566_2685.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:781631a1b436a827da20753d7aaf4761658fd8030d398321cf06805f6beb4346 +size 20986 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Bo Bartlett_0.51341593_2480.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Bo Bartlett_0.51341593_2480.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7f1a35612e125f65dd23ad1a2e6ee1effd903547 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Bo Bartlett_0.51341593_2480.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cfb7479d0b43cdc8d6608ed2e122ee0246204ce53336cac99e8ddb0bb9d74c67 +size 10131 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Bouchta El Hayani_0.49455142_2657.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Bouchta El Hayani_0.49455142_2657.jpg new file mode 100644 index 0000000000000000000000000000000000000000..35e9231a109fc13927d9d2a7f29615c22a52e960 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Bouchta El Hayani_0.49455142_2657.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:07ce027566276fc2c8e73dc9f6276fa65483ee7a3aac49ab3e041e47fd8cfd10 +size 14977 diff --git "a/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Bo\305\276idar Jakac_0.4763106_2775.jpg" "b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Bo\305\276idar Jakac_0.4763106_2775.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..95a282e690f75d7bb3cd5daf28c3bf9fd0509da7 --- /dev/null +++ "b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Bo\305\276idar Jakac_0.4763106_2775.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca9e663d55c643f198142027ee271add60cc799996785d83decaf9808e01f57c +size 14053 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Brooke DiDonato_0.47680336_1699.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Brooke DiDonato_0.47680336_1699.jpg new file mode 100644 index 0000000000000000000000000000000000000000..57b8961aa1fb4b774cc9d7bdac3dca7b0eccfe95 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Brooke DiDonato_0.47680336_1699.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:98396902738929e22605260340c7b7c491da2b4c91327e1771b70ab9aae416f7 +size 9313 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Buckminster Fuller_0.51607454_2532.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Buckminster Fuller_0.51607454_2532.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ddb63bee4935ac26cc5158eab1c8cd5c1e333298 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Buckminster Fuller_0.51607454_2532.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da45d2dd172fcb271188cbce85e22839649eae4298221e6d63c9fb025b3933bc +size 17661 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Caesar Andrade Faini_0.51971483_2508.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Caesar Andrade Faini_0.51971483_2508.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9b170355a6cca70e639adf1cf1faafc0a8a2029b --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Caesar Andrade Faini_0.51971483_2508.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e0fb269773c24ec52c9f5acfb310265e4dd47ad84dda7456f4644c09647ff89 +size 13313 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Cam Sykes_0.510071_2577.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Cam Sykes_0.510071_2577.jpg new file mode 100644 index 0000000000000000000000000000000000000000..cc5bc7322525cc29d1928124e825bc43944ee31a --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Cam Sykes_0.510071_2577.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:55ed5aed39fa4072d4398d498835dc22c7e7732b8d19269400832f6a8638efc4 +size 13085 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Carl Rahl_0.5040115_2619.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Carl Rahl_0.5040115_2619.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b9f924aeb648e2b1d7dc567743568c60f6a01ada --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Carl Rahl_0.5040115_2619.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9db91a16eebcb877ddd53f5655e07ba72e4c4ee610ef8194108fc449315691c9 +size 12516 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Carl-Henning Pedersen_0.4998986_2635.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Carl-Henning Pedersen_0.4998986_2635.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0a1acb2e2c547411685d1e694fbe3b99fea92310 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Carl-Henning Pedersen_0.4998986_2635.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:92ca64d685593f9375927cf1ee7c44d9819a2da50f9b925271ded3c13c3f58a9 +size 10482 diff --git "a/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Carlos Enr\303\255quez G\303\263mez_0.49494863_2652.jpg" "b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Carlos Enr\303\255quez G\303\263mez_0.49494863_2652.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..a61420ecbfb6a69f506db7493725ec7da620d24c --- /dev/null +++ "b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Carlos Enr\303\255quez G\303\263mez_0.49494863_2652.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9a8752437363b5d41f23e0a4d1bbc68f062a9a389532cac4a7985e155b6e8b4f +size 11873 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Caroline Lucy Scott_0.49190843_2139.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Caroline Lucy Scott_0.49190843_2139.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1da8ce55c4ed861321f06b2e5a33d699ba12e01d --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Caroline Lucy Scott_0.49190843_2139.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eb7e838ae6c1838ae46798f371de863e554bf236e022e083d519324c2d97ba57 +size 14098 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Caspar Netscher_0.5019529_2624.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Caspar Netscher_0.5019529_2624.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2319ad08b9fd8d534da64b225c9b613fddba160d --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Caspar Netscher_0.5019529_2624.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0bf52daf4852da0f2c4686eb4dfd53b4d406e4614eadafe3f1926c5c81dfb9c2 +size 11400 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Celia Fiennes_0.51266706_2556.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Celia Fiennes_0.51266706_2556.jpg new file mode 100644 index 0000000000000000000000000000000000000000..cc61ecc3c80ad34a466d3267525e1854efc57d8e --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Celia Fiennes_0.51266706_2556.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:89fe95389f1d324c25de664766f21bbbde9021ae13389a02310479237b695e3a +size 11990 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Charles Mozley_0.5171356_2523.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Charles Mozley_0.5171356_2523.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0bf557850ea8cd49934154d1401459c3dce698ec --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Charles Mozley_0.5171356_2523.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa243ec5f736cba77016dc5f0ebf4ea10abd29a30b22658261f18fa4cc8d8da1 +size 12229 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Charles Schridde_0.51308405_2549.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Charles Schridde_0.51308405_2549.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ea6e9d6c42b27f17e562f6bf196a3b81438db072 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Charles Schridde_0.51308405_2549.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:677e4bee65276bd4d46e4b529e616988eb8b731fb279fb840b0eb5d5fe03c136 +size 9395 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Charles Williams_0.510406_2571.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Charles Williams_0.510406_2571.jpg new file mode 100644 index 0000000000000000000000000000000000000000..be0a5f6a7b6bb20ad8b8ce91dd24719a32c6cf3b --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Charles Williams_0.510406_2571.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d01600a52928185513d332d605158cc05650cf88049c3b0c374e57da02c08749 +size 12313 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Chen Zhen_0.5071876_2597.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Chen Zhen_0.5071876_2597.jpg new file mode 100644 index 0000000000000000000000000000000000000000..141b0337b5f83a54d514bec9f469c95272b9991b --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Chen Zhen_0.5071876_2597.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44686c903fffd973c5321214a2737ce4471c5404afed3eb73282ed1ab942a6db +size 15020 diff --git "a/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Christen K\303\270bke_0.49961317_2638.jpg" "b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Christen K\303\270bke_0.49961317_2638.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..8aa70809b4c0699e94935a411c37d0047c17ba9e --- /dev/null +++ "b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Christen K\303\270bke_0.49961317_2638.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9652eaf9f3ce07e3430b7730b4d56e845e9fdaa357e8716ed99aa8f0e8b7422f +size 11838 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Christian August Lorentzen_0.50989646_2580.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Christian August Lorentzen_0.50989646_2580.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ebce6fd9774faa4ff4f00a97f3d00d64bc2ab5ed --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Christian August Lorentzen_0.50989646_2580.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8aadb0b9a3bcfb955812ed5de4f6ba0f40a05d0913d6bcd51280aa79f86c5639 +size 10762 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Christopher Williams_0.5052288_2609.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Christopher Williams_0.5052288_2609.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f621c417636d8e0252bcf8fe18d2a3ce3f00c353 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Christopher Williams_0.5052288_2609.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f810df46e99bd0ff20d2318eebc10d49109ecc558b4ec75e6a57b95c2fcbdf79 +size 15880 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Christopher Wood_0.49360397_2487.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Christopher Wood_0.49360397_2487.jpg new file mode 100644 index 0000000000000000000000000000000000000000..98e1acec4143eb281063745d841e11840304da1a --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Christopher Wood_0.49360397_2487.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a904ce0b07c6cdfbc98319347c0bbd36e14f5a7069b79f6eb7b2ca9fc3562d99 +size 14089 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Clara Miller Burd_0.47797233_2740.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Clara Miller Burd_0.47797233_2740.jpg new file mode 100644 index 0000000000000000000000000000000000000000..35790d7e15371426052cb318243585f94bc725ff --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Clara Miller Burd_0.47797233_2740.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ca08356bedc0d59677ee025a53f058c1c5fac5347876806ea15cebb01c6305a +size 11685 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Clarice Beckett_0.487809_2699.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Clarice Beckett_0.487809_2699.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1903790bb21c47b263fb91aee99a761a113ce6ab --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Clarice Beckett_0.487809_2699.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8f7ca146688e3ac1705a685b99495cd3f0369ab489271bf4624240cbbe97d43c +size 17841 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Clovis Trouille_0.47669724_2772.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Clovis Trouille_0.47669724_2772.jpg new file mode 100644 index 0000000000000000000000000000000000000000..42fedff11185bddd3031a32a3a6012e9bfa572ed --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Clovis Trouille_0.47669724_2772.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c8a5a6fd780e61a231552969c32e3bb7dc101716c8139fd93e5be213a94452a7 +size 10220 diff --git a/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Conrad Marca-Relli_0.5148334_2412.jpg b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Conrad Marca-Relli_0.5148334_2412.jpg new file mode 100644 index 0000000000000000000000000000000000000000..19dcf94dc88da3255cfb30cd1c40f93435157ece --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/digipa-med-impact/digipa-med-impact_Conrad Marca-Relli_0.5148334_2412.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5570f3ef0e8e70232a33970f5d1f66d8b2b7c8ea371aa098433c46dee6301088 +size 13671 diff --git a/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Aguri Uchida_0.5005107_2631.jpg b/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Aguri Uchida_0.5005107_2631.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b2fee64d06508fb06383c9c4cb344de811f59175 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Aguri Uchida_0.5005107_2631.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6d67d1529a0b1dca3c33ffefb515047d7cf7875513ebba88c87cdeb5528b214b +size 18367 diff --git a/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Ai Xuan_0.43150818_3030.jpg b/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Ai Xuan_0.43150818_3030.jpg new file mode 100644 index 0000000000000000000000000000000000000000..60ed014d88e5f078fedc5c1cd8e00ec882f4c625 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Ai Xuan_0.43150818_3030.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85cd1985baa098a7d29d4e6343cf8a0e3e94a8cd7d8f548bf60622c8bd235623 +size 12628 diff --git a/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Ai Yazawa_0.55768114_2199.jpg b/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Ai Yazawa_0.55768114_2199.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b7fa37a7befc0982267d1770830bf133ecf1a583 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Ai Yazawa_0.55768114_2199.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8a4d990421ffe48752da7ce606dcb14461119270a71b4f36244129a6755d9b22 +size 25259 diff --git a/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Alice Mason_0.48188528_2736.jpg b/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Alice Mason_0.48188528_2736.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5caeaa4cf4adccf9397cddc3191efc99d6b6b49d --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Alice Mason_0.48188528_2736.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0cab68521c0e0dc99011c684cb16f4b1e4e4f3a5ad8123ea9f7982ddf694fa5e +size 20453 diff --git a/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Amanda Sage_0.37731662_2214.jpg b/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Amanda Sage_0.37731662_2214.jpg new file mode 100644 index 0000000000000000000000000000000000000000..cf4a03cc8f5f960f07a8f2fa3f4106bb9f3c0f36 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Amanda Sage_0.37731662_2214.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:610beaab6bcdcca226ab34b546b7acfa22dd55fb9d6f312268d775a8906bab50 +size 25840 diff --git a/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_An Zhengwen_0.56942475_2098.jpg b/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_An Zhengwen_0.56942475_2098.jpg new file mode 100644 index 0000000000000000000000000000000000000000..aa3f60370300072c0de5e7fbe312d3a766603052 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_An Zhengwen_0.56942475_2098.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec9d38caac0cf81eff7d311eaf2dec26db5905e04688a5459797ef348ad4fa2e +size 15290 diff --git a/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Android Jones_0.61023116_1682.jpg b/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Android Jones_0.61023116_1682.jpg new file mode 100644 index 0000000000000000000000000000000000000000..abdfd31040c28defb86369da6998094d8463d0bc --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Android Jones_0.61023116_1682.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6390e5b8295acc3e7228f0d3145effbe8e42e1ebfe8394a23479326ba5755526 +size 16753 diff --git a/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Angela Sung_0.391746_3036.jpg b/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Angela Sung_0.391746_3036.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e792166cc55d760aa17f5dadb522fc781d7aaa00 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Angela Sung_0.391746_3036.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b260f293e2d399c8cc607f409da676fcad504b4918503be6f098ae2425df872 +size 13472 diff --git a/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Ayako Rokkaku_0.61891204_1597.jpg b/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Ayako Rokkaku_0.61891204_1597.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e09157bb98ba7110e90abc14ea06fcace7322710 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Ayako Rokkaku_0.61891204_1597.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bb88e03b70ee8e46f1663086fb47807308080d47126b0d6963eabd881db36b0e +size 13073 diff --git a/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Bernat Sanjuan_0.45074993_2919.jpg b/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Bernat Sanjuan_0.45074993_2919.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1678819d89778d73bbd53dffcc01b5c3eb1f1276 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Bernat Sanjuan_0.45074993_2919.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:05a78b82cc837b1373892eac42dace7a5d990ad9f65e7c2f563f7fa5c4159e25 +size 10164 diff --git a/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Byeon Sang-byeok_0.59200096_1859.jpg b/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Byeon Sang-byeok_0.59200096_1859.jpg new file mode 100644 index 0000000000000000000000000000000000000000..364d98eb65991d49d1ff62d7eec591daa2402e77 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Byeon Sang-byeok_0.59200096_1859.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ae8407559af23a32659a0010468aa8350eb42473203ad8f2b8a2315a0db1fb1 +size 11856 diff --git a/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Byron Galvez_0.39178842_2452.jpg b/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Byron Galvez_0.39178842_2452.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9edf5030d08610b869387dfa2b737ad141522dea --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Byron Galvez_0.39178842_2452.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:50066899e7dfce3efd0979915377c2bda0243d31a354c5950ccdac2bb45497f1 +size 18059 diff --git a/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Cao Zhibai_0.47476804_2778.jpg b/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Cao Zhibai_0.47476804_2778.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a8c343557ef401329add0567d47f7ef9fc3cb7d0 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Cao Zhibai_0.47476804_2778.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c1ce99fcb2c1ba28b4a4054f54ec23531478f9797b3542c53b9b8d22ba858fe +size 14716 diff --git a/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Charles Martin_0.43582463_2995.jpg b/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Charles Martin_0.43582463_2995.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2f3f9a48b50f7b1b81fb5e3284f9c2998667cd8f --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Charles Martin_0.43582463_2995.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60670850c07ba9a2331fbc54b4bc119995c91f0477361598d5ea6c4b6008bd6d +size 13020 diff --git a/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Chen Hong_0.46516004_2834.jpg b/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Chen Hong_0.46516004_2834.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b15044f2fd0779b4fe4489ea562a28f61f843aca --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Chen Hong_0.46516004_2834.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:375c37498cf80172ad200fc65241c8ffd4085e111224db118d672911a5b937c0 +size 15460 diff --git a/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Chen Jiru_0.4553378_2896.jpg b/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Chen Jiru_0.4553378_2896.jpg new file mode 100644 index 0000000000000000000000000000000000000000..02fb5a69de320152fcb170e6dd64608ae5ea39c6 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Chen Jiru_0.4553378_2896.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e05b52f39754a772994b79820ac19454f816983efc25c2ff8afa605021127907 +size 12663 diff --git a/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Chen Lin_0.45035738_2923.jpg b/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Chen Lin_0.45035738_2923.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9cfd753bd00819ab8b8a513ab3d9b7fd0f2fff17 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Chen Lin_0.45035738_2923.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac15d6b26ab9b061f48218910777a58fb0da7d6e9f1f995598b01d57b3cc85cd +size 12282 diff --git a/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Cheng Jiasui_0.48889247_2691.jpg b/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Cheng Jiasui_0.48889247_2691.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a3fc8a31c35900c2737b8e866caa5a0175ae414c --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Cheng Jiasui_0.48889247_2691.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21b9da9069c7a77590d27548a5ee28353b01eba6b8d7d83368af14ccccf4814c +size 12089 diff --git a/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Cheng Zhengkui_0.57990086_1995.jpg b/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Cheng Zhengkui_0.57990086_1995.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e05d0678073c67fcc869dac7f036e859f715edb7 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Cheng Zhengkui_0.57990086_1995.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:140884887150c526c7966f410dab3012a9c79f42c4dcc0eb52080976d1deba06 +size 11354 diff --git a/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Ching Yeh_0.46177_2851.jpg b/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Ching Yeh_0.46177_2851.jpg new file mode 100644 index 0000000000000000000000000000000000000000..aff245276eccb79e75394316e932d4fbe80644b3 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Ching Yeh_0.46177_2851.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f3abc0b6477206adb01b8678e6697f2a2f0435f29c39fa8e1c37c21775d5df4a +size 12675 diff --git a/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Chizuko Yoshida_0.6233001_1550.jpg b/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Chizuko Yoshida_0.6233001_1550.jpg new file mode 100644 index 0000000000000000000000000000000000000000..66331d5cac096fdc057cd270b44ac3c3c48493a0 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Chizuko Yoshida_0.6233001_1550.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8475c8af0cb08cc6611df4fd9ecc107a98d355edac7bd4c841338e4a6494713d +size 16076 diff --git a/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Choi Buk_0.44892842_2930.jpg b/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Choi Buk_0.44892842_2930.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6bc47fb91c5244b63fb1023bf4c3fd7cbb00b45b --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Choi Buk_0.44892842_2930.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6261137ee0a132a14a9e14f68db6b74e18415af0e82fe839cf00d98ef3a58b58 +size 11351 diff --git a/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Cui Zizhong_0.47902682_2749.jpg b/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Cui Zizhong_0.47902682_2749.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0f342f089b4f0f08a0217e0c24d279a7ce2d92b2 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Cui Zizhong_0.47902682_2749.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c546d60abcfeca597d9fe1e44a719fbea10459ad944ac2afca77cbc807692cf2 +size 12136 diff --git a/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Dai Jin_0.4375449_2988.jpg b/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Dai Jin_0.4375449_2988.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5a91dd2da164f5d6ac6efd87ff04c936771f122e --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Dai Jin_0.4375449_2988.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba97d2cba45caeedcbefc630d4ed23c13b4f4ed7e22bc44837d8c84c3cca30ba +size 17252 diff --git a/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Dain Yoon_0.45977795_2870.jpg b/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Dain Yoon_0.45977795_2870.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2513a0b35d2bf702390e2578e04750ebcfb8fd64 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Dain Yoon_0.45977795_2870.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d3321a047b28114612d40ab05c2ad5f7e7d9b3ce37d798c8f9cde2a662cf3f1 +size 17150 diff --git a/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Dong Yuan_0.4303865_3038.jpg b/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Dong Yuan_0.4303865_3038.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8f88f11afef4f4a735cd840b0b77b1476024d975 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Dong Yuan_0.4303865_3038.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71804541059b3d2f1d4c91bc68451fb0c4e8c6be0f4e29eb3577ecfc995b77e6 +size 13345 diff --git a/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Du Qiong_0.48414314_2718.jpg b/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Du Qiong_0.48414314_2718.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0a257dce308a0604ffc887963fa8add3a673a596 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Du Qiong_0.48414314_2718.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3377d27e596f292be4025a41eccaed1cb821a2ccd005d7aeb39580f5951e0b2f +size 14521 diff --git a/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Fang Congyi_0.45240825_2913.jpg b/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Fang Congyi_0.45240825_2913.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3d7832f5e2a4611117f199794cb3c311ec3944f6 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Fang Congyi_0.45240825_2913.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a01abc86cff09b22b8bd245e7415fee14b2054fc6cd4e2f446dfba0c49ef1f3a +size 12891 diff --git a/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Fei Danxu_0.4433627_2957.jpg b/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Fei Danxu_0.4433627_2957.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2e9d955a2d6023e6f983e7e834b6dbef41c07898 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Fei Danxu_0.4433627_2957.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f27cf4a4354d219e937a87e0adf467188ca306adb0ac284d6a32a010ff078e4 +size 13267 diff --git a/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Fenghua Zhong_0.56492203_2138.jpg b/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Fenghua Zhong_0.56492203_2138.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0296f91700388c87d272d2abd363a58d0f11c12f --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Fenghua Zhong_0.56492203_2138.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aaac93e55c34b02c13c7fa81a294840176080f87969b61f6142f59cd23008e65 +size 13845 diff --git a/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Fuyuko Matsui_0.5051116_2610.jpg b/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Fuyuko Matsui_0.5051116_2610.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e67ba635f0af17812836c625dc492e1f9ddd6fb7 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Fuyuko Matsui_0.5051116_2610.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26e3280f1de08505be14b8ee6bee5527b44fb31c9b3091e8bfdd43862eb9d9cb +size 17199 diff --git a/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Gao Fenghan_0.5732926_2063.jpg b/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Gao Fenghan_0.5732926_2063.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e0e3829bcb5191bf2c9ea171955794e66dcfe33f --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Gao Fenghan_0.5732926_2063.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6749ca6ad4c994e4105e83d9fc67a6bee62f62ce2383eeb7b5b3846ef7e4a1cc +size 15105 diff --git a/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Gao Qipei_0.4860631_2711.jpg b/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Gao Qipei_0.4860631_2711.jpg new file mode 100644 index 0000000000000000000000000000000000000000..febd20aa67a705d1a491b04853036e983d9c7964 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Gao Qipei_0.4860631_2711.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fb92b8c4f2ecb5216a59142f1420a63d49a1ccb6628db6dc5ccc9665da748828 +size 13027 diff --git a/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Gao Xiang_0.5392419_2379.jpg b/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Gao Xiang_0.5392419_2379.jpg new file mode 100644 index 0000000000000000000000000000000000000000..869ead870997cc74c186137381b69d4cdf1a2487 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Gao Xiang_0.5392419_2379.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c0f046b8b4d642b422258ee1703c8910840e0ef1a626a0492a4176f95dc0d94a +size 8491 diff --git a/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Gu Hongzhong_0.4454906_2946.jpg b/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Gu Hongzhong_0.4454906_2946.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bc1ffff867fa8694942b72393a1cf15e6066ea76 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Gu Hongzhong_0.4454906_2946.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f1896065c529681d8e15ac4f3f3061a3682263cce8de5713724431d543f4e61 +size 12748 diff --git a/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Gu Kaizhi_0.6110798_1666.jpg b/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Gu Kaizhi_0.6110798_1666.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1454055214207a9f1b5a68ab8506921562f9770d --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Gu Kaizhi_0.6110798_1666.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:773d0af6e2ade596d961d06de011d20578c2fb0bf91d0a1d08f6f86e42bfc6cd +size 12147 diff --git a/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Guan Daosheng_0.506712_2602.jpg b/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Guan Daosheng_0.506712_2602.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e6604f4fe011182e50e00d165d5b55d41d150056 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Guan Daosheng_0.506712_2602.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e0f06df85ec53fea2d616a6c7e05b6639d724db0d304fad00373aa801a65a9d6 +size 11839 diff --git a/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Guo Pei_0.5857794_1924.jpg b/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Guo Pei_0.5857794_1924.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7bbc4a463f0dda3937852991588e3abeb8526c1f --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Guo Pei_0.5857794_1924.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:375c96e0943f476cbe856abd98643456f1b3f22f5286ca51bb7bc3b567205ad1 +size 19221 diff --git "a/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Gusukuma Seih\305\215_0.60479784_1724.jpg" "b/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Gusukuma Seih\305\215_0.60479784_1724.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..f11729cb45b954b1d9946fa12150c839672bb1ed --- /dev/null +++ "b/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Gusukuma Seih\305\215_0.60479784_1724.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b026a12879d525d54ab4565e7bb8f069f579065d47992d1639b2ed46647acf13 +size 15392 diff --git a/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Hasegawa Settan_0.5647092_2141.jpg b/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Hasegawa Settan_0.5647092_2141.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1c57735e03cc2fb1ce83b58d7098d786f73ff245 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Hasegawa Settan_0.5647092_2141.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f717f54b7323772cb3e4558777a10ca09282a5dc5f45c1864bd0d66f56a4272 +size 15083 diff --git a/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Henry Justice Ford_0.51214355_0782.jpg b/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Henry Justice Ford_0.51214355_0782.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4da9e100514f4a36082e440bc902923a1da0aced --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Henry Justice Ford_0.51214355_0782.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:22cc50fd90d4216303919754a4eda644d26c5124c9208f8e25b1402904a2b9f7 +size 18850 diff --git "a/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Hidari Jingor\305\215_0.63388014_1445.jpg" "b/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Hidari Jingor\305\215_0.63388014_1445.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..b612ad683eed331ad50d4f2296c2f8df5962001c --- /dev/null +++ "b/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Hidari Jingor\305\215_0.63388014_1445.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b0a92d5436ed353d7141d29508f256eafff0e0ce7b8a164dde83fcd7cd39d9af +size 16244 diff --git a/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Hideyuki Kikuchi_0.544193_2326.jpg b/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Hideyuki Kikuchi_0.544193_2326.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0d99a37322b71472548fed6ee375baa116c0a49c --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Hideyuki Kikuchi_0.544193_2326.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2fbc7d18fc778600380aed5b34e68d8e735c362106d702a453c45513451158a0 +size 12410 diff --git a/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Hiromitsu Takahashi_0.5805599_1989.jpg b/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Hiromitsu Takahashi_0.5805599_1989.jpg new file mode 100644 index 0000000000000000000000000000000000000000..93c1a8eba771d24873544448d538d072516f4be1 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Hiromitsu Takahashi_0.5805599_1989.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d6f6bb1b4094d78ceb7d4382abf52565b71167f5c4b4517ba7023430d020efd3 +size 15209 diff --git a/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Hiroyuki Tajima_0.5816242_1974.jpg b/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Hiroyuki Tajima_0.5816242_1974.jpg new file mode 100644 index 0000000000000000000000000000000000000000..cffc2795370db59c8964ef4174ce5408bf8631ec --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Hiroyuki Tajima_0.5816242_1974.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7d176c7559db45926ced415e7b30c3d91857ddc9a4a2338c17eccdccc315085c +size 13685 diff --git "a/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Hishida Shuns\305\215_0.751617_0277.jpg" "b/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Hishida Shuns\305\215_0.751617_0277.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..f1a9f45ebd22b32cf71507a33554908d02199cbb --- /dev/null +++ "b/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Hishida Shuns\305\215_0.751617_0277.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a3872ea20a3bef38d48eb490ee1cc5d78686f8c903a41c4cfd0ad9bc1b205ea +size 14249 diff --git a/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Hisui Sugiura_0.603034_1749.jpg b/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Hisui Sugiura_0.603034_1749.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1d906e45be91bd87e0915f037b378e6f33aea781 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Hisui Sugiura_0.603034_1749.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4953af2bbd64df14782d8d1841b60380a253a1505581f630d69eecd8d7616795 +size 13273 diff --git a/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Hu Jieqing_0.45889485_2878.jpg b/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Hu Jieqing_0.45889485_2878.jpg new file mode 100644 index 0000000000000000000000000000000000000000..48957f24fc4e4309e3cfa717757386aa912adb4c --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Hu Jieqing_0.45889485_2878.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ffb87644f89325b15fe747c488abb6ce506b090e7e56a3c1dc17c017110e49d +size 11412 diff --git a/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Hu Zaobin_0.5510481_2261.jpg b/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Hu Zaobin_0.5510481_2261.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c804763cdafaabf9a68eda6f951a435f2dcffdb1 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Hu Zaobin_0.5510481_2261.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f0a405afb2a0702fd173effa4aa54ee7ec49df1cd14104c5b8326132a95b32fb +size 13507 diff --git a/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Huang Ding_0.45233482_2914.jpg b/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Huang Ding_0.45233482_2914.jpg new file mode 100644 index 0000000000000000000000000000000000000000..71b591eae43c7b725c7b3fe07cdd83f60260cb7c --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Huang Ding_0.45233482_2914.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:424c331463db5c8860ea7c36e986b179443fcbb0bc8cb63eb54e283735ebda3d +size 12419 diff --git a/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Huang Gongwang_0.47269204_2789.jpg b/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Huang Gongwang_0.47269204_2789.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a335e187b11291fba2cb21f68884e2c1e5bc6aa0 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Huang Gongwang_0.47269204_2789.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d276c80999cbc17d0ac99e628c758b840b1da0822cbd9d10acc8dc45647cb8f8 +size 12348 diff --git a/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Huang Guangjian_0.49286693_2670.jpg b/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Huang Guangjian_0.49286693_2670.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ab72826f0c40431403372c5b1dd3b4859b5e89dd --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Huang Guangjian_0.49286693_2670.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:80713512a931eebc6f27e08ae644a9663628bc1c3d84d7dd88832740cfa6d7ee +size 13479 diff --git a/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Huang Ji_0.48611963_2709.jpg b/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Huang Ji_0.48611963_2709.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f5f2497fc75e7bd9fd7746f3ffc1b1b6b56fe3c8 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Huang Ji_0.48611963_2709.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0652d237d392d536bd256c21e2e8953385e305bf8d2bb34d2750c93ec970555 +size 11298 diff --git a/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Huang Tingjian_0.6290358_1494.jpg b/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Huang Tingjian_0.6290358_1494.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4f2d806f4bef5d989b6ad97545124a4559aed68d --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Huang Tingjian_0.6290358_1494.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86e361da285f72fc83a07f0b50b392d06f74056e9479220fcab73ef98eedcb34 +size 13397 diff --git a/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Ian Miller_0.42153555_1767.jpg b/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Ian Miller_0.42153555_1767.jpg new file mode 100644 index 0000000000000000000000000000000000000000..26d2a15bf09cec5c0b350b48bfb1106c7218a877 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Ian Miller_0.42153555_1767.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:79204c6ea1944964c1cc84e8305b2183d7c5fdeca2d8a1c6928c50f829512a1c +size 20749 diff --git a/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Inoue Naohisa_0.5809933_1981.jpg b/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Inoue Naohisa_0.5809933_1981.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b288be8f21819359ccff44204b12a61ed9008a07 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Inoue Naohisa_0.5809933_1981.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e47a75c1084bdfb5ea41bebf8694e8a3755a7b9733cb48c42033f4228832329 +size 11074 diff --git a/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Josh Kao_0.45725146_2887.jpg b/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Josh Kao_0.45725146_2887.jpg new file mode 100644 index 0000000000000000000000000000000000000000..df569e4903e9f3b08bbb8ce34f717ecbe1ffff3e --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Josh Kao_0.45725146_2887.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e1eb866ee95f2e7f206f4af20f02623d9d5add2fc1247d095b78da0fcb85011 +size 13719 diff --git a/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Naomi Okubo_0.5782754_1484.jpg b/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Naomi Okubo_0.5782754_1484.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3cf65e9b43226b0de5ac4f4cec29cc4056a1b846 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Naomi Okubo_0.5782754_1484.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:61b287ef4999618ff0b1eff4f46868cddce064f16ede8d028b8248beddb5e7af +size 21159 diff --git a/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Naoto Hattori_0.621745_1196.jpg b/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Naoto Hattori_0.621745_1196.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9ac611b8d70e0e00a174cef83bac3595667037fc --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Naoto Hattori_0.621745_1196.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a31b81a1e7451034359832fcf8e79977654d9b110850fd929c9cecd69a8292ad +size 17753 diff --git a/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Ni Chuanjing_0.46254826_2846.jpg b/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Ni Chuanjing_0.46254826_2846.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ab132221c5e3630ef6796b2c9b99d1c9ef5ddcb4 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Ni Chuanjing_0.46254826_2846.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a585dc1ec34d2d768334e076037d03407cecded60fe07ec7926b5c3ac4c28a39 +size 12819 diff --git a/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Nobuyoshi Araki_0.70108867_0677.jpg b/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Nobuyoshi Araki_0.70108867_0677.jpg new file mode 100644 index 0000000000000000000000000000000000000000..89432a86881a80b80a562257287942689d9b2ea9 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Nobuyoshi Araki_0.70108867_0677.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:546223521b122cd600c05f882f7e5fb7e392e80143097a69419d49602a2aff91 +size 11829 diff --git a/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Ogawa Kazumasa_0.61427975_1636.jpg b/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Ogawa Kazumasa_0.61427975_1636.jpg new file mode 100644 index 0000000000000000000000000000000000000000..58b7969f57b9fc8deb4d75ea6e24e2c48587d568 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Ogawa Kazumasa_0.61427975_1636.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13fb0092b721533e5ade3cfaeae02b40009e4c7a2db53fb17ec659a3c3c00d89 +size 12875 diff --git a/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Qian Xuan_0.50150526_2626.jpg b/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Qian Xuan_0.50150526_2626.jpg new file mode 100644 index 0000000000000000000000000000000000000000..17415baff8faead08f5305f20387375bc348f24e --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Qian Xuan_0.50150526_2626.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bfd6a7dfdb438f9c7a8d6665660e234ca15db5e83488b1ac0b118b786122682a +size 10413 diff --git a/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Sangyeob Park_0.49150884_2678.jpg b/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Sangyeob Park_0.49150884_2678.jpg new file mode 100644 index 0000000000000000000000000000000000000000..35c77a072d7e7d2afb85f722740e12781c97e79d --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Sangyeob Park_0.49150884_2678.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9984f75fc0cc1efb6bed26db63a78538033aaecf370508537ac8fd346478920c +size 11858 diff --git a/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Shin Jeongho_0.5092497_2585.jpg b/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Shin Jeongho_0.5092497_2585.jpg new file mode 100644 index 0000000000000000000000000000000000000000..cbd624e90682428f4c5dfb6234e94a23c45a2153 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Shin Jeongho_0.5092497_2585.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:464bb5b463658fc85578c696cbe755c26fbbad475e9c6c2d74d74313ad1b83d5 +size 13147 diff --git a/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Sou Fujimoto_0.5162528_2529.jpg b/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Sou Fujimoto_0.5162528_2529.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e1811a680d0740ec6d3258f475a96a233a2f7721 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Sou Fujimoto_0.5162528_2529.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:64151748faf4fb6eb09dae27fba43f9df4587969ff9e4c05af88ad8492663d79 +size 20224 diff --git a/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Susan Luo_0.43198025_3025.jpg b/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Susan Luo_0.43198025_3025.jpg new file mode 100644 index 0000000000000000000000000000000000000000..388683c2fe43f32d226a8ac3fce73ffb21a9ab1d --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Susan Luo_0.43198025_3025.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:55e2d5ebdeb1143ab7947b3792335dbcd5648cce8be00ffda67cc45a0622fb83 +size 11877 diff --git a/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Tadao Ando_0.57429105_2049.jpg b/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Tadao Ando_0.57429105_2049.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d3df80f4cb24d5ab6ef01df57d31f81b94287cb8 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Tadao Ando_0.57429105_2049.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:88d087fac5ef613ac157355ee4e56b599d1c0841534745487ae150155e585cda +size 11584 diff --git a/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Toshiharu Mizutani_0.48315164_2727.jpg b/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Toshiharu Mizutani_0.48315164_2727.jpg new file mode 100644 index 0000000000000000000000000000000000000000..226d18dc4fe0a22cc315269cda04d8e33bf060e3 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Toshiharu Mizutani_0.48315164_2727.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:319a67e5df569e8ede332eda3b25bfe13db6427fec602c621b2313fd01e702bb +size 14154 diff --git a/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Yasutomo Oka_0.5731342_2066.jpg b/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Yasutomo Oka_0.5731342_2066.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b27b00cc115f757e20aab6a26cb70dcea25436d7 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Yasutomo Oka_0.5731342_2066.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:815066c2815ab5e1d5c53dd9af7e981c98dbc3a08bffc257434a5991d2423c89 +size 14316 diff --git a/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Yoshitaka Amano_0.5491855_2276.jpg b/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Yoshitaka Amano_0.5491855_2276.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8ffbb8a0117514bae4fcb0633ff850bda56f4361 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Yoshitaka Amano_0.5491855_2276.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:244daa7e30c8bdc72e7dfc87d8c9efeb9e5ae08a29e8e198b8838af500cde750 +size 16941 diff --git a/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Zhang Kechun_0.6595939_1166.jpg b/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Zhang Kechun_0.6595939_1166.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8558170238d56c05e1dcb8f52a38ceb689b7288e --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_Zhang Kechun_0.6595939_1166.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b45255d9c408c1927d4b386020ee154e77639e472a87eb32b426b65b9a51db8 +size 8322 diff --git a/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_tokyogenso_0.45406622_2902.jpg b/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_tokyogenso_0.45406622_2902.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c3f7503401709539de08edd6538317ce60212c85 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/fareast/fareast_tokyogenso_0.45406622_2902.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:732596e73c219cd60a73fa45077573c71fc8d27f616a74b03ed23db5603d1bcb +size 16348 diff --git a/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_A. R. Middleton Todd_0.50988734_2442.jpg b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_A. R. Middleton Todd_0.50988734_2442.jpg new file mode 100644 index 0000000000000000000000000000000000000000..76f4e6f40b0af4b989cc00100747ee97441d2095 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_A. R. Middleton Todd_0.50988734_2442.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df4749a43e67fc0057d4c81c191c59e7c44c5501a7572fd8f28efae0ae5075f3 +size 17454 diff --git a/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_A.B. Frost_0.5375025_2391.jpg b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_A.B. Frost_0.5375025_2391.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3e72ec7b998b9d8426ae75d6987ca0acf9ec9bfa --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_A.B. Frost_0.5375025_2391.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8bbbc8a9ca362db6d6c2b54c7ceca9b841a10638068091f9fce30d2a5b5af111 +size 12533 diff --git a/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Aaron Douglas_0.6437089_1349.jpg b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Aaron Douglas_0.6437089_1349.jpg new file mode 100644 index 0000000000000000000000000000000000000000..402f46cfe9a72223b2c597c3de3bc679b8b3d2ce --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Aaron Douglas_0.6437089_1349.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aaf3a8a1f8bd1e7bd918466f24710c35995db35e141537f58dfb2b6763f6962 +size 16630 diff --git a/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Aaron Horkey_0.6676864_1069.jpg b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Aaron Horkey_0.6676864_1069.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6280ab4c58bd961b8ffad2dcd1bcc59374b86af7 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Aaron Horkey_0.6676864_1069.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5072fd76da99a564be3db1c513ac02154b95a370e242a92fcf173268339731ca +size 22632 diff --git a/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Aaron Jasinski_0.57948315_1461.jpg b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Aaron Jasinski_0.57948315_1461.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6e73ec5058835a748ecc5a4653febc37a69d9963 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Aaron Jasinski_0.57948315_1461.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b354a025396b91f9ef6692b50f305fbd715f75886a7c55f3261b1bb5c6180a92 +size 14464 diff --git a/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Abbott Fuller Graves_0.6025608_1753.jpg b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Abbott Fuller Graves_0.6025608_1753.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2c3c94be86a4a2d091aed0982f62e70ae7e1c503 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Abbott Fuller Graves_0.6025608_1753.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc1185128f17be32e9aecbd764e82422d69eaa82d338b677beaef6e80422d577 +size 12507 diff --git a/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Abbott Handerson Thayer_0.63428533_1442.jpg b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Abbott Handerson Thayer_0.63428533_1442.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e4458b93f7dd7dde7df9959091a875ad05ec3d80 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Abbott Handerson Thayer_0.63428533_1442.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8c977f4540c5106fdb3fb40a673172229d14d51154708f7fc70f9ed353e14b95 +size 9942 diff --git a/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Abraham Bloemaert_0.68036544_0905.jpg b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Abraham Bloemaert_0.68036544_0905.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8cd39b025eb2c327635b0f45d98ff026f5e24836 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Abraham Bloemaert_0.68036544_0905.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b8292d88a2fefa6e526a238c82ee3ebec7cc1079d379047f18ee1261e9d9168d +size 15614 diff --git a/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Abraham Bosschaert_0.6535562_1239.jpg b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Abraham Bosschaert_0.6535562_1239.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2038898f469d3abb70d021fad708110608c3ecea --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Abraham Bosschaert_0.6535562_1239.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e48a311529825656f353f708809b33b7fc453e0ccb2469248171bff6f2212510 +size 14786 diff --git a/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Abraham Hondius_0.574326_2048.jpg b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Abraham Hondius_0.574326_2048.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5a29ecec1f9abc20537758e8b368b6455ac20a72 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Abraham Hondius_0.574326_2048.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e46d62f55166d825cf2513ba68daa359a5df1e28b8c2517a3f0623e9f816de45 +size 16614 diff --git a/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Abraham Mignon_0.60605425_0735.jpg b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Abraham Mignon_0.60605425_0735.jpg new file mode 100644 index 0000000000000000000000000000000000000000..91e99864e5db7169059ccc515b4cc264240011ee --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Abraham Mignon_0.60605425_0735.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e809ddf731edb5072939cc3b9479d0921c2ea49ca2c851b5b3784cd23fccb82e +size 12947 diff --git a/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Abraham Pether_0.66922426_0932.jpg b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Abraham Pether_0.66922426_0932.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ec7b565bfb4f35f95ff5b466ff3226016b20297b --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Abraham Pether_0.66922426_0932.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ba54de38f6937d433d193b013152267fe78c905ecbd3b39c569f1c9cef8c59c +size 11004 diff --git a/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Abraham Storck_0.5929502_1848.jpg b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Abraham Storck_0.5929502_1848.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a9f28a71accca7ee448214b9f3c6586b659fa074 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Abraham Storck_0.5929502_1848.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e19acdd81a08de2931cc2b8bed577b9bd4706d0fc40b21503c3813eeb3fa817 +size 9803 diff --git a/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Abraham Willaerts_0.5966594_1057.jpg b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Abraham Willaerts_0.5966594_1057.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1d4099b782a2604ab11d047eeabd77e89a12e446 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Abraham Willaerts_0.5966594_1057.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:64e1e932ffe50c11334e1fa1a3e9dd075d173c1946c07ae3c304964512b6c772 +size 10238 diff --git a/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Abraham de Vries_0.5859101_1570.jpg b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Abraham de Vries_0.5859101_1570.jpg new file mode 100644 index 0000000000000000000000000000000000000000..259dba01e1e5ca0e0d566a3b14597951468d91fd --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Abraham de Vries_0.5859101_1570.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9547c985a13d6dc140da5e91052bb06e8509a896f69f6cb7fb93c2e223c059f4 +size 11204 diff --git a/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Abraham van Beijeren_0.6356113_1343.jpg b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Abraham van Beijeren_0.6356113_1343.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b9d7b2c40df71b5f4cea0c97fa44e049edc97766 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Abraham van Beijeren_0.6356113_1343.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:432cb2bfa49c4c98ac3ae6f73c4c4de034a053d716cc10a787d80a076b5be1dc +size 12546 diff --git a/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Abraham van Calraet_0.63841593_0813.jpg b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Abraham van Calraet_0.63841593_0813.jpg new file mode 100644 index 0000000000000000000000000000000000000000..336f83e5a2c61e8acfefb9caea1de9dde2ee8e47 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Abraham van Calraet_0.63841593_0813.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d303e3ce82072e1950b88b9cf159c6e97c1416967afb209430e0679ad43db123 +size 13521 diff --git a/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Abraham van den Tempel_0.66463804_0856.jpg b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Abraham van den Tempel_0.66463804_0856.jpg new file mode 100644 index 0000000000000000000000000000000000000000..673e6ca5e65e23c25439a077abe4a6b3d1cff015 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Abraham van den Tempel_0.66463804_0856.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:92798375dc8d58d9675da554fe301ae286c95abd85baa437c192e56f640d4c4b +size 11173 diff --git a/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Abram Arkhipov_0.6550962_1224.jpg b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Abram Arkhipov_0.6550962_1224.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0b93efd33036f9db07e9960fb1b8f230cc58e09a --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Abram Arkhipov_0.6550962_1224.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:017a772d08e6766475d54235f7863a274c50f3a676a663580fa2c569d3d3e9f6 +size 10377 diff --git a/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Abram Efimovich Arkhipov_0.60128385_1762.jpg b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Abram Efimovich Arkhipov_0.60128385_1762.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bf8d16ac20d20df06b1f5ab85a5deea2620d4e0e --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Abram Efimovich Arkhipov_0.60128385_1762.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4573bd78c346ad16dfc5419357f5346e59c78a1332c072629cab171a8a1a67e3 +size 11377 diff --git a/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Achille Leonardi_0.56674325_2123.jpg b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Achille Leonardi_0.56674325_2123.jpg new file mode 100644 index 0000000000000000000000000000000000000000..281bd9aa0b37c4282f7ea8fc041536022efffe30 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Achille Leonardi_0.56674325_2123.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bcb4276de0a2c850f348e615219db780d623bc81875452bda2d4b32b9ef4919c +size 11153 diff --git a/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Ada Hill Walker_0.52207166_2486.jpg b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Ada Hill Walker_0.52207166_2486.jpg new file mode 100644 index 0000000000000000000000000000000000000000..46c96fbf6749d5678557505877080f3849200c40 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Ada Hill Walker_0.52207166_2486.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:103fc9adf6467323c0a376df93c7a456c90b68807eab61353b2118e2f0878968 +size 20002 diff --git a/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Adam Elsheimer_0.6716068_0870.jpg b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Adam Elsheimer_0.6716068_0870.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a1a741aa67d35b89b5b5ee730927493c2795b460 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Adam Elsheimer_0.6716068_0870.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:58ecaa19b5982553e0bf6d08a98155c68471001b0648050b8246d8d5a24f4700 +size 14970 diff --git "a/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Adam Szentp\303\251tery_0.4434548_2955.jpg" "b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Adam Szentp\303\251tery_0.4434548_2955.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..ad7e33bdb1454c1496affb574bee85fafb1add31 --- /dev/null +++ "b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Adam Szentp\303\251tery_0.4434548_2955.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:22ddb360db8a844a51d9fe36dbbc6eee484c45b8648b139c03f480a66bca4fdd +size 12513 diff --git a/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Adi Granov_0.40670198_2769.jpg b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Adi Granov_0.40670198_2769.jpg new file mode 100644 index 0000000000000000000000000000000000000000..69c8fdf646fb7ea02080b21fa15464e49fcc0a84 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Adi Granov_0.40670198_2769.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af028cc087c6c84b62ac8daeb2b7af972f593354384f96146f5c4b615f84f5b2 +size 16650 diff --git a/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Adolf Bierbrauer_0.56129396_1596.jpg b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Adolf Bierbrauer_0.56129396_1596.jpg new file mode 100644 index 0000000000000000000000000000000000000000..09b4310c357ff03988abfc1ce8d77ef6aba66cc2 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Adolf Bierbrauer_0.56129396_1596.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fea362ed04d508f01c14f7d2caa33bd7bea1e54f6c2e91568266be2d811e28e9 +size 12119 diff --git a/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Adolf Born_0.55848217_2189.jpg b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Adolf Born_0.55848217_2189.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c2c11549cd6a8a05c988bd840a349bfc81917527 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Adolf Born_0.55848217_2189.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b69c970ef07b813ea3ab5e09945eebc145260ed6daf6f2ef39b7c6181ec36ffe +size 12946 diff --git a/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Adolf Dietrich_0.590169_1350.jpg b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Adolf Dietrich_0.590169_1350.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2403cc8a3129d8fa878174a15fe61f9ccb7fd653 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Adolf Dietrich_0.590169_1350.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6d92a2f4b486fe44652697dd1efe12b885b989035e5a2b9197ce59df511fc6e1 +size 17480 diff --git "a/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Adolf F\303\251nyes_0.54192233_1703.jpg" "b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Adolf F\303\251nyes_0.54192233_1703.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..1cd4bf30f5741623d0982c2c2cb8c79e58efe1a1 --- /dev/null +++ "b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Adolf F\303\251nyes_0.54192233_1703.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:375f04b6e6bb91e80d04ac57aefabe9caff2b2c5fb06177b31ffb45aad1fc87c +size 13035 diff --git "a/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Adolf Hir\303\251my-Hirschl_0.5946784_1521.jpg" "b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Adolf Hir\303\251my-Hirschl_0.5946784_1521.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..7e6b70ada92d60075d11457d853daa9da292008b --- /dev/null +++ "b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Adolf Hir\303\251my-Hirschl_0.5946784_1521.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d6a515feeb5c6a5c10b21d35b1aefd21b94fd52f29709cf832537a76fc516d4 +size 9306 diff --git "a/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Adolf H\303\266lzel_0.5303149_2436.jpg" "b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Adolf H\303\266lzel_0.5303149_2436.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..4b76b098a4bf33ce184a8da622f546035b518bd3 --- /dev/null +++ "b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Adolf H\303\266lzel_0.5303149_2436.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6898c322adbc4799ed9bafd28edb519c68284ae44e0b82f9ffcb768702c3f882 +size 10965 diff --git "a/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Adolf Schr\303\266dter_0.55316544_2240.jpg" "b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Adolf Schr\303\266dter_0.55316544_2240.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..6ba0b762c772280071804d0a50ecc44a74e78b20 --- /dev/null +++ "b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Adolf Schr\303\266dter_0.55316544_2240.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e248d2ee560543644b4fe3e134340eda6d2b1048f3b51a6df449b3a83cb759f8 +size 11497 diff --git "a/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Adolfo M\303\274ller-Ury_0.57944727_2002.jpg" "b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Adolfo M\303\274ller-Ury_0.57944727_2002.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..204ebe7e9bf3b3bf729561914477039cd515beff --- /dev/null +++ "b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Adolfo M\303\274ller-Ury_0.57944727_2002.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:89ac13d2c82cdcb309dcd6742e99880006c5d2546395eb22dbabbdadbc2e7a23 +size 16381 diff --git a/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Adolph Menzel_0.6455246_1332.jpg b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Adolph Menzel_0.6455246_1332.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c36f6537a22e84d9dbd33080279f0d91b8bcab09 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Adolph Menzel_0.6455246_1332.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e7d153af2ccbe433f4d40641f302113c1895373456c4e445dc77d2ef4626cec5 +size 13907 diff --git a/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Adolphe Willette_0.6396935_1383.jpg b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Adolphe Willette_0.6396935_1383.jpg new file mode 100644 index 0000000000000000000000000000000000000000..444dda0fdbd09a1890556a35325613d0ad297835 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Adolphe Willette_0.6396935_1383.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6148e38604a8e3d4f6569d2b5775d87c14cee2f5bf55dca033cfdc2dbae4f4de +size 11967 diff --git a/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Adriaen Brouwer_0.6815058_0896.jpg b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Adriaen Brouwer_0.6815058_0896.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5008bb1d8e6db7f17e41473be4e666948c38ed41 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Adriaen Brouwer_0.6815058_0896.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d85de95dfc9d048409668b002bc2d075930c17aea067c2fe18ccf397cc2743ed +size 11848 diff --git a/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Adriaen Coorte_0.6670663_1072.jpg b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Adriaen Coorte_0.6670663_1072.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6ffa8c7623dec18fbdac47d5ddb0f2b4e75b111d --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Adriaen Coorte_0.6670663_1072.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d34c7bc34fe1ac95c5f8439d2a6b9e41be6d4fd2979181455910905e9d110698 +size 11018 diff --git a/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Adriaen Hanneman_0.6514815_1261.jpg b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Adriaen Hanneman_0.6514815_1261.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fbd102cb9cd3b71fa2d47f69ae00c75e171a6660 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Adriaen Hanneman_0.6514815_1261.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fef71333bb83369ecd385aa7afadb9b8d1587859f7f4ee7e3d63ba06117cb450 +size 10937 diff --git a/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Adriaen Isenbrant_0.6475428_1312.jpg b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Adriaen Isenbrant_0.6475428_1312.jpg new file mode 100644 index 0000000000000000000000000000000000000000..eca2b88f930117244f409b32f6e30bd870b58a73 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Adriaen Isenbrant_0.6475428_1312.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a10568bdb599b0661ae4e5fb69f9401d31d3cd645e895f3bf1f42940c4cac4bb +size 13722 diff --git a/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Adriaen van Ostade_0.67220736_1019.jpg b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Adriaen van Ostade_0.67220736_1019.jpg new file mode 100644 index 0000000000000000000000000000000000000000..efdec7492ade3a5de62932bb2ae828237b940e44 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Adriaen van Ostade_0.67220736_1019.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f22972ec044fb048a30ef517fcae9ab79ad63ed0294acde05d5f72590e7168f1 +size 12723 diff --git a/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Adriaen van Outrecht_0.67682564_0950.jpg b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Adriaen van Outrecht_0.67682564_0950.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4d7cda5a67df5ff06dcff2ee62f484436aa992e1 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Adriaen van Outrecht_0.67682564_0950.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d7f1dc93aed19533985fcc363582c5155486cc4f9367d3b23f77d046fe53808d +size 12215 diff --git a/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Adriaen van de Velde_0.69716156_0724.jpg b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Adriaen van de Velde_0.69716156_0724.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e101b5616153311207e19603d4c9501b8e327cc1 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Adriaen van de Velde_0.69716156_0724.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:801271af19e43afc0408acbac23f0f8ea782103a53fe7a612e345c25f3cb1c05 +size 13628 diff --git a/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Adriaen van de Venne_0.6899867_0802.jpg b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Adriaen van de Venne_0.6899867_0802.jpg new file mode 100644 index 0000000000000000000000000000000000000000..cc40ceb03d5d67f834242eddc0e27d245be4d732 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Adriaen van de Venne_0.6899867_0802.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e498b2bb3c2f3dfbba2a58a9a67b61c6d95d0c48ca23eeeb7bd0ffdf84ce4e5 +size 11402 diff --git a/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Adriaen van der Werff_0.638286_1150.jpg b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Adriaen van der Werff_0.638286_1150.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4742d8795a6a63c807de78a511e74b38e5149dd2 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Adriaen van der Werff_0.638286_1150.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ea4ea2be36655c299091df54424f589ee668550bfa439e908be665e98114f29 +size 12741 diff --git a/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Adrianus Eversen_0.58259964_0852.jpg b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Adrianus Eversen_0.58259964_0852.jpg new file mode 100644 index 0000000000000000000000000000000000000000..65f0a4baade48d16c54227e3932ac4170e6fdf6d --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Adrianus Eversen_0.58259964_0852.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b0b373afef580d27b11b4e70b4c643960501bde6ad8b3c04ace58ed4b31fbedd +size 9238 diff --git "a/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Ad\303\251la\303\257de Labille-Guiard_0.6066263_1229.jpg" "b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Ad\303\251la\303\257de Labille-Guiard_0.6066263_1229.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..bb8fc8b154803a2e3a5340cd41274c110b0f9b01 --- /dev/null +++ "b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Ad\303\251la\303\257de Labille-Guiard_0.6066263_1229.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cead3b7c7f0b570f55e24c87ff200d853d97a837d5990ba89611777235e7467c +size 12063 diff --git "a/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Ad\303\251la\303\257de Victoire Hall_0.539939_2371.jpg" "b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Ad\303\251la\303\257de Victoire Hall_0.539939_2371.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..6b4166838b571a463d01c7764cc5e49f2387d626 --- /dev/null +++ "b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Ad\303\251la\303\257de Victoire Hall_0.539939_2371.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d142bd2d51ff7ad7f96e5eb28f7daa426a9a17b02268cdb2d8da8ba4942193bb +size 19020 diff --git a/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Aelbert Cuyp_0.7033657_0661.jpg b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Aelbert Cuyp_0.7033657_0661.jpg new file mode 100644 index 0000000000000000000000000000000000000000..53d064c9e967f60841eae9788f53eb1c4a676e54 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Aelbert Cuyp_0.7033657_0661.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c3ff84b80b6c0c54ed342d406834e8265cc4093159efa6167288d963230438f +size 10850 diff --git a/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Aert van der Neer_0.6159286_0840.jpg b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Aert van der Neer_0.6159286_0840.jpg new file mode 100644 index 0000000000000000000000000000000000000000..975014ffe0bafe287cdcbed4cc63d49ba7c8ccf5 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Aert van der Neer_0.6159286_0840.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:23e9195305959839af3cb6f56356fe18b4c433c44946f7a4341e3cddf7a591be +size 9797 diff --git a/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Aertgen van Leyden_0.6951305_0743.jpg b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Aertgen van Leyden_0.6951305_0743.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7f7d4ccdbe7e62a99dc596845a0efe92b7523842 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Aertgen van Leyden_0.6951305_0743.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:68430eff9abea5eb90065c836026f2b157b625a211dec87a2a5f0404ed62986f +size 21544 diff --git a/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Agnolo Bronzino_0.6787985_0931.jpg b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Agnolo Bronzino_0.6787985_0931.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c57b53cd73b37674d1d3a237d33c5ceffb34b6e5 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Agnolo Bronzino_0.6787985_0931.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ddad50c92b53e07372ccd0d40fad0a65d079d059a0b74419c399f0837ef78289 +size 16431 diff --git a/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Agnolo Gaddi_0.79369193_0127.jpg b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Agnolo Gaddi_0.79369193_0127.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1c5a8d38ffefca8d0225d27e2bdd01ade37e0750 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Agnolo Gaddi_0.79369193_0127.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:73e518907ff64fa4ea7c1d28f8f6147b33902a6734dfb32c17bce928a2bce938 +size 22965 diff --git a/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Agostino Arrivabene_0.61166185_0780.jpg b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Agostino Arrivabene_0.61166185_0780.jpg new file mode 100644 index 0000000000000000000000000000000000000000..53772f8d604a457450126502ec84be824c365a92 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Agostino Arrivabene_0.61166185_0780.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:017fe6688f47bc2f1d50dc5a8458d4136da5069ab731089d75decd788f0ce157 +size 9741 diff --git a/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Agostino Carracci_0.7128167_0567.jpg b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Agostino Carracci_0.7128167_0567.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bec3c319272f18b23c7dcfeec1135debe9194c00 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Agostino Carracci_0.7128167_0567.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ee67e581cb806f5f1c35cfc08cdc4166d0c3f8533241b20a5085170efe68a3b +size 17349 diff --git a/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Agostino Tassi_0.59265685_1851.jpg b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Agostino Tassi_0.59265685_1851.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2876ffeb8387eec760b21e649ea00ba8338edfbb --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Agostino Tassi_0.59265685_1851.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd7ff5c06f7e4d22e0d1edc38cc8a355305e539f3e7d66449821650f1fb89477 +size 13409 diff --git "a/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Agust\303\255n Fern\303\241ndez_0.53403986_2409.jpg" "b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Agust\303\255n Fern\303\241ndez_0.53403986_2409.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..07b0781d49c63530fb2c9460be6a22bac6b84b61 --- /dev/null +++ "b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Agust\303\255n Fern\303\241ndez_0.53403986_2409.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:358b80b3236bdc96bc9fa3e4ee32720477583aacb993524524f206b5ce368bca +size 14581 diff --git a/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Akseli Gallen-Kallela_0.66927314_1051.jpg b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Akseli Gallen-Kallela_0.66927314_1051.jpg new file mode 100644 index 0000000000000000000000000000000000000000..90f89fe3e7e561820ec2bfe0c392dd9af9a6063f --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Akseli Gallen-Kallela_0.66927314_1051.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ba542e9729e79a7fb535da3561ca2a0a65e95731d7aefc386695be641c761f4 +size 16270 diff --git a/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Al Capp_0.6239494_1542.jpg b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Al Capp_0.6239494_1542.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e5ed6ffb8aa2679260dac2748908bb28a9eb9ab9 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Al Capp_0.6239494_1542.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eb8cf5f8437cf4a319a1a6a4088222e32d048f9d250caf2f2d8eb2c4d77fc89f +size 26164 diff --git a/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Al Feldstein_0.6087723_1693.jpg b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Al Feldstein_0.6087723_1693.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3dfad512c4198bf191b6012f473f36ee823ddc8c --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Al Feldstein_0.6087723_1693.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d76addf1d96d4e5d7f080f669dae7416a347c36ebe10672efc0f5d258461358e +size 23793 diff --git a/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Alan Bean_0.57788515_2012.jpg b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Alan Bean_0.57788515_2012.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4fb60d6a40f045fb72285ee59966b506655381f0 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Alan Bean_0.57788515_2012.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d718128dc8469ebbb483f6453909b3f7ae2e82149a217152f8375c0d34b26a08 +size 17942 diff --git a/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Alan Davis_0.6029676_1750.jpg b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Alan Davis_0.6029676_1750.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6befcdde9493bd4ca8290ad693d5bc999add16f0 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Alan Davis_0.6029676_1750.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:51057733cff94dbcf148b741760b481fd4fab1837cd5518423e3212557dbbabf +size 25265 diff --git a/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Alan Lee_0.5848701_1931.jpg b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Alan Lee_0.5848701_1931.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c93f7663e489ee9e658d6f90d0efff8f71d54eb6 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Alan Lee_0.5848701_1931.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc1bdd8a10af798a7813f04e8872ba8fc1f8b06887d590cab6e3609294a272da +size 12581 diff --git a/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Alayna Lemmer_0.48293802_2099.jpg b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Alayna Lemmer_0.48293802_2099.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d37df0d64cbb62a25d015d58420a77380c40f0fd --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Alayna Lemmer_0.48293802_2099.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e1b0a349e9d70973188d2fd126b1e50f6a46d082be45de6d28804dd9ea9f27c +size 10924 diff --git a/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Albert Anker_0.62389827_1544.jpg b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Albert Anker_0.62389827_1544.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c796ca1c1583e832c0a02417b95597572e28dba3 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Albert Anker_0.62389827_1544.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9472a552cc01a77da5cc1084786e56c302048d3eb79482b9a472ef027ab27a92 +size 11494 diff --git a/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Albert Bierstadt_0.67935765_0926.jpg b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Albert Bierstadt_0.67935765_0926.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5c7dfdc3f98c0b1aec66972264fd13e473cdda0b --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Albert Bierstadt_0.67935765_0926.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e419fd254b57f3b0b812d79d7cd96c4948e43b19826b725084e6719b1a00f17b +size 10696 diff --git a/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Albert Dorne_0.56395364_2149.jpg b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Albert Dorne_0.56395364_2149.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3088648796f25a4d7e7602a55a47688ca87ba141 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Albert Dorne_0.56395364_2149.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d55fc0a21a5a8abdb9ada6426341a5b7ef5ac15937ea51134125c33ae89b32b +size 13034 diff --git a/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Albert Dubois-Pillet_0.57526016_1086.jpg b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Albert Dubois-Pillet_0.57526016_1086.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d921c922432de4be5ae79637b987bb30687e3ea5 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Albert Dubois-Pillet_0.57526016_1086.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f378ba96818ea35bac23bc8fa06ddba5cb4655411917b31c5d5276329e75574 +size 11218 diff --git a/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Albert Eckhout_0.5284096_2449.jpg b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Albert Eckhout_0.5284096_2449.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8c9f2130c279b09e196a8ba6a7a1094029d9c0bd --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Albert Eckhout_0.5284096_2449.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e70e745276dff674969a14c90bd96a6bdbd5f91069fa7bd64a337e2d1f53b830 +size 10978 diff --git a/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Albert Edelfelt_0.57466495_2044.jpg b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Albert Edelfelt_0.57466495_2044.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fc62d8c6f345997d8d9983eb5eaf35c57214d30b --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Albert Edelfelt_0.57466495_2044.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fbf6980f2373e6dd15dfac67849a7520927f55530213f66e849bf94fac19e061 +size 9414 diff --git a/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Albert Goodwin_0.6368695_1411.jpg b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Albert Goodwin_0.6368695_1411.jpg new file mode 100644 index 0000000000000000000000000000000000000000..541ab9ea262fcd48725f930d3a9c78d28092d2fe --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Albert Goodwin_0.6368695_1411.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e8b61493050b7218b63954241eba03f0d017c8addfe4c86b9ca16a8e7ed4e99 +size 9161 diff --git a/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Albert Guillaume_0.56529653_1562.jpg b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Albert Guillaume_0.56529653_1562.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d251da29cbcdeba3d6f10e7a4f2407a3eb765121 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Albert Guillaume_0.56529653_1562.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:63d0a5b1cf2a0d6d38901fdcd13b62ceee55f32d817c466d2e1ff7433937fd5b +size 10751 diff --git a/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Albert Henry Krehbiel_0.54952574_2274.jpg b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Albert Henry Krehbiel_0.54952574_2274.jpg new file mode 100644 index 0000000000000000000000000000000000000000..609e16abf589b37e288b7420719de5d47201d4ed --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Albert Henry Krehbiel_0.54952574_2274.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d37fb8aa65d15a08531d395c760bc98d3eb150d932337b9d917aba65e6cfb112 +size 11692 diff --git a/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Albert J. Welti_0.5736257_2056.jpg b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Albert J. Welti_0.5736257_2056.jpg new file mode 100644 index 0000000000000000000000000000000000000000..35f2d117f84feb33fa879b7c6bb90562518d6649 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Albert J. Welti_0.5736257_2056.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d3e939432f4129bf86e08f2cb8854d0c57f0d81ba47560afb2e1135bc8e113c8 +size 15252 diff --git a/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Albert Joseph Moore_0.6374316_1406.jpg b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Albert Joseph Moore_0.6374316_1406.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4b73bd2398b0ac5c6135b4fe5b6a04f1c658e2c4 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Albert Joseph Moore_0.6374316_1406.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9723b68a7479f4d50a2d83bea43169dc81b426a95fc7a6d685b2045ff1cbfe26 +size 12198 diff --git "a/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Albert Joseph P\303\251not_0.65085316_1272.jpg" "b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Albert Joseph P\303\251not_0.65085316_1272.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..982cfc272f8d761e483d34dac05af235e6a9f012 --- /dev/null +++ "b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Albert Joseph P\303\251not_0.65085316_1272.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:55b00616ff2b169585a2d1946705c88c30cbdb62509534bbdf2e85fd5f68f98a +size 15511 diff --git a/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Albert Koetsier_0.45385844_2904.jpg b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Albert Koetsier_0.45385844_2904.jpg new file mode 100644 index 0000000000000000000000000000000000000000..123f748a7e1f47639d6144f41bdf4facdb3293ed --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Albert Koetsier_0.45385844_2904.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e3c0f86dfdacdc46cdbc487a35853cafe864cd836b039d0d12d984d1c656e3d2 +size 10933 diff --git a/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Albert Kotin_0.55737317_2206.jpg b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Albert Kotin_0.55737317_2206.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3c5959e4af5f5a3677b108df3b5d9e562def4d78 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Albert Kotin_0.55737317_2206.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e7f6f199b7ebb99922fba4ed0fb2fac2b3a51ce810cd468d55ecaa5a9067f4ea +size 15742 diff --git a/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Albert Lynch_0.56497896_2136.jpg b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Albert Lynch_0.56497896_2136.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d8469f3803cdda0ddc2e0e7fb3268bbbcec44676 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Albert Lynch_0.56497896_2136.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c5df9fa62ed5e8e9b81fb82aa9076205b2e55640d8de61826ae9686fe79f9a79 +size 12660 diff --git a/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Albert Marquet_0.64471006_1338.jpg b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Albert Marquet_0.64471006_1338.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b505faf6d984fc2d9fbbd81084165c11703ac7a4 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Albert Marquet_0.64471006_1338.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01f93b32bb83e8698b17f4cc487019b5f91b0e87c22adb3e8e36b950d3b6f901 +size 16406 diff --git a/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Albert Namatjira_0.6573372_1193.jpg b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Albert Namatjira_0.6573372_1193.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6a769072799ed7147e8696c66e928179a32c3f90 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Albert Namatjira_0.6573372_1193.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:848c708b89cbf7a6230e69e77c7daaba0895cf6cc69465c46ad98c15c46a659d +size 13121 diff --git "a/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Albert Paris G\303\274tersloh_0.5817827_1970.jpg" "b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Albert Paris G\303\274tersloh_0.5817827_1970.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..e4767adf3a14c3ceb6f8940d0242339277cd823c --- /dev/null +++ "b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Albert Paris G\303\274tersloh_0.5817827_1970.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e5a007374d92f336f3759554debc7870e14c52d780af346f9fcf2e017a9d9d35 +size 11474 diff --git a/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Albert Pinkham Ryder_0.7338848_0266.jpg b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Albert Pinkham Ryder_0.7338848_0266.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1f575de1a6acad1bcc1d9ad530c35e56be14a0b1 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Albert Pinkham Ryder_0.7338848_0266.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a41ea41ed6698a1c3d131d69d85518f7e40b6cb344e8b74e3718257d1c51d64 +size 6443 diff --git a/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Albert Swinden_0.5375844_2389.jpg b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Albert Swinden_0.5375844_2389.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e9ad9d167667d31c186ecd118883d87c79db27eb --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Albert Swinden_0.5375844_2389.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:10798a50354fcd2249afe7f395930f2d5f77d5b3593f0a9009ac9a9208d70019 +size 13850 diff --git a/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Alberto Morrocco_0.64352196_1353.jpg b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Alberto Morrocco_0.64352196_1353.jpg new file mode 100644 index 0000000000000000000000000000000000000000..149cc6a397d09b2de12fbbe3b7d4c8441560e459 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Alberto Morrocco_0.64352196_1353.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f9c12a38e8e17c4f2ca8f01bc30a681af72f28fe000ad603948b36b08e5c7d48 +size 13554 diff --git a/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Alberto Seveso_0.47735062_2304.jpg b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Alberto Seveso_0.47735062_2304.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fbe0849b605b8cd2e52ec796d0849a712c4378ae --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Alberto Seveso_0.47735062_2304.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db660983769c22a1c1ac8ebb1d93f913099f97c703798ce6a7ca2084ed0ed7dd +size 15954 diff --git a/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Alberto Sughi_0.5736495_2055.jpg b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Alberto Sughi_0.5736495_2055.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c9ebdf5588b820a4b7880e6034aef1021ef83cbe --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Alberto Sughi_0.5736495_2055.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:374a6c26a486602aadbbb84ff21f82f4311d808e9fd80ca3b0d0dd109f9fe78c +size 11598 diff --git a/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Albin Egger-Lienz_0.72120845_0491.jpg b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Albin Egger-Lienz_0.72120845_0491.jpg new file mode 100644 index 0000000000000000000000000000000000000000..471cd8fa402b77ce98c48e14378b941612e0c9a0 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Albin Egger-Lienz_0.72120845_0491.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f9b5a45009dc3dc7c904ab959cde8718d6906b36ff722c9ccc5e83547fd3ad09 +size 12055 diff --git a/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Albrecht Altdorfer_0.7663378_0213.jpg b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Albrecht Altdorfer_0.7663378_0213.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8b3a298ba08ba32d5bdad8dcfafe710bb71e33ab --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Albrecht Altdorfer_0.7663378_0213.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d02e31c2e326043331a62c460b9c5940ca87c273b42b52a42d264657e9b5c72d +size 19598 diff --git a/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Albrecht Anker_0.65531695_1218.jpg b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Albrecht Anker_0.65531695_1218.jpg new file mode 100644 index 0000000000000000000000000000000000000000..de5acbcdf57d566550d4b0f1f8924738b945639c --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Albrecht Anker_0.65531695_1218.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d9b982d4cc96e0ab47773c589819d8be07341ec5511d684ce4137d039431b28d +size 13565 diff --git a/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Albrecht Durer_0.7122327_0575.jpg b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Albrecht Durer_0.7122327_0575.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e92e2f8fb33960c1d9971516d7468062d559f076 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Albrecht Durer_0.7122327_0575.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:910a36f9d529d23986e7f340475c3d9824307dea7734c67f86915434f551a635 +size 20371 diff --git "a/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Albrecht D\303\274rer_0.72946966_0412.jpg" "b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Albrecht D\303\274rer_0.72946966_0412.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..076dbc7f6cbbf1a34371416e3ace8a6f8ae572ab --- /dev/null +++ "b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Albrecht D\303\274rer_0.72946966_0412.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d81a8e2dcabce71ae129549055dad1b5c6044bee3de78d3205fffa348319798 +size 19173 diff --git a/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Aldus Manutius_0.67366326_0992.jpg b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Aldus Manutius_0.67366326_0992.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5484ab3458b774f4b8671ffcafdcbd74cf08b52d --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Aldus Manutius_0.67366326_0992.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9830b015b413e9bd28c080eaeb5aab84c0acf29ae5beee62f5ed213505633db1 +size 23747 diff --git a/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Aleksander Gierymski_0.5590013_2187.jpg b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Aleksander Gierymski_0.5590013_2187.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d680f8bff5792a60aa22611ca4e728287aa318f3 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Aleksander Gierymski_0.5590013_2187.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f03fbaa56b73d41d40c9bd5a165de43c8cf361fe1d7919f274c5a99896f0a347 +size 12119 diff --git a/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Aleksandr Ivanovich Laktionov_0.606544_1710.jpg b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Aleksandr Ivanovich Laktionov_0.606544_1710.jpg new file mode 100644 index 0000000000000000000000000000000000000000..69799e0a451d35d451f2a04960efa7fa9b313fd0 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Aleksandr Ivanovich Laktionov_0.606544_1710.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:20f5149c77eaa31b4ea40d5f27b469650b089538f16da8c1eae97534d6b12a47 +size 12348 diff --git a/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Aleksey Savrasov_0.65207493_0892.jpg b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Aleksey Savrasov_0.65207493_0892.jpg new file mode 100644 index 0000000000000000000000000000000000000000..07c952bc2041c9a75f7b0f61d5ef48d0f86b2072 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Aleksey Savrasov_0.65207493_0892.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1cbfe3f7e8860f594e57b53d7200e6ac9f51b7dc56dde45d07abccde12a8558c +size 9389 diff --git a/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Aleksi Briclot_0.46056762_1712.jpg b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Aleksi Briclot_0.46056762_1712.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2cb729927a01fe6a6a523367b1efcb39f3f9037f --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Aleksi Briclot_0.46056762_1712.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c84daf0ce78b44a0e895e6889d2927b8a7bd3e3a083a6b09d8a9e514e9367c88 +size 12660 diff --git a/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Alessandro Allori_0.6892961_0812.jpg b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Alessandro Allori_0.6892961_0812.jpg new file mode 100644 index 0000000000000000000000000000000000000000..90bc6f45f10d51076c9ec9cc32b871dd8d5eae9c --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Alessandro Allori_0.6892961_0812.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d0d80d576c565978517219e41fb5ef3a50c813a0839fbe5f078b183c3e4f7575 +size 17690 diff --git a/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Alessandro Galli Bibiena_0.6412889_1367.jpg b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Alessandro Galli Bibiena_0.6412889_1367.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a2da1c8b6189cf80e8a84bbac8966d2c2c4393ac --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Alessandro Galli Bibiena_0.6412889_1367.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1480a7e56e9faf987a58a618eb36542c1952edee1e8f1b3c07efad795e66210a +size 15976 diff --git a/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Alex Colville_0.68787855_0832.jpg b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Alex Colville_0.68787855_0832.jpg new file mode 100644 index 0000000000000000000000000000000000000000..cecec1dd1d7ec994f3089b552fdaa1fda1f5cbc8 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Alex Colville_0.68787855_0832.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d6f14215a46d673b3ac1c9f1816711b05e8d65667ff69750658ff9dc9b1079ed +size 9810 diff --git a/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Alex Maleev_0.6067118_1708.jpg b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Alex Maleev_0.6067118_1708.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a3d941803131bd0045f098e60f7e05ae8339dd39 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/fineart/fineart_Alex Maleev_0.6067118_1708.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1a93359859e0d84ab35f575a9b5df999e973a3214bfdba9c2c59b57f0c13611 +size 15267 diff --git a/artists-to-study/ats/thumbnail/spaceship/n/n_Amadou Opa Bathily_0.5536976_2237.jpg b/artists-to-study/ats/thumbnail/spaceship/n/n_Amadou Opa Bathily_0.5536976_2237.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e64b24cb8b292364a82c24abce542507ad5b412e --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/n/n_Amadou Opa Bathily_0.5536976_2237.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:679493b412273261d241230274504685656349ec4d3eb71c0aea8849c6a65d22 +size 12216 diff --git a/artists-to-study/ats/thumbnail/spaceship/n/n_Barkley Hendricks_0.6883637_0823.jpg b/artists-to-study/ats/thumbnail/spaceship/n/n_Barkley Hendricks_0.6883637_0823.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2ceefcd253e7000004ba0ef367124e9ccbb1e3fc --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/n/n_Barkley Hendricks_0.6883637_0823.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f0091280549765d6b7e510dec6ac76f245b3ee8558f37a10d55d2db5f68bd8a +size 10404 diff --git a/artists-to-study/ats/thumbnail/spaceship/n/n_Barkley L. Hendricks_0.69986427_0698.jpg b/artists-to-study/ats/thumbnail/spaceship/n/n_Barkley L. Hendricks_0.69986427_0698.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fc676ac1e8dd859b676f05582ba7e7cf9a0b2203 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/n/n_Barkley L. Hendricks_0.69986427_0698.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:75225dc190496ec979ec787dccdea513ff68d941c75bc74f2281dcc7d0a0a7ce +size 11540 diff --git a/artists-to-study/ats/thumbnail/spaceship/n/n_Bruce Onobrakpeya_0.42588046_2959.jpg b/artists-to-study/ats/thumbnail/spaceship/n/n_Bruce Onobrakpeya_0.42588046_2959.jpg new file mode 100644 index 0000000000000000000000000000000000000000..00128de227ff5d448cdc35c6acfdd1728ff65cc3 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/n/n_Bruce Onobrakpeya_0.42588046_2959.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19ff7e985c405990e6b0e898d4801238f51be4a9a775b7fe65f29d778a42dac1 +size 13806 diff --git a/artists-to-study/ats/thumbnail/spaceship/n/n_Carrie Mae Weems_0.6645416_0779.jpg b/artists-to-study/ats/thumbnail/spaceship/n/n_Carrie Mae Weems_0.6645416_0779.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e339db82f14830b855183275ec1ef95450da4a41 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/n/n_Carrie Mae Weems_0.6645416_0779.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e0bceedb7f4dd0f10d70345d8e374a151c0cc6f7038aa5ff7d0bec1b87e7a10 +size 13172 diff --git a/artists-to-study/ats/thumbnail/spaceship/n/n_Chinwe Chukwuogo-Roy_0.49445248_2658.jpg b/artists-to-study/ats/thumbnail/spaceship/n/n_Chinwe Chukwuogo-Roy_0.49445248_2658.jpg new file mode 100644 index 0000000000000000000000000000000000000000..584672597233ae4d43535550776edcca9d7ab238 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/n/n_Chinwe Chukwuogo-Roy_0.49445248_2658.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:64ef088692d320f63ae188e1533434e25962fafcf5f0caac3df93f4a2108b6bb +size 12204 diff --git a/artists-to-study/ats/thumbnail/spaceship/n/n_Howardena Pindell_0.7686921_0206.jpg b/artists-to-study/ats/thumbnail/spaceship/n/n_Howardena Pindell_0.7686921_0206.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5a5f6ad6a68a0b5bd00ca1435e4ed82eb8bc9130 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/n/n_Howardena Pindell_0.7686921_0206.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:48f734540ef6318d31af1f2bdfaa8c97b8761bd47f13a4e4e9a0c3cd28150675 +size 23595 diff --git a/artists-to-study/ats/thumbnail/spaceship/n/n_Juliana Huxtable_0.5364195_2394.jpg b/artists-to-study/ats/thumbnail/spaceship/n/n_Juliana Huxtable_0.5364195_2394.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b2b81f78f266c4eba6a3cf35a63c19f23bf832df --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/n/n_Juliana Huxtable_0.5364195_2394.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19ebcd582037c717b031d2654b4e90705ec86cf3359bddbaea99baafa9a2d2dc +size 20329 diff --git a/artists-to-study/ats/thumbnail/spaceship/n/n_Kadir Nelson_0.5669006_2120.jpg b/artists-to-study/ats/thumbnail/spaceship/n/n_Kadir Nelson_0.5669006_2120.jpg new file mode 100644 index 0000000000000000000000000000000000000000..cea1dd388c19f005f44a6063bbfdd03a0e207182 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/n/n_Kadir Nelson_0.5669006_2120.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:25a5714a6345a7daf78365ad792d5f9a6a5164f183a9d2ef76d2def216de5b0d +size 14318 diff --git a/artists-to-study/ats/thumbnail/spaceship/n/n_Kehinde Wiley_0.66218376_1138.jpg b/artists-to-study/ats/thumbnail/spaceship/n/n_Kehinde Wiley_0.66218376_1138.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5904f4b4dfc5ee3b09e71870d48fe96a5d16ea07 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/n/n_Kehinde Wiley_0.66218376_1138.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c8ed85b840a32c00cd3c8a371b5086ea8a4ae8dd6bfd21a809f5849401367c20 +size 22307 diff --git a/artists-to-study/ats/thumbnail/spaceship/n/n_Mati Klarwein_0.7066092_0633.jpg b/artists-to-study/ats/thumbnail/spaceship/n/n_Mati Klarwein_0.7066092_0633.jpg new file mode 100644 index 0000000000000000000000000000000000000000..529725d145c0380d19a8e37d3dc839dbc6bbbedf --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/n/n_Mati Klarwein_0.7066092_0633.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e002db7446006da37eb8c4a527022f641145068d851d4d9b95b46de27628f83a +size 20012 diff --git a/artists-to-study/ats/thumbnail/spaceship/n/n_RETNA (Marquis Lewis)_0.47963_1365.jpg b/artists-to-study/ats/thumbnail/spaceship/n/n_RETNA (Marquis Lewis)_0.47963_1365.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ac21e81be9ca6568d76af07b45e9614ef6aff8ba --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/n/n_RETNA (Marquis Lewis)_0.47963_1365.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:672d64ba7627e3a17ea04482715d01853eda3323dbde09575ad6dfdc12049161 +size 27994 diff --git a/artists-to-study/ats/thumbnail/spaceship/n/n_Teophilus Tetteh_0.46064255_2862.jpg b/artists-to-study/ats/thumbnail/spaceship/n/n_Teophilus Tetteh_0.46064255_2862.jpg new file mode 100644 index 0000000000000000000000000000000000000000..33a038f6458f2a2283e03180255106017379e1ee --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/n/n_Teophilus Tetteh_0.46064255_2862.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be95b7557c0a1d84f5c70c1ea59f960cab215b9b1f5d9536754384c670ef9089 +size 19413 diff --git a/artists-to-study/ats/thumbnail/spaceship/n/n_Wangechi Mutu_0.6394607_1384.jpg b/artists-to-study/ats/thumbnail/spaceship/n/n_Wangechi Mutu_0.6394607_1384.jpg new file mode 100644 index 0000000000000000000000000000000000000000..972ad3d29a90789375014ef3462aea8a1a6c5fea --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/n/n_Wangechi Mutu_0.6394607_1384.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f0056655f076d27e60ff1a462891fc2d69c52d3cc73de195c89281cacc4683df +size 16852 diff --git a/artists-to-study/ats/thumbnail/spaceship/n/n_Yinka Shonibare_0.68256056_0888.jpg b/artists-to-study/ats/thumbnail/spaceship/n/n_Yinka Shonibare_0.68256056_0888.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6b89b4d53a6ed5481c05194914e335d85532d933 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/n/n_Yinka Shonibare_0.68256056_0888.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6363e1a16299fba3e60e882a16a8c7b5dcdb167ab860e075828dc0dddad18e0a +size 18016 diff --git a/artists-to-study/ats/thumbnail/spaceship/n/n_Zanele Muholi_0.58554715_1131.jpg b/artists-to-study/ats/thumbnail/spaceship/n/n_Zanele Muholi_0.58554715_1131.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ab7a95685a84843232f593a9b30350463b5de44a --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/n/n_Zanele Muholi_0.58554715_1131.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f8ccfd9be8b3a9652161a11479943a14653bee5e4158fbc3e3b6f3585e9b15db +size 12294 diff --git a/artists-to-study/ats/thumbnail/spaceship/nudity/nudity_Affandi_0.7170285_0521.jpg b/artists-to-study/ats/thumbnail/spaceship/nudity/nudity_Affandi_0.7170285_0521.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6afa11ba53ee5c86b255722fe863042f39c05497 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/nudity/nudity_Affandi_0.7170285_0521.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce23349f5e9ac042fba91b4312563729e9a095fc6dd4795994507470fcd00e28 +size 25163 diff --git a/artists-to-study/ats/thumbnail/spaceship/nudity/nudity_Albert Benois_0.5902705_1873.jpg b/artists-to-study/ats/thumbnail/spaceship/nudity/nudity_Albert Benois_0.5902705_1873.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2d23e35faa32efbd19756a850eba8436214e934e --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/nudity/nudity_Albert Benois_0.5902705_1873.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:20a13e63bf642fecdbc4bc4bf381571ac17f3e3af938555ad3090c0ad34d6297 +size 15681 diff --git a/artists-to-study/ats/thumbnail/spaceship/nudity/nudity_Albert Bertelsen_0.54038215_2363.jpg b/artists-to-study/ats/thumbnail/spaceship/nudity/nudity_Albert Bertelsen_0.54038215_2363.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f1df5fb6f1467cd1f25dc706ceb63834bfc8b55c --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/nudity/nudity_Albert Bertelsen_0.54038215_2363.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:48c24b1427fb6aa09e6fd6b778836ce93bb234093c713f886e8e19361d351a22 +size 11937 diff --git a/artists-to-study/ats/thumbnail/spaceship/nudity/nudity_Albert Bloch_0.69573116_0736.jpg b/artists-to-study/ats/thumbnail/spaceship/nudity/nudity_Albert Bloch_0.69573116_0736.jpg new file mode 100644 index 0000000000000000000000000000000000000000..78429bf33239e616c6c777a0757e496b8f9b1b62 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/nudity/nudity_Albert Bloch_0.69573116_0736.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6520c90b9e009d94cfa188c6ae0b08c1d4690b6d2ddddda5d44530ac6d5b05a +size 16830 diff --git "a/artists-to-study/ats/thumbnail/spaceship/nudity/nudity_Aleksander Or\305\202owski_0.546705_2288.jpg" "b/artists-to-study/ats/thumbnail/spaceship/nudity/nudity_Aleksander Or\305\202owski_0.546705_2288.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..41a1e4e6020fd702fe5db917cd557b4ca36f0f53 --- /dev/null +++ "b/artists-to-study/ats/thumbnail/spaceship/nudity/nudity_Aleksander Or\305\202owski_0.546705_2288.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:54c121708831df6df798b4ecd733f3c2523a70390e7c1efb664a57378686237c +size 11333 diff --git a/artists-to-study/ats/thumbnail/spaceship/nudity/nudity_Alex Grey_0.62908936_1431.jpg b/artists-to-study/ats/thumbnail/spaceship/nudity/nudity_Alex Grey_0.62908936_1431.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7e88f7088ce9fe150c1b4ce7d81228f793b69280 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/nudity/nudity_Alex Grey_0.62908936_1431.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e27e50b00f957596ee2bd342a04d03ca07d61b7b698adcf608e887b36d38c249 +size 24131 diff --git a/artists-to-study/ats/thumbnail/spaceship/nudity/nudity_Alfred Kelsner_0.5455753_2318.jpg b/artists-to-study/ats/thumbnail/spaceship/nudity/nudity_Alfred Kelsner_0.5455753_2318.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d3fc73877f25a2d5ff017714749d5b270d5751b2 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/nudity/nudity_Alfred Kelsner_0.5455753_2318.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b32b84b2bc2897c3951e276e795fa9bf429f93fec2a0b3eaecb9e93b94acf441 +size 10874 diff --git a/artists-to-study/ats/thumbnail/spaceship/nudity/nudity_Anne-Louis Girodet_0.58104825_0722.jpg b/artists-to-study/ats/thumbnail/spaceship/nudity/nudity_Anne-Louis Girodet_0.58104825_0722.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b19ee00a958e837940113cb6f7861ee8a3f80020 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/nudity/nudity_Anne-Louis Girodet_0.58104825_0722.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ef181b228040e91be7cd9ef45116927282900011a48f4d262d6ea4e13301357 +size 14240 diff --git a/artists-to-study/ats/thumbnail/spaceship/nudity/nudity_Arnold Franz Brasz_0.65834284_1184.jpg b/artists-to-study/ats/thumbnail/spaceship/nudity/nudity_Arnold Franz Brasz_0.65834284_1184.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b2b1c1a89f0b5399ac3b4b7798c8fba8033a6c1d --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/nudity/nudity_Arnold Franz Brasz_0.65834284_1184.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:756492470b2aa7189f6d2f1f226f445cedcff6aa321c314a4325f036fbbcb3c5 +size 13883 diff --git a/artists-to-study/ats/thumbnail/spaceship/nudity/nudity_Aron Wiesenfeld_0.68331146_0878.jpg b/artists-to-study/ats/thumbnail/spaceship/nudity/nudity_Aron Wiesenfeld_0.68331146_0878.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8b86ecabe008e71adf847edd618a08fe60855125 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/nudity/nudity_Aron Wiesenfeld_0.68331146_0878.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:81588e9ad9a4f1d29307663f261190b391d12ca23daeb411ec1cb94f6976cbf9 +size 6769 diff --git a/artists-to-study/ats/thumbnail/spaceship/nudity/nudity_Benjamin Marra_0.61809736_1209.jpg b/artists-to-study/ats/thumbnail/spaceship/nudity/nudity_Benjamin Marra_0.61809736_1209.jpg new file mode 100644 index 0000000000000000000000000000000000000000..cc42304f53fa274e2436805d68191d56c4ab5369 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/nudity/nudity_Benjamin Marra_0.61809736_1209.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6419eb08869159ce1a243be30ddb48723f21c657b5225111a20dc8fce98e1ebb +size 26899 diff --git a/artists-to-study/ats/thumbnail/spaceship/nudity/nudity_Bonnard Pierre_0.72309464_0474.jpg b/artists-to-study/ats/thumbnail/spaceship/nudity/nudity_Bonnard Pierre_0.72309464_0474.jpg new file mode 100644 index 0000000000000000000000000000000000000000..20d5be25ac3db1822696cf12577a414d16aa4637 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/nudity/nudity_Bonnard Pierre_0.72309464_0474.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1bc6d885bec7ad8678a5788f54ebe068d0ddd722d730e7fe20aef6aa61167ae7 +size 17555 diff --git "a/artists-to-study/ats/thumbnail/spaceship/nudity/nudity_B\303\251la Iv\303\241nyi-Gr\303\274nwald_0.56355745_2154.jpg" "b/artists-to-study/ats/thumbnail/spaceship/nudity/nudity_B\303\251la Iv\303\241nyi-Gr\303\274nwald_0.56355745_2154.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..2c8a2033977b131abb906cad81de3654fbd740a2 --- /dev/null +++ "b/artists-to-study/ats/thumbnail/spaceship/nudity/nudity_B\303\251la Iv\303\241nyi-Gr\303\274nwald_0.56355745_2154.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ca174842e9184718189b6b07eb56501cc9a81266881ed04f34bfb9e9a652451 +size 13013 diff --git a/artists-to-study/ats/thumbnail/spaceship/nudity/nudity_Carlo Galli Bibiena_0.6511681_1265.jpg b/artists-to-study/ats/thumbnail/spaceship/nudity/nudity_Carlo Galli Bibiena_0.6511681_1265.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f53b0f199ec58f5f5b8c9558491a8f62dabf9537 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/nudity/nudity_Carlo Galli Bibiena_0.6511681_1265.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fa4d07ff7990a9ae1836a1cbf6ef46f8eb974d2d0bfe62653b1901de031e5fc +size 13906 diff --git a/artists-to-study/ats/thumbnail/spaceship/nudity/nudity_Dali_0.5928694_1652.jpg b/artists-to-study/ats/thumbnail/spaceship/nudity/nudity_Dali_0.5928694_1652.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ab6e21f89c4b0a41aafba7d8ff211f39a0abd4e1 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/nudity/nudity_Dali_0.5928694_1652.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06770e3ff7a43ba5e914d83bbd40874808c33df06ba6d03766a7ba265b2ee200 +size 14675 diff --git a/artists-to-study/ats/thumbnail/spaceship/nudity/nudity_Edward Corbett_0.55701995_2210.jpg b/artists-to-study/ats/thumbnail/spaceship/nudity/nudity_Edward Corbett_0.55701995_2210.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e71d82bfc8d11540bc674acee374e00d6ea31f78 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/nudity/nudity_Edward Corbett_0.55701995_2210.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d1660ddeeafa9fbd468727cf7ba826a3d485969b25cbc1e2f829ed380365e72 +size 15310 diff --git a/artists-to-study/ats/thumbnail/spaceship/nudity/nudity_Emil Alzamora_0.5844039_1043.jpg b/artists-to-study/ats/thumbnail/spaceship/nudity/nudity_Emil Alzamora_0.5844039_1043.jpg new file mode 100644 index 0000000000000000000000000000000000000000..72c2feaa972e246062d20843b38d3c8d4cede170 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/nudity/nudity_Emil Alzamora_0.5844039_1043.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:63d94250c0ccecee68c9358b65542c93f8ec1ba1783387b6de53e6b6167b188e +size 12347 diff --git a/artists-to-study/ats/thumbnail/spaceship/nudity/nudity_Ernst Fuchs_0.6953538_0739.jpg b/artists-to-study/ats/thumbnail/spaceship/nudity/nudity_Ernst Fuchs_0.6953538_0739.jpg new file mode 100644 index 0000000000000000000000000000000000000000..869569ded6e1ad46826aeef5bef9fdec08bf2bbf --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/nudity/nudity_Ernst Fuchs_0.6953538_0739.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e71f9a4d617f09ad69ebc7ffc1db3c21d8c5167c8ead174b9196f89764fdbb42 +size 19864 diff --git "a/artists-to-study/ats/thumbnail/spaceship/nudity/nudity_Eugeniusz \305\273ak_0.556925_2211.jpg" "b/artists-to-study/ats/thumbnail/spaceship/nudity/nudity_Eugeniusz \305\273ak_0.556925_2211.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..2ef973556df36810fb93f530f4823201cf0e7c58 --- /dev/null +++ "b/artists-to-study/ats/thumbnail/spaceship/nudity/nudity_Eugeniusz \305\273ak_0.556925_2211.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1577e923a682432aeaeb6a6d7123fae1953da2ba92fd24afccfa13b61ab00743 +size 14042 diff --git a/artists-to-study/ats/thumbnail/spaceship/nudity/nudity_Ferdinand Hodler_0.7213758_0488.jpg b/artists-to-study/ats/thumbnail/spaceship/nudity/nudity_Ferdinand Hodler_0.7213758_0488.jpg new file mode 100644 index 0000000000000000000000000000000000000000..065add1725a1bf5b979d4856e5dc6ed68b7e5302 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/nudity/nudity_Ferdinand Hodler_0.7213758_0488.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d9e26ba41a5bff6f94f97cf1254af7896f1d183a0d91f4f69e45fc025710b447 +size 17218 diff --git a/artists-to-study/ats/thumbnail/spaceship/nudity/nudity_Fernand Khnopff_0.6512954_1263.jpg b/artists-to-study/ats/thumbnail/spaceship/nudity/nudity_Fernand Khnopff_0.6512954_1263.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9236b26c1f03aa46f7570d25f867ca73406265f5 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/nudity/nudity_Fernand Khnopff_0.6512954_1263.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:053dc1a8799dc1a2a61adf43996ff123d9d0f5dd94c0bf8307e6401b68c4493b +size 10001 diff --git a/artists-to-study/ats/thumbnail/spaceship/nudity/nudity_Fernando Botero_0.7412504_0334.jpg b/artists-to-study/ats/thumbnail/spaceship/nudity/nudity_Fernando Botero_0.7412504_0334.jpg new file mode 100644 index 0000000000000000000000000000000000000000..28fbaafcd127b6288a2c0e16678521ac9ee276db --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/nudity/nudity_Fernando Botero_0.7412504_0334.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9121468ef606474f183146b5cba8befce76881b42ebc1a5d38db1a95b63f3a7d +size 16205 diff --git a/artists-to-study/ats/thumbnail/spaceship/nudity/nudity_Francesco del Cossa_0.7104901_0590.jpg b/artists-to-study/ats/thumbnail/spaceship/nudity/nudity_Francesco del Cossa_0.7104901_0590.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9ed5c32f536a585d137e0ed229ca58a2944c524f --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/nudity/nudity_Francesco del Cossa_0.7104901_0590.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e87de70a3bfd67a15f05ffd21208fd802dda6e44f6fdb9297aa3e470ee519706 +size 17446 diff --git a/artists-to-study/ats/thumbnail/spaceship/nudity/nudity_Frank Frazetta_0.551121_1765.jpg b/artists-to-study/ats/thumbnail/spaceship/nudity/nudity_Frank Frazetta_0.551121_1765.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1256d7e6842388bf1ad1cf449e32d3a244d56196 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/nudity/nudity_Frank Frazetta_0.551121_1765.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16fafb53fbc8f0c890ad2596a10ad3e39d0dd11af11387f878d07fb2b7920676 +size 16495 diff --git a/artists-to-study/ats/thumbnail/spaceship/nudity/nudity_Gao Cen_0.60618126_1716.jpg b/artists-to-study/ats/thumbnail/spaceship/nudity/nudity_Gao Cen_0.60618126_1716.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bbc1640f5b2e5e419f18b16306766d8c6aa579a8 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/nudity/nudity_Gao Cen_0.60618126_1716.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:baa325ffd2ee1307a9db4ea134df047e328fbb08b4c158bbec169a449efb7f22 +size 12299 diff --git a/artists-to-study/ats/thumbnail/spaceship/nudity/nudity_Gustav Klimt_0.72356784_0472.jpg b/artists-to-study/ats/thumbnail/spaceship/nudity/nudity_Gustav Klimt_0.72356784_0472.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f20ae114d6a4d7fa9b31cceca664fb357c861436 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/nudity/nudity_Gustav Klimt_0.72356784_0472.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:91c5d74df42478aa7b61ec03402cf16df6db75ff2a8a758ce2cdb224856f7ffd +size 21037 diff --git a/artists-to-study/ats/thumbnail/spaceship/nudity/nudity_Hajime Sorayama_0.60325956_1745.jpg b/artists-to-study/ats/thumbnail/spaceship/nudity/nudity_Hajime Sorayama_0.60325956_1745.jpg new file mode 100644 index 0000000000000000000000000000000000000000..aa253f82d02db5df82a8a45204eb43a39683139a --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/nudity/nudity_Hajime Sorayama_0.60325956_1745.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af87dbd409877aada1d070d688d971e348d0d85e03ca5f2215fbc2a6dfcef5d6 +size 19621 diff --git a/artists-to-study/ats/thumbnail/spaceship/nudity/nudity_Hans Bellmer_0.6735973_0995.jpg b/artists-to-study/ats/thumbnail/spaceship/nudity/nudity_Hans Bellmer_0.6735973_0995.jpg new file mode 100644 index 0000000000000000000000000000000000000000..cc9effd78ca61792a196398daeb2f9533c2e295a --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/nudity/nudity_Hans Bellmer_0.6735973_0995.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:32f3f789a83d8b1955bdae50d7a0687370bd0d3e19dfbcbb39f414031f63012b +size 14667 diff --git a/artists-to-study/ats/thumbnail/spaceship/nudity/nudity_Henri Biva_0.54013556_2101.jpg b/artists-to-study/ats/thumbnail/spaceship/nudity/nudity_Henri Biva_0.54013556_2101.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2552fed2f7cf6350d39742840cfd79ee78911ee1 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/nudity/nudity_Henri Biva_0.54013556_2101.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e3c6066a69fa6c78c520462dcdbe65f3a3a74a7f2e0c907d53bc5786a597378 +size 13437 diff --git a/artists-to-study/ats/thumbnail/spaceship/nudity/nudity_Henry Moore_0.59767926_1797.jpg b/artists-to-study/ats/thumbnail/spaceship/nudity/nudity_Henry Moore_0.59767926_1797.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5e56e3afbf31aeb17fc10556934fd6d4777aee9a --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/nudity/nudity_Henry Moore_0.59767926_1797.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:98f22f2df46b49931441f3905157358c0bffb4ca27bdbafda27b427bc4148599 +size 13730 diff --git a/artists-to-study/ats/thumbnail/spaceship/nudity/nudity_Hermenegildo Anglada Camarasa_0.7214374_0485.jpg b/artists-to-study/ats/thumbnail/spaceship/nudity/nudity_Hermenegildo Anglada Camarasa_0.7214374_0485.jpg new file mode 100644 index 0000000000000000000000000000000000000000..96b07bc25559e2adefda866eeb75c0c92facf8ec --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/nudity/nudity_Hermenegildo Anglada Camarasa_0.7214374_0485.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:62676be1d3167baae4d72c601e6688bb21334cf6b090417630ad8798fc02e49a +size 13478 diff --git a/artists-to-study/ats/thumbnail/spaceship/nudity/nudity_Howard Chandler Christy_0.5702813_2091.jpg b/artists-to-study/ats/thumbnail/spaceship/nudity/nudity_Howard Chandler Christy_0.5702813_2091.jpg new file mode 100644 index 0000000000000000000000000000000000000000..09494dacedbf48a11821f8c43bb08603011ebd5b --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/nudity/nudity_Howard Chandler Christy_0.5702813_2091.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc45d54a375c8939e7e1b3673eca1d6e9bca43faa00f425cec21ce73d1d3992d +size 15544 diff --git a/artists-to-study/ats/thumbnail/spaceship/nudity/nudity_Joseph Cornell_0.75023884_0288.jpg b/artists-to-study/ats/thumbnail/spaceship/nudity/nudity_Joseph Cornell_0.75023884_0288.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2e889b0475e65980568ba0da15bd8d879447bd7b --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/nudity/nudity_Joseph Cornell_0.75023884_0288.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a724648554c6fea531e12b4b5b597b1aa151d16bc1c99e73374547e4158def7 +size 14940 diff --git a/artists-to-study/ats/thumbnail/spaceship/nudity/nudity_Lucian Freud_0.6203146_1581.jpg b/artists-to-study/ats/thumbnail/spaceship/nudity/nudity_Lucian Freud_0.6203146_1581.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bdde1b191ae02ef925f5995f687695d110493354 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/nudity/nudity_Lucian Freud_0.6203146_1581.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:232d2ef7835d5ea5ce13ef505e8d975f2bbf0ad415dfea56feed765ce2f5672a +size 20320 diff --git a/artists-to-study/ats/thumbnail/spaceship/nudity/nudity_Maginel Wright Enright Barney_0.6034306_1742.jpg b/artists-to-study/ats/thumbnail/spaceship/nudity/nudity_Maginel Wright Enright Barney_0.6034306_1742.jpg new file mode 100644 index 0000000000000000000000000000000000000000..05c07261a67aab32e552c9ac3138d21aaa4a2f5b --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/nudity/nudity_Maginel Wright Enright Barney_0.6034306_1742.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf135f96842ec9956ccd84c5d2a752b2cb5bbc0552f6f96e6a22d4e40f0b2e0f +size 12150 diff --git a/artists-to-study/ats/thumbnail/spaceship/nudity/nudity_Neil Welliver_0.68297863_0885.jpg b/artists-to-study/ats/thumbnail/spaceship/nudity/nudity_Neil Welliver_0.68297863_0885.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8adf129e2c5757a9a7e1597ee3af7d44f2ea42f1 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/nudity/nudity_Neil Welliver_0.68297863_0885.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:99484427d1bb3424603b9f4ae6b2253254e55df0d4bd21eb3443637a607668ca +size 18077 diff --git a/artists-to-study/ats/thumbnail/spaceship/nudity/nudity_Nicola Samori_0.68747556_0483.jpg b/artists-to-study/ats/thumbnail/spaceship/nudity/nudity_Nicola Samori_0.68747556_0483.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e68cdbd684cc5f6d63c347fdc6841b6b5c359676 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/nudity/nudity_Nicola Samori_0.68747556_0483.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a1772437c5a816124470887072248841cd420f04a50aa0275ad3c15c100f0790 +size 15013 diff --git a/artists-to-study/ats/thumbnail/spaceship/nudity/nudity_Raymond Duchamp-Villon_0.6489605_1294.jpg b/artists-to-study/ats/thumbnail/spaceship/nudity/nudity_Raymond Duchamp-Villon_0.6489605_1294.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3efefcc9a8ff25a8a81f5ffca501fa723642b851 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/nudity/nudity_Raymond Duchamp-Villon_0.6489605_1294.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:605d7456ab6e67ec689fe813d5eed024aa5c9614226fbada43ce2291897b1627 +size 8578 diff --git a/artists-to-study/ats/thumbnail/spaceship/nudity/nudity_Richard Hamilton_0.5461275_2313.jpg b/artists-to-study/ats/thumbnail/spaceship/nudity/nudity_Richard Hamilton_0.5461275_2313.jpg new file mode 100644 index 0000000000000000000000000000000000000000..91631f444ca5ab6211bc51cda29dc37d8323fe8a --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/nudity/nudity_Richard Hamilton_0.5461275_2313.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:478167be244318b1ab48d73ad01ff868959c086ccc15db26b56255e32b19da40 +size 9921 diff --git a/artists-to-study/ats/thumbnail/spaceship/nudity/nudity_Roberto Ferri_0.538221_0516.jpg b/artists-to-study/ats/thumbnail/spaceship/nudity/nudity_Roberto Ferri_0.538221_0516.jpg new file mode 100644 index 0000000000000000000000000000000000000000..641ba1967f64c2c5e2c3890d342a5ad74375df8e --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/nudity/nudity_Roberto Ferri_0.538221_0516.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d289808cec08093829346b2cb25a09517b2d4ce937abdde9ff95957a72f810e +size 9479 diff --git a/artists-to-study/ats/thumbnail/spaceship/nudity/nudity_Roger Dean_0.6529647_1246.jpg b/artists-to-study/ats/thumbnail/spaceship/nudity/nudity_Roger Dean_0.6529647_1246.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3a391ffd83af72d2c2b023f10ec675bea18f8954 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/nudity/nudity_Roger Dean_0.6529647_1246.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2e91718a39314023be3b011c6814d1f7eab8eb68cf3eaccf78192728f66671d +size 12071 diff --git a/artists-to-study/ats/thumbnail/spaceship/nudity/nudity_Ron Mueck_0.5581811_2194.jpg b/artists-to-study/ats/thumbnail/spaceship/nudity/nudity_Ron Mueck_0.5581811_2194.jpg new file mode 100644 index 0000000000000000000000000000000000000000..674ddbd537ce8f4f50e6fc37ef0bf461124c7052 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/nudity/nudity_Ron Mueck_0.5581811_2194.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac2f60e8e653d320503a7aa7c10c4259aea7b5adf17313d42ce6747b83bbc01d +size 14005 diff --git a/artists-to-study/ats/thumbnail/spaceship/nudity/nudity_Saturno Butto_0.6331184_1451.jpg b/artists-to-study/ats/thumbnail/spaceship/nudity/nudity_Saturno Butto_0.6331184_1451.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2f8f1978fbe3ed9ec2705a5d83e9f9f920d464bd --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/nudity/nudity_Saturno Butto_0.6331184_1451.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:99fb37f7129cbbe56c0a96ad580939f3e4044c409881fcacd086e827641cee05 +size 13696 diff --git a/artists-to-study/ats/thumbnail/spaceship/nudity/nudity_Shohei Otomo_0.7132803_0469.jpg b/artists-to-study/ats/thumbnail/spaceship/nudity/nudity_Shohei Otomo_0.7132803_0469.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3cce243178cfdac5b94d2127fbc880e1c76f4e3f --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/nudity/nudity_Shohei Otomo_0.7132803_0469.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe61cc4ff78f181cbf4d793eb67cd1f27f9d234842f48397f947a679e213dbd3 +size 24431 diff --git a/artists-to-study/ats/thumbnail/spaceship/nudity/nudity_William Etty_0.6497544_0397.jpg b/artists-to-study/ats/thumbnail/spaceship/nudity/nudity_William Etty_0.6497544_0397.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d4afd68df8e2559ef6b926b4760150e68d8847e0 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/nudity/nudity_William Etty_0.6497544_0397.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a3c40af213fd89fc1779d94b3a47d432b55d724f89d0e06f7a34756e90ab2bc0 +size 13785 diff --git a/artists-to-study/ats/thumbnail/spaceship/nudity/nudity_Yasushi Nirasawa_0.6016714_1760.jpg b/artists-to-study/ats/thumbnail/spaceship/nudity/nudity_Yasushi Nirasawa_0.6016714_1760.jpg new file mode 100644 index 0000000000000000000000000000000000000000..798b494bd6723d6510bb85ed15827663fd7f2982 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/nudity/nudity_Yasushi Nirasawa_0.6016714_1760.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2158e65d164c0d72b8d70b2a7639dbaac34a8974916f3935432ce268a8bf5db2 +size 18537 diff --git a/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_A. J. Casson_0.73666203_0360.jpg b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_A. J. Casson_0.73666203_0360.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ede48a78f0da52fedada5b8ed6a8f4b4cc2401a0 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_A. J. Casson_0.73666203_0360.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16940741f9fd8c01084092b03e80fe027ffe644a4e230508811f8e1de81eb9c6 +size 12991 diff --git a/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Adolph Gottlieb_0.79061794_0132.jpg b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Adolph Gottlieb_0.79061794_0132.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c8596b3c78d7194e6326a0300dfc52f17dde4caf --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Adolph Gottlieb_0.79061794_0132.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a255193db6b7f214f8d2356e82de09ec191021227dad66aa61aaff5e6480a41 +size 15392 diff --git a/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Adrian Tomine_0.79109013_0131.jpg b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Adrian Tomine_0.79109013_0131.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1bcf440e589761ed63701e837b38c93377b11f25 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Adrian Tomine_0.79109013_0131.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:336ef7d9fdcc0fcc80c10965413a8608f477b2ea62cfdcbc86bb1fdd232ed1e3 +size 19249 diff --git a/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Afarin Sajedi_0.62475824_1530.jpg b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Afarin Sajedi_0.62475824_1530.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1979a7c70f14d0f772de2df2a311d126753f5fe6 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Afarin Sajedi_0.62475824_1530.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:09531e0fe72bd1904ad544d983b4b6e52742ab03adf5ca5db34ed98edb6e8947 +size 11518 diff --git a/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Agnes Lawrence Pelton_0.73960555_0343.jpg b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Agnes Lawrence Pelton_0.73960555_0343.jpg new file mode 100644 index 0000000000000000000000000000000000000000..86a693d6e4271dcbc90026087f8b038f0e492980 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Agnes Lawrence Pelton_0.73960555_0343.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b4725d31eb7dbeece8462d99213f579bbe3a0039b2588722a6cf6fbac3e650c8 +size 12601 diff --git a/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Agnes Martin_0.8028028_0111.jpg b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Agnes Martin_0.8028028_0111.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5edc46dcf9d0ba55b9af713788f7c1d988c58de4 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Agnes Martin_0.8028028_0111.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e22b488af71aa28a4c86643c6f2a8c18f47d4fc906558e1dcc669b89379ecca0 +size 10151 diff --git a/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Alasdair Gray_0.7992301_0117.jpg b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Alasdair Gray_0.7992301_0117.jpg new file mode 100644 index 0000000000000000000000000000000000000000..89e425802c9b4c6474aa5d608cc57dde40eccc7f --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Alasdair Gray_0.7992301_0117.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4eb24b192a67a0403c77b8687ebb1a12af7341a23d4e563f8dd2de1dd1943af6 +size 29145 diff --git a/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Albert Gleizes_0.76658314_0210.jpg b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Albert Gleizes_0.76658314_0210.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4c6d1fa8ecfb74ade537e118d5707c90ac212678 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Albert Gleizes_0.76658314_0210.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:daa9ff04967df22eeb7500bdb6ff77bc76845e5f9a40184340f390e3f4683fd6 +size 20718 diff --git a/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Albert Irvin_0.79688835_0123.jpg b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Albert Irvin_0.79688835_0123.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0c3a1fc64379c4176a4279288455fa482dcc095b --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Albert Irvin_0.79688835_0123.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff79484c0fde66cb3f0e52cdf74ecd1ef7fc129390a33c923c7a991dbc9e6c8e +size 16640 diff --git a/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Alberto Burri_0.6618252_1082.jpg b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Alberto Burri_0.6618252_1082.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d217e351357f933018c221096eebc2696f5a8e09 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Alberto Burri_0.6618252_1082.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e2c31f643b88f86ae2461a73aa89a522cf41448769cf73717f210ad14a87bb8 +size 7205 diff --git a/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Alberto Giacometti_0.7596302_0236.jpg b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Alberto Giacometti_0.7596302_0236.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c5616fdb5d1617c20c5c6b63af261f63e2d49984 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Alberto Giacometti_0.7596302_0236.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:324e1e25b1662eea6cbce81dcfbdd08bd31e3f0a87aa374d51546ba72f5ffc58 +size 10127 diff --git a/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Alessandro Gottardo_0.79321593_0128.jpg b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Alessandro Gottardo_0.79321593_0128.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9bfcfdde188add4eb6fe579dcb6c7407b4f33bc9 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Alessandro Gottardo_0.79321593_0128.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b0d11ec664b9ef975fa0b5f9dafaa8316ac76bd711af22a31ccae919c8150afb +size 7852 diff --git a/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Alex Garant_0.7333658_0382.jpg b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Alex Garant_0.7333658_0382.jpg new file mode 100644 index 0000000000000000000000000000000000000000..294331ec5199ba420fc266ee0edf8e32eb55409d --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Alex Garant_0.7333658_0382.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0253fe9d5feca1f18e160fa3785b86569956b9c12523812aae86bb3eea8ab237 +size 15659 diff --git a/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Alex Katz_0.76317835_0227.jpg b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Alex Katz_0.76317835_0227.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c82cda5f16a22c2421d1695cabc90f96c2dc64fb --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Alex Katz_0.76317835_0227.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:38515e630dbcbc2a37bf58433f57504937dc1b858f575d3d0419840c1caf6dd6 +size 7412 diff --git a/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Alexander Archipenko_0.7759824_0172.jpg b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Alexander Archipenko_0.7759824_0172.jpg new file mode 100644 index 0000000000000000000000000000000000000000..574f01f8ce1b883273ca0d14366493e7a86b68ce --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Alexander Archipenko_0.7759824_0172.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd22f7bb66f96bbbbaf757f20b42e23afb6d68fc39832a1211a8d1e22a74ed96 +size 14891 diff --git a/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Alexander Calder_0.83832693_0045.jpg b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Alexander Calder_0.83832693_0045.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bc7ca49a232be4bd0248b72b08dd464b7239604c --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Alexander Calder_0.83832693_0045.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd7beeb34713c95696c875d8a746e9d07ce310be9bfd5fa13b1cfd8c699aece1 +size 11312 diff --git a/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Alexander Jansson_0.69298327_0767.jpg b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Alexander Jansson_0.69298327_0767.jpg new file mode 100644 index 0000000000000000000000000000000000000000..195010e2592c5271d16aa84c65d179eeaa3f9c8c --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Alexander Jansson_0.69298327_0767.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fec361e6875de6b6bcd5d5c09dca8c0d828e867e648ac12c6eeee36378c3100a +size 14603 diff --git a/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Alexander Millar_0.7011144_0676.jpg b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Alexander Millar_0.7011144_0676.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b67bd1593c71746d00e644026c11c9767d16dbe3 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Alexander Millar_0.7011144_0676.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed863ff5a3164df9d17d3c063847c488ee5027d694a75b716fdfc546a0f0fa22 +size 14499 diff --git a/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Alexander Rodchenko_0.67415404_0585.jpg b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Alexander Rodchenko_0.67415404_0585.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ebe3a6e327907493593b68ab8b6a422c62f08abc --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Alexander Rodchenko_0.67415404_0585.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:74948e35e1b055536b7588c5f2f7348997b84e5b9f33de3a5053a81f2c9ee02b +size 15620 diff --git a/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Alexej von Jawlensky_0.8308932_0057.jpg b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Alexej von Jawlensky_0.8308932_0057.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c9e95ee8cd6c5d4a355b119f594ec9f3a754efd5 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Alexej von Jawlensky_0.8308932_0057.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6af12c6e18e65b30f7e2f949c0309a5eaab03408a141ce4ef8b7ffcf8764e70e +size 15776 diff --git a/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Alfred Wallis_0.77926695_0160.jpg b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Alfred Wallis_0.77926695_0160.jpg new file mode 100644 index 0000000000000000000000000000000000000000..64d0f482cac95981e5ea79e77fe0b76586045a94 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Alfred Wallis_0.77926695_0160.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1802549354e93b6f1f0900e7d697f63a2fbd032992ca3aeb2692737ee544adbb +size 18556 diff --git a/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Alice Neel_0.67255914_1013.jpg b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Alice Neel_0.67255914_1013.jpg new file mode 100644 index 0000000000000000000000000000000000000000..316319c6f3ae8fe604f2e36065ae5f4ac744ad9d --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Alice Neel_0.67255914_1013.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a4aa669e9b1421d2c9d00db06dce8d1723e8018b5dd72dbee8fe4985ee9bb2a +size 18749 diff --git a/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Alice Rahon_0.6777824_0939.jpg b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Alice Rahon_0.6777824_0939.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0860f595af6107803e8cd2c5a3ee7e22e4fe3c0e --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Alice Rahon_0.6777824_0939.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d3576bd1e766984c7cc57d2f4fc8ae934bcea416cc5c6a096ede873a7aca11d +size 14494 diff --git a/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Alison Bechdel_0.68096143_0898.jpg b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Alison Bechdel_0.68096143_0898.jpg new file mode 100644 index 0000000000000000000000000000000000000000..591fc05d8eecf97222fed79e04fedfe30402b51a --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Alison Bechdel_0.68096143_0898.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e7ef9b99a2db501a68267b60b679bf0eccbb1a51c9adc9661a6a40e14720fff7 +size 23663 diff --git a/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Allen Jones_0.6869935_0841.jpg b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Allen Jones_0.6869935_0841.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1c2084448b00fc6e6521ca7abfe768cda00031c2 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Allen Jones_0.6869935_0841.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d2cce7fe92207603d1d4a1e5ca96f69137fd0d06d1c75fb2e3762c346f28f53 +size 14424 diff --git a/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Amedeo Modigliani_0.71788836_0514.jpg b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Amedeo Modigliani_0.71788836_0514.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0ddca1f1f8ccee65112d089df645b8ba784dec85 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Amedeo Modigliani_0.71788836_0514.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b66ec0207ccd678e5d4ac5ad8e2a7c0fba8bed3ffc07817c185afdea62227f08 +size 13919 diff --git a/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Amy Sillman_0.752921_0272.jpg b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Amy Sillman_0.752921_0272.jpg new file mode 100644 index 0000000000000000000000000000000000000000..92e2e971c69756950bee1cc101d23cd499713007 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Amy Sillman_0.752921_0272.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4da4dc0b2b898784058f6ce7c06080ae934972c3b6782f20a58ceb4980dae776 +size 22486 diff --git a/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Andre Derain_0.73050404_0405.jpg b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Andre Derain_0.73050404_0405.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0938fe17b4f2eb2aaa556cc82f504dc550973079 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Andre Derain_0.73050404_0405.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ab0d1cb99498f4c6bf1738a6394efa63986fc350e9364fb3cb18b9eff717790 +size 17427 diff --git "a/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Andr\303\251 Derain_0.7009005_0679.jpg" "b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Andr\303\251 Derain_0.7009005_0679.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..c95f40839b7467a4273e7f465002997146310454 --- /dev/null +++ "b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Andr\303\251 Derain_0.7009005_0679.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e8bdbb4cc8687bc6b63674e37ff38d83c5d2470e9fd7fcc41581c13fa4310191 +size 16796 diff --git "a/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Andr\303\251 Lhote_0.68718815_0784.jpg" "b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Andr\303\251 Lhote_0.68718815_0784.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..418314a52ddc64bcb964a7fd2ca195c432ff22e3 --- /dev/null +++ "b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Andr\303\251 Lhote_0.68718815_0784.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:96e842afda2d2703358de07f262dda4020e91f17df561399ad79bb3460774778 +size 19987 diff --git "a/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Andr\303\251 Masson_0.727404_0436.jpg" "b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Andr\303\251 Masson_0.727404_0436.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..9eee3448c721b48c4ffbeb6032db125daf3c8a46 --- /dev/null +++ "b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Andr\303\251 Masson_0.727404_0436.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:167ea50a30715b745575a8ee856f26b976eb9c5d6e142f2b37fc9ab672b92115 +size 26319 diff --git a/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Andy Warhol_0.8654825_0021.jpg b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Andy Warhol_0.8654825_0021.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ff4430d14fefcfb6223ad0c92bf911cf3621917e --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Andy Warhol_0.8654825_0021.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c58d8955ba133ab4c7a8560614971556250e1290a96c9851ace03f388117ffc1 +size 16608 diff --git a/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Anna Bocek_0.6382304_1396.jpg b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Anna Bocek_0.6382304_1396.jpg new file mode 100644 index 0000000000000000000000000000000000000000..450cbd9d6719aa03e24674c387f6857c3c5264ff --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Anna Bocek_0.6382304_1396.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:22e11522544179865e2ccead2bcb50089492195d1ee6a02c267624f854dd2fe2 +size 19377 diff --git a/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Anne Redpath_0.66407835_1119.jpg b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Anne Redpath_0.66407835_1119.jpg new file mode 100644 index 0000000000000000000000000000000000000000..dc95a1093507b21a639f4e7973adf844fd5fc04b --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Anne Redpath_0.66407835_1119.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a6346bd7f6e25915681d05607a0e16593b93aa0f1b86a2a6fff1b79b990b3f9a +size 15591 diff --git a/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Anne Rothenstein_0.70502245_0646.jpg b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Anne Rothenstein_0.70502245_0646.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fe88d2e535349cedb3c01409ac648103bdcfdcf8 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Anne Rothenstein_0.70502245_0646.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:373e2db96cca0b883aedf710c82b44e59fa761dfa527bf569b9063e9d3cebcf1 +size 10379 diff --git a/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Anne Truitt_0.73297834_0384.jpg b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Anne Truitt_0.73297834_0384.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ddf802164a2bb79c11f8b6942da753008ecb0ca7 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Anne Truitt_0.73297834_0384.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:57dc0b6643150c6ceeaa60e286c040ba931fa7eaa9bc27d5bead9720e6f326c5 +size 8461 diff --git a/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Annie Soudain_0.7671485_0209.jpg b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Annie Soudain_0.7671485_0209.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e8b8ef30ffce0117c592890fe0343b62a6b201fe --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Annie Soudain_0.7671485_0209.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d6b77c3eb407ff4827831d76f813436af33c09204f99a26af1ebeda439b55ce +size 18928 diff --git a/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Anselm Kiefer_0.71514887_0540.jpg b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Anselm Kiefer_0.71514887_0540.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1964527d3f8287ea925d77159ef2947a2a22d20b --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Anselm Kiefer_0.71514887_0540.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24960262628a06751cab3a65cb1b41b1d79f88c09dfd0893b3a0ca8a258ddc4a +size 17399 diff --git a/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Antonio Saura_0.7155949_0537.jpg b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Antonio Saura_0.7155949_0537.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f43ce843424bef9d1dbdf6091ee55886cf1d6d87 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Antonio Saura_0.7155949_0537.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1bdc64afbb10032113d4d330ddb40cc0ab88ca4cd8e8ed52a4e22453540e18db +size 16702 diff --git a/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Archibald Motley_0.7343683_0377.jpg b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Archibald Motley_0.7343683_0377.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f96a37f4171edc33c0e353755545f40119571aeb --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Archibald Motley_0.7343683_0377.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a5f8741660964551c1e66be1e627761df14500ff0e6f133caa73887264c55b6 +size 14866 diff --git a/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Aristarkh Lentulov_0.846537_0035.jpg b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Aristarkh Lentulov_0.846537_0035.jpg new file mode 100644 index 0000000000000000000000000000000000000000..63bf8bcc6782f74aca7fd7ebea573e5f484e4a73 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Aristarkh Lentulov_0.846537_0035.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:605d31924de3e5b7b007d72af51d0c4be3124e8564c55dc38741c6db3a23a3a1 +size 24709 diff --git a/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Aristide Maillol_0.66843045_1064.jpg b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Aristide Maillol_0.66843045_1064.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4f8e0a06464c42f7993b8c0d7e3ce07c7eeb6fe8 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Aristide Maillol_0.66843045_1064.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:560f73169015f64953e62c398b3b03d45ae0d181a8b321f93b3b844920bc1f89 +size 16183 diff --git a/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Armand Guillaumin_0.7840431_0147.jpg b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Armand Guillaumin_0.7840431_0147.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2855e985ebc8282fcf936dd717456c59ee940e1c --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Armand Guillaumin_0.7840431_0147.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:938f08c73e8fbe08cc588d60a1e81bfb9c172a3322741454f71b754976c94b5c +size 21588 diff --git a/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Arshile Gorky_0.71459055_0544.jpg b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Arshile Gorky_0.71459055_0544.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ee48437230aa6ecc4f968a6dc80da4f0ea7dc074 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Arshile Gorky_0.71459055_0544.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa4010c5e6560b7432cccee27b3cb14fb35c0839dd540edbce8574593c680df2 +size 18122 diff --git a/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Art Spiegelman_0.7656343_0216.jpg b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Art Spiegelman_0.7656343_0216.jpg new file mode 100644 index 0000000000000000000000000000000000000000..866fd99716f93517ea1448e618f17b95fd803d27 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Art Spiegelman_0.7656343_0216.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:538e7c1a4b831db82704c3f398c3b1b91c356ec64f20aefa8e4171af2ac0e804 +size 27393 diff --git a/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Arthur Dove_0.74383533_0319.jpg b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Arthur Dove_0.74383533_0319.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6b7affd569ed760602cb89314580d16ec8f8374f --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Arthur Dove_0.74383533_0319.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd2511deb229ff887a59d3d00b7e2b73a21de0b96f9e63208d402c83eee605a5 +size 13368 diff --git a/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Arthur Garfield Dove_0.6694996_1047.jpg b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Arthur Garfield Dove_0.6694996_1047.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c5e22f1e0eefc0ce5d1d7309a707ee67c3e30bc9 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Arthur Garfield Dove_0.6694996_1047.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d23d963f8ad96e6ae6207b6d6f03086bd589b25e8c5bbb0f93fcf5b41d313f8 +size 11403 diff --git a/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Arthur Lismer_0.7251765_0455.jpg b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Arthur Lismer_0.7251765_0455.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5cb97ec5a0b03d7f2ca854c20766be228c469bda --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Arthur Lismer_0.7251765_0455.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c777230d78e1ad0a68cde386b02b1975069aa104c23a09d8af16f84c300dac5a +size 20174 diff --git a/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Asaf Hanuka_0.72222745_0481.jpg b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Asaf Hanuka_0.72222745_0481.jpg new file mode 100644 index 0000000000000000000000000000000000000000..84a6f1485a304386e8737e95af335fcab867ec91 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Asaf Hanuka_0.72222745_0481.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fba0279aaf9badd29bee41227c022d617383963a6ec2caff244dd17e8ab901a0 +size 19952 diff --git a/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Asger Jorn_0.7129575_0565.jpg b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Asger Jorn_0.7129575_0565.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f9c3cab017780d924bfec479521c51c5c3796497 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Asger Jorn_0.7129575_0565.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ae393e51b41deb02d0326c4351ce108689012f065e2ff6ae7a619f0eea254b2 +size 22805 diff --git a/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Atey Ghailan_0.674873_0975.jpg b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Atey Ghailan_0.674873_0975.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5bacfc2df8738259c2fed5c0f348afc527e4168f --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Atey Ghailan_0.674873_0975.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:582b290fdf8072ef99c9c0525bad2d78e50d07a72f1fa4e7403af21f5af68ca3 +size 9229 diff --git a/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Aubrey Beardsley_0.77970016_0158.jpg b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Aubrey Beardsley_0.77970016_0158.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ba9ce89ef8fd7f5f3c09f9791a2f71806d9957ca --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Aubrey Beardsley_0.77970016_0158.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:effe3cc9aee652eee2640f6226bf5204c9389e24605e457fc9a5f6b32c21aaee +size 27177 diff --git a/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_August Macke_0.8362022_0047.jpg b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_August Macke_0.8362022_0047.jpg new file mode 100644 index 0000000000000000000000000000000000000000..709866e8d3f357e7d99fe7e95a45d6f3f53b7f6b --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_August Macke_0.8362022_0047.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9a6cfdcd6d2210314bcdb0cd3c10dc8a4ed966c80f72c7b3e89af83397a5b6a1 +size 16331 diff --git a/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Auguste Herbin_0.6866145_0598.jpg b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Auguste Herbin_0.6866145_0598.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c99d2e47b6d62f79badae1c91ba0125cdd86881e --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Auguste Herbin_0.6866145_0598.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c34bb2c871af90de884f74eeb1638b2206459ce7bde0fb8b5fbaba76ebd3ed7 +size 18013 diff --git a/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Balthus_0.6314323_1467.jpg b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Balthus_0.6314323_1467.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ab291748bbe2af858286dc234849e761f4515a1c --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Balthus_0.6314323_1467.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aabb23eea6b86d3ed8fe5009b0596a7bd5d2e307539188a43fe187893035ed7b +size 12402 diff --git a/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Banksy_0.80695426_0101.jpg b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Banksy_0.80695426_0101.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f44450bced476da67ff8b487145b8cb8f199e724 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Banksy_0.80695426_0101.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5877f6c62a2206daa8ed95e278ca47e69f8a197bea84064bacce0e5aca706c9a +size 14198 diff --git a/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Barbara Kruger_0.7562784_0257.jpg b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Barbara Kruger_0.7562784_0257.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1bae8533ed8abf7de2b57f2dfcfcfb59c7f518f4 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Barbara Kruger_0.7562784_0257.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:965743fa82c3418087db22cc4e8d8dd54c4c3c4783007104decbaa84f6e01218 +size 29930 diff --git a/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Barbara Takenaga_0.86223894_0022.jpg b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Barbara Takenaga_0.86223894_0022.jpg new file mode 100644 index 0000000000000000000000000000000000000000..789c71b38e01e1833c3be3b38e84cc0dde27c7d7 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Barbara Takenaga_0.86223894_0022.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c969207e69ad490a6f2c6ee28c86cdd1e36c3398648cb247ca48fbd4f5d7657e +size 19263 diff --git a/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Barnett Newman_0.7236389_0470.jpg b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Barnett Newman_0.7236389_0470.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0587dc237c114300b290bd923cc9a7f9e614201d --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Barnett Newman_0.7236389_0470.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:22564bad1f7214948f8e1cc42f5e6220806fb406fc1ff6a8b4a5c3cb7f855489 +size 9983 diff --git a/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Barry McGee_0.77618384_0170.jpg b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Barry McGee_0.77618384_0170.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7fe9259aa263f4182225bdee9ad9ae3ce6dbb9f4 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Barry McGee_0.77618384_0170.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:17db8b54e5c50fe25d5202adb4b3096ef2bf9e052e32c002d31a58dcb5b2de16 +size 25977 diff --git a/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Beauford Delaney_0.72999024_0407.jpg b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Beauford Delaney_0.72999024_0407.jpg new file mode 100644 index 0000000000000000000000000000000000000000..799fa2a8b98d85ccd8ae04ab2e0e066ef1c9d99b --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Beauford Delaney_0.72999024_0407.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40265c58ac69f3cf5b0b8c0bf37ddb363e6b0ea391b2de5d7333fcfd04fe1021 +size 17010 diff --git a/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Ben Nicholson_0.7411573_0335.jpg b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Ben Nicholson_0.7411573_0335.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a485e9c325f7dd81ddc79af68035a819445e3e41 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Ben Nicholson_0.7411573_0335.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c232536509577b6912bcbc8ddd4a19731ae474d919b6beb9e403ca141a89ba1 +size 8581 diff --git a/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Ben Shahn_0.8104582_0090.jpg b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Ben Shahn_0.8104582_0090.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ff4c77bcef3fad703fcc3d32221983b200ed487b --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Ben Shahn_0.8104582_0090.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5c852f22bb9598052d73bcf3b0d29749358f59950bf44dda2b7614fe18f0c0e +size 19895 diff --git a/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Bert Stern_0.53411555_0715.jpg b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Bert Stern_0.53411555_0715.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4b8eb516078bc94fcbc241106b562fdb9663ef8e --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Bert Stern_0.53411555_0715.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f69ff1759a979c83ad2aa7afe2b4131e84c2fffdb2dd1f1222e1182bb16e4be +size 15799 diff --git a/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Bhupen Khakhar_0.8077607_0098.jpg b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Bhupen Khakhar_0.8077607_0098.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fc7e228b97ce4f43634ed43f778fb6d6ab356a83 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Bhupen Khakhar_0.8077607_0098.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a9203cc63c72da2a1c590a812f1f35e837f2785d84bcd2449c49387d5101a0e7 +size 13896 diff --git a/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Bill Traylor_0.73189163_0392.jpg b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Bill Traylor_0.73189163_0392.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fd260ec3802770bf9e329fad8d94e7e015aa7844 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Bill Traylor_0.73189163_0392.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e910066d0c552e7d0a09737f7d4d4338ccc2e4e73a6db6f225a28649e7b81f7a +size 12241 diff --git a/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Billy Childish_0.6902057_0799.jpg b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Billy Childish_0.6902057_0799.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1439fd010feeea4e2f69c0007871e323db0896d9 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Billy Childish_0.6902057_0799.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:04bda4cbf6951365c529f95f79c8aa5378a8c7104ea0c3565261b5b6994f368b +size 17869 diff --git a/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Boris Grigoriev_0.6107853_1672.jpg b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Boris Grigoriev_0.6107853_1672.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f8de141d883f9724dec0a222fff6d9cba638819b --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Boris Grigoriev_0.6107853_1672.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:89d83998ff71a6ee313bbe2e91f045f166cd5c66acebf84a8cf8bdc708596c57 +size 15042 diff --git a/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Botero_0.63843524_1394.jpg b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Botero_0.63843524_1394.jpg new file mode 100644 index 0000000000000000000000000000000000000000..80c42792ad6ddc179daeeae2d8485f3b7d0f23d7 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Botero_0.63843524_1394.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eb967b9744f99476712521e17bc8ff52d03e4a91dc1d1ac9359e2b7a8f8a537f +size 14402 diff --git a/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Brett Whiteley_0.81601924_0079.jpg b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Brett Whiteley_0.81601924_0079.jpg new file mode 100644 index 0000000000000000000000000000000000000000..832f54e6b1ac842d55b91fc846005841784399e1 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Brett Whiteley_0.81601924_0079.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21e63d71eb13dc63dad41da6ea3539ce5e78924a543caf72ae5475596d8adadc +size 16925 diff --git a/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Brian Bolland_0.68496394_0861.jpg b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Brian Bolland_0.68496394_0861.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5946792a173adfeb59e2d6b1d0e80473a97a8d54 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Brian Bolland_0.68496394_0861.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e3eb2869edcf384ac7dd88b19b06a23b420bfc6dbf6da0b851761f203c934d72 +size 25272 diff --git a/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Brian Kesinger_0.63037646_1480.jpg b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Brian Kesinger_0.63037646_1480.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6867462966bc8a5741a37826b59610e317c11759 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Brian Kesinger_0.63037646_1480.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77ba963c9d2a715ff1626da7fd4d45459eb9d4d945bd723c3c6ae3ae396dc2be +size 21302 diff --git a/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Brian Stelfreeze_0.7478351_0296.jpg b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Brian Stelfreeze_0.7478351_0296.jpg new file mode 100644 index 0000000000000000000000000000000000000000..41dfbfb65205b421c419bf5ef168c1d70f40b95c --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Brian Stelfreeze_0.7478351_0296.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:106bc192e954055847c41a58a1e56a47794e63a937532117fd593bab73af6274 +size 19631 diff --git a/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Bridget Bate Tichenor_0.73274165_0387.jpg b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Bridget Bate Tichenor_0.73274165_0387.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c10b3339a1b3d14325c475962a0132ea5f47de3d --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Bridget Bate Tichenor_0.73274165_0387.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fde975a4a1c49342731dd602a8e1ebb49c732d383c3226f4b28ab50ae14a9107 +size 10277 diff --git a/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Bruce McLean_0.76335883_0225.jpg b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Bruce McLean_0.76335883_0225.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ba42f455a976353a45d107ba2dd995fd0598a88b --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Bruce McLean_0.76335883_0225.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:12b6b07a945473861f340055917f1042ea940bb94c5d928bfb669f560a76b69b +size 13184 diff --git a/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Bruce Timm_0.6477877_1307.jpg b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Bruce Timm_0.6477877_1307.jpg new file mode 100644 index 0000000000000000000000000000000000000000..58e19ec6da22325c64b3887b6d7b1cbf1acd7d99 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Bruce Timm_0.6477877_1307.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14e86cb6ef644ef9619b66da0fffd1f46719352a3424af6c6b8557b087efa509 +size 17456 diff --git a/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Catherine Hyde_0.71266896_0570.jpg b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Catherine Hyde_0.71266896_0570.jpg new file mode 100644 index 0000000000000000000000000000000000000000..014eeae0cef9c25ad612553af7745d2f3c1d2e3a --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Catherine Hyde_0.71266896_0570.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf7d7f39a98ba93db45353085bbcaa9a55afd10d73f1c3eacfac814de75677af +size 8567 diff --git a/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Catrin Welz-Stein_0.73117495_0396.jpg b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Catrin Welz-Stein_0.73117495_0396.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4ec219e2dc63d68c4ca030de29b02e322eeae789 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Catrin Welz-Stein_0.73117495_0396.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:04b38355660e5eaca1d55846ef5f8542f1d67831690965942da296745224e5f2 +size 12110 diff --git a/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Chagall_0.8718535_0017.jpg b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Chagall_0.8718535_0017.jpg new file mode 100644 index 0000000000000000000000000000000000000000..643ed31c973ca12cd47b76ea98472cc4b33b01a7 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Chagall_0.8718535_0017.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b935e5c8c864621722dad8b8bc8b4b18a08bec5a741c94a5285b7a8280872a98 +size 20574 diff --git a/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Chaim Soutine_0.73662066_0361.jpg b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Chaim Soutine_0.73662066_0361.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c7809b5ce189efd2dd1d9a5834612fc2d681d5da --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Chaim Soutine_0.73662066_0361.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4da6d591fbabafa9424318a3ddb46d2b7116d4ee7f55b9fd9c3eb6a8e12fda1f +size 22825 diff --git a/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Chantal Joffe_0.70036674_0690.jpg b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Chantal Joffe_0.70036674_0690.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b2417e707e2621dffcf5af94c8b8f092b9b0dcf8 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Chantal Joffe_0.70036674_0690.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b9bfb5b2558a30968b12d94f2c53051652dab5838be4c2be156189f78318d234 +size 16071 diff --git a/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Charles Addams_0.7344034_0375.jpg b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Charles Addams_0.7344034_0375.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fae0bf62450c8ea3cd8c1d40600db678fb07479a --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Charles Addams_0.7344034_0375.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d898df267a3a5916742768043ed0a94a54832c7e7a4360faf60f0daf9b110c60 +size 22522 diff --git a/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Charles Blackman_0.83200824_0055.jpg b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Charles Blackman_0.83200824_0055.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ee09401930747e071060fd80a5ba578f305f5669 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Charles Blackman_0.83200824_0055.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:48c976ab4e3e8f725d78285a1c0ed7997c0c0e5a5000eeac4cae3f6b29d0f4ab +size 11860 diff --git a/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Charles Camoin_0.7395686_0344.jpg b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Charles Camoin_0.7395686_0344.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d0950efc329eb0963944fea35cdc7b350ef9f7f8 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Charles Camoin_0.7395686_0344.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:45758f1db9675df87b70f83c6d149899e18e31c71a188ec84a1af2e2e6ba0dd9 +size 17778 diff --git a/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Charles Demuth_0.71605396_0532.jpg b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Charles Demuth_0.71605396_0532.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8dfd9530f5c9c7909b4e1bb85f8090d40ab6be47 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Charles Demuth_0.71605396_0532.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ea215020a9c771be10f68bdbf339dc2c35a88bc6187af5d215f4f16f299efad1 +size 13493 diff --git a/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Charles E. Burchfield_0.75174403_0276.jpg b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Charles E. Burchfield_0.75174403_0276.jpg new file mode 100644 index 0000000000000000000000000000000000000000..38fc8dfb192e5a77dfcc66051e7404cea7e3efa9 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Charles E. Burchfield_0.75174403_0276.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:00e1850e6acbee680504fd6fe5ae085733668fe741236722cacc0503df61c07a +size 23204 diff --git a/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Charles Gwathmey_0.7394747_0346.jpg b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Charles Gwathmey_0.7394747_0346.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0555e01078a6eedc38ab970ba25770363dd48198 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Charles Gwathmey_0.7394747_0346.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b2b44274b34b906389b8fda534dbccf19a6392e0ee9106d1b75e0ca26b4ba78 +size 11303 diff --git a/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Charles Rennie Mackintosh_0.81297064_0084.jpg b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Charles Rennie Mackintosh_0.81297064_0084.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1bd0f34d709a7f49f89b3c219f0964857a9b8047 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Charles Rennie Mackintosh_0.81297064_0084.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:42926fe9e201c56050c9ca10600ea0ab26a48b8b9c25333a32029bff3ac47b3c +size 22074 diff --git a/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Charline von Heyl_0.753142_0270.jpg b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Charline von Heyl_0.753142_0270.jpg new file mode 100644 index 0000000000000000000000000000000000000000..069c7cb3405a9ffb78ff1faf77fd3d9207d77a1b --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Charline von Heyl_0.753142_0270.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:73251160d12859bc39f37368a6a83dec8ae1d8f083bf20b12cd2ca25449f1b09 +size 29320 diff --git "a/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Cha\303\257m Soutine_0.72603923_0446.jpg" "b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Cha\303\257m Soutine_0.72603923_0446.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..fbf2526fc0e0d22996e932ead55b43045eacd949 --- /dev/null +++ "b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Cha\303\257m Soutine_0.72603923_0446.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a9d9ff28ed482abaf1b577bcc60f7e51909d8c64a80d2bd694becace8adfb8f +size 21287 diff --git a/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Chris Ofili_0.8073793_0100.jpg b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Chris Ofili_0.8073793_0100.jpg new file mode 100644 index 0000000000000000000000000000000000000000..859c3572bf244adf45321ea0a0f6df1987aab0c7 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Chris Ofili_0.8073793_0100.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:786984d77f4014b09a70b0255b51d3898eed334fab2bca77d30a5322d97c6437 +size 19796 diff --git a/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Chris Ware_0.71628594_0528.jpg b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Chris Ware_0.71628594_0528.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fea67f9438239f0ff0565786a8b06c9d942c3ca8 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Chris Ware_0.71628594_0528.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d710a157dfcf5af1b11ad6ccf7ca694518b991627e28bee6e5ca02993751399 +size 20378 diff --git a/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Cleon Peterson_0.74163914_0329.jpg b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Cleon Peterson_0.74163914_0329.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e8677093f407ed81347b193cc1c4318db97fc1d9 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Cleon Peterson_0.74163914_0329.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:93e0721709a048163149fb847549a2b5b65c218bf76753624b6bb15329ca3660 +size 26804 diff --git a/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Coles Phillips_0.7158309_0533.jpg b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Coles Phillips_0.7158309_0533.jpg new file mode 100644 index 0000000000000000000000000000000000000000..70763bdd6a467c5869a9a32257353f043675d065 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Coles Phillips_0.7158309_0533.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:55c38649ea4b7fb7fe570acab2e6d5697daa3ac4d189f8d2070d6c72c05032d6 +size 16813 diff --git a/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Colin McCahon_0.76086944_0233.jpg b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Colin McCahon_0.76086944_0233.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c2a436652df402ebb835e5a4150e2ee1532a3845 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Colin McCahon_0.76086944_0233.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc588e5217861fccb974508adeaa9093c82bc83ae5b84fbc3081633215480245 +size 15073 diff --git a/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Constantin Brancusi_0.7004367_0687.jpg b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Constantin Brancusi_0.7004367_0687.jpg new file mode 100644 index 0000000000000000000000000000000000000000..05e36b40992bceee30d7fe9fab575fbffebe9072 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Constantin Brancusi_0.7004367_0687.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:68faaa47954771f320f5fd09b172177cd07a8ed2441abb17e66ac8da1f67f0af +size 7916 diff --git a/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Craola_0.65639997_1208.jpg b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Craola_0.65639997_1208.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4b04e867f8708ca83342f272e6379611a2970b25 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Craola_0.65639997_1208.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eb7facd4ea11dec160f5726b9e5246b06665fbe6837501388bd203dc161f9081 +size 21081 diff --git a/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Cuno Amiet_0.7979497_0121.jpg b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Cuno Amiet_0.7979497_0121.jpg new file mode 100644 index 0000000000000000000000000000000000000000..11f315bdacb7176ce43f787642e47ca050318b57 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Cuno Amiet_0.7979497_0121.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dce5ba004af92edd7297eda74e6c5b84f8f5b2c41a7222c892b9730d8f70159a +size 15822 diff --git a/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Cy Twombly_0.72814107_0423.jpg b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Cy Twombly_0.72814107_0423.jpg new file mode 100644 index 0000000000000000000000000000000000000000..725dc7a73608f1ecaa6e4b4b9b311a2ac255425b --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_Cy Twombly_0.72814107_0423.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c364845ca446cbed9d7963a141a4c9579d2d207e94a764a8b7c5a96261c7fbb0 +size 13136 diff --git "a/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_C\303\251zanne_0.7879481_0141.jpg" "b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_C\303\251zanne_0.7879481_0141.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..79425925b54f8ff1cb994a3362a9b38f7ec01216 --- /dev/null +++ "b/artists-to-study/ats/thumbnail/spaceship/scribbles/scribbles_C\303\251zanne_0.7879481_0141.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:feed062b0bd4f4eb7371bf5058e94ec115a20f6d3a77ee4ecd83e3c665d6a85a +size 20520 diff --git a/artists-to-study/ats/thumbnail/spaceship/special/special_Akihiko Yoshida_0.5901294_1876.jpg b/artists-to-study/ats/thumbnail/spaceship/special/special_Akihiko Yoshida_0.5901294_1876.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0610310ccd445d0c82916aa4f0e772380aff5985 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/special/special_Akihiko Yoshida_0.5901294_1876.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8409d081177c77b8adf02ee1e3c8cab71880094b0508b9fea649afcb2246ed8e +size 12307 diff --git a/artists-to-study/ats/thumbnail/spaceship/special/special_Alejandro Burdisio_0.47482288_2301.jpg b/artists-to-study/ats/thumbnail/spaceship/special/special_Alejandro Burdisio_0.47482288_2301.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e33a4b5ba186b064b5a5502d3c9095aeeebb4500 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/special/special_Alejandro Burdisio_0.47482288_2301.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e7e12f87b72d0426c9168327a5daa89d8cad87b0f3613e7356a9b29d9bae4ae +size 9865 diff --git a/artists-to-study/ats/thumbnail/spaceship/special/special_Alfonse Mucha_0.7139052_0555.jpg b/artists-to-study/ats/thumbnail/spaceship/special/special_Alfonse Mucha_0.7139052_0555.jpg new file mode 100644 index 0000000000000000000000000000000000000000..973219fd4b7f5a26c70a413b8359743619a4c0eb --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/special/special_Alfonse Mucha_0.7139052_0555.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa318e0b9347fd7dc2ae41511bf3a2a558e7aeab2dcbb262d018ace5397f7cf9 +size 22074 diff --git a/artists-to-study/ats/thumbnail/spaceship/special/special_Alphonse Mucha_0.74171394_0328.jpg b/artists-to-study/ats/thumbnail/spaceship/special/special_Alphonse Mucha_0.74171394_0328.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ef9e3074dadaef1bd6b232e174eaeff8e983b9ca --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/special/special_Alphonse Mucha_0.74171394_0328.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f810b3f8e5ff9482de1dc7697ee2d1b93209d0240bd0020a382916bb86825d15 +size 26016 diff --git a/artists-to-study/ats/thumbnail/spaceship/special/special_Andre Kohn_0.5581832_2193.jpg b/artists-to-study/ats/thumbnail/spaceship/special/special_Andre Kohn_0.5581832_2193.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3321ef48af00eb3088a25e5a00b8a9228b604185 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/special/special_Andre Kohn_0.5581832_2193.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b9f8feff2224152c68856aaa692255bff8b597c85f00da062c54e26a2ab5852 +size 9266 diff --git a/artists-to-study/ats/thumbnail/spaceship/special/special_Andreas Rocha_0.49621177_2334.jpg b/artists-to-study/ats/thumbnail/spaceship/special/special_Andreas Rocha_0.49621177_2334.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3a4380ca97e36dbe8d83746edd3bb1ade5a1bb3f --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/special/special_Andreas Rocha_0.49621177_2334.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e29480e70c4df97587f6bc46c1431650fbe257fce3367e61cd6b999efaff115e +size 11235 diff --git a/artists-to-study/ats/thumbnail/spaceship/special/special_Andy Fairhurst_0.6480388_1304.jpg b/artists-to-study/ats/thumbnail/spaceship/special/special_Andy Fairhurst_0.6480388_1304.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2db5e46925fb9ba5f8f088f32b4f3b2cae4c58cd --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/special/special_Andy Fairhurst_0.6480388_1304.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e69049351a8f7ce44dd913b69e8e2af02080e93c5b852f9d902a6bf32b4838a9 +size 11327 diff --git a/artists-to-study/ats/thumbnail/spaceship/special/special_Bastien L. Deharme_0.583349_1899.jpg b/artists-to-study/ats/thumbnail/spaceship/special/special_Bastien L. Deharme_0.583349_1899.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b4bdb22528979b49dd6736ab6ee2474b374a9a32 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/special/special_Bastien L. Deharme_0.583349_1899.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6aec6027d9254c06c3207a4492d4e8184e9f81adf291742d9953b034b46b2b5b +size 9312 diff --git a/artists-to-study/ats/thumbnail/spaceship/special/special_Charlie Bowater_0.4410439_1768.jpg b/artists-to-study/ats/thumbnail/spaceship/special/special_Charlie Bowater_0.4410439_1768.jpg new file mode 100644 index 0000000000000000000000000000000000000000..83d4c0035f0fe4790af0477a66d8860bcc65f727 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/special/special_Charlie Bowater_0.4410439_1768.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c7721132b9ae31330800423b14091b9dd53fbf2bb764ef8bb389195f0b6f2f4 +size 10470 diff --git a/artists-to-study/ats/thumbnail/spaceship/special/special_Christopher Balaskas_0.67935324_0584.jpg b/artists-to-study/ats/thumbnail/spaceship/special/special_Christopher Balaskas_0.67935324_0584.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fb3f8776a859b19769a341472d551b7424ff30ab --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/special/special_Christopher Balaskas_0.67935324_0584.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a21fc869c8ac8c533feedb6e4a7ee20e18607887d05597a359a0d99d8b7bb11 +size 10605 diff --git a/artists-to-study/ats/thumbnail/spaceship/special/special_Craig Davison_0.499598_2554.jpg b/artists-to-study/ats/thumbnail/spaceship/special/special_Craig Davison_0.499598_2554.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c2a165812a7103cb61c02de7daae3c0e5c169968 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/special/special_Craig Davison_0.499598_2554.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1114acaae82795234dce3495aa807db0d0d2f0b3d871f6efdf880d4cb6fc524e +size 11353 diff --git a/artists-to-study/ats/thumbnail/spaceship/special/special_Daniela Uhlig_0.4691466_0430.jpg b/artists-to-study/ats/thumbnail/spaceship/special/special_Daniela Uhlig_0.4691466_0430.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5540d28147f926d596851fda0e3adf88e6ab3f64 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/special/special_Daniela Uhlig_0.4691466_0430.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d3c2339c080cbd73e587f87d6c402e3d5077c044ca165f3da9a0b9b913d7a89e +size 9662 diff --git a/artists-to-study/ats/thumbnail/spaceship/special/special_Edward Hopper_0.6884258_0822.jpg b/artists-to-study/ats/thumbnail/spaceship/special/special_Edward Hopper_0.6884258_0822.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ce3e1697ce78b53d31b5dd20467e8cf2b9472c31 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/special/special_Edward Hopper_0.6884258_0822.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a3309b3feff0fe87bb9f1a4d9ad567027792325091edef6557f41eb454778c69 +size 12355 diff --git a/artists-to-study/ats/thumbnail/spaceship/special/special_Evgeny Lushpin_0.5714827_2081.jpg b/artists-to-study/ats/thumbnail/spaceship/special/special_Evgeny Lushpin_0.5714827_2081.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4ddbe5f25a09e3302da628f68fb1b47aa8e5849d --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/special/special_Evgeny Lushpin_0.5714827_2081.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cbfbba8db3dfac01c676b099ad2043af491e459ac7a67e3c4095338d1d0045cf +size 11029 diff --git a/artists-to-study/ats/thumbnail/spaceship/special/special_Greg Rutkowski_0.5203395_1999.jpg b/artists-to-study/ats/thumbnail/spaceship/special/special_Greg Rutkowski_0.5203395_1999.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fe1b8890554b8719db5440105211d04fa866a1ec --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/special/special_Greg Rutkowski_0.5203395_1999.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce6d47db192843820e0fafa1760beafb70fe71721141d6fbde6c1f524af6b52f +size 8825 diff --git a/artists-to-study/ats/thumbnail/spaceship/special/special_Grzegorz Rutkowski_0.48906532_2497.jpg b/artists-to-study/ats/thumbnail/spaceship/special/special_Grzegorz Rutkowski_0.48906532_2497.jpg new file mode 100644 index 0000000000000000000000000000000000000000..90cf38f87d4b6cbe862755b92da797a60a66affb --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/special/special_Grzegorz Rutkowski_0.48906532_2497.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c54f4469d63a9c50cb84dcbe73abe3f383fac2010292285ea873701ae88621b1 +size 9223 diff --git a/artists-to-study/ats/thumbnail/spaceship/special/special_Ilya Kuvshinov_0.5805521_1990.jpg b/artists-to-study/ats/thumbnail/spaceship/special/special_Ilya Kuvshinov_0.5805521_1990.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6f2786a78d3d7f4bca06d7347b7fc2051771d06b --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/special/special_Ilya Kuvshinov_0.5805521_1990.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9be1871d2862895ee212002a170a2c9f56d9af63297c53b940f980e8c1867c5d +size 9483 diff --git a/artists-to-study/ats/thumbnail/spaceship/special/special_Ismail Inceoglu_0.72561014_0451.jpg b/artists-to-study/ats/thumbnail/spaceship/special/special_Ismail Inceoglu_0.72561014_0451.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f1e0aa74c355d4dd69daf0ad983df5f19224a618 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/special/special_Ismail Inceoglu_0.72561014_0451.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:62f9322699f01b89fda6c229be7b410d1a2fecb4ef6a7747ffcc618778fcafbb +size 9881 diff --git a/artists-to-study/ats/thumbnail/spaceship/special/special_Jessica Rossier_0.54958373_1816.jpg b/artists-to-study/ats/thumbnail/spaceship/special/special_Jessica Rossier_0.54958373_1816.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0bea02159ac13889658554347691ca50737331e4 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/special/special_Jessica Rossier_0.54958373_1816.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:219a3176ffc1a2bb2bff7f5080d9c4b209a6c816e731081c5d7e69bd68e71a7a +size 8660 diff --git a/artists-to-study/ats/thumbnail/spaceship/special/special_Joe Madureira_0.6377177_1403.jpg b/artists-to-study/ats/thumbnail/spaceship/special/special_Joe Madureira_0.6377177_1403.jpg new file mode 100644 index 0000000000000000000000000000000000000000..57c393ee08d40336222b6570b9a424bafa675c46 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/special/special_Joe Madureira_0.6377177_1403.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ceb78c0eda1d275bd16f18d4b9d0b02f48d793edc21c87cc9bd0ab1ef17c433 +size 21306 diff --git a/artists-to-study/ats/thumbnail/spaceship/special/special_Krenz Cushart_0.59026587_1874.jpg b/artists-to-study/ats/thumbnail/spaceship/special/special_Krenz Cushart_0.59026587_1874.jpg new file mode 100644 index 0000000000000000000000000000000000000000..21f5786586273977016ab548b5117374b0908ff2 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/special/special_Krenz Cushart_0.59026587_1874.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21d9b0fffc675168ed77fe9ce824f1586070ef7ca2ef68b644c7b4aeca6e7c13 +size 10479 diff --git a/artists-to-study/ats/thumbnail/spaceship/special/special_Liam Wong_0.7262276_0443.jpg b/artists-to-study/ats/thumbnail/spaceship/special/special_Liam Wong_0.7262276_0443.jpg new file mode 100644 index 0000000000000000000000000000000000000000..577afa67c7af1cc8c01056730be4f9f6d84a5db5 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/special/special_Liam Wong_0.7262276_0443.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:82c379c4c3e83386bbbff4bc9ed46750401300c28d99c662356bdaa761a0bf01 +size 16502 diff --git a/artists-to-study/ats/thumbnail/spaceship/special/special_Ross Tran_0.5259248_2325.jpg b/artists-to-study/ats/thumbnail/spaceship/special/special_Ross Tran_0.5259248_2325.jpg new file mode 100644 index 0000000000000000000000000000000000000000..89be1a08a47e3cdc7eb263a215d8991802cd6ee6 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/special/special_Ross Tran_0.5259248_2325.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e9b02fb362dbbdecfb5b0a8a0a0eb40cd03782b751582ceac239d1b3cdba9d5f +size 13951 diff --git a/artists-to-study/ats/thumbnail/spaceship/special/special_Ruan Jia_0.5398549_2218.jpg b/artists-to-study/ats/thumbnail/spaceship/special/special_Ruan Jia_0.5398549_2218.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1c982aa11f018fa2de015b345a74ed4c58180ea5 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/special/special_Ruan Jia_0.5398549_2218.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18d940054acd710089130b936681149d5578ad1b4636df30991656e09bcb6bcf +size 9751 diff --git a/artists-to-study/ats/thumbnail/spaceship/special/special_Simon Stalenhag_0.6912775_0790.jpg b/artists-to-study/ats/thumbnail/spaceship/special/special_Simon Stalenhag_0.6912775_0790.jpg new file mode 100644 index 0000000000000000000000000000000000000000..64dbeb754012dd89f90d3cb08735631f63812f04 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/special/special_Simon Stalenhag_0.6912775_0790.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e7749f08914825dfb0f2e80f4bb65603f6312383283b45fb29ddf4f06f055ea +size 7257 diff --git "a/artists-to-study/ats/thumbnail/spaceship/special/special_Taiy\305\215 Matsumoto_0.63372946_1446.jpg" "b/artists-to-study/ats/thumbnail/spaceship/special/special_Taiy\305\215 Matsumoto_0.63372946_1446.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..4808fc8e31b919012e3212419de274abadde908c --- /dev/null +++ "b/artists-to-study/ats/thumbnail/spaceship/special/special_Taiy\305\215 Matsumoto_0.63372946_1446.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a94cb79943ef3d5970d605a267259ccf753d2837cdd619c8b0758d1f739336d +size 12610 diff --git a/artists-to-study/ats/thumbnail/spaceship/special/special_Thomas W Schaller_0.69093937_0793.jpg b/artists-to-study/ats/thumbnail/spaceship/special/special_Thomas W Schaller_0.69093937_0793.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2903b8a6cfb2f076b5bf4a2e2851661adfa0aa3c --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/special/special_Thomas W Schaller_0.69093937_0793.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1320e3fb29b9d675e8d3aa5f9066dffc6860cdc00ce092ba386f9c8fccf7e0f9 +size 12672 diff --git a/artists-to-study/ats/thumbnail/spaceship/ukioe/ukioe_Abdur Rahman Chughtai_0.7004994_0686.jpg b/artists-to-study/ats/thumbnail/spaceship/ukioe/ukioe_Abdur Rahman Chughtai_0.7004994_0686.jpg new file mode 100644 index 0000000000000000000000000000000000000000..510f39a279fbc8696c8be147c7c1432ed433d8fd --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/ukioe/ukioe_Abdur Rahman Chughtai_0.7004994_0686.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ddc759f909848d5787be7f2ef4a7095d48dd0a916c17080e0040ba0726c9faad +size 10722 diff --git a/artists-to-study/ats/thumbnail/spaceship/ukioe/ukioe_Chen Hongshou_0.71268153_0569.jpg b/artists-to-study/ats/thumbnail/spaceship/ukioe/ukioe_Chen Hongshou_0.71268153_0569.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0fd6df5aabf000bcd0b1ee980282608ffec91c34 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/ukioe/ukioe_Chen Hongshou_0.71268153_0569.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c12913e546f00e2645139ecdf36d4ec4a136fd39e7feb2d3a3e774be1ed5fc12 +size 10493 diff --git a/artists-to-study/ats/thumbnail/spaceship/ukioe/ukioe_Emperor Huizong of Song_0.7525214_0273.jpg b/artists-to-study/ats/thumbnail/spaceship/ukioe/ukioe_Emperor Huizong of Song_0.7525214_0273.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d5eb4bad57c4b69283b4c61560c0ced58e3b9f7f --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/ukioe/ukioe_Emperor Huizong of Song_0.7525214_0273.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e6d1e1a9e5630c0cbefd2ddfb4e606f00fc02f859a03709cca77a71f20c3a7fe +size 9864 diff --git a/artists-to-study/ats/thumbnail/spaceship/ukioe/ukioe_Fujiwara Takanobu_0.70410216_0655.jpg b/artists-to-study/ats/thumbnail/spaceship/ukioe/ukioe_Fujiwara Takanobu_0.70410216_0655.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e46dcf12808612f3b49d88cfdd70e8f2308e855d --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/ukioe/ukioe_Fujiwara Takanobu_0.70410216_0655.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:843964bc91fe88edf1c017d13801555890672dafe47b62573cea569b076bacc0 +size 16384 diff --git "a/artists-to-study/ats/thumbnail/spaceship/ukioe/ukioe_Goy\305\215 Hashiguchi_0.7595048_0237.jpg" "b/artists-to-study/ats/thumbnail/spaceship/ukioe/ukioe_Goy\305\215 Hashiguchi_0.7595048_0237.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..d42557f3b28ad8fae11ab10942af60b9e12d55c5 --- /dev/null +++ "b/artists-to-study/ats/thumbnail/spaceship/ukioe/ukioe_Goy\305\215 Hashiguchi_0.7595048_0237.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c80116ec9242335454e4f89c19126944b3e543373d6ce25fde9748127f8d910 +size 18142 diff --git "a/artists-to-study/ats/thumbnail/spaceship/ukioe/ukioe_Hanabusa Itch\305\215 II_0.81187993_0088.jpg" "b/artists-to-study/ats/thumbnail/spaceship/ukioe/ukioe_Hanabusa Itch\305\215 II_0.81187993_0088.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..2c108f50b949330cc779a8074106e3672087a619 --- /dev/null +++ "b/artists-to-study/ats/thumbnail/spaceship/ukioe/ukioe_Hanabusa Itch\305\215 II_0.81187993_0088.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:65c6020c219c4f73a207bf8de74cdf58d0f88a9b3b7db247ccadaf3e67ef5129 +size 18107 diff --git "a/artists-to-study/ats/thumbnail/spaceship/ukioe/ukioe_Hanabusa Itch\305\215_0.68023074_0910.jpg" "b/artists-to-study/ats/thumbnail/spaceship/ukioe/ukioe_Hanabusa Itch\305\215_0.68023074_0910.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..f80d6d807178749fa3c1d168c5bb3d45431ca22e --- /dev/null +++ "b/artists-to-study/ats/thumbnail/spaceship/ukioe/ukioe_Hanabusa Itch\305\215_0.68023074_0910.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6cf8698b0625dc3b81ccc9340ca5f5eddf4c692967dfe67b5c0900f260f2d952 +size 14812 diff --git a/artists-to-study/ats/thumbnail/spaceship/ukioe/ukioe_Hasui Kawase_0.8040483_0108.jpg b/artists-to-study/ats/thumbnail/spaceship/ukioe/ukioe_Hasui Kawase_0.8040483_0108.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a689f23d9d5cf7a3e95345d130d30407b0a9cbc6 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/ukioe/ukioe_Hasui Kawase_0.8040483_0108.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f115af866638850d2cb07c9efd6e76bde93d87ae3b30a64702b3b3683751de3f +size 13406 diff --git a/artists-to-study/ats/thumbnail/spaceship/ukioe/ukioe_Hiroshi Yoshida_0.73787534_0353.jpg b/artists-to-study/ats/thumbnail/spaceship/ukioe/ukioe_Hiroshi Yoshida_0.73787534_0353.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9f57495f776b820f26ce7f476977d33234e2c888 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/ukioe/ukioe_Hiroshi Yoshida_0.73787534_0353.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dbbf44de0ad59368b203003de11e5096c798dd719ea9b847d0d19ce062eeca1b +size 13864 diff --git a/artists-to-study/ats/thumbnail/spaceship/ukioe/ukioe_Hiroshige_0.93995106_0005.jpg b/artists-to-study/ats/thumbnail/spaceship/ukioe/ukioe_Hiroshige_0.93995106_0005.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a20631cdd158efaf8530c6efa339364e42e855e0 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/ukioe/ukioe_Hiroshige_0.93995106_0005.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b350c9fae91d3ebc373bab24e88f3c29d6506f15953de48c11b6eea2443261f +size 17027 diff --git a/artists-to-study/ats/thumbnail/spaceship/ukioe/ukioe_Hishikawa Moronobu_0.7794119_0159.jpg b/artists-to-study/ats/thumbnail/spaceship/ukioe/ukioe_Hishikawa Moronobu_0.7794119_0159.jpg new file mode 100644 index 0000000000000000000000000000000000000000..372052388159d18008518d4052341c693032208e --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/ukioe/ukioe_Hishikawa Moronobu_0.7794119_0159.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b835dd2d852996a851b12266115c90ba85d337039ce41d8ce24e779c44c7d91 +size 18876 diff --git a/artists-to-study/ats/thumbnail/spaceship/ukioe/ukioe_Hokusai_0.85046995_0029.jpg b/artists-to-study/ats/thumbnail/spaceship/ukioe/ukioe_Hokusai_0.85046995_0029.jpg new file mode 100644 index 0000000000000000000000000000000000000000..84d192033c39f4afad1944d4bc6bf0fdf0e414ae --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/ukioe/ukioe_Hokusai_0.85046995_0029.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f675931e3d262a878664cc5f5180fd95bde54ce9d4fb6d76e372560c50f48b04 +size 20043 diff --git a/artists-to-study/ats/thumbnail/spaceship/ukioe/ukioe_Katsushika Hokusai_0.8887236_0008.jpg b/artists-to-study/ats/thumbnail/spaceship/ukioe/ukioe_Katsushika Hokusai_0.8887236_0008.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0b0cec864f263d78dee043f8d528ba4c66a80524 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/ukioe/ukioe_Katsushika Hokusai_0.8887236_0008.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7178a51fff7009242f482e128a4166d154b9bf099f596c4626b2f3b2035b4003 +size 17143 diff --git "a/artists-to-study/ats/thumbnail/spaceship/ukioe/ukioe_Kawanabe Ky\305\215sai_0.86612236_0020.jpg" "b/artists-to-study/ats/thumbnail/spaceship/ukioe/ukioe_Kawanabe Ky\305\215sai_0.86612236_0020.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..6783f81e077ae2539b0f47652e19f190055b3827 --- /dev/null +++ "b/artists-to-study/ats/thumbnail/spaceship/ukioe/ukioe_Kawanabe Ky\305\215sai_0.86612236_0020.jpg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d6a2cdbf55442af1a8f46f93f5c8e42d7a56fe91d0bd30300701dba7b71f5e0 +size 16299 diff --git a/artists-to-study/ats/thumbnail/spaceship/ukioe/ukioe_Kitagawa Utamaro_0.83333457_0051.jpg b/artists-to-study/ats/thumbnail/spaceship/ukioe/ukioe_Kitagawa Utamaro_0.83333457_0051.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0a1c3e758864aabe8d10f75ffe243df7b505d152 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/ukioe/ukioe_Kitagawa Utamaro_0.83333457_0051.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:692df7cb19e2c15bcb329c9cef69f71799941cec354cf61e62842288a75bb134 +size 16300 diff --git a/artists-to-study/ats/thumbnail/spaceship/ukioe/ukioe_Kunisada_0.80493814_0105.jpg b/artists-to-study/ats/thumbnail/spaceship/ukioe/ukioe_Kunisada_0.80493814_0105.jpg new file mode 100644 index 0000000000000000000000000000000000000000..df14c9183925fbb6f0e370ef634629d09b9692c7 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/ukioe/ukioe_Kunisada_0.80493814_0105.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b231b62f546e46508ef7e39854767f032eeda34b5fa284ca756e27b7d61f6e2e +size 21080 diff --git a/artists-to-study/ats/thumbnail/spaceship/ukioe/ukioe_Ohara Koson_0.78132576_0156.jpg b/artists-to-study/ats/thumbnail/spaceship/ukioe/ukioe_Ohara Koson_0.78132576_0156.jpg new file mode 100644 index 0000000000000000000000000000000000000000..07e43ce45b9d0859f93d6609bf24414b3babd8bf --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/ukioe/ukioe_Ohara Koson_0.78132576_0156.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6de77c755b7926b40f7562642401a6c6032835748e54054f1fa817a6dfa4bb5b +size 10604 diff --git a/artists-to-study/ats/thumbnail/spaceship/ukioe/ukioe_Takato Yamamoto_0.78460765_0144.jpg b/artists-to-study/ats/thumbnail/spaceship/ukioe/ukioe_Takato Yamamoto_0.78460765_0144.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5d98d2c145cc987dbd1b55d114c0351050bfe507 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/ukioe/ukioe_Takato Yamamoto_0.78460765_0144.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f4d1faeb2c4a38d280c8bc3bfdd03669b783db4e608ecd9e1e8ccc451627937 +size 19072 diff --git a/artists-to-study/ats/thumbnail/spaceship/ukioe/ukioe_Uemura Shoen_0.7342118_0379.jpg b/artists-to-study/ats/thumbnail/spaceship/ukioe/ukioe_Uemura Shoen_0.7342118_0379.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a47f45b0c1f912b6bd34e3b8bb2a2424eaebd0ce --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/ukioe/ukioe_Uemura Shoen_0.7342118_0379.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3bd4be0d3c2a24795b58f1c47217ce6b1bd1b593539b3197efcaccc53b115414 +size 11527 diff --git a/artists-to-study/ats/thumbnail/spaceship/ukioe/ukioe_Utagawa Hiroshige_0.8728796_0016.jpg b/artists-to-study/ats/thumbnail/spaceship/ukioe/ukioe_Utagawa Hiroshige_0.8728796_0016.jpg new file mode 100644 index 0000000000000000000000000000000000000000..58d2e924eeece834e8ddae0a0dfb49df04410539 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/ukioe/ukioe_Utagawa Hiroshige_0.8728796_0016.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:73ae380af1742e36216ebe388e7a544aa07d5cee1fe3ff7ae7a1cd604d44566f +size 15129 diff --git a/artists-to-study/ats/thumbnail/spaceship/ukioe/ukioe_Yasuo Kuniyoshi_0.79870003_0118.jpg b/artists-to-study/ats/thumbnail/spaceship/ukioe/ukioe_Yasuo Kuniyoshi_0.79870003_0118.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4f01ca904f9bf6f7788480a86964c005468469e3 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/ukioe/ukioe_Yasuo Kuniyoshi_0.79870003_0118.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:41062d269560b7922f1df469ac4c97dab811245b153bc3a872a2fb2d4dfe6e83 +size 18003 diff --git a/artists-to-study/ats/thumbnail/spaceship/weird/weird_Alma Thomas_0.87658304_0014.jpg b/artists-to-study/ats/thumbnail/spaceship/weird/weird_Alma Thomas_0.87658304_0014.jpg new file mode 100644 index 0000000000000000000000000000000000000000..14b6e6f4e6210695a53aa2e477d28abb7e9ba44a --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/weird/weird_Alma Thomas_0.87658304_0014.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f9b5dd3dda70fabfa2d5114d8d47aca4a8828b852dbda71308b6cc3a4027e11 +size 17678 diff --git a/artists-to-study/ats/thumbnail/spaceship/weird/weird_Anne Packard_0.7046703_0652.jpg b/artists-to-study/ats/thumbnail/spaceship/weird/weird_Anne Packard_0.7046703_0652.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bc52b4e8380de12aaa48e1e62eb5b6aa887e2f50 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/weird/weird_Anne Packard_0.7046703_0652.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b3a9e45df4b38141f3da9b69df68f25f74a32a5b6899ac2378d4e3cfafa9b29 +size 10792 diff --git a/artists-to-study/ats/thumbnail/spaceship/weird/weird_Artur Bordalo_0.7364549_0362.jpg b/artists-to-study/ats/thumbnail/spaceship/weird/weird_Artur Bordalo_0.7364549_0362.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3a7d35e6ac279862656b78ba5908cb6d2a9dc529 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/weird/weird_Artur Bordalo_0.7364549_0362.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef487c0246c5fc0e7059b3c22d65db12d67304fa8e6f48c52e7ff65d9a257acc +size 20608 diff --git a/artists-to-study/ats/thumbnail/spaceship/weird/weird_Brandon Mably_0.8128239_0085.jpg b/artists-to-study/ats/thumbnail/spaceship/weird/weird_Brandon Mably_0.8128239_0085.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a79386293e2e249ce3b720f96116111dab6bd3d5 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/weird/weird_Brandon Mably_0.8128239_0085.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b386decf551e6a2a5984250ca540328da5c41ea2ee041cd26f3abe83dad4deb8 +size 25362 diff --git a/artists-to-study/ats/thumbnail/spaceship/weird/weird_Bruno Munari_0.73918355_0349.jpg b/artists-to-study/ats/thumbnail/spaceship/weird/weird_Bruno Munari_0.73918355_0349.jpg new file mode 100644 index 0000000000000000000000000000000000000000..76585ab812219c36b449eaaf68a674ba642090cd --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/weird/weird_Bruno Munari_0.73918355_0349.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2edcd8bf69e7ee2eb3c10cd10825739504335d46197ab3c7a4dd6efd64aaf5a0 +size 14319 diff --git a/artists-to-study/ats/thumbnail/spaceship/weird/weird_Carne Griffiths_0.660091_1157.jpg b/artists-to-study/ats/thumbnail/spaceship/weird/weird_Carne Griffiths_0.660091_1157.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1a087435ee9bdad38ac9ee4160da86078c9e70e1 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/weird/weird_Carne Griffiths_0.660091_1157.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c4d34494f3fa8a88c77328a3a8090ab9416f8099386d49a5c0f6082316580ee +size 24320 diff --git a/artists-to-study/ats/thumbnail/spaceship/weird/weird_Claude Cahun_0.7588153_0243.jpg b/artists-to-study/ats/thumbnail/spaceship/weird/weird_Claude Cahun_0.7588153_0243.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bb12a47358d8b28f291a22888e8e65257b47744a --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/weird/weird_Claude Cahun_0.7588153_0243.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:426eebc8af4ad0af599011cf403ec8bbd1eaf26319c65a71d3b77f7b15a8c76b +size 15889 diff --git a/artists-to-study/ats/thumbnail/spaceship/weird/weird_David Bowie_0.73773724_0355.jpg b/artists-to-study/ats/thumbnail/spaceship/weird/weird_David Bowie_0.73773724_0355.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6d066211278541b71196411350042d466d87a286 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/weird/weird_David Bowie_0.73773724_0355.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f467b7fbdab79bd125cf02914d1819b67b5041e4fce8e958546baa01a5b20fa +size 16453 diff --git a/artists-to-study/ats/thumbnail/spaceship/weird/weird_Eduardo Kobra_0.85036755_0030.jpg b/artists-to-study/ats/thumbnail/spaceship/weird/weird_Eduardo Kobra_0.85036755_0030.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d27ea74c0c192c5bf3962a01a6122fbfb98ae0ac --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/weird/weird_Eduardo Kobra_0.85036755_0030.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc3753bdb35291a754b4b8be29608c482b82f713ace7a00de955ca78b3d32a45 +size 21195 diff --git a/artists-to-study/ats/thumbnail/spaceship/weird/weird_Emily Kame Kngwarreye_0.7532016_0269.jpg b/artists-to-study/ats/thumbnail/spaceship/weird/weird_Emily Kame Kngwarreye_0.7532016_0269.jpg new file mode 100644 index 0000000000000000000000000000000000000000..021f9c0e29032d9c6b36879f10a12c90193f2d8e --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/weird/weird_Emily Kame Kngwarreye_0.7532016_0269.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:902ba83c598ff28845a24df03d593f8d2b483f6e249c26f629dfeada6144a2f3 +size 22133 diff --git a/artists-to-study/ats/thumbnail/spaceship/weird/weird_Frank Auerbach_0.6201102_1582.jpg b/artists-to-study/ats/thumbnail/spaceship/weird/weird_Frank Auerbach_0.6201102_1582.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e9a5f54de0ebc6652f45159ef3a4549b2b82e11f --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/weird/weird_Frank Auerbach_0.6201102_1582.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d1c4530e666ed1abde76ac56f40450f72b92c4bae279af9341b7c4fb95b313e +size 20471 diff --git a/artists-to-study/ats/thumbnail/spaceship/weird/weird_H. R. Giger_0.6456823_1331.jpg b/artists-to-study/ats/thumbnail/spaceship/weird/weird_H. R. Giger_0.6456823_1331.jpg new file mode 100644 index 0000000000000000000000000000000000000000..45ced6491e1491741c296abc13dc5bed87640a71 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/weird/weird_H. R. Giger_0.6456823_1331.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:05f21b25cc1b67e34265ddc9225e007b093cbb9786c1c607fc84307651cec3f7 +size 21964 diff --git a/artists-to-study/ats/thumbnail/spaceship/weird/weird_Hikari Shimoda_0.7104546_0592.jpg b/artists-to-study/ats/thumbnail/spaceship/weird/weird_Hikari Shimoda_0.7104546_0592.jpg new file mode 100644 index 0000000000000000000000000000000000000000..46bdd7ef3f92cb88806f333be203442c751afd75 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/weird/weird_Hikari Shimoda_0.7104546_0592.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b834599852af5874dcd4303fdd6a7b329c253d06c53d4ffe6515c28f954a8e7 +size 20847 diff --git a/artists-to-study/ats/thumbnail/spaceship/weird/weird_Isaac Cordal_0.71046066_0591.jpg b/artists-to-study/ats/thumbnail/spaceship/weird/weird_Isaac Cordal_0.71046066_0591.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1f9952642d6111363dc5dcc2a0f409540047a5cc --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/weird/weird_Isaac Cordal_0.71046066_0591.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86c43afb38531b1ae20ece85ca00fc97532b869cf57f4b11852d655cfb76bb17 +size 8581 diff --git a/artists-to-study/ats/thumbnail/spaceship/weird/weird_Jaume Plensa_0.7756799_0173.jpg b/artists-to-study/ats/thumbnail/spaceship/weird/weird_Jaume Plensa_0.7756799_0173.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f39538d4ccea9e8a8e9b7cb0ed46adca8967a243 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/weird/weird_Jaume Plensa_0.7756799_0173.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e143bd4f299fb5eb8710dbc78f820fed981613c8f7eb64813e26917d1af0b587 +size 20473 diff --git a/artists-to-study/ats/thumbnail/spaceship/weird/weird_Judy Chicago_0.6952246_0741.jpg b/artists-to-study/ats/thumbnail/spaceship/weird/weird_Judy Chicago_0.6952246_0741.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b69019c080437eb56d21fb1b1e8aad38a7c8873e --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/weird/weird_Judy Chicago_0.6952246_0741.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b874fead3f9371d17e8055a03ca31acabb0fc828cfd5b426f9c126b00a3979bf +size 20683 diff --git a/artists-to-study/ats/thumbnail/spaceship/weird/weird_Keith Haring_0.9431302_0004.jpg b/artists-to-study/ats/thumbnail/spaceship/weird/weird_Keith Haring_0.9431302_0004.jpg new file mode 100644 index 0000000000000000000000000000000000000000..54969410dadc4f54904117fc4759082ec0a862d1 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/weird/weird_Keith Haring_0.9431302_0004.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a80b9c36fb1217b69b5dac9ba1d94889706ed81d6224c6d364bf80056021161 +size 32261 diff --git a/artists-to-study/ats/thumbnail/spaceship/weird/weird_OSGEMEOS_0.7829088_0152.jpg b/artists-to-study/ats/thumbnail/spaceship/weird/weird_OSGEMEOS_0.7829088_0152.jpg new file mode 100644 index 0000000000000000000000000000000000000000..857a2579ef93dbbd79303603668b98cea791550a --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/weird/weird_OSGEMEOS_0.7829088_0152.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5dd8819924b6ad66a49c54daf8671651cce4b2455c76909a7efc0bba5f0598e3 +size 14967 diff --git a/artists-to-study/ats/thumbnail/spaceship/weird/weird_Peter Max_0.99715996_0001.jpg b/artists-to-study/ats/thumbnail/spaceship/weird/weird_Peter Max_0.99715996_0001.jpg new file mode 100644 index 0000000000000000000000000000000000000000..38de553731c18fb4e7f468df27b911947c1e01ec --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/weird/weird_Peter Max_0.99715996_0001.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:45dcd9979f56aee71a37e5f8a1cf1bf46344d0b3caa1f9c5e150db63df8bdb86 +size 19633 diff --git a/artists-to-study/ats/thumbnail/spaceship/weird/weird_Rebecca Louise Law_0.81214285_0086.jpg b/artists-to-study/ats/thumbnail/spaceship/weird/weird_Rebecca Louise Law_0.81214285_0086.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5e0b4e298c771b585ddb3c237a33a6cb2ac17cbf --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/weird/weird_Rebecca Louise Law_0.81214285_0086.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:05325c08f525554d565b72edc90faf27cc8a58102d30882b1d24d9e180e02901 +size 18424 diff --git a/artists-to-study/ats/thumbnail/spaceship/weird/weird_Remedios Varo_0.7150927_0541.jpg b/artists-to-study/ats/thumbnail/spaceship/weird/weird_Remedios Varo_0.7150927_0541.jpg new file mode 100644 index 0000000000000000000000000000000000000000..47820203140c408406cad2a4626ad753461dd302 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/weird/weird_Remedios Varo_0.7150927_0541.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ef119a34414e0ac31b47f30d454841c63da82fa4a670e1723116d1fd1c14a33 +size 16808 diff --git a/artists-to-study/ats/thumbnail/spaceship/weird/weird_Roz Chast_0.8432013_0040.jpg b/artists-to-study/ats/thumbnail/spaceship/weird/weird_Roz Chast_0.8432013_0040.jpg new file mode 100644 index 0000000000000000000000000000000000000000..83fbf97207a5e23c96302ed05c425e59b76b33e3 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/weird/weird_Roz Chast_0.8432013_0040.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5500de4e329a8a006d0a6a30733c391769f3d5083a3ecc4d1acac9782412f855 +size 21537 diff --git a/artists-to-study/ats/thumbnail/spaceship/weird/weird_Stephen Gammell_0.74001735_0235.jpg b/artists-to-study/ats/thumbnail/spaceship/weird/weird_Stephen Gammell_0.74001735_0235.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b4df86da8d6588602f42803b6fc3ab1fd964040c --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/weird/weird_Stephen Gammell_0.74001735_0235.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:58d87791071439d642c975ff2ec7f47ecb05605183f0b1929d2ab078e2e97aff +size 11759 diff --git a/artists-to-study/ats/thumbnail/spaceship/weird/weird_Takashi Murakami_0.81338763_0081.jpg b/artists-to-study/ats/thumbnail/spaceship/weird/weird_Takashi Murakami_0.81338763_0081.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fbd4b8a0ad9451a5554d8d5e03d23e1316cbf2a9 --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/weird/weird_Takashi Murakami_0.81338763_0081.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a7a4e63e2035c70e328411c2320c4118d91803fe80091c13748a4237a172956 +size 29325 diff --git a/artists-to-study/ats/thumbnail/spaceship/weird/weird_Yayoi Kusama_0.81886625_0072.jpg b/artists-to-study/ats/thumbnail/spaceship/weird/weird_Yayoi Kusama_0.81886625_0072.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ebc48a28efc122907b728b38abb1b8bbc0c887fd --- /dev/null +++ b/artists-to-study/ats/thumbnail/spaceship/weird/weird_Yayoi Kusama_0.81886625_0072.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ea3518199c69b5e0c924fa8961a2d232e22c6a4a23223b5f3c7351394d207c15 +size 31050 diff --git a/artists-to-study/javascript/artists_to_study.js b/artists-to-study/javascript/artists_to_study.js new file mode 100644 index 0000000000000000000000000000000000000000..da22d0cd26c6d7e2c35882fe188c4482cd702355 --- /dev/null +++ b/artists-to-study/javascript/artists_to_study.js @@ -0,0 +1,22 @@ +document.addEventListener("DOMContentLoaded", function() { + var mutationObserver = new MutationObserver(function(m){ + var galleries = gradioApp().querySelectorAll(`div[id^="ats-gallery"]`); + if (galleries) { + galleries.forEach(gallery => { + gallery.querySelectorAll('button').forEach(el => el.addEventListener( + "click", + event => { + const div = el.querySelector('div'); + if (div){ + const inside_div = div.querySelector('div').textContent + const after_ = inside_div.substring(inside_div.indexOf('_') + 1); + const before_ = after_.substring(0, after_.indexOf('_')); + navigator.clipboard.writeText(decodeURI(before_)); + } + } + )); + }); + } + }); + mutationObserver.observe( gradioApp(), { childList:true, subtree:true }); +}); diff --git a/artists-to-study/scripts/artists_to_study.py b/artists-to-study/scripts/artists_to_study.py new file mode 100644 index 0000000000000000000000000000000000000000..6a3d738804d2b0e15d9856c80f09e7629ced2568 --- /dev/null +++ b/artists-to-study/scripts/artists_to_study.py @@ -0,0 +1,40 @@ +import os +import gradio as gr +from modules import scripts, script_callbacks +root_path = os.path.join(scripts.basedir(), "ats\\thumbnail") + +jpg_paths = ['anime', 'cartoon', 'digipa-high-impact', 'digipa-med-impact', 'digipa-low-impact', 'fareast', 'fineart', 'scribbles', 'special', 'ukioe', 'weird', 'black-white', 'nudity', 'c', 'n'] +prompt_paths = ['dog', 'house', 'portrait', 'spaceship'] + +def get_images(jpg_path): + images = [] + for jpg_image in os.listdir(f"{jpg_path}"): + final_path = f"{jpg_path}\\{jpg_image}" + final_path = final_path.replace('\\', os.sep).replace('/', os.sep) + try: + images.append((final_path, f"{jpg_image}")) + except Exception as e: + print(final_path, e) + return images + +def on_ui_tabs(): + with gr.Blocks() as artists_to_study: + for prompt_path in prompt_paths: + with gr.Tab(prompt_path): + for jpg_path in jpg_paths: + with gr.Tab(jpg_path): + input_path = f"{root_path}\\{prompt_path}\\{jpg_path}" + input_path = input_path.replace('\\', os.sep).replace('/', os.sep) + gallery_label = f"{prompt_path}-{jpg_path}" + txt = gr.Textbox(value=input_path, interactive=False, show_label=False, visible=True) + btn = gr.Button(value="Get Images", elem_id=f"ats-button-{prompt_path}-{jpg_path}") + gallery = gr.Gallery(label=gallery_label, show_label=True, elem_id=f"ats-gallery-{prompt_path}-{jpg_path}").style(grid=[5], height="auto") + btn.click(get_images, txt, gallery) + gr.HTML( + """ +

artists to study extension by camenduru | github | twitter | youtube | hi-res images
All images generated with CompVis/stable-diffusion-v1-4 + artists.csv | License: Attribution 4.0 International (CC BY 4.0)

+ """ + ) + return (artists_to_study, "Artists To Study", "artists_to_study"), + +script_callbacks.on_ui_tabs(on_ui_tabs) diff --git a/catpuccin/.gitignore b/catpuccin/.gitignore new file mode 100644 index 0000000000000000000000000000000000000000..95433d4589a078c92f18ad9a9782d1685af4381b --- /dev/null +++ b/catpuccin/.gitignore @@ -0,0 +1,3 @@ +.DS_Store + +__pycache__/ diff --git a/catpuccin/LICENSE b/catpuccin/LICENSE new file mode 100644 index 0000000000000000000000000000000000000000..006383b861d7a9b11ebbaf84ec679b0e3c189bac --- /dev/null +++ b/catpuccin/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2021 Catppuccin + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/catpuccin/README.md b/catpuccin/README.md new file mode 100644 index 0000000000000000000000000000000000000000..44271d949842c8ce7abe3b622b8622c5b8090a0b --- /dev/null +++ b/catpuccin/README.md @@ -0,0 +1,103 @@ +

+ Logo
+ + Catppuccin for Stable Diffusion Web UI + +

+ +

+ + + +

+ +

+ +

+ +## Previews + +
+🌻 Latte + +
+
+🪴 Frappé + +
+
+🌺 Macchiato + +
+
+🌿 Mocha + +
+ +## Usage + +### Extension (Recommended) + +1. Open WebUI +2. Click on the "Extensions" tab +3. Click on the "Install from URL" subsection +4. Paste `https://github.com/catppuccin/stable-diffusion-webui` into the URL spot, set the local directory name to `Catppuccin Theme`, and install +5. Go to "Installed" subsection and click "Apply and restart UI" +6. Configure the theme from the "Settings" tab under "Catppuccin Theme", afterwards you must "Apply Settings" and "Reload UI" + +### Extension (Extension index) + +NOTE: This method will install the theme under the name "stable-diffusion-webui". You can read more about this issue in the next section. + +1. Open WebUI +2. Click on the "Extensions" tab and navigate to "Available" +3. Click "Load From:" and find and install "Catppuccin Theme" from the list +4. Go to "Installed" subsection and click "Apply and restart UI" +5. Configure the theme from the "Settings" tab under "Catppuccin Theme", afterwards you must "Apply Settings" and "Reload UI" + +### Add directly + +1. Clone this repository locally +2. Create the file `user.css` in your stable-diffusion-webui directory +3. Copy the contents of the desired flavor into `user.css` +4. Restart the Web UI or click "Reload UI" at the bottom of the screen + +## NOTE + +Due to catppuccin naming conventions and limitations in webui's extension names, this extension will come up as "stable-diffusion-webui" in the extension update section. I have proposed a solution to WebUI [here](https://github.com/catppuccin/stable-diffusion-webui/issues/5#issuecomment-1420599298), feel free to upvote it increase the chances of this issue being resolved. + +## 🙋 FAQ + +- Q: **_"I decided not to use the extennsion, how do I change the accent color?"_**\ + A: Open `user.css` and set the variavble `--accent: var(--{preferred color});` +- Q: **_"The theme isn't being applied???"_**\ + A: Sometimes Web UI doesn't automatically figure out your preferred theme. Try adding `/?__theme=dark` to the url and see if the theme is applied. Below are the steps to make this change persistent on different systems: + + - **Linux / MacOS**: Edit `webui-user.sh` and uncomment and set this variable as `export COMMANDLINE_ARGS="--theme=dark $COMMANDLINE_ARGS"` + - **Windows**: Edit `webui-user.bat` and set this variable by `set COMMANDLINE_ARGS=--theme=dark`. + + If you are still having trouble then consult the relevant part of the [webui wiki](https://github.com/AUTOMATIC1111/stable-diffusion-webui/wiki/Features#usercss). + +- Q: **_"Why doesn't the theme look like the previews?"_**\ + A: The main UI is constantly being changed upstream, so our previews may not match what the theme will look like for you. Though the previews may be behind, we are frequently updating the themes whenever there is a change in the Web UI repo. Though if you notice a style issue with a recent version of webui, feel free to open an issue on this repo. +- Q: **_"Why isn't {extension} themed?"_**\ + A: Some extensions use their own style sheets that don't play nice with `user.css`. + +## 💝 Thanks to + +- [Kettukaa](https://github.com/Kettukaa) +- [Ryan Cao](https://github.com/ryanccn) + +  + +

+ +

+ +

+ Copyright © 2021-present Catppuccin Org +

+ +

+ +

diff --git a/catpuccin/assets/.gitkeep b/catpuccin/assets/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/catpuccin/assets/frappe.webp b/catpuccin/assets/frappe.webp new file mode 100644 index 0000000000000000000000000000000000000000..b622167c9ac9f8c8eb41dc2252c02adbfb7ebbb7 --- /dev/null +++ b/catpuccin/assets/frappe.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac07e5b65cb6e497cc74239d0f75a50d1404e4ea3bf7b9ff31d1e9aa015b8328 +size 97892 diff --git a/catpuccin/assets/latte.webp b/catpuccin/assets/latte.webp new file mode 100644 index 0000000000000000000000000000000000000000..23bebdc93d8ea11f205167d9ac368bf114c2b781 --- /dev/null +++ b/catpuccin/assets/latte.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9601899d6c4ebefd194a37e0fb73cd18f8357cf9a2cf92928dd77062fa17377c +size 97186 diff --git a/catpuccin/assets/macchiato.webp b/catpuccin/assets/macchiato.webp new file mode 100644 index 0000000000000000000000000000000000000000..07390ca0fb8dad1704a18f794f9384f047b43550 --- /dev/null +++ b/catpuccin/assets/macchiato.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a28da672b33dfa9a59c63ae61341b759820991300fbdd18d84965a278be7491b +size 99938 diff --git a/catpuccin/assets/mocha.webp b/catpuccin/assets/mocha.webp new file mode 100644 index 0000000000000000000000000000000000000000..4305182e9a26dc864d5fcc3bd8883f18d00c5898 --- /dev/null +++ b/catpuccin/assets/mocha.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6afa967e0ac158c16a8819defae9b9c5a6393eb858dcd037855209ab7deca0b0 +size 103522 diff --git a/catpuccin/assets/res.webp b/catpuccin/assets/res.webp new file mode 100644 index 0000000000000000000000000000000000000000..004e86174e12e52a94f369ec62ff1f95a01ecd62 --- /dev/null +++ b/catpuccin/assets/res.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1541e93373eb7da7a50ba1d2ed1234468423ec9eaae85261e88fa5061689350f +size 863074 diff --git a/catpuccin/flavors/frappe.css b/catpuccin/flavors/frappe.css new file mode 100644 index 0000000000000000000000000000000000000000..335347c1f74e2e3a4143c84e61706659b21afb73 --- /dev/null +++ b/catpuccin/flavors/frappe.css @@ -0,0 +1,354 @@ +:root { + --ctp-rosewater: #f2d5cf; + --ctp-flamingo: #eebebe; + --ctp-pink: #f4b8e4; + --ctp-mauve: #ca9ee6; + --ctp-red: #e78284; + --ctp-maroon: #ea999c; + --ctp-peach: #ef9f76; + --ctp-yellow: #e5c890; + --ctp-green: #a6d189; + --ctp-teal: #81c8be; + --ctp-sky: #99d1db; + --ctp-sapphire: #85c1dc; + --ctp-blue: #8caaee; + --ctp-lavender: #babbf1; + --ctp-text: #c6d0f5; + --ctp-subtext1: #b5bfe2; + --ctp-subtext0: #a5adce; + --ctp-overlay2: #949cbb; + --ctp-overlay1: #838ba7; + --ctp-overlay0: #737994; + --ctp-surface2: #626880; + --ctp-surface1: #51576d; + --ctp-surface0: #414559; + --ctp-base: #303446; + --ctp-mantle: #292c3c; + --ctp-crust: #232634; + --shadow: #010409; + --ctp-accent: var(--ctp-maroon); + color-scheme: light; +} + +:root, +.dark { + --body-background-fill: var(--background-fill-primary); + --body-text-color: var(--ctp-subtext0); + --color-accent-soft: var(--ctp-surface0); + --background-fill-primary: var(--ctp-mantle); + --background-fill-secondary: var(--ctp-base); + --border-color-accent: var(--ctp-surface0); + --border-color-primary: var(--ctp-surface1); + --link-text-color-active: var(--ctp-subtext0); + --link-text-color: var(--ctp-subtext0); + --link-text-color-hover: var(--ctp-accent); + --link-text-color-visited: var(--ctp-subtext0); + --body-text-color-subdued: var(--ctp-subtext0); + --shadow-spread: 1px; + --block-background-fill: var(--ctp-mantle); + --block-border-color: var(--border-color-primary); + --block_border_width: None; + --block-info-text-color: var(--body-text-color-subdued); + --block-label-background-fill: var(--background-fill-secondary); + --block-label-border-color: var(--border-color-primary); + --block_label_border_width: None; + --block-label-text-color: var(--ctp-text); + --block_shadow: None; + --block_title_background_fill: None; + --block_title_border_color: None; + --block_title_border_width: None; + --block-title-text-color: var(--ctp-text); + --panel-background-fill: var(--background-fill-secondary); + --panel-border-color: var(--border-color-primary); + --panel_border_width: None; + --checkbox-background-color: var(--ctp-surface1); + --checkbox-background-color-focus: var(--checkbox-background-color); + --checkbox-background-color-hover: var(--checkbox-background-color); + --checkbox-background-color-selected: var(--ctp-accent); + --checkbox-border-color: var(--ctp-surface0); + --checkbox-border-color-focus: var(--ctp-overlay0); + --checkbox-border-color-hover: var(--ctp-surface0); + --checkbox-border-color-selected: var(--ctp-overlay0); + --checkbox-border-width: var(--input-border-width); + --checkbox-label-background-fill: var(--ctp-surface0); + --checkbox-label-background-fill-hover: var(--ctp-surface0); + --checkbox-label-background-fill-selected: var( + --checkbox-label-background-fill + ); + --checkbox-label-border-color: var(--border-color-primary); + --checkbox-label-border-color-hover: var(--checkbox-label-border-color); + --checkbox-label-border-width: var(--input-border-width); + --checkbox-label-text-color: var(--body-text-color); + --checkbox-label-text-color-selected: var(--checkbox-label-text-color); + --error-background-fill: var(--background-fill-primary); + --error-border-color: var(--border-color-primary); + --error_border_width: None; + --error-text-color: var(--ctp-red); + --input-background-fill: var(--ctp-base); + --input-background-fill-focus: var(--input-background-fill); + --input-background-fill-hover: var(--input-background-fill); + --input-border-color: var(--border-color-primary); + --input-border-color-focus: var(--neutral-700); + --input-border-color-hover: var(--input-border-color); + --input_border_width: None; + --input-placeholder-color: var(--neutral-500); + --input_shadow: None; + --input-shadow-focus: 0 0 0 var(--shadow-spread) var(--neutral-700), + var(--shadow-inset); + --loader_color: None; + --slider_color: None; + --stat-background-fill: linear-gradient( + to right, + var(--primary-400), + var(--primary-600) + ); + --table-border-color: var(--neutral-700); + --table-even-background-fill: var(--neutral-950); + --table-odd-background-fill: var(--neutral-900); + --table-row-focus: var(--color-accent-soft); + --button-border-width: var(--input-border-width); + --button-cancel-background-fill: var(--ctp-red); + --button-cancel-background-fill-hover: var(--ctp-red); + --button-cancel-border-color: var(--ctp-red); + --button-cancel-border-color-hover: var(--button-cancel-border-color); + --button-cancel-text-color: var(--ctp-base); + --button-cancel-text-color-hover: var(--button-cancel-text-color); + --button-primary-background-fill: var(--ctp-accent); + --button-primary-background-fill-hover: var(--ctp-accent); + --button-primary-border-color: var(--ctp-accent); + --button-primary-border-color-hover: var(--button-primary-border-color); + --button-primary-text-color: var(--ctp-base); + --button-primary-text-color-hover: var(--button-primary-text-color); + --button-secondary-background-fill: var(--ctp-surface0); + --button-secondary-background-fill-hover: var(--ctp-surface0); + --button-secondary-border-color: var(--ctp-surface0); + --button-secondary-border-color-hover: var(--button-secondary-border-color); + --button-secondary-text-color: var(--ctp-text); + --button-secondary-text-color-hover: var(--button-secondary-text-color); +} + +.gradio-button:hover { + filter: brightness(130%); +} + +input[type='range']::-ms-track { + background: transparent; +} + +input[type='range']::-ms-fill-lower { + background: var(--ctp-accent); + border-radius: 10px; +} +input[type='range']::-ms-fill-upper { + background: var(--ctp-overlay0); + border-radius: 10px; +} + +input[type='range']:focus::-ms-fill-lower { + background: var(--ctp-accent); +} +input[type='range']:focus::-ms-fill-upper { + background: var(--ctp-overlay0); +} + +/* Chrome, Safari, Edge, Opera */ +input::-webkit-outer-spin-button, +input::-webkit-inner-spin-button { + -webkit-appearance: none; + margin: 0; +} + +/* Firefox */ +input[type='number'] { + -moz-appearance: textfield; +} +.gr-box > div > div > input.gr-text-input { + width: 4em; +} + +.progressDiv .progress { + background: var(--ctp-accent); + color: var(--shadow); +} + +.dark .progressDiv, +.progressDiv { + background-color: var(--ctp-surface0); +} + +input[type='range'] { + font-size: 1.5rem; +} + +input[type='range'] { + color: var(--accent); + --thumb-height: 0.5em; + --track-height: 0.125em; + --track-color: var(--ctp-surface0); + --brightness-hover: 130%; + --brightness-down: 80%; + --clip-edges: 0.125em; +} + +input[type='range'].win10-thumb { + color: var(--ctp-accent); + + --thumb-height: 0.5em; + --thumb-width: 0.5em; + --clip-edges: 0.0125em; +} + +@media (prefers-color-scheme: dark) { + input[type='range'] { + color: var(--ctp-accent); + --track-color: var(--ctp-surface0); + } + + input[type='range'].win10-thumb { + color: var(--ctp-accent); + } +} + +/* === range commons === */ +input[type='range'] { + position: relative; + background: #fff0; + overflow: hidden; +} + +input[type='range']:active { + cursor: grabbing; +} + +input[type='range']:disabled { + filter: grayscale(1); + opacity: 0.3; + cursor: not-allowed; +} + +/* === WebKit specific styles === */ +input[type='range'], +input[type='range']::-webkit-slider-runnable-track, +input[type='range']::-webkit-slider-thumb { + -webkit-appearance: none; + transition: all ease 100ms; + height: var(--thumb-height); +} + +input[type='range']::-webkit-slider-runnable-track, +input[type='range']::-webkit-slider-thumb { + position: relative; +} + +input[type='range']::-webkit-slider-thumb { + --thumb-radius: calc((var(--thumb-height) * 0.5) - 1px); + --clip-top: calc((var(--thumb-height) - var(--track-height)) * 0.5 - 0.5px); + --clip-bottom: calc(var(--thumb-height) - var(--clip-top)); + --clip-further: calc(100% + 1px); + --box-fill: calc(-100vmax - var(--thumb-width, var(--thumb-height))) 0 0 + 100vmax currentColor; + + width: var(--thumb-width, var(--thumb-height)); + background: linear-gradient(currentColor 0 0) scroll no-repeat left center / + 50% calc(var(--track-height) + 1px); + background-color: currentColor; + box-shadow: var(--box-fill); + border-radius: var(--thumb-width, var(--thumb-height)); + + filter: brightness(100%); + clip-path: polygon( + 100% -1px, + var(--clip-edges) -1px, + 0 var(--clip-top), + -100vmax var(--clip-top), + -100vmax var(--clip-bottom), + 0 var(--clip-bottom), + var(--clip-edges) 100%, + var(--clip-further) var(--clip-further) + ); +} + +input[type='range']:hover::-webkit-slider-thumb { + filter: brightness(var(--brightness-hover)); + cursor: grab; +} + +input[type='range']:active::-webkit-slider-thumb { + filter: brightness(var(--brightness-down)); + cursor: grabbing; +} + +input[type='range']::-webkit-slider-runnable-track { + background: linear-gradient(var(--track-color) 0 0) scroll no-repeat center / + 100% calc(var(--track-height) + 1px); +} + +input[type='range']:disabled::-webkit-slider-thumb { + cursor: not-allowed; +} + +/* === Firefox specific styles === */ +input[type='range'], +input[type='range']::-moz-range-track, +input[type='range']::-moz-range-thumb { + appearance: none; + transition: all ease 100ms; + height: var(--thumb-height); +} + +input[type='range']::-moz-range-track, +input[type='range']::-moz-range-thumb, +input[type='range']::-moz-range-progress { + background: #fff0; +} + +input[type='range']::-moz-range-thumb { + background: currentColor; + border: 0; + width: var(--thumb-width, var(--thumb-height)); + border-radius: var(--thumb-width, var(--thumb-height)); + cursor: grab; +} + +input[type='range']:active::-moz-range-thumb { + cursor: grabbing; +} + +input[type='range']::-moz-range-track { + width: 100%; + background: var(--track-color); +} + +input[type='range']::-moz-range-progress { + appearance: none; + background: currentColor; + transition-delay: 30ms; +} + +input[type='range']::-moz-range-track, +input[type='range']::-moz-range-progress { + height: calc(var(--track-height) + 1px); + border-radius: var(--track-height); +} + +input[type='range']::-moz-range-thumb, +input[type='range']::-moz-range-progress { + filter: brightness(100%); +} + +input[type='range']:hover::-moz-range-thumb, +input[type='range']:hover::-moz-range-progress { + filter: brightness(var(--brightness-hover)); +} + +input[type='range']:active::-moz-range-thumb, +input[type='range']:active::-moz-range-progress { + filter: brightness(var(--brightness-down)); +} + +input[type='range']:disabled::-moz-range-thumb { + cursor: not-allowed; +} + +/* all of the input range stuff is from this guy*/ +/* Shout out to them https://codepen.io/ShadowShahriar/pen/zYPPYrQ */ diff --git a/catpuccin/flavors/latte.css b/catpuccin/flavors/latte.css new file mode 100644 index 0000000000000000000000000000000000000000..ae914653355cb841ac32899595ce609e8493a4d9 --- /dev/null +++ b/catpuccin/flavors/latte.css @@ -0,0 +1,354 @@ +:root { + --ctp-rosewater: #dc8a78; + --ctp-flamingo: #dd7878; + --ctp-pink: #ea76cb; + --ctp-mauve: #8839ef; + --ctp-red: #d20f39; + --ctp-maroon: #e64553; + --ctp-peach: #fe640b; + --ctp-yellow: #df8e1d; + --ctp-green: #40a02b; + --ctp-teal: #179299; + --ctp-sky: #04a5e5; + --ctp-sapphire: #209fb5; + --ctp-blue: #1e66f5; + --ctp-lavender: #7287fd; + --ctp-text: #4c4f69; + --ctp-subtext1: #5c5f77; + --ctp-subtext0: #6c6f85; + --ctp-overlay2: #7c7f93; + --ctp-overlay1: #8c8fa1; + --ctp-overlay0: #9ca0b0; + --ctp-surface2: #acb0be; + --ctp-surface1: #bcc0cc; + --ctp-surface0: #ccd0da; + --ctp-base: #eff1f5; + --ctp-mantle: #e6e9ef; + --ctp-crust: #dce0e8; + --shadow: #dbdfef; + --ctp-accent: var(--ctp-maroon); + color-scheme: light; +} + +:root, +.dark { + --body-background-fill: var(--background-fill-primary); + --body-text-color: var(--ctp-subtext0); + --color-accent-soft: var(--ctp-surface0); + --background-fill-primary: var(--ctp-mantle); + --background-fill-secondary: var(--ctp-base); + --border-color-accent: var(--ctp-surface0); + --border-color-primary: var(--ctp-surface1); + --link-text-color-active: var(--ctp-subtext0); + --link-text-color: var(--ctp-subtext0); + --link-text-color-hover: var(--ctp-accent); + --link-text-color-visited: var(--ctp-subtext0); + --body-text-color-subdued: var(--ctp-subtext0); + --shadow-spread: 1px; + --block-background-fill: var(--ctp-mantle); + --block-border-color: var(--border-color-primary); + --block_border_width: None; + --block-info-text-color: var(--body-text-color-subdued); + --block-label-background-fill: var(--background-fill-secondary); + --block-label-border-color: var(--border-color-primary); + --block_label_border_width: None; + --block-label-text-color: var(--ctp-text); + --block_shadow: None; + --block_title_background_fill: None; + --block_title_border_color: None; + --block_title_border_width: None; + --block-title-text-color: var(--ctp-text); + --panel-background-fill: var(--background-fill-secondary); + --panel-border-color: var(--border-color-primary); + --panel_border_width: None; + --checkbox-background-color: var(--ctp-surface1); + --checkbox-background-color-focus: var(--checkbox-background-color); + --checkbox-background-color-hover: var(--checkbox-background-color); + --checkbox-background-color-selected: var(--ctp-accent); + --checkbox-border-color: var(--ctp-surface0); + --checkbox-border-color-focus: var(--ctp-overlay0); + --checkbox-border-color-hover: var(--ctp-surface0); + --checkbox-border-color-selected: var(--ctp-overlay0); + --checkbox-border-width: var(--input-border-width); + --checkbox-label-background-fill: var(--ctp-surface0); + --checkbox-label-background-fill-hover: var(--ctp-surface0); + --checkbox-label-background-fill-selected: var( + --checkbox-label-background-fill + ); + --checkbox-label-border-color: var(--border-color-primary); + --checkbox-label-border-color-hover: var(--checkbox-label-border-color); + --checkbox-label-border-width: var(--input-border-width); + --checkbox-label-text-color: var(--body-text-color); + --checkbox-label-text-color-selected: var(--checkbox-label-text-color); + --error-background-fill: var(--background-fill-primary); + --error-border-color: var(--border-color-primary); + --error_border_width: None; + --error-text-color: var(--ctp-red); + --input-background-fill: var(--ctp-base); + --input-background-fill-focus: var(--input-background-fill); + --input-background-fill-hover: var(--input-background-fill); + --input-border-color: var(--border-color-primary); + --input-border-color-focus: var(--neutral-700); + --input-border-color-hover: var(--input-border-color); + --input_border_width: None; + --input-placeholder-color: var(--neutral-500); + --input_shadow: None; + --input-shadow-focus: 0 0 0 var(--shadow-spread) var(--neutral-700), + var(--shadow-inset); + --loader_color: None; + --slider_color: None; + --stat-background-fill: linear-gradient( + to right, + var(--primary-400), + var(--primary-600) + ); + --table-border-color: var(--neutral-700); + --table-even-background-fill: var(--neutral-950); + --table-odd-background-fill: var(--neutral-900); + --table-row-focus: var(--color-accent-soft); + --button-border-width: var(--input-border-width); + --button-cancel-background-fill: var(--ctp-red); + --button-cancel-background-fill-hover: var(--ctp-red); + --button-cancel-border-color: var(--ctp-red); + --button-cancel-border-color-hover: var(--button-cancel-border-color); + --button-cancel-text-color: var(--ctp-base); + --button-cancel-text-color-hover: var(--button-cancel-text-color); + --button-primary-background-fill: var(--ctp-accent); + --button-primary-background-fill-hover: var(--ctp-accent); + --button-primary-border-color: var(--ctp-accent); + --button-primary-border-color-hover: var(--button-primary-border-color); + --button-primary-text-color: var(--ctp-base); + --button-primary-text-color-hover: var(--button-primary-text-color); + --button-secondary-background-fill: var(--ctp-surface0); + --button-secondary-background-fill-hover: var(--ctp-surface0); + --button-secondary-border-color: var(--ctp-surface0); + --button-secondary-border-color-hover: var(--button-secondary-border-color); + --button-secondary-text-color: var(--ctp-text); + --button-secondary-text-color-hover: var(--button-secondary-text-color); +} + +.gradio-button:hover { + filter: brightness(130%); +} + +input[type='range']::-ms-track { + background: transparent; +} + +input[type='range']::-ms-fill-lower { + background: var(--ctp-accent); + border-radius: 10px; +} +input[type='range']::-ms-fill-upper { + background: var(--ctp-overlay0); + border-radius: 10px; +} + +input[type='range']:focus::-ms-fill-lower { + background: var(--ctp-accent); +} +input[type='range']:focus::-ms-fill-upper { + background: var(--ctp-overlay0); +} + +/* Chrome, Safari, Edge, Opera */ +input::-webkit-outer-spin-button, +input::-webkit-inner-spin-button { + -webkit-appearance: none; + margin: 0; +} + +/* Firefox */ +input[type='number'] { + -moz-appearance: textfield; +} +.gr-box > div > div > input.gr-text-input { + width: 4em; +} + +.progressDiv .progress { + background: var(--ctp-accent); + color: var(--shadow); +} + +.dark .progressDiv, +.progressDiv { + background-color: var(--ctp-surface0); +} + +input[type='range'] { + font-size: 1.5rem; +} + +input[type='range'] { + color: var(--accent); + --thumb-height: 0.5em; + --track-height: 0.125em; + --track-color: var(--ctp-surface0); + --brightness-hover: 130%; + --brightness-down: 80%; + --clip-edges: 0.125em; +} + +input[type='range'].win10-thumb { + color: var(--ctp-accent); + + --thumb-height: 0.5em; + --thumb-width: 0.5em; + --clip-edges: 0.0125em; +} + +@media (prefers-color-scheme: dark) { + input[type='range'] { + color: var(--ctp-accent); + --track-color: var(--ctp-surface0); + } + + input[type='range'].win10-thumb { + color: var(--ctp-accent); + } +} + +/* === range commons === */ +input[type='range'] { + position: relative; + background: #fff0; + overflow: hidden; +} + +input[type='range']:active { + cursor: grabbing; +} + +input[type='range']:disabled { + filter: grayscale(1); + opacity: 0.3; + cursor: not-allowed; +} + +/* === WebKit specific styles === */ +input[type='range'], +input[type='range']::-webkit-slider-runnable-track, +input[type='range']::-webkit-slider-thumb { + -webkit-appearance: none; + transition: all ease 100ms; + height: var(--thumb-height); +} + +input[type='range']::-webkit-slider-runnable-track, +input[type='range']::-webkit-slider-thumb { + position: relative; +} + +input[type='range']::-webkit-slider-thumb { + --thumb-radius: calc((var(--thumb-height) * 0.5) - 1px); + --clip-top: calc((var(--thumb-height) - var(--track-height)) * 0.5 - 0.5px); + --clip-bottom: calc(var(--thumb-height) - var(--clip-top)); + --clip-further: calc(100% + 1px); + --box-fill: calc(-100vmax - var(--thumb-width, var(--thumb-height))) 0 0 + 100vmax currentColor; + + width: var(--thumb-width, var(--thumb-height)); + background: linear-gradient(currentColor 0 0) scroll no-repeat left center / + 50% calc(var(--track-height) + 1px); + background-color: currentColor; + box-shadow: var(--box-fill); + border-radius: var(--thumb-width, var(--thumb-height)); + + filter: brightness(100%); + clip-path: polygon( + 100% -1px, + var(--clip-edges) -1px, + 0 var(--clip-top), + -100vmax var(--clip-top), + -100vmax var(--clip-bottom), + 0 var(--clip-bottom), + var(--clip-edges) 100%, + var(--clip-further) var(--clip-further) + ); +} + +input[type='range']:hover::-webkit-slider-thumb { + filter: brightness(var(--brightness-hover)); + cursor: grab; +} + +input[type='range']:active::-webkit-slider-thumb { + filter: brightness(var(--brightness-down)); + cursor: grabbing; +} + +input[type='range']::-webkit-slider-runnable-track { + background: linear-gradient(var(--track-color) 0 0) scroll no-repeat center / + 100% calc(var(--track-height) + 1px); +} + +input[type='range']:disabled::-webkit-slider-thumb { + cursor: not-allowed; +} + +/* === Firefox specific styles === */ +input[type='range'], +input[type='range']::-moz-range-track, +input[type='range']::-moz-range-thumb { + appearance: none; + transition: all ease 100ms; + height: var(--thumb-height); +} + +input[type='range']::-moz-range-track, +input[type='range']::-moz-range-thumb, +input[type='range']::-moz-range-progress { + background: #fff0; +} + +input[type='range']::-moz-range-thumb { + background: currentColor; + border: 0; + width: var(--thumb-width, var(--thumb-height)); + border-radius: var(--thumb-width, var(--thumb-height)); + cursor: grab; +} + +input[type='range']:active::-moz-range-thumb { + cursor: grabbing; +} + +input[type='range']::-moz-range-track { + width: 100%; + background: var(--track-color); +} + +input[type='range']::-moz-range-progress { + appearance: none; + background: currentColor; + transition-delay: 30ms; +} + +input[type='range']::-moz-range-track, +input[type='range']::-moz-range-progress { + height: calc(var(--track-height) + 1px); + border-radius: var(--track-height); +} + +input[type='range']::-moz-range-thumb, +input[type='range']::-moz-range-progress { + filter: brightness(100%); +} + +input[type='range']:hover::-moz-range-thumb, +input[type='range']:hover::-moz-range-progress { + filter: brightness(var(--brightness-hover)); +} + +input[type='range']:active::-moz-range-thumb, +input[type='range']:active::-moz-range-progress { + filter: brightness(var(--brightness-down)); +} + +input[type='range']:disabled::-moz-range-thumb { + cursor: not-allowed; +} + +/* all of the input range stuff is from this guy*/ +/* Shout out to them https://codepen.io/ShadowShahriar/pen/zYPPYrQ */ diff --git a/catpuccin/flavors/legacy/frappe.css b/catpuccin/flavors/legacy/frappe.css new file mode 100644 index 0000000000000000000000000000000000000000..81d47f14c4b1cbdfec608429e5a40c60e3bc4f77 --- /dev/null +++ b/catpuccin/flavors/legacy/frappe.css @@ -0,0 +1,566 @@ +/* legacy */ +:root, *, #context-menu { + --rosewater: #f2d5cf; + --flamingo: #eebebe; + --pink: #f4b8e4; + --mauve: #ca9ee6; + --red: #e78284; + --maroon: #ea999c; + --peach: #ef9f76; + --yellow: #e5c890; + --green: #a6d189; + --teal: #81c8be; + --sky: #99d1db; + --sapphire: #85c1dc; + --blue: #8caaee; + --lavender: #babbf1; + --text: #c6d0f5; + --subtext1: #b5bfe2; + --subtext0: #a5adce; + --overlay2: #949cbb; + --overlay1: #838ba7; + --overlay0: #737994; + --surface2: #626880; + --surface1: #51576d; + --surface0: #414559; + --base: #303446; + --mantle: #292c3c; + --crust: #232634; + --shadow: #010409; + --accent: var(--maroon); + color-scheme: light; +} + +select, option { + background-color: var(--base); +} + +#setting_sd_model_checkpoint > :first-child{ + background-color: var(--base); +} + +#txt2img_prompt_container, +#img2img_prompt_container { + background-color: var(--mantle); +} + + +.dark .bg-white\/90, .bg-white\/90 { +background-color: var(--base); +} + +.dark fieldset span.text-gray-500, fieldset span.text-gray-500, +.dark .gr-block.gr-box span.text-gray-500, .gr-block.gr-box span.text-gray-500, +.dark label.block span, label.block span { +background-color: var(--base); +border: transparent; +} + +.dark .dark\:text-gray-200, .\:text-gray-200{ +color: var(--text); +} + +.dark .dark\:bg-gray-950, .\:bg-gray-950 { + background-color: var(--crust); +} + +.dark .dark\:bg-gray-900, .\:bg-gray-900 { + background-color: var(--base); + border-radius: 10px; +} + +.dark .dark\:border-gray-700, .\:border-gray-700 { + border-color: var(--surface0); +} + +.dark .gr-panel, .gr-panel { + background-color: var(--mantle); +} + + +textarea, .gr-text-input { + background-color: var(--base) !important; +} + +.dark .bg-white, .bg-white { + background-color: var(--mantle); +} + +.dark .gr-compact, .gr-compact { + background-color: var(--base); +} + +.dark .gr-input, .gr-input { + border-color: var(--surface0); +} +.dark .gr-form, .gr-form, +.dark .gr-box, .gr-box { + background-color: transparent; + color: var(--text); +} +.dark .gr-check-radio, .gr-check-radio { + background-color: var(--base); +} + +.dark .gr-check-radio:focus, .gr-check-radio:focus, +.dark .gr-check-radio:checked, .gr-check-radio:checked { + background-color: var(--accent); +} + +.dark .gr-button-primary:hover, .gr-button-primary:hover { +filter: brightness(130%); +} +.dark .gr-button-primary, .gr-button-primary { +background-color: var(--accent) !important; +color: var(--shadow) +} + + +.dark .gr-button-secondary:hover, .gr-button-secondary:hover { +filter: brightness(120%); +} + +button, input, optgroup, select, textarea { +color: var(--accent); +} + +.dark .gr-input-label, .gr-input-label, +.dark .gr-button-secondary,.gr-button-secondary, +.gr-input-label, +.gr-button-secondary { + --tw-gradient-from: none; + --tw-gradient-to: none; + --tw-gradient-stops: none; + background-color: var(--base); + color: var(--text) +} + +.gr-button, +.dark .gr-button { +border-color:var(--surface0); +background-color: var(--base); +background-image: unset; +} + + +.livePreview { + background-color: var(--base) !important; + height: 60vh !important; + width: 100% !important; + border-radius: 10px !important; +} + +.gr-padded { +padding: .825rem .75rem; +} + + +#mode_extras > :first-child > .bg-white { +background-color: var(--base); +} + +#interrogate_col { +justify-content: center; +gap: 10px; +/* background: var(--base); */ +/* border-top-left-radius: 10px !important; */ +/* border-top-right-radius: 10px !important; */ +/* padding-top: 20px; */ +} + +#txt2img_toprow, +#img2img_toprow { +background-color: unset; +} + +#txt2img_actions_column, #img2img_actions_column { +padding: 10px; +margin: 5px; +border-radius: 10px !important; +background-color: var(--base); +} + +#img_inpaint_mask > div:nth-child(3), +#img_inpaint_base > div:nth-child(3){ +border-width: 1px; +border-color:var(--surface0); + +} + +#img2img_settings { +border-radius: 10px; +} + +#mode_img2img > :not(:first-child) { +border-width: 0px; +} + + +#txt2img_gallery, +#img2img_gallery, +#extras_gallery { +background-color: var(--base) !important; +} + +#img2img_copy_to_img2img > :not(:first-child) { +border-width: 1px !important; +border-color: var(--surface0) !important; +border-radius: 10px !important; +margin-left: 10px; +} + +#txt2img_interrupt, #img2img_interrupt { +background-color: var(--red) !important; +color: var(--mantle); +} + +#txt2img_skip, #img2img_skip { +background-color: var(--maroon) !important; +color: var(--mantle); +} + +#txt2img_batch_count, +#txt2img_width { + margin-bottom: 0.625vw; +} + +#txt2img_script_container > div > div { + margin: 0px 1vh 0.9vw 1vh; +} + +#txt2img_script_container:last-child > div{ + margin: unset; +} + +.boder, +.dark .border, .border, +.dark .border-gray-100, .border-gray-100, +.dark .border-gray-200, .border-gray-200, +.dark .border-gray-300, .border-gray-300, +.dark .\!border, .\!border, +.dark .\!border-gray-300, .\!border-gray-300 { + border-color: var(--surface0); +} + + +.container { +background-color: var(--crust); +} + +fieldset span.text-gray-500, +.gr-block.gr-box span.text-gray-500, +label.block span { +box-shadow: unset; +} + +.dark .text-gray-500, .text-gray-500 { +color: var(--text); +} + +.dark fieldset span.text-gray-500, fieldset span.text-gray-500, +.dark .gr-block.gr-box, .gr-block.gr-box, +span.text-gray-500, +.dark label.block span, label.block span { + background-color: transparent; + border: transparent; +} + +.dark .text-gray-700, .text-gray-700, +.dark .text-gray-800, .text-gray-800, +.dark .text-gray-900, .text-gray-900, +.dark .\!text-gray-700, .\!text-gray-700, +.dark .\!text-gray-800, .\!text-gray-800 { +color: var(--text); +} + +#txt2img_settings > div { + margin-top: 2vh; + flex-grow: 0; + min-width: 30%; +} + +#tabs > :first-child { + background-color: var(--crust); +} + +#tabs{ + background-color: var(--mantle); +} + +#tab_txt2img > div { + background-color: var(--mantle); +} + +#tabs > div{ + border-width: 0px !important; + border-color:var(--surface0); +} + +#tabs > div:nth-child(1) { + flex-wrap: wrap-reverse; + background-color: var(--crust); +} +.tabs > :first-child { + border: none !important; + margin-bottom: -1px; + gap: 3px 0px; + background-color: var(--mantle); + padding-top: 5px; + z-index: 10; +} + +#img2img_img2img_tab { +border-width: 0px !important; +} + +#mode_img2img > div:nth-child(1) > .bg-white { +background-color: var(--base); +} + +#tab_extensions table td, #tab_extensions table th { +border: 1px solid var(--surface0); +} + +#extras_resize_mode > :first-child { +background-color: var(--base); +} + +#extras_resize_mode > :not(:first-child) { +background-color: var(--mantle) !important; +padding-top: 20px; +border-color: transparent; +border-radius: 0px 10px 10px 10px; +margin-bottom: 20px; + +} + +.tabs > :first-child > button { + border-radius: 8px 8px 0px 0px; + /* outline: 1px solid var(--base) !important; */ + border-color: var(--surface0); + border-width: 0px; + border-bottom-width: 0px; +} + + +#quicksettings { + background-color: transparent; +} + +input[type="range"]::-ms-track { + background: transparent; +} + +input[type="range"]::-ms-fill-lower { + background: var(--accent); + border-radius: 10px; +} +input[type="range"]::-ms-fill-upper { + background: var(--overlay0); + border-radius: 10px; +} + +input[type="range"]:focus::-ms-fill-lower { + background: var(--accent); +} +input[type="range"]:focus::-ms-fill-upper { + background: var(--overlay0); +} + +/* Chrome, Safari, Edge, Opera */ +input::-webkit-outer-spin-button, +input::-webkit-inner-spin-button { + -webkit-appearance: none; + margin: 0; +} + +/* Firefox */ +input[type="number"] { + -moz-appearance: textfield; +} +.gr-box > div > div > input.gr-text-input { + width: 4em; +} + +.progressDiv .progress { + background: var(--accent); + color: var(--shadow); +} + +.dark .progressDiv, .progressDiv { + background-color: var(--surface0); +} + +input[type="range"] { + font-size: 1.5rem; +} + +input[type="range"] { + color: var(--accent); + --thumb-height: 0.5em; + --track-height: 0.125em; + --track-color: var(--surface0); + --brightness-hover: 130%; + --brightness-down: 80%; + --clip-edges: 0.125em; +} + +input[type="range"].win10-thumb { + color: var(--accent); + + --thumb-height: 0.5em; + --thumb-width: 0.5em; + --clip-edges: 0.0125em; +} + +@media (prefers-color-scheme: dark) { + input[type="range"] { + color: var(--accent); + --track-color: var(--surface0); + } + + input[type="range"].win10-thumb { + color: var(--accent); + } +} + +/* === range commons === */ +input[type="range"] { + position: relative; + background: #fff0; + overflow: hidden; +} + +input[type="range"]:active { + cursor: grabbing; +} + +input[type="range"]:disabled { + filter: grayscale(1); + opacity: 0.3; + cursor: not-allowed; +} + +/* === WebKit specific styles === */ +input[type="range"], +input[type="range"]::-webkit-slider-runnable-track, +input[type="range"]::-webkit-slider-thumb { + -webkit-appearance: none; + transition: all ease 100ms; + height: var(--thumb-height); +} + +input[type="range"]::-webkit-slider-runnable-track, +input[type="range"]::-webkit-slider-thumb { + position: relative; +} + +input[type="range"]::-webkit-slider-thumb { + --thumb-radius: calc((var(--thumb-height) * 0.5) - 1px); + --clip-top: calc((var(--thumb-height) - var(--track-height)) * 0.5 - 0.5px); + --clip-bottom: calc(var(--thumb-height) - var(--clip-top)); + --clip-further: calc(100% + 1px); + --box-fill: calc(-100vmax - var(--thumb-width, var(--thumb-height))) 0 0 100vmax currentColor; + + width: var(--thumb-width, var(--thumb-height)); + background: linear-gradient(currentColor 0 0) scroll no-repeat left center / 50% calc(var(--track-height) + 1px); + background-color: currentColor; + box-shadow: var(--box-fill); + border-radius: var(--thumb-width, var(--thumb-height)); + + filter: brightness(100%); + clip-path: polygon( + 100% -1px, + var(--clip-edges) -1px, + 0 var(--clip-top), + -100vmax var(--clip-top), + -100vmax var(--clip-bottom), + 0 var(--clip-bottom), + var(--clip-edges) 100%, + var(--clip-further) var(--clip-further) + ); +} + +input[type="range"]:hover::-webkit-slider-thumb { + filter: brightness(var(--brightness-hover)); + cursor: grab; +} + +input[type="range"]:active::-webkit-slider-thumb { + filter: brightness(var(--brightness-down)); + cursor: grabbing; +} + +input[type="range"]::-webkit-slider-runnable-track { + background: linear-gradient(var(--track-color) 0 0) scroll no-repeat center / 100% calc(var(--track-height) + 1px); +} + +input[type="range"]:disabled::-webkit-slider-thumb { + cursor: not-allowed; +} + +/* === Firefox specific styles === */ +input[type="range"], +input[type="range"]::-moz-range-track, +input[type="range"]::-moz-range-thumb { + appearance: none; + transition: all ease 100ms; + height: var(--thumb-height); +} + +input[type="range"]::-moz-range-track, +input[type="range"]::-moz-range-thumb, +input[type="range"]::-moz-range-progress { + background: #fff0; +} + +input[type="range"]::-moz-range-thumb { + background: currentColor; + border: 0; + width: var(--thumb-width, var(--thumb-height)); + border-radius: var(--thumb-width, var(--thumb-height)); + cursor: grab; +} + +input[type="range"]:active::-moz-range-thumb { + cursor: grabbing; +} + +input[type="range"]::-moz-range-track { + width: 100%; + background: var(--track-color); +} + +input[type="range"]::-moz-range-progress { + appearance: none; + background: currentColor; + transition-delay: 30ms; +} + +input[type="range"]::-moz-range-track, +input[type="range"]::-moz-range-progress { + height: calc(var(--track-height) + 1px); + border-radius: var(--track-height); +} + +input[type="range"]::-moz-range-thumb, +input[type="range"]::-moz-range-progress { + filter: brightness(100%); +} + +input[type="range"]:hover::-moz-range-thumb, +input[type="range"]:hover::-moz-range-progress { + filter: brightness(var(--brightness-hover)); +} + +input[type="range"]:active::-moz-range-thumb, +input[type="range"]:active::-moz-range-progress { + filter: brightness(var(--brightness-down)); +} + +input[type="range"]:disabled::-moz-range-thumb { + cursor: not-allowed; +} + +/* all of the input range stuff is from this guy*/ +/* Shout out to them https://codepen.io/ShadowShahriar/pen/zYPPYrQ */ diff --git a/catpuccin/flavors/legacy/latte.css b/catpuccin/flavors/legacy/latte.css new file mode 100644 index 0000000000000000000000000000000000000000..ce49c9200f089a228b28a02effa6e840b762025f --- /dev/null +++ b/catpuccin/flavors/legacy/latte.css @@ -0,0 +1,566 @@ +/* legacy */ +:root, *, #context-menu{ + --rosewater: #dc8a78; + --flamingo: #dd7878; + --pink: #ea76cb; + --mauve: #8839ef; + --red: #d20f39; + --maroon: #e64553; + --peach: #fe640b; + --yellow: #df8e1d; + --green: #40a02b; + --teal: #179299; + --sky: #04a5e5; + --sapphire: #209fb5; + --blue: #1e66f5; + --lavender: #7287fd; + --text: #4c4f69; + --subtext1: #5c5f77; + --subtext0: #6c6f85; + --overlay2: #7c7f93; + --overlay1: #8c8fa1; + --overlay0: #9ca0b0; + --surface2: #acb0be; + --surface1: #bcc0cc; + --surface0: #ccd0da; + --base: #eff1f5; + --mantle: #e6e9ef; + --crust: #dce0e8; + --shadow: #dbdfef; + --accent: var(--maroon); + color-scheme: light; +} + +select, option { + background-color: var(--base); +} + +#setting_sd_model_checkpoint > :first-child{ + background-color: var(--base); +} + +#txt2img_prompt_container, +#img2img_prompt_container { + background-color: var(--mantle); +} + + +.dark .bg-white\/90, .bg-white\/90 { +background-color: var(--base); +} + +.dark fieldset span.text-gray-500, fieldset span.text-gray-500, +.dark .gr-block.gr-box span.text-gray-500, .gr-block.gr-box span.text-gray-500, +.dark label.block span, label.block span { +background-color: var(--base); +border: transparent; +} + +.dark .dark\:text-gray-200, .\:text-gray-200{ +color: var(--text); +} + +.dark .dark\:bg-gray-950, .\:bg-gray-950 { + background-color: var(--crust); +} + +.dark .dark\:bg-gray-900, .\:bg-gray-900 { + background-color: var(--base); + border-radius: 10px; +} + +.dark .dark\:border-gray-700, .\:border-gray-700 { + border-color: var(--surface0); +} + +.dark .gr-panel, .gr-panel { + background-color: var(--mantle); +} + + +textarea, .gr-text-input { + background-color: var(--base) !important; +} + +.dark .bg-white, .bg-white { + background-color: var(--mantle); +} + +.dark .gr-compact, .gr-compact { + background-color: var(--base); +} + +.dark .gr-input, .gr-input { + border-color: var(--surface0); +} +.dark .gr-form, .gr-form, +.dark .gr-box, .gr-box { + background-color: transparent; + color: var(--text); +} +.dark .gr-check-radio, .gr-check-radio { + background-color: var(--base); +} + +.dark .gr-check-radio:focus, .gr-check-radio:focus, +.dark .gr-check-radio:checked, .gr-check-radio:checked { + background-color: var(--accent); +} + +.dark .gr-button-primary:hover, .gr-button-primary:hover { +filter: brightness(130%); +} +.dark .gr-button-primary, .gr-button-primary { +background-color: var(--accent) !important; +color: var(--shadow) +} + + +.dark .gr-button-secondary:hover, .gr-button-secondary:hover { +filter: brightness(120%); +} + +button, input, optgroup, select, textarea { +color: var(--accent); +} + +.dark .gr-input-label, .gr-input-label, +.dark .gr-button-secondary,.gr-button-secondary, +.gr-input-label, +.gr-button-secondary { + --tw-gradient-from: none; + --tw-gradient-to: none; + --tw-gradient-stops: none; + background-color: var(--base); + color: var(--text) +} + +.gr-button, +.dark .gr-button { +border-color:var(--surface0); +background-color: var(--base); +background-image: unset; +} + + +.livePreview { + background-color: var(--base) !important; + height: 60vh !important; + width: 100% !important; + border-radius: 10px !important; +} + +.gr-padded { +padding: .825rem .75rem; +} + + +#mode_extras > :first-child > .bg-white { +background-color: var(--base); +} + +#interrogate_col { +justify-content: center; +gap: 10px; +/* background: var(--base); */ +/* border-top-left-radius: 10px !important; */ +/* border-top-right-radius: 10px !important; */ +/* padding-top: 20px; */ +} + +#txt2img_toprow, +#img2img_toprow { +background-color: unset; +} + +#txt2img_actions_column, #img2img_actions_column { +padding: 10px; +margin: 5px; +border-radius: 10px !important; +background-color: var(--base); +} + +#img_inpaint_mask > div:nth-child(3), +#img_inpaint_base > div:nth-child(3){ +border-width: 1px; +border-color:var(--surface0); + +} + +#img2img_settings { +border-radius: 10px; +} + +#mode_img2img > :not(:first-child) { +border-width: 0px; +} + + +#txt2img_gallery, +#img2img_gallery, +#extras_gallery { +background-color: var(--base) !important; +} + +#img2img_copy_to_img2img > :not(:first-child) { +border-width: 1px !important; +border-color: var(--surface0) !important; +border-radius: 10px !important; +margin-left: 10px; +} + +#txt2img_interrupt, #img2img_interrupt { +background-color: var(--red) !important; +color: var(--mantle); +} + +#txt2img_skip, #img2img_skip { +background-color: var(--maroon) !important; +color: var(--mantle); +} + +#txt2img_batch_count, +#txt2img_width { + margin-bottom: 0.625vw; +} + +#txt2img_script_container > div > div { + margin: 0px 1vh 0.9vw 1vh; +} + +#txt2img_script_container:last-child > div{ + margin: unset; +} + +.boder, +.dark .border, .border, +.dark .border-gray-100, .border-gray-100, +.dark .border-gray-200, .border-gray-200, +.dark .border-gray-300, .border-gray-300, +.dark .\!border, .\!border, +.dark .\!border-gray-300, .\!border-gray-300 { + border-color: var(--surface0); +} + + +.container { +background-color: var(--crust); +} + +fieldset span.text-gray-500, +.gr-block.gr-box span.text-gray-500, +label.block span { +box-shadow: unset; +} + +.dark .text-gray-500, .text-gray-500 { +color: var(--text); +} + +.dark fieldset span.text-gray-500, fieldset span.text-gray-500, +.dark .gr-block.gr-box, .gr-block.gr-box, +span.text-gray-500, +.dark label.block span, label.block span { + background-color: transparent; + border: transparent; +} + +.dark .text-gray-700, .text-gray-700, +.dark .text-gray-800, .text-gray-800, +.dark .text-gray-900, .text-gray-900, +.dark .\!text-gray-700, .\!text-gray-700, +.dark .\!text-gray-800, .\!text-gray-800 { +color: var(--text); +} + +#txt2img_settings > div { + margin-top: 2vh; + flex-grow: 0; + min-width: 30%; +} + +#tabs > :first-child { + background-color: var(--crust); +} + +#tabs{ + background-color: var(--mantle); +} + +#tab_txt2img > div { + background-color: var(--mantle); +} + +#tabs > div{ + border-width: 0px !important; + border-color:var(--surface0); +} + +#tabs > div:nth-child(1) { + flex-wrap: wrap-reverse; + background-color: var(--crust); +} +.tabs > :first-child { + border: none !important; + margin-bottom: -1px; + gap: 3px 0px; + background-color: var(--mantle); + padding-top: 5px; + z-index: 10; +} + +#img2img_img2img_tab { +border-width: 0px !important; +} + +#mode_img2img > div:nth-child(1) > .bg-white { +background-color: var(--base); +} + +#tab_extensions table td, #tab_extensions table th { +border: 1px solid var(--surface0); +} + +#extras_resize_mode > :first-child { +background-color: var(--base); +} + +#extras_resize_mode > :not(:first-child) { +background-color: var(--mantle) !important; +padding-top: 20px; +border-color: transparent; +border-radius: 0px 10px 10px 10px; +margin-bottom: 20px; + +} + +.tabs > :first-child > button { + border-radius: 8px 8px 0px 0px; + /* outline: 1px solid var(--base) !important; */ + border-color: var(--surface0); + border-width: 0px; + border-bottom-width: 0px; +} + + +#quicksettings { + background-color: transparent; +} + +input[type="range"]::-ms-track { + background: transparent; +} + +input[type="range"]::-ms-fill-lower { + background: var(--accent); + border-radius: 10px; +} +input[type="range"]::-ms-fill-upper { + background: var(--overlay0); + border-radius: 10px; +} + +input[type="range"]:focus::-ms-fill-lower { + background: var(--accent); +} +input[type="range"]:focus::-ms-fill-upper { + background: var(--overlay0); +} + +/* Chrome, Safari, Edge, Opera */ +input::-webkit-outer-spin-button, +input::-webkit-inner-spin-button { + -webkit-appearance: none; + margin: 0; +} + +/* Firefox */ +input[type="number"] { + -moz-appearance: textfield; +} +.gr-box > div > div > input.gr-text-input { + width: 4em; +} + +.progressDiv .progress { + background: var(--accent); + color: var(--shadow); +} + +.dark .progressDiv, .progressDiv { + background-color: var(--surface0); +} + +input[type="range"] { + font-size: 1.5rem; +} + +input[type="range"] { + color: var(--accent); + --thumb-height: 0.5em; + --track-height: 0.125em; + --track-color: var(--surface0); + --brightness-hover: 130%; + --brightness-down: 80%; + --clip-edges: 0.125em; +} + +input[type="range"].win10-thumb { + color: var(--accent); + + --thumb-height: 0.5em; + --thumb-width: 0.5em; + --clip-edges: 0.0125em; +} + +@media (prefers-color-scheme: dark) { + input[type="range"] { + color: var(--accent); + --track-color: var(--surface0); + } + + input[type="range"].win10-thumb { + color: var(--accent); + } +} + +/* === range commons === */ +input[type="range"] { + position: relative; + background: #fff0; + overflow: hidden; +} + +input[type="range"]:active { + cursor: grabbing; +} + +input[type="range"]:disabled { + filter: grayscale(1); + opacity: 0.3; + cursor: not-allowed; +} + +/* === WebKit specific styles === */ +input[type="range"], +input[type="range"]::-webkit-slider-runnable-track, +input[type="range"]::-webkit-slider-thumb { + -webkit-appearance: none; + transition: all ease 100ms; + height: var(--thumb-height); +} + +input[type="range"]::-webkit-slider-runnable-track, +input[type="range"]::-webkit-slider-thumb { + position: relative; +} + +input[type="range"]::-webkit-slider-thumb { + --thumb-radius: calc((var(--thumb-height) * 0.5) - 1px); + --clip-top: calc((var(--thumb-height) - var(--track-height)) * 0.5 - 0.5px); + --clip-bottom: calc(var(--thumb-height) - var(--clip-top)); + --clip-further: calc(100% + 1px); + --box-fill: calc(-100vmax - var(--thumb-width, var(--thumb-height))) 0 0 100vmax currentColor; + + width: var(--thumb-width, var(--thumb-height)); + background: linear-gradient(currentColor 0 0) scroll no-repeat left center / 50% calc(var(--track-height) + 1px); + background-color: currentColor; + box-shadow: var(--box-fill); + border-radius: var(--thumb-width, var(--thumb-height)); + + filter: brightness(100%); + clip-path: polygon( + 100% -1px, + var(--clip-edges) -1px, + 0 var(--clip-top), + -100vmax var(--clip-top), + -100vmax var(--clip-bottom), + 0 var(--clip-bottom), + var(--clip-edges) 100%, + var(--clip-further) var(--clip-further) + ); +} + +input[type="range"]:hover::-webkit-slider-thumb { + filter: brightness(var(--brightness-hover)); + cursor: grab; +} + +input[type="range"]:active::-webkit-slider-thumb { + filter: brightness(var(--brightness-down)); + cursor: grabbing; +} + +input[type="range"]::-webkit-slider-runnable-track { + background: linear-gradient(var(--track-color) 0 0) scroll no-repeat center / 100% calc(var(--track-height) + 1px); +} + +input[type="range"]:disabled::-webkit-slider-thumb { + cursor: not-allowed; +} + +/* === Firefox specific styles === */ +input[type="range"], +input[type="range"]::-moz-range-track, +input[type="range"]::-moz-range-thumb { + appearance: none; + transition: all ease 100ms; + height: var(--thumb-height); +} + +input[type="range"]::-moz-range-track, +input[type="range"]::-moz-range-thumb, +input[type="range"]::-moz-range-progress { + background: #fff0; +} + +input[type="range"]::-moz-range-thumb { + background: currentColor; + border: 0; + width: var(--thumb-width, var(--thumb-height)); + border-radius: var(--thumb-width, var(--thumb-height)); + cursor: grab; +} + +input[type="range"]:active::-moz-range-thumb { + cursor: grabbing; +} + +input[type="range"]::-moz-range-track { + width: 100%; + background: var(--track-color); +} + +input[type="range"]::-moz-range-progress { + appearance: none; + background: currentColor; + transition-delay: 30ms; +} + +input[type="range"]::-moz-range-track, +input[type="range"]::-moz-range-progress { + height: calc(var(--track-height) + 1px); + border-radius: var(--track-height); +} + +input[type="range"]::-moz-range-thumb, +input[type="range"]::-moz-range-progress { + filter: brightness(100%); +} + +input[type="range"]:hover::-moz-range-thumb, +input[type="range"]:hover::-moz-range-progress { + filter: brightness(var(--brightness-hover)); +} + +input[type="range"]:active::-moz-range-thumb, +input[type="range"]:active::-moz-range-progress { + filter: brightness(var(--brightness-down)); +} + +input[type="range"]:disabled::-moz-range-thumb { + cursor: not-allowed; +} + +/* all of the input range stuff is from this guy*/ +/* Shout out to them https://codepen.io/ShadowShahriar/pen/zYPPYrQ */ diff --git a/catpuccin/flavors/legacy/macchiato.css b/catpuccin/flavors/legacy/macchiato.css new file mode 100644 index 0000000000000000000000000000000000000000..1da485065616a1a6477721a4306b6a1c488cc4b6 --- /dev/null +++ b/catpuccin/flavors/legacy/macchiato.css @@ -0,0 +1,566 @@ +/* legacy */ +:root, *, #context-menu{ + --rosewater: #f4dbd6; + --flamingo: #f0c6c6; + --pink: #f5bde6; + --mauve: #c6a0f6; + --red: #ed8796; + --maroon: #ee99a0; + --peach: #f5a97f; + --yellow: #eed49f; + --green: #a6da95; + --teal: #8bd5ca; + --sky: #91d7e3; + --sapphire: #7dc4e4; + --blue: #8aadf4; + --lavender: #b7bdf8; + --text: #cad3f5; + --subtext1: #b8c0e0; + --subtext0: #a5adcb; + --overlay2: #939ab7; + --overlay1: #8087a2; + --overlay0: #6e738d; + --surface2: #5b6078; + --surface1: #494d64; + --surface0: #363a4f; + --base: #24273a; + --mantle: #1e2030; + --crust: #181926; + --shadow: #010409; + --accent: var(--maroon); + color-scheme: dark; +} + +select, option { + background-color: var(--base); +} + +#setting_sd_model_checkpoint > :first-child{ + background-color: var(--base); +} + +#txt2img_prompt_container, +#img2img_prompt_container { + background-color: var(--mantle); +} + + +.dark .bg-white\/90, .bg-white\/90 { +background-color: var(--base); +} + +.dark fieldset span.text-gray-500, fieldset span.text-gray-500, +.dark .gr-block.gr-box span.text-gray-500, .gr-block.gr-box span.text-gray-500, +.dark label.block span, label.block span { +background-color: var(--base); +border: transparent; +} + +.dark .dark\:text-gray-200, .\:text-gray-200{ +color: var(--text); +} + +.dark .dark\:bg-gray-950, .\:bg-gray-950 { + background-color: var(--crust); +} + +.dark .dark\:bg-gray-900, .\:bg-gray-900 { + background-color: var(--base); + border-radius: 10px; +} + +.dark .dark\:border-gray-700, .\:border-gray-700 { + border-color: var(--surface0); +} + +.dark .gr-panel, .gr-panel { + background-color: var(--mantle); +} + + +textarea, .gr-text-input { + background-color: var(--base) !important; +} + +.dark .bg-white, .bg-white { + background-color: var(--mantle); +} + +.dark .gr-compact, .gr-compact { + background-color: var(--base); +} + +.dark .gr-input, .gr-input { + border-color: var(--surface0); +} +.dark .gr-form, .gr-form, +.dark .gr-box, .gr-box { + background-color: transparent; + color: var(--text); +} +.dark .gr-check-radio, .gr-check-radio { + background-color: var(--base); +} + +.dark .gr-check-radio:focus, .gr-check-radio:focus, +.dark .gr-check-radio:checked, .gr-check-radio:checked { + background-color: var(--accent); +} + +.dark .gr-button-primary:hover, .gr-button-primary:hover { +filter: brightness(130%); +} +.dark .gr-button-primary, .gr-button-primary { +background-color: var(--accent) !important; +color: var(--shadow) +} + + +.dark .gr-button-secondary:hover, .gr-button-secondary:hover { +filter: brightness(120%); +} + +button, input, optgroup, select, textarea { +color: var(--accent); +} + +.dark .gr-input-label, .gr-input-label, +.dark .gr-button-secondary,.gr-button-secondary, +.gr-input-label, +.gr-button-secondary { + --tw-gradient-from: none; + --tw-gradient-to: none; + --tw-gradient-stops: none; + background-color: var(--base); + color: var(--text) +} + +.gr-button, +.dark .gr-button { +border-color:var(--surface0); +background-color: var(--base); +background-image: unset; +} + + +.livePreview { + background-color: var(--base) !important; + height: 60vh !important; + width: 100% !important; + border-radius: 10px !important; +} + +.gr-padded { +padding: .825rem .75rem; +} + + +#mode_extras > :first-child > .bg-white { +background-color: var(--base); +} + +#interrogate_col { +justify-content: center; +gap: 10px; +/* background: var(--base); */ +/* border-top-left-radius: 10px !important; */ +/* border-top-right-radius: 10px !important; */ +/* padding-top: 20px; */ +} + +#txt2img_toprow, +#img2img_toprow { +background-color: unset; +} + +#txt2img_actions_column, #img2img_actions_column { +padding: 10px; +margin: 5px; +border-radius: 10px !important; +background-color: var(--base); +} + +#img_inpaint_mask > div:nth-child(3), +#img_inpaint_base > div:nth-child(3){ +border-width: 1px; +border-color:var(--surface0); + +} + +#img2img_settings { +border-radius: 10px; +} + +#mode_img2img > :not(:first-child) { +border-width: 0px; +} + + +#txt2img_gallery, +#img2img_gallery, +#extras_gallery { +background-color: var(--base) !important; +} + +#img2img_copy_to_img2img > :not(:first-child) { +border-width: 1px !important; +border-color: var(--surface0) !important; +border-radius: 10px !important; +margin-left: 10px; +} + +#txt2img_interrupt, #img2img_interrupt { +background-color: var(--red) !important; +color: var(--mantle); +} + +#txt2img_skip, #img2img_skip { +background-color: var(--maroon) !important; +color: var(--mantle); +} + +#txt2img_batch_count, +#txt2img_width { + margin-bottom: 0.625vw; +} + +#txt2img_script_container > div > div { + margin: 0px 1vh 0.9vw 1vh; +} + +#txt2img_script_container:last-child > div{ + margin: unset; +} + +.boder, +.dark .border, .border, +.dark .border-gray-100, .border-gray-100, +.dark .border-gray-200, .border-gray-200, +.dark .border-gray-300, .border-gray-300, +.dark .\!border, .\!border, +.dark .\!border-gray-300, .\!border-gray-300 { + border-color: var(--surface0); +} + + +.container { +background-color: var(--crust); +} + +fieldset span.text-gray-500, +.gr-block.gr-box span.text-gray-500, +label.block span { +box-shadow: unset; +} + +.dark .text-gray-500, .text-gray-500 { +color: var(--text); +} + +.dark fieldset span.text-gray-500, fieldset span.text-gray-500, +.dark .gr-block.gr-box, .gr-block.gr-box, +span.text-gray-500, +.dark label.block span, label.block span { + background-color: transparent; + border: transparent; +} + +.dark .text-gray-700, .text-gray-700, +.dark .text-gray-800, .text-gray-800, +.dark .text-gray-900, .text-gray-900, +.dark .\!text-gray-700, .\!text-gray-700, +.dark .\!text-gray-800, .\!text-gray-800 { +color: var(--text); +} + +#txt2img_settings > div { + margin-top: 2vh; + flex-grow: 0; + min-width: 30%; +} + +#tabs > :first-child { + background-color: var(--crust); +} + +#tabs{ + background-color: var(--mantle); +} + +#tab_txt2img > div { + background-color: var(--mantle); +} + +#tabs > div{ + border-width: 0px !important; + border-color:var(--surface0); +} + +#tabs > div:nth-child(1) { + flex-wrap: wrap-reverse; + background-color: var(--crust); +} +.tabs > :first-child { + border: none !important; + margin-bottom: -1px; + gap: 3px 0px; + background-color: var(--mantle); + padding-top: 5px; + z-index: 10; +} + +#img2img_img2img_tab { +border-width: 0px !important; +} + +#mode_img2img > div:nth-child(1) > .bg-white { +background-color: var(--base); +} + +#tab_extensions table td, #tab_extensions table th { +border: 1px solid var(--surface0); +} + +#extras_resize_mode > :first-child { +background-color: var(--base); +} + +#extras_resize_mode > :not(:first-child) { +background-color: var(--mantle) !important; +padding-top: 20px; +border-color: transparent; +border-radius: 0px 10px 10px 10px; +margin-bottom: 20px; + +} + +.tabs > :first-child > button { + border-radius: 8px 8px 0px 0px; + /* outline: 1px solid var(--base) !important; */ + border-color: var(--surface0); + border-width: 0px; + border-bottom-width: 0px; +} + + +#quicksettings { + background-color: transparent; +} + +input[type="range"]::-ms-track { + background: transparent; +} + +input[type="range"]::-ms-fill-lower { + background: var(--accent); + border-radius: 10px; +} +input[type="range"]::-ms-fill-upper { + background: var(--overlay0); + border-radius: 10px; +} + +input[type="range"]:focus::-ms-fill-lower { + background: var(--accent); +} +input[type="range"]:focus::-ms-fill-upper { + background: var(--overlay0); +} + +/* Chrome, Safari, Edge, Opera */ +input::-webkit-outer-spin-button, +input::-webkit-inner-spin-button { + -webkit-appearance: none; + margin: 0; +} + +/* Firefox */ +input[type="number"] { + -moz-appearance: textfield; +} +.gr-box > div > div > input.gr-text-input { + width: 4em; +} + +.progressDiv .progress { + background: var(--accent); + color: var(--shadow); +} + +.dark .progressDiv, .progressDiv { + background-color: var(--surface0); +} + +input[type="range"] { + font-size: 1.5rem; +} + +input[type="range"] { + color: var(--accent); + --thumb-height: 0.5em; + --track-height: 0.125em; + --track-color: var(--surface0); + --brightness-hover: 130%; + --brightness-down: 80%; + --clip-edges: 0.125em; +} + +input[type="range"].win10-thumb { + color: var(--accent); + + --thumb-height: 0.5em; + --thumb-width: 0.5em; + --clip-edges: 0.0125em; +} + +@media (prefers-color-scheme: dark) { + input[type="range"] { + color: var(--accent); + --track-color: var(--surface0); + } + + input[type="range"].win10-thumb { + color: var(--accent); + } +} + +/* === range commons === */ +input[type="range"] { + position: relative; + background: #fff0; + overflow: hidden; +} + +input[type="range"]:active { + cursor: grabbing; +} + +input[type="range"]:disabled { + filter: grayscale(1); + opacity: 0.3; + cursor: not-allowed; +} + +/* === WebKit specific styles === */ +input[type="range"], +input[type="range"]::-webkit-slider-runnable-track, +input[type="range"]::-webkit-slider-thumb { + -webkit-appearance: none; + transition: all ease 100ms; + height: var(--thumb-height); +} + +input[type="range"]::-webkit-slider-runnable-track, +input[type="range"]::-webkit-slider-thumb { + position: relative; +} + +input[type="range"]::-webkit-slider-thumb { + --thumb-radius: calc((var(--thumb-height) * 0.5) - 1px); + --clip-top: calc((var(--thumb-height) - var(--track-height)) * 0.5 - 0.5px); + --clip-bottom: calc(var(--thumb-height) - var(--clip-top)); + --clip-further: calc(100% + 1px); + --box-fill: calc(-100vmax - var(--thumb-width, var(--thumb-height))) 0 0 100vmax currentColor; + + width: var(--thumb-width, var(--thumb-height)); + background: linear-gradient(currentColor 0 0) scroll no-repeat left center / 50% calc(var(--track-height) + 1px); + background-color: currentColor; + box-shadow: var(--box-fill); + border-radius: var(--thumb-width, var(--thumb-height)); + + filter: brightness(100%); + clip-path: polygon( + 100% -1px, + var(--clip-edges) -1px, + 0 var(--clip-top), + -100vmax var(--clip-top), + -100vmax var(--clip-bottom), + 0 var(--clip-bottom), + var(--clip-edges) 100%, + var(--clip-further) var(--clip-further) + ); +} + +input[type="range"]:hover::-webkit-slider-thumb { + filter: brightness(var(--brightness-hover)); + cursor: grab; +} + +input[type="range"]:active::-webkit-slider-thumb { + filter: brightness(var(--brightness-down)); + cursor: grabbing; +} + +input[type="range"]::-webkit-slider-runnable-track { + background: linear-gradient(var(--track-color) 0 0) scroll no-repeat center / 100% calc(var(--track-height) + 1px); +} + +input[type="range"]:disabled::-webkit-slider-thumb { + cursor: not-allowed; +} + +/* === Firefox specific styles === */ +input[type="range"], +input[type="range"]::-moz-range-track, +input[type="range"]::-moz-range-thumb { + appearance: none; + transition: all ease 100ms; + height: var(--thumb-height); +} + +input[type="range"]::-moz-range-track, +input[type="range"]::-moz-range-thumb, +input[type="range"]::-moz-range-progress { + background: #fff0; +} + +input[type="range"]::-moz-range-thumb { + background: currentColor; + border: 0; + width: var(--thumb-width, var(--thumb-height)); + border-radius: var(--thumb-width, var(--thumb-height)); + cursor: grab; +} + +input[type="range"]:active::-moz-range-thumb { + cursor: grabbing; +} + +input[type="range"]::-moz-range-track { + width: 100%; + background: var(--track-color); +} + +input[type="range"]::-moz-range-progress { + appearance: none; + background: currentColor; + transition-delay: 30ms; +} + +input[type="range"]::-moz-range-track, +input[type="range"]::-moz-range-progress { + height: calc(var(--track-height) + 1px); + border-radius: var(--track-height); +} + +input[type="range"]::-moz-range-thumb, +input[type="range"]::-moz-range-progress { + filter: brightness(100%); +} + +input[type="range"]:hover::-moz-range-thumb, +input[type="range"]:hover::-moz-range-progress { + filter: brightness(var(--brightness-hover)); +} + +input[type="range"]:active::-moz-range-thumb, +input[type="range"]:active::-moz-range-progress { + filter: brightness(var(--brightness-down)); +} + +input[type="range"]:disabled::-moz-range-thumb { + cursor: not-allowed; +} + +/* all of the input range stuff is from this guy*/ +/* Shout out to them https://codepen.io/ShadowShahriar/pen/zYPPYrQ */ diff --git a/catpuccin/flavors/legacy/mocha.css b/catpuccin/flavors/legacy/mocha.css new file mode 100644 index 0000000000000000000000000000000000000000..21b2a1b8b7cedb8c6ddd3b6db8ed1355575147e9 --- /dev/null +++ b/catpuccin/flavors/legacy/mocha.css @@ -0,0 +1,568 @@ +/* legacy */ +:root, +*, +#context-menu { + --rosewater: #f5e0dc; + --flamingo: #f2cdcd; + --pink: #f5c2e7; + --mauve: #cba6f7; + --red: #f38ba8; + --maroon: #eba0ac; + --peach: #fab387; + --yellow: #f9e2af; + --green: #a6e3a1; + --teal: #94e2d5; + --sky: #89dceb; + --sapphire: #74c7ec; + --lavender: #b4befe; + --blue: #89b4fa; + --text: #cdd6f4; + --subtext1: #bac2de; + --subtext0: #a6adc8; + --overlay2: #9399b2; + --overlay1: #7f849c; + --overlay0: #6c7086; + --surface2: #585b70; + --surface1: #45475a; + --surface0: #313244; + --base: #1e1e2e; + --mantle: #181825; + --crust: #11111b; + --shadow: #010409; + --accent: var(--maroon); + color-scheme: dark; +} + +select, option { + background-color: var(--base); +} + +#setting_sd_model_checkpoint > :first-child{ + background-color: var(--base); +} + +#txt2img_prompt_container, +#img2img_prompt_container { + background-color: var(--mantle); +} + + +.dark .bg-white\/90, .bg-white\/90 { +background-color: var(--base); +} + +.dark fieldset span.text-gray-500, fieldset span.text-gray-500, +.dark .gr-block.gr-box span.text-gray-500, .gr-block.gr-box span.text-gray-500, +.dark label.block span, label.block span { +background-color: var(--base); +border: transparent; +} + +.dark .dark\:text-gray-200, .\:text-gray-200{ +color: var(--text); +} + +.dark .dark\:bg-gray-950, .\:bg-gray-950 { + background-color: var(--crust); +} + +.dark .dark\:bg-gray-900, .\:bg-gray-900 { + background-color: var(--base); + border-radius: 10px; +} + +.dark .dark\:border-gray-700, .\:border-gray-700 { + border-color: var(--surface0); +} + +.dark .gr-panel, .gr-panel { + background-color: var(--mantle); +} + + +textarea, .gr-text-input { + background-color: var(--base) !important; +} + +.dark .bg-white, .bg-white { + background-color: var(--mantle); +} + +.dark .gr-compact, .gr-compact { + background-color: var(--base); +} + +.dark .gr-input, .gr-input { + border-color: var(--surface0); +} +.dark .gr-form, .gr-form, +.dark .gr-box, .gr-box { + background-color: transparent; + color: var(--text); +} +.dark .gr-check-radio, .gr-check-radio { + background-color: var(--base); +} + +.dark .gr-check-radio:focus, .gr-check-radio:focus, +.dark .gr-check-radio:checked, .gr-check-radio:checked { + background-color: var(--accent); +} + +.dark .gr-button-primary:hover, .gr-button-primary:hover { +filter: brightness(130%); +} +.dark .gr-button-primary, .gr-button-primary { +background-color: var(--accent) !important; +color: var(--shadow) +} + + +.dark .gr-button-secondary:hover, .gr-button-secondary:hover { +filter: brightness(120%); +} + +button, input, optgroup, select, textarea { +color: var(--accent); +} + +.dark .gr-input-label, .gr-input-label, +.dark .gr-button-secondary,.gr-button-secondary, +.gr-input-label, +.gr-button-secondary { + --tw-gradient-from: none; + --tw-gradient-to: none; + --tw-gradient-stops: none; + background-color: var(--base); + color: var(--text) +} + +.gr-button, +.dark .gr-button { +border-color:var(--surface0); +background-color: var(--base); +background-image: unset; +} + + +.livePreview { + background-color: var(--base) !important; + height: 60vh !important; + width: 100% !important; + border-radius: 10px !important; +} + +.gr-padded { +padding: .825rem .75rem; +} + + +#mode_extras > :first-child > .bg-white { +background-color: var(--base); +} + +#interrogate_col { +justify-content: center; +gap: 10px; +/* background: var(--base); */ +/* border-top-left-radius: 10px !important; */ +/* border-top-right-radius: 10px !important; */ +/* padding-top: 20px; */ +} + +#txt2img_toprow, +#img2img_toprow { +background-color: unset; +} + +#txt2img_actions_column, #img2img_actions_column { +padding: 10px; +margin: 5px; +border-radius: 10px !important; +background-color: var(--base); +} + +#img_inpaint_mask > div:nth-child(3), +#img_inpaint_base > div:nth-child(3){ +border-width: 1px; +border-color:var(--surface0); + +} + +#img2img_settings { +border-radius: 10px; +} + +#mode_img2img > :not(:first-child) { +border-width: 0px; +} + + +#txt2img_gallery, +#img2img_gallery, +#extras_gallery { +background-color: var(--base) !important; +} + +#img2img_copy_to_img2img > :not(:first-child) { +border-width: 1px !important; +border-color: var(--surface0) !important; +border-radius: 10px !important; +margin-left: 10px; +} + +#txt2img_interrupt, #img2img_interrupt { +background-color: var(--red) !important; +color: var(--mantle); +} + +#txt2img_skip, #img2img_skip { +background-color: var(--maroon) !important; +color: var(--mantle); +} + +#txt2img_batch_count, +#txt2img_width { + margin-bottom: 0.625vw; +} + +#txt2img_script_container > div > div { + margin: 0px 1vh 0.9vw 1vh; +} + +#txt2img_script_container:last-child > div{ + margin: unset; +} + +.boder, +.dark .border, .border, +.dark .border-gray-100, .border-gray-100, +.dark .border-gray-200, .border-gray-200, +.dark .border-gray-300, .border-gray-300, +.dark .\!border, .\!border, +.dark .\!border-gray-300, .\!border-gray-300 { + border-color: var(--surface0); +} + + +.container { +background-color: var(--crust); +} + +fieldset span.text-gray-500, +.gr-block.gr-box span.text-gray-500, +label.block span { +box-shadow: unset; +} + +.dark .text-gray-500, .text-gray-500 { +color: var(--text); +} + +.dark fieldset span.text-gray-500, fieldset span.text-gray-500, +.dark .gr-block.gr-box, .gr-block.gr-box, +span.text-gray-500, +.dark label.block span, label.block span { + background-color: transparent; + border: transparent; +} + +.dark .text-gray-700, .text-gray-700, +.dark .text-gray-800, .text-gray-800, +.dark .text-gray-900, .text-gray-900, +.dark .\!text-gray-700, .\!text-gray-700, +.dark .\!text-gray-800, .\!text-gray-800 { +color: var(--text); +} + +#txt2img_settings > div { + margin-top: 2vh; + flex-grow: 0; + min-width: 30%; +} + +#tabs > :first-child { + background-color: var(--crust); +} + +#tabs{ + background-color: var(--mantle); +} + +#tab_txt2img > div { + background-color: var(--mantle); +} + +#tabs > div{ + border-width: 0px !important; + border-color:var(--surface0); +} + +#tabs > div:nth-child(1) { + flex-wrap: wrap-reverse; + background-color: var(--crust); +} +.tabs > :first-child { + border: none !important; + margin-bottom: -1px; + gap: 3px 0px; + background-color: var(--mantle); + padding-top: 5px; + z-index: 10; +} + +#img2img_img2img_tab { +border-width: 0px !important; +} + +#mode_img2img > div:nth-child(1) > .bg-white { +background-color: var(--base); +} + +#tab_extensions table td, #tab_extensions table th { +border: 1px solid var(--surface0); +} + +#extras_resize_mode > :first-child { +background-color: var(--base); +} + +#extras_resize_mode > :not(:first-child) { +background-color: var(--mantle) !important; +padding-top: 20px; +border-color: transparent; +border-radius: 0px 10px 10px 10px; +margin-bottom: 20px; + +} + +.tabs > :first-child > button { + border-radius: 8px 8px 0px 0px; + /* outline: 1px solid var(--base) !important; */ + border-color: var(--surface0); + border-width: 0px; + border-bottom-width: 0px; +} + + +#quicksettings { + background-color: transparent; +} + +input[type="range"]::-ms-track { + background: transparent; +} + +input[type="range"]::-ms-fill-lower { + background: var(--accent); + border-radius: 10px; +} +input[type="range"]::-ms-fill-upper { + background: var(--overlay0); + border-radius: 10px; +} + +input[type="range"]:focus::-ms-fill-lower { + background: var(--accent); +} +input[type="range"]:focus::-ms-fill-upper { + background: var(--overlay0); +} + +/* Chrome, Safari, Edge, Opera */ +input::-webkit-outer-spin-button, +input::-webkit-inner-spin-button { + -webkit-appearance: none; + margin: 0; +} + +/* Firefox */ +input[type="number"] { + -moz-appearance: textfield; +} +.gr-box > div > div > input.gr-text-input { + width: 4em; +} + +.progressDiv .progress { + background: var(--accent); + color: var(--shadow); +} + +.dark .progressDiv, .progressDiv { + background-color: var(--surface0); +} + +input[type="range"] { + font-size: 1.5rem; +} + +input[type="range"] { + color: var(--accent); + --thumb-height: 0.5em; + --track-height: 0.125em; + --track-color: var(--surface0); + --brightness-hover: 130%; + --brightness-down: 80%; + --clip-edges: 0.125em; +} + +input[type="range"].win10-thumb { + color: var(--accent); + + --thumb-height: 0.5em; + --thumb-width: 0.5em; + --clip-edges: 0.0125em; +} + +@media (prefers-color-scheme: dark) { + input[type="range"] { + color: var(--accent); + --track-color: var(--surface0); + } + + input[type="range"].win10-thumb { + color: var(--accent); + } +} + +/* === range commons === */ +input[type="range"] { + position: relative; + background: #fff0; + overflow: hidden; +} + +input[type="range"]:active { + cursor: grabbing; +} + +input[type="range"]:disabled { + filter: grayscale(1); + opacity: 0.3; + cursor: not-allowed; +} + +/* === WebKit specific styles === */ +input[type="range"], +input[type="range"]::-webkit-slider-runnable-track, +input[type="range"]::-webkit-slider-thumb { + -webkit-appearance: none; + transition: all ease 100ms; + height: var(--thumb-height); +} + +input[type="range"]::-webkit-slider-runnable-track, +input[type="range"]::-webkit-slider-thumb { + position: relative; +} + +input[type="range"]::-webkit-slider-thumb { + --thumb-radius: calc((var(--thumb-height) * 0.5) - 1px); + --clip-top: calc((var(--thumb-height) - var(--track-height)) * 0.5 - 0.5px); + --clip-bottom: calc(var(--thumb-height) - var(--clip-top)); + --clip-further: calc(100% + 1px); + --box-fill: calc(-100vmax - var(--thumb-width, var(--thumb-height))) 0 0 100vmax currentColor; + + width: var(--thumb-width, var(--thumb-height)); + background: linear-gradient(currentColor 0 0) scroll no-repeat left center / 50% calc(var(--track-height) + 1px); + background-color: currentColor; + box-shadow: var(--box-fill); + border-radius: var(--thumb-width, var(--thumb-height)); + + filter: brightness(100%); + clip-path: polygon( + 100% -1px, + var(--clip-edges) -1px, + 0 var(--clip-top), + -100vmax var(--clip-top), + -100vmax var(--clip-bottom), + 0 var(--clip-bottom), + var(--clip-edges) 100%, + var(--clip-further) var(--clip-further) + ); +} + +input[type="range"]:hover::-webkit-slider-thumb { + filter: brightness(var(--brightness-hover)); + cursor: grab; +} + +input[type="range"]:active::-webkit-slider-thumb { + filter: brightness(var(--brightness-down)); + cursor: grabbing; +} + +input[type="range"]::-webkit-slider-runnable-track { + background: linear-gradient(var(--track-color) 0 0) scroll no-repeat center / 100% calc(var(--track-height) + 1px); +} + +input[type="range"]:disabled::-webkit-slider-thumb { + cursor: not-allowed; +} + +/* === Firefox specific styles === */ +input[type="range"], +input[type="range"]::-moz-range-track, +input[type="range"]::-moz-range-thumb { + appearance: none; + transition: all ease 100ms; + height: var(--thumb-height); +} + +input[type="range"]::-moz-range-track, +input[type="range"]::-moz-range-thumb, +input[type="range"]::-moz-range-progress { + background: #fff0; +} + +input[type="range"]::-moz-range-thumb { + background: currentColor; + border: 0; + width: var(--thumb-width, var(--thumb-height)); + border-radius: var(--thumb-width, var(--thumb-height)); + cursor: grab; +} + +input[type="range"]:active::-moz-range-thumb { + cursor: grabbing; +} + +input[type="range"]::-moz-range-track { + width: 100%; + background: var(--track-color); +} + +input[type="range"]::-moz-range-progress { + appearance: none; + background: currentColor; + transition-delay: 30ms; +} + +input[type="range"]::-moz-range-track, +input[type="range"]::-moz-range-progress { + height: calc(var(--track-height) + 1px); + border-radius: var(--track-height); +} + +input[type="range"]::-moz-range-thumb, +input[type="range"]::-moz-range-progress { + filter: brightness(100%); +} + +input[type="range"]:hover::-moz-range-thumb, +input[type="range"]:hover::-moz-range-progress { + filter: brightness(var(--brightness-hover)); +} + +input[type="range"]:active::-moz-range-thumb, +input[type="range"]:active::-moz-range-progress { + filter: brightness(var(--brightness-down)); +} + +input[type="range"]:disabled::-moz-range-thumb { + cursor: not-allowed; +} + +/* all of the input range stuff is from this guy*/ +/* Shout out to them https://codepen.io/ShadowShahriar/pen/zYPPYrQ */ diff --git a/catpuccin/flavors/macchiato.css b/catpuccin/flavors/macchiato.css new file mode 100644 index 0000000000000000000000000000000000000000..4fedf947ccc514149ea32cb72dcb94ac741a2818 --- /dev/null +++ b/catpuccin/flavors/macchiato.css @@ -0,0 +1,354 @@ +:root { + --ctp-rosewater: #f4dbd6; + --ctp-flamingo: #f0c6c6; + --ctp-pink: #f5bde6; + --ctp-mauve: #c6a0f6; + --ctp-red: #ed8796; + --ctp-maroon: #ee99a0; + --ctp-peach: #f5a97f; + --ctp-yellow: #eed49f; + --ctp-green: #a6da95; + --ctp-teal: #8bd5ca; + --ctp-sky: #91d7e3; + --ctp-sapphire: #7dc4e4; + --ctp-blue: #8aadf4; + --ctp-lavender: #b7bdf8; + --ctp-text: #cad3f5; + --ctp-subtext1: #b8c0e0; + --ctp-subtext0: #a5adcb; + --ctp-overlay2: #939ab7; + --ctp-overlay1: #8087a2; + --ctp-overlay0: #6e738d; + --ctp-surface2: #5b6078; + --ctp-surface1: #494d64; + --ctp-surface0: #363a4f; + --ctp-base: #24273a; + --ctp-mantle: #1e2030; + --ctp-crust: #181926; + --shadow: #010409; + --ctp-accent: var(--ctp-maroon); + color-scheme: dark; +} + +:root, +.dark { + --body-background-fill: var(--background-fill-primary); + --body-text-color: var(--ctp-subtext0); + --color-accent-soft: var(--ctp-surface0); + --background-fill-primary: var(--ctp-mantle); + --background-fill-secondary: var(--ctp-base); + --border-color-accent: var(--ctp-surface0); + --border-color-primary: var(--ctp-surface1); + --link-text-color-active: var(--ctp-subtext0); + --link-text-color: var(--ctp-subtext0); + --link-text-color-hover: var(--ctp-accent); + --link-text-color-visited: var(--ctp-subtext0); + --body-text-color-subdued: var(--ctp-subtext0); + --shadow-spread: 1px; + --block-background-fill: var(--ctp-mantle); + --block-border-color: var(--border-color-primary); + --block_border_width: None; + --block-info-text-color: var(--body-text-color-subdued); + --block-label-background-fill: var(--background-fill-secondary); + --block-label-border-color: var(--border-color-primary); + --block_label_border_width: None; + --block-label-text-color: var(--ctp-text); + --block_shadow: None; + --block_title_background_fill: None; + --block_title_border_color: None; + --block_title_border_width: None; + --block-title-text-color: var(--ctp-text); + --panel-background-fill: var(--background-fill-secondary); + --panel-border-color: var(--border-color-primary); + --panel_border_width: None; + --checkbox-background-color: var(--ctp-surface1); + --checkbox-background-color-focus: var(--checkbox-background-color); + --checkbox-background-color-hover: var(--checkbox-background-color); + --checkbox-background-color-selected: var(--ctp-accent); + --checkbox-border-color: var(--ctp-surface0); + --checkbox-border-color-focus: var(--ctp-overlay0); + --checkbox-border-color-hover: var(--ctp-surface0); + --checkbox-border-color-selected: var(--ctp-overlay0); + --checkbox-border-width: var(--input-border-width); + --checkbox-label-background-fill: var(--ctp-surface0); + --checkbox-label-background-fill-hover: var(--ctp-surface0); + --checkbox-label-background-fill-selected: var( + --checkbox-label-background-fill + ); + --checkbox-label-border-color: var(--border-color-primary); + --checkbox-label-border-color-hover: var(--checkbox-label-border-color); + --checkbox-label-border-width: var(--input-border-width); + --checkbox-label-text-color: var(--body-text-color); + --checkbox-label-text-color-selected: var(--checkbox-label-text-color); + --error-background-fill: var(--background-fill-primary); + --error-border-color: var(--border-color-primary); + --error_border_width: None; + --error-text-color: var(--ctp-red); + --input-background-fill: var(--ctp-base); + --input-background-fill-focus: var(--input-background-fill); + --input-background-fill-hover: var(--input-background-fill); + --input-border-color: var(--border-color-primary); + --input-border-color-focus: var(--neutral-700); + --input-border-color-hover: var(--input-border-color); + --input_border_width: None; + --input-placeholder-color: var(--neutral-500); + --input_shadow: None; + --input-shadow-focus: 0 0 0 var(--shadow-spread) var(--neutral-700), + var(--shadow-inset); + --loader_color: None; + --slider_color: None; + --stat-background-fill: linear-gradient( + to right, + var(--primary-400), + var(--primary-600) + ); + --table-border-color: var(--neutral-700); + --table-even-background-fill: var(--neutral-950); + --table-odd-background-fill: var(--neutral-900); + --table-row-focus: var(--color-accent-soft); + --button-border-width: var(--input-border-width); + --button-cancel-background-fill: var(--ctp-red); + --button-cancel-background-fill-hover: var(--ctp-red); + --button-cancel-border-color: var(--ctp-red); + --button-cancel-border-color-hover: var(--button-cancel-border-color); + --button-cancel-text-color: var(--ctp-base); + --button-cancel-text-color-hover: var(--button-cancel-text-color); + --button-primary-background-fill: var(--ctp-accent); + --button-primary-background-fill-hover: var(--ctp-accent); + --button-primary-border-color: var(--ctp-accent); + --button-primary-border-color-hover: var(--button-primary-border-color); + --button-primary-text-color: var(--ctp-base); + --button-primary-text-color-hover: var(--button-primary-text-color); + --button-secondary-background-fill: var(--ctp-surface0); + --button-secondary-background-fill-hover: var(--ctp-surface0); + --button-secondary-border-color: var(--ctp-surface0); + --button-secondary-border-color-hover: var(--button-secondary-border-color); + --button-secondary-text-color: var(--ctp-text); + --button-secondary-text-color-hover: var(--button-secondary-text-color); +} + +.gradio-button:hover { + filter: brightness(130%); +} + +input[type='range']::-ms-track { + background: transparent; +} + +input[type='range']::-ms-fill-lower { + background: var(--ctp-accent); + border-radius: 10px; +} +input[type='range']::-ms-fill-upper { + background: var(--ctp-overlay0); + border-radius: 10px; +} + +input[type='range']:focus::-ms-fill-lower { + background: var(--ctp-accent); +} +input[type='range']:focus::-ms-fill-upper { + background: var(--ctp-overlay0); +} + +/* Chrome, Safari, Edge, Opera */ +input::-webkit-outer-spin-button, +input::-webkit-inner-spin-button { + -webkit-appearance: none; + margin: 0; +} + +/* Firefox */ +input[type='number'] { + -moz-appearance: textfield; +} +.gr-box > div > div > input.gr-text-input { + width: 4em; +} + +.progressDiv .progress { + background: var(--ctp-accent); + color: var(--shadow); +} + +.dark .progressDiv, +.progressDiv { + background-color: var(--ctp-surface0); +} + +input[type='range'] { + font-size: 1.5rem; +} + +input[type='range'] { + color: var(--accent); + --thumb-height: 0.5em; + --track-height: 0.125em; + --track-color: var(--ctp-surface0); + --brightness-hover: 130%; + --brightness-down: 80%; + --clip-edges: 0.125em; +} + +input[type='range'].win10-thumb { + color: var(--ctp-accent); + + --thumb-height: 0.5em; + --thumb-width: 0.5em; + --clip-edges: 0.0125em; +} + +@media (prefers-color-scheme: dark) { + input[type='range'] { + color: var(--ctp-accent); + --track-color: var(--ctp-surface0); + } + + input[type='range'].win10-thumb { + color: var(--ctp-accent); + } +} + +/* === range commons === */ +input[type='range'] { + position: relative; + background: #fff0; + overflow: hidden; +} + +input[type='range']:active { + cursor: grabbing; +} + +input[type='range']:disabled { + filter: grayscale(1); + opacity: 0.3; + cursor: not-allowed; +} + +/* === WebKit specific styles === */ +input[type='range'], +input[type='range']::-webkit-slider-runnable-track, +input[type='range']::-webkit-slider-thumb { + -webkit-appearance: none; + transition: all ease 100ms; + height: var(--thumb-height); +} + +input[type='range']::-webkit-slider-runnable-track, +input[type='range']::-webkit-slider-thumb { + position: relative; +} + +input[type='range']::-webkit-slider-thumb { + --thumb-radius: calc((var(--thumb-height) * 0.5) - 1px); + --clip-top: calc((var(--thumb-height) - var(--track-height)) * 0.5 - 0.5px); + --clip-bottom: calc(var(--thumb-height) - var(--clip-top)); + --clip-further: calc(100% + 1px); + --box-fill: calc(-100vmax - var(--thumb-width, var(--thumb-height))) 0 0 + 100vmax currentColor; + + width: var(--thumb-width, var(--thumb-height)); + background: linear-gradient(currentColor 0 0) scroll no-repeat left center / + 50% calc(var(--track-height) + 1px); + background-color: currentColor; + box-shadow: var(--box-fill); + border-radius: var(--thumb-width, var(--thumb-height)); + + filter: brightness(100%); + clip-path: polygon( + 100% -1px, + var(--clip-edges) -1px, + 0 var(--clip-top), + -100vmax var(--clip-top), + -100vmax var(--clip-bottom), + 0 var(--clip-bottom), + var(--clip-edges) 100%, + var(--clip-further) var(--clip-further) + ); +} + +input[type='range']:hover::-webkit-slider-thumb { + filter: brightness(var(--brightness-hover)); + cursor: grab; +} + +input[type='range']:active::-webkit-slider-thumb { + filter: brightness(var(--brightness-down)); + cursor: grabbing; +} + +input[type='range']::-webkit-slider-runnable-track { + background: linear-gradient(var(--track-color) 0 0) scroll no-repeat center / + 100% calc(var(--track-height) + 1px); +} + +input[type='range']:disabled::-webkit-slider-thumb { + cursor: not-allowed; +} + +/* === Firefox specific styles === */ +input[type='range'], +input[type='range']::-moz-range-track, +input[type='range']::-moz-range-thumb { + appearance: none; + transition: all ease 100ms; + height: var(--thumb-height); +} + +input[type='range']::-moz-range-track, +input[type='range']::-moz-range-thumb, +input[type='range']::-moz-range-progress { + background: #fff0; +} + +input[type='range']::-moz-range-thumb { + background: currentColor; + border: 0; + width: var(--thumb-width, var(--thumb-height)); + border-radius: var(--thumb-width, var(--thumb-height)); + cursor: grab; +} + +input[type='range']:active::-moz-range-thumb { + cursor: grabbing; +} + +input[type='range']::-moz-range-track { + width: 100%; + background: var(--track-color); +} + +input[type='range']::-moz-range-progress { + appearance: none; + background: currentColor; + transition-delay: 30ms; +} + +input[type='range']::-moz-range-track, +input[type='range']::-moz-range-progress { + height: calc(var(--track-height) + 1px); + border-radius: var(--track-height); +} + +input[type='range']::-moz-range-thumb, +input[type='range']::-moz-range-progress { + filter: brightness(100%); +} + +input[type='range']:hover::-moz-range-thumb, +input[type='range']:hover::-moz-range-progress { + filter: brightness(var(--brightness-hover)); +} + +input[type='range']:active::-moz-range-thumb, +input[type='range']:active::-moz-range-progress { + filter: brightness(var(--brightness-down)); +} + +input[type='range']:disabled::-moz-range-thumb { + cursor: not-allowed; +} + +/* all of the input range stuff is from this guy*/ +/* Shout out to them https://codepen.io/ShadowShahriar/pen/zYPPYrQ */ diff --git a/catpuccin/flavors/mocha.css b/catpuccin/flavors/mocha.css new file mode 100644 index 0000000000000000000000000000000000000000..6fd7db7eec4fabb015e95e9cbc76e6ba468362ca --- /dev/null +++ b/catpuccin/flavors/mocha.css @@ -0,0 +1,354 @@ +:root { + --ctp-rosewater: #f5e0dc; + --ctp-flamingo: #f2cdcd; + --ctp-pink: #f5c2e7; + --ctp-mauve: #cba6f7; + --ctp-red: #f38ba8; + --ctp-maroon: #eba0ac; + --ctp-peach: #fab387; + --ctp-yellow: #f9e2af; + --ctp-green: #a6e3a1; + --ctp-teal: #94e2d5; + --ctp-sky: #89dceb; + --ctp-sapphire: #74c7ec; + --ctp-lavender: #b4befe; + --ctp-blue: #89b4fa; + --ctp-text: #cdd6f4; + --ctp-subtext1: #bac2de; + --ctp-subtext0: #a6adc8; + --ctp-overlay2: #9399b2; + --ctp-overlay1: #7f849c; + --ctp-overlay0: #6c7086; + --ctp-surface2: #585b70; + --ctp-surface1: #45475a; + --ctp-surface0: #313244; + --ctp-base: #1e1e2e; + --ctp-mantle: #181825; + --ctp-crust: #11111b; + --shadow: #010409; + --ctp-accent: var(--ctp-maroon); + color-scheme: dark; +} + +:root, +.dark { + --body-background-fill: var(--background-fill-primary); + --body-text-color: var(--ctp-subtext0); + --color-accent-soft: var(--ctp-surface0); + --background-fill-primary: var(--ctp-mantle); + --background-fill-secondary: var(--ctp-base); + --border-color-accent: var(--ctp-surface0); + --border-color-primary: var(--ctp-surface1); + --link-text-color-active: var(--ctp-subtext0); + --link-text-color: var(--ctp-subtext0); + --link-text-color-hover: var(--ctp-accent); + --link-text-color-visited: var(--ctp-subtext0); + --body-text-color-subdued: var(--ctp-subtext0); + --shadow-spread: 1px; + --block-background-fill: var(--ctp-mantle); + --block-border-color: var(--border-color-primary); + --block_border_width: None; + --block-info-text-color: var(--body-text-color-subdued); + --block-label-background-fill: var(--background-fill-secondary); + --block-label-border-color: var(--border-color-primary); + --block_label_border_width: None; + --block-label-text-color: var(--ctp-text); + --block_shadow: None; + --block_title_background_fill: None; + --block_title_border_color: None; + --block_title_border_width: None; + --block-title-text-color: var(--ctp-text); + --panel-background-fill: var(--background-fill-secondary); + --panel-border-color: var(--border-color-primary); + --panel_border_width: None; + --checkbox-background-color: var(--ctp-surface1); + --checkbox-background-color-focus: var(--checkbox-background-color); + --checkbox-background-color-hover: var(--checkbox-background-color); + --checkbox-background-color-selected: var(--ctp-accent); + --checkbox-border-color: var(--ctp-surface0); + --checkbox-border-color-focus: var(--ctp-overlay0); + --checkbox-border-color-hover: var(--ctp-surface0); + --checkbox-border-color-selected: var(--ctp-overlay0); + --checkbox-border-width: var(--input-border-width); + --checkbox-label-background-fill: var(--ctp-surface0); + --checkbox-label-background-fill-hover: var(--ctp-surface0); + --checkbox-label-background-fill-selected: var( + --checkbox-label-background-fill + ); + --checkbox-label-border-color: var(--border-color-primary); + --checkbox-label-border-color-hover: var(--checkbox-label-border-color); + --checkbox-label-border-width: var(--input-border-width); + --checkbox-label-text-color: var(--body-text-color); + --checkbox-label-text-color-selected: var(--checkbox-label-text-color); + --error-background-fill: var(--background-fill-primary); + --error-border-color: var(--border-color-primary); + --error_border_width: None; + --error-text-color: var(--ctp-red); + --input-background-fill: var(--ctp-base); + --input-background-fill-focus: var(--input-background-fill); + --input-background-fill-hover: var(--input-background-fill); + --input-border-color: var(--border-color-primary); + --input-border-color-focus: var(--neutral-700); + --input-border-color-hover: var(--input-border-color); + --input_border_width: None; + --input-placeholder-color: var(--neutral-500); + --input_shadow: None; + --input-shadow-focus: 0 0 0 var(--shadow-spread) var(--neutral-700), + var(--shadow-inset); + --loader_color: None; + --slider_color: None; + --stat-background-fill: linear-gradient( + to right, + var(--primary-400), + var(--primary-600) + ); + --table-border-color: var(--neutral-700); + --table-even-background-fill: var(--neutral-950); + --table-odd-background-fill: var(--neutral-900); + --table-row-focus: var(--color-accent-soft); + --button-border-width: var(--input-border-width); + --button-cancel-background-fill: var(--ctp-red); + --button-cancel-background-fill-hover: var(--ctp-red); + --button-cancel-border-color: var(--ctp-red); + --button-cancel-border-color-hover: var(--button-cancel-border-color); + --button-cancel-text-color: var(--ctp-base); + --button-cancel-text-color-hover: var(--button-cancel-text-color); + --button-primary-background-fill: var(--ctp-accent); + --button-primary-background-fill-hover: var(--ctp-accent); + --button-primary-border-color: var(--ctp-accent); + --button-primary-border-color-hover: var(--button-primary-border-color); + --button-primary-text-color: var(--ctp-base); + --button-primary-text-color-hover: var(--button-primary-text-color); + --button-secondary-background-fill: var(--ctp-surface0); + --button-secondary-background-fill-hover: var(--ctp-surface0); + --button-secondary-border-color: var(--ctp-surface0); + --button-secondary-border-color-hover: var(--button-secondary-border-color); + --button-secondary-text-color: var(--ctp-text); + --button-secondary-text-color-hover: var(--button-secondary-text-color); +} + +.gradio-button:hover { + filter: brightness(130%); +} + +input[type='range']::-ms-track { + background: transparent; +} + +input[type='range']::-ms-fill-lower { + background: var(--ctp-accent); + border-radius: 10px; +} +input[type='range']::-ms-fill-upper { + background: var(--ctp-overlay0); + border-radius: 10px; +} + +input[type='range']:focus::-ms-fill-lower { + background: var(--ctp-accent); +} +input[type='range']:focus::-ms-fill-upper { + background: var(--ctp-overlay0); +} + +/* Chrome, Safari, Edge, Opera */ +input::-webkit-outer-spin-button, +input::-webkit-inner-spin-button { + -webkit-appearance: none; + margin: 0; +} + +/* Firefox */ +input[type='number'] { + -moz-appearance: textfield; +} +.gr-box > div > div > input.gr-text-input { + width: 4em; +} + +.progressDiv .progress { + background: var(--ctp-accent); + color: var(--shadow); +} + +.dark .progressDiv, +.progressDiv { + background-color: var(--ctp-surface0); +} + +input[type='range'] { + font-size: 1.5rem; +} + +input[type='range'] { + color: var(--accent); + --thumb-height: 0.5em; + --track-height: 0.125em; + --track-color: var(--ctp-surface0); + --brightness-hover: 130%; + --brightness-down: 80%; + --clip-edges: 0.125em; +} + +input[type='range'].win10-thumb { + color: var(--ctp-accent); + + --thumb-height: 0.5em; + --thumb-width: 0.5em; + --clip-edges: 0.0125em; +} + +@media (prefers-color-scheme: dark) { + input[type='range'] { + color: var(--ctp-accent); + --track-color: var(--ctp-surface0); + } + + input[type='range'].win10-thumb { + color: var(--ctp-accent); + } +} + +/* === range commons === */ +input[type='range'] { + position: relative; + background: #fff0; + overflow: hidden; +} + +input[type='range']:active { + cursor: grabbing; +} + +input[type='range']:disabled { + filter: grayscale(1); + opacity: 0.3; + cursor: not-allowed; +} + +/* === WebKit specific styles === */ +input[type='range'], +input[type='range']::-webkit-slider-runnable-track, +input[type='range']::-webkit-slider-thumb { + -webkit-appearance: none; + transition: all ease 100ms; + height: var(--thumb-height); +} + +input[type='range']::-webkit-slider-runnable-track, +input[type='range']::-webkit-slider-thumb { + position: relative; +} + +input[type='range']::-webkit-slider-thumb { + --thumb-radius: calc((var(--thumb-height) * 0.5) - 1px); + --clip-top: calc((var(--thumb-height) - var(--track-height)) * 0.5 - 0.5px); + --clip-bottom: calc(var(--thumb-height) - var(--clip-top)); + --clip-further: calc(100% + 1px); + --box-fill: calc(-100vmax - var(--thumb-width, var(--thumb-height))) 0 0 + 100vmax currentColor; + + width: var(--thumb-width, var(--thumb-height)); + background: linear-gradient(currentColor 0 0) scroll no-repeat left center / + 50% calc(var(--track-height) + 1px); + background-color: currentColor; + box-shadow: var(--box-fill); + border-radius: var(--thumb-width, var(--thumb-height)); + + filter: brightness(100%); + clip-path: polygon( + 100% -1px, + var(--clip-edges) -1px, + 0 var(--clip-top), + -100vmax var(--clip-top), + -100vmax var(--clip-bottom), + 0 var(--clip-bottom), + var(--clip-edges) 100%, + var(--clip-further) var(--clip-further) + ); +} + +input[type='range']:hover::-webkit-slider-thumb { + filter: brightness(var(--brightness-hover)); + cursor: grab; +} + +input[type='range']:active::-webkit-slider-thumb { + filter: brightness(var(--brightness-down)); + cursor: grabbing; +} + +input[type='range']::-webkit-slider-runnable-track { + background: linear-gradient(var(--track-color) 0 0) scroll no-repeat center / + 100% calc(var(--track-height) + 1px); +} + +input[type='range']:disabled::-webkit-slider-thumb { + cursor: not-allowed; +} + +/* === Firefox specific styles === */ +input[type='range'], +input[type='range']::-moz-range-track, +input[type='range']::-moz-range-thumb { + appearance: none; + transition: all ease 100ms; + height: var(--thumb-height); +} + +input[type='range']::-moz-range-track, +input[type='range']::-moz-range-thumb, +input[type='range']::-moz-range-progress { + background: #fff0; +} + +input[type='range']::-moz-range-thumb { + background: currentColor; + border: 0; + width: var(--thumb-width, var(--thumb-height)); + border-radius: var(--thumb-width, var(--thumb-height)); + cursor: grab; +} + +input[type='range']:active::-moz-range-thumb { + cursor: grabbing; +} + +input[type='range']::-moz-range-track { + width: 100%; + background: var(--track-color); +} + +input[type='range']::-moz-range-progress { + appearance: none; + background: currentColor; + transition-delay: 30ms; +} + +input[type='range']::-moz-range-track, +input[type='range']::-moz-range-progress { + height: calc(var(--track-height) + 1px); + border-radius: var(--track-height); +} + +input[type='range']::-moz-range-thumb, +input[type='range']::-moz-range-progress { + filter: brightness(100%); +} + +input[type='range']:hover::-moz-range-thumb, +input[type='range']:hover::-moz-range-progress { + filter: brightness(var(--brightness-hover)); +} + +input[type='range']:active::-moz-range-thumb, +input[type='range']:active::-moz-range-progress { + filter: brightness(var(--brightness-down)); +} + +input[type='range']:disabled::-moz-range-thumb { + cursor: not-allowed; +} + +/* all of the input range stuff is from this guy*/ +/* Shout out to them https://codepen.io/ShadowShahriar/pen/zYPPYrQ */ diff --git a/catpuccin/scripts/main.py b/catpuccin/scripts/main.py new file mode 100644 index 0000000000000000000000000000000000000000..9c79ad01c87ab8afdba1c5b594d15dc2b36e6671 --- /dev/null +++ b/catpuccin/scripts/main.py @@ -0,0 +1,67 @@ +import os +import re +import shutil +import gradio as gr +from modules import script_callbacks +from modules import shared, scripts +import modules.scripts as scripts + +accents = ['rosewater', 'flamingo', 'pink' , 'mauve' ,'red', 'maroon' ,'peach', 'yellow', 'green', 'teal', 'sky', 'blue', 'sapphire', 'lavender'] +flavors = ['latte', 'frappe', 'macchiato', 'mocha'] +script_path = os.path.dirname(os.path.dirname(os.path.realpath(__file__))) + +def on_ui_settings(): + section = ('ctp', 'Catppuccin Theme') + shared.opts.add_option("ctp_flavor", + shared.OptionInfo( + default='mocha', + label="Catppuccin Flavor", + component=gr.Radio, + component_args={"choices": flavors}, + onchange=on_ui_settings_change, + section=section)) + + shared.opts.add_option("accent_color", + shared.OptionInfo( + default='maroon', + label='Accent', + component=gr.Radio, + component_args={"choices": accents}, + onchange=on_accent_color_change, + section=section + )) + +def on_accent_color_change(): + # replace the accent color + with open(os.path.join(script_path,'style.css'), "r+") as file: + if gr.__version__ < '3.23.0': + pattern = re.compile(r"--accent:\s*(.*)") + text = re.sub(pattern, f'--accent: var(--{shared.opts.accent_color});', file.read(), count=1) + + else: + pattern = re.compile(r"--ctp-accent:\s*(.*)") + text = re.sub(pattern, f'--ctp-accent: var(--ctp-{shared.opts.accent_color});', file.read(), count=1) + file.seek(0) + file.write(text) + file.truncate() + +def on_ui_settings_change(): + # Move css over + if gr.__version__ < '3.23.0': + shutil.copy(os.path.join(script_path,f'flavors/legacy/{shared.opts.ctp_flavor}.css'), os.path.join(script_path, 'style.css')) + else: + shutil.copy(os.path.join(script_path,f'flavors/{shared.opts.ctp_flavor}.css'), os.path.join(script_path, 'style.css')) + # reappply accent color + on_accent_color_change() + +script_callbacks.on_ui_settings(on_ui_settings) + +# If the gradio version is legacy and the current theme is not, +# then copy the legacy theme over +if gr.__version__ < '3.23.0': + print('[Catppuccin Theme] Legacy Gradio detected!') + with open(os.path.join(script_path,'style.css'), "r") as file: + first_line = file.readline() + if not first_line.startswith('/* legacy */'): + print('[Catppuccin Theme] Setting up legacy theme... You may need to reload the ui to see changes') + shutil.copy(os.path.join(script_path,f'flavors/legacy/{shared.opts.ctp_flavor}.css'), os.path.join(script_path, 'style.css')) \ No newline at end of file diff --git a/catpuccin/style.css b/catpuccin/style.css new file mode 100644 index 0000000000000000000000000000000000000000..6fd7db7eec4fabb015e95e9cbc76e6ba468362ca --- /dev/null +++ b/catpuccin/style.css @@ -0,0 +1,354 @@ +:root { + --ctp-rosewater: #f5e0dc; + --ctp-flamingo: #f2cdcd; + --ctp-pink: #f5c2e7; + --ctp-mauve: #cba6f7; + --ctp-red: #f38ba8; + --ctp-maroon: #eba0ac; + --ctp-peach: #fab387; + --ctp-yellow: #f9e2af; + --ctp-green: #a6e3a1; + --ctp-teal: #94e2d5; + --ctp-sky: #89dceb; + --ctp-sapphire: #74c7ec; + --ctp-lavender: #b4befe; + --ctp-blue: #89b4fa; + --ctp-text: #cdd6f4; + --ctp-subtext1: #bac2de; + --ctp-subtext0: #a6adc8; + --ctp-overlay2: #9399b2; + --ctp-overlay1: #7f849c; + --ctp-overlay0: #6c7086; + --ctp-surface2: #585b70; + --ctp-surface1: #45475a; + --ctp-surface0: #313244; + --ctp-base: #1e1e2e; + --ctp-mantle: #181825; + --ctp-crust: #11111b; + --shadow: #010409; + --ctp-accent: var(--ctp-maroon); + color-scheme: dark; +} + +:root, +.dark { + --body-background-fill: var(--background-fill-primary); + --body-text-color: var(--ctp-subtext0); + --color-accent-soft: var(--ctp-surface0); + --background-fill-primary: var(--ctp-mantle); + --background-fill-secondary: var(--ctp-base); + --border-color-accent: var(--ctp-surface0); + --border-color-primary: var(--ctp-surface1); + --link-text-color-active: var(--ctp-subtext0); + --link-text-color: var(--ctp-subtext0); + --link-text-color-hover: var(--ctp-accent); + --link-text-color-visited: var(--ctp-subtext0); + --body-text-color-subdued: var(--ctp-subtext0); + --shadow-spread: 1px; + --block-background-fill: var(--ctp-mantle); + --block-border-color: var(--border-color-primary); + --block_border_width: None; + --block-info-text-color: var(--body-text-color-subdued); + --block-label-background-fill: var(--background-fill-secondary); + --block-label-border-color: var(--border-color-primary); + --block_label_border_width: None; + --block-label-text-color: var(--ctp-text); + --block_shadow: None; + --block_title_background_fill: None; + --block_title_border_color: None; + --block_title_border_width: None; + --block-title-text-color: var(--ctp-text); + --panel-background-fill: var(--background-fill-secondary); + --panel-border-color: var(--border-color-primary); + --panel_border_width: None; + --checkbox-background-color: var(--ctp-surface1); + --checkbox-background-color-focus: var(--checkbox-background-color); + --checkbox-background-color-hover: var(--checkbox-background-color); + --checkbox-background-color-selected: var(--ctp-accent); + --checkbox-border-color: var(--ctp-surface0); + --checkbox-border-color-focus: var(--ctp-overlay0); + --checkbox-border-color-hover: var(--ctp-surface0); + --checkbox-border-color-selected: var(--ctp-overlay0); + --checkbox-border-width: var(--input-border-width); + --checkbox-label-background-fill: var(--ctp-surface0); + --checkbox-label-background-fill-hover: var(--ctp-surface0); + --checkbox-label-background-fill-selected: var( + --checkbox-label-background-fill + ); + --checkbox-label-border-color: var(--border-color-primary); + --checkbox-label-border-color-hover: var(--checkbox-label-border-color); + --checkbox-label-border-width: var(--input-border-width); + --checkbox-label-text-color: var(--body-text-color); + --checkbox-label-text-color-selected: var(--checkbox-label-text-color); + --error-background-fill: var(--background-fill-primary); + --error-border-color: var(--border-color-primary); + --error_border_width: None; + --error-text-color: var(--ctp-red); + --input-background-fill: var(--ctp-base); + --input-background-fill-focus: var(--input-background-fill); + --input-background-fill-hover: var(--input-background-fill); + --input-border-color: var(--border-color-primary); + --input-border-color-focus: var(--neutral-700); + --input-border-color-hover: var(--input-border-color); + --input_border_width: None; + --input-placeholder-color: var(--neutral-500); + --input_shadow: None; + --input-shadow-focus: 0 0 0 var(--shadow-spread) var(--neutral-700), + var(--shadow-inset); + --loader_color: None; + --slider_color: None; + --stat-background-fill: linear-gradient( + to right, + var(--primary-400), + var(--primary-600) + ); + --table-border-color: var(--neutral-700); + --table-even-background-fill: var(--neutral-950); + --table-odd-background-fill: var(--neutral-900); + --table-row-focus: var(--color-accent-soft); + --button-border-width: var(--input-border-width); + --button-cancel-background-fill: var(--ctp-red); + --button-cancel-background-fill-hover: var(--ctp-red); + --button-cancel-border-color: var(--ctp-red); + --button-cancel-border-color-hover: var(--button-cancel-border-color); + --button-cancel-text-color: var(--ctp-base); + --button-cancel-text-color-hover: var(--button-cancel-text-color); + --button-primary-background-fill: var(--ctp-accent); + --button-primary-background-fill-hover: var(--ctp-accent); + --button-primary-border-color: var(--ctp-accent); + --button-primary-border-color-hover: var(--button-primary-border-color); + --button-primary-text-color: var(--ctp-base); + --button-primary-text-color-hover: var(--button-primary-text-color); + --button-secondary-background-fill: var(--ctp-surface0); + --button-secondary-background-fill-hover: var(--ctp-surface0); + --button-secondary-border-color: var(--ctp-surface0); + --button-secondary-border-color-hover: var(--button-secondary-border-color); + --button-secondary-text-color: var(--ctp-text); + --button-secondary-text-color-hover: var(--button-secondary-text-color); +} + +.gradio-button:hover { + filter: brightness(130%); +} + +input[type='range']::-ms-track { + background: transparent; +} + +input[type='range']::-ms-fill-lower { + background: var(--ctp-accent); + border-radius: 10px; +} +input[type='range']::-ms-fill-upper { + background: var(--ctp-overlay0); + border-radius: 10px; +} + +input[type='range']:focus::-ms-fill-lower { + background: var(--ctp-accent); +} +input[type='range']:focus::-ms-fill-upper { + background: var(--ctp-overlay0); +} + +/* Chrome, Safari, Edge, Opera */ +input::-webkit-outer-spin-button, +input::-webkit-inner-spin-button { + -webkit-appearance: none; + margin: 0; +} + +/* Firefox */ +input[type='number'] { + -moz-appearance: textfield; +} +.gr-box > div > div > input.gr-text-input { + width: 4em; +} + +.progressDiv .progress { + background: var(--ctp-accent); + color: var(--shadow); +} + +.dark .progressDiv, +.progressDiv { + background-color: var(--ctp-surface0); +} + +input[type='range'] { + font-size: 1.5rem; +} + +input[type='range'] { + color: var(--accent); + --thumb-height: 0.5em; + --track-height: 0.125em; + --track-color: var(--ctp-surface0); + --brightness-hover: 130%; + --brightness-down: 80%; + --clip-edges: 0.125em; +} + +input[type='range'].win10-thumb { + color: var(--ctp-accent); + + --thumb-height: 0.5em; + --thumb-width: 0.5em; + --clip-edges: 0.0125em; +} + +@media (prefers-color-scheme: dark) { + input[type='range'] { + color: var(--ctp-accent); + --track-color: var(--ctp-surface0); + } + + input[type='range'].win10-thumb { + color: var(--ctp-accent); + } +} + +/* === range commons === */ +input[type='range'] { + position: relative; + background: #fff0; + overflow: hidden; +} + +input[type='range']:active { + cursor: grabbing; +} + +input[type='range']:disabled { + filter: grayscale(1); + opacity: 0.3; + cursor: not-allowed; +} + +/* === WebKit specific styles === */ +input[type='range'], +input[type='range']::-webkit-slider-runnable-track, +input[type='range']::-webkit-slider-thumb { + -webkit-appearance: none; + transition: all ease 100ms; + height: var(--thumb-height); +} + +input[type='range']::-webkit-slider-runnable-track, +input[type='range']::-webkit-slider-thumb { + position: relative; +} + +input[type='range']::-webkit-slider-thumb { + --thumb-radius: calc((var(--thumb-height) * 0.5) - 1px); + --clip-top: calc((var(--thumb-height) - var(--track-height)) * 0.5 - 0.5px); + --clip-bottom: calc(var(--thumb-height) - var(--clip-top)); + --clip-further: calc(100% + 1px); + --box-fill: calc(-100vmax - var(--thumb-width, var(--thumb-height))) 0 0 + 100vmax currentColor; + + width: var(--thumb-width, var(--thumb-height)); + background: linear-gradient(currentColor 0 0) scroll no-repeat left center / + 50% calc(var(--track-height) + 1px); + background-color: currentColor; + box-shadow: var(--box-fill); + border-radius: var(--thumb-width, var(--thumb-height)); + + filter: brightness(100%); + clip-path: polygon( + 100% -1px, + var(--clip-edges) -1px, + 0 var(--clip-top), + -100vmax var(--clip-top), + -100vmax var(--clip-bottom), + 0 var(--clip-bottom), + var(--clip-edges) 100%, + var(--clip-further) var(--clip-further) + ); +} + +input[type='range']:hover::-webkit-slider-thumb { + filter: brightness(var(--brightness-hover)); + cursor: grab; +} + +input[type='range']:active::-webkit-slider-thumb { + filter: brightness(var(--brightness-down)); + cursor: grabbing; +} + +input[type='range']::-webkit-slider-runnable-track { + background: linear-gradient(var(--track-color) 0 0) scroll no-repeat center / + 100% calc(var(--track-height) + 1px); +} + +input[type='range']:disabled::-webkit-slider-thumb { + cursor: not-allowed; +} + +/* === Firefox specific styles === */ +input[type='range'], +input[type='range']::-moz-range-track, +input[type='range']::-moz-range-thumb { + appearance: none; + transition: all ease 100ms; + height: var(--thumb-height); +} + +input[type='range']::-moz-range-track, +input[type='range']::-moz-range-thumb, +input[type='range']::-moz-range-progress { + background: #fff0; +} + +input[type='range']::-moz-range-thumb { + background: currentColor; + border: 0; + width: var(--thumb-width, var(--thumb-height)); + border-radius: var(--thumb-width, var(--thumb-height)); + cursor: grab; +} + +input[type='range']:active::-moz-range-thumb { + cursor: grabbing; +} + +input[type='range']::-moz-range-track { + width: 100%; + background: var(--track-color); +} + +input[type='range']::-moz-range-progress { + appearance: none; + background: currentColor; + transition-delay: 30ms; +} + +input[type='range']::-moz-range-track, +input[type='range']::-moz-range-progress { + height: calc(var(--track-height) + 1px); + border-radius: var(--track-height); +} + +input[type='range']::-moz-range-thumb, +input[type='range']::-moz-range-progress { + filter: brightness(100%); +} + +input[type='range']:hover::-moz-range-thumb, +input[type='range']:hover::-moz-range-progress { + filter: brightness(var(--brightness-hover)); +} + +input[type='range']:active::-moz-range-thumb, +input[type='range']:active::-moz-range-progress { + filter: brightness(var(--brightness-down)); +} + +input[type='range']:disabled::-moz-range-thumb { + cursor: not-allowed; +} + +/* all of the input range stuff is from this guy*/ +/* Shout out to them https://codepen.io/ShadowShahriar/pen/zYPPYrQ */ diff --git a/depthmap2mask-main/README.md b/depthmap2mask-main/README.md new file mode 100644 index 0000000000000000000000000000000000000000..ec398f8ab7485b8dcbeb65679f4484ce4d197f31 --- /dev/null +++ b/depthmap2mask-main/README.md @@ -0,0 +1,132 @@ +# depthmap2mask + +Made as a script for the [AUTOMATIC1111/stable-diffusion-webui](https://github.com/AUTOMATIC1111/stable-diffusion-webui) repository. + + +## 💥 Installation 💥 + +Copy the url of that repository into the extension tab : + +![image](https://user-images.githubusercontent.com/15731540/204056273-fc27d1cf-48ac-4dc3-b737-95b4b1efd32e.png) + +OR copy that repository in your extension folder : + +![image](https://user-images.githubusercontent.com/15731540/203840272-83cccb24-4417-44bc-99df-e45eb5f3360c.png) + +You might need to restart the whole UI. Maybe twice. + +if you are on colab you can also add this line in a code block before starting the UI/after the installation cells : + + !git clone https://github.com/Extraltodeus/depthmap2mask.git /content/stable-diffusion-webui/extensions/depthmap2mask + +## The look + +![image](https://user-images.githubusercontent.com/15731540/204043153-09cbffd9-28ac-46be-ad99-fc7f2c8656a3.png) + +## What does this extension do? + +It creates masks for img2img based on a depth estimation made by [MiDaS](https://github.com/isl-org/MiDaS). + +![smallerone](https://user-images.githubusercontent.com/15731540/204043576-5dc02def-29f8-423e-a69e-d392f47d3602.png)![5050](https://user-images.githubusercontent.com/15731540/204043582-ae46d0b8-3c4b-43d5-b669-eaf2659ced14.png) + +## Where to find it after installing it? + +Go to your img2img tab then select it from the custom scripts list at the bottom. + +## Explanations of the different UI elements + +- Contrasts cut level + +![image](https://user-images.githubusercontent.com/15731540/204043824-6067bd9e-49d6-488b-8f99-47928c31ae46.png) + +This slider is **purely optional**. +The depthmap is in levels of gray. Each pixel has a value in between 0 and 255 depending if they are black (0) or white (255). That threshold slider will cut to black every pixel below the selected value and scale from black to white what is above its value. + +Or in a more human language, it will give more depth to your depthmaps while removing a lot of information. + +Example before/after with the slider's value around 220 and using the MiDaS-Large model: + +![00073--1 0- sampler -85-8 1-ac07d41f-20221125174853](https://user-images.githubusercontent.com/15731540/204044001-4e672bbe-4ff8-46ef-ae87-ec3377e7aa37.png)![00074--1 0- sampler -85-8 1-ac07d41f-20221125174934](https://user-images.githubusercontent.com/15731540/204044306-80c77ba3-3b38-4ea6-941c-f6c6006c8b4e.png) + +Using the MiDaS small model will give you similar if not more interesting results. + +![smallerone](https://user-images.githubusercontent.com/15731540/204043576-5dc02def-29f8-423e-a69e-d392f47d3602.png)![5050](https://user-images.githubusercontent.com/15731540/204043582-ae46d0b8-3c4b-43d5-b669-eaf2659ced14.png) + +So that's more of an extra-extra option or a way to make sure that your backgrounds are untouched by using a low value (like 50). + +- Match input size/Net width/Net height + +![image](https://user-images.githubusercontent.com/15731540/204044819-0618bf27-0692-4a20-922f-73e33822dc6f.png) + +Match input size (On by default) will make the depth analysis at the same size as the original image. Better not to touch it unless you are having performance issues. + +The sliders below will be the resolution of the analysis if Match input size is turned off. + +You can also just use these functionalities to test out different results. + +- Misc options + +![image](https://user-images.githubusercontent.com/15731540/204045429-778f3084-63ad-421d-ad43-af9a20c49621.png) + +- Override options : + + These two options simply overrides the inpainting Masked content method and mask blur. I added these because using "original" for Masked content and Mask Blur at 0 just works better. This saves you the clics needed to switch to the intpaint tab/reupload the image to that tab and select the right options. + +- MiDaS models : + + I'll let you try what suits your needs the most. + +- Turn the depthmap into absolute black/white + +![image](https://user-images.githubusercontent.com/15731540/204057815-1e7d1d38-2fbb-43a1-bb08-133e574138c2.png) + +This option will cut out the background of an image into pure black and make the foreground pure white. Like a clean cut. + +### Alpha Cropping + +You can also save a version of the input image which has had all the masked content replaced with transparent pixels. This is useful when extracting the subject from the background, so that it can be used in designs. + +![Image](https://i.imgur.com/yFX6LyQ.jpeg) + +Simply check the "Save alpha mask" option before generating. + +## Tips + +- Avoid using Euler a or you might get really bad results. Usually DDIM works best. + +## Credits/Citation + +Thanks to [thygate](https://github.com/thygate) for letting me blatantly copy-paste some of his functions for the depth analysis integration in the webui. + +This repository runs with [MiDaS](https://github.com/isl-org/MiDaS). + +``` +@ARTICLE {Ranftl2022, + author = "Ren\'{e} Ranftl and Katrin Lasinger and David Hafner and Konrad Schindler and Vladlen Koltun", + title = "Towards Robust Monocular Depth Estimation: Mixing Datasets for Zero-Shot Cross-Dataset Transfer", + journal = "IEEE Transactions on Pattern Analysis and Machine Intelligence", + year = "2022", + volume = "44", + number = "3" +} +``` +``` +@article{Ranftl2021, + author = {Ren\'{e} Ranftl and Alexey Bochkovskiy and Vladlen Koltun}, + title = {Vision Transformers for Dense Prediction}, + journal = {ICCV}, + year = {2021}, +} +``` + +## Bug reporting + +- Please check if similar issues exist before creating a new one. +- Make sure to do a "git pull" from your webui folder in order to have your webui up to date +- Provide as many details as possible when creating a new issue. + +## Examples using different MiDaS models and denoising strength +![00056-589874964- sampler -32-7-ac07d41f-20221125174017](https://user-images.githubusercontent.com/15731540/204048931-20b19823-bba9-44be-a4ff-4d3ae65dd120.png)![00064-1584461722- sampler -32-7-ac07d41f-20221125174328](https://user-images.githubusercontent.com/15731540/204048940-fada95f2-fcb0-4cf7-ba0c-6a1fd6b904ea.png)![00100-717650490- sampler -84-8 1-ac07d41f-20221125175700](https://user-images.githubusercontent.com/15731540/204048949-a4faf745-e9b5-437e-870d-be8ea7bd4b5d.png) + + +I forgot my settings but in the end it's all pretty easy to guess what you need. diff --git a/depthmap2mask-main/install.py b/depthmap2mask-main/install.py new file mode 100644 index 0000000000000000000000000000000000000000..b1c3e44b60ab7e5e7a13ba8bbac9b9166e4a53d8 --- /dev/null +++ b/depthmap2mask-main/install.py @@ -0,0 +1,2 @@ +import launch +launch.git_clone("https://github.com/isl-org/MiDaS.git", "repositories/midas", "midas", "1645b7e") diff --git a/depthmap2mask-main/scripts/depth2image_depthmask.py b/depthmap2mask-main/scripts/depth2image_depthmask.py new file mode 100644 index 0000000000000000000000000000000000000000..4300bcc644e350bbdcf467cdbdbb9929b7eb18bb --- /dev/null +++ b/depthmap2mask-main/scripts/depth2image_depthmask.py @@ -0,0 +1,117 @@ +from modules.processing import Processed, StableDiffusionProcessingImg2Img, process_images, images, fix_seed +from modules.shared import opts, cmd_opts, state +from PIL import Image, ImageOps +from math import ceil +import cv2 + +import modules.scripts as scripts +from modules import sd_samplers +from random import randint, shuffle +import random +from skimage.util import random_noise +import gradio as gr +import numpy as np +import sys +import os +import copy +import importlib.util + +def module_from_file(module_name, file_path): + spec = importlib.util.spec_from_file_location(module_name, file_path) + module = importlib.util.module_from_spec(spec) + spec.loader.exec_module(module) + return module + +class Script(scripts.Script): + def title(self): + return "Depth aware img2img mask" + + def show(self, is_img2img): + return is_img2img + + def ui(self, is_img2img): + if not is_img2img: return + models = ["dpt_beit_large_512", + "dpt_beit_large_384", + "dpt_beit_base_384", + "dpt_swin2_large_384", + "dpt_swin2_base_384", + "dpt_swin2_tiny_256", + "dpt_swin_large_384", + "dpt_next_vit_large_384", + "dpt_levit_224", + "dpt_large_384", + "dpt_hybrid_384", + "midas_v21_384", + "midas_v21_small_256", + # "openvino_midas_v21_small_256" + ] + + treshold = gr.Slider(minimum=0, maximum=255, step=1, label='Contrasts cut level', value=0) + match_size = gr.Checkbox(label="Match input size",value=True) + net_width = gr.Slider(minimum=64, maximum=2048, step=64, label='Net width', value=384) + net_height = gr.Slider(minimum=64, maximum=2048, step=64, label='Net height', value=384) + with gr.Row(): + invert_depth = gr.Checkbox(label="Invert DepthMap",value=False) + save_depthmap = gr.Checkbox(label='Save depth map', value=False) + save_alpha_crop = gr.Checkbox(label='Save alpha crop', value=False) + override_mask_blur = gr.Checkbox(label='Override mask blur to 0', value=True) + override_fill = gr.Checkbox(label='Override inpaint to original', value=True) + clean_cut = gr.Checkbox(label='Turn the depthmap into absolute black/white', value=False) + model_type = gr.Dropdown(label="Model", choices=models, value="dpt_swin2_base_384", type="index", elem_id="model_type") + # model_type = gr.Dropdown(label="Model", choices=['dpt_large','dpt_hybrid','midas_v21','midas_v21_small'], value='dpt_large', type="index", elem_id="model_type") + return [save_depthmap,treshold,match_size,net_width,net_height,invert_depth,model_type,override_mask_blur,override_fill,clean_cut, save_alpha_crop] + + def run(self,p,save_depthmap,treshold,match_size,net_width,net_height,invert_depth,model_type,override_mask_blur,override_fill,clean_cut, save_alpha_crop): + def remap_range(value, minIn, MaxIn, minOut, maxOut): + if value > MaxIn: value = MaxIn; + if value < minIn: value = minIn; + finalValue = ((value - minIn) / (MaxIn - minIn)) * (maxOut - minOut) + minOut; + return finalValue; + def create_depth_mask_from_depth_map(img,save_depthmap,p,treshold,clean_cut, save_alpha_crop): + img = copy.deepcopy(img.convert("RGBA")) + mask_img = copy.deepcopy(img.convert("L")) + mask_datas = mask_img.getdata() + datas = img.getdata() + newData = [] + maxD = max(mask_datas) + if clean_cut and treshold == 0: + treshold = 128 + for i in range(len(mask_datas)): + if clean_cut and mask_datas[i] > treshold: + newrgb = 255 + elif mask_datas[i] > treshold and not clean_cut: + newrgb = int(remap_range(mask_datas[i],treshold,255,0,255)) + else: + newrgb = 0 + newData.append((newrgb,newrgb,newrgb,255)) + img.putdata(newData) + return img + + sdmg = module_from_file("depthmap_for_depth2img",'extensions/depthmap2mask/scripts/depthmap_for_depth2img.py') + sdmg = sdmg.SimpleDepthMapGenerator() #import midas + + img_x = p.width if match_size else net_width + img_y = p.height if match_size else net_height + + d_m = sdmg.calculate_depth_maps(p.init_images[0],img_x,img_y,model_type,invert_depth) + + if treshold > 0 or clean_cut: + d_m = create_depth_mask_from_depth_map(d_m,save_depthmap,p,treshold,clean_cut, save_alpha_crop) + + if save_depthmap: + images.save_image(d_m, p.outpath_samples, "", p.seed, p.prompt, opts.samples_format, p=p) + + if save_alpha_crop: + alpha_crop = p.init_images[0].copy() + alpha_crop.putalpha(d_m.convert("L")) + images.save_image(alpha_crop, p.outpath_samples, "alpha-crop", p.seed, p.prompt, opts.samples_format, p=p) + + p.image_mask = d_m + if override_mask_blur: p.mask_blur = 0 + if override_fill: p.inpainting_fill = 1 + proc = process_images(p) + proc.images.append(d_m) + if save_alpha_crop: + proc.images.append(alpha_crop) + return proc diff --git a/depthmap2mask-main/scripts/depthmap_for_depth2img.py b/depthmap2mask-main/scripts/depthmap_for_depth2img.py new file mode 100644 index 0000000000000000000000000000000000000000..03cb6072dee57242c736cacbcc72794fa7c3fc3b --- /dev/null +++ b/depthmap2mask-main/scripts/depthmap_for_depth2img.py @@ -0,0 +1,349 @@ +import torch, gc +import cv2 +import requests +import os.path +import contextlib +from PIL import Image +from modules.shared import opts, cmd_opts +from modules import processing, images, shared, devices +import os + +from torchvision.transforms import Compose + +from repositories.midas.midas.dpt_depth import DPTDepthModel +from repositories.midas.midas.midas_net import MidasNet +from repositories.midas.midas.midas_net_custom import MidasNet_small +from repositories.midas.midas.transforms import Resize, NormalizeImage, PrepareForNet + +import numpy as np + +def load_model(device, model_path, model_type="dpt_large_384", optimize=True, size=None, square=False): + """Load the specified network. + + Args: + device (device): the torch device used + model_path (str): path to saved model + model_type (str): the type of the model to be loaded + optimize (bool): optimize the model to half-integer on CUDA? + size (int, int): inference encoder image size + square (bool): resize to a square resolution? + + Returns: + The loaded network, the transform which prepares images as input to the network and the dimensions of the + network input + """ + if "openvino" in model_type: + from openvino.runtime import Core + + keep_aspect_ratio = not square + + if model_type == "dpt_beit_large_512": + model = DPTDepthModel( + path=model_path, + backbone="beitl16_512", + non_negative=True, + ) + net_w, net_h = 512, 512 + resize_mode = "minimal" + normalization = NormalizeImage(mean=[0.5, 0.5, 0.5], std=[0.5, 0.5, 0.5]) + + elif model_type == "dpt_beit_large_384": + model = DPTDepthModel( + path=model_path, + backbone="beitl16_384", + non_negative=True, + ) + net_w, net_h = 384, 384 + resize_mode = "minimal" + normalization = NormalizeImage(mean=[0.5, 0.5, 0.5], std=[0.5, 0.5, 0.5]) + + elif model_type == "dpt_beit_base_384": + model = DPTDepthModel( + path=model_path, + backbone="beitb16_384", + non_negative=True, + ) + net_w, net_h = 384, 384 + resize_mode = "minimal" + normalization = NormalizeImage(mean=[0.5, 0.5, 0.5], std=[0.5, 0.5, 0.5]) + + elif model_type == "dpt_swin2_large_384": + model = DPTDepthModel( + path=model_path, + backbone="swin2l24_384", + non_negative=True, + ) + net_w, net_h = 384, 384 + keep_aspect_ratio = False + resize_mode = "minimal" + normalization = NormalizeImage(mean=[0.5, 0.5, 0.5], std=[0.5, 0.5, 0.5]) + + elif model_type == "dpt_swin2_base_384": + model = DPTDepthModel( + path=model_path, + backbone="swin2b24_384", + non_negative=True, + ) + net_w, net_h = 384, 384 + keep_aspect_ratio = False + resize_mode = "minimal" + normalization = NormalizeImage(mean=[0.5, 0.5, 0.5], std=[0.5, 0.5, 0.5]) + + elif model_type == "dpt_swin2_tiny_256": + model = DPTDepthModel( + path=model_path, + backbone="swin2t16_256", + non_negative=True, + ) + net_w, net_h = 256, 256 + keep_aspect_ratio = False + resize_mode = "minimal" + normalization = NormalizeImage(mean=[0.5, 0.5, 0.5], std=[0.5, 0.5, 0.5]) + + elif model_type == "dpt_swin_large_384": + model = DPTDepthModel( + path=model_path, + backbone="swinl12_384", + non_negative=True, + ) + net_w, net_h = 384, 384 + keep_aspect_ratio = False + resize_mode = "minimal" + normalization = NormalizeImage(mean=[0.5, 0.5, 0.5], std=[0.5, 0.5, 0.5]) + + elif model_type == "dpt_next_vit_large_384": + model = DPTDepthModel( + path=model_path, + backbone="next_vit_large_6m", + non_negative=True, + ) + net_w, net_h = 384, 384 + resize_mode = "minimal" + normalization = NormalizeImage(mean=[0.5, 0.5, 0.5], std=[0.5, 0.5, 0.5]) + + # We change the notation from dpt_levit_224 (MiDaS notation) to levit_384 (timm notation) here, where the 224 refers + # to the resolution 224x224 used by LeViT and 384 is the first entry of the embed_dim, see _cfg and model_cfgs of + # https://github.com/rwightman/pytorch-image-models/blob/main/timm/models/levit.py + # (commit id: 927f031293a30afb940fff0bee34b85d9c059b0e) + elif model_type == "dpt_levit_224": + model = DPTDepthModel( + path=model_path, + backbone="levit_384", + non_negative=True, + head_features_1=64, + head_features_2=8, + ) + net_w, net_h = 224, 224 + keep_aspect_ratio = False + resize_mode = "minimal" + normalization = NormalizeImage(mean=[0.5, 0.5, 0.5], std=[0.5, 0.5, 0.5]) + + elif model_type == "dpt_large_384": + model = DPTDepthModel( + path=model_path, + backbone="vitl16_384", + non_negative=True, + ) + net_w, net_h = 384, 384 + resize_mode = "minimal" + normalization = NormalizeImage(mean=[0.5, 0.5, 0.5], std=[0.5, 0.5, 0.5]) + + elif model_type == "dpt_hybrid_384": + model = DPTDepthModel( + path=model_path, + backbone="vitb_rn50_384", + non_negative=True, + ) + net_w, net_h = 384, 384 + resize_mode = "minimal" + normalization = NormalizeImage(mean=[0.5, 0.5, 0.5], std=[0.5, 0.5, 0.5]) + + elif model_type == "midas_v21_384": + model = MidasNet(model_path, non_negative=True) + net_w, net_h = 384, 384 + resize_mode = "upper_bound" + normalization = NormalizeImage( + mean=[0.485, 0.456, 0.406], std=[0.229, 0.224, 0.225] + ) + + elif model_type == "midas_v21_small_256": + model = MidasNet_small(model_path, features=64, backbone="efficientnet_lite3", exportable=True, + non_negative=True, blocks={'expand': True}) + net_w, net_h = 256, 256 + resize_mode = "upper_bound" + normalization = NormalizeImage( + mean=[0.485, 0.456, 0.406], std=[0.229, 0.224, 0.225] + ) + + elif model_type == "openvino_midas_v21_small_256": + ie = Core() + uncompiled_model = ie.read_model(model=model_path) + model = ie.compile_model(uncompiled_model, "CPU") + net_w, net_h = 256, 256 + resize_mode = "upper_bound" + normalization = NormalizeImage( + mean=[0.485, 0.456, 0.406], std=[0.229, 0.224, 0.225] + ) + + else: + print(f"model_type '{model_type}' not implemented, use: --model_type large") + assert False + + if not "openvino" in model_type: + print("Model loaded, number of parameters = {:.0f}M".format(sum(p.numel() for p in model.parameters()) / 1e6)) + else: + print("Model loaded, optimized with OpenVINO") + + if "openvino" in model_type: + keep_aspect_ratio = False + + if size is not None: + net_w, net_h = size + + transform = Compose( + [ + Resize( + net_w, + net_h, + resize_target=None, + keep_aspect_ratio=keep_aspect_ratio, + ensure_multiple_of=32, + resize_method=resize_mode, + image_interpolation_method=cv2.INTER_CUBIC, + ), + normalization, + PrepareForNet(), + ] + ) + + if not "openvino" in model_type: + model.eval() + + if optimize and (device == torch.device("cuda")): + if not "openvino" in model_type: + model = model.to(memory_format=torch.channels_last) + model = model.half() + else: + print("Error: OpenVINO models are already optimized. No optimization to half-float possible.") + exit() + + if not "openvino" in model_type: + model.to(device) + + return model, transform + +class SimpleDepthMapGenerator(object): + def calculate_depth_maps(self,image,img_x,img_y,model_type_index,invert_depth): + try: + model = None + def download_file(filename, url): + print(f"download {filename} form {url}") + import sys + try: + with open(filename+'.tmp', "wb") as f: + response = requests.get(url, stream=True) + total_length = response.headers.get('content-length') + + if total_length is None: # no content length header + f.write(response.content) + else: + dl = 0 + total_length = int(total_length) + for data in response.iter_content(chunk_size=4096): + dl += len(data) + f.write(data) + done = int(50 * dl / total_length) + sys.stdout.write("\r[%s%s]" % ('=' * done, ' ' * (50-done)) ) + sys.stdout.flush() + os.rename(filename+'.tmp', filename) + except Exception as e: + os.remove(filename+'.tmp') + print("\n--------download fail------------\n") + raise e + + device = torch.device("cuda" if torch.cuda.is_available() else "cpu") + # model path and name + model_dir = "./models/midas" + # create path to model if not present + os.makedirs(model_dir, exist_ok=True) + print("Loading midas model weights ..") + device = torch.device("cuda" if torch.cuda.is_available() else "cpu") + models = ["dpt_beit_large_512", + "dpt_beit_large_384", + "dpt_beit_base_384", + "dpt_swin2_large_384", + "dpt_swin2_base_384", + "dpt_swin2_tiny_256", + "dpt_swin_large_384", + "dpt_next_vit_large_384", + "dpt_levit_224", + "dpt_large_384", + "dpt_hybrid_384", + "midas_v21_384", + "midas_v21_small_256", + # "openvino_midas_v21_small_256" + ] + model_path = model_dir + '/' + models[model_type_index] + '.pt' + if not os.path.exists(model_path): + if models.index("midas_v21_384") <= model_type_index: + download_file(model_path, "https://github.com/isl-org/MiDaS/releases/download/v2_1/"+ models[model_type_index] + ".pt") + elif models.index("midas_v21_384") > model_type_index > models.index("dpt_large_384"): + download_file(model_path, "https://github.com/isl-org/MiDaS/releases/download/v3/"+ models[model_type_index] + ".pt") + else: + download_file(model_path, "https://github.com/isl-org/MiDaS/releases/download/v3_1/"+ models[model_type_index] + ".pt") + model, transform = load_model(device, model_path, models[model_type_index], (img_x, img_y)) + + img = cv2.cvtColor(np.asarray(image), cv2.COLOR_BGR2RGB) / 255.0 + img_input = transform({"image": img})["image"] + precision_scope = torch.autocast if shared.cmd_opts.precision == "autocast" and device == torch.device("cuda") else contextlib.nullcontext + # compute + with torch.no_grad(), precision_scope("cuda"): + sample = torch.from_numpy(img_input).to(device).unsqueeze(0) + if device == torch.device("cuda"): + sample = sample.to(memory_format=torch.channels_last) + if not cmd_opts.no_half: + sample = sample.half() + prediction = model.forward(sample) + prediction = ( + torch.nn.functional.interpolate( + prediction.unsqueeze(1), + size=img.shape[:2], + mode="bicubic", + align_corners=False, + ) + .squeeze() + .cpu() + .numpy() + ) + # output + depth = prediction + numbytes=2 + depth_min = depth.min() + depth_max = depth.max() + max_val = (2**(8*numbytes))-1 + + # check output before normalizing and mapping to 16 bit + if depth_max - depth_min > np.finfo("float").eps: + out = max_val * (depth - depth_min) / (depth_max - depth_min) + else: + out = np.zeros(depth.shape) + # single channel, 16 bit image + img_output = out.astype("uint16") + + # # invert depth map + if invert_depth: + img_output = cv2.bitwise_not(img_output) + + # three channel, 8 bits per channel image + img_output2 = np.zeros_like(image) + img_output2[:,:,0] = img_output / 256.0 + img_output2[:,:,1] = img_output / 256.0 + img_output2[:,:,2] = img_output / 256.0 + img = Image.fromarray(img_output2) + return img + except Exception: + raise + finally: + del model + gc.collect() + devices.torch_gc() diff --git a/matic-promptgen/.gitignore b/matic-promptgen/.gitignore new file mode 100644 index 0000000000000000000000000000000000000000..7df542410f97cd8681322fafb13cd21b3f6d89ae --- /dev/null +++ b/matic-promptgen/.gitignore @@ -0,0 +1,2 @@ +__pycache__ +/models diff --git a/matic-promptgen/LICENSE.txt b/matic-promptgen/LICENSE.txt new file mode 100644 index 0000000000000000000000000000000000000000..99d862fe15e30a7fe143d84dc4f88773f89a5c1f --- /dev/null +++ b/matic-promptgen/LICENSE.txt @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2023 AUTOMATIC1111 + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/matic-promptgen/README.md b/matic-promptgen/README.md new file mode 100644 index 0000000000000000000000000000000000000000..d54990ce3e69500d85e824f8fd9f9db09910636b --- /dev/null +++ b/matic-promptgen/README.md @@ -0,0 +1,46 @@ +# Prompt generator +An extension for [webui](https://github.com/AUTOMATIC1111/stable-diffusion-webui) that lets you generate prompts. + +![](screenshot.png) + +## Getting more models online +You can add models from huggingface to the selection of models in setting. The setting field +is `Hugginface model names for promptgen, separated by comma`, and its default value is +just: +``` +AUTOMATIC/promptgen-lexart, AUTOMATIC/promptgen-majinai-safe, AUTOMATIC/promptgen-majinai-unsafe +``` +Those are GPT2 finetunes I did on various datasets: + +- [AUTOMATIC/promptgen-lexart](https://huggingface.co/AUTOMATIC/promptgen-lexart): Finetuned distilgpt2 for 100 epochs on prompts scraped from lexica.art +- [AUTOMATIC/promptgen-majinai-safe](https://huggingface.co/AUTOMATIC/promptgen-majinai-safe): Finetuned distilgpt2 for 40 epochs on safe prompts scraped from majinai.art. +- [AUTOMATIC/promptgen-majinai-unsafe](https://huggingface.co/AUTOMATIC/promptgen-majinai-unsafe): Finetuned distilgpt2 for 40 epochs on unsafe prompts scraped from majinai.art. + +To add more models, add more items to the setting, for example like this: + +``` +AUTOMATIC/promptgen-lexart, AUTOMATIC/promptgen-majinai-safe, AUTOMATIC/promptgen-majinai-unsafe, succinctly/text2image-prompt-generator, microsoft/Promptist +``` + +Reloading UI is required to apply this setting. + +## Getting more models offline +Put your models into the `models` directort inside the extension. For example, my model can be +made fully offline by placing fines from https://huggingface.co/AUTOMATIC/promptgen-lexart/tree/main into +those directories: + +``` + + 📁 webui root directory + ┗━━ 📁 extensions + ┗━━ 📁 stable-diffusion-webui-promptgen + ┗━━ 📁 models + ┗━━ 📁 promptgen-lexart <----- any name can be used + ┣━━ 📄 config.json <----- each model has its own set of required files; + ┣━━ 📄 merges.txt mine requires all those + ┣━━ 📄 pytorch_model.bin + ┣━━ 📄 tokenizer_config.json + ┗━━ 📄 vocab.json +``` + +Reloading UI is required to see new models. diff --git a/matic-promptgen/explanation.html b/matic-promptgen/explanation.html new file mode 100644 index 0000000000000000000000000000000000000000..55977df7b95783a814fb595aab36ac9162ff0357 --- /dev/null +++ b/matic-promptgen/explanation.html @@ -0,0 +1,49 @@ + + diff --git a/matic-promptgen/javascript/promptgen.js b/matic-promptgen/javascript/promptgen.js new file mode 100644 index 0000000000000000000000000000000000000000..e24478acb1f3a851b52e7ff99b47ad08cd0d2ee1 --- /dev/null +++ b/matic-promptgen/javascript/promptgen.js @@ -0,0 +1,22 @@ + +function promptgen_send_to(where, text){ + textarea = gradioApp().querySelector('#promptgen_selected_text textarea') + textarea.value = text + updateInput(textarea) + + gradioApp().querySelector('#promptgen_send_to_'+where).click() + + where == 'txt2img' ? switch_to_txt2img() : switch_to_img2img() +} + +function promptgen_send_to_txt2img(text){ promptgen_send_to('txt2img', text) } +function promptgen_send_to_img2img(text){ promptgen_send_to('img2img', text) } + +function submit_promptgen(){ + var id = randomId() + requestProgress(id, gradioApp().getElementById('promptgen_results_column'), null, function(){}) + + var res = create_submit_args(arguments) + res[0] = id + return res +} diff --git a/matic-promptgen/screenshot.png b/matic-promptgen/screenshot.png new file mode 100644 index 0000000000000000000000000000000000000000..514f5dddbfbe55ae8042e3e0b7b78c09e7221e71 --- /dev/null +++ b/matic-promptgen/screenshot.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e542302b04091517f64e69a07321aa952666f942d3d039ea818d1f8aa28b4e5c +size 231634 diff --git a/matic-promptgen/scripts/promptgen.py b/matic-promptgen/scripts/promptgen.py new file mode 100644 index 0000000000000000000000000000000000000000..9a9489617261c5c5757acf0e3ab112e193e1dae0 --- /dev/null +++ b/matic-promptgen/scripts/promptgen.py @@ -0,0 +1,243 @@ +import html +import os +import time + +import torch +import transformers + +from modules import shared, generation_parameters_copypaste + +from modules import scripts, script_callbacks, devices, ui +import gradio as gr + +from modules.ui_components import FormRow + + +class Model: + name = None + model = None + tokenizer = None + + +available_models = [] +current = Model() + +base_dir = scripts.basedir() +models_dir = os.path.join(base_dir, "models") + + +def device(): + return devices.cpu if shared.opts.promptgen_device == 'cpu' else devices.device + + +def list_available_models(): + available_models.clear() + + os.makedirs(models_dir, exist_ok=True) + + for dirname in os.listdir(models_dir): + if os.path.isdir(os.path.join(models_dir, dirname)): + available_models.append(dirname) + + for name in [x.strip() for x in shared.opts.promptgen_names.split(",")]: + if not name: + continue + + available_models.append(name) + + +def get_model_path(name): + dirname = os.path.join(models_dir, name) + if not os.path.isdir(dirname): + return name + + return dirname + + +def generate_batch(input_ids, min_length, max_length, num_beams, temperature, repetition_penalty, length_penalty, sampling_mode, top_k, top_p): + top_p = float(top_p) if sampling_mode == 'Top P' else None + top_k = int(top_k) if sampling_mode == 'Top K' else None + + outputs = current.model.generate( + input_ids, + do_sample=True, + temperature=max(float(temperature), 1e-6), + repetition_penalty=repetition_penalty, + length_penalty=length_penalty, + top_p=top_p, + top_k=top_k, + num_beams=int(num_beams), + min_length=min_length, + max_length=max_length, + pad_token_id=current.tokenizer.pad_token_id or current.tokenizer.eos_token_id + ) + texts = current.tokenizer.batch_decode(outputs, skip_special_tokens=True) + return texts + + +def model_selection_changed(model_name): + if model_name == "None": + current.tokenizer = None + current.model = None + current.name = None + + devices.torch_gc() + + +def generate(id_task, model_name, batch_count, batch_size, text, *args): + shared.state.textinfo = "Loading model..." + shared.state.job_count = batch_count + + if current.name != model_name: + current.tokenizer = None + current.model = None + current.name = None + + if model_name != 'None': + path = get_model_path(model_name) + current.tokenizer = transformers.AutoTokenizer.from_pretrained(path) + current.model = transformers.AutoModelForCausalLM.from_pretrained(path) + current.name = model_name + + assert current.model, 'No model available' + assert current.tokenizer, 'No tokenizer available' + + current.model.to(device()) + + shared.state.textinfo = "" + + input_ids = current.tokenizer(text, return_tensors="pt").input_ids + if input_ids.shape[1] == 0: + input_ids = torch.asarray([[current.tokenizer.bos_token_id]], dtype=torch.long) + input_ids = input_ids.to(device()) + input_ids = input_ids.repeat((batch_size, 1)) + + markup = '' + + index = 0 + for i in range(batch_count): + texts = generate_batch(input_ids, *args) + shared.state.nextjob() + for generated_text in texts: + index += 1 + markup += f""" + + + + +""" + + markup += '
+
+

{html.escape(generated_text)}

+
+
+ to txt2img + to img2img +
' + + return markup, '' + + +def find_prompts(fields): + field_prompt = [x for x in fields if x[1] == "Prompt"][0] + field_negative_prompt = [x for x in fields if x[1] == "Negative prompt"][0] + return [field_prompt[0], field_negative_prompt[0]] + + +def send_prompts(text): + params = generation_parameters_copypaste.parse_generation_parameters(text) + negative_prompt = params.get("Negative prompt", "") + return params.get("Prompt", ""), negative_prompt or gr.update() + + +def add_tab(): + list_available_models() + + with gr.Blocks(analytics_enabled=False) as tab: + with gr.Row(): + with gr.Column(scale=80): + prompt = gr.Textbox(label="Prompt", elem_id="promptgen_prompt", show_label=False, lines=2, placeholder="Beginning of the prompt (press Ctrl+Enter or Alt+Enter to generate)").style(container=False) + with gr.Column(scale=10): + submit = gr.Button('Generate', elem_id="promptgen_generate", variant='primary') + + with gr.Row(elem_id="promptgen_main"): + with gr.Column(variant="compact"): + selected_text = gr.TextArea(elem_id='promptgen_selected_text', visible=False) + send_to_txt2img = gr.Button(elem_id='promptgen_send_to_txt2img', visible=False) + send_to_img2img = gr.Button(elem_id='promptgen_send_to_img2img', visible=False) + + with FormRow(): + model_selection = gr.Dropdown(label="Model", elem_id="promptgen_model", value=available_models[0], choices=["None"] + available_models) + + with FormRow(): + sampling_mode = gr.Radio(label="Sampling mode", elem_id="promptgen_sampling_mode", value="Top K", choices=["Top K", "Top P"]) + top_k = gr.Slider(label="Top K", elem_id="promptgen_top_k", value=12, minimum=1, maximum=50, step=1) + top_p = gr.Slider(label="Top P", elem_id="promptgen_top_p", value=0.15, minimum=0, maximum=1, step=0.001) + + with gr.Row(): + num_beams = gr.Slider(label="Number of beams", elem_id="promptgen_num_beams", value=1, minimum=1, maximum=8, step=1) + temperature = gr.Slider(label="Temperature", elem_id="promptgen_temperature", value=1, minimum=0, maximum=4, step=0.01) + repetition_penalty = gr.Slider(label="Repetition penalty", elem_id="promptgen_repetition_penalty", value=1, minimum=1, maximum=4, step=0.01) + + with FormRow(): + length_penalty = gr.Slider(label="Length preference", elem_id="promptgen_length_preference", value=1, minimum=-10, maximum=10, step=0.1) + min_length = gr.Slider(label="Min length", elem_id="promptgen_min_length", value=20, minimum=1, maximum=400, step=1) + max_length = gr.Slider(label="Max length", elem_id="promptgen_max_length", value=150, minimum=1, maximum=400, step=1) + + with FormRow(): + batch_count = gr.Slider(label="Batch count", elem_id="promptgen_batch_count", value=1, minimum=1, maximum=100, step=1) + batch_size = gr.Slider(label="Batch size", elem_id="promptgen_batch_size", value=10, minimum=1, maximum=100, step=1) + + with open(os.path.join(base_dir, "explanation.html"), encoding="utf8") as file: + footer = file.read() + gr.HTML(footer) + + with gr.Column(): + with gr.Group(elem_id="promptgen_results_column"): + res = gr.HTML() + res_info = gr.HTML() + + submit.click( + fn=ui.wrap_gradio_gpu_call(generate, extra_outputs=['']), + _js="submit_promptgen", + inputs=[model_selection, model_selection, batch_count, batch_size, prompt, min_length, max_length, num_beams, temperature, repetition_penalty, length_penalty, sampling_mode, top_k, top_p, ], + outputs=[res, res_info] + ) + + model_selection.change( + fn=model_selection_changed, + inputs=[model_selection], + outputs=[], + ) + + send_to_txt2img.click( + fn=send_prompts, + inputs=[selected_text], + outputs=find_prompts(ui.txt2img_paste_fields) + ) + + send_to_img2img.click( + fn=send_prompts, + inputs=[selected_text], + outputs=find_prompts(ui.img2img_paste_fields) + ) + + return [(tab, "Promptgen", "promptgen")] + + +def on_ui_settings(): + section = ("promptgen", "Promptgen") + + shared.opts.add_option("promptgen_names", shared.OptionInfo("AUTOMATIC/promptgen-lexart, AUTOMATIC/promptgen-majinai-safe, AUTOMATIC/promptgen-majinai-unsafe", "Hugginface model names for promptgen, separated by comma", section=section)) + shared.opts.add_option("promptgen_device", shared.OptionInfo("gpu", "Device to use for text generation", gr.Radio, {"choices": ["gpu", "cpu"]}, section=section)) + + +def on_unload(): + current.model = None + current.tokenizer = None + + +script_callbacks.on_ui_tabs(add_tab) +script_callbacks.on_ui_settings(on_ui_settings) +script_callbacks.on_script_unloaded(on_unload) diff --git a/matic-promptgen/style.css b/matic-promptgen/style.css new file mode 100644 index 0000000000000000000000000000000000000000..3ca70a7c1da5a3205d1c966bc8830de848c63992 --- /dev/null +++ b/matic-promptgen/style.css @@ -0,0 +1,54 @@ + +#promptgen_generate{ + height: 100% +} + +#promptgen_main{ + margin-top: 1em; +} + +#tab_promptgen table tr{ + height: 1px; +} + +#tab_promptgen table tr td{ + height: 100%; + padding: 0.3em; +} + +#tab_promptgen .prompt{ + border: 1px solid rgba(128, 128, 128, 0.2); + height: 100%; +} + +#tab_promptgen .prompt p{ + white-space: pre-line; +} + +#tab_promptgen .sendto{ + width: 8em; +} + +#tab_promptgen .sendto a{ + cursor: pointer; + display: block; + margin: 0.2em; + padding: 0.4em; +} + +#tab_promptgen .gr-form{ + border: none; + padding-bottom: 0.5em; +} + +#promptgen_explanation table{ + border-collapse: collapse; +} + +#promptgen_explanation table td, #promptgen_explanation table th{ + border: 1px solid rgba(128,128,128,0.1); + vertical-align: top; + +} + + diff --git a/miaoshouai-assistant-main/.gitignore b/miaoshouai-assistant-main/.gitignore new file mode 100644 index 0000000000000000000000000000000000000000..6d4ef30cac9b00736b0441f735698a361bc799ae --- /dev/null +++ b/miaoshouai-assistant-main/.gitignore @@ -0,0 +1,22 @@ +# for vim +.~ +.*.swp +*~ + +# for MacOS +.DS_Store + +__pycache__/ + +.idea/ + +logs/ +flagged/ + +configs/civitai_models.json +configs/liandange_models.json +configs/gpt_index.json +configs/model_hash.json +covers/* +cache/* +assets diff --git a/miaoshouai-assistant-main/.gitmodules b/miaoshouai-assistant-main/.gitmodules new file mode 100644 index 0000000000000000000000000000000000000000..f34d21b997859f6408540834b68108cdf7991962 --- /dev/null +++ b/miaoshouai-assistant-main/.gitmodules @@ -0,0 +1,3 @@ +[submodule "assets"] + path = assets + url = https://e.coding.net/miaoshouai/miaoshou-stable-diffusion-webui/assets.git diff --git a/miaoshouai-assistant-main/LICENSE b/miaoshouai-assistant-main/LICENSE new file mode 100644 index 0000000000000000000000000000000000000000..80a6687c6bb163f3eda5e3872e27d909c49f9d7b --- /dev/null +++ b/miaoshouai-assistant-main/LICENSE @@ -0,0 +1,201 @@ + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [2023] [miaoshou ai] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. diff --git a/miaoshouai-assistant-main/README.md b/miaoshouai-assistant-main/README.md new file mode 100644 index 0000000000000000000000000000000000000000..7544a48c50eb88d3f0d3dc308905548771131ff4 --- /dev/null +++ b/miaoshouai-assistant-main/README.md @@ -0,0 +1,58 @@ +# miaoshouai-assistant + +[English](README.md) / [中文](README_CN.md) + +MiaoshouAI Assistant for [Automatic1111 WebUI](https://github.com/AUTOMATIC1111/stable-diffusion-webui) + +1.6 Add VRAM garbage collection for image generation so that VRAM is freed up after every run; if your run into out of memory, just go to Boot Assistant and click "VRAM Release" to free up the memory. +1.5 Rewrote how assets are loaded to largely reduce the size and installation time for the extension. (extension reinstall is needed for this version and up). Added download covers for all models. +1.4 Add new feature for using GPT to generate prompts. Fixed sub folder support for model management
+1.3 Add support for LyCoris(just put them in the lora folder, LyCoris extension is needed.); Cleanup work for git to reduce project size
+1.2 Add support for model search. Allow model to load directly from model management. Now you can update model source directly under update tab.
+1.1 Add support for Lora, embedding and hypernetwork models under model manangement. bug fixes. + +### Installation +In Automatic1111 WebUI, go to `Extensions Tab`->`Install from URL`, copy the following address in "**URL for extension's git repository**". + +```sh +https://github.com/miaoshouai/miaoshouai-assistant.git +``` + +Click `Install`, wait until it's done. Go to `Settings`-> `Reload UI` + +### Usage + +##### Boot Assistant + +

+ +

+ +- Allows you to change your webui boot settings including: +GPU optimization, UI Theme, enable port listening, xformers, auto launch, etc. + +- Allows you to save all your settings to your webui-user.bat/other boot script for your webui. + +##### Model Management + +

+ +

+ +- Allows you to view all your models and view the model civitai prompts and parameters from the covers. +You can easily send these civitai prompts to txt2img/img2img/inpainting/extra + +##### Model Downloader + +

+ +

+ +- Allows you to search and download models from civitai.com or liandange.com, find the model type you want + +

+ +

+ +- It also allows you to find 1.5, 2.1 official models, controlnet models or different vae models. + diff --git a/miaoshouai-assistant-main/README_CN.md b/miaoshouai-assistant-main/README_CN.md new file mode 100644 index 0000000000000000000000000000000000000000..da63f5993208a5366b4e113856353a7f32c1e2ad --- /dev/null +++ b/miaoshouai-assistant-main/README_CN.md @@ -0,0 +1,55 @@ +# 喵手助理 +[English](README.md) / [中文](README_CN.md) + +喵手助理 [Automatic1111 WebUI](https://github.com/AUTOMATIC1111/stable-diffusion-webui) + +1.6 增加了显存自动清理功能。在启动助手中启用后可以在每次生图后自动清理显存。 +1.5 重构了assets的读取方式,大幅减少了下载时间和插件大小(使用1.5+版本需要重新安装); 增加了一键下载封面功能。 +1.4 添加了使用GPT来生成咒语的功能; 修复了模型管理中对子文件夹的支持。 +1.3 增加了模型下载和管理功能中对LyCoris的支持(你需要将LoCoris模型放置在Lora目录下, 需要安装 LyCoris插件 )
+1.2 增加了模型搜索功能,可以直接在模型管理下load模型,增加了插件和模型源更新功能。
+1.1 模型管理下增加了对Lora, embedding and hypernetwork等模型的支持。修复了启动时与秋叶启动器的冲突。 + +### 安装 +在 Automatic1111 WebUI 中,前往 `扩展插件`-> `从URL安装`,在`扩展插件的git仓库网址`中复制以下地址。 + +```sh +https://github.com/miaoshouai/miaoshouai-assistant.git +``` + +点击`安装`,等待安装完成。然后前往`设置` -> `重新加载界面` + +### 使用方法 +##### 启动助手 + +

+ +

+ +- 允许您更改 WebUI 启动设置,包括: +GPU 优化、UI 主题、启用端口监听、xformers、自动启动等。 + +- 允许您将所有设置保存到 webui-user.bat/其他启动脚本。 + +##### 模型管理 + +

+ +

+ +- 允许您查看所有模型,并从封面查看模型 civitai 提示和参数。 +您可以非常容易的将 civitai 提示词发送到 txt2img/img2img/inpainting/extra + +##### 模型下载器 + +

+ +

+ +- 允许您从 civitai.com 或 liandange.com 搜索和下载模型,找到您想要的模型类型 + +

+ +

+ +- 喵手助理还能让您找到 1.5, 2.1 的官方模型、controlnet 模型以及不同的 vae 模型。 diff --git a/miaoshouai-assistant-main/configs/controlnet.json b/miaoshouai-assistant-main/configs/controlnet.json new file mode 100644 index 0000000000000000000000000000000000000000..25e889a65bc731891e4ae7f550ea8df318f97194 --- /dev/null +++ b/miaoshouai-assistant-main/configs/controlnet.json @@ -0,0 +1,698 @@ +[ + { + "id": 1, + "name": "Controlnet 1.0", + "description": "

This repository hosts pruned .safetensors modules of ControlNet, by lllyasviel and T2I-Adapters, TencentARC Team\n\nThe modules are meant for this extension for AUTOMATIC1111/stable-diffusion-webui, but should work for different webuis too if they have it implemented. cheers!\uD83E\uDD42

", + "type": "Controlnet", + "poi": false, + "nsfw": false, + "allowNoCredit": true, + "allowCommercialUse": "Rent", + "allowDerivatives": true, + "allowDifferentLicense": true, + "stats": { + "downloadCount": 865, + "favoriteCount": 190, + "commentCount": 7, + "ratingCount": 2, + "rating": 5 + }, + "creator": { + "username": "lllyasviel", + "image": "https://huggingface.co/webui/ControlNet-modules-safetensors" + }, + "tags": [], + "modelVersions": [ + { + "id": 1, + "modelId": 7019, + "name": "Controlnet 1.0", + "createdAt": "2023-02-06T13:52:34.605Z", + "updatedAt": "2023-02-06T13:52:34.605Z", + "trainedWords": [], + "baseModel": "SD 1.5", + "earlyAccessTimeFrame": 0, + "description": "

", + "files": [ + { + "name": "control_canny-fp16.safetensors", + "id": 1, + "sizeKB": 161261.130859375, + "type": "Model", + "format": "Pth", + "pickleScanResult": "Success", + "pickleScanMessage": "No Pickle imports", + "virusScanResult": "Success", + "scannedAt": "2023-02-06T13:55:58.281Z", + "hashes": { + "AutoV2": "833E816807", + "SHA256": "833E816807E8D3658EBC65436908F690603A8E0E8D26143A90050F32958C9E4E", + "CRC32": "87F68C12", + "BLAKE3": "7A28D3D22520D61B58338791522A14B7B33A6A9CE552FF7D68D7E2688CAB3266" + }, + "downloadUrl": "https://huggingface.co/webui/ControlNet-modules-safetensors/resolve/main/control_canny-fp16.safetensors", + "primary": false + }, + { + "name": "control_depth-fp16.safetensors", + "id": 2, + "sizeKB": 741261.130859375, + "type": "Model", + "format": "Pth", + "pickleScanResult": "Success", + "pickleScanMessage": "No Pickle imports", + "virusScanResult": "Success", + "scannedAt": "2023-02-06T13:55:58.281Z", + "hashes": { + "AutoV2": "833E816807", + "SHA256": "833E816807E8D3658EBC65436908F690603A8E0E8D26143A90050F32958C9E4E", + "CRC32": "87F68C12", + "BLAKE3": "7A28D3D22520D61B58338791522A14B7B33A6A9CE552FF7D68D7E2688CAB3266" + }, + "downloadUrl": "https://huggingface.co/webui/ControlNet-modules-safetensors/resolve/main/control_depth-fp16.safetensors", + "primary": true + }, + { + "name": "control_hed-fp16.safetensors", + "id": 3, + "sizeKB": 741261.130859375, + "type": "Model", + "format": "Pth", + "pickleScanResult": "Success", + "pickleScanMessage": "No Pickle imports", + "virusScanResult": "Success", + "scannedAt": "2023-02-06T13:55:58.281Z", + "hashes": { + "AutoV2": "833E816807", + "SHA256": "833E816807E8D3658EBC65436908F690603A8E0E8D26143A90050F32958C9E4E", + "CRC32": "87F68C12", + "BLAKE3": "7A28D3D22520D61B58338791522A14B7B33A6A9CE552FF7D68D7E2688CAB3266" + }, + "downloadUrl": "https://huggingface.co/webui/ControlNet-modules-safetensors/resolve/main/control_hed-fp16.safetensors", + "primary": false + }, + { + "name": "control_mlsd-fp16.safetensors", + "id": 4, + "sizeKB": 741261.130859375, + "type": "Model", + "format": "Pth", + "pickleScanResult": "Success", + "pickleScanMessage": "No Pickle imports", + "virusScanResult": "Success", + "scannedAt": "2023-02-06T13:55:58.281Z", + "hashes": { + "AutoV2": "833E816807", + "SHA256": "833E816807E8D3658EBC65436908F690603A8E0E8D26143A90050F32958C9E4E", + "CRC32": "87F68C12", + "BLAKE3": "7A28D3D22520D61B58338791522A14B7B33A6A9CE552FF7D68D7E2688CAB3266" + }, + "downloadUrl": "https://huggingface.co/webui/ControlNet-modules-safetensors/resolve/main/control_mlsd-fp16.safetensors", + "primary": false + }, + { + "name": "control_normal-fp16.safetensors", + "id": 5, + "sizeKB": 741261.130859375, + "type": "Model", + "format": "Checkpoint", + "pickleScanResult": "Success", + "pickleScanMessage": "No Pickle imports", + "virusScanResult": "Success", + "scannedAt": "2023-02-06T13:55:58.281Z", + "hashes": { + "AutoV2": "833E816807", + "SHA256": "833E816807E8D3658EBC65436908F690603A8E0E8D26143A90050F32958C9E4E", + "CRC32": "87F68C12", + "BLAKE3": "7A28D3D22520D61B58338791522A14B7B33A6A9CE552FF7D68D7E2688CAB3266" + }, + "downloadUrl": "https://huggingface.co/webui/ControlNet-modules-safetensors/resolve/main/control_normal-fp16.safetensors", + "primary": false + }, + { + "name": "control_openpose-fp16.safetensors", + "id": 6, + "sizeKB": 741261.130859375, + "type": "Model", + "format": "Checkpoint", + "pickleScanResult": "Success", + "pickleScanMessage": "No Pickle imports", + "virusScanResult": "Success", + "scannedAt": "2023-02-06T13:55:58.281Z", + "hashes": { + "AutoV2": "833E816807", + "SHA256": "833E816807E8D3658EBC65436908F690603A8E0E8D26143A90050F32958C9E4E", + "CRC32": "87F68C12", + "BLAKE3": "7A28D3D22520D61B58338791522A14B7B33A6A9CE552FF7D68D7E2688CAB3266" + }, + "downloadUrl": "https://huggingface.co/webui/ControlNet-modules-safetensors/resolve/main/control_openpose-fp16.safetensors", + "primary": false + }, + { + "name": "control_scribble-fp16.safetensors", + "id": 7, + "sizeKB": 741261.130859375, + "type": "Model", + "format": "Checkpoint", + "pickleScanResult": "Success", + "pickleScanMessage": "No Pickle imports", + "virusScanResult": "Success", + "scannedAt": "2023-02-06T13:55:58.281Z", + "hashes": { + "AutoV2": "833E816807", + "SHA256": "833E816807E8D3658EBC65436908F690603A8E0E8D26143A90050F32958C9E4E", + "CRC32": "87F68C12", + "BLAKE3": "7A28D3D22520D61B58338791522A14B7B33A6A9CE552FF7D68D7E2688CAB3266" + }, + "downloadUrl": "https://huggingface.co/webui/ControlNet-modules-safetensors/resolve/main/control_scribble-fp16.safetensors", + "primary": false + }, + { + "name": "control_seg-fp16.safetensors", + "id": 8, + "sizeKB": 161261.130859375, + "type": "Model", + "format": "Checkpoint", + "pickleScanResult": "Success", + "pickleScanMessage": "No Pickle imports", + "virusScanResult": "Success", + "scannedAt": "2023-02-06T13:55:58.281Z", + "hashes": { + "AutoV2": "833E816807", + "SHA256": "833E816807E8D3658EBC65436908F690603A8E0E8D26143A90050F32958C9E4E", + "CRC32": "87F68C12", + "BLAKE3": "7A28D3D22520D61B58338791522A14B7B33A6A9CE552FF7D68D7E2688CAB3266" + }, + "downloadUrl": "https://huggingface.co/webui/ControlNet-modules-safetensors/resolve/main/control_seg-fp16.safetensors", + "primary": false + }, + { + "name": "t2iadapter_canny-fp16.safetensors", + "id": 9, + "sizeKB": 38261.130859375, + "type": "Model", + "format": "Checkpoint", + "pickleScanResult": "Success", + "pickleScanMessage": "No Pickle imports", + "virusScanResult": "Success", + "scannedAt": "2023-02-06T13:55:58.281Z", + "hashes": { + "AutoV2": "833E816807", + "SHA256": "833E816807E8D3658EBC65436908F690603A8E0E8D26143A90050F32958C9E4E", + "CRC32": "87F68C12", + "BLAKE3": "7A28D3D22520D61B58338791522A14B7B33A6A9CE552FF7D68D7E2688CAB3266" + }, + "downloadUrl": "https://huggingface.co/webui/ControlNet-modules-safetensors/resolve/main/t2iadapter_canny-fp16.safetensors", + "primary": false + }, + { + "name": "t2iadapter_color-fp16.safetensors", + "id": 10, + "sizeKB": 161261.130859375, + "type": "Model", + "format": "Checkpoint", + "pickleScanResult": "Success", + "pickleScanMessage": "No Pickle imports", + "virusScanResult": "Success", + "scannedAt": "2023-02-06T13:55:58.281Z", + "hashes": { + "AutoV2": "833E816807", + "SHA256": "833E816807E8D3658EBC65436908F690603A8E0E8D26143A90050F32958C9E4E", + "CRC32": "87F68C12", + "BLAKE3": "7A28D3D22520D61B58338791522A14B7B33A6A9CE552FF7D68D7E2688CAB3266" + }, + "downloadUrl": "https://huggingface.co/webui/ControlNet-modules-safetensors/resolve/main/t2iadapter_color-fp16.safetensors", + "primary": false + }, + { + "name": "t2iadapter_depth-fp16.safetensors", + "id": 11, + "sizeKB": 161261.130859375, + "type": "Model", + "format": "Checkpoint", + "pickleScanResult": "Success", + "pickleScanMessage": "No Pickle imports", + "virusScanResult": "Success", + "scannedAt": "2023-02-06T13:55:58.281Z", + "hashes": { + "AutoV2": "833E816807", + "SHA256": "833E816807E8D3658EBC65436908F690603A8E0E8D26143A90050F32958C9E4E", + "CRC32": "87F68C12", + "BLAKE3": "7A28D3D22520D61B58338791522A14B7B33A6A9CE552FF7D68D7E2688CAB3266" + }, + "downloadUrl": "https://huggingface.co/webui/ControlNet-modules-safetensors/resolve/main/t2iadapter_depth-fp16.safetensors", + "primary": false + }, + { + "name": "t2iadapter_keypose-fp16.safetensors", + "id": 12, + "sizeKB": 161261.130859375, + "type": "Model", + "format": "Checkpoint", + "pickleScanResult": "Success", + "pickleScanMessage": "No Pickle imports", + "virusScanResult": "Success", + "scannedAt": "2023-02-06T13:55:58.281Z", + "hashes": { + "AutoV2": "833E816807", + "SHA256": "833E816807E8D3658EBC65436908F690603A8E0E8D26143A90050F32958C9E4E", + "CRC32": "87F68C12", + "BLAKE3": "7A28D3D22520D61B58338791522A14B7B33A6A9CE552FF7D68D7E2688CAB3266" + }, + "downloadUrl": "https://huggingface.co/webui/ControlNet-modules-safetensors/resolve/main/t2iadapter_keypose-fp16.safetensors", + "primary": false + }, + { + "name": "t2iadapter_openpose-fp16.safetensors", + "id": 13, + "sizeKB": 161261.130859375, + "type": "Model", + "format": "Checkpoint", + "pickleScanResult": "Success", + "pickleScanMessage": "No Pickle imports", + "virusScanResult": "Success", + "scannedAt": "2023-02-06T13:55:58.281Z", + "hashes": { + "AutoV2": "833E816807", + "SHA256": "833E816807E8D3658EBC65436908F690603A8E0E8D26143A90050F32958C9E4E", + "CRC32": "87F68C12", + "BLAKE3": "7A28D3D22520D61B58338791522A14B7B33A6A9CE552FF7D68D7E2688CAB3266" + }, + "downloadUrl": "https://huggingface.co/webui/ControlNet-modules-safetensors/resolve/main/t2iadapter_openpose-fp16.safetensors", + "primary": false + }, + { + "name": "t2iadapter_seg-fp16.safetensors", + "id": 14, + "sizeKB": 161261.130859375, + "type": "Model", + "format": "Checkpoint", + "pickleScanResult": "Success", + "pickleScanMessage": "No Pickle imports", + "virusScanResult": "Success", + "scannedAt": "2023-02-06T13:55:58.281Z", + "hashes": { + "AutoV2": "833E816807", + "SHA256": "833E816807E8D3658EBC65436908F690603A8E0E8D26143A90050F32958C9E4E", + "CRC32": "87F68C12", + "BLAKE3": "7A28D3D22520D61B58338791522A14B7B33A6A9CE552FF7D68D7E2688CAB3266" + }, + "downloadUrl": "https://huggingface.co/webui/ControlNet-modules-safetensors/resolve/main/t2iadapter_seg-fp16.safetensors", + "primary": false + }, + { + "name": "t2iadapter_sketch-fp16.safetensors", + "id": 15, + "sizeKB": 161261.130859375, + "type": "Model", + "format": "Checkpoint", + "pickleScanResult": "Success", + "pickleScanMessage": "No Pickle imports", + "virusScanResult": "Success", + "scannedAt": "2023-02-06T13:55:58.281Z", + "hashes": { + "AutoV2": "833E816807", + "SHA256": "833E816807E8D3658EBC65436908F690603A8E0E8D26143A90050F32958C9E4E", + "CRC32": "87F68C12", + "BLAKE3": "7A28D3D22520D61B58338791522A14B7B33A6A9CE552FF7D68D7E2688CAB3266" + }, + "downloadUrl": "https://huggingface.co/webui/ControlNet-modules-safetensors/resolve/main/t2iadapter_sketch-fp16.safetensors", + "primary": false + }, + { + "name": "t2iadapter_style-fp16.safetensors", + "id": 16, + "sizeKB": 78261.130859375, + "type": "Model", + "format": "Checkpoint", + "pickleScanResult": "Success", + "pickleScanMessage": "No Pickle imports", + "virusScanResult": "Success", + "scannedAt": "2023-02-06T13:55:58.281Z", + "hashes": { + "AutoV2": "833E816807", + "SHA256": "833E816807E8D3658EBC65436908F690603A8E0E8D26143A90050F32958C9E4E", + "CRC32": "87F68C12", + "BLAKE3": "7A28D3D22520D61B58338791522A14B7B33A6A9CE552FF7D68D7E2688CAB3266" + }, + "downloadUrl": "https://huggingface.co/webui/ControlNet-modules-safetensors/resolve/main/t2iadapter_style-fp16.safetensors", + "primary": false + } + ], + "images": [ + { + "url": "https://msdn.miaoshouai.com/msai/kt/ez/9900922.png" + } + ] + } + ] + }, + { + "id": 2, + "name": "Controlnet 1.1", + "description": "

Stable Diffusion v2-1 Model Card\\nThis model card focuses on the model associated with the Stable Diffusion v2-1 model, codebase available here.\\n\\nThis stable-diffusion-2-1 model is fine-tuned from stable-diffusion-2 (768-v-ema.ckpt) with an additional 55k steps on the same dataset (with punsafe=0.1), and then fine-tuned for another 155k extra steps with punsafe=0.98.\\n\\nUse it with the stablediffusion repository: download the v2-1_768-ema-pruned.ckpt here.\\nUse it with \\uD83E\\uDDE8 diffusers\\nModel Details\\nDeveloped by: Robin Rombach, Patrick Esser\\n\\nModel type: Diffusion-based text-to-image generation model\\n\\nLanguage(s): English\\n\\nLicense: CreativeML Open RAIL++-M License\\n\\nModel Description: This is a model that can be used to generate and modify images based on text prompts. It is a Latent Diffusion Model that uses a fixed, pretrained text encoder (OpenCLIP-ViT/H).\\n\\nResources for more information: GitHub Repository.

\",

", + "type": "Controlnet", + "poi": false, + "nsfw": false, + "allowNoCredit": true, + "allowCommercialUse": "Rent", + "allowDerivatives": true, + "allowDifferentLicense": true, + "stats": { + "downloadCount": 865, + "favoriteCount": 190, + "commentCount": 7, + "ratingCount": 2, + "rating": 5 + }, + "creator": { + "username": "lllyasviel", + "image": "https://huggingface.co/lllyasviel/ControlNet-v1-1" + }, + "tags": [], + "modelVersions": [ + { + "id": 2, + "modelId": 2, + "name": "Controlnet 1.1", + "createdAt": "2023-02-06T13:52:34.605Z", + "updatedAt": "2023-02-06T13:52:34.605Z", + "trainedWords": [], + "baseModel": "SD 1.5", + "earlyAccessTimeFrame": 0, + "description": "

", + "files": [ + { + "name": "control_v11e_sd15_ip2p.pth", + "id": 18, + "sizeKB": 1561261.130859375, + "type": "Model", + "format": "Pth", + "pickleScanResult": "Success", + "pickleScanMessage": "No Pickle imports", + "virusScanResult": "Success", + "scannedAt": "2023-02-06T13:55:58.281Z", + "hashes": { + "AutoV2": "833E816807", + "SHA256": "833E816807E8D3658EBC65436908F690603A8E0E8D26143A90050F32958C9E4E", + "CRC32": "87F68C12", + "BLAKE3": "7A28D3D22520D61B58338791522A14B7B33A6A9CE552FF7D68D7E2688CAB3266" + }, + "downloadUrl": "https://huggingface.co/lllyasviel/ControlNet-v1-1/resolve/main/control_v11e_sd15_ip2p.pth", + "primary": false + }, + { + "name": "control_v11e_sd15_shuffle.pth", + "id": 19, + "sizeKB": 1521261.130859375, + "type": "Model", + "format": "Pth", + "pickleScanResult": "Success", + "pickleScanMessage": "No Pickle imports", + "virusScanResult": "Success", + "scannedAt": "2023-02-06T13:55:58.281Z", + "hashes": { + "AutoV2": "833E816807", + "SHA256": "833E816807E8D3658EBC65436908F690603A8E0E8D26143A90050F32958C9E4E", + "CRC32": "87F68C12", + "BLAKE3": "7A28D3D22520D61B58338791522A14B7B33A6A9CE552FF7D68D7E2688CAB3266" + }, + "downloadUrl": "https://huggingface.co/lllyasviel/ControlNet-v1-1/resolve/main/control_v11e_sd15_shuffle.pth", + "primary": true + }, + { + "name": "control_v11f1p_sd15_depth.pth", + "id": 20, + "sizeKB": 1521261.130859375, + "type": "Model", + "format": "Pth", + "pickleScanResult": "Success", + "pickleScanMessage": "No Pickle imports", + "virusScanResult": "Success", + "scannedAt": "2023-02-06T13:55:58.281Z", + "hashes": { + "AutoV2": "833E816807", + "SHA256": "833E816807E8D3658EBC65436908F690603A8E0E8D26143A90050F32958C9E4E", + "CRC32": "87F68C12", + "BLAKE3": "7A28D3D22520D61B58338791522A14B7B33A6A9CE552FF7D68D7E2688CAB3266" + }, + "downloadUrl": "https://huggingface.co/lllyasviel/ControlNet-v1-1/resolve/main/control_v11f1p_sd15_depth.pth", + "primary": false + }, + { + "name": "control_v11p_sd15_canny.pth", + "id": 21, + "sizeKB": 1521261.130859375, + "type": "Model", + "format": "Pth", + "pickleScanResult": "Success", + "pickleScanMessage": "No Pickle imports", + "virusScanResult": "Success", + "scannedAt": "2023-02-06T13:55:58.281Z", + "hashes": { + "AutoV2": "833E816807", + "SHA256": "833E816807E8D3658EBC65436908F690603A8E0E8D26143A90050F32958C9E4E", + "CRC32": "87F68C12", + "BLAKE3": "7A28D3D22520D61B58338791522A14B7B33A6A9CE552FF7D68D7E2688CAB3266" + }, + "downloadUrl": "https://huggingface.co/lllyasviel/ControlNet-v1-1/resolve/main/control_v11p_sd15_canny.pth", + "primary": false + }, + { + "name": "control_v11p_sd15_inpaint.pth", + "id": 22, + "sizeKB": 1521261.130859375, + "type": "Model", + "format": "Pth", + "pickleScanResult": "Success", + "pickleScanMessage": "No Pickle imports", + "virusScanResult": "Success", + "scannedAt": "2023-02-06T13:55:58.281Z", + "hashes": { + "AutoV2": "833E816807", + "SHA256": "833E816807E8D3658EBC65436908F690603A8E0E8D26143A90050F32958C9E4E", + "CRC32": "87F68C12", + "BLAKE3": "7A28D3D22520D61B58338791522A14B7B33A6A9CE552FF7D68D7E2688CAB3266" + }, + "downloadUrl": "https://huggingface.co/lllyasviel/ControlNet-v1-1/resolve/main/control_v11p_sd15_inpaint.pth", + "primary": false + }, + { + "name": "control_v11p_sd15_lineart.pth", + "id": 23, + "sizeKB": 1521261.130859375, + "type": "Model", + "format": "Pth", + "pickleScanResult": "Success", + "pickleScanMessage": "No Pickle imports", + "virusScanResult": "Success", + "scannedAt": "2023-02-06T13:55:58.281Z", + "hashes": { + "AutoV2": "833E816807", + "SHA256": "833E816807E8D3658EBC65436908F690603A8E0E8D26143A90050F32958C9E4E", + "CRC32": "87F68C12", + "BLAKE3": "7A28D3D22520D61B58338791522A14B7B33A6A9CE552FF7D68D7E2688CAB3266" + }, + "downloadUrl": "https://huggingface.co/lllyasviel/ControlNet-v1-1/resolve/main/control_v11p_sd15_lineart.pth", + "primary": false + }, + { + "name": "control_v11p_sd15_mlsd.pth", + "id": 24, + "sizeKB": 1521261.130859375, + "type": "Model", + "format": "Pth", + "pickleScanResult": "Success", + "pickleScanMessage": "No Pickle imports", + "virusScanResult": "Success", + "scannedAt": "2023-02-06T13:55:58.281Z", + "hashes": { + "AutoV2": "833E816807", + "SHA256": "833E816807E8D3658EBC65436908F690603A8E0E8D26143A90050F32958C9E4E", + "CRC32": "87F68C12", + "BLAKE3": "7A28D3D22520D61B58338791522A14B7B33A6A9CE552FF7D68D7E2688CAB3266" + }, + "downloadUrl": "https://huggingface.co/lllyasviel/ControlNet-v1-1/resolve/main/control_v11p_sd15_mlsd.pth", + "primary": false + }, + { + "name": "control_v11p_sd15_normalbae.pth", + "id": 25, + "sizeKB": 1521261.130859375, + "type": "Model", + "format": "Pth", + "pickleScanResult": "Success", + "pickleScanMessage": "No Pickle imports", + "virusScanResult": "Success", + "scannedAt": "2023-02-06T13:55:58.281Z", + "hashes": { + "AutoV2": "833E816807", + "SHA256": "833E816807E8D3658EBC65436908F690603A8E0E8D26143A90050F32958C9E4E", + "CRC32": "87F68C12", + "BLAKE3": "7A28D3D22520D61B58338791522A14B7B33A6A9CE552FF7D68D7E2688CAB3266" + }, + "downloadUrl": "https://huggingface.co/lllyasviel/ControlNet-v1-1/resolve/main/control_v11p_sd15_normalbae.pth", + "primary": false + }, + { + "name": "control_v11p_sd15_openpose.pth", + "id": 26, + "sizeKB": 1521261.130859375, + "type": "Model", + "format": "Pth", + "pickleScanResult": "Success", + "pickleScanMessage": "No Pickle imports", + "virusScanResult": "Success", + "scannedAt": "2023-02-06T13:55:58.281Z", + "hashes": { + "AutoV2": "833E816807", + "SHA256": "833E816807E8D3658EBC65436908F690603A8E0E8D26143A90050F32958C9E4E", + "CRC32": "87F68C12", + "BLAKE3": "7A28D3D22520D61B58338791522A14B7B33A6A9CE552FF7D68D7E2688CAB3266" + }, + "downloadUrl": "https://huggingface.co/lllyasviel/ControlNet-v1-1/resolve/main/control_v11p_sd15_openpose.pth", + "primary": false + }, + { + "name": "control_v11p_sd15_scribble.pth", + "id": 27, + "sizeKB": 1521261.130859375, + "type": "Model", + "format": "PTH", + "pickleScanResult": "Success", + "pickleScanMessage": "No Pickle imports", + "virusScanResult": "Success", + "scannedAt": "2023-02-06T13:55:58.281Z", + "hashes": { + "AutoV2": "833E816807", + "SHA256": "833E816807E8D3658EBC65436908F690603A8E0E8D26143A90050F32958C9E4E", + "CRC32": "87F68C12", + "BLAKE3": "7A28D3D22520D61B58338791522A14B7B33A6A9CE552FF7D68D7E2688CAB3266" + }, + "downloadUrl": "https://huggingface.co/lllyasviel/ControlNet-v1-1/resolve/main/control_v11p_sd15_scribble.pth", + "primary": false + }, + { + "name": "control_v11p_sd15_seg.pth", + "id": 28, + "sizeKB": 1521261.130859375, + "type": "Model", + "format": "Pth", + "pickleScanResult": "Success", + "pickleScanMessage": "No Pickle imports", + "virusScanResult": "Success", + "scannedAt": "2023-02-06T13:55:58.281Z", + "hashes": { + "AutoV2": "833E816807", + "SHA256": "833E816807E8D3658EBC65436908F690603A8E0E8D26143A90050F32958C9E4E", + "CRC32": "87F68C12", + "BLAKE3": "7A28D3D22520D61B58338791522A14B7B33A6A9CE552FF7D68D7E2688CAB3266" + }, + "downloadUrl": "https://huggingface.co/lllyasviel/ControlNet-v1-1/resolve/main/control_v11p_sd15_seg.pth", + "primary": false + }, + { + "name": "control_v11p_sd15_softedge.pth", + "id": 29, + "sizeKB": 1521261.130859375, + "type": "Model", + "format": "Pth", + "pickleScanResult": "Success", + "pickleScanMessage": "No Pickle imports", + "virusScanResult": "Success", + "scannedAt": "2023-02-06T13:55:58.281Z", + "hashes": { + "AutoV2": "833E816807", + "SHA256": "833E816807E8D3658EBC65436908F690603A8E0E8D26143A90050F32958C9E4E", + "CRC32": "87F68C12", + "BLAKE3": "7A28D3D22520D61B58338791522A14B7B33A6A9CE552FF7D68D7E2688CAB3266" + }, + "downloadUrl": "https://huggingface.co/lllyasviel/ControlNet-v1-1/resolve/main/control_v11p_sd15_softedge.pth", + "primary": false + }, + { + "name": "control_v11p_sd15s2_lineart_anime.pth", + "id": 30, + "sizeKB": 1521261.130859375, + "type": "Model", + "format": "Pth", + "pickleScanResult": "Success", + "pickleScanMessage": "No Pickle imports", + "virusScanResult": "Success", + "scannedAt": "2023-02-06T13:55:58.281Z", + "hashes": { + "AutoV2": "833E816807", + "SHA256": "833E816807E8D3658EBC65436908F690603A8E0E8D26143A90050F32958C9E4E", + "CRC32": "87F68C12", + "BLAKE3": "7A28D3D22520D61B58338791522A14B7B33A6A9CE552FF7D68D7E2688CAB3266" + }, + "downloadUrl": "https://huggingface.co/lllyasviel/ControlNet-v1-1/resolve/main/control_v11p_sd15s2_lineart_anime.pth", + "primary": false + }, + { + "name": "control_v11f1e_sd15_tile.pth", + "id": 31, + "sizeKB": 1521261.130859375, + "type": "Model", + "format": "Pth", + "pickleScanResult": "Success", + "pickleScanMessage": "No Pickle imports", + "virusScanResult": "Success", + "scannedAt": "2023-02-06T13:55:58.281Z", + "hashes": { + "AutoV2": "833E816807", + "SHA256": "833E816807E8D3658EBC65436908F690603A8E0E8D26143A90050F32958C9E4E", + "CRC32": "87F68C12", + "BLAKE3": "7A28D3D22520D61B58338791522A14B7B33A6A9CE552FF7D68D7E2688CAB3266" + }, + "downloadUrl": "https://huggingface.co/lllyasviel/ControlNet-v1-1/resolve/main/control_v11f1e_sd15_tile.pth", + "primary": false + }, + { + "name": "control_v2p_sd15_mediapipe_face.pth", + "id": 32, + "sizeKB": 1521261.130859375, + "type": "Model", + "format": "Pth", + "pickleScanResult": "Success", + "pickleScanMessage": "No Pickle imports", + "virusScanResult": "Success", + "scannedAt": "2023-02-06T13:55:58.281Z", + "hashes": { + "AutoV2": "833E816807", + "SHA256": "833E816807E8D3658EBC65436908F690603A8E0E8D26143A90050F32958C9E4E", + "CRC32": "87F68C12", + "BLAKE3": "7A28D3D22520D61B58338791522A14B7B33A6A9CE552FF7D68D7E2688CAB3266" + }, + "downloadUrl": "https://huggingface.co/CrucibleAI/ControlNetMediaPipeFace/resolve/main/control_v2p_sd15_mediapipe_face.pth", + "primary": false + }, + { + "name": "control_v2p_sd21_mediapipe_face.pth", + "id": 33, + "sizeKB": 1521261.130859375, + "type": "Model", + "format": "Pth", + "pickleScanResult": "Success", + "pickleScanMessage": "No Pickle imports", + "virusScanResult": "Success", + "scannedAt": "2023-02-06T13:55:58.281Z", + "hashes": { + "AutoV2": "833E816807", + "SHA256": "833E816807E8D3658EBC65436908F690603A8E0E8D26143A90050F32958C9E4E", + "CRC32": "87F68C12", + "BLAKE3": "7A28D3D22520D61B58338791522A14B7B33A6A9CE552FF7D68D7E2688CAB3266" + }, + "downloadUrl": "https://huggingface.co/CrucibleAI/ControlNetMediaPipeFace/resolve/main/control_v2p_sd21_mediapipe_face.pth", + "primary": false + } + ], + "images": [ + { + "url": "https://msdn.miaoshouai.com/msai/kt/ez/9900922.png" + } + ] + } + ] + } +] \ No newline at end of file diff --git a/miaoshouai-assistant-main/configs/hugging_face.json b/miaoshouai-assistant-main/configs/hugging_face.json new file mode 100644 index 0000000000000000000000000000000000000000..cc25d9d1728951d69f02934b0ddd78eb870c4946 --- /dev/null +++ b/miaoshouai-assistant-main/configs/hugging_face.json @@ -0,0 +1,198 @@ +[ + { + "id": 1, + "name": "Negative Embeddings", + "description": "

This is a collection of negative embeddings for Stable Diffusion negative prompts

", + "type": "TextualInversion", + "poi": false, + "nsfw": false, + "allowNoCredit": true, + "allowCommercialUse": "Rent", + "allowDerivatives": true, + "allowDifferentLicense": true, + "stats": { + "downloadCount": 865, + "favoriteCount": 190, + "commentCount": 7, + "ratingCount": 2, + "rating": 5 + }, + "creator": { + "username": "multiple authors", + "image": "" + }, + "tags": [], + "modelVersions": [ + { + "id": 1, + "modelId": 7019, + "name": "Controlnet 1.0", + "createdAt": "2023-02-06T13:52:34.605Z", + "updatedAt": "2023-02-06T13:52:34.605Z", + "trainedWords": [], + "baseModel": "SD 1.5", + "earlyAccessTimeFrame": 0, + "description": "

", + "files": [ + { + "name": "EasyNegative.safetensors", + "id": 1, + "sizeKB": 25261.130859375, + "type": "Model", + "format": "Safetensors", + "pickleScanResult": "Success", + "pickleScanMessage": "No Pickle imports", + "virusScanResult": "Success", + "scannedAt": "2023-02-06T13:55:58.281Z", + "hashes": { + "AutoV2": "833E816807", + "SHA256": "833E816807E8D3658EBC65436908F690603A8E0E8D26143A90050F32958C9E4E", + "CRC32": "87F68C12", + "BLAKE3": "7A28D3D22520D61B58338791522A14B7B33A6A9CE552FF7D68D7E2688CAB3266" + }, + "downloadUrl": "https://huggingface.co/datasets/gsdf/EasyNegative/resolve/main/EasyNegative.safetensors", + "primary": false + }, + { + "name": "EasyNegativeV2.safetensors", + "id": 2, + "sizeKB": 50261.130859375, + "type": "Model", + "format": "Safetensors", + "pickleScanResult": "Success", + "pickleScanMessage": "No Pickle imports", + "virusScanResult": "Success", + "scannedAt": "2023-02-06T13:55:58.281Z", + "hashes": { + "AutoV2": "833E816807", + "SHA256": "833E816807E8D3658EBC65436908F690603A8E0E8D26143A90050F32958C9E4E", + "CRC32": "87F68C12", + "BLAKE3": "7A28D3D22520D61B58338791522A14B7B33A6A9CE552FF7D68D7E2688CAB3266" + }, + "downloadUrl": "https://huggingface.co/gsdf/Counterfeit-V3.0/resolve/main/embedding/EasyNegativeV2.safetensors", + "primary": true + }, + { + "name": "bad-hands-5.pt", + "id": 3, + "sizeKB": 7261.130859375, + "type": "Model", + "format": "Pth", + "pickleScanResult": "Success", + "pickleScanMessage": "No Pickle imports", + "virusScanResult": "Success", + "scannedAt": "2023-02-06T13:55:58.281Z", + "hashes": { + "AutoV2": "833E816807", + "SHA256": "833E816807E8D3658EBC65436908F690603A8E0E8D26143A90050F32958C9E4E", + "CRC32": "87F68C12", + "BLAKE3": "7A28D3D22520D61B58338791522A14B7B33A6A9CE552FF7D68D7E2688CAB3266" + }, + "downloadUrl": "https://huggingface.co/yesyeahvh/bad-hands-5/resolve/main/bad-hands-5.pt", + "primary": false + }, + { + "name": "bad_prompt.pt", + "id": 4, + "sizeKB": 51261.130859375, + "type": "Model", + "format": "Pth", + "pickleScanResult": "Success", + "pickleScanMessage": "No Pickle imports", + "virusScanResult": "Success", + "scannedAt": "2023-02-06T13:55:58.281Z", + "hashes": { + "AutoV2": "833E816807", + "SHA256": "833E816807E8D3658EBC65436908F690603A8E0E8D26143A90050F32958C9E4E", + "CRC32": "87F68C12", + "BLAKE3": "7A28D3D22520D61B58338791522A14B7B33A6A9CE552FF7D68D7E2688CAB3266" + }, + "downloadUrl": "https://huggingface.co/datasets/Nerfgun3/bad_prompt/blob/main/bad_prompt.pt", + "primary": false + }, + { + "name": "bad_prompt_version2.pt", + "id": 5, + "sizeKB": 25261.130859375, + "type": "Model", + "format": "Pth", + "pickleScanResult": "Success", + "pickleScanMessage": "No Pickle imports", + "virusScanResult": "Success", + "scannedAt": "2023-02-06T13:55:58.281Z", + "hashes": { + "AutoV2": "833E816807", + "SHA256": "833E816807E8D3658EBC65436908F690603A8E0E8D26143A90050F32958C9E4E", + "CRC32": "87F68C12", + "BLAKE3": "7A28D3D22520D61B58338791522A14B7B33A6A9CE552FF7D68D7E2688CAB3266" + }, + "downloadUrl": "https://huggingface.co/datasets/Nerfgun3/bad_prompt/resolve/main/bad_prompt_version2.pt", + "primary": false + }, + { + "name": "badquality.pt", + "id": 6, + "sizeKB": 34261.130859375, + "type": "Model", + "format": "Pth", + "pickleScanResult": "Success", + "pickleScanMessage": "No Pickle imports", + "virusScanResult": "Success", + "scannedAt": "2023-02-06T13:55:58.281Z", + "hashes": { + "AutoV2": "833E816807", + "SHA256": "833E816807E8D3658EBC65436908F690603A8E0E8D26143A90050F32958C9E4E", + "CRC32": "87F68C12", + "BLAKE3": "7A28D3D22520D61B58338791522A14B7B33A6A9CE552FF7D68D7E2688CAB3266" + }, + "downloadUrl": "https://huggingface.co/p1atdev/badquality/resolve/main/badquality.pt", + "primary": false + }, + { + "name": "bad-artist-anime.pt", + "id": 7, + "sizeKB": 7261.130859375, + "type": "Model", + "format": "Pth", + "pickleScanResult": "Success", + "pickleScanMessage": "No Pickle imports", + "virusScanResult": "Success", + "scannedAt": "2023-02-06T13:55:58.281Z", + "hashes": { + "AutoV2": "833E816807", + "SHA256": "833E816807E8D3658EBC65436908F690603A8E0E8D26143A90050F32958C9E4E", + "CRC32": "87F68C12", + "BLAKE3": "7A28D3D22520D61B58338791522A14B7B33A6A9CE552FF7D68D7E2688CAB3266" + }, + "downloadUrl": "https://huggingface.co/nick-x-hacker/bad-artist/resolve/main/bad-artist-anime.pt", + "primary": false + }, + { + "name": "bad-artist.pt", + "id": 8, + "sizeKB": 7261.130859375, + "type": "Model", + "format": "Pth", + "pickleScanResult": "Success", + "pickleScanMessage": "No Pickle imports", + "virusScanResult": "Success", + "scannedAt": "2023-02-06T13:55:58.281Z", + "hashes": { + "AutoV2": "833E816807", + "SHA256": "833E816807E8D3658EBC65436908F690603A8E0E8D26143A90050F32958C9E4E", + "CRC32": "87F68C12", + "BLAKE3": "7A28D3D22520D61B58338791522A14B7B33A6A9CE552FF7D68D7E2688CAB3266" + }, + "downloadUrl": "https://huggingface.co/nick-x-hacker/bad-artist/resolve/main/bad-artist.pt", + "primary": false + } + ], + "images": [ + { + "url": "https://msdn.miaoshouai.com/msai/kt/ez/9900922.png" + } + ] + } + ] + } +] \ No newline at end of file diff --git a/miaoshouai-assistant-main/configs/model_hash.json b/miaoshouai-assistant-main/configs/model_hash.json new file mode 100644 index 0000000000000000000000000000000000000000..8cdbd2c2772e9c279df8053bfd6a3bbf7b094579 --- /dev/null +++ b/miaoshouai-assistant-main/configs/model_hash.json @@ -0,0 +1,671 @@ +{ + "elldrethsVividMix_v20VividEr.safetensors [0f7f264114]": "0f7f264114", + "fkingScifiV2_r41958.safetensors [d6a44b9b90]": "d6a44b9b90", + "furtasticv11_furtasticv11.safetensors [8708576421]": "8708576421", + "futagen_2.safetensors [08946cce7d]": "08946cce7d", + "galaxytimemachinesGTM_v1.safetensors [e406a20c1b]": "e406a20c1b", + "Grapefruit.safetensors [4fc8d3739f]": "4fc8d3739f", + "grapeGrapefruitHenta_grapefruitV11.safetensors [4a6e5cd1c8]": "4a6e5cd1c8", + "GrapeLikeDreamFruit.ckpt [c9278e23a7]": "c9278e23a7", + "gta5ArtworkDiffusion_v1.ckpt [607aa02fb8]": "607aa02fb8", + "hAS3Dkx10B_3Dkx10B.safetensors [1d45c7c094]": "1d45c7c094", + "HAs_3DKX 1.1.ckpt [998f6b580e]": "998f6b580e", + "hasdx_hasedsdx.safetensors [fafc72c6fd]": "fafc72c6fd", + "hassanblend1512And_hassanblend1512.safetensors [f05dd9e62f]": "f05dd9e62f", + "hassanBlendAllVersio_hassanBlend14.safetensors [b08fdba169]": "b08fdba169", + "Healys_Anime_Blend.ckpt [8416edf88c]": "8416edf88c", + "healySAnimeBlend_17.ckpt [8416edf88c]": "8416edf88c", + "homoerotic_v2.safetensors [b656369cf7]": "b656369cf7", + "Inkpunk-Diffusion-v2.ckpt [2182245415]": "2182245415", + "instruct-pix2pix-00-22000.safetensors [fbc31a67aa]": "fbc31a67aa", + "jaksCreepyCritter_sd21768px.ckpt [67d399388b]": "67d399388b", + "jhSSamdoesarts_v5.ckpt [dfba164825]": "dfba164825", + "kenshi_00.safetensors [8c19d5c981]": "8c19d5c981", + "knollingcase_v1.ckpt [cf836e65a7]": "cf836e65a7", + "kotosAbyssproto_v10.safetensors [35d51ba12c]": "35d51ba12c", + "ligneClaireAnime_v1.safetensors [672977e447]": "672977e447", + "majorXs2DPOVModel_2dpov11.ckpt [83f9dcde52]": "83f9dcde52", + "mandarine_3.ckpt [7a134798ee]": "7a134798ee", + "mixProV3_v3.safetensors [b6928134bb]": "b6928134bb", + "modernDisney_v1.ckpt [8067368533]": "8067368533", + "moistmix_v2.safetensors [6514f58b5e]": "6514f58b5e", + "openjourney-v2.ckpt [2fbe5ba6e2]": "2fbe5ba6e2", + "openjourneyAka_v1.ckpt [5d5ad06cc2]": "5d5ad06cc2", + "owlerartStyle_v2.safetensors [a31fe6f791]": "a31fe6f791", + "pastelMixStylizedAnime_pastelMixPrunedFP16.safetensors [d01a68ae76]": "d01a68ae76", + "pfg_111Safetensors.safetensors [ca42a7a009]": "ca42a7a009", + "princessZeldaLora_v1.safetensors [53d6abf3cb]": "53d6abf3cb", + "protogenV22Anime_22.safetensors [1254103966]": "1254103966", + "protogenX34Photoreal_1.safetensors [44f90a0972]": "44f90a0972", + "protogenX34Photorealism_1.safetensors [44f90a0972]": "44f90a0972", + "protogenX58RebuiltSc_10.safetensors [6a21b428a3]": "6a21b428a3", + "protogenX58RebuiltScifi_10.safetensors [6a21b428a3]": "6a21b428a3", + "purepornplusMerge_purepornplus10.ckpt [40c6475ecb]": "40c6475ecb", + "qgo10a_qgo10a.safetensors [7dd744682a]": "7dd744682a", + "ratnikamix_2.safetensors [b6a8298a89]": "b6a8298a89", + "realeldenapocalypse_Analogsexknoll.safetensors [7c7dfbd636]": "7c7dfbd636", + "realisticVisionV13_v12.safetensors [8194f84cdc]": "8194f84cdc", + "redshiftDiffusion_v1.ckpt [ed8c2ee432]": "ed8c2ee432", + "roboeticsMix_rmix01Ckpt.ckpt [a7bd5ab091]": "a7bd5ab091", + "RPG.ckpt [234bfa6e72]": "234bfa6e72", + "s1dlxbrew_02.safetensors [1bf13ffc5d]": "1bf13ffc5d", + "schoolAnime_schoolAnime.safetensors [36b0e74c02]": "36b0e74c02", + "schoolmax25d_11.ckpt [0ce764ebd5]": "0ce764ebd5", + "sd-v1-4.ckpt [fe4efff1e1]": "fe4efff1e1", + "sd-v1-5-inpainting.ckpt [c6bbc15e32]": "c6bbc15e32", + "shadyArtOFFICIAL_shadyArt1.safetensors [8f0cb2925d]": "8f0cb2925d", + "spybgsToolkitFor_v40YoutubeChannel.ckpt [f277c5bba1]": "f277c5bba1", + "StablyDiffuseds_Aesthetic_Mix.ckpt [03df69045a]": "03df69045a", + "stablydiffusedsWild_3.safetensors [11a67baf56]": "11a67baf56", + "superheroDiffusion_v1.ckpt [cac0a972cf]": "cac0a972cf", + "surugaModel_suruga12K.ckpt [7846746c94]": "7846746c94", + "synthwavepunk_v2.ckpt [dc4c67171e]": "dc4c67171e", + "theAllysMix_v10Safetensors.safetensors [a18773a6bc]": "a18773a6bc", + "theallysMixIIChurned_v10.safetensors [b000c45ea5]": "b000c45ea5", + "uberRealisticPornMerge_urpmv12.safetensors [fcfaf106f2]": "fcfaf106f2", + "unstableinkdream_v6.safetensors [d855c1d2ba]": "d855c1d2ba", + "v1-5-pruned.ckpt [e1441589a6]": "e1441589a6", + "v2-1_768-nonema-pruned.ckpt [4711ff4dd2]": "4711ff4dd2", + "wd-v1-3-full.ckpt [23ba8d0411]": "23ba8d0411", + "wlop_1.ckpt [b8cff3e33f]": "b8cff3e33f", + "yiffymix_.safetensors [d6deb44e68]": "d6deb44e68", + "\u5565\u73a9\u610f\u5b8c\u728a\u5b50F16.safetensors [dda725ba6e]": "dda725ba6e", + "v1-5-pruned-emaonly.ckpt [cc6cb27103]": "cc6cb27103", + "deliberate_v2.safetensors [9aba26abdf]": "9aba26abdf", + "deliberate_v2.safetensors [38108d96f8]": "38108d96f8", + "realisticVisionV20_v20.ckpt [eaf3051d80]": "eaf3051d80", + "deliberate_v2.safetensors [d75347f3f0]": "d75347f3f0", + "deliberate_v2.safetensors [b500405cde]": "b500405cde", + "deliberate_v2.safetensors [493484f455]": "493484f455", + "deliberate_v2.safetensors [ade8822b56]": "ade8822b56", + "realisticVisionV20_v20.ckpt [d11a449e0f]": "d11a449e0f", + "2dn_1.safetensors [83569a04f4]": "83569a04f4", + "21SDModernBuildings_midjourneyBuildings.ckpt [14e1e8d692]": "14e1e8d692", + "AbyssOrangeMix2_hard.safetensors [0fc198c490]": "0fc198c490", + "adobisRealFlexibleMix_v2.safetensors [9e8a2c7a5d]": "9e8a2c7a5d", + "allInOnePixelModel_v1.ckpt [d7fb6396ab]": "d7fb6396ab", + "aloeverasSimpmaker3K_simpmaker3K1.ckpt [2cae9bc4e0]": "2cae9bc4e0", + "analogDiffusion_10Safetensors.safetensors [51f6fff508]": "51f6fff508", + "analogDream3D_10.ckpt [4575363662]": "4575363662", + "anovel_speed.ckpt [89d59c3dde]": "89d59c3dde", + "anygenV37_anygenv37.ckpt [815c974757]": "815c974757", + "Anything-V3.0-pruned.ckpt [543bcbc212]": "543bcbc212", + "anytwam11Mixedmodel_anytwam11.safetensors [e9cb790ad3]": "e9cb790ad3", + "aoaokoPVCStyleModel_pvcAOAOKO.safetensors [cf64507cef]": "cf64507cef", + "Arcane_Diffusion.ckpt [7dd0e6760f]": "7dd0e6760f", + "arcaneDiffusion_v3.ckpt [7dd0e6760f]": "7dd0e6760f", + "artErosAerosATribute_aerosNovae.safetensors [70346f7a1e]": "70346f7a1e", + "aToZovyaRPGArtistsTools15_sd15V1.safetensors [e28b2e61fb]": "e28b2e61fb", + "ayonimix_V2.safetensors [7076f76b9d]": "7076f76b9d", + "babes_11.safetensors [79886b6484]": "79886b6484", + "Basil_mix_fixed.safetensors [0ff127093f]": "0ff127093f", + "biggerGirlsModel_biggergirlsV2.ckpt [f3c16c83de]": "f3c16c83de", + "cheeseDaddys_30.safetensors [4176564bea]": "4176564bea", + "chillout_west_mix.safetensors [b93a715b47]": "b93a715b47", + "chilloutmix_inpainting.inpainting.safetensors [ec749031ba]": "ec749031ba", + "chromaticcreamv1_chromaticcreamV1.ckpt [c979d60b4a]": "c979d60b4a", + "ChromaV5 (2.0).ckpt [e8004ba771]": "e8004ba771", + "clarity_14.safetensors [dc027dbbf9]": "dc027dbbf9", + "classicNegative1521_classicNegative768px.ckpt [2106fd3b8c]": "2106fd3b8c", + "Colorwater_v4.safetensors [1b175706ff]": "1b175706ff", + "comicBabes_v1.safetensors [9211801e30]": "9211801e30", + "comicDiffusion_v2.ckpt [d3c225cbc2]": "d3c225cbc2", + "corneos7thHeavenMix_100.safetensors [d289dfa4ed]": "d289dfa4ed", + "corneos7thHeavenMix_v1.safetensors [d289dfa4ed]": "d289dfa4ed", + "Counterfeit-V2.5_pruned.safetensors [a074b8864e]": "a074b8864e", + "CounterfeitV20_20.ckpt [8838e0d1fb]": "8838e0d1fb", + "cuteRichstyle15_cuteRichstyle.ckpt [24bc802fc5]": "24bc802fc5", + "cyberrealistic_v13.safetensors [23e4391b10]": "23e4391b10", + "cynthiaModela_v10.safetensors [c83fe90aa3]": "c83fe90aa3", + "deliberate_v11-inpainting.inpainting.safetensors [0d0792451f]": "0d0792451f", + "deliberate_v11.safetensors [d8691b4d16]": "d8691b4d16", + "dgspitzerArt_dgspitzerArtDiffusion.safetensors [8141c5f18e]": "8141c5f18e", + "diGiMDSToriyamaModel_toriyamaV1.ckpt [33c84ed0b3]": "33c84ed0b3", + "dreamlikeDiffusion10_10.ckpt [0aecbcfa2c]": "0aecbcfa2c", + "dreamlikePhotoreal20_dreamlikePhotoreal20.safetensors [92970aa785]": "92970aa785", + "dreamshaper_332BakedVaeClipFix.safetensors [13dfc9921f]": "13dfc9921f", + "DucHaitenAIart.safetensors [55fed17365]": "55fed17365", + "duchaitenaiart_V20.safetensors [55fed17365]": "55fed17365", + "dvarchMultiPrompt_dvarchExterior.ckpt [1ecb6b4e9c]": "1ecb6b4e9c", + "Elldreths_OG_4060_mix.ckpt [707ee16b5b]": "707ee16b5b", + "Elldreths_Retro_Mix.ckpt [57285e7bd5]": "57285e7bd5", + "ElldrethsImaginationMix.ckpt [64224f0599]": "64224f0599", + "elldrethsLucidMix_v10.safetensors [67abd65708]": "67abd65708", + "elldrethSOg4060Mix_v10.ckpt [707ee16b5b]": "707ee16b5b", + "elldrethsRetroMix_v10.safetensors [57285e7bd5]": "57285e7bd5", + "icomix_V02Pruned.safetensors [76b00ee812]": "76b00ee812", + "inkpunkDiffusion_v2-inpainting-fp16-no-ema.safetensors [0c666f32e8]": "0c666f32e8", + "inkpunkDiffusion_v2-inpainting.safetensors [1bd4ce2c12]": "1bd4ce2c12", + "inkpunkDiffusion_v2.ckpt [2182245415]": "2182245415", + "meinamix_meinaV8.safetensors [30953ab0de]": "30953ab0de", + "mimi_V3.safetensors [88f31afc3d]": "88f31afc3d", + "mini_town_v1.safetensors [ed94110348]": "ed94110348", + "pixhell_v20.safetensors [333825e530]": "333825e530", + "projectUnrealEngine5_projectUnrealEngine5B.ckpt [748ff6eab2]": "748ff6eab2", + "pyraMythraPneuma_50Epochs.safetensors [fc9d093614]": "fc9d093614", + "realisticVisionV20_v20.safetensors [c0d1994c73]": "c0d1994c73", + "realLifeTest_realLifeTest.ckpt [d6347268cc]": "d6347268cc", + "revAnimated_v11.safetensors [d725be5d18]": "d725be5d18", + "samdoesartsUltmerge_v1.ckpt [0df9497424]": "0df9497424", + "shanshui_v0-000002.safetensors [18cbf1953b]": "18cbf1953b", + "tmndMix_tmndMixPlus.safetensors [7d19f9efad]": "7d19f9efad", + "unstableinkdream_v73.safetensors [f036d7b40b]": "f036d7b40b", + "unstablephotorealv5_05.ckpt [6ef4ed10a6]": "6ef4ed10a6", + "yinmu.safetensors [c1b28e2883]": "c1b28e2883", + "protogenX58RebuiltScifi_10.ckpt [e0de8aae3e]": "e0de8aae3e", + "marvelWhatIf_v2.ckpt [2e051600d4]": "2e051600d4", + "meinamix_meinaV9.safetensors [eac6c08a19]": "eac6c08a19", + "mixProV4_v4.safetensors [61e23e57ea]": "61e23e57ea", + "revAnimated_v122.safetensors [4199bcdd14]": "4199bcdd14", + "wood_tile-000001.safetensors [7fd29f7f80]": "7fd29f7f80", + "wood_tile-000002.safetensors [058be7927f]": "058be7927f", + "wood_tile-000003.safetensors [c379ec75dd]": "c379ec75dd", + "wood_tile-000004.safetensors [4256b2614b]": "4256b2614b", + "wood_tile-000005.safetensors [e466a6d0d1]": "e466a6d0d1", + "wood_tile-000006.safetensors [a78cb62c5a]": "a78cb62c5a", + "wood_tile-000007.safetensors [046910b320]": "046910b320", + "wood_tile-000008.safetensors [828af323cb]": "828af323cb", + "wood_tile-000009.safetensors [4b2844ebad]": "4b2844ebad", + "wood_tile.safetensors [95e89ae856]": "95e89ae856", + "CounterfeitV25_25.safetensors [a074b8864e]": "a074b8864e", + "corneo_bound_missionary.pt": null, + "corneo_mercy.pt": null, + "emmsto.pt": null, + "incaseStyle_incaseAnythingV3.pt": null, + "pureerosface_v1.pt": null, + "RSC.pt": null, + "Toru8pWavenChibi_wavenchibiV10b.pt": null, + "mini_town_v1-state\\scaler.pt": null, + "shanshui_v0-000002-state\\scaler.pt": null, + "wood_tile-000001-state\\scaler.pt": null, + "wood_tile-000002-state\\scaler.pt": null, + "wood_tile-000003-state\\scaler.pt": null, + "wood_tile-000004-state\\scaler.pt": null, + "wood_tile-000005-state\\scaler.pt": null, + "wood_tile-000006-state\\scaler.pt": null, + "wood_tile-000007-state\\scaler.pt": null, + "wood_tile-000008-state\\scaler.pt": null, + "wood_tile-000009-state\\scaler.pt": null, + "wood_tile-state\\scaler.pt": null, + "2BLoRA YorHA edition.ckpt": null, + "Addams-000001.safetensors": null, + "Addams-000002.safetensors": null, + "Addams-000003.safetensors": null, + "Addams-000004.safetensors": null, + "Addams.safetensors": null, + "aliceNikke_v30.safetensors": null, + "android18DragonBall_one.safetensors": null, + "animeLineartMangaLike_v30MangaLike (1).safetensors": null, + "arknightsTexasThe_v10.safetensors": null, + "atomicHeartRobotMaid_001.safetensors": null, + "bigHeadDoll_v01.safetensors": null, + "blindbox_V1Mix.safetensors": null, + "bruceLee_bruceLeeV10.safetensors": null, + "childrensDrawingLora_v10.safetensors": null, + "ChineseInkPainting_v10.safetensors": null, + "chunLiStreetFighter_v10.safetensors": null, + "emery_rose-000001.safetensors": null, + "emery_rose-000002.safetensors": null, + "emery_rose.safetensors": null, + "gachaSplashLORA_gachaSplashFarShot.safetensors": null, + "gta5ArtworkDiffusion_v1.safetensors": null, + "gundamRX782OutfitStyle_v10.safetensors": null, + "gundamRX78_v2.safetensors": null, + "handpaintedRPGIcons_v1.safetensors": null, + "hanfu_v28.safetensors": null, + "harunoSakuraNaruto_lykonV1.safetensors": null, + "HuluwaGourdMan_v11.safetensors": null, + "hyperbreasts.ckpt": null, + "ink_spark-000002.safetensors": null, + "ink_spark-000004.safetensors": null, + "ink_spark-000006.safetensors": null, + "ink_spark-000008.safetensors": null, + "ink_spark.safetensors": null, + "japaneseDollLikeness_v10.safetensors": null, + "jimLeeDCComicsMarvel_offset.safetensors": null, + "koreanDollLikeness_v15.safetensors": null, + "Leslie_Cheung.safetensors": null, + "Lisa - LoRA Collection of Trauters.ckpt": null, + "liuyifei_10.safetensors": null, + "LORAFlatColor_flatColor.pt": null, + "makimaChainsawMan_offset.safetensors": null, + "mini town-000002.safetensors": null, + "mini town-000004.safetensors": null, + "mini town-000006.safetensors": null, + "mini town-000008.safetensors": null, + "mini town-000010.safetensors": null, + "mini town-000012.safetensors": null, + "mini town-000014.safetensors": null, + "mini town-000016.safetensors": null, + "mini town-000018.safetensors": null, + "mini town.safetensors": null, + "mini_town-000001.safetensors": null, + "mini_town-000002.safetensors": null, + "mini_town-000003.safetensors": null, + "mini_town-000004.safetensors": null, + "mini_town.safetensors": null, + "Moxin_10.safetensors": null, + "Moxin_1010.safetensors": null, + "murataYusukeOnePunchMan_1.safetensors": null, + "myHeroAcademiaHorikoshi_v1.safetensors": null, + "onePieceWanoSagaStyle_20.safetensors": null, + "oyamaMahiro_oyamaMahiro2.safetensors": null, + "realisticAerith_v1.safetensors": null, + "samdoesartsSamYang_offset.safetensors": null, + "samdoesartsSamYang_offsetRightFilesize.safetensors": null, + "shirtTugPoseLORA_shirtTug.safetensors": null, + "slumdunk-000002.safetensors": null, + "slumdunk-000004.safetensors": null, + "slumdunk-000006.safetensors": null, + "slumdunk-000008.safetensors": null, + "slumdunk.safetensors": null, + "studioGhibliStyle_offset.safetensors": null, + "taiwanDollLikeness_v10.safetensors": null, + "tifaMeenow_tifaV2.safetensors": null, + "urbanSamuraiClothing_urbansamuraiV03.safetensors": null, + "wanniya-000003.safetensors": null, + "xiaofu-000004.safetensors": null, + "yaeMikoRealistic_yaemikoMixed.safetensors": null, + "yojiShinkawaStyle_offset.safetensors": null, + "Zhang_Songwen.safetensors": null, + "\u753b\u98ce \u9ed1\u767d \u6d82\u9e26 \u4f5coskarsson.safetensors": null, + "\u771f\u4eba \u6768\u8d85\u8d8a \u4f5cmpmp.safetensors": null, + "\u78a7\u84dd\u5e7b\u60f3\u5154\u795e\u5c06makura.safetensors": null, + "\u7acb\u7ed8\u62c6\u5206lion\u4f18\u5316\u5668 tachie separation.safetensors": null, + "scaler.pt": null, + "AnimeScreenCap.pt": null, + "CGI_Animation-185.pt": null, + "corneo_anal.pt": null, + "CounterfeitV25_25.safetensors": null, + "lyriel_v15.safetensors": null, + "azl_v1-000002.safetensors": null, + "azl_v1-000004.safetensors": null, + "azl_v1-000006.safetensors": null, + "azl_v1-000008.safetensors": null, + "azl_v1-000010.safetensors": null, + "azl_v1-000012.safetensors": null, + "azl_v1-000014.safetensors": null, + "azl_v1-000016.safetensors": null, + "azl_v1-000018.safetensors": null, + "azl_v1.safetensors": null, + "Asuka.safetensors": null, + "wood_tile-long.safetensors": null, + "wood_tile-Square.safetensors": null, + "anthro.pt": null, + "bad-artist.pt": null, + "bad-hands-5.pt": null, + "bad_prompt.pt": null, + "bad_prompt_version2.pt": null, + "bad_quality.pt": null, + "bukkakAI.pt": null, + "CandyPunk.pt": null, + "CharTurner.pt": null, + "CutAway-420.pt": null, + "CutAway-460.pt": null, + "CutAway-500.pt": null, + "ely_neg_prompt.pt": null, + "evil_neg_prompt3.pt": null, + "InkPunk768.pt": null, + "kc32-v4-5000.pt": null, + "midjourney.pt": null, + "Remix.pt": null, + "schizo_neg_prompt.pt": null, + "SDA768.pt": null, + "Style-Empire.pt": null, + "VikingPunk.pt": null, + "webtoon.pt": null, + "ycy_zzj-1000-1050.pt": null, + "ycy_zzj-1000-1100.pt": null, + "ycy_zzj-1000-1150.pt": null, + "ycy_zzj-1000-1200.pt": null, + "ycy_zzj-1000-1250.pt": null, + "ycy_zzj-1000-1300.pt": null, + "ycy_zzj-1000-1350.pt": null, + "ycy_zzj-1000-1400.pt": null, + "ycy_zzj-1000-1450.pt": null, + "ycy_zzj-1000-1500.pt": null, + "ycy_zzj-1000-1550.pt": null, + "ycy_zzj-1000-1600.pt": null, + "ycy_zzj-1000-1650.pt": null, + "ycy_zzj-1000-1700.pt": null, + "ycy_zzj-1000-1750.pt": null, + "ycy_zzj-1000-1800.pt": null, + "ycy_zzj-1000-1850.pt": null, + "ycy_zzj-1000-1900.pt": null, + "ycy_zzj-1000-1950.pt": null, + "ycy_zzj-1000.pt": null, + "ycy_zzj-2000.pt": null, + "ycy_zzj.pt": null, + "facebombmix_v1Bakedvae.safetensors": null, + "mistoonSapphire_v10.safetensors": null, + "LowRA.safetensors": null, + "21SDModernBuildings_midjourneyBuildings.ckpt": null, + "2dn_1.safetensors": null, + "AbyssOrangeMix2_hard.safetensors": null, + "adobisRealFlexibleMix_v2.safetensors": null, + "allInOnePixelModel_v1.ckpt": null, + "aloeverasSimpmaker3K_simpmaker3K1.ckpt": null, + "analogDiffusion_10Safetensors.safetensors": null, + "analogDream3D_10.ckpt": null, + "anovel_speed.ckpt": null, + "anygenV37_anygenv37.ckpt": null, + "Anything-V3.0-pruned.ckpt": null, + "anytwam11Mixedmodel_anytwam11.safetensors": null, + "aoaokoPVCStyleModel_pvcAOAOKO.safetensors": null, + "arcaneDiffusion_v3.ckpt": null, + "Arcane_Diffusion.ckpt": null, + "artErosAerosATribute_aerosNovae.safetensors": null, + "aToZovyaRPGArtistsTools15_sd15V1.safetensors": null, + "ayonimix_V2.safetensors": null, + "babes_11.safetensors": null, + "Basil_mix_fixed.safetensors": null, + "biggerGirlsModel_biggergirlsV2.ckpt": null, + "cheeseDaddys_30.safetensors": null, + "chilloutmix_inpainting.inpainting.safetensors": null, + "chilloutmix_NiPrunedFp32Fix.safetensors": null, + "chillout_west_mix.safetensors": null, + "chromaticcreamv1_chromaticcreamV1.ckpt": null, + "ChromaV5 (2.0).ckpt": null, + "clarity_14.safetensors": null, + "classicNegative1521_classicNegative768px.ckpt": null, + "Colorwater_v4.safetensors": null, + "comicBabes_v1.safetensors": null, + "comicDiffusion_v2.ckpt": null, + "corneos7thHeavenMix_100.safetensors": null, + "corneos7thHeavenMix_v1.safetensors": null, + "Counterfeit-V2.5_pruned.safetensors": null, + "CounterfeitV20_20.ckpt": null, + "cuteRichstyle15_cuteRichstyle.ckpt": null, + "cyberrealistic_v13.safetensors": null, + "cynthiaModela_v10.safetensors": null, + "deliberate_v11-inpainting.inpainting.safetensors": null, + "deliberate_v11.safetensors": null, + "dgspitzerArt_dgspitzerArtDiffusion.safetensors": null, + "diGiMDSToriyamaModel_toriyamaV1.ckpt": null, + "dreamlikeDiffusion10_10.ckpt": null, + "dreamlikePhotoreal20_dreamlikePhotoreal20.safetensors": null, + "dreamshaper_332BakedVaeClipFix.safetensors": null, + "DucHaitenAIart.safetensors": null, + "duchaitenaiart_V20.safetensors": null, + "dvarchMultiPrompt_dvarchExterior.ckpt": null, + "edgeOfRealism_eorV20Fp16BakedVAE.safetensors": null, + "ElldrethsImaginationMix.ckpt": null, + "elldrethsLucidMix_v10.safetensors": null, + "elldrethSOg4060Mix_v10.ckpt": null, + "elldrethsRetroMix_v10.safetensors": null, + "elldrethsVividMix_v20VividEr.safetensors": null, + "Elldreths_OG_4060_mix.ckpt": null, + "Elldreths_Retro_Mix.ckpt": null, + "fkingScifiV2_r41958.safetensors": null, + "furtasticv11_furtasticv11.safetensors": null, + "futagen_2.safetensors": null, + "galaxytimemachinesGTM_v1.safetensors": null, + "Grapefruit.safetensors": null, + "grapeGrapefruitHenta_grapefruitV11.safetensors": null, + "GrapeLikeDreamFruit.ckpt": null, + "gta5ArtworkDiffusion_v1.ckpt": null, + "hAS3Dkx10B_3Dkx10B.safetensors": null, + "hasdx_hasedsdx.safetensors": null, + "hassanblend1512And_hassanblend1512.safetensors": null, + "hassanBlendAllVersio_hassanBlend14.safetensors": null, + "HAs_3DKX 1.1.ckpt": null, + "healySAnimeBlend_17.ckpt": null, + "Healys_Anime_Blend.ckpt": null, + "homoerotic_v2.safetensors": null, + "icomix_V02Pruned.safetensors": null, + "Inkpunk-Diffusion-v2.ckpt": null, + "inkpunkDiffusion_v2-inpainting-fp16-no-ema.safetensors": null, + "inkpunkDiffusion_v2-inpainting.safetensors": null, + "inkpunkDiffusion_v2.ckpt": null, + "instruct-pix2pix-00-22000.safetensors": null, + "jaksCreepyCritter_sd21768px.ckpt": null, + "jhSSamdoesarts_v5.ckpt": null, + "kenshi_00.safetensors": null, + "knollingcase_v1.ckpt": null, + "kotosAbyssproto_v10.safetensors": null, + "ligneClaireAnime_v1.safetensors": null, + "majorXs2DPOVModel_2dpov11.ckpt": null, + "mandarine_3.ckpt": null, + "marvelWhatIf_v2.ckpt": null, + "meinamix_meinaV8.safetensors": null, + "meinamix_meinaV9.safetensors": null, + "mimi_V3.safetensors": null, + "mini_town_v1.safetensors": null, + "mixProV3_v3.safetensors": null, + "mixProV4_v4.safetensors": null, + "modernDisney_v1.ckpt": null, + "moistmix_v2.safetensors": null, + "openjourney-v2.ckpt": null, + "openjourneyAka_v1.ckpt": null, + "owlerartStyle_v2.safetensors": null, + "pastelMixStylizedAnime_pastelMixPrunedFP16.safetensors": null, + "pfg_111Safetensors.safetensors": null, + "pixhell_v20.safetensors": null, + "princessZeldaLora_v1.safetensors": null, + "projectUnrealEngine5_projectUnrealEngine5B.ckpt": null, + "protogenV22Anime_22.safetensors": null, + "protogenX34Photorealism_1.safetensors": null, + "protogenX34Photoreal_1.safetensors": null, + "protogenX58RebuiltScifi_10.ckpt": null, + "protogenX58RebuiltScifi_10.safetensors": null, + "protogenX58RebuiltSc_10.safetensors": null, + "purepornplusMerge_purepornplus10.ckpt": null, + "pyraMythraPneuma_50Epochs.safetensors": null, + "qgo10a_qgo10a.safetensors": null, + "ratnikamix_2.safetensors": null, + "realeldenapocalypse_Analogsexknoll.safetensors": null, + "realisticVisionV13_v12.safetensors": null, + "realisticVisionV20_v20.safetensors": null, + "realLifeTest_realLifeTest.ckpt": null, + "redshiftDiffusion_v1.ckpt": null, + "revAnimated_v11.safetensors": null, + "revAnimated_v122.safetensors": null, + "roboeticsMix_rmix01Ckpt.ckpt": null, + "RPG.ckpt": null, + "s1dlxbrew_02.safetensors": null, + "samdoesartsUltmerge_v1.ckpt": null, + "schoolAnime_schoolAnime.safetensors": null, + "schoolmax25d_11.ckpt": null, + "sd-v1-4.ckpt": null, + "sd-v1-5-inpainting.ckpt": null, + "shadyArtOFFICIAL_shadyArt1.safetensors": null, + "shanshui_v0-000002.safetensors": null, + "spybgsToolkitFor_v40YoutubeChannel.ckpt": null, + "stablydiffusedsWild_3.safetensors": null, + "StablyDiffuseds_Aesthetic_Mix.ckpt": null, + "superheroDiffusion_v1.ckpt": null, + "surugaModel_suruga12K.ckpt": null, + "synthwavepunk_v2.ckpt": null, + "theallysMixIIChurned_v10.safetensors": null, + "theAllysMix_v10Safetensors.safetensors": null, + "tmndMix_tmndMixPlus.safetensors": null, + "toonyou_alpha3.safetensors": null, + "uberRealisticPornMerge_urpmv12.safetensors": null, + "unstableinkdream_v6.safetensors": null, + "unstableinkdream_v73.safetensors": null, + "unstablephotorealv5_05.ckpt": null, + "v1-5-pruned.ckpt": null, + "v2-1_768-nonema-pruned.ckpt": null, + "wd-v1-3-full.ckpt": null, + "wlop_1.ckpt": null, + "yiffymix_.safetensors": null, + "yinmu.safetensors": null, + "\u5565\u73a9\u610f\u5b8c\u728a\u5b50F16.safetensors": null, + "AnimeKiss.safetensors": null, + "gakkou-00008.safetensors": null, + "miniatureWorldStyle_v10.safetensors": null, + "WuMo2.safetensors": null, + "[LoCon] Octans\u516b\u5206\u5100 Style.safetensors": null, + "CounterfeitV30_v30.safetensors": null, + "flat2DAnimerge_v10.safetensors": null, + "miniature_V1.safetensors": null, + "rcnzsDumbMonkey_v10.safetensors": null, + "saucitySauce_ssumdPlus.safetensors": null, + "shanshui_v0.1.safetensors": null, + "vividWatercolors_10.safetensors": null, + "test\\3Guofeng3_v33.safetensors": null, + "test\\schoolAnime_schoolAnime.safetensors": null, + "beautifulRealistic_brav5.safetensors": null, + "80year03.safetensors": null, + "9khp2znuogB.safetensors": null, + "battle_uniform-v1.1-000001.safetensors": null, + "battle_uniform-v1.1-000002.safetensors": null, + "battle_uniform-v1.1-000003.safetensors": null, + "battle_uniform-v1.1-000004.safetensors": null, + "battle_uniform-v1.1-000005.safetensors": null, + "battle_uniform-v1.1-000006.safetensors": null, + "battle_uniform-v1.1-000007.safetensors": null, + "battle_uniform-v1.1-000008.safetensors": null, + "battle_uniform-v1.1-000009.safetensors": null, + "battle_uniform-v1.1.safetensors": null, + "battle_uniform-v1.2-000001.safetensors": null, + "battle_uniform-v1.2-000002.safetensors": null, + "battle_uniform-v1.2-000003.safetensors": null, + "battle_uniform-v1.2-000004.safetensors": null, + "battle_uniform-v1.2-000005.safetensors": null, + "battle_uniform-v1.2-000006.safetensors": null, + "battle_uniform-v1.2-000007.safetensors": null, + "battle_uniform-v1.2-000008.safetensors": null, + "battle_uniform-v1.2-000009.safetensors": null, + "battle_uniform-v1.2-000010.safetensors": null, + "battle_uniform-v1.2-000011.safetensors": null, + "battle_uniform-v1.2-000012.safetensors": null, + "battle_uniform-v1.2-000013.safetensors": null, + "battle_uniform-v1.2-000014.safetensors": null, + "battle_uniform-v1.2-000015.safetensors": null, + "battle_uniform-v1.2-000016.safetensors": null, + "battle_uniform-v1.2-000017.safetensors": null, + "battle_uniform-v1.2-000018.safetensors": null, + "battle_uniform-v1.2-000019.safetensors": null, + "battle_uniform-v1.2-000020.safetensors": null, + "battle_uniform-v1.2-000021.safetensors": null, + "battle_uniform-v1.2-000022.safetensors": null, + "battle_uniform-v1.2-000023.safetensors": null, + "battle_uniform-v1.2-000024.safetensors": null, + "battle_uniform-v1.2-000025.safetensors": null, + "battle_uniform-v1.2-000026.safetensors": null, + "battle_uniform-v1.2-000027.safetensors": null, + "battle_uniform-v1.2-000028.safetensors": null, + "battle_uniform-v1.2-000029.safetensors": null, + "battle_uniform-v1.2-000030.safetensors": null, + "battle_uniform-v1.2-000031.safetensors": null, + "battle_uniform-v1.2-000032.safetensors": null, + "battle_uniform-v1.2-000033.safetensors": null, + "battle_uniform-v1.2-000034.safetensors": null, + "battle_uniform-v1.2-000035.safetensors": null, + "battle_uniform-v1.2-000036.safetensors": null, + "battle_uniform-v1.2-000037.safetensors": null, + "battle_uniform-v1.2-000038.safetensors": null, + "battle_uniform-v1.2-000039.safetensors": null, + "battle_uniform-v1.2-000040.safetensors": null, + "battle_uniform-v1.2-000041.safetensors": null, + "battle_uniform-v1.2-000042.safetensors": null, + "battle_uniform-v1.2-000043.safetensors": null, + "battle_uniform-v1.2-000044.safetensors": null, + "battle_uniform-v1.2-000045.safetensors": null, + "battle_uniform-v1.2-000046.safetensors": null, + "battle_uniform-v1.2-000047.safetensors": null, + "battle_uniform-v1.2-000048.safetensors": null, + "battle_uniform-v1.2-000049.safetensors": null, + "battle_uniform-v1.2.safetensors": null, + "battle_uniform_v1-000002.safetensors": null, + "battle_uniform_v1-000004.safetensors": null, + "battle_uniform_v1-000006.safetensors": null, + "battle_uniform_v1-000008.safetensors": null, + "battle_uniform_v1-000010.safetensors": null, + "battle_uniform_v1-000012.safetensors": null, + "battle_uniform_v1-000014.safetensors": null, + "battle_uniform_v1-000016.safetensors": null, + "battle_uniform_v1-000018.safetensors": null, + "battle_uniform_v1-000020.safetensors": null, + "battle_uniform_v1-000022.safetensors": null, + "battle_uniform_v1-000024.safetensors": null, + "battle_uniform_v1-000026.safetensors": null, + "battle_uniform_v1-000028.safetensors": null, + "battle_uniform_v1-000030.safetensors": null, + "bookcover_V2_loha-000033.safetensors": null, + "Boxcomple-15.safetensors": null, + "childbookfinv2.safetensors": null, + "ChineseKungFu.safetensors": null, + "ClearVAE_V2.2.safetensors": null, + "Cthulhu_monster.safetensors": null, + "dunhuang_v20.safetensors": null, + "Elegant hanfu ruqun style.safetensors": null, + "Girls in Glass Jars v3.safetensors": null, + "Girls' Frontline-OTs-14[lightning]-V3.safetensors": null, + "hanfu_v30.safetensors": null, + "history_scroll_0.5.safetensors": null, + "howlbgsv3.safetensors": null, + "LAS.safetensors": null, + "Light and Shadow.safetensors": null, + "Lora-Custom-ModelLiXian.safetensors": null, + "lora_CelestialHarmony.safetensors": null, + "mafuyulightmakeup.safetensors": null, + "mafuyuLoraOfFace_origin.safetensors": null, + "mario.safetensors": null, + "miaoLan_165.safetensors": null, + "mini2dtest_V2_loha.safetensors": null, + "MultipleGirlsGroup.safetensors": null, + "nami_final_offset.safetensors": null, + "neowrsk.safetensors": null, + "niba_style_v1.safetensors": null, + "nico_robin_post_timeskip_offset.safetensors": null, + "phoenixMarie.safetensors": null, + "pixel_V1_loha-000024.safetensors": null, + "piying_v0.1-side_view.safetensors": null, + "Pmini_v3.5.18.safetensors": null, + "qy_bookcover_v1.safetensors": null, + "rageMode_v1.safetensors": null, + "shinkai_makoto_offset.safetensors": null, + "SurrealHarmony.safetensors": null, + "toonyou_lora.safetensors": null, + "toonyou_lycoris.safetensors": null, + "WaterMargin_v1.safetensors": null, + "zgf_v2_loha-000030.safetensors": null, + "2dposter_v1_loha-000015.safetensors": null, + "OF_Coconut_Kitty.safetensors": null, + "aZovyaPhotoreal_v2.safetensors": null, + "meinahentai_v4.safetensors": null, + "3DMM_V11.safetensors": null, + "anythingqingmix25D_v10.safetensors": null, + "anythingV3Inpainting_1-inpainting.ckpt": null, + "AnythingV5Ink_v32Ink.safetensors": null, + "couterfeitv30_v30.inpainting.safetensors": null, + "disneyPixarCartoon_v10.safetensors": null, + "dis_V1-000020.safetensors": null, + "ghostmix_v20Bakedvae.safetensors": null, + "guofengrealmix_v10.safetensors": null, + "majicMIX fantasy_v1.0.safetensors": null, + "majicmixRealistic_v4.safetensors": null, + "majicmixRealistic_v6.safetensors": null, + "miaoshouai-anything-v4-pruned.safetensors": null, + "niantu_v1.safetensors": null, + "oukaGufeng_s1.safetensors": null, + "pixarStyleModel_v10.ckpt": null, + "rpg_V4.inpainting.safetensors": null, + "rpg_V4.safetensors": null, + "rpg_v4_2.inpainting.safetensors": null, + "sdxl_base_pruned_no-ema.safetensors": null, + "sdxl_refiner_pruned_no-ema.safetensors": null, + "model_contest_1\\1-DangerAngelSavour10.safetensors-ckpt.safetensors": null, + "model_contest_1\\10-huacai1.0-ckpt.safetensors": null, + "model_contest_1\\11-CmixG-ckpt.safetensors": null, + "model_contest_1\\16-NewGufengV1.0-ckpt.safetensors": null, + "model_contest_1\\29-xxmix9realistic v4.0-ckpt.safetensors": null, + "model_contest_1\\32-Rely on Defenc-ckpt.safetensors": null, + "model_contest_1\\33-super_gufeng-ckpt.safetensors": null, + "model_contest_1\\35-Dream CNrealistic_MIXv11-ckpt.safetensors": null, + "model_contest_1\\38-version V1-ckpt.safetensors": null, + "model_contest_1\\40-Alpha Lyrae-ckpt.safetensors": null, + "model_contest_1\\41-tkf-ckpt.safetensors": null, + "model_contest_1\\5-Dream CNrealistic_MIXv21-ckpt.safetensors": null, + "model_contest_1\\54-guofeng-checkpoint.safetensors": null, + "model_contest_1\\68-Colorful_girl-checkpoint.ckpt": null, + "model_contest_1\\71-GCM-Game Concept Map-checkpoint.safetensors": null, + "model_contest_1\\76-SJ_real109-checkpoint.safetensors": null, + "model_contest_1\\95-chunzi-checkpoiint.ckpt": null, + "model_contest_1\\99-Dream CNrealistic_MIXv12-checkpoint.safetensors": null, + "model_contest_1\\CMixG-1-0.33.safetensors": null, + "leokan.safetensors": null, + "Moses_ten_commandments-BibleGilgalHK-V1.safetensors": null +} \ No newline at end of file diff --git a/miaoshouai-assistant-main/configs/official_models.json b/miaoshouai-assistant-main/configs/official_models.json new file mode 100644 index 0000000000000000000000000000000000000000..dcf1ef6ac446396341ad0dbb598bfdd8d9debd05 --- /dev/null +++ b/miaoshouai-assistant-main/configs/official_models.json @@ -0,0 +1,594 @@ +[ + { + "id": 1, + "name": "stable-diffusion-v1-5", + "description": "

Stable Diffusion is a latent text-to-image diffusion model capable of generating photo-realistic images given any text input. For more information about how Stable Diffusion functions, please have a look at \uD83E\uDD17's Stable Diffusion blog.\n\nThe Stable-Diffusion-v1-5 checkpoint was initialized with the weights of the Stable-Diffusion-v1-2 checkpoint and subsequently fine-tuned on 595k steps at resolution 512x512 on \"laion-aesthetics v2 5+\" and 10% dropping of the text-conditioning to improve classifier-free guidance sampling.\n\nYou can use this both with the \uD83E\uDDE8Diffusers library and the RunwayML GitHub repository.

", + "type": "Checkpoint", + "poi": false, + "nsfw": false, + "allowNoCredit": true, + "allowCommercialUse": "Rent", + "allowDerivatives": true, + "allowDifferentLicense": true, + "stats": { + "downloadCount": 865, + "favoriteCount": 190, + "commentCount": 7, + "ratingCount": 2, + "rating": 5 + }, + "creator": { + "username": "creativeml-openrail-m", + "image": "https://huggingface.co/runwayml/stable-diffusion-v1-5" + }, + "tags": [ + "horror", + "dzislaw beksinskidzi", + "kappa_neuro", + "paintings" + ], + "modelVersions": [ + { + "id": 1, + "modelId": 7019, + "name": "Zdzislaw Beksinski LORA", + "createdAt": "2023-02-06T13:52:34.605Z", + "updatedAt": "2023-02-06T13:52:34.605Z", + "trainedWords": [], + "baseModel": "SD 1.5", + "earlyAccessTimeFrame": 0, + "description": "

", + "files": [ + { + "name": "v1-5-pruned-emaonly.ckpt", + "id": 1, + "sizeKB": 4471261.130859375, + "type": "Model", + "format": "CKPT", + "pickleScanResult": "Success", + "pickleScanMessage": "No Pickle imports", + "virusScanResult": "Success", + "scannedAt": "2023-02-06T13:55:58.281Z", + "hashes": { + "AutoV2": "833E816807", + "SHA256": "833E816807E8D3658EBC65436908F690603A8E0E8D26143A90050F32958C9E4E", + "CRC32": "87F68C12", + "BLAKE3": "7A28D3D22520D61B58338791522A14B7B33A6A9CE552FF7D68D7E2688CAB3266" + }, + "downloadUrl": "https://huggingface.co/runwayml/stable-diffusion-v1-5/resolve/main/v1-5-pruned-emaonly.ckpt", + "primary": false + }, + { + "name": "v1-5-pruned-emaonly.safetensors", + "id": 2, + "sizeKB": 4471261.130859375, + "type": "Model", + "format": "Safetensors", + "pickleScanResult": "Success", + "pickleScanMessage": "No Pickle imports", + "virusScanResult": "Success", + "scannedAt": "2023-02-06T13:55:58.281Z", + "hashes": { + "AutoV2": "833E816807", + "SHA256": "833E816807E8D3658EBC65436908F690603A8E0E8D26143A90050F32958C9E4E", + "CRC32": "87F68C12", + "BLAKE3": "7A28D3D22520D61B58338791522A14B7B33A6A9CE552FF7D68D7E2688CAB3266" + }, + "downloadUrl": "https://huggingface.co/runwayml/stable-diffusion-v1-5/resolve/main/v1-5-pruned-emaonly.safetensors", + "primary": true + }, + { + "name": "v1-5-pruned.ckpt", + "id": 3, + "sizeKB": 7971261.130859375, + "type": "Model", + "format": "Safetensors", + "pickleScanResult": "Success", + "pickleScanMessage": "No Pickle imports", + "virusScanResult": "Success", + "scannedAt": "2023-02-06T13:55:58.281Z", + "hashes": { + "AutoV2": "833E816807", + "SHA256": "833E816807E8D3658EBC65436908F690603A8E0E8D26143A90050F32958C9E4E", + "CRC32": "87F68C12", + "BLAKE3": "7A28D3D22520D61B58338791522A14B7B33A6A9CE552FF7D68D7E2688CAB3266" + }, + "downloadUrl": "https://huggingface.co/runwayml/stable-diffusion-v1-5/resolve/main/v1-5-pruned.ckpt", + "primary": false + }, + { + "name": "v1-5-pruned.safetensors", + "id": 4, + "sizeKB": 7971261.130859375, + "type": "Model", + "format": "Safetensors", + "pickleScanResult": "Success", + "pickleScanMessage": "No Pickle imports", + "virusScanResult": "Success", + "scannedAt": "2023-02-06T13:55:58.281Z", + "hashes": { + "AutoV2": "833E816807", + "SHA256": "833E816807E8D3658EBC65436908F690603A8E0E8D26143A90050F32958C9E4E", + "CRC32": "87F68C12", + "BLAKE3": "7A28D3D22520D61B58338791522A14B7B33A6A9CE552FF7D68D7E2688CAB3266" + }, + "downloadUrl": "https://huggingface.co/runwayml/stable-diffusion-v1-5/resolve/main/v1-5-pruned.safetensors", + "primary": false + }, + { + "name": "sd-v1-5-inpainting.ckpt", + "id": 5, + "sizeKB": 4471261.130859375, + "type": "Model", + "format": "Checkpoint", + "pickleScanResult": "Success", + "pickleScanMessage": "No Pickle imports", + "virusScanResult": "Success", + "scannedAt": "2023-02-06T13:55:58.281Z", + "hashes": { + "AutoV2": "833E816807", + "SHA256": "833E816807E8D3658EBC65436908F690603A8E0E8D26143A90050F32958C9E4E", + "CRC32": "87F68C12", + "BLAKE3": "7A28D3D22520D61B58338791522A14B7B33A6A9CE552FF7D68D7E2688CAB3266" + }, + "downloadUrl": "https://huggingface.co/runwayml/stable-diffusion-inpainting/resolve/main/sd-v1-5-inpainting.ckpt", + "primary": false + } + ], + "images": [ + { + "url": "https://msdn.miaoshouai.com/msai/kt/ez/9900922.png" + } + ] + } + ] + }, + { + "id": 2, + "name": "stable-diffusion-2-1", + "description": "

Stable Diffusion v2-1 Model Card\nThis model card focuses on the model associated with the Stable Diffusion v2-1 model, codebase available here.\n\nThis stable-diffusion-2-1 model is fine-tuned from stable-diffusion-2 (768-v-ema.ckpt) with an additional 55k steps on the same dataset (with punsafe=0.1), and then fine-tuned for another 155k extra steps with punsafe=0.98.\n\nUse it with the stablediffusion repository: download the v2-1_768-ema-pruned.ckpt here.\nUse it with \uD83E\uDDE8 diffusers\nModel Details\nDeveloped by: Robin Rombach, Patrick Esser\n\nModel type: Diffusion-based text-to-image generation model\n\nLanguage(s): English\n\nLicense: CreativeML Open RAIL++-M License\n\nModel Description: This is a model that can be used to generate and modify images based on text prompts. It is a Latent Diffusion Model that uses a fixed, pretrained text encoder (OpenCLIP-ViT/H).\n\nResources for more information: GitHub Repository.

", + "type": "Checkpoint", + "poi": false, + "nsfw": false, + "allowNoCredit": true, + "allowCommercialUse": "Rent", + "allowDerivatives": true, + "allowDifferentLicense": true, + "stats": { + "downloadCount": 865, + "favoriteCount": 190, + "commentCount": 7, + "ratingCount": 2, + "rating": 5 + }, + "creator": { + "username": "stabilityai", + "image": "https://huggingface.co/stabilityai/stable-diffusion-2-1" + }, + "tags": [], + "modelVersions": [ + { + "id": 2, + "modelId": 2, + "name": "stable-diffusion-2-1", + "createdAt": "2023-02-06T13:52:34.605Z", + "updatedAt": "2023-02-06T13:52:34.605Z", + "trainedWords": [], + "baseModel": "SD 1.5", + "earlyAccessTimeFrame": 0, + "description": "

", + "files": [ + { + "name": "v2-1_768-ema-pruned.ckpt", + "id": 6, + "sizeKB": 5421261.130859375, + "type": "Model", + "format": "CKPT", + "pickleScanResult": "Success", + "pickleScanMessage": "No Pickle imports", + "virusScanResult": "Success", + "scannedAt": "2023-02-06T13:55:58.281Z", + "hashes": { + "AutoV2": "833E816807", + "SHA256": "833E816807E8D3658EBC65436908F690603A8E0E8D26143A90050F32958C9E4E", + "CRC32": "87F68C12", + "BLAKE3": "7A28D3D22520D61B58338791522A14B7B33A6A9CE552FF7D68D7E2688CAB3266" + }, + "downloadUrl": "https://huggingface.co/runwayml/stable-diffusion-v1-5/resolve/main/v1-5-pruned-emaonly.ckpt", + "primary": false + }, + { + "name": "v2-1_768-ema-pruned.safetensors", + "id": 7, + "sizeKB": 5421261.130859375, + "type": "Model", + "format": "Safetensors", + "pickleScanResult": "Success", + "pickleScanMessage": "No Pickle imports", + "virusScanResult": "Success", + "scannedAt": "2023-02-06T13:55:58.281Z", + "hashes": { + "AutoV2": "833E816807", + "SHA256": "833E816807E8D3658EBC65436908F690603A8E0E8D26143A90050F32958C9E4E", + "CRC32": "87F68C12", + "BLAKE3": "7A28D3D22520D61B58338791522A14B7B33A6A9CE552FF7D68D7E2688CAB3266" + }, + "downloadUrl": "https://huggingface.co/runwayml/stable-diffusion-v1-5/resolve/main/v1-5-pruned-emaonly.safetensors", + "primary": true + }, + { + "name": "v2-1_768-nonema-pruned.ckpt", + "id": 8, + "sizeKB": 5421261.130859375, + "type": "Model", + "format": "CKPT", + "pickleScanResult": "Success", + "pickleScanMessage": "No Pickle imports", + "virusScanResult": "Success", + "scannedAt": "2023-02-06T13:55:58.281Z", + "hashes": { + "AutoV2": "833E816807", + "SHA256": "833E816807E8D3658EBC65436908F690603A8E0E8D26143A90050F32958C9E4E", + "CRC32": "87F68C12", + "BLAKE3": "7A28D3D22520D61B58338791522A14B7B33A6A9CE552FF7D68D7E2688CAB3266" + }, + "downloadUrl": "https://huggingface.co/runwayml/stable-diffusion-v1-5/resolve/main/v1-5-pruned.ckpt", + "primary": false + }, + { + "name": "v2-1_768-nonema-pruned.safetensors", + "id": 9, + "sizeKB": 5421261.130859375, + "type": "Model", + "format": "Safetensors", + "pickleScanResult": "Success", + "pickleScanMessage": "No Pickle imports", + "virusScanResult": "Success", + "scannedAt": "2023-02-06T13:55:58.281Z", + "hashes": { + "AutoV2": "833E816807", + "SHA256": "833E816807E8D3658EBC65436908F690603A8E0E8D26143A90050F32958C9E4E", + "CRC32": "87F68C12", + "BLAKE3": "7A28D3D22520D61B58338791522A14B7B33A6A9CE552FF7D68D7E2688CAB3266" + }, + "downloadUrl": "https://huggingface.co/runwayml/stable-diffusion-v1-5/resolve/main/v1-5-pruned.safetensors", + "primary": false + }, + { + "name": "512-inpainting-ema.ckpt", + "id": 10, + "sizeKB": 5421261.130859375, + "type": "Model", + "format": "Safetensors", + "pickleScanResult": "Success", + "pickleScanMessage": "No Pickle imports", + "virusScanResult": "Success", + "scannedAt": "2023-02-06T13:55:58.281Z", + "hashes": { + "AutoV2": "833E816807", + "SHA256": "833E816807E8D3658EBC65436908F690603A8E0E8D26143A90050F32958C9E4E", + "CRC32": "87F68C12", + "BLAKE3": "7A28D3D22520D61B58338791522A14B7B33A6A9CE552FF7D68D7E2688CAB3266" + }, + "downloadUrl": "https://huggingface.co/stabilityai/stable-diffusion-2-inpainting/resolve/main/512-inpainting-ema.ckpt", + "primary": false + }, + { + "name": "512-inpainting-ema.safetensors", + "id": 11, + "sizeKB": 5421261.130859375, + "type": "Model", + "format": "Safetensors", + "pickleScanResult": "Success", + "pickleScanMessage": "No Pickle imports", + "virusScanResult": "Success", + "scannedAt": "2023-02-06T13:55:58.281Z", + "hashes": { + "AutoV2": "833E816807", + "SHA256": "833E816807E8D3658EBC65436908F690603A8E0E8D26143A90050F32958C9E4E", + "CRC32": "87F68C12", + "BLAKE3": "7A28D3D22520D61B58338791522A14B7B33A6A9CE552FF7D68D7E2688CAB3266" + }, + "downloadUrl": "https://huggingface.co/stabilityai/stable-diffusion-2-inpainting/resolve/main/512-inpainting-ema.safetensors", + "primary": false + }, + { + "name": "v2-1_768-ema-pruned.yaml", + "id": 12, + "sizeKB": 2261.130859375, + "type": "Model", + "format": "YAML", + "pickleScanResult": "Success", + "pickleScanMessage": "No Pickle imports", + "virusScanResult": "Success", + "scannedAt": "2023-02-06T13:55:58.281Z", + "hashes": { + "AutoV2": "833E816807", + "SHA256": "833E816807E8D3658EBC65436908F690603A8E0E8D26143A90050F32958C9E4E", + "CRC32": "87F68C12", + "BLAKE3": "7A28D3D22520D61B58338791522A14B7B33A6A9CE552FF7D68D7E2688CAB3266" + }, + "downloadUrl": "https://raw.githubusercontent.com/Stability-AI/stablediffusion/main/configs/stable-diffusion/v2-inference-v.yaml", + "primary": false + } + ], + "images": [ + { + "url": "https://msdn.miaoshouai.com/msai/kt/ez/9900922.png" + } + ] + } + ] + }, + { + "id": 4, + "name": "stable-diffusion-XL 1.0", + "description": "SDXL consists of a two-step pipeline for latent diffusion: First, we use a base model to generate latents of the desired output size. In the second step, we use a specialized high-resolution model and apply a technique called SDEdit (https://arxiv.org/abs/2108.01073, also known as \"img2img\") to the latents generated in the first step, using the same prompt.", + "type": "Checkpoint", + "poi": false, + "nsfw": false, + "allowNoCredit": true, + "allowCommercialUse": "Rent", + "allowDerivatives": true, + "allowDifferentLicense": true, + "stats": { + "downloadCount": 865, + "favoriteCount": 190, + "commentCount": 7, + "ratingCount": 2, + "rating": 5 + }, + "creator": { + "username": "stabilityai", + "image": "https://huggingface.co/stabilityai/stable-diffusion-xl-base-0.9/resolve/main/01.png" + }, + "tags": [], + "modelVersions": [ + { + "id": 2, + "modelId": 2, + "name": "sd_xl_base_1.0", + "createdAt": "2023-02-06T13:52:34.605Z", + "updatedAt": "2023-02-06T13:52:34.605Z", + "trainedWords": [], + "baseModel": "SDXL", + "earlyAccessTimeFrame": 0, + "description": "

", + "files": [ + { + "name": "sd_xl_base_1.0.safetensors", + "id": 6, + "sizeKB": 7242126.130859375, + "type": "Model", + "format": "CKPT", + "pickleScanResult": "Success", + "pickleScanMessage": "No Pickle imports", + "virusScanResult": "Success", + "scannedAt": "2023-02-06T13:55:58.281Z", + "hashes": { + "AutoV2": "31E35C80FC", + "SHA256": "31E35C80FC4829D14F90153F4C74CD59C90B779F6AFE05A74CD6120B893F7E5B", + "CRC32": "31E35C80FC", + "BLAKE3": "31E35C80FC4829D14F90153F4C74CD59C90B779F6AFE05A74CD6120B893F7E5B" + }, + "downloadUrl": "https://huggingface.co/stabilityai/stable-diffusion-xl-base-1.0/resolve/main/sd_xl_base_1.0.safetensors", + "primary": true + }, + { + "name": "sd_xl_refiner_1.0.safetensors", + "id": 7, + "sizeKB": 6221261.130859375, + "type": "Model", + "format": "Safetensors", + "pickleScanResult": "Success", + "pickleScanMessage": "No Pickle imports", + "virusScanResult": "Success", + "scannedAt": "2023-02-06T13:55:58.281Z", + "hashes": { + "AutoV2": "7440042BBD", + "SHA256": "7440042BBDC8A24813002C09B6B69B64DC90FDED4472613437B7F55F9B7D9C5F", + "CRC32": "7440042BBD", + "BLAKE3": "7440042BBDC8A24813002C09B6B69B64DC90FDED4472613437B7F55F9B7D9C5F" + }, + "downloadUrl": "https://huggingface.co/stabilityai/stable-diffusion-xl-refiner-1.0/resolve/main/sd_xl_refiner_1.0.safetensors", + "primary": true + }, + { + "name": "sdxl_vae.safetensors", + "id": 7, + "sizeKB": 360126.130859375, + "type": "Model", + "format": "Safetensors", + "pickleScanResult": "Success", + "pickleScanMessage": "No Pickle imports", + "virusScanResult": "Success", + "scannedAt": "2023-02-06T13:55:58.281Z", + "hashes": { + "AutoV2": "551EAC7037", + "SHA256": "551EAC7037CE58DE1EF4447F16D48664C1E67F0E27AF50A06B1A6D458B571E0C", + "CRC32": "551EAC7037", + "BLAKE3": "551EAC7037CE58DE1EF4447F16D48664C1E67F0E27AF50A06B1A6D458B571E0C" + }, + "downloadUrl": "https://huggingface.co/stabilityai/sdxl-vae/resolve/main/sdxl_vae.safetensors", + "primary": true + } + ], + "images": [ + { + "url": "https://msdn.miaoshouai.com/msai/kt/ez/9900922.png" + } + ] + } + ] + }, + { + "id": 3, + "name": "VAE", + "description": "

Stable Diffusion is a latent text-to-image diffusion model capable of generating photo-realistic images given any text input. For more information about how Stable Diffusion functions, please have a look at \uD83E\uDD17's Stable Diffusion blog.\n\nThe Stable-Diffusion-v1-5 checkpoint was initialized with the weights of the Stable-Diffusion-v1-2 checkpoint and subsequently fine-tuned on 595k steps at resolution 512x512 on \"laion-aesthetics v2 5+\" and 10% dropping of the text-conditioning to improve classifier-free guidance sampling.\n\nYou can use this both with the \uD83E\uDDE8Diffusers library and the RunwayML GitHub repository.

", + "type": "VAE", + "poi": false, + "nsfw": false, + "allowNoCredit": true, + "allowCommercialUse": "Rent", + "allowDerivatives": true, + "allowDifferentLicense": true, + "stats": { + "downloadCount": 865, + "favoriteCount": 190, + "commentCount": 7, + "ratingCount": 2, + "rating": 5 + }, + "creator": { + "username": "creativeml-openrail-m", + "image": "https://huggingface.co/runwayml/stable-diffusion-v1-5" + }, + "tags": [], + "modelVersions": [ + { + "id": 3, + "modelId": 3, + "name": "VAE", + "createdAt": "2023-02-06T13:52:34.605Z", + "updatedAt": "2023-02-06T13:52:34.605Z", + "trainedWords": [], + "baseModel": "SD 1.5", + "earlyAccessTimeFrame": 0, + "description": "

", + "files": [ + { + "name": "vae-ft-ema-560000-ema-pruned.ckpt", + "id": 15, + "sizeKB": 447126.130859375, + "type": "Model", + "format": "CKPT", + "pickleScanResult": "Success", + "pickleScanMessage": "No Pickle imports", + "virusScanResult": "Success", + "scannedAt": "2023-02-06T13:55:58.281Z", + "hashes": { + "AutoV2": "833E816807", + "SHA256": "833E816807E8D3658EBC65436908F690603A8E0E8D26143A90050F32958C9E4E", + "CRC32": "87F68C12", + "BLAKE3": "7A28D3D22520D61B58338791522A14B7B33A6A9CE552FF7D68D7E2688CAB3266" + }, + "downloadUrl": "https://huggingface.co/stabilityai/sd-vae-ft-ema-original/resolve/main/vae-ft-ema-560000-ema-pruned.ckpt", + "primary": false + }, + { + "name": "vae-ft-mse-840000-ema-pruned.ckpt", + "id": 16, + "sizeKB": 447126.130859375, + "type": "Model", + "format": "CKPT", + "pickleScanResult": "Success", + "pickleScanMessage": "No Pickle imports", + "virusScanResult": "Success", + "scannedAt": "2023-02-06T13:55:58.281Z", + "hashes": { + "AutoV2": "833E816807", + "SHA256": "833E816807E8D3658EBC65436908F690603A8E0E8D26143A90050F32958C9E4E", + "CRC32": "87F68C12", + "BLAKE3": "7A28D3D22520D61B58338791522A14B7B33A6A9CE552FF7D68D7E2688CAB3266" + }, + "downloadUrl": "https://huggingface.co/stabilityai/sd-vae-ft-mse-original/resolve/main/vae-ft-mse-840000-ema-pruned.ckpt", + "primary": true + }, + { + "name": "Waifu-diffusion-v1-4 VAE", + "id": 17, + "sizeKB": 497126.130859375, + "type": "Model", + "format": "CKPT", + "pickleScanResult": "Success", + "pickleScanMessage": "No Pickle imports", + "virusScanResult": "Success", + "scannedAt": "2023-02-06T13:55:58.281Z", + "hashes": { + "SHA256": "DF3C506E51B7EE1D7B5A6A2BB7142D47D488743C96AA778AFB0F53A2CDC2D38D" + }, + "downloadUrl": "https://huggingface.co/hakurei/waifu-diffusion-v1-4/resolve/main/vae/kl-f8-anime2.ckpt", + "primary": false + }, + { + "name": "autoencoder_fix_kl-f8-trinart_chara", + "id": 18, + "sizeKB": 447126.130859375, + "type": "Model", + "format": "CKPT", + "pickleScanResult": "Success", + "pickleScanMessage": "No Pickle imports", + "virusScanResult": "Success", + "scannedAt": "2023-02-06T13:55:58.281Z", + "hashes": { + "AutoV2": "833E816807", + "SHA256": "833E816807E8D3658EBC65436908F690603A8E0E8D26143A90050F32958C9E4E", + "CRC32": "87F68C12", + "BLAKE3": "7A28D3D22520D61B58338791522A14B7B33A6A9CE552FF7D68D7E2688CAB3266" + }, + "downloadUrl": "https://huggingface.co/naclbit/trinart_characters_19.2m_stable_diffusion_v1/resolve/main/autoencoder_fix_kl-f8-trinart_characters.ckpt", + "primary": false + }, + { + "name": "Anything-V3.0.vae.pt", + "id": 19, + "sizeKB": 847126.130859375, + "type": "Model", + "format": "PT", + "pickleScanResult": "Success", + "pickleScanMessage": "No Pickle imports", + "virusScanResult": "Success", + "scannedAt": "2023-02-06T13:55:58.281Z", + "hashes": { + "AutoV2": "F921FB3F29", + "SHA256": "F921FB3F29891D2A77A6571E56B8B5052420D2884129517A333C60B1B4816CDF" + }, + "downloadUrl": "https://huggingface.co/Linaqruf/anything-v3.0/resolve/refs%2Fpr%2F11/Anything-V3.0.vae.pt", + "primary": false + }, + { + "name": "Berrymix VAE", + "id": 20, + "sizeKB": 447126.130859375, + "type": "Model", + "format": "Checkpoint", + "pickleScanResult": "Success", + "pickleScanMessage": "No Pickle imports", + "virusScanResult": "Success", + "scannedAt": "2023-02-06T13:55:58.281Z", + "hashes": { + "AutoV2": "F921FB3F29", + "SHA256": "F921FB3F29891D2A77A6571E56B8B5052420D2884129517A333C60B1B4816CDF" + }, + "downloadUrl": "https://huggingface.co/hakurei/waifu-diffusion-v1-4/resolve/main/vae/kl-f8-anime2.ckpt", + "primary": false + }, + { + "name": "sdxl_vae.safetensors", + "id": 7, + "sizeKB": 360126.130859375, + "type": "Model", + "format": "Safetensors", + "pickleScanResult": "Success", + "pickleScanMessage": "No Pickle imports", + "virusScanResult": "Success", + "scannedAt": "2023-02-06T13:55:58.281Z", + "hashes": { + "AutoV2": "551EAC7037", + "SHA256": "551EAC7037CE58DE1EF4447F16D48664C1E67F0E27AF50A06B1A6D458B571E0C", + "CRC32": "551EAC7037", + "BLAKE3": "551EAC7037CE58DE1EF4447F16D48664C1E67F0E27AF50A06B1A6D458B571E0C" + }, + "downloadUrl": "https://huggingface.co/stabilityai/sdxl-vae/resolve/main/sdxl_vae.safetensors", + "primary": true + } + ], + "images": [ + { + "url": "https://msdn.miaoshouai.com/msai/kt/ez/9900922.png" + } + ] + } + ] + } +] \ No newline at end of file diff --git a/miaoshouai-assistant-main/configs/settings.json b/miaoshouai-assistant-main/configs/settings.json new file mode 100644 index 0000000000000000000000000000000000000000..d578c6553d11674796cd2567a7e469431dd9a444 --- /dev/null +++ b/miaoshouai-assistant-main/configs/settings.json @@ -0,0 +1,20 @@ +{ + "boot_settings": { + "drp_args_vram": "CPU Only", + "drp_args_theme": "Dark Mode", + "txt_args_listen_port": "7860", + "Enable xFormers": "--xformers", + "No Half": "--no-half", + "No Half VAE": "False", + "Enable API": "--api", + "Auto Launch": "--autolaunch", + "Allow Local Network Access": "False", + "drp_choose_version": "Official Release", + "txt_args_more": "", + "auto_vram": true, + "disable_log_console_output": true, + "model_source": "liandange.com", + "my_model_source": "civitai.com", + "openai_api": "" + } +} \ No newline at end of file diff --git a/miaoshouai-assistant-main/configs/webui-macos-env.sh b/miaoshouai-assistant-main/configs/webui-macos-env.sh new file mode 100644 index 0000000000000000000000000000000000000000..37cac4fb02c5ea53fa270336729b90ac2ef3ac74 --- /dev/null +++ b/miaoshouai-assistant-main/configs/webui-macos-env.sh @@ -0,0 +1,19 @@ +#!/bin/bash +#################################################################### +# macOS defaults # +# Please modify webui-user.sh to change these instead of this file # +#################################################################### + +if [[ -x "$(command -v python3.10)" ]] +then + python_cmd="python3.10" +fi + +export install_dir="$HOME" +export COMMANDLINE_ARGS="--skip-torch-cuda-test --upcast-sampling --no-half-vae --use-cpu interrogate" +export TORCH_COMMAND="pip install torch==1.12.1 torchvision==0.13.1" +export K_DIFFUSION_REPO="https://github.com/brkirch/k-diffusion.git" +export K_DIFFUSION_COMMIT_HASH="51c9778f269cedb55a4d88c79c0246d35bdadb71" +export PYTORCH_ENABLE_MPS_FALLBACK=1 + +#################################################################### diff --git a/miaoshouai-assistant-main/configs/webui-user-launch.bat b/miaoshouai-assistant-main/configs/webui-user-launch.bat new file mode 100644 index 0000000000000000000000000000000000000000..ef0552f3ca69a7ab8a6191ee62118de737f55865 --- /dev/null +++ b/miaoshouai-assistant-main/configs/webui-user-launch.bat @@ -0,0 +1,10 @@ +echo off +set GIT_PYTHON_GIT_EXECUTABLE=git\\bin\\git.exe + +echo AIԴվ +echo http://resource.miaoshouai.com ȡԴ +set GIT_PYTHON_REFRESH=quiet +call update.bat + +python\python.exe webui.py --autolaunch --api --xformers --medvram --deepdanbooru +pause \ No newline at end of file diff --git a/miaoshouai-assistant-main/configs/webui-user.sh b/miaoshouai-assistant-main/configs/webui-user.sh new file mode 100644 index 0000000000000000000000000000000000000000..5f2a7dd57b11fd77c641a0023a1d9b82ab50281b --- /dev/null +++ b/miaoshouai-assistant-main/configs/webui-user.sh @@ -0,0 +1,47 @@ +#!/bin/bash +######################################################### +# Uncomment and change the variables below to your need:# +######################################################### + +# Install directory without trailing slash +#install_dir="/home/$(whoami)" + +# Name of the subdirectory +#clone_dir="stable-diffusion-webui" + +# Commandline arguments for webui.py, for example: export COMMANDLINE_ARGS="--medvram --opt-split-attention" +# uncomment the line below based on https://github.com/AUTOMATIC1111/stable-diffusion-webui/wiki/Installation-on-Apple-Silicon +export COMMANDLINE_ARGS="--skip-torch-cuda-test --no-half --use-cpu all" + +# python3 executable +#python_cmd="python3" + +# git executable +#export GIT="git" + +# python3 venv without trailing slash (defaults to ${install_dir}/${clone_dir}/venv) +#venv_dir="venv" + +# script to launch to start the app +#export LAUNCH_SCRIPT="launch.py" + +# install command for torch +#export TORCH_COMMAND="pip install torch==1.12.1+cu113 --extra-index-url https://download.pytorch.org/whl/cu113" + +# Requirements file to use for stable-diffusion-webui +#export REQS_FILE="requirements_versions.txt" + +# Fixed git repos +#export K_DIFFUSION_PACKAGE="" +#export GFPGAN_PACKAGE="" + +# Fixed git commits +#export STABLE_DIFFUSION_COMMIT_HASH="" +#export TAMING_TRANSFORMERS_COMMIT_HASH="" +#export CODEFORMER_COMMIT_HASH="" +#export BLIP_COMMIT_HASH="" + +# Uncomment to enable accelerated launch +#export ACCELERATE="True" + +########################################### diff --git a/miaoshouai-assistant-main/install.py b/miaoshouai-assistant-main/install.py new file mode 100644 index 0000000000000000000000000000000000000000..589a47197bc0ee8169c28a3ece26ab585a1e3feb --- /dev/null +++ b/miaoshouai-assistant-main/install.py @@ -0,0 +1,31 @@ +import launch +import os +import gzip +import io +import git +import shutil + +def install_preset_models_if_needed(): + assets_folder = os.path.join(os.path.dirname(os.path.realpath(__file__)), "assets") + configs_folder = os.path.join(os.path.dirname(os.path.realpath(__file__)), "configs") + + for model_filename in ["civitai_models.json", "liandange_models.json", "gpt_index.json"]: + gzip_file = os.path.join(assets_folder, f"{model_filename}.gz") + target_file = os.path.join(configs_folder, f"{model_filename}") + if not os.path.exists(target_file): + with gzip.open(gzip_file, "rb") as compressed_file: + with io.TextIOWrapper(compressed_file, encoding="utf-8") as decoder: + content = decoder.read() + with open(target_file, "w") as model_file: + model_file.write(content) + +req_file = os.path.join(os.path.dirname(os.path.realpath(__file__)), "requirements.txt") + +with open(req_file) as file: + for lib in file: + lib = lib.strip() + if not launch.is_installed(lib): + launch.run_pip(f"install {lib}", f"Miaoshou assistant requirement: {lib}") + +install_preset_models_if_needed() + diff --git a/miaoshouai-assistant-main/requirements.txt b/miaoshouai-assistant-main/requirements.txt new file mode 100644 index 0000000000000000000000000000000000000000..75ceccc3324c0bdbd52e07f19aae6d9cc214a41a --- /dev/null +++ b/miaoshouai-assistant-main/requirements.txt @@ -0,0 +1,8 @@ +psutil +rehash +tqdm +openai +numba +gpt_index==0.4.24 +langchain==0.0.132 +gradio_client==0.2.7 \ No newline at end of file diff --git a/miaoshouai-assistant-main/scripts/assistant/__init__.py b/miaoshouai-assistant-main/scripts/assistant/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..bf393efc7ee6015f8076f3ce7739143f58642654 --- /dev/null +++ b/miaoshouai-assistant-main/scripts/assistant/__init__.py @@ -0,0 +1 @@ +__all__ = ["miaoshou"] diff --git a/miaoshouai-assistant-main/scripts/assistant/miaoshou.py b/miaoshouai-assistant-main/scripts/assistant/miaoshou.py new file mode 100644 index 0000000000000000000000000000000000000000..def205d250e4ebf706dea01d676913af08dd9867 --- /dev/null +++ b/miaoshouai-assistant-main/scripts/assistant/miaoshou.py @@ -0,0 +1,462 @@ +import os +import sys +import typing as t + +import gradio as gr +from modules.sd_models import CheckpointInfo +from modules.call_queue import wrap_queued_call +import launch +import modules +from modules import shared +from scripts.msai_logging.msai_logger import Logger +from scripts.runtime.msai_prelude import MiaoshouPrelude +from scripts.runtime.msai_runtime import MiaoshouRuntime +import modules.generation_parameters_copypaste as parameters_copypaste +from modules.ui_components import ToolButton + + +class MiaoShouAssistant(object): + # default css definition + default_css = '#my_model_cover{width: 100px;} #my_model_trigger_words{width: 200px;}' + + def __init__(self) -> None: + self.logger = Logger() + self.prelude = MiaoshouPrelude() + self.runtime = MiaoshouRuntime() + self.refresh_symbol = '\U0001f504' + self.coffee_symbol = '\U0001f9cb' # 🧋 + self.folder_symbol = '\U0001f4c2' # 📂 + + def on_event_ui_tabs_opened(self) -> t.List[t.Optional[t.Tuple[t.Any, str, str]]]: + with gr.Blocks(analytics_enabled=False, css=MiaoShouAssistant.default_css) as miaoshou_assistant: + self.create_subtab_boot_assistant() + self.create_subtab_model_management() + self.create_subtab_model_download() + self.create_subtab_update() + + return [(miaoshou_assistant.queue(), "Miaoshou Assistant", "miaoshou_assistant")] + + def create_subtab_boot_assistant(self) -> None: + with gr.TabItem('Boot Assistant', elem_id="boot_assistant_tab") as boot_assistant: + with gr.Row(): + with gr.Column(elem_id="col_model_list"): + gpu, theme, port, chk_args, txt_args, webui_ver = self.runtime.get_default_args() + gr.Markdown(value="Argument settings") + with gr.Row(): + self.drp_gpu = gr.Dropdown(label="VRAM Size", elem_id="drp_args_vram", + choices=list(self.prelude.gpu_setting.keys()), + value=gpu, interactive=True) + self.drp_theme = gr.Dropdown(label="UI Theme", choices=list(self.prelude.theme_setting.keys()), + value=theme, + elem_id="drp_args_theme", interactive=True) + self.txt_listen_port = gr.Text(label='Listen Port', value=port, elem_id="txt_args_listen_port", + interactive=True) + + with gr.Row(): + + self.chk_group_args = gr.CheckboxGroup(choices=list(self.prelude.checkboxes.keys()), value=chk_args, + show_label=False) + self.additional_args = gr.Text(label='COMMANDLINE_ARGS (Divide by space)', value=txt_args, + elem_id="txt_args_more", interactive=True) + + with gr.Row(): + with gr.Column(): + txt_save_status = gr.Markdown(visible=False, interactive=False, show_label=False) + drp_choose_version = gr.Dropdown(label="WebUI Version", + choices=['Official Release', 'Python Integrated'], + value=webui_ver, elem_id="drp_args_version", + interactive=True) + gr.HTML( + '

*Save your settings to webui-user.bat file. Use Python Integrated only if your' + ' WebUI is extracted from a zip file and does not need python installation

') + save_settings = gr.Button(value="Save Boot Settings", elem_id="btn_arg_save_setting") + + with gr.Row(): + # with gr.Column(): + # settings_submit = gr.Button(value="Apply settings", variant='primary', elem_id="ms_settings_submit") + # with gr.Column(): + btn_apply = gr.Button(value='Apply Settings', variant='primary', + elem_id="ms_settings_restart_gradio") + restart_gradio = gr.Button(value='Restart WebUI', variant='primary', + elem_id="ms_settings_restart_gradio") + + '''def mod_args(drp_gpu, drp_theme, txt_listen_port, chk_group_args, additional_args): + global commandline_args + + get_final_args(drp_gpu, drp_theme, txt_listen_port, hk_group_args, additional_args) + + print(commandline_args) + print(sys.argv) + #if '--xformers' not in sys.argv: + #sys.argv.append('--xformers') + + settings_submit.click(mod_args, inputs=[drp_gpu, drp_theme, txt_listen_port, chk_group_args, additional_args], outputs=[])''' + + save_settings.click(self.runtime.change_boot_setting, + inputs=[drp_choose_version, self.drp_gpu, self.drp_theme, self.txt_listen_port, self.chk_group_args, + self.additional_args], outputs=[txt_save_status]) + btn_apply.click( + self.save_cmdline_args, + inputs=[self.drp_gpu, self.drp_theme, self.txt_listen_port, self.chk_group_args, + self.additional_args], + outputs=[txt_save_status], + ) + + def request_restart(): + shared.state.interrupt() + shared.state.need_restart = True + launch.prepare_environment() + #launch.start() + + restart_gradio.click( + request_restart, + _js='restart_reload', + inputs=[], + outputs=[], + ) + + with gr.Column(): + with gr.Row(): + machine_settings = self.prelude.get_sys_info() + txt_sys_info = gr.TextArea(value=machine_settings, lines=20, max_lines=20, + label="System Info", + show_label=False, interactive=False) + with gr.Row(): + sys_info_refbtn = gr.Button(value="Refresh") + + with gr.Row(): + md_vram_release = gr.Markdown(visible=False, interactive=False, value='Memory Released', show_label=False) + with gr.Row(): + chk_auto_release = gr.Checkbox(value=self.prelude.boot_settings['auto_vram'], label='Enable Auto Memory Release') + reload_button = gr.Button('Forc VRAM Release') + + + self.drp_gpu.change(self.runtime.update_xformers, inputs=[self.drp_gpu, self.chk_group_args], outputs=[self.chk_group_args]) + sys_info_refbtn.click(self.prelude.get_sys_info, None, txt_sys_info) + chk_auto_release.change(self.runtime.change_auto_vram, inputs=[chk_auto_release]) + reload_button.click(self.runtime.force_mem_release, outputs=[md_vram_release]) + + def create_subtab_model_management(self) -> None: + with gr.TabItem('Model Management', elem_id="model_management_tab") as tab_model_manager: + with gr.Row(): + with gr.Column(): + with gr.Row(): + gr.Markdown(value="If you want your model directory to be other than [your_webui_dir]\\models, select a new directory down below. " + "Your default models directory needs to be removed first before you apply. Make sure do your backups!") + md_result = gr.Markdown(visible=False, value="") + with gr.Row(): + model_folder_path = gr.Textbox("", label="Model path", placeholder="Copy & paste your model destination folder here", interactive=True) + #open_folder_button = ToolButton(value=self.folder_symbol, elem_id="hidden_element" if shared.cmd_opts.hide_ui_dir_config else "open_folder_metadata_editor") + refresh_models_button = ToolButton(value=self.refresh_symbol, elem_id="hidden_element") + with gr.Row(): + btn_connect_modeldir = gr.Button(value="Apply Virtual Model Folder") + + with gr.Row().style(equal_height=True): + my_search_text = gr.Textbox( + label="Model name", + show_label=False, + max_lines=1, + placeholder="Enter model name", + ) + btn_my_search = gr.Button("Search") + + with gr.Row(): + my_model_source_dropdown = gr.Dropdown( + choices=["civitai.com", "liandange.com"], + value=self.runtime.my_model_source, + label="Select Model Source", + type="value", + show_label=True, + elem_id="my_model_source").style(full_width=False) + + mtypes = list(self.prelude.model_type.keys()) + my_model_type = gr.Radio(mtypes, + show_label=False, value='Checkpoint', elem_id="my_model_type", + interactive=True).style(full_width=True) + + with gr.Row(): + my_models = self.runtime.get_local_models('', my_model_type.value) + self.runtime.ds_my_models = gr.Dataset( + components=[gr.Image(visible=False, label='Cover', elem_id='my_model_cover'), + gr.Textbox(visible=False, label='ModelId'), + gr.Textbox(visible=False, label='Name/Version'), + gr.Textbox(visible=False, label='File Name')], + elem_id='my_model_lib', + label="My Models", + headers=None, + samples=my_models, + samples_per_page=50) + with gr.Column(): + self.runtime.ds_my_model_covers = gr.Dataset(components=[gr.HTML(visible=False)], + elem_id='my_model_covers', + label="Model Cover", + headers=None, + samples=[], + samples_per_page=10) + with gr.Row(variant='panel'): + c_image = gr.Image(elem_id="pnginfo_image", label="Source", source="upload", interactive=True, + type="pil", visible=True) + + with gr.Row(variant='panel'): + with gr.Column(): + + btn_load_model = gr.HTML( + value=f'
Load Model
', + visible=True) + with gr.Column(): + btn_delete_model = gr.Button(visible=True, value='Delete Model') + with gr.Column(): + with gr.Row(): + btn_set_all_covers = gr.Button(visible=True, value='Download Cover for Listed Models') + with gr.Row(): + btn_set_cover = gr.Button(visible=False, value='Set as Cover') + + with gr.Row(variant='panel'): + generation_info = gr.Textbox(label='prompt', interactive=False, visible=True, elem_id="imginfo_generation_info") + with gr.Row(variant='panel'): + display_text = 'Select a model and type some text here, ChatGPT will generate prompt for you. Supports different text in different languages.' + display_value = '' + + if self.prelude.boot_settings['openai_api'] == '': + print('a') + display_text = 'Set your OpenAI api key in Setting & Update first: https://platform.openai.com/account/api-keys' + display_value = display_text + + self.txt_main_prompt = gr.Textbox(label='Let ChatGPT write your prompt', placeholder=display_text, value=display_value, interactive=True, visible=True, elem_id="txt_main_prompt") + with gr.Row(variant='panel'): + with gr.Row(): + btn_generate_prompt = gr.Button(value="Use GPT to Generate Prompt") + with gr.Row(): + buttons = parameters_copypaste.create_buttons(["txt2img", "img2img", "inpaint", "extras"]) + + for tabname, button in buttons.items(): + parameters_copypaste.register_paste_params_button(parameters_copypaste.ParamBinding( + paste_button=button, tabname=tabname, source_text_component=generation_info, + source_image_component=c_image, + )) + + with gr.Row(variant='panel'): + html_my_model = gr.HTML(visible=False) + + btn_delete_model.click(self.runtime.delete_model, inputs=[self.runtime.ds_my_models, my_search_text, my_model_type], outputs=[self.runtime.ds_my_models]) + btn_set_all_covers.click(self.runtime.set_all_covers, inputs=[my_search_text, my_model_type], outputs=[self.runtime.ds_my_models]) + btn_set_cover.click(self.runtime.set_cover, inputs=[self.runtime.ds_my_models, c_image, my_search_text, my_model_type], outputs=[self.runtime.ds_my_models]) + #open_folder_button.click(self.runtime.open_folder, inputs=[model_folder_path], outputs=[model_folder_path]) + btn_connect_modeldir.click(self.runtime.change_model_folder, inputs=[model_folder_path], outputs=[md_result]) + refresh_models_button.click(self.runtime.refresh_local_models, inputs=[my_search_text, my_model_type], outputs=[self.runtime.ds_my_models]) + my_model_source_dropdown.change(self.switch_my_model_source, + inputs=[my_model_source_dropdown, my_model_type], + outputs=[self.runtime.ds_my_models]) + + btn_my_search.click(self.runtime.search_my_model, inputs=[my_search_text, my_model_type], outputs=[self.runtime.ds_my_models]) + my_model_type.change(self.runtime.update_my_model_type, inputs=[my_search_text, my_model_type], outputs=[self.runtime.ds_my_models]) + btn_generate_prompt.click(self.runtime.get_gpt_prompt, inputs=[self.runtime.ds_my_models, my_model_type, self.txt_main_prompt], outputs=[generation_info]) + + self.runtime.ds_my_models.click(self.runtime.get_my_model_covers, + inputs=[self.runtime.ds_my_models, my_model_type], + outputs=[self.runtime.ds_my_model_covers, html_my_model, btn_load_model]) + + self.runtime.ds_my_model_covers.click(self.runtime.update_cover_info, + inputs=[self.runtime.ds_my_models, self.runtime.ds_my_model_covers], + outputs=[btn_set_cover, generation_info, c_image]) + + + + def tab_model_manager_select(): + self.runtime.active_model_set = 'my_model_set' + + tab_model_manager.select(tab_model_manager_select, inputs=[], outputs=[]) + + + def create_subtab_model_download(self) -> None: + with gr.TabItem('Model Download', elem_id="model_download_tab") as tab_downloads: + with gr.Row(): + with gr.Column(elem_id="col_model_list"): + with gr.Row().style(equal_height=True): + model_source_dropdown = gr.Dropdown(choices=["civitai.com", "liandange.com", "official_models", 'hugging_face', "controlnet"], + value=self.runtime.model_source, + label="Select Model Source", + type="value", + show_label=True, + elem_id="model_source").style(full_width=True) + + #btn_fetch = gr.Button("Fetch") + + with gr.Row().style(equal_height=True): + search_text = gr.Textbox( + label="Model name", + show_label=False, + max_lines=1, + placeholder="Enter model name", + ) + btn_search = gr.Button("Search") + + with gr.Row().style(equal_height=True): + nsfw_checker = gr.Checkbox(label='NSFW', value=False, elem_id="chk_nsfw", interactive=True) + model_type = gr.Radio(["All"] + list(self.prelude.model_type.keys()), + show_label=False, value='All', elem_id="rad_model_type", + interactive=True).style(full_width=True) + + images = self.runtime.get_images_html() + self.runtime.ds_models = gr.Dataset( + components=[gr.HTML(visible=False)], + headers=None, + type="values", + label="Models", + samples=images, + samples_per_page=60, + elem_id="model_dataset").style(type="gallery", container=True) + + with gr.Column(elem_id="col_model_info"): + with gr.Row(): + self.runtime.ds_cover_gallery = gr.Dataset( + components=[gr.HTML(visible=False)], + headers=None, + type="values", + label="Cover", + samples=[], + samples_per_page=10, + elem_id="ds_cover_gallery").style(type="gallery", container=True) + + with gr.Row(): + with gr.Column(): + download_summary = gr.HTML('
No downloading tasks ongoing
') + downloading_status = gr.Button(value=f"{self.refresh_symbol} Refresh Downloading Status", + elem_id="ms_dwn_status") + with gr.Row(): + model_dropdown = gr.Dropdown(choices=['Select Model'], label="Models", show_label=False, + value='Select Model', elem_id='ms_dwn_button', + interactive=True) + + is_civitai_model_source_active = self.runtime.model_source == "civitai.com" + with gr.Row(variant="panel"): + dwn_button = gr.Button(value='Download', + visible=is_civitai_model_source_active, elem_id='ms_dwn_button') + open_url_in_browser_newtab_button = gr.HTML( + value='', + visible=not is_civitai_model_source_active) + with gr.Row(): + model_info = gr.HTML(visible=True) + + nsfw_checker.change(self.runtime.set_nsfw, inputs=[search_text, nsfw_checker, model_type], + outputs=self.runtime.ds_models) + + model_type.change(self.runtime.search_model, inputs=[search_text, nsfw_checker, model_type], outputs=self.runtime.ds_models) + + #btn_fetch.click(self.runtime.refresh_all_models, inputs=[], outputs=self.runtime.ds_models) + + btn_search.click(self.runtime.search_model, inputs=[search_text, nsfw_checker, model_type], outputs=self.runtime.ds_models) + + self.runtime.ds_models.click(self.runtime.get_model_info, + inputs=[self.runtime.ds_models], + outputs=[ + self.runtime.ds_cover_gallery, + model_dropdown, + model_info, + open_url_in_browser_newtab_button + ]) + + dwn_button.click(self.runtime.download_model, inputs=[model_dropdown], outputs=[download_summary]) + downloading_status.click(self.runtime.get_downloading_status, inputs=[], outputs=[download_summary]) + + model_source_dropdown.change(self.switch_model_source, + inputs=[model_source_dropdown], + outputs=[self.runtime.ds_models, dwn_button, open_url_in_browser_newtab_button]) + + def tab_downloads_select(): + self.runtime.active_model_set = 'model_set' + + tab_downloads.select(tab_downloads_select, inputs=[], outputs=[]) + + def create_subtab_update(self) -> None: + with gr.TabItem('Setting & Update', elem_id="about_update") as tab_update: + with gr.Row(): + md_api_res = gr.Markdown(visible=False) + with gr.Row(): + if self.prelude.boot_settings['openai_api'] == '': + display_text = 'Enter you OpenAI API Key here, you can get it from https://platform.openai.com/account/api-keys' + else: + display_text = self.prelude.boot_settings['openai_api'] + txt_gptapi = gr.Textbox(label='OpenAI API Key', value=display_text) + with gr.Row(): + btn_update_gptapi = gr.Button(value="Update API Key") + with gr.Row(): + txt_update_result = gr.Markdown(visible=False) + with gr.Row(): + btn_check_update = gr.Button(value="Check for Update") + with gr.Row(): + chk_dont_update_ms = gr.Checkbox(visible=False, label="Do not update model source", value=False) + btn_update = gr.Button(visible=False, value="Update Miaoshouai Assistant") + with gr.Row(): + gr.Markdown(value="About") + with gr.Row(): + gr.HTML( + f""" +

+ This extension is created to improve some of the use experience for automatic1111 webui.
+ It is free of charge, use it as you wish, please DO NOT sell this extension.
+ Follow us on github, discord and give us suggestions, report bugs. support us with love or coffee~

+ Cheers~

+

+ MiaoshouAI GitHub + Discord server + 【QQ群:256734228】 +

+ + """ + ) + + btn_check_update.click(self.runtime.check_update, inputs=[], outputs=[txt_update_result, chk_dont_update_ms, btn_update]) + btn_update_gptapi.click(self.runtime.update_gptapi, inputs=[txt_gptapi], outputs=[md_api_res, self.txt_main_prompt]) + btn_update.click(self.runtime.update_program, inputs=[chk_dont_update_ms], outputs=[txt_update_result]) + + def save_cmdline_args(self, drp_gpu, drp_theme, txt_listen_port, chk_group_args, additional_args): + #print(drp_gpu, drp_theme, txt_listen_port, chk_group_args, additional_args) + self.runtime.get_final_args(drp_gpu, drp_theme, txt_listen_port, chk_group_args, additional_args) + #print('request_restart: cmd_arg = ', self.runtime.cmdline_args) + #print('request_restart: sys.argv = ', sys.argv) + + # reset args + sys.argv = [sys.argv[0]] + os.environ['COMMANDLINE_ARGS'] = "" + #print('remove', sys.argv) + + for arg in list(dict.fromkeys(self.runtime.cmdline_args)): + sys.argv.append(arg) + + print('saved args', sys.argv) + #launch.start() + return gr.Markdown.update(value="Settings Saved", visible=True) + + def switch_model_source(self, new_model_source: str): + self.runtime.model_source = new_model_source + show_download_button = self.runtime.model_source != "liandange.com" + images = self.runtime.get_images_html() + self.runtime.ds_models.samples = images + + if self.runtime.model_source not in ['official_models', 'hugging_face', 'controlnet']: + self.runtime.update_boot_setting('model_source', self.runtime.model_source) + + return ( + gr.Dataset.update(samples=images), + gr.Button.update(visible=show_download_button), + gr.HTML.update(visible=not show_download_button) + ) + + def switch_my_model_source(self, new_model_source: str, model_type): + self.runtime.my_model_source = new_model_source + my_models = self.runtime.get_local_models('', model_type) + self.runtime.ds_my_models.samples = my_models + + if self.runtime.my_model_source not in ['official_models', 'hugging_face', 'controlnet']: + self.runtime.update_boot_setting('my_model_source', self.runtime.my_model_source) + + return gr.Dataset.update(samples=my_models) + + def introception(self) -> None: + self.runtime.introception() + + diff --git a/miaoshouai-assistant-main/scripts/download/__init__.py b/miaoshouai-assistant-main/scripts/download/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..8ce63852777d44042e4f133436160d2639d6caf9 --- /dev/null +++ b/miaoshouai-assistant-main/scripts/download/__init__.py @@ -0,0 +1 @@ +__all__ = ["msai_downloader_manager"] diff --git a/miaoshouai-assistant-main/scripts/download/msai_downloader_manager.py b/miaoshouai-assistant-main/scripts/download/msai_downloader_manager.py new file mode 100644 index 0000000000000000000000000000000000000000..242a9e219ecefe289089bb0592a42f52b872ae2e --- /dev/null +++ b/miaoshouai-assistant-main/scripts/download/msai_downloader_manager.py @@ -0,0 +1,251 @@ +import asyncio +import os.path +import queue +import time +import requests +import typing as t +from threading import Thread, Lock + +from scripts.download.msai_file_downloader import MiaoshouFileDownloader +from scripts.msai_logging.msai_logger import Logger +from scripts.msai_utils.msai_singleton import MiaoshouSingleton +import scripts.msai_utils.msai_toolkit as toolkit +from urllib.request import Request, urlopen + + +class DownloadingEntry(object): + def __init__(self, target_url: str = None, local_file: str = None, + local_directory: str = None, estimated_total_size: float = 0., expected_checksum: str = None): + self._target_url = target_url + self._local_file = local_file + self._local_directory = local_directory + self._expected_checksum = expected_checksum + + self._estimated_total_size = estimated_total_size + self._total_size = 0 + self._downloaded_size = 0 + + self._downloading = False + self._failure = False + + @property + def target_url(self) -> str: + return self._target_url + + @property + def local_file(self) -> str: + return self._local_file + + @property + def local_directory(self) -> str: + return self._local_directory + + @property + def expected_checksum(self) -> str: + return self._expected_checksum + + @property + def total_size(self) -> int: + return self._total_size + + @total_size.setter + def total_size(self, sz: int) -> None: + self._total_size = sz + + @property + def downloaded_size(self) -> int: + return self._downloaded_size + + @downloaded_size.setter + def downloaded_size(self, sz: int) -> None: + self._downloaded_size = sz + + @property + def estimated_size(self) -> float: + return self._estimated_total_size + + def is_downloading(self) -> bool: + return self._downloading + + def start_download(self) -> None: + self._downloading = True + + def update_final_status(self, result: bool) -> None: + self._failure = (result is False) + self._downloading = False + + def is_failure(self) -> bool: + return self._failure + + +class AsyncLoopThread(Thread): + def __init__(self): + super(AsyncLoopThread, self).__init__(daemon=True) + self.loop = asyncio.new_event_loop() + self.logger = Logger() + self.logger.info("looper thread is created") + + def run(self): + asyncio.set_event_loop(self.loop) + self.logger.info("looper thread is running") + self.loop.run_forever() + + +class MiaoshouDownloaderManager(metaclass=MiaoshouSingleton): + _downloading_entries: t.Dict[str, DownloadingEntry] = None + + def __init__(self): + if self._downloading_entries is None: + self._downloading_entries = {} + self.message_queue = queue.Queue() + + self.logger = Logger() + self.looper = AsyncLoopThread() + self.looper.start() + self.logger.info("download manager is ready") + self._mutex = Lock() + + def consume_all_ready_messages(self) -> None: + """ + capture all enqueued messages, this method should not be used if you are iterating over the message queue + :return: + None + :side-effect: + update downloading entries' status + """ + while True: + # self.logger.info("fetching the enqueued message") + try: + (aurl, finished_size, total_size) = self.message_queue.get(block=False, timeout=0.2) + # self.logger.info(f"[+] message ([{finished_size}/{total_size}] {aurl}") + try: + self._mutex.acquire(blocking=True) + self._downloading_entries[aurl].total_size = total_size + self._downloading_entries[aurl].downloaded_size = finished_size + finally: + self._mutex.release() + except queue.Empty: + break + + def iterator(self) -> t.Tuple[float, float]: + + while True: + self.logger.info("waiting for incoming message") + + try: + (aurl, finished_size, total_size) = self.message_queue.get(block=True) + self.logger.info(f"[+] message ([{finished_size}/{total_size}] {aurl}") + try: + self._mutex.acquire(blocking=True) + self._downloading_entries[aurl].total_size = total_size + self._downloading_entries[aurl].downloaded_size = finished_size + + tasks_total_size = 0. + tasks_finished_size = 0. + + for e in self._downloading_entries.values(): + tasks_total_size += e.total_size + tasks_finished_size += e.downloaded_size + + yield tasks_finished_size, tasks_total_size + finally: + self._mutex.release() + except queue.Empty: + if len(asyncio.all_tasks(self.looper.loop)) == 0: + self.logger.info("all downloading tasks finished") + break + + async def _submit_task(self, download_entry: DownloadingEntry) -> None: + try: + self._mutex.acquire(blocking=True) + if download_entry.target_url in self._downloading_entries: + self.logger.warn(f"{download_entry.target_url} is already downloading") + return + else: + download_entry.start_download() + self._downloading_entries[download_entry.target_url] = download_entry + finally: + self._mutex.release() + + file_downloader = MiaoshouFileDownloader( + target_url=download_entry.target_url, + local_file=download_entry.local_file, + local_directory=download_entry.local_directory, + channel=self.message_queue if download_entry.estimated_size else None, + estimated_total_length=download_entry.estimated_size, + expected_checksum=download_entry.expected_checksum, + ) + + result: bool = await self.looper.loop.run_in_executor(None, file_downloader.download_file) + + try: + self._mutex.acquire(blocking=True) + self._downloading_entries[download_entry.target_url].update_final_status(result) + finally: + self._mutex.release() + + def download(self, source_url: str, target_file: str, estimated_total_size: float, + expected_checksum: str = None) -> None: + self.logger.info(f"start to download '{source_url}'") + + target_dir = os.path.dirname(target_file) + target_filename = os.path.basename(target_file) + download_entry = DownloadingEntry( + target_url=source_url, + local_file=target_filename, + local_directory=target_dir, + estimated_total_size=estimated_total_size, + expected_checksum=expected_checksum + ) + + asyncio.run_coroutine_threadsafe(self._submit_task(download_entry), self.looper.loop) + + def tasks_summary(self) -> t.Tuple[int, int, str]: + self.consume_all_ready_messages() + + total_tasks_num = 0 + ongoing_tasks_num = 0 + failed_tasks_num = 0 + + try: + description = "
" + self._mutex.acquire(blocking=True) + for name, entry in self._downloading_entries.items(): + if entry.estimated_size is None: + continue + + total_tasks_num += 1 + + if entry.total_size > 0.: + description += f"

{entry.local_file} ({toolkit.get_readable_size(entry.total_size)}) : " + else: + description += f"

{entry.local_file} ({toolkit.get_readable_size(entry.estimated_size)}) : " + + if entry.is_downloading(): + ongoing_tasks_num += 1 + finished_percent = entry.downloaded_size/entry.estimated_size * 100 + description += f'{round(finished_percent, 2)} %' + elif entry.is_failure(): + failed_tasks_num += 1 + description += 'failed!' + else: + description += 'finished' + description += "


" + finally: + self._mutex.release() + pass + + description += "
" + overall = f""" +

+ {ongoing_tasks_num} ongoing, + {total_tasks_num - ongoing_tasks_num - failed_tasks_num} finished, + {failed_tasks_num} failed. +

+
+
+ """ + + return ongoing_tasks_num, total_tasks_num, overall + description + + diff --git a/miaoshouai-assistant-main/scripts/download/msai_file_downloader.py b/miaoshouai-assistant-main/scripts/download/msai_file_downloader.py new file mode 100644 index 0000000000000000000000000000000000000000..fea928c650a8f361ccece3babea60ce890087243 --- /dev/null +++ b/miaoshouai-assistant-main/scripts/download/msai_file_downloader.py @@ -0,0 +1,222 @@ +import os +import pickle +import queue +import time +import typing as t +from pathlib import Path +from urllib.parse import urlparse + +import rehash +import requests +from requests.adapters import HTTPAdapter +from tqdm import tqdm +from urllib3.util import Retry + +import scripts.msai_utils.msai_toolkit as toolkit +from scripts.msai_logging.msai_logger import Logger + + +class MiaoshouFileDownloader(object): + CHUNK_SIZE = 1024 * 1024 + + def __init__(self, target_url: str = None, + local_file: str = None, local_directory: str = None, estimated_total_length: float = 0., + expected_checksum: str = None, + channel: queue.Queue = None, + max_retries=5) -> None: + self.logger = Logger() + + self.target_url: str = target_url + self.local_file: str = local_file + self.local_directory = local_directory + self.expected_checksum = expected_checksum + self.max_retries = max_retries + + self.accept_ranges: bool = False + self.estimated_content_length = estimated_total_length + self.content_length: int = -1 + self.finished_chunk_size: int = 0 + + self.channel = channel # for communication + + # Support 3 retries and backoff + retry_strategy = Retry( + total=3, + backoff_factor=1, + status_forcelist=[429, 500, 502, 503, 504], + method_whitelist=["HEAD", "GET", "OPTIONS"] + ) + adapter = HTTPAdapter(max_retries=retry_strategy) + self.session = requests.Session() + self.session.mount("https://", adapter) + self.session.mount("http://", adapter) + + # inform message receiver at once + if self.channel: + self.channel.put_nowait(( + self.target_url, + self.finished_chunk_size, + self.estimated_content_length, + )) + + # Head request to get file-length and check whether it supports ranges. + def get_file_info_from_server(self, target_url: str) -> t.Tuple[bool, float]: + try: + headers = {"Accept-Encoding": "identity"} # Avoid dealing with gzip + response = requests.head(target_url, headers=headers, allow_redirects=True) + response.raise_for_status() + content_length = None + if "Content-Length" in response.headers: + content_length = int(response.headers['Content-Length']) + accept_ranges = (response.headers.get("Accept-Ranges") == "bytes") + return accept_ranges, float(content_length) + except Exception as ex: + self.logger.info(f"HEAD Request Error: {ex}") + return False, self.estimated_content_length + + def download_file_full(self, target_url: str, local_filepath: str) -> t.Optional[str]: + try: + checksum = rehash.sha256() + headers = {"Accept-Encoding": "identity"} # Avoid dealing with gzip + + with tqdm(total=self.content_length, unit="byte", unit_scale=1, colour="GREEN", + desc=os.path.basename(self.local_file)) as progressbar, \ + self.session.get(target_url, headers=headers, stream=True, timeout=5) as response, \ + open(local_filepath, 'wb') as file_out: + response.raise_for_status() + + for chunk in response.iter_content(MiaoshouFileDownloader.CHUNK_SIZE): + file_out.write(chunk) + checksum.update(chunk) + progressbar.update(len(chunk)) + self.update_progress(len(chunk)) + + except Exception as ex: + self.logger.info(f"Download error: {ex}") + return None + + return checksum.hexdigest() + + def download_file_resumable(self, target_url: str, local_filepath: str) -> t.Optional[str]: + # Always go off the checkpoint as the file was flushed before writing. + download_checkpoint = local_filepath + ".downloading" + try: + resume_point, checksum = pickle.load(open(download_checkpoint, "rb")) + assert os.path.exists(local_filepath) # catch checkpoint without file + self.logger.info("File already exists, resuming download.") + except Exception as e: + self.logger.error(f"failed to load downloading checkpoint - {download_checkpoint} due to {e}") + resume_point = 0 + checksum = rehash.sha256() + if os.path.exists(local_filepath): + os.remove(local_filepath) + Path(local_filepath).touch() + + assert (resume_point < self.content_length) + + self.finished_chunk_size = resume_point + + # Support resuming + headers = {"Range": f"bytes={resume_point}-", "Accept-Encoding": "identity"} + try: + with tqdm(total=self.content_length, unit="byte", unit_scale=1, colour="GREEN", + desc=os.path.basename(self.local_file)) as progressbar, \ + self.session.get(target_url, headers=headers, stream=True, timeout=5) as response, \ + open(local_filepath, 'r+b') as file_out: + response.raise_for_status() + self.update_progress(resume_point) + file_out.seek(resume_point) + + for chunk in response.iter_content(MiaoshouFileDownloader.CHUNK_SIZE): + file_out.write(chunk) + file_out.flush() + resume_point += len(chunk) + checksum.update(chunk) + pickle.dump((resume_point, checksum), open(download_checkpoint, "wb")) + progressbar.update(len(chunk)) + self.update_progress(len(chunk)) + + # Only remove checkpoint at full size in case connection cut + if os.path.getsize(local_filepath) == self.content_length: + os.remove(download_checkpoint) + else: + return None + + except Exception as ex: + self.logger.error(f"Download error: {ex}") + return None + + return checksum.hexdigest() + + def update_progress(self, finished_chunk_size: int) -> None: + self.finished_chunk_size += finished_chunk_size + + if self.channel: + self.channel.put_nowait(( + self.target_url, + self.finished_chunk_size, + self.content_length, + )) + + # In order to avoid leaving extra garbage meta files behind this + # will overwrite any existing files found at local_file. If you don't want this + # behaviour you can handle this externally. + # local_file and local_directory could write to unexpected places if the source + # is untrusted, be careful! + def download_file(self) -> bool: + success = False + try: + # Need to rebuild local_file_final each time in case of different urls + if not self.local_file: + specific_local_file = os.path.basename(urlparse(self.target_url).path) + else: + specific_local_file = self.local_file + + download_temp_dir = toolkit.get_user_temp_dir() + toolkit.assert_user_temp_dir() + + if self.local_directory: + os.makedirs(self.local_directory, exist_ok=True) + + specific_local_file = os.path.join(download_temp_dir, specific_local_file) + + self.accept_ranges, self.content_length = self.get_file_info_from_server(self.target_url) + self.logger.info(f"Accept-Ranges: {self.accept_ranges}. content length: {self.content_length}") + if self.accept_ranges and self.content_length: + download_method = self.download_file_resumable + self.logger.info("Server supports resume") + else: + download_method = self.download_file_full + self.logger.info(f"Server doesn't support resume.") + + for i in range(self.max_retries): + self.logger.info(f"Download Attempt {i + 1}") + checksum = download_method(self.target_url, specific_local_file) + if checksum: + match = "" + if self.expected_checksum: + match = ", Checksum Match" + + if self.expected_checksum and self.expected_checksum != checksum: + self.logger.info(f"Checksum doesn't match. Calculated {checksum} " + f"Expecting: {self.expected_checksum}") + else: + self.logger.info(f"Download successful{match}. Checksum {checksum}") + success = True + break + time.sleep(1) + + if success: + self.logger.info(f"{self.target_url} [DOWNLOADED COMPLETELY]") + if self.local_directory: + target_local_file = os.path.join(self.local_directory, self.local_file) + else: + target_local_file = self.local_file + toolkit.move_file(specific_local_file, target_local_file) + else: + self.logger.info(f"{self.target_url} [ FAILED ]") + + except Exception as ex: + self.logger.info(f"Unexpected Error: {ex}") # Only from block above + + return success diff --git a/miaoshouai-assistant-main/scripts/main.py b/miaoshouai-assistant-main/scripts/main.py new file mode 100644 index 0000000000000000000000000000000000000000..73d60979c881827b582e1eceb229f6f019e26cbb --- /dev/null +++ b/miaoshouai-assistant-main/scripts/main.py @@ -0,0 +1,27 @@ +import modules +import modules.scripts as scripts + +from scripts.assistant.miaoshou import MiaoShouAssistant +from scripts.runtime.msai_runtime import MiaoshouRuntime + + +class MiaoshouScript(scripts.Script): + def __init__(self) -> None: + super().__init__() + + def title(self): + return "Miaoshou Assistant" + + def show(self, is_img2img): + return scripts.AlwaysVisible + + def ui(self, is_img2img): + return () + + def postprocess(self, p, processed): + self.runtime = MiaoshouRuntime() + self.runtime.mem_release() + return None + +assistant = MiaoShouAssistant() +modules.script_callbacks.on_ui_tabs(assistant.on_event_ui_tabs_opened) diff --git a/miaoshouai-assistant-main/scripts/msai_logging/__init__.py b/miaoshouai-assistant-main/scripts/msai_logging/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..0e75e22f3d8c5e49b942c7030ba5360d7d8ce583 --- /dev/null +++ b/miaoshouai-assistant-main/scripts/msai_logging/__init__.py @@ -0,0 +1 @@ +__all__ = ["msai_logger"] diff --git a/miaoshouai-assistant-main/scripts/msai_logging/msai_logger.py b/miaoshouai-assistant-main/scripts/msai_logging/msai_logger.py new file mode 100644 index 0000000000000000000000000000000000000000..95dd71ff26b0c9f57958f06d9aef7ad4adf0500d --- /dev/null +++ b/miaoshouai-assistant-main/scripts/msai_logging/msai_logger.py @@ -0,0 +1,100 @@ +import datetime +import logging +import logging.handlers +import os +import typing as t + +from scripts.msai_utils.msai_singleton import MiaoshouSingleton + + +class Logger(metaclass=MiaoshouSingleton): + _dataset = None + + KEY_TRACE_PATH = "trace_path" + KEY_INFO = "info" + KEY_ERROR = "error" + KEY_JOB = "job" + + def _do_init(self, log_folder: str, disable_console_output: bool = False) -> None: + # Setup trace_path with empty string by default, it will be assigned with valid content if needed + self._dataset = {Logger.KEY_TRACE_PATH: ""} + + print(f"logs_location: {log_folder}") + os.makedirs(log_folder, exist_ok=True) + + # Setup basic logging configuration + logging.basicConfig(level=logging.INFO, + filemode='w', + format='%(asctime)s - %(filename)s [line:%(lineno)d] - %(levelname)s: %(message)s') + + # Setup info logging + self._dataset[Logger.KEY_INFO] = logging.getLogger(Logger.KEY_INFO) + msg_handler = logging.FileHandler(os.path.join(log_folder, "info.log"), + "a", + encoding="UTF-8") + msg_handler.setLevel(logging.INFO) + msg_handler.setFormatter( + logging.Formatter(fmt='%(asctime)s - %(filename)s [line:%(lineno)d] - %(levelname)s: %(message)s')) + self._dataset[Logger.KEY_INFO].addHandler(msg_handler) + + # Setup error logging + self._dataset[Logger.KEY_ERROR] = logging.getLogger(Logger.KEY_ERROR) + error_handler = logging.FileHandler( + os.path.join(log_folder, f'error_{datetime.date.today().strftime("%Y%m%d")}.log'), + mode="a", + encoding='UTF-8') + error_handler.setLevel(logging.ERROR) + error_handler.setFormatter( + logging.Formatter( + fmt=f"{self._dataset.get('trace_path')}:\n " + f"%(asctime)s - %(filename)s [line:%(lineno)d] - %(levelname)s: %(message)s")) + self._dataset[Logger.KEY_ERROR].addHandler(error_handler) + + # Setup job logging + self._dataset[Logger.KEY_JOB] = logging.getLogger(Logger.KEY_JOB) + job_handler = logging.FileHandler(os.path.join(log_folder, "jobs.log"), + mode="a", + encoding="UTF-8") + self._dataset[Logger.KEY_JOB].addHandler(job_handler) + + if disable_console_output: + for k in [Logger.KEY_INFO, Logger.KEY_JOB, Logger.KEY_ERROR]: + l: logging.Logger = self._dataset[k] + l.propagate = not disable_console_output + + def __init__(self, log_folder: str = None, disable_console_output: bool = False) -> None: + if self._dataset is None: + try: + self._do_init(log_folder=log_folder, disable_console_output=disable_console_output) + except Exception as e: + print(e) + + def update_path_info(self, current_path: str) -> None: + self._dataset[Logger.KEY_TRACE_PATH] = current_path + + def callback_func(self, exc_type: t.Any, exc_value: t.Any, exc_tracback: t.Any) -> None: + self._dataset[Logger.KEY_JOB].error(f"job failed for {self._dataset[Logger.KEY_TRACE_PATH]}") + self._dataset[Logger.KEY_INFO].error(f"{self._dataset[Logger.KEY_TRACE_PATH]}\n, callback_func: ", + exc_info=(exc_type, exc_value, exc_tracback)) + + def debug(self, fmt, *args, **kwargs) -> None: + l: logging.Logger = self._dataset[Logger.KEY_INFO] + l.debug(fmt, *args, **kwargs, stacklevel=2) + + def info(self, fmt, *args, **kwargs) -> None: + l: logging.Logger = self._dataset[Logger.KEY_INFO] + l.info(fmt, *args, **kwargs, stacklevel=2) + + def warn(self, fmt, *args, **kwargs) -> None: + l: logging.Logger = self._dataset[Logger.KEY_INFO] + l.warn(fmt, *args, **kwargs, stacklevel=2) + + def error(self, fmt, *args, **kwargs) -> None: + l: logging.Logger = self._dataset[Logger.KEY_ERROR] + l.error(fmt, *args, **kwargs, stacklevel=2) + + def job(self, fmt, *args, **kwargs) -> None: + l: logging.Logger = self._dataset[Logger.KEY_JOB] + l.info(fmt, *args, **kwargs, stacklevel=2) + + diff --git a/miaoshouai-assistant-main/scripts/msai_utils/__init__.py b/miaoshouai-assistant-main/scripts/msai_utils/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..474a79a1ac184fcf60ea98f2a6933cac98294e84 --- /dev/null +++ b/miaoshouai-assistant-main/scripts/msai_utils/__init__.py @@ -0,0 +1 @@ +__all__ = ["msai_singleton", "msai_toolkit"] diff --git a/miaoshouai-assistant-main/scripts/msai_utils/msai_singleton.py b/miaoshouai-assistant-main/scripts/msai_utils/msai_singleton.py new file mode 100644 index 0000000000000000000000000000000000000000..c2f831caa60e24706881859eda0034a8ff89fef9 --- /dev/null +++ b/miaoshouai-assistant-main/scripts/msai_utils/msai_singleton.py @@ -0,0 +1,8 @@ +class MiaoshouSingleton(type): + _instances = {} + + def __call__(cls, *args, **kwargs): + if cls not in cls._instances: + cls._instances[cls] = super(MiaoshouSingleton, cls).__call__(*args, **kwargs) + cls._instances[cls].__init__(*args, **kwargs) + return cls._instances[cls] diff --git a/miaoshouai-assistant-main/scripts/msai_utils/msai_toolkit.py b/miaoshouai-assistant-main/scripts/msai_utils/msai_toolkit.py new file mode 100644 index 0000000000000000000000000000000000000000..cda6706475783efcd1902f00cc32d7cdb33fa110 --- /dev/null +++ b/miaoshouai-assistant-main/scripts/msai_utils/msai_toolkit.py @@ -0,0 +1,88 @@ +import json +import os +import platform +import shutil +import typing as t +from datetime import datetime +from pathlib import Path + + +def read_json(file) -> t.Any: + try: + with open(file, "r", encoding="utf-8-sig") as f: + return json.load(f) + except Exception as e: + print(e) + return None + + +def write_json(file, content) -> None: + try: + with open(file, 'w') as f: + json.dump(content, f, indent=4) + except Exception as e: + print(e) + + +def get_args(args) -> t.List[str]: + parameters = [] + idx = 0 + for arg in args: + if idx == 0 and '--' not in arg: + pass + elif '--' in arg: + parameters.append(rf'{arg}') + idx += 1 + else: + parameters[idx - 1] = parameters[idx - 1] + ' ' + rf'{arg}' + + return parameters + + +def get_readable_size(size: int, precision=2) -> str: + if size is None: + return "" + + suffixes = ['B', 'KB', 'MB', 'GB', 'TB'] + suffixIndex = 0 + while size >= 1024 and suffixIndex < len(suffixes): + suffixIndex += 1 # increment the index of the suffix + size = size / 1024.0 # apply the division + return "%.*f%s" % (precision, size, suffixes[suffixIndex]) + + +def get_file_last_modified_time(path_to_file: str) -> datetime: + if path_to_file is None: + return datetime.now() + + if platform.system() == "Windows": + return datetime.fromtimestamp(os.path.getmtime(path_to_file)) + else: + stat = os.stat(path_to_file) + return datetime.fromtimestamp(stat.st_mtime) + + +def get_not_found_image_url() -> str: + return "https://msdn.miaoshouai.com/msdn/userimage/not-found.svg" + + +def get_user_temp_dir() -> str: + return os.path.join(Path.home().absolute(), ".miaoshou_assistant_download") + + +def assert_user_temp_dir() -> None: + os.makedirs(get_user_temp_dir(), exist_ok=True) + + +def move_file(src: str, dst: str) -> None: + if not src or not dst: + return + + if not os.path.exists(src): + return + + if os.path.exists(dst): + os.remove(dst) + + os.makedirs(os.path.dirname(dst), exist_ok=True) + shutil.move(src, dst) diff --git a/miaoshouai-assistant-main/scripts/runtime/__init__.py b/miaoshouai-assistant-main/scripts/runtime/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..fe306c75d656d4dfd07a934e1e0bb426fc56de23 --- /dev/null +++ b/miaoshouai-assistant-main/scripts/runtime/__init__.py @@ -0,0 +1,5 @@ +__all__ = ["msai_prelude", "msai_runtime"] + +from . import msai_prelude as prelude + +prelude.MiaoshouPrelude().load() diff --git a/miaoshouai-assistant-main/scripts/runtime/msai_prelude.py b/miaoshouai-assistant-main/scripts/runtime/msai_prelude.py new file mode 100644 index 0000000000000000000000000000000000000000..95ebced9bd352ddd3c428ae8636d4120c2db1253 --- /dev/null +++ b/miaoshouai-assistant-main/scripts/runtime/msai_prelude.py @@ -0,0 +1,209 @@ +import os +import platform +import sys +import typing as t + +import psutil +import torch + +import launch +from modules import shared +from scripts.msai_logging.msai_logger import Logger +from scripts.msai_utils import msai_toolkit as toolkit +from scripts.msai_utils.msai_singleton import MiaoshouSingleton +import modules + + +class MiaoshouPrelude(metaclass=MiaoshouSingleton): + _dataset = None + + def __init__(self) -> None: + # Potential race condition, not call in multithread environment + if MiaoshouPrelude._dataset is None: + self._init_constants() + + MiaoshouPrelude._dataset = { + "log_folder": os.path.join(self.ext_folder, "logs") + } + + disable_log_console_output: bool = False + if self.all_settings.get("boot_settings"): + if self.all_settings["boot_settings"].get("disable_log_console_output") is not None: + disable_log_console_output = self.all_settings["boot_settings"].get("disable_log_console_output") + + self._logger = Logger(self._dataset["log_folder"], disable_console_output=disable_log_console_output) + + def _init_constants(self) -> None: + self._api_url = { + "civitai.com": "https://model-share.com/v1/models", + "liandange.com": "https://model-api.liandange.com/model/api/models", + } + self._ext_folder = os.path.abspath(os.path.join(os.path.dirname(os.path.abspath(__file__)), "..", "..")) + self._setting_file = os.path.join(self.ext_folder, "configs", "settings.json") + self._model_hash_file = os.path.join(self.ext_folder, "configs", "model_hash.json") + self._gpt_index = os.path.join(self.ext_folder, "configs", "gpt_index.json") + self._assets_folder = os.path.join(self.ext_folder, "assets") + self._cache_folder = os.path.join(self.ext_folder, "cache") + self._cover_folder = os.path.join(self.ext_folder, "covers") + self._no_preview_img = os.path.join(modules.paths.script_path, "html", "card-no-preview.png") + self._model_json = { + 'civitai.com': os.path.join(self.ext_folder, 'configs', 'civitai_models.json'), + 'liandange.com': os.path.join(self.ext_folder, 'configs', 'liandange_models.json'), + 'official_models': os.path.join(self.ext_folder, 'configs', 'official_models.json'), + 'hugging_face': os.path.join(self.ext_folder, 'configs', 'hugging_face.json'), + 'controlnet': os.path.join(self.ext_folder, 'configs', 'controlnet.json') + } + self._checkboxes = { + 'Enable xFormers': '--xformers', + 'No Half': '--no-half', + 'No Half VAE': '--no-half-vae', + 'Enable API': '--api', + 'Auto Launch': '--autolaunch', + 'Allow Local Network Access': '--listen', + } + + self._gpu_setting = { + 'CPU Only': '--precision full --no-half --use-cpu SD GFPGAN BSRGAN ESRGAN SCUNet CodeFormer --all', + 'GTX 16xx': '--lowvram --xformers --precision full --no-half', + 'Low: 4-6G VRAM': '--xformers --lowvram', + 'Med: 6-8G VRAM': '--xformers --medvram', + 'Normal: 8+G VRAM': '', + } + + self._theme_setting = { + 'Auto': '', + 'Light Mode': '--theme light', + 'Dark Mode': '--theme dark', + } + self._ENV_EXCLUSION = ['COLAB_GPU', 'RUNPOD_POD_ID'] + self._model_type = {'Checkpoint': f'{os.path.join(shared.models_path,"Stable-diffusion")}', + 'LORA': f'{os.path.join(shared.models_path,"Lora")}', + 'LoCon': f'{os.path.join(shared.models_path, "LyCORIS")}', + "TextualInversion": f'{os.path.join(shared.script_path,"embeddings")}', + "Hypernetwork": f'{os.path.join(shared.models_path,"hypernetworks")}' + } + + self._gpt_type = ['gpt-3.5-turbo', 'text-davinci-003'] + + @property + def ext_folder(self) -> str: + return self._ext_folder + + @property + def log_folder(self) -> str: + return self._dataset.get("log_folder") + + @property + def all_settings(self) -> t.Any: + return toolkit.read_json(self._setting_file) + + @property + def boot_settings(self) -> t.Any: + all_setting = self.all_settings + if all_setting: + return all_setting['boot_settings'] + else: + return None + + def api_url(self, model_source: str) -> t.Optional[str]: + return self._api_url.get(model_source) + + @property + def setting_file(self) -> str: + return self._setting_file + + @property + def ENV_EXCLUSION(self) -> list[str]: + return self._ENV_EXCLUSION + + @property + def model_hash_file(self) -> str: + return self._model_hash_file + + @property + def gpt_index(self) -> str: + return self._gpt_index + + @property + def cache_folder(self) -> str: + return self._cache_folder + + @property + def assets_folder(self) -> str: + return self._assets_folder + + @property + def cover_folder(self) -> str: + return self._cover_folder + + @property + def no_preview_img(self) -> str: + return self._no_preview_img + + @property + def checkboxes(self) -> t.Dict[str, str]: + return self._checkboxes + + @property + def gpu_setting(self) -> t.Dict[str, str]: + return self._gpu_setting + + @property + def theme_setting(self) -> t.Dict[str, str]: + return self._theme_setting + + @property + def model_type(self) -> t.Dict[str, str]: + return self._model_type + + @property + def gpt_type(self) -> t.Dict[str, str]: + return self._gpt_type + + @property + def model_json(self) -> t.Dict[str, t.Any]: + return self._model_json + + def update_model_json(self, site: str, models: t.Dict[str, t.Any]) -> None: + if self._model_json.get(site) is None: + self._logger.error(f"cannot save model info for {site}") + return + + self._logger.info(f"{self._model_json[site]} updated") + toolkit.write_json(self._model_json[site], models) + + def load(self) -> None: + self._logger.info("start to do prelude") + self._logger.info(f"cmdline args: {' '.join(sys.argv[1:])}") + + @classmethod + def get_sys_info(cls) -> str: + sys_info = 'System Information\n\n' + + sys_info += r'OS Name: {0} {1}'.format(platform.system(), platform.release()) + '\n' + sys_info += r'OS Version: {0}'.format(platform.version()) + '\n' + sys_info += r'WebUI Version: {0}'.format( + f'https://github.com/AUTOMATIC1111/stable-diffusion-webui/commit/{launch.commit_hash()}') + '\n' + sys_info += r'Torch Version: {0}'.format(getattr(torch, '__long_version__', torch.__version__)) + '\n' + sys_info += r'Python Version: {0}'.format(sys.version) + '\n\n' + sys_info += r'CPU: {0}'.format(platform.processor()) + '\n' + sys_info += r'CPU Cores: {0}/{1}'.format(psutil.cpu_count(logical=False), psutil.cpu_count(logical=True)) + '\n' + + try: + sys_info += r'CPU Frequency: {0} GHz'.format(round(psutil.cpu_freq().max/1000,2)) + '\n' + except Exception as e: + sys_info += r'CPU Frequency: N/A GHz' + '\n' + + sys_info += r'CPU Usage: {0}%'.format(psutil.cpu_percent()) + '\n\n' + sys_info += r'RAM: {0}'.format(toolkit.get_readable_size(psutil.virtual_memory().total)) + '\n' + sys_info += r'Memory Usage: {0}%'.format(psutil.virtual_memory().percent) + '\n\n' + for i in range(torch.cuda.device_count()): + sys_info += r'Graphics Card{0}: {1} ({2})'.format(i, torch.cuda.get_device_properties(i).name, + toolkit.get_readable_size( + torch.cuda.get_device_properties( + i).total_memory)) + '\n' + sys_info += r'Available VRAM: {0}'.format(toolkit.get_readable_size(torch.cuda.mem_get_info(i)[0])) + '\n' + + return sys_info + + diff --git a/miaoshouai-assistant-main/scripts/runtime/msai_runtime.py b/miaoshouai-assistant-main/scripts/runtime/msai_runtime.py new file mode 100644 index 0000000000000000000000000000000000000000..f29c6abb3f51c94480d08be5415cd0da414f5746 --- /dev/null +++ b/miaoshouai-assistant-main/scripts/runtime/msai_runtime.py @@ -0,0 +1,1232 @@ +import datetime +import fileinput +import os +import platform +import re +import shutil +import sys +import io +import time +import typing as t +import gzip +import git +import gradio as gr +import requests +from bs4 import BeautifulSoup +import subprocess +import modules +import random +from gpt_index import SimpleDirectoryReader, GPTListIndex, GPTSimpleVectorIndex, LLMPredictor, PromptHelper +import openai +import gc +import json +#import tkinter as tk +#from tkinter import filedialog, ttk +import modules.devices as devices +import torch +from numba import cuda +from modules import shared, sd_hijack, sd_samplers, processing +from modules.sd_models import CheckpointInfo +from scripts.download.msai_downloader_manager import MiaoshouDownloaderManager +from scripts.msai_logging.msai_logger import Logger +from scripts.msai_utils import msai_toolkit as toolkit +from scripts.runtime.msai_prelude import MiaoshouPrelude + + +class MiaoshouRuntime(object): + def __init__(self): + self.cmdline_args: t.List[str] = None + self.logger = Logger() + self.prelude = MiaoshouPrelude() + self._old_additional: str = None + self._model_set: t.List[t.Dict] = None + self._my_model_set: t.List[t.Dict] = None + self._active_model_set: str = None + self._model_set_last_access_time: datetime.datetime = None + self._my_model_set_last_access_time: datetime.datetime = None + self._ds_models: gr.Dataset = None + self._ds_cover_gallery: gr.Dataset = None + self._ds_my_models: gr.Dataset = None + self._ds_my_model_covers: gr.Dataset = None + self._allow_nsfw: bool = False + self._model_source: str = "civitai.com" # civitai is the default model source + self._my_model_source: str = "civitai.com" + self._git_address: str = "https://github.com/miaoshouai/miaoshouai-assistant.git" + + # TODO: may be owned by downloader class + self.model_files = [] + + self.downloader_manager = MiaoshouDownloaderManager() + + + def get_default_args(self, commandline_args: t.List[str] = None): + if commandline_args is None: + commandline_args: t.List[str] = toolkit.get_args(sys.argv[1:]) + commandline_args = list(map(lambda x: x.replace('theme=', 'theme '), commandline_args)) + self.cmdline_args = list(dict.fromkeys(commandline_args)) + + self.logger.info(f"default commandline args: {commandline_args}") + + checkbox_values = [] + additional_args = "" + saved_setting = self.prelude.boot_settings + + gpu = saved_setting.get('drp_args_vram') + theme = saved_setting.get('drp_args_theme') + port = saved_setting.get('txt_args_listen_port') + + for arg in commandline_args: + if 'theme' in arg: + theme = [k for k, v in self.prelude.theme_setting.items() if v == arg][0] + if 'port' in arg: + port = arg.split(' ')[-1] + + for chk in self.prelude.checkboxes: + for arg in commandline_args: + if self.prelude.checkboxes[chk] == arg and chk not in checkbox_values: + checkbox_values.append(chk) + + gpu_arg_list = [f'--{i.strip()}' for i in ' '.join(list(self.prelude.gpu_setting.values())).split('--')] + for arg in commandline_args: + if 'port' not in arg \ + and arg not in list(self.prelude.theme_setting.values()) \ + and arg not in list(self.prelude.checkboxes.values()) \ + and arg not in gpu_arg_list: + additional_args += (' ' + rf'{arg}') + + self._old_additional = additional_args + webui_ver = saved_setting['drp_choose_version'] + + return gpu, theme, port, checkbox_values, additional_args.replace('\\', '\\\\').strip(), webui_ver + + def add_arg(self, args: str = "") -> None: + for arg in args.split('--'): + if f"--{arg.strip()}" not in self.cmdline_args and arg.strip() != '': + self.logger.info(f'add arg: {arg.strip()}') + self.cmdline_args.append(f'--{arg.strip()}') + + #remove duplicates + self.cmdline_args = list(dict.fromkeys(self.cmdline_args)) + #print('added dup',self.cmdline_args) + + def remove_arg(self, args: str = "") -> None: + arg_keywords = ['port', 'theme'] + + for arg in args.split('--'): + if arg in arg_keywords: + for cmdl in self.cmdline_args: + if arg in cmdl: + self.cmdline_args.remove(cmdl) + break + elif f'--{arg.strip()}' in self.cmdline_args and arg.strip() != '': + self.cmdline_args.remove(f'--{arg.strip()}') + + # remove duplicates + self.cmdline_args = list(dict.fromkeys(self.cmdline_args)) + #print('removed dup',self.cmdline_args) + + def get_final_args(self, gpu, theme, port, checkgroup, more_args) -> None: + # remove duplicates + self.cmdline_args = list(dict.fromkeys(self.cmdline_args)) + # gpu settings + for s1 in self.prelude.gpu_setting: + if s1 in gpu: + for s2 in self.prelude.gpu_setting: + if s2 != s1: + self.remove_arg(self.prelude.gpu_setting[s2]) + self.add_arg(self.prelude.gpu_setting[s1]) + + if port != '7860': + self.add_arg(f'--port {port}') + else: + self.remove_arg('--port') + + # theme settings + self.remove_arg('--theme') + for t in self.prelude.theme_setting: + if t == theme: + self.add_arg(self.prelude.theme_setting[t]) + break + + # check box settings + for chked in checkgroup: + self.logger.info(f'checked:{self.prelude.checkboxes[chked]}') + self.add_arg(self.prelude.checkboxes[chked]) + + for unchk in list(set(list(self.prelude.checkboxes.keys())) - set(checkgroup)): + print(f'unchecked:{unchk}') + self.remove_arg(self.prelude.checkboxes[unchk]) + + # additional commandline settings + self.remove_arg(self._old_additional) + self.add_arg(more_args.replace('\\\\', '\\')) + self._old_additional = more_args.replace('\\\\', '\\') + + def refresh_all_models(self) -> None: + self.install_preset_models_if_needed(True) + if self.ds_models: + self.ds_models.samples = self.model_set + self.ds_models.update(samples=self.model_set) + else: + self.logger.error(f"ds models is null") + + def get_images_html(self, search: str = '', chk_nsfw: bool = False, model_type: str = 'All') -> t.List[str]: + self.logger.info(f"get_image_html: model_type = {model_type}, and search pattern = '{search}'") + + model_cover_thumbnails = [] + model_format = [] + + if self.model_set is None: + self.logger.error("model_set is null") + return [] + + self.logger.info(f"{len(self.model_set)} items inside '{self.model_source}'") + + search = search.lower() + for model in self.model_set: + try: + if model.get('type') is not None \ + and model.get('type') not in model_format: + model_format.append(model['type']) + + if search == '' or \ + (model.get('name') is not None and search.lower() in model.get('name').lower()) \ + or (model.get('description') is not None and search.lower() in model.get('description').lower()): + + self._allow_nsfw = chk_nsfw + if (model_type == 'All' or model_type in model.get('type')) \ + and (self.allow_nsfw or (not self.allow_nsfw and not model.get('nsfw'))): + model_cover_thumbnails.append([ + [f""" +
+
+ +
+
+

{model.get('name')}

+

Type: {model.get('type')}

+

Rating: {model.get('stats')['rating']}

+
+
+ """], + model['id']]) + except Exception: + continue + + return model_cover_thumbnails + + # TODO: add typing hint + def update_boot_settings(self, version, drp_gpu, drp_theme, txt_listen_port, chk_group_args, additional_args, auto_vram): + boot_settings = self.prelude.boot_settings + boot_settings['drp_args_vram'] = drp_gpu + boot_settings["drp_args_theme"] = drp_theme + boot_settings['txt_args_listen_port'] = txt_listen_port + for chk in chk_group_args: + self.logger.debug(chk) + boot_settings[chk] = self.prelude.checkboxes[chk] + boot_settings['txt_args_more'] = additional_args + boot_settings['drp_choose_version'] = version + boot_settings['auto_vram'] = auto_vram + + all_settings = self.prelude.all_settings + all_settings['boot_settings'] = boot_settings + + toolkit.write_json(self.prelude.setting_file, all_settings) + + def update_boot_setting(self, setting, value): + boot_settings = self.prelude.boot_settings + boot_settings[setting] = value + + all_settings = self.prelude.all_settings + all_settings['boot_settings'] = boot_settings + toolkit.write_json(self.prelude.setting_file, all_settings) + + def change_auto_vram(self, auto_vram): + self.update_boot_setting('auto_vram', auto_vram) + + def mem_release(self): + try: + gc.collect() + devices.torch_gc() + torch.cuda.empty_cache() + gc.collect() + + print('Miaoshouai boot assistant: Memory Released!') + except: + print('Miaoshouai boot assistant: Memory Release Failed...!') + + def force_mem_release(self): + try: + if hasattr(sd_samplers, "create_sampler_original_md"): + sd_samplers.create_sampler = sd_samplers.create_sampler_original_md + del sd_samplers.create_sampler_original_md + if hasattr(processing, "create_random_tensors_original_md"): + processing.create_random_tensors = processing.create_random_tensors_original_md + del processing.create_random_tensors_original_md + + cuda.select_device(0) + cuda.close() + cuda.select_device(0) + self.mem_release() + msg = 'Memory Released! (May not work if you already got CUDA out of memory error)' + except Exception as e: + msg = f'Memory Release Failed! ({str(e)})' + + return gr.Markdown.update(visible=True, value=msg) + + return gr.Markdown.update(visible=True, value=msg) + def get_all_models(self, site: str) -> t.Any: + return toolkit.read_json(self.prelude.model_json[site]) + + def update_model_json(self, site: str, models: t.Any) -> None: + toolkit.write_json(self.prelude.model_json[site], models) + + def get_hash_from_json(self, chk_point: CheckpointInfo) -> CheckpointInfo: + model_hashes = toolkit.read_json(self.prelude.model_hash_file) + + if len(model_hashes) == 0 or chk_point.title not in model_hashes.keys(): + chk_point.shorthash = self.calculate_shorthash(chk_point) + model_hashes[chk_point.title] = chk_point.shorthash + toolkit.write_json(self.prelude.model_hash_file, model_hashes) + else: + chk_point.shorthash = model_hashes[chk_point.title] + + return chk_point + + def calculate_shorthash(self, chk_point: CheckpointInfo): + if chk_point.sha256 is None: + return + else: + return chk_point.sha256[0:10] + + + def update_my_model_type(self, search_txt, model_type) -> t.Dict: + my_models = self.get_local_models(search_txt, model_type) + self.ds_my_models.samples = my_models + + return gr.Dataset.update(samples=my_models) + + def get_local_models(self, search_txt='', model_type='Checkpoint') -> t.List[t.Any]: + models = [] + + for root, dirs, files in os.walk(self.prelude.model_type[model_type]): + for file in files: + mpath = os.path.join(root, file) + + fname, ext = os.path.splitext(file) + if ext in ['.ckpt', '.safetensors', '.pt'] and file != 'scaler.pt' and (search_txt in fname or search_txt == ''): + chkpt_info = modules.sd_models.get_closet_checkpoint_match(file) + if chkpt_info is None: + chkpt_info = CheckpointInfo(os.path.join(root, file)) + + if chkpt_info.sha256 is None and chkpt_info.shorthash is None: + chkpt_info = self.get_hash_from_json(chkpt_info) + + model_info = self.search_model_info(chkpt_info, mpath, model_type) + fname = re.sub(r'\[.*?\]', "", chkpt_info.title) + + if model_info is not None: + models.append(model_info) + else: + self.logger.info( + f"{chkpt_info.title}, {chkpt_info.hash}, {chkpt_info.shorthash}, {chkpt_info.sha256}") + models.append([ + self.prelude.no_preview_img, + 0, + [os.path.basename(fname)], + [mpath.replace(self.prelude.model_type[model_type]+'\\', '')]]) + + return models + + + def refresh_local_models(self, search_txt, model_type) -> t.Dict: + my_models = self.get_local_models(search_txt, model_type) + self.ds_my_models.samples = my_models + + return gr.Dataset.update(samples=my_models) + + def delete_model(self, model, search_txt, model_type): + fname = model[3][0] + mfolder = self.prelude.model_type[model_type] + mpapth = os.path.join(mfolder, fname) + + os.remove(mpapth) + my_models = self.get_local_models(search_txt, model_type) + self.ds_my_models.samples = my_models + + return gr.Dataset.update(samples=my_models) + + def set_all_covers(self, search_txt, model_type): + for model in self.ds_my_models.samples: + try: + if model[0] == self.prelude.no_preview_img and model[1] != 0: + img_list, l1, htmlDetail, h2 = self.get_model_info(model) + soup = BeautifulSoup(img_list[0][0]) + cover_url = soup.findAll('img')[0]['src'].replace('width=150', 'width=450') + + fname = model[3][0] + mname, ext = os.path.splitext(fname) + mfolder = self.prelude.model_type[model_type] + dst = os.path.join(mfolder, f'{mname}.jpg') + + if fname is not None and not os.path.exists(dst): + if self.my_model_source == 'liandange.com': + cover_url = soup.findAll('img')[0]['src'].replace('/w/150', '/w/450') + r = requests.get(cover_url, timeout=30, stream=True) + r.raw.decode_content = True + with open(dst, 'wb') as f: + shutil.copyfileobj(r.raw, f) + except Exception as e: + print(model[1], cover_url, dst, str(e)) + continue + + my_models = self.get_local_models(search_txt, model_type) + self.ds_my_models.samples = my_models + + return gr.Dataset.update(samples=my_models) + + def set_cover(self, model, cover, search_txt, model_type): + fname = model[3][0] + mname, ext = os.path.splitext(fname) + mfolder = self.prelude.model_type[model_type] + + dst = os.path.join(mfolder, f'{mname}.jpg') + cover.save(dst) + + my_models = self.get_local_models(search_txt, model_type) + self.ds_my_models.samples = my_models + + return gr.Dataset.update(samples=my_models) + + + + def search_model_info(self, chkpt_info: CheckpointInfo, mpath: str, model_type: str) -> t.Optional[t.List[t.Any]]: + + lookup_sha256 = chkpt_info.sha256 + lookup_shash = chkpt_info.shorthash + fname = re.sub(r'\[.*?\]', "", chkpt_info.title) + if '\\' in fname: + fname = fname.split('\\')[-1] + + self.logger.info(f"lookup_sha256: {lookup_sha256}, lookup_shash: {lookup_shash}, fname: {fname}") + + res = None + if lookup_sha256 is None and lookup_shash is None and fname is None: + return None + + prefix, ext = os.path.splitext(mpath) + + if os.path.exists(f'{prefix}.jpg'): + cover_img = os.path.join(os.path.dirname(mpath), f'{os.path.basename(prefix)}.jpg') + elif os.path.exists(f'{prefix}.png'): + cover_img = os.path.join(os.path.dirname(mpath), f'{os.path.basename(prefix)}.png') + elif os.path.exists(f'{prefix}.webp'): + cover_img = os.path.join(os.path.dirname(mpath), f'{os.path.basename(prefix)}.webp') + else: + cover_img = self.prelude.no_preview_img + + if not os.path.exists(self.prelude.cover_folder): + os.mkdir(self.prelude.cover_folder) + + dst = os.path.join(self.prelude.cover_folder, os.path.basename(cover_img)) + try: + if cover_img != self.prelude.no_preview_img and os.path.exists(cover_img) and os.path.exists(dst): + dst_size = os.stat(dst).st_size + cover_size = os.stat(cover_img).st_size + if dst_size != cover_size: + print('update to new cover') + shutil.copyfile(cover_img, dst) + elif cover_img != self.prelude.no_preview_img and os.path.exists(cover_img) and not os.path.exists(dst): + shutil.copyfile(cover_img, dst) + elif cover_img == self.prelude.no_preview_img: + dst = cover_img + except Exception as e: + dst = self.prelude.no_preview_img + + for model in self.my_model_set: + match = False + + for ver in model['modelVersions']: + for file in ver['files']: + if fname == file['name']: + match = True + elif lookup_sha256 is not None and 'SHA256' in file['hashes'].keys(): + match = (lookup_sha256.upper() == file['hashes']['SHA256'].upper()) + elif lookup_shash is not None: + match = (lookup_shash[:10].upper() in [h.upper() for h in file['hashes'].values()]) + + if match: + mid = model['id'] + + res = [ + dst, + mid, + [f"{model['name']}/{ver['name']}"], + [mpath.replace(self.prelude.model_type[model_type]+'\\', '')] + ] + + if match: + break + + return res + + def update_xformers(self, gpu, checkgroup): + if '--xformers' in self.prelude.gpu_setting[gpu]: + if 'Enable xFormers' not in checkgroup: + checkgroup.append('Enable xFormers') + + return checkgroup + + def set_nsfw(self, search='', nsfw_checker=False, model_type='All') -> t.Dict: + self._allow_nsfw = nsfw_checker + new_list = self.get_images_html(search, model_type) + if self._ds_models is None: + self.logger.error(f"_ds_models is not initialized") + return {} + + self._ds_models.samples = new_list + return self._ds_models.update(samples=new_list) + + def search_model(self, search='', chk_nsfw=False, model_type='All') -> t.Dict: + if self._ds_models is None: + self.logger.error(f"_ds_models is not initialized") + return {} + + new_list = self.get_images_html(search, chk_nsfw, model_type) + + self._ds_models.samples = new_list + return self._ds_models.update(samples=new_list) + + def search_my_model(self, search_txt='', model_type='Checkpoint') -> t.Dict: + if self._ds_models is None: + self.logger.error(f"_ds_models is not initialized") + return {} + + new_list = self.get_local_models(search_txt, model_type) + + self._ds_my_models.samples = new_list + return self._ds_my_models.update(samples=new_list) + + def get_model_byid(self, mid, model_source) -> t.List: + response = requests.get(self.prelude.api_url(model_source) + f'/{mid}') + payload = response.json() + if payload.get("success") is not None and not payload.get("success"): + return [] + + return [payload] + + def get_model_info(self, models) -> t.Tuple[t.List[t.List[str]], t.Dict, str, t.Dict]: + drop_list = [] + cover_imgs = [] + htmlDetail = "

No info found

" + + mid = models[1] + + # TODO: use map to enhance the performances + if self.active_model_set == 'model_set': + if self.model_source == "civitai.com" or self.model_source == "liandange.com": + m_list = self.get_model_byid(mid, self.model_source) + else: + m_list = [e for e in self.model_set if e['id'] == mid] + else: + if self.my_model_source == "civitai.com" or self.my_model_source == "liandange.com": + m_list = self.get_model_byid(mid, self.my_model_source) + self._allow_nsfw = True + else: + m_list = [e for e in self.my_model_set if e['id'] == mid] + + if m_list is not None and len(m_list) > 0: + m = m_list[0] + else: + return [[]], {}, htmlDetail, {} + + self.model_files.clear() + + download_url_by_default = None + if m and m.get('modelVersions') and len(m.get('modelVersions')) > 0: + latest_version = m['modelVersions'][0] + + if latest_version.get('images') and isinstance(latest_version.get('images'), list): + for img in latest_version['images']: + if self.allow_nsfw or (not self.allow_nsfw and (not img.get('nsfw') or img.get('nsfw') in ['None', 'Soft'])): + if img.get('url'): + cover_imgs.append([f'']) + + if latest_version.get('files') and isinstance(latest_version.get('files'), list): + for file in latest_version['files']: + # error checking for mandatory fields + if file.get('id') is not None and file.get('downloadUrl') is not None: + item_name = None + if file.get('name'): + item_name = file.get('name') + if not item_name and latest_version.get('name'): + item_name = latest_version['name'] + if not item_name: + item_name = "unknown" + + self.model_files.append({ + "id:": file['id'], + "url": file['downloadUrl'], + "name": item_name, + "type": m['type'] if m.get('type') else "unknown", + "size": file['sizeKB'] * 1024 if file.get('sizeKB') else "unknown", + "format": file['format'] if file.get('format') else "unknown", + "cover": cover_imgs[0][0] if len(cover_imgs) > 0 else toolkit.get_not_found_image_url(), + }) + file_size = toolkit.get_readable_size(file['sizeKB'] * 1024) if file.get('sizeKB') else "" + if file_size: + drop_list.append(f"{item_name} ({file_size})") + else: + drop_list.append(f"{item_name}") + + if not download_url_by_default: + download_url_by_default = file.get('downloadUrl') + + htmlDetail = '
' + if m.get('name'): + htmlDetail += f"

{m['name']}


" + if m.get('stats') and m.get('stats').get('downloadCount'): + htmlDetail += f"

Downloads: {m['stats']['downloadCount']}

" + if m.get('stats') and m.get('stats').get('rating'): + htmlDetail += f"

Rating: {m['stats']['rating']}

" + if m.get('creator') and m.get('creator').get('username'): + htmlDetail += f"

Author: {m['creator']['username']}



" + if latest_version.get('name'): + htmlDetail += f"
" + if latest_version.get('updatedAt'): + htmlDetail += f"" + if m.get('type'): + htmlDetail += f"" + if latest_version.get('baseModel'): + htmlDetail += f"" + htmlDetail += f"" + if m.get('tags') and isinstance(m.get('tags'), list): + htmlDetail += f"" + if latest_version.get('trainedWords'): + htmlDetail += f"" + htmlDetail += "
Version:{latest_version['name']}
Updated Time:{latest_version['updatedAt']}
Type:{m['type']}
Base Model:{latest_version['baseModel']}
NFSW:{m.get('nsfw') if m.get('nsfw') is not None else 'false'}
Tags:" + for t in m['tags']: + htmlDetail += f'
Trigger Words:" + for t in latest_version['trainedWords']: + htmlDetail += f'{t}' + htmlDetail += "
" + htmlDetail += f"
{m['description'] if m.get('description') else 'N/A'}
" + + self._ds_cover_gallery.samples = cover_imgs + + return ( + cover_imgs, + gr.Dropdown.update(choices=drop_list, value=drop_list[0] if len(drop_list) > 0 else []), + htmlDetail, + gr.HTML.update(value=f'

' + f'Download

') + ) + + def get_my_model_covers(self, model, model_type): + img_list, l1, htmlDetail, h2 = self.get_model_info(model) + if self._ds_my_model_covers is None: + self.logger.error(f"_ds_my_model_covers is not initialized") + return {} + + new_html = '
' + if htmlDetail is not None: + new_html = htmlDetail.split('
')[0] + '' + + cover_list = [] + for img_link in img_list: + cover_html = '
\n' + cover_html += f'
\n' + if len(img_link) > 0: + cover_html += f'{img_link[0]}\n' + + cover_html += '
\n
' + cover_list.append([cover_html]) + + if model_type == 'TextualInversion': + mname, ext = os.path.splitext(model[3][0]) + button_html = '' + + elif model_type == 'LORA': + mname, ext = os.path.splitext(model[3][0]) + button_html = '' + elif model_type.upper() == 'LoCon'.upper(): + mname, ext = os.path.splitext(model[3][0]) + button_html = '' + else: + mpath = os.path.join(self.prelude.model_type[model_type], model[3][0]) + checkpoint_info = CheckpointInfo(mpath) + button_html = f'' + + self._ds_my_model_covers.samples = cover_list + return self._ds_my_model_covers.update(samples=cover_list), gr.HTML.update(visible=True, value=new_html), gr.HTML.update(visible=True, value=button_html) + + + def update_cover_info(self, model, covers): + + soup = BeautifulSoup(covers[0]) + cover_url = soup.findAll('img')[0]['src'].replace('width=150', 'width=450') + + if self.my_model_set is None: + self.logger.error("model_set is null") + return [] + + mid = model[1] + m_list = self.get_model_byid(mid, self.my_model_source) + if m_list is not None or m_list != []: + m = m_list[0] + else: + return {}, {} + + generation_info = '' + fname = None + for mv in m['modelVersions']: + for img in mv['images']: + if img['url'] == cover_url: + if img['meta'] is not None and img['meta'] != '': + try: + meta = img['meta'] + generation_info += f"{meta['prompt']}\n" + if meta['negativePrompt'] is not None: + generation_info += f"Negative prompt: {meta['negativePrompt']}\n" + generation_info += f"Steps: {meta['steps']}, Sampler: {meta['sampler']}, " + generation_info += f"CFG scale: {meta['cfgScale']}, Seed: {meta['seed']}, Size: {meta['Size']}," + if meta['Model hash'] is not None: + generation_info += f"Model hash: {meta['Model hash']}" + + except Exception as e: + self.logger.info(f"generation_info error:{str(e)}") + pass + + if not os.path.exists(self.prelude.cache_folder): + os.mkdir(self.prelude.cache_folder) + + if self.my_model_source == 'civitai.com': + fname = os.path.join(self.prelude.cache_folder, f"{cover_url.split('/')[-1]}.jpg") + elif self.my_model_source == 'liandange.com': + fname = os.path.join(self.prelude.cache_folder, cover_url.split('?')[0].split('/')[-1]) + + break + + if fname is not None and not os.path.exists(fname): + if self.my_model_source == 'liandange.com': + cover_url = soup.findAll('img')[0]['src'].replace('/w/150', '/w/450') + r = requests.get(cover_url, timeout=30, stream=True) + r.raw.decode_content = True + with open(fname, 'wb') as f: + shutil.copyfileobj(r.raw, f) + + return gr.Button.update(visible=True), gr.Text.update(value=generation_info), gr.Image.update(value=fname) + + def get_downloading_status(self): + (_, _, desc) = self.downloader_manager.tasks_summary() + return gr.HTML.update(value=desc) + + def download_model(self, filename: str): + model_path = modules.paths.models_path + script_path = modules.paths.script_path + + urls = [] + for _, f in enumerate(self.model_files): + if not f.get('name'): + continue + model_fname = re.sub(r"\s*\(\d+(?:\.\d*)?.B\)\s*$", "", f['name']) + + if model_fname in filename: + m_pre, m_ext = os.path.splitext(model_fname) + cover_fname = f"{m_pre}.jpg" + soup = BeautifulSoup(f['cover']) + cover_link = soup.findAll('img')[0]['src'].replace('/w/150', '/w/450').replace('width=150', 'width=450') + + if f['type'] == 'LORA': + cover_fname = os.path.join(model_path, 'Lora', cover_fname) + model_fname = os.path.join(model_path, 'Lora', model_fname) + elif f['type'].upper() == 'LoCon'.upper(): + cover_fname = os.path.join(model_path, 'LyCORIS', cover_fname) + model_fname = os.path.join(model_path, 'LyCORIS', model_fname) + elif f['type'] == 'VAE': + cover_fname = os.path.join(model_path, 'VAE', cover_fname) + model_fname = os.path.join(model_path, 'VAE', model_fname) + elif f['type'] == 'TextualInversion': + cover_fname = os.path.join(script_path, 'embeddings', cover_fname) + model_fname = os.path.join(script_path, 'embeddings', model_fname) + elif f['type'] == 'Hypernetwork': + cover_fname = os.path.join(model_path, 'hypernetworks', cover_fname) + model_fname = os.path.join(model_path, 'hypernetworks', model_fname) + elif f['type'] == 'Controlnet': + cover_fname = os.path.join(shared.script_path, 'extensions', 'sd-webui-controlnet', 'models', cover_fname) + model_fname = os.path.join(shared.script_path, 'extensions', 'sd-webui-controlnet', 'models', model_fname) + else: + cover_fname = os.path.join(model_path, 'Stable-diffusion', cover_fname) + model_fname = os.path.join(model_path, 'Stable-diffusion', model_fname) + + urls.append((cover_link, f['url'], f['size'], cover_fname, model_fname)) + break + + for (cover_url, model_url, total_size, local_cover_name, local_model_name) in urls: + self.downloader_manager.download( + source_url=cover_url, + target_file=local_cover_name, + estimated_total_size=None, + ) + self.downloader_manager.download( + source_url=model_url, + target_file=local_model_name, + estimated_total_size=total_size, + ) + + # + # currently, web-ui is without queue enabled. + # + # webui_queue_enabled = False + # if webui_queue_enabled: + # start = time.time() + # downloading_tasks_iter = self.downloader_manager.iterator() + # for i in progressbar.tqdm(range(100), unit="byte", desc="Models Downloading"): + # while True: + # try: + # finished_bytes, total_bytes = next(downloading_tasks_iter) + # v = finished_bytes / total_bytes + # print(f"\n v = {v}") + # if isinstance(v, float) and int(v * 100) < i: + # print(f"\nv({v}) < {i}") + # continue + # else: + # break + # except StopIteration: + # break + # + # time.sleep(0.5) + # + # self.logger.info(f"[downloading] finished after {time.time() - start} secs") + + time.sleep(2) + + #self.model_files.clear() + return gr.HTML.update(value=f"

{len(urls)} downloading tasks added into task list

") + + def install_preset_models_if_needed(self, update_ds: bool): + assets_folder = os.path.join(self.prelude.ext_folder, "assets") + configs_folder = os.path.join(self.prelude.ext_folder, "configs") + + for model_filename in ["civitai_models.json", "liandange_models.json", "gpt_index.json"]: + gzip_file = os.path.join(assets_folder, f"{model_filename}.gz") + target_file = os.path.join(configs_folder, f"{model_filename}") + + if not os.path.exists(gzip_file): + self.relocate_assets_if_needed() + sub_repo = git.Repo(self.prelude.assets_folder) + sub_repo.git.fetch(all=True) + sub_repo.git.reset('origin', hard=True) + + if update_ds or not os.path.exists(target_file): + with gzip.open(gzip_file, "rb") as compressed_file: + with io.TextIOWrapper(compressed_file, encoding="utf-8") as decoder: + content = decoder.read() + with open(target_file, "w") as model_file: + model_file.write(content) + + print('Data source unpacked successfully') + + def relocate_assets_if_needed(self): + repo = git.Repo(self.prelude.ext_folder) + print('Updating asset repo...') + try: + old_repo = True + if os.path.exists(self.prelude.assets_folder): + for filename in os.listdir(self.prelude.assets_folder): + if '.git' in filename: + old_repo = False + break + + if old_repo: + shutil.rmtree(self.prelude.assets_folder) + + for submodule in repo.submodules: + submodule.update(init=True) + except Exception as e: + print('error', str(e)) + + def get_dir_and_file(self, file_path): + dir_path, file_name = os.path.split(file_path) + return (dir_path, file_name) + + def open_folder(self, folder_path=''): + if not any(var in os.environ for var in self.prelude.ENV_EXCLUSION) and sys.platform != 'darwin': + current_folder_path = folder_path + + initial_dir, initial_file = self.get_dir_and_file(folder_path) + + #root = tk.Tk() + #root.wm_attributes('-topmost', 1) + #root.withdraw() + #folder_path = filedialog.askdirectory(initialdir=initial_dir) + #root.destroy() + + if folder_path == '': + folder_path = current_folder_path + + return folder_path + + def change_model_folder(self, folder_path=''): + + res = 'Model folder is linked successfully' + if folder_path == '': + return gr.Markdown.update(value='No directory is set', visible=True) + + try: + src = shared.models_path + # Destination file path + dst = folder_path + + # Create a symbolic link + # pointing to src named dst + # using os.symlink() method + subprocess.check_call('mklink /J "%s" "%s"' % (src, dst), shell=True) + except Exception as e: + res = str(e) + + return gr.Markdown.update(value=res, visible=True) + + def change_boot_setting(self, version, drp_gpu, drp_theme, txt_listen_port, chk_group_args, additional_args): + self.get_final_args(drp_gpu, drp_theme, txt_listen_port, chk_group_args, additional_args) + self.logger.info(f'saved_cmd: {self.cmdline_args}') + + if version == 'Official Release': + target_webui_user_file = "webui-user.bat" + else: + target_webui_user_file = "webui-user-launch.bat" + script_export_keyword = "export" + if platform.system() == "Linux": + target_webui_user_file = "webui-user.sh" + elif platform.system() == "Darwin": + target_webui_user_file = "webui-macos-env.sh" + else: + script_export_keyword = "set" + + filepath = os.path.join(modules.shared.script_path, target_webui_user_file) + self.logger.info(f"to update: {filepath}") + + msg = 'Result: Setting Saved.' + if version == 'Official Release': + try: + if not os.path.exists(filepath): + shutil.copyfile(os.path.join(self.prelude.ext_folder, 'configs', target_webui_user_file), filepath) + + with fileinput.FileInput(filepath, inplace=True, backup='.bak') as file: + for line in file: + if 'COMMANDLINE_ARGS' in line: + rep_txt = ' '.join(self.cmdline_args).replace('\\', '\\\\') + line = f'{script_export_keyword} COMMANDLINE_ARGS={rep_txt}\n' + sys.stdout.write(line) + + except Exception as e: + msg = f'Error: {str(e)}' + else: + try: + if not os.path.exists(filepath): + shutil.copyfile(os.path.join(self.prelude.ext_folder, 'configs', target_webui_user_file), filepath) + + new_data = '' + with open(filepath, 'r+') as file: + data = file.readlines() + for line in data: + if 'webui.py' in line: + rep_txt = ' '.join(self.cmdline_args).replace('\\', '\\\\') + line = f"python\python.exe webui.py {rep_txt}\n" + new_data += line + file.seek(0) + file.write(new_data) + file.truncate() + + except Exception as e: + msg = f'Error: {str(e)}' + + self.update_boot_settings(version, drp_gpu, drp_theme, txt_listen_port, chk_group_args, additional_args) + return gr.update(value=msg, visible=True) + + def check_update(self): + update_status = 'latest' + show_update = False + repo = git.Repo(self.prelude.ext_folder) + print('Checking updates for miaoshouai-assistant...') + for fetch in repo.remote().fetch(dry_run=True): + if fetch.flags != fetch.HEAD_UPTODATE: + show_update = True + update_status = "behind" + break + + print('Checking updates for data source...') + if os.path.exists(self.prelude.assets_folder): + fcount = len([entry for entry in os.listdir(self.prelude.assets_folder) if os.path.isfile(os.path.join(self.prelude.assets_folder, entry))]) + + if not os.path.exists(self.prelude.assets_folder) or fcount <= 0: + self.relocate_assets_if_needed() + show_update = True + update_status = "behind" + else: + try: + asset_repo = git.Repo(self.prelude.asset_folder) + for fetch in asset_repo.remote().fetch(dry_run=True): + if fetch.flags != fetch.HEAD_UPTODATE: + show_update = True + update_status = "behind" + break + except Exception as e: + self.logger.info(f"Error during checking asset, try to relocate.\n{str(e)}") + self.relocate_assets_if_needed() + show_update = True + update_status = "behind" + + return gr.Markdown.update(visible=True, value=update_status), gr.Checkbox.update(visible=show_update), gr.Button.update(visible=show_update) + + def process_prompt(self, model, model_type, prompt: str): + text_replace = {'/': '|', 'a girl': '1girl', 'a boy': '1boy', 'a women': '1women', 'a man': '1man'} + for rep in text_replace.keys(): + prompt = prompt.strip().lower().replace(rep, text_replace[rep]) + + try: + mid = model[1] + m_list = self.get_model_byid(mid, self.my_model_source) + if m_list is not None or m_list != []: + m = m_list[0] + else: + return prompt + except Exception as e: + self.logger.info(f"generation_info error:{str(e)}") + return prompt + + generation_info = '' + for mv in m['modelVersions']: + img_cnt = len(mv['images']) + img = mv['images'][random.randint(0, img_cnt-1)] + if img['meta'] is not None and img['meta'] != '': + try: + meta = img['meta'] + + lora = '' + if model_type == 'LORA': + mname, ext = os.path.splitext(model[3][0]) + lora = f', ' + elif model_type.upper() == 'LoCon'.upper(): + mname, ext = os.path.splitext(model[3][0]) + lora = f', ' + + tw_count = len(mv['trainedWords']) + if tw_count > 0: + twords = mv['trainedWords'][random.randint(0, tw_count-1)] + generation_info += f"{prompt}, {twords}{lora}\n" + else: + generation_info += f"{prompt}{lora}\n" + + if meta['negativePrompt'] is not None: + generation_info += f"Negative prompt: {meta['negativePrompt']}\n" + generation_info += f"Steps: {meta['steps']}, Sampler: {meta['sampler']}, " + generation_info += f"CFG scale: {meta['cfgScale']}, Seed: -1, Size: {meta['Size']}," + if meta['Model hash'] is not None: + generation_info += f"Model hash: {meta['Model hash']}" + + except Exception as e: + self.logger.info(f"generation_info error:{str(e)}") + return generation_info + + break + + return generation_info + + def get_gpt_prompt(self, model, model_type, main_prompt): + os.environ["OPENAI_API_KEY"] = self.prelude.boot_settings['openai_api'] + + if model is None: + return gr.TextArea.update(value='Please select a model first') + + if not os.path.exists(self.prelude.gpt_index): + self.install_preset_models_if_needed(True) + + index = GPTSimpleVectorIndex.load_from_disk(self.prelude.gpt_index) + max_tokens = 4000 + + try: + response = openai.Completion.create( + engine="text-davinci-003", + prompt=f"translate the following text into English:\n{main_prompt}", + max_tokens=max_tokens, + n=1, + stop=None, + temperature=0.5, + ) + res_prompt = response.choices[0].text.strip().replace('Translation:', '') + gpt_prompt = 'give me a prompt for: ' + res_prompt + + response = index.query(gpt_prompt, response_mode="compact") + res_prompt = self.process_prompt(model, model_type, response.response) + except Exception as e: + res_prompt = str(e) + return gr.TextArea.update(value=res_prompt) + + return gr.TextArea.update(value=res_prompt) + + def update_gptapi(self, apikey): + if apikey == '': + res = 'Please enter a valid API Key' + gpt_hint_text = 'Set your OpenAI api key in Setting & Update first: https://platform.openai.com/account/api-keys' + value_text = gpt_hint_text + else: + self.update_boot_setting('openai_api', apikey) + os.environ["OPENAI_API_KEY"] = apikey + res = 'API Key updated' + gpt_hint_text = 'Select a model and type some text here, ChatGPT will generate prompt for you. Supports different text in different languages.' + value_text = '' + + return gr.Markdown.update(value=res, visible=True), gr.Textbox.update(placeholder=gpt_hint_text, value=value_text) + + def update_program(self, dont_update_ms=False): + result = "Update successful, restart to take effective." + try: + print('Updating miaoshouai-assistant...') + repo = git.Repo(self.prelude.ext_folder) + # Fix: `error: Your local changes to the following files would be overwritten by merge`, + # because WSL2 Docker set 755 file permissions instead of 644, this results to the error. + repo.git.fetch(all=True) + repo.git.reset('origin', hard=True) + if not dont_update_ms: + sub_repo = git.Repo(self.prelude.assets_folder) + sub_repo.git.fetch(all=True) + sub_repo.git.reset('origin', hard=True) + self.install_preset_models_if_needed(True) + except Exception as e: + result = str(e) + + return gr.Markdown.update(visible=True, value=result) + + + @property + def model_set(self) -> t.List[t.Dict]: + try: + self.install_preset_models_if_needed(False) + self.logger.info(f"access to model info for '{self.model_source}'") + model_json_mtime = toolkit.get_file_last_modified_time(self.prelude.model_json[self.model_source]) + + if self._model_set is None or self._model_set_last_access_time is None \ + or self._model_set_last_access_time < model_json_mtime: + self._model_set = self.get_all_models(self.model_source) + self._model_set_last_access_time = model_json_mtime + self.logger.info(f"load '{self.model_source}' model data from local file") + except Exception as e: + self.refresh_all_models() + self._model_set_last_access_time = datetime.datetime.now() + + return self._model_set + + @property + def my_model_set(self) -> t.List[t.Dict]: + try: + self.install_preset_models_if_needed(False) + self.logger.info(f"access to model info for '{self.my_model_source}'") + model_json_mtime = toolkit.get_file_last_modified_time(self.prelude.model_json[self.my_model_source]) + + if self._my_model_set is None or self._my_model_set_last_access_time is None \ + or self._my_model_set_last_access_time < model_json_mtime: + self._my_model_set = self.get_all_models(self.my_model_source) + self._my_model_set_last_access_time = model_json_mtime + self.logger.info(f"load '{self.my_model_source}' model data from local file") + except Exception as e: + self.refresh_all_models() + self._my_model_set_last_access_time = datetime.datetime.now() + + return self._my_model_set + + + @property + def allow_nsfw(self) -> bool: + return self._allow_nsfw + + @property + def old_additional_args(self) -> str: + return self._old_additional + + @property + def ds_models(self) -> gr.Dataset: + return self._ds_models + + @ds_models.setter + def ds_models(self, newone: gr.Dataset): + self._ds_models = newone + + @property + def ds_cover_gallery(self) -> gr.Dataset: + return self._ds_cover_gallery + + @ds_cover_gallery.setter + def ds_cover_gallery(self, newone: gr.Dataset): + self._ds_cover_gallery = newone + + @property + def ds_my_models(self) -> gr.Dataset: + return self._ds_my_models + + @ds_my_models.setter + def ds_my_models(self, newone: gr.Dataset): + self._ds_my_models = newone + + @property + def ds_my_model_covers(self) -> gr.Dataset: + return self._ds_my_model_covers + + @ds_my_model_covers.setter + def ds_my_model_covers(self, newone: gr.Dataset): + self._ds_my_model_covers = newone + + @property + def model_source(self) -> str: + return self._model_source + + @model_source.setter + def model_source(self, newone: str): + self.logger.info(f"model source changes from {self.model_source} to {newone}") + self._model_source = newone + self._model_set_last_access_time = None # reset timestamp + + @property + def my_model_source(self) -> str: + return self._my_model_source + + @my_model_source.setter + def my_model_source(self, newone: str): + self.logger.info(f"model source changes from {self.my_model_source} to {newone}") + self._my_model_source = newone + self._my_model_set_last_access_time = None # reset timestamp + + @property + def active_model_set(self) -> str: + return self._active_model_set + + @active_model_set.setter + def active_model_set(self, newone: str): + self.logger.info(f"model set changes from {self.active_model_set} to {newone}") + self._active_model_set = newone + + @property + def git_address(self) -> str: + return self._git_address + + def introception(self) -> None: + (gpu, theme, port, checkbox_values, extra_args, ver) = self.get_default_args() + + print("################################################################") + print("MIAOSHOU ASSISTANT ARGUMENTS:") + + print(f" gpu = {gpu}") + print(f" theme = {theme}") + print(f" port = {port}") + print(f" checkbox_values = {checkbox_values}") + print(f" extra_args = {extra_args}") + print(f" webui ver = {ver}") + + print("################################################################") + diff --git a/ultimate-upscale/.gitignore b/ultimate-upscale/.gitignore new file mode 100644 index 0000000000000000000000000000000000000000..600d2d33badf45cc068e01d2e3c837e11c417bc4 --- /dev/null +++ b/ultimate-upscale/.gitignore @@ -0,0 +1 @@ +.vscode \ No newline at end of file diff --git a/ultimate-upscale/LICENSE b/ultimate-upscale/LICENSE new file mode 100644 index 0000000000000000000000000000000000000000..ebfe3f5212b6396c75ee993947fe1ebdd6a91207 --- /dev/null +++ b/ultimate-upscale/LICENSE @@ -0,0 +1,674 @@ + GNU GENERAL PUBLIC LICENSE + Version 3, 29 June 2007 + + Copyright (C) 2007 Free Software Foundation, Inc. + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The GNU General Public License is a free, copyleft license for +software and other kinds of works. + + The licenses for most software and other practical works are designed +to take away your freedom to share and change the works. By contrast, +the GNU General Public License is intended to guarantee your freedom to +share and change all versions of a program--to make sure it remains free +software for all its users. We, the Free Software Foundation, use the +GNU General Public License for most of our software; it applies also to +any other work released this way by its authors. You can apply it to +your programs, too. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +them if you wish), that you receive source code or can get it if you +want it, that you can change the software or use pieces of it in new +free programs, and that you know you can do these things. + + To protect your rights, we need to prevent others from denying you +these rights or asking you to surrender the rights. Therefore, you have +certain responsibilities if you distribute copies of the software, or if +you modify it: responsibilities to respect the freedom of others. + + For example, if you distribute copies of such a program, whether +gratis or for a fee, you must pass on to the recipients the same +freedoms that you received. You must make sure that they, too, receive +or can get the source code. And you must show them these terms so they +know their rights. + + Developers that use the GNU GPL protect your rights with two steps: +(1) assert copyright on the software, and (2) offer you this License +giving you legal permission to copy, distribute and/or modify it. + + For the developers' and authors' protection, the GPL clearly explains +that there is no warranty for this free software. For both users' and +authors' sake, the GPL requires that modified versions be marked as +changed, so that their problems will not be attributed erroneously to +authors of previous versions. + + Some devices are designed to deny users access to install or run +modified versions of the software inside them, although the manufacturer +can do so. This is fundamentally incompatible with the aim of +protecting users' freedom to change the software. The systematic +pattern of such abuse occurs in the area of products for individuals to +use, which is precisely where it is most unacceptable. Therefore, we +have designed this version of the GPL to prohibit the practice for those +products. If such problems arise substantially in other domains, we +stand ready to extend this provision to those domains in future versions +of the GPL, as needed to protect the freedom of users. + + Finally, every program is threatened constantly by software patents. +States should not allow patents to restrict development and use of +software on general-purpose computers, but in those that do, we wish to +avoid the special danger that patents applied to a free program could +make it effectively proprietary. To prevent this, the GPL assures that +patents cannot be used to render the program non-free. + + The precise terms and conditions for copying, distribution and +modification follow. + + TERMS AND CONDITIONS + + 0. Definitions. + + "This License" refers to version 3 of the GNU General Public License. + + "Copyright" also means copyright-like laws that apply to other kinds of +works, such as semiconductor masks. + + "The Program" refers to any copyrightable work licensed under this +License. Each licensee is addressed as "you". "Licensees" and +"recipients" may be individuals or organizations. + + To "modify" a work means to copy from or adapt all or part of the work +in a fashion requiring copyright permission, other than the making of an +exact copy. The resulting work is called a "modified version" of the +earlier work or a work "based on" the earlier work. + + A "covered work" means either the unmodified Program or a work based +on the Program. + + To "propagate" a work means to do anything with it that, without +permission, would make you directly or secondarily liable for +infringement under applicable copyright law, except executing it on a +computer or modifying a private copy. Propagation includes copying, +distribution (with or without modification), making available to the +public, and in some countries other activities as well. + + To "convey" a work means any kind of propagation that enables other +parties to make or receive copies. Mere interaction with a user through +a computer network, with no transfer of a copy, is not conveying. + + An interactive user interface displays "Appropriate Legal Notices" +to the extent that it includes a convenient and prominently visible +feature that (1) displays an appropriate copyright notice, and (2) +tells the user that there is no warranty for the work (except to the +extent that warranties are provided), that licensees may convey the +work under this License, and how to view a copy of this License. If +the interface presents a list of user commands or options, such as a +menu, a prominent item in the list meets this criterion. + + 1. Source Code. + + The "source code" for a work means the preferred form of the work +for making modifications to it. "Object code" means any non-source +form of a work. + + A "Standard Interface" means an interface that either is an official +standard defined by a recognized standards body, or, in the case of +interfaces specified for a particular programming language, one that +is widely used among developers working in that language. + + The "System Libraries" of an executable work include anything, other +than the work as a whole, that (a) is included in the normal form of +packaging a Major Component, but which is not part of that Major +Component, and (b) serves only to enable use of the work with that +Major Component, or to implement a Standard Interface for which an +implementation is available to the public in source code form. A +"Major Component", in this context, means a major essential component +(kernel, window system, and so on) of the specific operating system +(if any) on which the executable work runs, or a compiler used to +produce the work, or an object code interpreter used to run it. + + The "Corresponding Source" for a work in object code form means all +the source code needed to generate, install, and (for an executable +work) run the object code and to modify the work, including scripts to +control those activities. However, it does not include the work's +System Libraries, or general-purpose tools or generally available free +programs which are used unmodified in performing those activities but +which are not part of the work. For example, Corresponding Source +includes interface definition files associated with source files for +the work, and the source code for shared libraries and dynamically +linked subprograms that the work is specifically designed to require, +such as by intimate data communication or control flow between those +subprograms and other parts of the work. + + The Corresponding Source need not include anything that users +can regenerate automatically from other parts of the Corresponding +Source. + + The Corresponding Source for a work in source code form is that +same work. + + 2. Basic Permissions. + + All rights granted under this License are granted for the term of +copyright on the Program, and are irrevocable provided the stated +conditions are met. This License explicitly affirms your unlimited +permission to run the unmodified Program. The output from running a +covered work is covered by this License only if the output, given its +content, constitutes a covered work. This License acknowledges your +rights of fair use or other equivalent, as provided by copyright law. + + You may make, run and propagate covered works that you do not +convey, without conditions so long as your license otherwise remains +in force. You may convey covered works to others for the sole purpose +of having them make modifications exclusively for you, or provide you +with facilities for running those works, provided that you comply with +the terms of this License in conveying all material for which you do +not control copyright. Those thus making or running the covered works +for you must do so exclusively on your behalf, under your direction +and control, on terms that prohibit them from making any copies of +your copyrighted material outside their relationship with you. + + Conveying under any other circumstances is permitted solely under +the conditions stated below. Sublicensing is not allowed; section 10 +makes it unnecessary. + + 3. Protecting Users' Legal Rights From Anti-Circumvention Law. + + No covered work shall be deemed part of an effective technological +measure under any applicable law fulfilling obligations under article +11 of the WIPO copyright treaty adopted on 20 December 1996, or +similar laws prohibiting or restricting circumvention of such +measures. + + When you convey a covered work, you waive any legal power to forbid +circumvention of technological measures to the extent such circumvention +is effected by exercising rights under this License with respect to +the covered work, and you disclaim any intention to limit operation or +modification of the work as a means of enforcing, against the work's +users, your or third parties' legal rights to forbid circumvention of +technological measures. + + 4. Conveying Verbatim Copies. + + You may convey verbatim copies of the Program's source code as you +receive it, in any medium, provided that you conspicuously and +appropriately publish on each copy an appropriate copyright notice; +keep intact all notices stating that this License and any +non-permissive terms added in accord with section 7 apply to the code; +keep intact all notices of the absence of any warranty; and give all +recipients a copy of this License along with the Program. + + You may charge any price or no price for each copy that you convey, +and you may offer support or warranty protection for a fee. + + 5. Conveying Modified Source Versions. + + You may convey a work based on the Program, or the modifications to +produce it from the Program, in the form of source code under the +terms of section 4, provided that you also meet all of these conditions: + + a) The work must carry prominent notices stating that you modified + it, and giving a relevant date. + + b) The work must carry prominent notices stating that it is + released under this License and any conditions added under section + 7. This requirement modifies the requirement in section 4 to + "keep intact all notices". + + c) You must license the entire work, as a whole, under this + License to anyone who comes into possession of a copy. This + License will therefore apply, along with any applicable section 7 + additional terms, to the whole of the work, and all its parts, + regardless of how they are packaged. This License gives no + permission to license the work in any other way, but it does not + invalidate such permission if you have separately received it. + + d) If the work has interactive user interfaces, each must display + Appropriate Legal Notices; however, if the Program has interactive + interfaces that do not display Appropriate Legal Notices, your + work need not make them do so. + + A compilation of a covered work with other separate and independent +works, which are not by their nature extensions of the covered work, +and which are not combined with it such as to form a larger program, +in or on a volume of a storage or distribution medium, is called an +"aggregate" if the compilation and its resulting copyright are not +used to limit the access or legal rights of the compilation's users +beyond what the individual works permit. Inclusion of a covered work +in an aggregate does not cause this License to apply to the other +parts of the aggregate. + + 6. Conveying Non-Source Forms. + + You may convey a covered work in object code form under the terms +of sections 4 and 5, provided that you also convey the +machine-readable Corresponding Source under the terms of this License, +in one of these ways: + + a) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by the + Corresponding Source fixed on a durable physical medium + customarily used for software interchange. + + b) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by a + written offer, valid for at least three years and valid for as + long as you offer spare parts or customer support for that product + model, to give anyone who possesses the object code either (1) a + copy of the Corresponding Source for all the software in the + product that is covered by this License, on a durable physical + medium customarily used for software interchange, for a price no + more than your reasonable cost of physically performing this + conveying of source, or (2) access to copy the + Corresponding Source from a network server at no charge. + + c) Convey individual copies of the object code with a copy of the + written offer to provide the Corresponding Source. This + alternative is allowed only occasionally and noncommercially, and + only if you received the object code with such an offer, in accord + with subsection 6b. + + d) Convey the object code by offering access from a designated + place (gratis or for a charge), and offer equivalent access to the + Corresponding Source in the same way through the same place at no + further charge. You need not require recipients to copy the + Corresponding Source along with the object code. If the place to + copy the object code is a network server, the Corresponding Source + may be on a different server (operated by you or a third party) + that supports equivalent copying facilities, provided you maintain + clear directions next to the object code saying where to find the + Corresponding Source. Regardless of what server hosts the + Corresponding Source, you remain obligated to ensure that it is + available for as long as needed to satisfy these requirements. + + e) Convey the object code using peer-to-peer transmission, provided + you inform other peers where the object code and Corresponding + Source of the work are being offered to the general public at no + charge under subsection 6d. + + A separable portion of the object code, whose source code is excluded +from the Corresponding Source as a System Library, need not be +included in conveying the object code work. + + A "User Product" is either (1) a "consumer product", which means any +tangible personal property which is normally used for personal, family, +or household purposes, or (2) anything designed or sold for incorporation +into a dwelling. In determining whether a product is a consumer product, +doubtful cases shall be resolved in favor of coverage. For a particular +product received by a particular user, "normally used" refers to a +typical or common use of that class of product, regardless of the status +of the particular user or of the way in which the particular user +actually uses, or expects or is expected to use, the product. A product +is a consumer product regardless of whether the product has substantial +commercial, industrial or non-consumer uses, unless such uses represent +the only significant mode of use of the product. + + "Installation Information" for a User Product means any methods, +procedures, authorization keys, or other information required to install +and execute modified versions of a covered work in that User Product from +a modified version of its Corresponding Source. The information must +suffice to ensure that the continued functioning of the modified object +code is in no case prevented or interfered with solely because +modification has been made. + + If you convey an object code work under this section in, or with, or +specifically for use in, a User Product, and the conveying occurs as +part of a transaction in which the right of possession and use of the +User Product is transferred to the recipient in perpetuity or for a +fixed term (regardless of how the transaction is characterized), the +Corresponding Source conveyed under this section must be accompanied +by the Installation Information. But this requirement does not apply +if neither you nor any third party retains the ability to install +modified object code on the User Product (for example, the work has +been installed in ROM). + + The requirement to provide Installation Information does not include a +requirement to continue to provide support service, warranty, or updates +for a work that has been modified or installed by the recipient, or for +the User Product in which it has been modified or installed. Access to a +network may be denied when the modification itself materially and +adversely affects the operation of the network or violates the rules and +protocols for communication across the network. + + Corresponding Source conveyed, and Installation Information provided, +in accord with this section must be in a format that is publicly +documented (and with an implementation available to the public in +source code form), and must require no special password or key for +unpacking, reading or copying. + + 7. Additional Terms. + + "Additional permissions" are terms that supplement the terms of this +License by making exceptions from one or more of its conditions. +Additional permissions that are applicable to the entire Program shall +be treated as though they were included in this License, to the extent +that they are valid under applicable law. If additional permissions +apply only to part of the Program, that part may be used separately +under those permissions, but the entire Program remains governed by +this License without regard to the additional permissions. + + When you convey a copy of a covered work, you may at your option +remove any additional permissions from that copy, or from any part of +it. (Additional permissions may be written to require their own +removal in certain cases when you modify the work.) You may place +additional permissions on material, added by you to a covered work, +for which you have or can give appropriate copyright permission. + + Notwithstanding any other provision of this License, for material you +add to a covered work, you may (if authorized by the copyright holders of +that material) supplement the terms of this License with terms: + + a) Disclaiming warranty or limiting liability differently from the + terms of sections 15 and 16 of this License; or + + b) Requiring preservation of specified reasonable legal notices or + author attributions in that material or in the Appropriate Legal + Notices displayed by works containing it; or + + c) Prohibiting misrepresentation of the origin of that material, or + requiring that modified versions of such material be marked in + reasonable ways as different from the original version; or + + d) Limiting the use for publicity purposes of names of licensors or + authors of the material; or + + e) Declining to grant rights under trademark law for use of some + trade names, trademarks, or service marks; or + + f) Requiring indemnification of licensors and authors of that + material by anyone who conveys the material (or modified versions of + it) with contractual assumptions of liability to the recipient, for + any liability that these contractual assumptions directly impose on + those licensors and authors. + + All other non-permissive additional terms are considered "further +restrictions" within the meaning of section 10. If the Program as you +received it, or any part of it, contains a notice stating that it is +governed by this License along with a term that is a further +restriction, you may remove that term. If a license document contains +a further restriction but permits relicensing or conveying under this +License, you may add to a covered work material governed by the terms +of that license document, provided that the further restriction does +not survive such relicensing or conveying. + + If you add terms to a covered work in accord with this section, you +must place, in the relevant source files, a statement of the +additional terms that apply to those files, or a notice indicating +where to find the applicable terms. + + Additional terms, permissive or non-permissive, may be stated in the +form of a separately written license, or stated as exceptions; +the above requirements apply either way. + + 8. Termination. + + You may not propagate or modify a covered work except as expressly +provided under this License. Any attempt otherwise to propagate or +modify it is void, and will automatically terminate your rights under +this License (including any patent licenses granted under the third +paragraph of section 11). + + However, if you cease all violation of this License, then your +license from a particular copyright holder is reinstated (a) +provisionally, unless and until the copyright holder explicitly and +finally terminates your license, and (b) permanently, if the copyright +holder fails to notify you of the violation by some reasonable means +prior to 60 days after the cessation. + + Moreover, your license from a particular copyright holder is +reinstated permanently if the copyright holder notifies you of the +violation by some reasonable means, this is the first time you have +received notice of violation of this License (for any work) from that +copyright holder, and you cure the violation prior to 30 days after +your receipt of the notice. + + Termination of your rights under this section does not terminate the +licenses of parties who have received copies or rights from you under +this License. If your rights have been terminated and not permanently +reinstated, you do not qualify to receive new licenses for the same +material under section 10. + + 9. Acceptance Not Required for Having Copies. + + You are not required to accept this License in order to receive or +run a copy of the Program. Ancillary propagation of a covered work +occurring solely as a consequence of using peer-to-peer transmission +to receive a copy likewise does not require acceptance. However, +nothing other than this License grants you permission to propagate or +modify any covered work. These actions infringe copyright if you do +not accept this License. Therefore, by modifying or propagating a +covered work, you indicate your acceptance of this License to do so. + + 10. Automatic Licensing of Downstream Recipients. + + Each time you convey a covered work, the recipient automatically +receives a license from the original licensors, to run, modify and +propagate that work, subject to this License. You are not responsible +for enforcing compliance by third parties with this License. + + An "entity transaction" is a transaction transferring control of an +organization, or substantially all assets of one, or subdividing an +organization, or merging organizations. If propagation of a covered +work results from an entity transaction, each party to that +transaction who receives a copy of the work also receives whatever +licenses to the work the party's predecessor in interest had or could +give under the previous paragraph, plus a right to possession of the +Corresponding Source of the work from the predecessor in interest, if +the predecessor has it or can get it with reasonable efforts. + + You may not impose any further restrictions on the exercise of the +rights granted or affirmed under this License. For example, you may +not impose a license fee, royalty, or other charge for exercise of +rights granted under this License, and you may not initiate litigation +(including a cross-claim or counterclaim in a lawsuit) alleging that +any patent claim is infringed by making, using, selling, offering for +sale, or importing the Program or any portion of it. + + 11. Patents. + + A "contributor" is a copyright holder who authorizes use under this +License of the Program or a work on which the Program is based. The +work thus licensed is called the contributor's "contributor version". + + A contributor's "essential patent claims" are all patent claims +owned or controlled by the contributor, whether already acquired or +hereafter acquired, that would be infringed by some manner, permitted +by this License, of making, using, or selling its contributor version, +but do not include claims that would be infringed only as a +consequence of further modification of the contributor version. For +purposes of this definition, "control" includes the right to grant +patent sublicenses in a manner consistent with the requirements of +this License. + + Each contributor grants you a non-exclusive, worldwide, royalty-free +patent license under the contributor's essential patent claims, to +make, use, sell, offer for sale, import and otherwise run, modify and +propagate the contents of its contributor version. + + In the following three paragraphs, a "patent license" is any express +agreement or commitment, however denominated, not to enforce a patent +(such as an express permission to practice a patent or covenant not to +sue for patent infringement). To "grant" such a patent license to a +party means to make such an agreement or commitment not to enforce a +patent against the party. + + If you convey a covered work, knowingly relying on a patent license, +and the Corresponding Source of the work is not available for anyone +to copy, free of charge and under the terms of this License, through a +publicly available network server or other readily accessible means, +then you must either (1) cause the Corresponding Source to be so +available, or (2) arrange to deprive yourself of the benefit of the +patent license for this particular work, or (3) arrange, in a manner +consistent with the requirements of this License, to extend the patent +license to downstream recipients. "Knowingly relying" means you have +actual knowledge that, but for the patent license, your conveying the +covered work in a country, or your recipient's use of the covered work +in a country, would infringe one or more identifiable patents in that +country that you have reason to believe are valid. + + If, pursuant to or in connection with a single transaction or +arrangement, you convey, or propagate by procuring conveyance of, a +covered work, and grant a patent license to some of the parties +receiving the covered work authorizing them to use, propagate, modify +or convey a specific copy of the covered work, then the patent license +you grant is automatically extended to all recipients of the covered +work and works based on it. + + A patent license is "discriminatory" if it does not include within +the scope of its coverage, prohibits the exercise of, or is +conditioned on the non-exercise of one or more of the rights that are +specifically granted under this License. You may not convey a covered +work if you are a party to an arrangement with a third party that is +in the business of distributing software, under which you make payment +to the third party based on the extent of your activity of conveying +the work, and under which the third party grants, to any of the +parties who would receive the covered work from you, a discriminatory +patent license (a) in connection with copies of the covered work +conveyed by you (or copies made from those copies), or (b) primarily +for and in connection with specific products or compilations that +contain the covered work, unless you entered into that arrangement, +or that patent license was granted, prior to 28 March 2007. + + Nothing in this License shall be construed as excluding or limiting +any implied license or other defenses to infringement that may +otherwise be available to you under applicable patent law. + + 12. No Surrender of Others' Freedom. + + If conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot convey a +covered work so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you may +not convey it at all. For example, if you agree to terms that obligate you +to collect a royalty for further conveying from those to whom you convey +the Program, the only way you could satisfy both those terms and this +License would be to refrain entirely from conveying the Program. + + 13. Use with the GNU Affero General Public License. + + Notwithstanding any other provision of this License, you have +permission to link or combine any covered work with a work licensed +under version 3 of the GNU Affero General Public License into a single +combined work, and to convey the resulting work. The terms of this +License will continue to apply to the part which is the covered work, +but the special requirements of the GNU Affero General Public License, +section 13, concerning interaction through a network will apply to the +combination as such. + + 14. Revised Versions of this License. + + The Free Software Foundation may publish revised and/or new versions of +the GNU General Public License from time to time. Such new versions will +be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + + Each version is given a distinguishing version number. If the +Program specifies that a certain numbered version of the GNU General +Public License "or any later version" applies to it, you have the +option of following the terms and conditions either of that numbered +version or of any later version published by the Free Software +Foundation. If the Program does not specify a version number of the +GNU General Public License, you may choose any version ever published +by the Free Software Foundation. + + If the Program specifies that a proxy can decide which future +versions of the GNU General Public License can be used, that proxy's +public statement of acceptance of a version permanently authorizes you +to choose that version for the Program. + + Later license versions may give you additional or different +permissions. However, no additional obligations are imposed on any +author or copyright holder as a result of your choosing to follow a +later version. + + 15. Disclaimer of Warranty. + + THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY +APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT +HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY +OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, +THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM +IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF +ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + + 16. Limitation of Liability. + + IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS +THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY +GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE +USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF +DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD +PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), +EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF +SUCH DAMAGES. + + 17. Interpretation of Sections 15 and 16. + + If the disclaimer of warranty and limitation of liability provided +above cannot be given local legal effect according to their terms, +reviewing courts shall apply local law that most closely approximates +an absolute waiver of all civil liability in connection with the +Program, unless a warranty or assumption of liability accompanies a +copy of the Program in return for a fee. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Programs + + If you develop a new program, and you want it to be of the greatest +possible use to the public, the best way to achieve this is to make it +free software which everyone can redistribute and change under these terms. + + To do so, attach the following notices to the program. It is safest +to attach them to the start of each source file to most effectively +state the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + ultimate-upscale-for-automatic1111 + Copyright (C) 2023 Mirzam + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see . + +Also add information on how to contact you by electronic and paper mail. + + If the program does terminal interaction, make it output a short +notice like this when it starts in an interactive mode: + + Copyright (C) 2023 Mirzam + This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. + This is free software, and you are welcome to redistribute it + under certain conditions; type `show c' for details. + +The hypothetical commands `show w' and `show c' should show the appropriate +parts of the General Public License. Of course, your program's commands +might be different; for a GUI interface, you would use an "about box". + + You should also get your employer (if you work as a programmer) or school, +if any, to sign a "copyright disclaimer" for the program, if necessary. +For more information on this, and how to apply and follow the GNU GPL, see +. + + The GNU General Public License does not permit incorporating your program +into proprietary programs. If your program is a subroutine library, you +may consider it more useful to permit linking proprietary applications with +the library. If this is what you want to do, use the GNU Lesser General +Public License instead of this License. But first, please read +. diff --git a/ultimate-upscale/README.md b/ultimate-upscale/README.md new file mode 100644 index 0000000000000000000000000000000000000000..3c73378ccd894a59b46f905368b9f284b2c69654 --- /dev/null +++ b/ultimate-upscale/README.md @@ -0,0 +1,119 @@ +# Ultimate SD Upscale extension for [AUTOMATIC1111 Stable Diffusion web UI](https://github.com/AUTOMATIC1111/stable-diffusion-webui) +Now you have the opportunity to use a large denoise (0.3-0.5) and not spawn many artifacts. Works on any video card, since you can use a 512x512 tile size and the image will converge. + +News channel: https://t.me/usdunews + +# Instructions +All instructions can be found on the project's [wiki](https://github.com/Coyote-A/ultimate-upscale-for-automatic1111/wiki). + +# Refs + +https://github.com/ssitu/ComfyUI_UltimateSDUpscale - Implementation for ComfyUI + +# Examples +More on [wiki page](https://github.com/Coyote-A/ultimate-upscale-for-automatic1111/wiki/Examples) + +
+ E1 + Original image + + ![Original](https://i.imgur.com/J8mRYOD.png) + + 2k upscaled. **Tile size**: 512, **Padding**: 32, **Mask blur**: 16, **Denoise**: 0.4 + ![2k upscale](https://i.imgur.com/0aKua4r.png) +
+ +
+ E2 + Original image + + ![Original](https://i.imgur.com/aALNI2w.png) + + 2k upscaled. **Tile size**: 768, **Padding**: 55, **Mask blur**: 20, **Denoise**: 0.35 + ![2k upscale](https://i.imgur.com/B5PHz0J.png) + + 4k upscaled. **Tile size**: 768, **Padding**: 55, **Mask blur**: 20, **Denoise**: 0.35 + ![4k upscale](https://i.imgur.com/tIUQ7TJ.jpg) +
+ +
+ E3 + Original image + + ![Original](https://i.imgur.com/AGtszA8.png) + + 4k upscaled. **Tile size**: 768, **Padding**: 55, **Mask blur**: 20, **Denoise**: 0.4 + ![4k upscale](https://i.imgur.com/LCYLfCs.jpg) +
+ +# API Usage + +```javascript +{ +"script_name" : "ultimate sd upscale", +"script_args" : [ + null, // _ (not used) + 512, // tile_width + 512, // tile_height + 8, // mask_blur + 32, // padding + 64, // seams_fix_width + 0.35, // seams_fix_denoise + 32, // seams_fix_padding + 0, // upscaler_index + true, // save_upscaled_image a.k.a Upscaled + 0, // redraw_mode + false, // save_seams_fix_image a.k.a Seams fix + 8, // seams_fix_mask_blur + 0, // seams_fix_type + 0, // target_size_type + 2048, // custom_width + 2048, // custom_height + 2 // custom_scale +] +} +``` +upscaler_index +| Value | | +|:-------------:| -----:| +| 0 | None | +| 1 | Lanczos | +| 2 | Nearest | +| 3 | ESRGAN_4x | +| 4 | LDSR | +| 5 | R-ESRGAN_4x+ | +| 6 | R-ESRGAN 4x+ Anime6B | +| 7 | ScuNET GAN | +| 8 | ScuNET PSNR | +| 9 | SwinIR 4x | + +redraw_mode +| Value | | +|:-------------:| -----:| +| 0 | Linear | +| 1 | Chess | +| 2 | None | + +seams_fix_mask_blur +| Value | | +|:-------------:| -----:| +| 0 | None | +| 1 | BAND_PASS | +| 2 | HALF_TILE | +| 3 | HALF_TILE_PLUS_INTERSECTIONS | + +seams_fix_type +| Value | | +|:-------------:| -----:| +| 0 | None | +| 1 | Band pass | +| 2 | Half tile offset pass | +| 3 | Half tile offset pass + intersections | + +seams_fix_type +| Value | | +|:-------------:| -----:| +| 0 | From img2img2 settings | +| 1 | Custom size | +| 2 | Scale from image size | + diff --git a/ultimate-upscale/scripts/ultimate-upscale.py b/ultimate-upscale/scripts/ultimate-upscale.py new file mode 100644 index 0000000000000000000000000000000000000000..0093cbe4a9e8b95ca1746aa19901c9d18a80215f --- /dev/null +++ b/ultimate-upscale/scripts/ultimate-upscale.py @@ -0,0 +1,557 @@ +import math +import gradio as gr +from PIL import Image, ImageDraw, ImageOps +from modules import processing, shared, images, devices, scripts +from modules.processing import StableDiffusionProcessing +from modules.processing import Processed +from modules.shared import opts, state +from enum import Enum + +class USDUMode(Enum): + LINEAR = 0 + CHESS = 1 + NONE = 2 + +class USDUSFMode(Enum): + NONE = 0 + BAND_PASS = 1 + HALF_TILE = 2 + HALF_TILE_PLUS_INTERSECTIONS = 3 + +class USDUpscaler(): + + def __init__(self, p, image, upscaler_index:int, save_redraw, save_seams_fix, tile_width, tile_height) -> None: + self.p:StableDiffusionProcessing = p + self.image:Image = image + self.scale_factor = math.ceil(max(p.width, p.height) / max(image.width, image.height)) + self.upscaler = shared.sd_upscalers[upscaler_index] + self.redraw = USDURedraw() + self.redraw.save = save_redraw + self.redraw.tile_width = tile_width if tile_width > 0 else tile_height + self.redraw.tile_height = tile_height if tile_height > 0 else tile_width + self.seams_fix = USDUSeamsFix() + self.seams_fix.save = save_seams_fix + self.seams_fix.tile_width = tile_width if tile_width > 0 else tile_height + self.seams_fix.tile_height = tile_height if tile_height > 0 else tile_width + self.initial_info = None + self.rows = math.ceil(self.p.height / self.redraw.tile_height) + self.cols = math.ceil(self.p.width / self.redraw.tile_width) + + def get_factor(self, num): + # Its just return, don't need elif + if num == 1: + return 2 + if num % 4 == 0: + return 4 + if num % 3 == 0: + return 3 + if num % 2 == 0: + return 2 + return 0 + + def get_factors(self): + scales = [] + current_scale = 1 + current_scale_factor = self.get_factor(self.scale_factor) + while current_scale_factor == 0: + self.scale_factor += 1 + current_scale_factor = self.get_factor(self.scale_factor) + while current_scale < self.scale_factor: + current_scale_factor = self.get_factor(self.scale_factor // current_scale) + scales.append(current_scale_factor) + current_scale = current_scale * current_scale_factor + if current_scale_factor == 0: + break + self.scales = enumerate(scales) + + def upscale(self): + # Log info + print(f"Canva size: {self.p.width}x{self.p.height}") + print(f"Image size: {self.image.width}x{self.image.height}") + print(f"Scale factor: {self.scale_factor}") + # Check upscaler is not empty + if self.upscaler.name == "None": + self.image = self.image.resize((self.p.width, self.p.height), resample=Image.LANCZOS) + return + # Get list with scale factors + self.get_factors() + # Upscaling image over all factors + for index, value in self.scales: + print(f"Upscaling iteration {index+1} with scale factor {value}") + self.image = self.upscaler.scaler.upscale(self.image, value, self.upscaler.data_path) + # Resize image to set values + self.image = self.image.resize((self.p.width, self.p.height), resample=Image.LANCZOS) + + def setup_redraw(self, redraw_mode, padding, mask_blur): + self.redraw.mode = USDUMode(redraw_mode) + self.redraw.enabled = self.redraw.mode != USDUMode.NONE + self.redraw.padding = padding + self.p.mask_blur = mask_blur + + def setup_seams_fix(self, padding, denoise, mask_blur, width, mode): + self.seams_fix.padding = padding + self.seams_fix.denoise = denoise + self.seams_fix.mask_blur = mask_blur + self.seams_fix.width = width + self.seams_fix.mode = USDUSFMode(mode) + self.seams_fix.enabled = self.seams_fix.mode != USDUSFMode.NONE + + def save_image(self): + if type(self.p.prompt) != list: + images.save_image(self.image, self.p.outpath_samples, "", self.p.seed, self.p.prompt, opts.samples_format, info=self.initial_info, p=self.p) + else: + images.save_image(self.image, self.p.outpath_samples, "", self.p.seed, self.p.prompt[0], opts.samples_format, info=self.initial_info, p=self.p) + + def calc_jobs_count(self): + redraw_job_count = (self.rows * self.cols) if self.redraw.enabled else 0 + seams_job_count = 0 + if self.seams_fix.mode == USDUSFMode.BAND_PASS: + seams_job_count = self.rows + self.cols - 2 + elif self.seams_fix.mode == USDUSFMode.HALF_TILE: + seams_job_count = self.rows * (self.cols - 1) + (self.rows - 1) * self.cols + elif self.seams_fix.mode == USDUSFMode.HALF_TILE_PLUS_INTERSECTIONS: + seams_job_count = self.rows * (self.cols - 1) + (self.rows - 1) * self.cols + (self.rows - 1) * (self.cols - 1) + + state.job_count = redraw_job_count + seams_job_count + + def print_info(self): + print(f"Tile size: {self.redraw.tile_width}x{self.redraw.tile_height}") + print(f"Tiles amount: {self.rows * self.cols}") + print(f"Grid: {self.rows}x{self.cols}") + print(f"Redraw enabled: {self.redraw.enabled}") + print(f"Seams fix mode: {self.seams_fix.mode.name}") + + def add_extra_info(self): + self.p.extra_generation_params["Ultimate SD upscale upscaler"] = self.upscaler.name + self.p.extra_generation_params["Ultimate SD upscale tile_width"] = self.redraw.tile_width + self.p.extra_generation_params["Ultimate SD upscale tile_height"] = self.redraw.tile_height + self.p.extra_generation_params["Ultimate SD upscale mask_blur"] = self.p.mask_blur + self.p.extra_generation_params["Ultimate SD upscale padding"] = self.redraw.padding + + def process(self): + state.begin() + self.calc_jobs_count() + self.result_images = [] + if self.redraw.enabled: + self.image = self.redraw.start(self.p, self.image, self.rows, self.cols) + self.initial_info = self.redraw.initial_info + self.result_images.append(self.image) + if self.redraw.save: + self.save_image() + + if self.seams_fix.enabled: + self.image = self.seams_fix.start(self.p, self.image, self.rows, self.cols) + self.initial_info = self.seams_fix.initial_info + self.result_images.append(self.image) + if self.seams_fix.save: + self.save_image() + state.end() + +class USDURedraw(): + + def init_draw(self, p, width, height): + p.inpaint_full_res = True + p.inpaint_full_res_padding = self.padding + p.width = math.ceil((self.tile_width+self.padding) / 64) * 64 + p.height = math.ceil((self.tile_height+self.padding) / 64) * 64 + mask = Image.new("L", (width, height), "black") + draw = ImageDraw.Draw(mask) + return mask, draw + + def calc_rectangle(self, xi, yi): + x1 = xi * self.tile_width + y1 = yi * self.tile_height + x2 = xi * self.tile_width + self.tile_width + y2 = yi * self.tile_height + self.tile_height + + return x1, y1, x2, y2 + + def linear_process(self, p, image, rows, cols): + mask, draw = self.init_draw(p, image.width, image.height) + for yi in range(rows): + for xi in range(cols): + if state.interrupted: + break + draw.rectangle(self.calc_rectangle(xi, yi), fill="white") + p.init_images = [image] + p.image_mask = mask + processed = processing.process_images(p) + draw.rectangle(self.calc_rectangle(xi, yi), fill="black") + if (len(processed.images) > 0): + image = processed.images[0] + + p.width = image.width + p.height = image.height + self.initial_info = processed.infotext(p, 0) + + return image + + def chess_process(self, p, image, rows, cols): + mask, draw = self.init_draw(p, image.width, image.height) + tiles = [] + # calc tiles colors + for yi in range(rows): + for xi in range(cols): + if state.interrupted: + break + if xi == 0: + tiles.append([]) + color = xi % 2 == 0 + if yi > 0 and yi % 2 != 0: + color = not color + tiles[yi].append(color) + + for yi in range(len(tiles)): + for xi in range(len(tiles[yi])): + if state.interrupted: + break + if not tiles[yi][xi]: + tiles[yi][xi] = not tiles[yi][xi] + continue + tiles[yi][xi] = not tiles[yi][xi] + draw.rectangle(self.calc_rectangle(xi, yi), fill="white") + p.init_images = [image] + p.image_mask = mask + processed = processing.process_images(p) + draw.rectangle(self.calc_rectangle(xi, yi), fill="black") + if (len(processed.images) > 0): + image = processed.images[0] + + for yi in range(len(tiles)): + for xi in range(len(tiles[yi])): + if state.interrupted: + break + if not tiles[yi][xi]: + continue + draw.rectangle(self.calc_rectangle(xi, yi), fill="white") + p.init_images = [image] + p.image_mask = mask + processed = processing.process_images(p) + draw.rectangle(self.calc_rectangle(xi, yi), fill="black") + if (len(processed.images) > 0): + image = processed.images[0] + + p.width = image.width + p.height = image.height + self.initial_info = processed.infotext(p, 0) + + return image + + def start(self, p, image, rows, cols): + self.initial_info = None + if self.mode == USDUMode.LINEAR: + return self.linear_process(p, image, rows, cols) + if self.mode == USDUMode.CHESS: + return self.chess_process(p, image, rows, cols) + +class USDUSeamsFix(): + + def init_draw(self, p): + self.initial_info = None + p.width = math.ceil((self.tile_width+self.padding) / 64) * 64 + p.height = math.ceil((self.tile_height+self.padding) / 64) * 64 + + def half_tile_process(self, p, image, rows, cols): + + self.init_draw(p) + processed = None + + gradient = Image.linear_gradient("L") + row_gradient = Image.new("L", (self.tile_width, self.tile_height), "black") + row_gradient.paste(gradient.resize( + (self.tile_width, self.tile_height//2), resample=Image.BICUBIC), (0, 0)) + row_gradient.paste(gradient.rotate(180).resize( + (self.tile_width, self.tile_height//2), resample=Image.BICUBIC), + (0, self.tile_height//2)) + col_gradient = Image.new("L", (self.tile_width, self.tile_height), "black") + col_gradient.paste(gradient.rotate(90).resize( + (self.tile_width//2, self.tile_height), resample=Image.BICUBIC), (0, 0)) + col_gradient.paste(gradient.rotate(270).resize( + (self.tile_width//2, self.tile_height), resample=Image.BICUBIC), (self.tile_width//2, 0)) + + p.denoising_strength = self.denoise + p.mask_blur = self.mask_blur + + for yi in range(rows-1): + for xi in range(cols): + if state.interrupted: + break + p.width = self.tile_width + p.height = self.tile_height + p.inpaint_full_res = True + p.inpaint_full_res_padding = self.padding + mask = Image.new("L", (image.width, image.height), "black") + mask.paste(row_gradient, (xi*self.tile_width, yi*self.tile_height + self.tile_height//2)) + + p.init_images = [image] + p.image_mask = mask + processed = processing.process_images(p) + if (len(processed.images) > 0): + image = processed.images[0] + + for yi in range(rows): + for xi in range(cols-1): + if state.interrupted: + break + p.width = self.tile_width + p.height = self.tile_height + p.inpaint_full_res = True + p.inpaint_full_res_padding = self.padding + mask = Image.new("L", (image.width, image.height), "black") + mask.paste(col_gradient, (xi*self.tile_width+self.tile_width//2, yi*self.tile_height)) + + p.init_images = [image] + p.image_mask = mask + processed = processing.process_images(p) + if (len(processed.images) > 0): + image = processed.images[0] + + p.width = image.width + p.height = image.height + if processed is not None: + self.initial_info = processed.infotext(p, 0) + + return image + + def half_tile_process_corners(self, p, image, rows, cols): + fixed_image = self.half_tile_process(p, image, rows, cols) + processed = None + self.init_draw(p) + gradient = Image.radial_gradient("L").resize( + (self.tile_width, self.tile_height), resample=Image.BICUBIC) + gradient = ImageOps.invert(gradient) + p.denoising_strength = self.denoise + #p.mask_blur = 0 + p.mask_blur = self.mask_blur + + for yi in range(rows-1): + for xi in range(cols-1): + if state.interrupted: + break + p.width = self.tile_width + p.height = self.tile_height + p.inpaint_full_res = True + p.inpaint_full_res_padding = 0 + mask = Image.new("L", (fixed_image.width, fixed_image.height), "black") + mask.paste(gradient, (xi*self.tile_width + self.tile_width//2, + yi*self.tile_height + self.tile_height//2)) + + p.init_images = [fixed_image] + p.image_mask = mask + processed = processing.process_images(p) + if (len(processed.images) > 0): + fixed_image = processed.images[0] + + p.width = fixed_image.width + p.height = fixed_image.height + if processed is not None: + self.initial_info = processed.infotext(p, 0) + + return fixed_image + + def band_pass_process(self, p, image, cols, rows): + + self.init_draw(p) + processed = None + + p.denoising_strength = self.denoise + p.mask_blur = 0 + + gradient = Image.linear_gradient("L") + mirror_gradient = Image.new("L", (256, 256), "black") + mirror_gradient.paste(gradient.resize((256, 128), resample=Image.BICUBIC), (0, 0)) + mirror_gradient.paste(gradient.rotate(180).resize((256, 128), resample=Image.BICUBIC), (0, 128)) + + row_gradient = mirror_gradient.resize((image.width, self.width), resample=Image.BICUBIC) + col_gradient = mirror_gradient.rotate(90).resize((self.width, image.height), resample=Image.BICUBIC) + + for xi in range(1, rows): + if state.interrupted: + break + p.width = self.width + self.padding * 2 + p.height = image.height + p.inpaint_full_res = True + p.inpaint_full_res_padding = self.padding + mask = Image.new("L", (image.width, image.height), "black") + mask.paste(col_gradient, (xi * self.tile_width - self.width // 2, 0)) + + p.init_images = [image] + p.image_mask = mask + processed = processing.process_images(p) + if (len(processed.images) > 0): + image = processed.images[0] + for yi in range(1, cols): + if state.interrupted: + break + p.width = image.width + p.height = self.width + self.padding * 2 + p.inpaint_full_res = True + p.inpaint_full_res_padding = self.padding + mask = Image.new("L", (image.width, image.height), "black") + mask.paste(row_gradient, (0, yi * self.tile_height - self.width // 2)) + + p.init_images = [image] + p.image_mask = mask + processed = processing.process_images(p) + if (len(processed.images) > 0): + image = processed.images[0] + + p.width = image.width + p.height = image.height + if processed is not None: + self.initial_info = processed.infotext(p, 0) + + return image + + def start(self, p, image, rows, cols): + if USDUSFMode(self.mode) == USDUSFMode.BAND_PASS: + return self.band_pass_process(p, image, rows, cols) + elif USDUSFMode(self.mode) == USDUSFMode.HALF_TILE: + return self.half_tile_process(p, image, rows, cols) + elif USDUSFMode(self.mode) == USDUSFMode.HALF_TILE_PLUS_INTERSECTIONS: + return self.half_tile_process_corners(p, image, rows, cols) + else: + return image + +class Script(scripts.Script): + def title(self): + return "Ultimate SD upscale" + + def show(self, is_img2img): + return is_img2img + + def ui(self, is_img2img): + + target_size_types = [ + "From img2img2 settings", + "Custom size", + "Scale from image size" + ] + + seams_fix_types = [ + "None", + "Band pass", + "Half tile offset pass", + "Half tile offset pass + intersections" + ] + + redrow_modes = [ + "Linear", + "Chess", + "None" + ] + + info = gr.HTML( + "

Will upscale the image depending on the selected target size type

") + + with gr.Row(): + target_size_type = gr.Dropdown(label="Target size type", choices=[k for k in target_size_types], type="index", + value=next(iter(target_size_types))) + + custom_width = gr.Slider(label='Custom width', minimum=64, maximum=8192, step=64, value=2048, visible=False, interactive=True) + custom_height = gr.Slider(label='Custom height', minimum=64, maximum=8192, step=64, value=2048, visible=False, interactive=True) + custom_scale = gr.Slider(label='Scale', minimum=1, maximum=16, step=0.01, value=2, visible=False, interactive=True) + + gr.HTML("

Redraw options:

") + with gr.Row(): + upscaler_index = gr.Radio(label='Upscaler', choices=[x.name for x in shared.sd_upscalers], + value=shared.sd_upscalers[0].name, type="index") + with gr.Row(): + redraw_mode = gr.Dropdown(label="Type", choices=[k for k in redrow_modes], type="index", value=next(iter(redrow_modes))) + tile_width = gr.Slider(minimum=0, maximum=2048, step=64, label='Tile width', value=512) + tile_height = gr.Slider(minimum=0, maximum=2048, step=64, label='Tile height', value=0) + mask_blur = gr.Slider(label='Mask blur', minimum=0, maximum=64, step=1, value=8) + padding = gr.Slider(label='Padding', minimum=0, maximum=512, step=1, value=32) + gr.HTML("

Seams fix:

") + with gr.Row(): + seams_fix_type = gr.Dropdown(label="Type", choices=[k for k in seams_fix_types], type="index", value=next(iter(seams_fix_types))) + seams_fix_denoise = gr.Slider(label='Denoise', minimum=0, maximum=1, step=0.01, value=0.35, visible=False, interactive=True) + seams_fix_width = gr.Slider(label='Width', minimum=0, maximum=128, step=1, value=64, visible=False, interactive=True) + seams_fix_mask_blur = gr.Slider(label='Mask blur', minimum=0, maximum=64, step=1, value=4, visible=False, interactive=True) + seams_fix_padding = gr.Slider(label='Padding', minimum=0, maximum=128, step=1, value=16, visible=False, interactive=True) + gr.HTML("

Save options:

") + with gr.Row(): + save_upscaled_image = gr.Checkbox(label="Upscaled", value=True) + save_seams_fix_image = gr.Checkbox(label="Seams fix", value=False) + + def select_fix_type(fix_index): + all_visible = fix_index != 0 + mask_blur_visible = fix_index == 2 or fix_index == 3 + width_visible = fix_index == 1 + + return [gr.update(visible=all_visible), + gr.update(visible=width_visible), + gr.update(visible=mask_blur_visible), + gr.update(visible=all_visible)] + + seams_fix_type.change( + fn=select_fix_type, + inputs=seams_fix_type, + outputs=[seams_fix_denoise, seams_fix_width, seams_fix_mask_blur, seams_fix_padding] + ) + + def select_scale_type(scale_index): + is_custom_size = scale_index == 1 + is_custom_scale = scale_index == 2 + + return [gr.update(visible=is_custom_size), + gr.update(visible=is_custom_size), + gr.update(visible=is_custom_scale), + ] + + target_size_type.change( + fn=select_scale_type, + inputs=target_size_type, + outputs=[custom_width, custom_height, custom_scale] + ) + + return [info, tile_width, tile_height, mask_blur, padding, seams_fix_width, seams_fix_denoise, seams_fix_padding, + upscaler_index, save_upscaled_image, redraw_mode, save_seams_fix_image, seams_fix_mask_blur, + seams_fix_type, target_size_type, custom_width, custom_height, custom_scale] + + def run(self, p, _, tile_width, tile_height, mask_blur, padding, seams_fix_width, seams_fix_denoise, seams_fix_padding, + upscaler_index, save_upscaled_image, redraw_mode, save_seams_fix_image, seams_fix_mask_blur, + seams_fix_type, target_size_type, custom_width, custom_height, custom_scale): + + # Init + processing.fix_seed(p) + devices.torch_gc() + + p.do_not_save_grid = True + p.do_not_save_samples = True + p.inpaint_full_res = False + + p.inpainting_fill = 1 + p.n_iter = 1 + p.batch_size = 1 + + seed = p.seed + + # Init image + init_img = p.init_images[0] + if init_img == None: + return Processed(p, [], seed, "Empty image") + init_img = images.flatten(init_img, opts.img2img_background_color) + + #override size + if target_size_type == 1: + p.width = custom_width + p.height = custom_height + if target_size_type == 2: + p.width = math.ceil((init_img.width * custom_scale) / 64) * 64 + p.height = math.ceil((init_img.height * custom_scale) / 64) * 64 + + # Upscaling + upscaler = USDUpscaler(p, init_img, upscaler_index, save_upscaled_image, save_seams_fix_image, tile_width, tile_height) + upscaler.upscale() + + # Drawing + upscaler.setup_redraw(redraw_mode, padding, mask_blur) + upscaler.setup_seams_fix(seams_fix_padding, seams_fix_denoise, seams_fix_mask_blur, seams_fix_width, seams_fix_type) + upscaler.print_info() + upscaler.add_extra_info() + upscaler.process() + result_images = upscaler.result_images + + return Processed(p, result_images, seed, upscaler.initial_info if upscaler.initial_info is not None else "") +