diff --git a/week1/Day1_testing_in_llama.ipynb b/week1/Day1_testing_in_llama.ipynb new file mode 100644 index 0000000..28eea61 --- /dev/null +++ b/week1/Day1_testing_in_llama.ipynb @@ -0,0 +1,357 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": null, + "id": "d5ce5658-9ba9-487c-bb31-f9030039990e", + "metadata": {}, + "outputs": [], + "source": [ + "import os\n", + "import requests\n", + "from dotenv import load_dotenv\n", + "from bs4 import BeautifulSoup\n", + "from IPython.display import Markdown, display\n", + "from openai import OpenAI\n" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "eec2b3ad-7b6f-4fe1-9e38-9ddbacf6adc6", + "metadata": {}, + "outputs": [], + "source": [ + "load_dotenv(override=True)\n", + "api_key=os.getenv(\"OPENAI_API_KEY\")\n", + "\n", + "if not api_key:\n", + " print(\"No API key was found - please head over to the troubleshooting notebook in this folder to identify & fix!\")\n", + "elif not api_key.startswith(\"sk-proj-\"):\n", + " print(\"An API key was found, but it doesn't start sk-proj-; please check you're using the right key - see troubleshooting notebook\")\n", + "elif api_key.strip()!=api_key:\n", + " print(\"An API key was found, but it looks like it might have space or tab characters at the start or end - please remove them\")\n", + "else:\n", + " print(\"API key found and looks good so far!\") " + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "fbb17244-b2b6-4494-969a-e0192115ef96", + "metadata": {}, + "outputs": [], + "source": [ + "# imports\n", + "\n", + "import requests\n", + "from bs4 import BeautifulSoup\n", + "from IPython.display import Markdown, display" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "642d7ffb-94a9-40c5-bf1f-9bc4570efb58", + "metadata": {}, + "outputs": [], + "source": [ + "# Constants\n", + "\n", + "OLLAMA_API = \"http://localhost:11434/api/chat\"\n", + "HEADERS = {\"Content-Type\": \"application/json\"}\n", + "MODEL = \"llama3.2\"" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "c90b4384-1a4b-4cad-8d3d-331c46d4c7f1", + "metadata": {}, + "outputs": [], + "source": [ + "# Create a messages list using the same format that we used for OpenAI\n", + "\n", + "messages = [\n", + " {\"role\": \"user\", \"content\": \"Describelangflow\"}\n", + "]" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "9c604ab2-6c25-4c2f-a6a2-60540ff74ca0", + "metadata": {}, + "outputs": [], + "source": [ + "payload = {\n", + " \"model\": MODEL,\n", + " \"messages\": messages,\n", + " \"stream\": False\n", + " }" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "5629b49f-6ca9-466f-ad60-4d40a3b15321", + "metadata": {}, + "outputs": [], + "source": [ + "response = requests.post(OLLAMA_API, json=payload, headers=HEADERS)\n", + "print(response.json()['message']['content'])" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "5a88d730-1c7b-4e1e-b143-5a630a2f52bd", + "metadata": {}, + "outputs": [], + "source": [ + "import ollama\n", + "\n", + "response = ollama.chat(model=MODEL, messages=messages)\n", + "print(response['message']['content'])" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "62155b78-de4a-435b-867b-35b6c4b21f48", + "metadata": {}, + "outputs": [], + "source": [ + "# A class to represent a Webpage\n", + "# If you're not familiar with Classes, check out the \"Intermediate Python\" notebook\n", + "\n", + "# Some websites need you to use proper headers when fetching them:\n", + "headers = {\n", + " \"User-Agent\": \"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36\"\n", + "}\n", + "\n", + "class Website:\n", + "\n", + " def __init__(self, url):\n", + " \"\"\"\n", + " Create this Website object from the given url using the BeautifulSoup library\n", + " \"\"\"\n", + " self.url = url\n", + " response = requests.get(url, headers=headers)\n", + " soup = BeautifulSoup(response.content, 'html.parser')\n", + " self.title = soup.title.string if soup.title else \"No title found\"\n", + " for irrelevant in soup.body([\"script\", \"style\", \"img\", \"input\"]):\n", + " irrelevant.decompose()\n", + " self.text = soup.body.get_text(separator=\"\\n\", strip=True)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "cd93d7b6-916a-45b8-9dfe-822a15c9a501", + "metadata": {}, + "outputs": [], + "source": [ + "ed = Website(\"https://edwarddonner.com\")\n", + "print(ed.title)\n", + "print(ed.text)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "eea40735-c580-4d25-9317-c951e53faceb", + "metadata": {}, + "outputs": [], + "source": [ + "# And now: call the OpenAI API. You will get very familiar with this!\n", + "\n", + "def summarize(url):\n", + " website = Website(url)\n", + " response = ollama.chat(\n", + " model = \"llama3.2\",\n", + " messages = messages_for(website)\n", + " )\n", + " return response['message']['content']" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "cf844513-2b74-4306-9328-573d4996b772", + "metadata": {}, + "outputs": [], + "source": [ + "summarize(\"https://edwarddonner.com\")" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "f5c35dfb-d38d-4c59-85ed-e7551175268b", + "metadata": {}, + "outputs": [], + "source": [ + "system_prompt = \"You are an assistant that analyzes the contents of a website \\\n", + "and provides a short summary, ignoring text that might be navigation related. \\\n", + "Respond in markdown.\"" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "ca1fa5e7-44ce-45ae-a2ff-c38bc239f101", + "metadata": {}, + "outputs": [], + "source": [ + "def user_prompt_for(website):\n", + " user_prompt = f\"You are looking at a website titled {website.title}\"\n", + " user_prompt += \"\\nThe contents of this website is as follows; \\\n", + "please provide a short summary of this website in markdown. \\\n", + "If it includes news or announcements, then summarize these too.\\n\\n\"\n", + " user_prompt += website.text\n", + " return user_prompt" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "52b5a899-3f96-4e45-849b-bba4a3f848de", + "metadata": {}, + "outputs": [], + "source": [ + "print(user_prompt_for(ed))" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "f11f9d7d-8eb5-410b-b27c-a3e086d5bf59", + "metadata": {}, + "outputs": [], + "source": [ + "messages = [\n", + " {\"role\": \"system\", \"content\": \"You are a snarky assistant\"},\n", + " {\"role\": \"user\", \"content\": \"What is 2 + 2?\"}\n", + "]" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "56c19a9c-4c69-4b6d-b9ac-c3b884efb8b1", + "metadata": {}, + "outputs": [], + "source": [ + " response = ollama.chat(\n", + " model = \"llama3.2\",\n", + " messages = messages\n", + " )\n", + " print(response['message']['content'])" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "0c05859c-4978-4b32-b971-0ea5d0147f00", + "metadata": {}, + "outputs": [], + "source": [ + "# See how this function creates exactly the format above\n", + "\n", + "def messages_for(website):\n", + " return [\n", + " {\"role\": \"system\", \"content\": system_prompt},\n", + " {\"role\": \"user\", \"content\": user_prompt_for(website)}\n", + " ]" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "a33dd65c-01f9-4a51-bc44-74427eafef42", + "metadata": {}, + "outputs": [], + "source": [ + "messages_for(ed)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "a5593d92-2f3c-44c8-abdd-9089f04ce171", + "metadata": {}, + "outputs": [], + "source": [ + "def summarize(url):\n", + " website = Website(url)\n", + " response = ollama.chat(\n", + " model = \"llama3.2\",\n", + " messages = messages_for(website)\n", + " )\n", + " return response['message']['content']" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "6f75cc47-c03e-42fd-acdf-e980031c9976", + "metadata": {}, + "outputs": [], + "source": [ + "summarize(\"https://edwarddonner.com\")" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "2d156ede-c20f-4569-997f-cd61e7b9c667", + "metadata": {}, + "outputs": [], + "source": [ + "def display_summary(url):\n", + " summary = summarize(url)\n", + " display(Markdown(summary))" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "81f3d230-ed53-400f-b215-2ef9f6a92935", + "metadata": {}, + "outputs": [], + "source": [ + "display_summary(\"https://edwarddonner.com\")" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "e17cd862-44e5-4af9-9dcc-7ee3d489a45d", + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3 (ipykernel)", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.11.11" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/week1/Guide to Jupyter.ipynb b/week1/Guide to Jupyter.ipynb index ebcc9f0..8e1956c 100644 --- a/week1/Guide to Jupyter.ipynb +++ b/week1/Guide to Jupyter.ipynb @@ -32,10 +32,21 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 1, "id": "33d37cd8-55c9-4e03-868c-34aa9cab2c80", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "4" + ] + }, + "execution_count": 1, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "# Click anywhere in this cell and press Shift + Return\n", "\n", diff --git a/week1/day2 EXERCISE.ipynb b/week1/day2 EXERCISE.ipynb index 2c079f1..7dba6e2 100644 --- a/week1/day2 EXERCISE.ipynb +++ b/week1/day2 EXERCISE.ipynb @@ -68,7 +68,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 1, "id": "4e2a9393-7767-488e-a8bf-27c12dca35bd", "metadata": {}, "outputs": [], @@ -82,7 +82,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 2, "id": "29ddd15d-a3c5-4f4e-a678-873f56162724", "metadata": {}, "outputs": [], @@ -96,7 +96,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 3, "id": "dac0a679-599c-441f-9bf2-ddc73d35b940", "metadata": {}, "outputs": [], @@ -110,7 +110,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 4, "id": "7bb9c624-14f0-4945-a719-8ddb64f66f47", "metadata": {}, "outputs": [], @@ -149,6 +149,14 @@ "print(response.json()['message']['content'])" ] }, + { + "cell_type": "code", + "execution_count": null, + "id": "3c03f874-e628-4a92-9b36-b9769bc8716f", + "metadata": {}, + "outputs": [], + "source": [] + }, { "cell_type": "markdown", "id": "6a021f13-d6a1-4b96-8e18-4eae49d876fe", @@ -184,10 +192,18 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 14, "id": "23057e00-b6fc-4678-93a9-6b31cb704bff", "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "ChatCompletion(id='chatcmpl-269', choices=[Choice(finish_reason='stop', index=0, logprobs=None, message=ChatCompletionMessage(content='Generative AI has numerous business applications across various industries, including:\\n\\n1. **Content Creation**: Generative AI can be used to generate high-quality content such as articles, social media posts, and product descriptions, reducing the need for human writers.\\n2. **Product Design**: Generative AI-powered tools can create innovative product designs, prototypes, and recommendations based on market trends and customer feedback.\\n3. **Marketing Automation**: Generative AI can be used to personalize marketing campaigns, generate targeted ads, and optimize email marketing strategies.\\n4. **Data Analysis**: Generative AI algorithms can analyze large datasets, identify patterns, and make predictions, helping businesses gain insights into customer behavior and preferences.\\n5. **Virtual Assistants**: Generative AI-powered chatbots and virtual assistants can provide 24/7 support, answer customer queries, and route complex issues to human representatives.\\n6. **Image and Video Generation**: Generative AI can create stunning images and videos for marketing campaigns, social media, and advertising, reducing the need for expensive creative teams.\\n7. **Language Translation**: Generative AI-powered translation tools can help businesses communicate with international customers, clients, or partners in their native languages.\\n8. **Predictive Maintenance**: Generative AI algorithms can analyze sensor data from machines and predict when maintenance is needed, reducing downtime and increasing operational efficiency.\\n9. **Customer Segmentation**: Generative AI can analyze customer data and create detailed segmentations to personalize marketing messages, improve product offerings, and enhance overall customer experience.\\n10. **Business Process Automation**: Generative AI-powered automation tools can streamline business processes, reduce manual workloads, and increase productivity.\\n\\nIn terms of specific industries, some examples of Generative AI applications include:\\n\\n* **Finance and Banking**:\\n + Credit risk scoring\\n + Loan origination\\n + Portfolio optimization\\n* **Healthcare**:\\n + Medical image analysis\\n + Clinical decision support\\n + Patient engagement platforms\\n* **Customer Service**:\\n + Chatbots and virtual assistants\\n + Text analysis and sentiment analysis\\n + Personalized customer experiences\\n* **Manufacturing and Supply Chain**:\\n + Quality control analytics\\n + Predictive maintenance\\n + Inventory optimization\\n\\nThese are just a few examples of the many potential business applications of Generative AI. As the technology continues to evolve, we can expect to see even more innovative use cases emerge across industries.', refusal=None, role='assistant', annotations=None, audio=None, function_call=None, tool_calls=None))], created=1742826626, model='llama3.2', object='chat.completion', service_tier=None, system_fingerprint='fp_ollama', usage=CompletionUsage(completion_tokens=474, prompt_tokens=35, total_tokens=509, completion_tokens_details=None, prompt_tokens_details=None))\n" + ] + } + ], "source": [ "# There's actually an alternative approach that some people might prefer\n", "# You can use the OpenAI client python library to call Ollama:\n", @@ -200,7 +216,7 @@ " messages=messages\n", ")\n", "\n", - "print(response.choices[0].message.content)" + "print(response)" ] }, { @@ -248,26 +264,1065 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 15, "id": "cf9eb44e-fe5b-47aa-b719-0bb63669ab3d", "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\u001b[?2026h\u001b[?25l\u001b[1Gpulling manifest ⠋ \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[1Gpulling manifest ⠹ \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[1Gpulling manifest ⠹ \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[1Gpulling manifest ⠸ \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[1Gpulling manifest ⠼ \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[1Gpulling manifest ⠴ \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[1Gpulling manifest ⠦ \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[1Gpulling manifest ⠧ \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[1Gpulling manifest ⠇ \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[1Gpulling manifest � \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[1Gpulling manifest ⠋ \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[1Gpulling manifest ⠹ \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[1Gpulling manifest ⠹ \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[1Gpulling manifest ⠸ \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[1Gpulling manifest ⠴ \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[1Gpulling manifest ⠴ \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[1Gpulling manifest ⠧ \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 0% ▕ � 0 B/1.1 GB \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 0% ▕ � 0 B/1.1 GB \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 0% ▕ � 0 B/1.1 GB \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 0% ▕ � 0 B/1.1 GB \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 0% ▕ � 0 B/1.1 GB \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 0% ▕ � 0 B/1.1 GB \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 0% ▕ � 0 B/1.1 GB \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 0% ▕ � 540 KB/1.1 GB \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 0% ▕ � 1.5 MB/1.1 GB \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 0% ▕ � 2.4 MB/1.1 GB \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 0% ▕ � 3.0 MB/1.1 GB \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 0% ▕ � 4.0 MB/1.1 GB 3.4 MB/s 5m24s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 0% ▕ � 5.2 MB/1.1 GB 3.4 MB/s 5m24s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 1% ▕ � 6.0 MB/1.1 GB 3.4 MB/s 5m24s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 1% ▕ � 7.4 MB/1.1 GB 3.4 MB/s 5m23s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 1% ▕ � 8.7 MB/1.1 GB 3.4 MB/s 5m23s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 1% ▕ � 9.4 MB/1.1 GB 3.4 MB/s 5m23s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 1% ▕ � 10 MB/1.1 GB 3.4 MB/s 5m22s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 1% ▕ � 12 MB/1.1 GB 3.4 MB/s 5m22s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 1% ▕ � 12 MB/1.1 GB 3.4 MB/s 5m22s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 1% ▕ � 14 MB/1.1 GB 3.4 MB/s 5m21s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 1% ▕ � 15 MB/1.1 GB 7.5 MB/s 2m26s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 1% ▕ � 16 MB/1.1 GB 7.5 MB/s 2m26s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 2% ▕ � 18 MB/1.1 GB 7.5 MB/s 2m26s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 2% ▕ � 20 MB/1.1 GB 7.5 MB/s 2m26s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 2% ▕ � 21 MB/1.1 GB 7.5 MB/s 2m26s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 2% ▕ � 23 MB/1.1 GB 7.5 MB/s 2m25s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 2% ▕ � 24 MB/1.1 GB 7.5 MB/s 2m25s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 2% ▕ � 26 MB/1.1 GB 7.5 MB/s 2m25s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 2% ▕ � 27 MB/1.1 GB 7.5 MB/s 2m25s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 3% ▕ � 29 MB/1.1 GB 7.5 MB/s 2m25s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 3% ▕ � 30 MB/1.1 GB 10 MB/s 1m47s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 3% ▕ � 32 MB/1.1 GB 10 MB/s 1m47s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 3% ▕ � 34 MB/1.1 GB 10 MB/s 1m46s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 3% ▕ � 37 MB/1.1 GB 10 MB/s 1m46s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 3% ▕ � 38 MB/1.1 GB 10 MB/s 1m46s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 4% ▕ � 40 MB/1.1 GB 10 MB/s 1m46s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 4% ▕ � 42 MB/1.1 GB 10 MB/s 1m46s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 4% ▕ � 44 MB/1.1 GB 10 MB/s 1m45s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 4% ▕ � 46 MB/1.1 GB 10 MB/s 1m45s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 4% ▕ � 47 MB/1.1 GB 10 MB/s 1m45s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 4% ▕ � 50 MB/1.1 GB 12 MB/s 1m25s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 5% ▕ � 51 MB/1.1 GB 12 MB/s 1m24s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 5% ▕ � 52 MB/1.1 GB 12 MB/s 1m24s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 5% ▕ � 54 MB/1.1 GB 12 MB/s 1m24s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 5% ▕ � 57 MB/1.1 GB 12 MB/s 1m24s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 5% ▕ � 58 MB/1.1 GB 12 MB/s 1m24s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 5% ▕ � 60 MB/1.1 GB 12 MB/s 1m24s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 6% ▕ � 63 MB/1.1 GB 12 MB/s 1m23s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 6% ▕ � 65 MB/1.1 GB 12 MB/s 1m23s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 6% ▕ � 67 MB/1.1 GB 12 MB/s 1m23s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 6% ▕ � 69 MB/1.1 GB 13 MB/s 1m15s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 6% ▕█ � 71 MB/1.1 GB 13 MB/s 1m15s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 7% ▕█ � 73 MB/1.1 GB 13 MB/s 1m15s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 7% ▕█ � 75 MB/1.1 GB 13 MB/s 1m15s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 7% ▕█ � 76 MB/1.1 GB 13 MB/s 1m14s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 7% ▕█ � 79 MB/1.1 GB 13 MB/s 1m14s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 7% ▕█ � 81 MB/1.1 GB 13 MB/s 1m14s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 7% ▕█ � 82 MB/1.1 GB 13 MB/s 1m14s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 8% ▕█ � 84 MB/1.1 GB 13 MB/s 1m14s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 8% ▕█ � 87 MB/1.1 GB 13 MB/s 1m14s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 8% ▕█ � 88 MB/1.1 GB 13 MB/s 1m14s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 8% ▕█ � 90 MB/1.1 GB 14 MB/s 1m8s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 8% ▕█ � 93 MB/1.1 GB 14 MB/s 1m8s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 9% ▕█ � 95 MB/1.1 GB 14 MB/s 1m8s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 9% ▕█ � 97 MB/1.1 GB 14 MB/s 1m8s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 9% ▕█ � 99 MB/1.1 GB 14 MB/s 1m8s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 9% ▕█ � 101 MB/1.1 GB 14 MB/s 1m8s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 9% ▕█ � 102 MB/1.1 GB 14 MB/s 1m7s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 9% ▕█ � 105 MB/1.1 GB 14 MB/s 1m7s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 10% ▕█ � 107 MB/1.1 GB 14 MB/s 1m7s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 10% ▕█ � 108 MB/1.1 GB 14 MB/s 1m7s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 10% ▕█ � 111 MB/1.1 GB 15 MB/s 1m3s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 10% ▕█ � 112 MB/1.1 GB 15 MB/s 1m3s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 10% ▕█ � 115 MB/1.1 GB 15 MB/s 1m3s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 11% ▕█ � 117 MB/1.1 GB 15 MB/s 1m3s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 11% ▕█ � 118 MB/1.1 GB 15 MB/s 1m3s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 11% ▕█ � 121 MB/1.1 GB 15 MB/s 1m3s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 11% ▕█ � 123 MB/1.1 GB 15 MB/s 1m3s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 11% ▕█ � 125 MB/1.1 GB 15 MB/s 1m3s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 11% ▕█ � 126 MB/1.1 GB 15 MB/s 1m2s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 12% ▕█ � 129 MB/1.1 GB 15 MB/s 1m2s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 12% ▕█ � 130 MB/1.1 GB 16 MB/s 1m0s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 12% ▕█ � 132 MB/1.1 GB 16 MB/s 1m0s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 12% ▕█ � 134 MB/1.1 GB 16 MB/s 1m0s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 12% ▕█ � 135 MB/1.1 GB 16 MB/s 1m0s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 12% ▕█ � 137 MB/1.1 GB 16 MB/s 1m0s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 13% ▕██ � 140 MB/1.1 GB 16 MB/s 59s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 13% ▕██ � 142 MB/1.1 GB 16 MB/s 59s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 13% ▕██ � 143 MB/1.1 GB 16 MB/s 59s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 13% ▕██ � 146 MB/1.1 GB 16 MB/s 59s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 13% ▕██ � 147 MB/1.1 GB 16 MB/s 59s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 13% ▕██ � 149 MB/1.1 GB 16 MB/s 58s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 14% ▕██ � 152 MB/1.1 GB 16 MB/s 57s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 14% ▕██ � 153 MB/1.1 GB 16 MB/s 57s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 14% ▕██ � 156 MB/1.1 GB 16 MB/s 57s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 14% ▕██ � 158 MB/1.1 GB 16 MB/s 57s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 14% ▕██ � 159 MB/1.1 GB 16 MB/s 57s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 15% ▕██ � 162 MB/1.1 GB 16 MB/s 57s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 15% ▕██ � 164 MB/1.1 GB 16 MB/s 57s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 15% ▕██ � 166 MB/1.1 GB 16 MB/s 57s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 15% ▕██ � 167 MB/1.1 GB 16 MB/s 57s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 15% ▕██ � 169 MB/1.1 GB 18 MB/s 51s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 15% ▕██ � 171 MB/1.1 GB 18 MB/s 51s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 15% ▕██ � 172 MB/1.1 GB 18 MB/s 51s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 16% ▕██ � 174 MB/1.1 GB 18 MB/s 51s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 16% ▕██ � 175 MB/1.1 GB 18 MB/s 50s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 16% ▕██ � 177 MB/1.1 GB 18 MB/s 50s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 16% ▕██ � 180 MB/1.1 GB 18 MB/s 50s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 16% ▕██ � 181 MB/1.1 GB 18 MB/s 50s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 16% ▕██ � 183 MB/1.1 GB 18 MB/s 50s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 17% ▕██ � 186 MB/1.1 GB 18 MB/s 50s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 17% ▕██ � 187 MB/1.1 GB 18 MB/s 50s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 17% ▕██ � 190 MB/1.1 GB 19 MB/s 47s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 17% ▕██ � 192 MB/1.1 GB 19 MB/s 47s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 17% ▕██ � 193 MB/1.1 GB 19 MB/s 47s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 18% ▕██ � 196 MB/1.1 GB 19 MB/s 47s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 18% ▕██ � 198 MB/1.1 GB 19 MB/s 47s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 18% ▕██ � 199 MB/1.1 GB 19 MB/s 47s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 18% ▕██ � 202 MB/1.1 GB 19 MB/s 47s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 18% ▕██ � 204 MB/1.1 GB 19 MB/s 47s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 19% ▕██ � 207 MB/1.1 GB 19 MB/s 47s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 19% ▕██ � 208 MB/1.1 GB 19 MB/s 47s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 19% ▕███ � 211 MB/1.1 GB 19 MB/s 45s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 19% ▕███ � 212 MB/1.1 GB 19 MB/s 45s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 19% ▕███ � 214 MB/1.1 GB 19 MB/s 45s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 19% ▕███ � 217 MB/1.1 GB 19 MB/s 45s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 20% ▕███ � 219 MB/1.1 GB 19 MB/s 45s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 20% ▕███ � 220 MB/1.1 GB 19 MB/s 44s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 20% ▕███ � 222 MB/1.1 GB 19 MB/s 44s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 20% ▕███ � 223 MB/1.1 GB 19 MB/s 44s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 20% ▕███ � 226 MB/1.1 GB 19 MB/s 44s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 20% ▕███ � 228 MB/1.1 GB 19 MB/s 44s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 21% ▕███ � 231 MB/1.1 GB 19 MB/s 44s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 21% ▕███ � 232 MB/1.1 GB 19 MB/s 44s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 21% ▕███ � 234 MB/1.1 GB 19 MB/s 44s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 21% ▕███ � 236 MB/1.1 GB 19 MB/s 44s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 21% ▕███ � 238 MB/1.1 GB 19 MB/s 43s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 22% ▕███ � 241 MB/1.1 GB 19 MB/s 43s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 22% ▕███ � 242 MB/1.1 GB 19 MB/s 43s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 22% ▕███ � 244 MB/1.1 GB 19 MB/s 43s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 22% ▕███ � 247 MB/1.1 GB 19 MB/s 43s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 22% ▕███ � 248 MB/1.1 GB 19 MB/s 43s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 22% ▕███ � 250 MB/1.1 GB 20 MB/s 42s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 23% ▕███ � 253 MB/1.1 GB 20 MB/s 42s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 23% ▕███ � 254 MB/1.1 GB 20 MB/s 42s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 23% ▕███ � 256 MB/1.1 GB 20 MB/s 42s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 23% ▕███ � 259 MB/1.1 GB 20 MB/s 42s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 23% ▕███ � 260 MB/1.1 GB 20 MB/s 42s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 23% ▕███ � 262 MB/1.1 GB 20 MB/s 42s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 24% ▕███ � 264 MB/1.1 GB 20 MB/s 42s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 24% ▕███ � 266 MB/1.1 GB 20 MB/s 42s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 24% ▕███ � 267 MB/1.1 GB 20 MB/s 42s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 24% ▕███ � 270 MB/1.1 GB 20 MB/s 42s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 24% ▕███ � 271 MB/1.1 GB 20 MB/s 42s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 25% ▕███ � 273 MB/1.1 GB 20 MB/s 42s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 25% ▕███ � 276 MB/1.1 GB 20 MB/s 41s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 25% ▕███ � 278 MB/1.1 GB 20 MB/s 41s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 25% ▕████ � 279 MB/1.1 GB 20 MB/s 41s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 25% ▕████ � 282 MB/1.1 GB 20 MB/s 41s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 25% ▕████ � 283 MB/1.1 GB 20 MB/s 41s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 26% ▕████ � 286 MB/1.1 GB 20 MB/s 41s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 26% ▕████ � 288 MB/1.1 GB 20 MB/s 41s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 26% ▕████ � 289 MB/1.1 GB 20 MB/s 41s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 26% ▕████ � 292 MB/1.1 GB 20 MB/s 41s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 26% ▕████ � 294 MB/1.1 GB 20 MB/s 40s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 27% ▕████ � 296 MB/1.1 GB 20 MB/s 40s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 27% ▕████ � 298 MB/1.1 GB 20 MB/s 40s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 27% ▕████ � 300 MB/1.1 GB 20 MB/s 40s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 27% ▕████ � 301 MB/1.1 GB 20 MB/s 40s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 27% ▕████ � 303 MB/1.1 GB 20 MB/s 40s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 27% ▕████ � 305 MB/1.1 GB 20 MB/s 40s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 27% ▕████ � 307 MB/1.1 GB 20 MB/s 40s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 28% ▕████ � 309 MB/1.1 GB 20 MB/s 40s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 28% ▕████ � 312 MB/1.1 GB 20 MB/s 40s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 28% ▕████ � 313 MB/1.1 GB 20 MB/s 40s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 28% ▕████ � 315 MB/1.1 GB 20 MB/s 40s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 28% ▕████ � 318 MB/1.1 GB 20 MB/s 39s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 29% ▕████ � 319 MB/1.1 GB 20 MB/s 39s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 29% ▕████ � 321 MB/1.1 GB 20 MB/s 39s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 29% ▕████ � 324 MB/1.1 GB 20 MB/s 39s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 29% ▕████ � 326 MB/1.1 GB 20 MB/s 39s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 29% ▕████ � 328 MB/1.1 GB 20 MB/s 39s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 30% ▕████ � 330 MB/1.1 GB 20 MB/s 39s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 30% ▕████ � 331 MB/1.1 GB 20 MB/s 38s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 30% ▕████ � 333 MB/1.1 GB 20 MB/s 38s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 30% ▕████ � 335 MB/1.1 GB 20 MB/s 38s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 30% ▕████ � 337 MB/1.1 GB 20 MB/s 38s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 30% ▕████ � 339 MB/1.1 GB 20 MB/s 38s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 31% ▕████ � 341 MB/1.1 GB 20 MB/s 38s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 31% ▕████ � 341 MB/1.1 GB 20 MB/s 38s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 31% ▕████ � 343 MB/1.1 GB 20 MB/s 38s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 31% ▕████ � 346 MB/1.1 GB 20 MB/s 38s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 31% ▕████ � 348 MB/1.1 GB 20 MB/s 38s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 31% ▕█████ � 349 MB/1.1 GB 19 MB/s 38s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 31% ▕█████ � 351 MB/1.1 GB 19 MB/s 38s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 32% ▕█████ � 353 MB/1.1 GB 19 MB/s 38s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 32% ▕█████ � 355 MB/1.1 GB 19 MB/s 38s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 32% ▕█████ � 357 MB/1.1 GB 19 MB/s 38s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 32% ▕█████ � 358 MB/1.1 GB 19 MB/s 38s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 32% ▕█████ � 361 MB/1.1 GB 19 MB/s 37s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 33% ▕█████ � 363 MB/1.1 GB 19 MB/s 37s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 33% ▕█████ � 364 MB/1.1 GB 19 MB/s 37s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 33% ▕█████ � 367 MB/1.1 GB 19 MB/s 37s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 33% ▕█████ � 369 MB/1.1 GB 20 MB/s 37s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 33% ▕█████ � 371 MB/1.1 GB 20 MB/s 37s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 33% ▕█████ � 372 MB/1.1 GB 20 MB/s 37s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 33% ▕█████ � 373 MB/1.1 GB 20 MB/s 36s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 34% ▕█████ � 375 MB/1.1 GB 20 MB/s 36s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 34% ▕█████ � 377 MB/1.1 GB 20 MB/s 36s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 34% ▕█████ � 380 MB/1.1 GB 20 MB/s 36s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 34% ▕█████ � 381 MB/1.1 GB 20 MB/s 36s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 34% ▕█████ � 383 MB/1.1 GB 20 MB/s 36s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 35% ▕█████ � 386 MB/1.1 GB 20 MB/s 36s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 35% ▕█████ � 387 MB/1.1 GB 20 MB/s 36s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 35% ▕█████ � 390 MB/1.1 GB 19 MB/s 36s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 35% ▕█████ � 392 MB/1.1 GB 19 MB/s 36s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 35% ▕█████ � 395 MB/1.1 GB 19 MB/s 36s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 35% ▕█████ � 396 MB/1.1 GB 19 MB/s 36s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 36% ▕█████ � 398 MB/1.1 GB 19 MB/s 36s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 36% ▕█████ � 400 MB/1.1 GB 19 MB/s 36s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 36% ▕█████ � 402 MB/1.1 GB 19 MB/s 35s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 36% ▕█████ � 404 MB/1.1 GB 19 MB/s 35s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 36% ▕█████ � 406 MB/1.1 GB 19 MB/s 35s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 37% ▕█████ � 408 MB/1.1 GB 19 MB/s 35s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 37% ▕█████ � 411 MB/1.1 GB 19 MB/s 35s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 37% ▕█████ � 412 MB/1.1 GB 19 MB/s 35s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 37% ▕█████ � 413 MB/1.1 GB 19 MB/s 35s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 37% ▕█████ � 415 MB/1.1 GB 19 MB/s 35s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 37% ▕█████ � 416 MB/1.1 GB 19 MB/s 35s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 38% ▕██████ � 419 MB/1.1 GB 19 MB/s 34s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 38% ▕██████ � 421 MB/1.1 GB 19 MB/s 34s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 38% ▕██████ � 422 MB/1.1 GB 19 MB/s 34s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 38% ▕██████ � 425 MB/1.1 GB 19 MB/s 34s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 38% ▕██████ � 427 MB/1.1 GB 19 MB/s 34s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 38% ▕██████ � 428 MB/1.1 GB 19 MB/s 34s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 39% ▕██████ � 430 MB/1.1 GB 19 MB/s 34s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 39% ▕██████ � 432 MB/1.1 GB 19 MB/s 34s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 39% ▕██████ � 433 MB/1.1 GB 19 MB/s 34s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 39% ▕██████ � 435 MB/1.1 GB 19 MB/s 34s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 39% ▕██████ � 437 MB/1.1 GB 19 MB/s 34s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 39% ▕██████ � 437 MB/1.1 GB 19 MB/s 34s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 39% ▕██████ � 440 MB/1.1 GB 19 MB/s 34s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 40% ▕██████ � 442 MB/1.1 GB 19 MB/s 34s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 40% ▕██████ � 443 MB/1.1 GB 19 MB/s 34s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 40% ▕██████ � 445 MB/1.1 GB 19 MB/s 34s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 40% ▕██████ � 447 MB/1.1 GB 19 MB/s 34s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 40% ▕██████ � 448 MB/1.1 GB 19 MB/s 34s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 40% ▕██████ � 449 MB/1.1 GB 19 MB/s 34s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 40% ▕██████ � 452 MB/1.1 GB 19 MB/s 34s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 41% ▕██████ � 453 MB/1.1 GB 19 MB/s 34s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 41% ▕██████ � 455 MB/1.1 GB 19 MB/s 33s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 41% ▕██████ � 457 MB/1.1 GB 19 MB/s 33s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 41% ▕██████ � 458 MB/1.1 GB 19 MB/s 33s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 41% ▕██████ � 460 MB/1.1 GB 19 MB/s 33s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 41% ▕██████ � 461 MB/1.1 GB 18 MB/s 34s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 41% ▕██████ � 462 MB/1.1 GB 18 MB/s 34s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 42% ▕██████ � 464 MB/1.1 GB 18 MB/s 34s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 42% ▕██████ � 466 MB/1.1 GB 18 MB/s 34s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 42% ▕██████ � 468 MB/1.1 GB 18 MB/s 34s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 42% ▕██████ � 469 MB/1.1 GB 18 MB/s 34s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 42% ▕██████ � 471 MB/1.1 GB 18 MB/s 34s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 42% ▕██████ � 473 MB/1.1 GB 18 MB/s 33s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 42% ▕██████ � 474 MB/1.1 GB 18 MB/s 33s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 43% ▕██████ � 476 MB/1.1 GB 18 MB/s 33s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 43% ▕██████ � 477 MB/1.1 GB 18 MB/s 33s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 43% ▕██████ � 479 MB/1.1 GB 18 MB/s 34s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 43% ▕██████ � 481 MB/1.1 GB 18 MB/s 34s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 43% ▕██████ � 482 MB/1.1 GB 18 MB/s 34s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 43% ▕██████ � 484 MB/1.1 GB 18 MB/s 34s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 44% ▕██████ � 486 MB/1.1 GB 18 MB/s 33s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 44% ▕██████ � 487 MB/1.1 GB 18 MB/s 33s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 44% ▕███████ � 489 MB/1.1 GB 18 MB/s 33s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 44% ▕███████ � 491 MB/1.1 GB 18 MB/s 33s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 44% ▕███████ � 493 MB/1.1 GB 18 MB/s 33s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 44% ▕███████ � 495 MB/1.1 GB 18 MB/s 33s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 44% ▕███████ � 496 MB/1.1 GB 18 MB/s 33s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 45% ▕███████ � 498 MB/1.1 GB 18 MB/s 33s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 45% ▕███████ � 499 MB/1.1 GB 18 MB/s 33s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 45% ▕███████ � 501 MB/1.1 GB 18 MB/s 33s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 45% ▕███████ � 502 MB/1.1 GB 18 MB/s 33s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 45% ▕███████ � 503 MB/1.1 GB 18 MB/s 33s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 45% ▕███████ � 505 MB/1.1 GB 18 MB/s 33s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 45% ▕███████ � 505 MB/1.1 GB 18 MB/s 33s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 45% ▕███████ � 506 MB/1.1 GB 18 MB/s 33s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 46% ▕███████ � 508 MB/1.1 GB 18 MB/s 33s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 46% ▕███████ � 510 MB/1.1 GB 17 MB/s 34s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 46% ▕███████ � 511 MB/1.1 GB 17 MB/s 34s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 46% ▕███████ � 513 MB/1.1 GB 17 MB/s 33s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 46% ▕███████ � 514 MB/1.1 GB 17 MB/s 33s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 46% ▕███████ � 516 MB/1.1 GB 17 MB/s 33s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 46% ▕███████ � 518 MB/1.1 GB 17 MB/s 33s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 46% ▕███████ � 519 MB/1.1 GB 17 MB/s 33s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 47% ▕███████ � 521 MB/1.1 GB 17 MB/s 33s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 47% ▕███████ � 523 MB/1.1 GB 17 MB/s 33s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 47% ▕███████ � 524 MB/1.1 GB 17 MB/s 33s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 47% ▕███████ � 525 MB/1.1 GB 17 MB/s 34s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 47% ▕███████ � 527 MB/1.1 GB 17 MB/s 34s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 47% ▕███████ � 528 MB/1.1 GB 17 MB/s 33s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 47% ▕███████ � 530 MB/1.1 GB 17 MB/s 33s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 48% ▕███████ � 532 MB/1.1 GB 17 MB/s 33s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 48% ▕███████ � 533 MB/1.1 GB 17 MB/s 33s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 48% ▕███████ � 535 MB/1.1 GB 17 MB/s 33s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 48% ▕███████ � 537 MB/1.1 GB 17 MB/s 33s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 48% ▕███████ � 538 MB/1.1 GB 17 MB/s 33s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 48% ▕███████ � 540 MB/1.1 GB 17 MB/s 33s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 49% ▕███████ � 542 MB/1.1 GB 17 MB/s 33s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 49% ▕███████ � 543 MB/1.1 GB 17 MB/s 33s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 49% ▕███████ � 544 MB/1.1 GB 17 MB/s 33s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 49% ▕███████ � 545 MB/1.1 GB 17 MB/s 33s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 49% ▕███████ � 546 MB/1.1 GB 17 MB/s 33s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 49% ▕███████ � 548 MB/1.1 GB 17 MB/s 33s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 49% ▕███████ � 550 MB/1.1 GB 17 MB/s 33s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 49% ▕███████ � 551 MB/1.1 GB 17 MB/s 33s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 50% ▕███████ � 553 MB/1.1 GB 17 MB/s 33s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 50% ▕███████ � 555 MB/1.1 GB 17 MB/s 33s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 50% ▕███████ � 556 MB/1.1 GB 16 MB/s 34s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 50% ▕███████ � 557 MB/1.1 GB 16 MB/s 34s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 50% ▕████████ � 559 MB/1.1 GB 16 MB/s 34s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 50% ▕████████ � 560 MB/1.1 GB 16 MB/s 34s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 50% ▕████████ � 562 MB/1.1 GB 16 MB/s 34s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 51% ▕████████ � 564 MB/1.1 GB 16 MB/s 33s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 51% ▕████████ � 565 MB/1.1 GB 16 MB/s 33s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 51% ▕████████ � 567 MB/1.1 GB 16 MB/s 33s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 51% ▕████████ � 569 MB/1.1 GB 16 MB/s 33s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 51% ▕████████ � 571 MB/1.1 GB 16 MB/s 33s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 51% ▕████████ � 573 MB/1.1 GB 16 MB/s 33s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 52% ▕████████ � 575 MB/1.1 GB 16 MB/s 33s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 52% ▕████████ � 576 MB/1.1 GB 16 MB/s 33s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 52% ▕████████ � 579 MB/1.1 GB 16 MB/s 33s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 52% ▕████████ � 581 MB/1.1 GB 16 MB/s 33s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 52% ▕████████ � 582 MB/1.1 GB 16 MB/s 33s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 52% ▕████████ � 584 MB/1.1 GB 16 MB/s 32s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 53% ▕████████ � 587 MB/1.1 GB 16 MB/s 32s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 53% ▕████████ � 588 MB/1.1 GB 16 MB/s 32s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 53% ▕████████ � 590 MB/1.1 GB 16 MB/s 32s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 53% ▕████████ � 592 MB/1.1 GB 16 MB/s 32s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 53% ▕████████ � 594 MB/1.1 GB 16 MB/s 31s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 53% ▕████████ � 596 MB/1.1 GB 16 MB/s 31s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 54% ▕████████ � 598 MB/1.1 GB 16 MB/s 31s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 54% ▕████████ � 599 MB/1.1 GB 16 MB/s 31s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 54% ▕████████ � 602 MB/1.1 GB 16 MB/s 31s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 54% ▕████████ � 604 MB/1.1 GB 16 MB/s 31s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 54% ▕████████ � 605 MB/1.1 GB 16 MB/s 31s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 54% ▕████████ � 608 MB/1.1 GB 16 MB/s 30s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 55% ▕████████ � 610 MB/1.1 GB 16 MB/s 30s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 55% ▕████████ � 611 MB/1.1 GB 16 MB/s 30s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 55% ▕████████ � 613 MB/1.1 GB 16 MB/s 29s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 55% ▕████████ � 616 MB/1.1 GB 16 MB/s 29s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 55% ▕████████ � 617 MB/1.1 GB 16 MB/s 29s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 55% ▕████████ � 619 MB/1.1 GB 16 MB/s 29s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 56% ▕████████ � 621 MB/1.1 GB 16 MB/s 29s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 56% ▕████████ � 624 MB/1.1 GB 16 MB/s 29s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 56% ▕████████ � 625 MB/1.1 GB 16 MB/s 29s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 56% ▕████████ � 627 MB/1.1 GB 16 MB/s 29s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 56% ▕█████████ � 629 MB/1.1 GB 16 MB/s 28s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 56% ▕█████████ � 630 MB/1.1 GB 16 MB/s 28s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 57% ▕█████████ � 633 MB/1.1 GB 17 MB/s 28s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 57% ▕█████████ � 635 MB/1.1 GB 17 MB/s 27s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 57% ▕█████████ � 636 MB/1.1 GB 17 MB/s 27s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 57% ▕█████████ � 638 MB/1.1 GB 17 MB/s 27s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 57% ▕█████████ � 641 MB/1.1 GB 17 MB/s 27s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 58% ▕█████████ � 642 MB/1.1 GB 17 MB/s 27s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 58% ▕█████████ � 644 MB/1.1 GB 17 MB/s 27s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 58% ▕█████████ � 647 MB/1.1 GB 17 MB/s 27s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 58% ▕█████████ � 648 MB/1.1 GB 17 MB/s 27s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 58% ▕█████████ � 650 MB/1.1 GB 17 MB/s 27s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 58% ▕█████████ � 653 MB/1.1 GB 17 MB/s 26s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 59% ▕█████████ � 654 MB/1.1 GB 17 MB/s 26s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 59% ▕█████████ � 657 MB/1.1 GB 17 MB/s 26s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 59% ▕█████████ � 658 MB/1.1 GB 17 MB/s 26s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 59% ▕█████████ � 660 MB/1.1 GB 17 MB/s 26s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 59% ▕█████████ � 662 MB/1.1 GB 17 MB/s 25s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 59% ▕█████████ � 664 MB/1.1 GB 17 MB/s 25s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 60% ▕█████████ � 666 MB/1.1 GB 17 MB/s 25s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 60% ▕█████████ � 669 MB/1.1 GB 17 MB/s 25s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 60% ▕█████████ � 671 MB/1.1 GB 17 MB/s 25s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 60% ▕█████████ � 672 MB/1.1 GB 17 MB/s 25s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 60% ▕█████████ � 675 MB/1.1 GB 18 MB/s 24s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 61% ▕█████████ � 677 MB/1.1 GB 18 MB/s 24s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 61% ▕█████████ � 678 MB/1.1 GB 18 MB/s 24s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 61% ▕█████████ � 681 MB/1.1 GB 18 MB/s 23s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 61% ▕█████████ � 683 MB/1.1 GB 18 MB/s 23s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 61% ▕█████████ � 684 MB/1.1 GB 18 MB/s 23s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 61% ▕█████████ � 687 MB/1.1 GB 18 MB/s 23s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 62% ▕█████████ � 689 MB/1.1 GB 18 MB/s 23s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 62% ▕█████████ � 690 MB/1.1 GB 18 MB/s 23s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 62% ▕█████████ � 693 MB/1.1 GB 18 MB/s 23s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 62% ▕█████████ � 694 MB/1.1 GB 18 MB/s 22s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 62% ▕█████████ � 696 MB/1.1 GB 18 MB/s 22s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 63% ▕██████████ � 698 MB/1.1 GB 18 MB/s 22s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 63% ▕██████████ � 699 MB/1.1 GB 18 MB/s 22s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 63% ▕██████████ � 702 MB/1.1 GB 18 MB/s 22s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 63% ▕██████████ � 704 MB/1.1 GB 18 MB/s 22s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 63% ▕██████████ � 706 MB/1.1 GB 18 MB/s 21s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 63% ▕██████████ � 708 MB/1.1 GB 18 MB/s 21s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 64% ▕██████████ � 710 MB/1.1 GB 18 MB/s 21s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 64% ▕██████████ � 711 MB/1.1 GB 18 MB/s 21s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 64% ▕██████████ � 714 MB/1.1 GB 19 MB/s 21s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 64% ▕██████████ � 716 MB/1.1 GB 19 MB/s 20s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 64% ▕██████████ � 717 MB/1.1 GB 19 MB/s 20s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 64% ▕██████████ � 718 MB/1.1 GB 19 MB/s 20s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 64% ▕██████████ � 720 MB/1.1 GB 19 MB/s 20s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 65% ▕██████████ � 722 MB/1.1 GB 19 MB/s 20s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 65% ▕██████████ � 723 MB/1.1 GB 19 MB/s 20s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 65% ▕██████████ � 725 MB/1.1 GB 19 MB/s 20s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 65% ▕██████████ � 726 MB/1.1 GB 19 MB/s 20s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 65% ▕██████████ � 728 MB/1.1 GB 19 MB/s 20s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 65% ▕██████████ � 730 MB/1.1 GB 19 MB/s 20s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 65% ▕██████████ � 731 MB/1.1 GB 19 MB/s 20s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 66% ▕██████████ � 732 MB/1.1 GB 19 MB/s 19s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 66% ▕██████████ � 733 MB/1.1 GB 19 MB/s 19s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 66% ▕██████████ � 734 MB/1.1 GB 19 MB/s 19s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 66% ▕██████████ � 735 MB/1.1 GB 19 MB/s 19s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 66% ▕██████████ � 737 MB/1.1 GB 19 MB/s 19s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 66% ▕██████████ � 739 MB/1.1 GB 19 MB/s 19s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 66% ▕██████████ � 740 MB/1.1 GB 19 MB/s 19s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 67% ▕██████████ � 743 MB/1.1 GB 19 MB/s 19s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 67% ▕██████████ � 744 MB/1.1 GB 19 MB/s 19s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 67% ▕██████████ � 746 MB/1.1 GB 19 MB/s 19s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 67% ▕██████████ � 749 MB/1.1 GB 19 MB/s 19s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 67% ▕██████████ � 751 MB/1.1 GB 19 MB/s 19s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 67% ▕██████████ � 751 MB/1.1 GB 19 MB/s 19s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 68% ▕██████████ � 754 MB/1.1 GB 19 MB/s 19s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 68% ▕██████████ � 756 MB/1.1 GB 19 MB/s 18s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 68% ▕██████████ � 757 MB/1.1 GB 19 MB/s 18s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 68% ▕██████████ � 760 MB/1.1 GB 19 MB/s 18s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 68% ▕██████████ � 761 MB/1.1 GB 19 MB/s 18s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 68% ▕██████████ � 762 MB/1.1 GB 19 MB/s 18s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 68% ▕██████████ � 765 MB/1.1 GB 18 MB/s 18s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 69% ▕██████████ � 766 MB/1.1 GB 18 MB/s 18s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 69% ▕███████████ � 768 MB/1.1 GB 18 MB/s 18s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 69% ▕███████████ � 771 MB/1.1 GB 18 MB/s 18s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 69% ▕███████████ � 772 MB/1.1 GB 18 MB/s 18s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 69% ▕███████████ � 775 MB/1.1 GB 18 MB/s 18s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 70% ▕███████████ � 777 MB/1.1 GB 18 MB/s 18s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 70% ▕███████████ � 778 MB/1.1 GB 18 MB/s 17s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 70% ▕███████████ � 781 MB/1.1 GB 18 MB/s 17s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 70% ▕███████████ � 783 MB/1.1 GB 18 MB/s 17s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 70% ▕███████████ � 786 MB/1.1 GB 19 MB/s 17s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 70% ▕███████████ � 787 MB/1.1 GB 19 MB/s 17s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 71% ▕███████████ � 789 MB/1.1 GB 19 MB/s 17s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 71% ▕███████████ � 790 MB/1.1 GB 19 MB/s 17s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 71% ▕███████████ � 793 MB/1.1 GB 19 MB/s 17s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 71% ▕███████████ � 795 MB/1.1 GB 19 MB/s 16s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 71% ▕███████████ � 797 MB/1.1 GB 19 MB/s 16s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 72% ▕███████████ � 799 MB/1.1 GB 19 MB/s 16s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 72% ▕███████████ � 802 MB/1.1 GB 19 MB/s 16s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 72% ▕███████████ � 804 MB/1.1 GB 19 MB/s 16s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 72% ▕███████████ � 805 MB/1.1 GB 19 MB/s 16s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 72% ▕███████████ � 807 MB/1.1 GB 19 MB/s 16s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 72% ▕███████████ � 809 MB/1.1 GB 19 MB/s 16s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 73% ▕███████████ � 811 MB/1.1 GB 19 MB/s 15s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 73% ▕███████████ � 813 MB/1.1 GB 19 MB/s 15s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 73% ▕███████████ � 815 MB/1.1 GB 19 MB/s 15s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 73% ▕███████████ � 817 MB/1.1 GB 19 MB/s 15s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 73% ▕███████████ � 820 MB/1.1 GB 19 MB/s 15s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 74% ▕███████████ � 822 MB/1.1 GB 19 MB/s 15s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 74% ▕███████████ � 823 MB/1.1 GB 19 MB/s 15s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 74% ▕███████████ � 826 MB/1.1 GB 19 MB/s 15s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 74% ▕███████████ � 827 MB/1.1 GB 19 MB/s 15s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 74% ▕███████████ � 830 MB/1.1 GB 19 MB/s 14s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 74% ▕███████████ � 831 MB/1.1 GB 19 MB/s 14s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 75% ▕███████████ � 833 MB/1.1 GB 19 MB/s 14s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 75% ▕███████████ � 835 MB/1.1 GB 19 MB/s 14s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 75% ▕███████████ � 837 MB/1.1 GB 19 MB/s 14s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 75% ▕████████████ � 839 MB/1.1 GB 19 MB/s 14s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 75% ▕████████████ � 841 MB/1.1 GB 19 MB/s 14s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 75% ▕████████████ � 843 MB/1.1 GB 19 MB/s 14s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 76% ▕████████████ � 845 MB/1.1 GB 19 MB/s 14s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 76% ▕████████████ � 846 MB/1.1 GB 19 MB/s 14s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 76% ▕████████████ � 849 MB/1.1 GB 19 MB/s 14s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 76% ▕████████████ � 850 MB/1.1 GB 19 MB/s 13s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 76% ▕████████████ � 852 MB/1.1 GB 19 MB/s 13s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 77% ▕████████████ � 855 MB/1.1 GB 19 MB/s 13s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 77% ▕████████████ � 856 MB/1.1 GB 19 MB/s 13s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 77% ▕████████████ � 858 MB/1.1 GB 19 MB/s 13s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 77% ▕████████████ � 861 MB/1.1 GB 19 MB/s 13s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 77% ▕████████████ � 863 MB/1.1 GB 19 MB/s 13s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 77% ▕████████████ � 865 MB/1.1 GB 19 MB/s 13s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 78% ▕████████████ � 867 MB/1.1 GB 19 MB/s 13s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 78% ▕████████████ � 868 MB/1.1 GB 19 MB/s 12s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 78% ▕████████████ � 870 MB/1.1 GB 19 MB/s 12s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 78% ▕████████████ � 873 MB/1.1 GB 19 MB/s 12s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 78% ▕████████████ � 874 MB/1.1 GB 19 MB/s 12s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 78% ▕████████████ � 876 MB/1.1 GB 19 MB/s 12s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 79% ▕████████████ � 879 MB/1.1 GB 19 MB/s 12s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 79% ▕████████████ � 880 MB/1.1 GB 19 MB/s 12s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 79% ▕████████████ � 883 MB/1.1 GB 19 MB/s 12s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 79% ▕████████████ � 885 MB/1.1 GB 19 MB/s 12s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 79% ▕████████████ � 887 MB/1.1 GB 19 MB/s 12s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 80% ▕████████████ � 888 MB/1.1 GB 19 MB/s 11s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 80% ▕████████████ � 890 MB/1.1 GB 19 MB/s 11s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 80% ▕████████████ � 890 MB/1.1 GB 19 MB/s 11s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 80% ▕████████████ � 891 MB/1.1 GB 19 MB/s 11s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 80% ▕████████████ � 893 MB/1.1 GB 19 MB/s 11s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 80% ▕████████████ � 894 MB/1.1 GB 19 MB/s 11s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 80% ▕████████████ � 896 MB/1.1 GB 19 MB/s 11s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 80% ▕████████████ � 898 MB/1.1 GB 19 MB/s 11s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 81% ▕████████████ � 899 MB/1.1 GB 19 MB/s 11s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 81% ▕████████████ � 901 MB/1.1 GB 19 MB/s 11s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 81% ▕████████████ � 903 MB/1.1 GB 19 MB/s 11s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 81% ▕████████████ � 904 MB/1.1 GB 19 MB/s 11s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 81% ▕████████████ � 906 MB/1.1 GB 19 MB/s 11s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 81% ▕█████████████ � 908 MB/1.1 GB 19 MB/s 10s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 81% ▕█████████████ � 908 MB/1.1 GB 19 MB/s 10s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 81% ▕█████████████ � 909 MB/1.1 GB 19 MB/s 10s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 82% ▕█████████████ � 911 MB/1.1 GB 19 MB/s 10s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 82% ▕█████████████ � 912 MB/1.1 GB 19 MB/s 10s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 82% ▕█████████████ � 913 MB/1.1 GB 19 MB/s 10s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 82% ▕█████████████ � 915 MB/1.1 GB 18 MB/s 10s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 82% ▕█████████████ � 917 MB/1.1 GB 18 MB/s 10s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 82% ▕█████████████ � 918 MB/1.1 GB 18 MB/s 10s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 82% ▕█████████████ � 919 MB/1.1 GB 18 MB/s 10s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 82% ▕█████████████ � 920 MB/1.1 GB 18 MB/s 10s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 83% ▕█████████████ � 922 MB/1.1 GB 18 MB/s 10s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 83% ▕█████████████ � 924 MB/1.1 GB 18 MB/s 10s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 83% ▕█████████████ � 926 MB/1.1 GB 18 MB/s 10s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 83% ▕█████████████ � 927 MB/1.1 GB 18 MB/s 10s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 83% ▕█████████████ � 928 MB/1.1 GB 18 MB/s 9s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 83% ▕█████████████ � 930 MB/1.1 GB 18 MB/s 10s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 83% ▕█████████████ � 931 MB/1.1 GB 18 MB/s 10s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 84% ▕█████████████ � 933 MB/1.1 GB 18 MB/s 9s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 84% ▕█████████████ � 935 MB/1.1 GB 18 MB/s 9s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 84% ▕█████████████ � 937 MB/1.1 GB 18 MB/s 9s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 84% ▕█████████████ � 940 MB/1.1 GB 18 MB/s 9s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 84% ▕█████████████ � 941 MB/1.1 GB 18 MB/s 9s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 84% ▕█████████████ � 943 MB/1.1 GB 18 MB/s 9s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 85% ▕█████████████ � 945 MB/1.1 GB 18 MB/s 9s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 85% ▕█████████████ � 947 MB/1.1 GB 18 MB/s 9s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 85% ▕█████████████ � 949 MB/1.1 GB 18 MB/s 9s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 85% ▕█████████████ � 951 MB/1.1 GB 18 MB/s 9s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 85% ▕█████████████ � 952 MB/1.1 GB 18 MB/s 8s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 86% ▕█████████████ � 955 MB/1.1 GB 18 MB/s 8s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 86% ▕█████████████ � 957 MB/1.1 GB 18 MB/s 8s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 86% ▕█████████████ � 958 MB/1.1 GB 18 MB/s 8s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 86% ▕█████████████ � 960 MB/1.1 GB 18 MB/s 8s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 86% ▕█████████████ � 963 MB/1.1 GB 18 MB/s 8s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 86% ▕█████████████ � 964 MB/1.1 GB 18 MB/s 8s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 86% ▕█████████████ � 965 MB/1.1 GB 18 MB/s 8s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 87% ▕█████████████ � 968 MB/1.1 GB 18 MB/s 8s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 87% ▕█████████████ � 970 MB/1.1 GB 18 MB/s 8s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 87% ▕█████████████ � 971 MB/1.1 GB 18 MB/s 8s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 87% ▕█████████████ � 973 MB/1.1 GB 18 MB/s 7s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 87% ▕█████████████ � 975 MB/1.1 GB 18 MB/s 7s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 87% ▕█████████████ � 976 MB/1.1 GB 18 MB/s 7s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 88% ▕██████████████ � 979 MB/1.1 GB 18 MB/s 7s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 88% ▕██████████████ � 980 MB/1.1 GB 18 MB/s 7s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 88% ▕██████████████ � 982 MB/1.1 GB 18 MB/s 7s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 88% ▕██████████████ � 984 MB/1.1 GB 18 MB/s 7s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 88% ▕██████████████ � 986 MB/1.1 GB 18 MB/s 7s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 88% ▕██████████████ � 988 MB/1.1 GB 18 MB/s 7s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 89% ▕██████████████ � 990 MB/1.1 GB 18 MB/s 7s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 89% ▕██████████████ � 991 MB/1.1 GB 18 MB/s 6s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 89% ▕██████████████ � 993 MB/1.1 GB 18 MB/s 6s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 89% ▕██████████████ � 996 MB/1.1 GB 18 MB/s 6s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 89% ▕██████████████ � 997 MB/1.1 GB 18 MB/s 6s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 89% ▕██████████████ � 999 MB/1.1 GB 18 MB/s 6s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 90% ▕██████████████ � 1.0 GB/1.1 GB 18 MB/s 6s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 90% ▕██████████████ � 1.0 GB/1.1 GB 18 MB/s 6s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 90% ▕██████████████ � 1.0 GB/1.1 GB 18 MB/s 6s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 90% ▕██████████████ � 1.0 GB/1.1 GB 18 MB/s 6s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 90% ▕██████████████ � 1.0 GB/1.1 GB 18 MB/s 6s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 91% ▕██████████████ � 1.0 GB/1.1 GB 18 MB/s 5s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 91% ▕██████████████ � 1.0 GB/1.1 GB 18 MB/s 5s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 91% ▕██████████████ � 1.0 GB/1.1 GB 18 MB/s 5s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 91% ▕██████████████ � 1.0 GB/1.1 GB 18 MB/s 5s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 91% ▕██████████████ � 1.0 GB/1.1 GB 18 MB/s 5s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 91% ▕██████████████ � 1.0 GB/1.1 GB 18 MB/s 5s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 92% ▕██████████████ � 1.0 GB/1.1 GB 18 MB/s 5s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 92% ▕██████████████ � 1.0 GB/1.1 GB 18 MB/s 5s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 92% ▕██████████████ � 1.0 GB/1.1 GB 18 MB/s 5s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 92% ▕██████████████ � 1.0 GB/1.1 GB 17 MB/s 4s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 92% ▕██████████████ � 1.0 GB/1.1 GB 17 MB/s 4s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 92% ▕██████████████ � 1.0 GB/1.1 GB 17 MB/s 4s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 93% ▕██████████████ � 1.0 GB/1.1 GB 17 MB/s 4s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 93% ▕██████████████ � 1.0 GB/1.1 GB 17 MB/s 4s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 93% ▕██████████████ � 1.0 GB/1.1 GB 17 MB/s 4s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 93% ▕██████████████ � 1.0 GB/1.1 GB 17 MB/s 4s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 93% ▕██████████████ � 1.0 GB/1.1 GB 17 MB/s 4s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 93% ▕██████████████ � 1.0 GB/1.1 GB 17 MB/s 4s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 94% ▕██████████████ � 1.0 GB/1.1 GB 17 MB/s 3s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 94% ▕███████████████ � 1.0 GB/1.1 GB 17 MB/s 3s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 94% ▕███████████████ � 1.1 GB/1.1 GB 17 MB/s 3s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 94% ▕███████████████ � 1.1 GB/1.1 GB 17 MB/s 3s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 94% ▕███████████████ � 1.1 GB/1.1 GB 17 MB/s 3s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 95% ▕███████████████ � 1.1 GB/1.1 GB 17 MB/s 3s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 95% ▕███████████████ � 1.1 GB/1.1 GB 17 MB/s 3s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 95% ▕███████████████ � 1.1 GB/1.1 GB 17 MB/s 3s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 95% ▕███████████████ � 1.1 GB/1.1 GB 17 MB/s 3s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 95% ▕███████████████ � 1.1 GB/1.1 GB 17 MB/s 2s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 96% ▕███████████████ � 1.1 GB/1.1 GB 17 MB/s 2s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 96% ▕███████████████ � 1.1 GB/1.1 GB 18 MB/s 2s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 96% ▕███████████████ � 1.1 GB/1.1 GB 18 MB/s 2s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 96% ▕███████████████ � 1.1 GB/1.1 GB 18 MB/s 2s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 96% ▕███████████████ � 1.1 GB/1.1 GB 18 MB/s 2s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 96% ▕███████████████ � 1.1 GB/1.1 GB 18 MB/s 2s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 97% ▕███████████████ � 1.1 GB/1.1 GB 18 MB/s 2s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 97% ▕███████████████ � 1.1 GB/1.1 GB 18 MB/s 1s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 97% ▕███████████████ � 1.1 GB/1.1 GB 18 MB/s 1s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 97% ▕███████████████ � 1.1 GB/1.1 GB 18 MB/s 1s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 97% ▕███████████████ � 1.1 GB/1.1 GB 18 MB/s 1s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 97% ▕███████████████ � 1.1 GB/1.1 GB 19 MB/s 1s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 98% ▕███████████████ � 1.1 GB/1.1 GB 19 MB/s 1s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 98% ▕███████████████ � 1.1 GB/1.1 GB 19 MB/s 1s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 98% ▕███████████████ � 1.1 GB/1.1 GB 19 MB/s 1s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 98% ▕███████████████ � 1.1 GB/1.1 GB 19 MB/s 1s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 98% ▕███████████████ � 1.1 GB/1.1 GB 19 MB/s 1s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 98% ▕███████████████ � 1.1 GB/1.1 GB 19 MB/s 0s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 99% ▕███████████████ � 1.1 GB/1.1 GB 19 MB/s 0s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 99% ▕███████████████ � 1.1 GB/1.1 GB 19 MB/s 0s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 99% ▕███████████████ � 1.1 GB/1.1 GB 19 MB/s 0s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 99% ▕███████████████ � 1.1 GB/1.1 GB 19 MB/s 0s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 99% ▕███████████████ � 1.1 GB/1.1 GB 19 MB/s 0s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 99% ▕███████████████ � 1.1 GB/1.1 GB 19 MB/s 0s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 99% ▕███████████████ � 1.1 GB/1.1 GB 19 MB/s 0s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 100% ▕███████████████ � 1.1 GB/1.1 GB 19 MB/s 0s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 100% ▕███████████████ � 1.1 GB/1.1 GB 19 MB/s 0s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 100% ▕███████████████ � 1.1 GB/1.1 GB 19 MB/s 0s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 100% ▕███████████████ � 1.1 GB/1.1 GB 19 MB/s 0s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 100% ▕████████████████� 1.1 GB \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 100% ▕████████████████� 1.1 GB \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 100% ▕████████████████� 1.1 GB \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 100% ▕████████████████� 1.1 GB \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 100% ▕████████████████� 1.1 GB \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 100% ▕████████████████� 1.1 GB \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 100% ▕████████████████� 1.1 GB \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 100% ▕████████████████� 1.1 GB \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 100% ▕████████████████� 1.1 GB \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 100% ▕████████████████� 1.1 GB \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 100% ▕████████████████� 1.1 GB \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 100% ▕████████████████� 1.1 GB \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 100% ▕████████████████� 1.1 GB \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 100% ▕████████████████� 1.1 GB \u001b[K\n", + "pulling 369ca498f347... 0% ▕ � 0 B/ 387 B \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 100% ▕████████████████� 1.1 GB \u001b[K\n", + "pulling 369ca498f347... 0% ▕ � 0 B/ 387 B \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 100% ▕████████████████� 1.1 GB \u001b[K\n", + "pulling 369ca498f347... 0% ▕ � 0 B/ 387 B \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 100% ▕████████████████� 1.1 GB \u001b[K\n", + "pulling 369ca498f347... 0% ▕ � 0 B/ 387 B \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 100% ▕████████████████� 1.1 GB \u001b[K\n", + "pulling 369ca498f347... 0% ▕ � 0 B/ 387 B \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 100% ▕████████████████� 1.1 GB \u001b[K\n", + "pulling 369ca498f347... 100% ▕████████████████� 387 B \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 100% ▕████████████████� 1.1 GB \u001b[K\n", + "pulling 369ca498f347... 100% ▕████████████████� 387 B \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 100% ▕████████████████� 1.1 GB \u001b[K\n", + "pulling 369ca498f347... 100% ▕████████████████� 387 B \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 100% ▕████████████████� 1.1 GB \u001b[K\n", + "pulling 369ca498f347... 100% ▕████████████████� 387 B \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 100% ▕████████████████� 1.1 GB \u001b[K\n", + "pulling 369ca498f347... 100% ▕████████████████� 387 B \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 100% ▕████████████████� 1.1 GB \u001b[K\n", + "pulling 369ca498f347... 100% ▕████████████████� 387 B \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 100% ▕████████████████� 1.1 GB \u001b[K\n", + "pulling 369ca498f347... 100% ▕████████████████� 387 B \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 100% ▕████████████████� 1.1 GB \u001b[K\n", + "pulling 369ca498f347... 100% ▕████████████████� 387 B \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 100% ▕████████████████� 1.1 GB \u001b[K\n", + "pulling 369ca498f347... 100% ▕████████████████� 387 B \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 100% ▕████████████████� 1.1 GB \u001b[K\n", + "pulling 369ca498f347... 100% ▕████████████████� 387 B \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 100% ▕████████████████� 1.1 GB \u001b[K\n", + "pulling 369ca498f347... 100% ▕████████████████� 387 B \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 100% ▕████████████████� 1.1 GB \u001b[K\n", + "pulling 369ca498f347... 100% ▕████████████████� 387 B \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 100% ▕████████████████� 1.1 GB \u001b[K\n", + "pulling 369ca498f347... 100% ▕████████████████� 387 B \u001b[K\n", + "pulling 6e4c38e1172f... 0% ▕ � 0 B/1.1 KB \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 100% ▕████████████████� 1.1 GB \u001b[K\n", + "pulling 369ca498f347... 100% ▕████████████████� 387 B \u001b[K\n", + "pulling 6e4c38e1172f... 0% ▕ � 0 B/1.1 KB \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 100% ▕████████████████� 1.1 GB \u001b[K\n", + "pulling 369ca498f347... 100% ▕████████████████� 387 B \u001b[K\n", + "pulling 6e4c38e1172f... 0% ▕ � 0 B/1.1 KB \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 100% ▕████████████████� 1.1 GB \u001b[K\n", + "pulling 369ca498f347... 100% ▕████████████████� 387 B \u001b[K\n", + "pulling 6e4c38e1172f... 0% ▕ � 0 B/1.1 KB \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 100% ▕████████████████� 1.1 GB \u001b[K\n", + "pulling 369ca498f347... 100% ▕████████████████� 387 B \u001b[K\n", + "pulling 6e4c38e1172f... 0% ▕ � 0 B/1.1 KB \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 100% ▕████████████████� 1.1 GB \u001b[K\n", + "pulling 369ca498f347... 100% ▕████████████████� 387 B \u001b[K\n", + "pulling 6e4c38e1172f... 0% ▕ � 0 B/1.1 KB \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 100% ▕████████████████� 1.1 GB \u001b[K\n", + "pulling 369ca498f347... 100% ▕████████████████� 387 B \u001b[K\n", + "pulling 6e4c38e1172f... 100% ▕████████████████� 1.1 KB \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 100% ▕████████████████� 1.1 GB \u001b[K\n", + "pulling 369ca498f347... 100% ▕████████████████� 387 B \u001b[K\n", + "pulling 6e4c38e1172f... 100% ▕████████████████� 1.1 KB \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 100% ▕████████████████� 1.1 GB \u001b[K\n", + "pulling 369ca498f347... 100% ▕████████████████� 387 B \u001b[K\n", + "pulling 6e4c38e1172f... 100% ▕████████████████� 1.1 KB \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 100% ▕████████████████� 1.1 GB \u001b[K\n", + "pulling 369ca498f347... 100% ▕████████████████� 387 B \u001b[K\n", + "pulling 6e4c38e1172f... 100% ▕████████████████� 1.1 KB \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 100% ▕████████████████� 1.1 GB \u001b[K\n", + "pulling 369ca498f347... 100% ▕████████████████� 387 B \u001b[K\n", + "pulling 6e4c38e1172f... 100% ▕████████████████� 1.1 KB \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 100% ▕████████████████� 1.1 GB \u001b[K\n", + "pulling 369ca498f347... 100% ▕████████████████� 387 B \u001b[K\n", + "pulling 6e4c38e1172f... 100% ▕████████████████� 1.1 KB \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 100% ▕████████████████� 1.1 GB \u001b[K\n", + "pulling 369ca498f347... 100% ▕████████████████� 387 B \u001b[K\n", + "pulling 6e4c38e1172f... 100% ▕████████████████� 1.1 KB \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 100% ▕████████████████� 1.1 GB \u001b[K\n", + "pulling 369ca498f347... 100% ▕████████████████� 387 B \u001b[K\n", + "pulling 6e4c38e1172f... 100% ▕████████████████� 1.1 KB \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 100% ▕████████████████� 1.1 GB \u001b[K\n", + "pulling 369ca498f347... 100% ▕████████████████� 387 B \u001b[K\n", + "pulling 6e4c38e1172f... 100% ▕████████████████� 1.1 KB \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 100% ▕████████████████� 1.1 GB \u001b[K\n", + "pulling 369ca498f347... 100% ▕████████████████� 387 B \u001b[K\n", + "pulling 6e4c38e1172f... 100% ▕████████████████� 1.1 KB \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 100% ▕████████████████� 1.1 GB \u001b[K\n", + "pulling 369ca498f347... 100% ▕████████████████� 387 B \u001b[K\n", + "pulling 6e4c38e1172f... 100% ▕████████████████� 1.1 KB \u001b[K\n", + "pulling f4d24e9138dd... 0% ▕ � 0 B/ 148 B \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 100% ▕████████████████� 1.1 GB \u001b[K\n", + "pulling 369ca498f347... 100% ▕████████████████� 387 B \u001b[K\n", + "pulling 6e4c38e1172f... 100% ▕████████████████� 1.1 KB \u001b[K\n", + "pulling f4d24e9138dd... 0% ▕ � 0 B/ 148 B \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 100% ▕████████████████� 1.1 GB \u001b[K\n", + "pulling 369ca498f347... 100% ▕████████████████� 387 B \u001b[K\n", + "pulling 6e4c38e1172f... 100% ▕████████████████� 1.1 KB \u001b[K\n", + "pulling f4d24e9138dd... 0% ▕ � 0 B/ 148 B \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 100% ▕████████████████� 1.1 GB \u001b[K\n", + "pulling 369ca498f347... 100% ▕████████████████� 387 B \u001b[K\n", + "pulling 6e4c38e1172f... 100% ▕████████████████� 1.1 KB \u001b[K\n", + "pulling f4d24e9138dd... 0% ▕ � 0 B/ 148 B \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 100% ▕████████████████� 1.1 GB \u001b[K\n", + "pulling 369ca498f347... 100% ▕████████████████� 387 B \u001b[K\n", + "pulling 6e4c38e1172f... 100% ▕████████████████� 1.1 KB \u001b[K\n", + "pulling f4d24e9138dd... 0% ▕ � 0 B/ 148 B \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 100% ▕████████████████� 1.1 GB \u001b[K\n", + "pulling 369ca498f347... 100% ▕████████████████� 387 B \u001b[K\n", + "pulling 6e4c38e1172f... 100% ▕████████████████� 1.1 KB \u001b[K\n", + "pulling f4d24e9138dd... 0% ▕ � 0 B/ 148 B \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 100% ▕████████████████� 1.1 GB \u001b[K\n", + "pulling 369ca498f347... 100% ▕████████████████� 387 B \u001b[K\n", + "pulling 6e4c38e1172f... 100% ▕████████████████� 1.1 KB \u001b[K\n", + "pulling f4d24e9138dd... 100% ▕████████████████� 148 B \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 100% ▕████████████████� 1.1 GB \u001b[K\n", + "pulling 369ca498f347... 100% ▕████████████████� 387 B \u001b[K\n", + "pulling 6e4c38e1172f... 100% ▕████████████████� 1.1 KB \u001b[K\n", + "pulling f4d24e9138dd... 100% ▕████████████████� 148 B \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 100% ▕████████████████� 1.1 GB \u001b[K\n", + "pulling 369ca498f347... 100% ▕████████████████� 387 B \u001b[K\n", + "pulling 6e4c38e1172f... 100% ▕████████████████� 1.1 KB \u001b[K\n", + "pulling f4d24e9138dd... 100% ▕████████████████� 148 B \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 100% ▕████████████████� 1.1 GB \u001b[K\n", + "pulling 369ca498f347... 100% ▕████████████████� 387 B \u001b[K\n", + "pulling 6e4c38e1172f... 100% ▕████████████████� 1.1 KB \u001b[K\n", + "pulling f4d24e9138dd... 100% ▕████████████████� 148 B \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 100% ▕████████████████� 1.1 GB \u001b[K\n", + "pulling 369ca498f347... 100% ▕████████████████� 387 B \u001b[K\n", + "pulling 6e4c38e1172f... 100% ▕████████████████� 1.1 KB \u001b[K\n", + "pulling f4d24e9138dd... 100% ▕████████████████� 148 B \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 100% ▕████████████████� 1.1 GB \u001b[K\n", + "pulling 369ca498f347... 100% ▕████████████████� 387 B \u001b[K\n", + "pulling 6e4c38e1172f... 100% ▕████████████████� 1.1 KB \u001b[K\n", + "pulling f4d24e9138dd... 100% ▕████████████████� 148 B \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 100% ▕████████████████� 1.1 GB \u001b[K\n", + "pulling 369ca498f347... 100% ▕████████████████� 387 B \u001b[K\n", + "pulling 6e4c38e1172f... 100% ▕████████████████� 1.1 KB \u001b[K\n", + "pulling f4d24e9138dd... 100% ▕████████████████� 148 B \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 100% ▕████████████████� 1.1 GB \u001b[K\n", + "pulling 369ca498f347... 100% ▕████████████████� 387 B \u001b[K\n", + "pulling 6e4c38e1172f... 100% ▕████████████████� 1.1 KB \u001b[K\n", + "pulling f4d24e9138dd... 100% ▕████████████████� 148 B \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 100% ▕████████████████� 1.1 GB \u001b[K\n", + "pulling 369ca498f347... 100% ▕████████████████� 387 B \u001b[K\n", + "pulling 6e4c38e1172f... 100% ▕████████████████� 1.1 KB \u001b[K\n", + "pulling f4d24e9138dd... 100% ▕████████████████� 148 B \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 100% ▕████████████████� 1.1 GB \u001b[K\n", + "pulling 369ca498f347... 100% ▕████████████████� 387 B \u001b[K\n", + "pulling 6e4c38e1172f... 100% ▕████████████████� 1.1 KB \u001b[K\n", + "pulling f4d24e9138dd... 100% ▕████████████████� 148 B \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 100% ▕████████████████� 1.1 GB \u001b[K\n", + "pulling 369ca498f347... 100% ▕████████████████� 387 B \u001b[K\n", + "pulling 6e4c38e1172f... 100% ▕████████████████� 1.1 KB \u001b[K\n", + "pulling f4d24e9138dd... 100% ▕████████████████� 148 B \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 100% ▕████████████████� 1.1 GB \u001b[K\n", + "pulling 369ca498f347... 100% ▕████████████████� 387 B \u001b[K\n", + "pulling 6e4c38e1172f... 100% ▕████████████████� 1.1 KB \u001b[K\n", + "pulling f4d24e9138dd... 100% ▕████████████████� 148 B \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 100% ▕████████████████� 1.1 GB \u001b[K\n", + "pulling 369ca498f347... 100% ▕████████████████� 387 B \u001b[K\n", + "pulling 6e4c38e1172f... 100% ▕████████████████� 1.1 KB \u001b[K\n", + "pulling f4d24e9138dd... 100% ▕████████████████� 148 B \u001b[K\n", + "pulling a85fe2a2e58e... 0% ▕ � 0 B/ 487 B \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 100% ▕████████████████� 1.1 GB \u001b[K\n", + "pulling 369ca498f347... 100% ▕████████████████� 387 B \u001b[K\n", + "pulling 6e4c38e1172f... 100% ▕████████████████� 1.1 KB \u001b[K\n", + "pulling f4d24e9138dd... 100% ▕████████████████� 148 B \u001b[K\n", + "pulling a85fe2a2e58e... 0% ▕ � 0 B/ 487 B \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 100% ▕████████████████� 1.1 GB \u001b[K\n", + "pulling 369ca498f347... 100% ▕████████████████� 387 B \u001b[K\n", + "pulling 6e4c38e1172f... 100% ▕████████████████� 1.1 KB \u001b[K\n", + "pulling f4d24e9138dd... 100% ▕████████████████� 148 B \u001b[K\n", + "pulling a85fe2a2e58e... 0% ▕ � 0 B/ 487 B \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 100% ▕████████████████� 1.1 GB \u001b[K\n", + "pulling 369ca498f347... 100% ▕████████████████� 387 B \u001b[K\n", + "pulling 6e4c38e1172f... 100% ▕████████████████� 1.1 KB \u001b[K\n", + "pulling f4d24e9138dd... 100% ▕████████████████� 148 B \u001b[K\n", + "pulling a85fe2a2e58e... 0% ▕ � 0 B/ 487 B \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 100% ▕████████████████� 1.1 GB \u001b[K\n", + "pulling 369ca498f347... 100% ▕████████████████� 387 B \u001b[K\n", + "pulling 6e4c38e1172f... 100% ▕████████████████� 1.1 KB \u001b[K\n", + "pulling f4d24e9138dd... 100% ▕████████████████� 148 B \u001b[K\n", + "pulling a85fe2a2e58e... 0% ▕ � 0 B/ 487 B \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 100% ▕████████████████� 1.1 GB \u001b[K\n", + "pulling 369ca498f347... 100% ▕████████████████� 387 B \u001b[K\n", + "pulling 6e4c38e1172f... 100% ▕████████████████� 1.1 KB \u001b[K\n", + "pulling f4d24e9138dd... 100% ▕████████████████� 148 B \u001b[K\n", + "pulling a85fe2a2e58e... 100% ▕████████████████� 487 B \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 100% ▕████████████████� 1.1 GB \u001b[K\n", + "pulling 369ca498f347... 100% ▕████████████████� 387 B \u001b[K\n", + "pulling 6e4c38e1172f... 100% ▕████████████████� 1.1 KB \u001b[K\n", + "pulling f4d24e9138dd... 100% ▕████████████████� 148 B \u001b[K\n", + "pulling a85fe2a2e58e... 100% ▕████████████████� 487 B \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 100% ▕████████████████� 1.1 GB \u001b[K\n", + "pulling 369ca498f347... 100% ▕████████████████� 387 B \u001b[K\n", + "pulling 6e4c38e1172f... 100% ▕████████████████� 1.1 KB \u001b[K\n", + "pulling f4d24e9138dd... 100% ▕████████████████� 148 B \u001b[K\n", + "pulling a85fe2a2e58e... 100% ▕████████████████� 487 B \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 100% ▕████████████████� 1.1 GB \u001b[K\n", + "pulling 369ca498f347... 100% ▕████████████████� 387 B \u001b[K\n", + "pulling 6e4c38e1172f... 100% ▕████████████████� 1.1 KB \u001b[K\n", + "pulling f4d24e9138dd... 100% ▕████████████████� 148 B \u001b[K\n", + "pulling a85fe2a2e58e... 100% ▕████████████████� 487 B \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 100% ▕████████████████� 1.1 GB \u001b[K\n", + "pulling 369ca498f347... 100% ▕████████████████� 387 B \u001b[K\n", + "pulling 6e4c38e1172f... 100% ▕████████████████� 1.1 KB \u001b[K\n", + "pulling f4d24e9138dd... 100% ▕████████████████� 148 B \u001b[K\n", + "pulling a85fe2a2e58e... 100% ▕████████████████� 487 B \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 100% ▕████████████████� 1.1 GB \u001b[K\n", + "pulling 369ca498f347... 100% ▕████████████████� 387 B \u001b[K\n", + "pulling 6e4c38e1172f... 100% ▕████████████████� 1.1 KB \u001b[K\n", + "pulling f4d24e9138dd... 100% ▕████████████████� 148 B \u001b[K\n", + "pulling a85fe2a2e58e... 100% ▕████████████████� 487 B \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 100% ▕████████████████� 1.1 GB \u001b[K\n", + "pulling 369ca498f347... 100% ▕████████████████� 387 B \u001b[K\n", + "pulling 6e4c38e1172f... 100% ▕████████████████� 1.1 KB \u001b[K\n", + "pulling f4d24e9138dd... 100% ▕████████████████� 148 B \u001b[K\n", + "pulling a85fe2a2e58e... 100% ▕████████████████� 487 B \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 100% ▕████████████████� 1.1 GB \u001b[K\n", + "pulling 369ca498f347... 100% ▕████████████████� 387 B \u001b[K\n", + "pulling 6e4c38e1172f... 100% ▕████████████████� 1.1 KB \u001b[K\n", + "pulling f4d24e9138dd... 100% ▕████████████████� 148 B \u001b[K\n", + "pulling a85fe2a2e58e... 100% ▕████████████████� 487 B \u001b[K\n", + "verifying sha256 digest ⠋ \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 100% ▕████████████████� 1.1 GB \u001b[K\n", + "pulling 369ca498f347... 100% ▕████████████████� 387 B \u001b[K\n", + "pulling 6e4c38e1172f... 100% ▕████████████████� 1.1 KB \u001b[K\n", + "pulling f4d24e9138dd... 100% ▕████████████████� 148 B \u001b[K\n", + "pulling a85fe2a2e58e... 100% ▕████████████████� 487 B \u001b[K\n", + "verifying sha256 digest ⠙ \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 100% ▕████████████████� 1.1 GB \u001b[K\n", + "pulling 369ca498f347... 100% ▕████████████████� 387 B \u001b[K\n", + "pulling 6e4c38e1172f... 100% ▕████████████████� 1.1 KB \u001b[K\n", + "pulling f4d24e9138dd... 100% ▕████████████████� 148 B \u001b[K\n", + "pulling a85fe2a2e58e... 100% ▕████████████████� 487 B \u001b[K\n", + "verifying sha256 digest ⠹ \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 100% ▕████████████████� 1.1 GB \u001b[K\n", + "pulling 369ca498f347... 100% ▕████████████████� 387 B \u001b[K\n", + "pulling 6e4c38e1172f... 100% ▕████████████████� 1.1 KB \u001b[K\n", + "pulling f4d24e9138dd... 100% ▕████████████████� 148 B \u001b[K\n", + "pulling a85fe2a2e58e... 100% ▕████████████████� 487 B \u001b[K\n", + "verifying sha256 digest ⠸ \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 100% ▕████████████████� 1.1 GB \u001b[K\n", + "pulling 369ca498f347... 100% ▕████████████████� 387 B \u001b[K\n", + "pulling 6e4c38e1172f... 100% ▕████████████████� 1.1 KB \u001b[K\n", + "pulling f4d24e9138dd... 100% ▕████████████████� 148 B \u001b[K\n", + "pulling a85fe2a2e58e... 100% ▕████████████████� 487 B \u001b[K\n", + "verifying sha256 digest ⠼ \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 100% ▕████████████████� 1.1 GB \u001b[K\n", + "pulling 369ca498f347... 100% ▕████████████████� 387 B \u001b[K\n", + "pulling 6e4c38e1172f... 100% ▕████████████████� 1.1 KB \u001b[K\n", + "pulling f4d24e9138dd... 100% ▕████████████████� 148 B \u001b[K\n", + "pulling a85fe2a2e58e... 100% ▕████████████████� 487 B \u001b[K\n", + "verifying sha256 digest ⠴ \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 100% ▕████████████████� 1.1 GB \u001b[K\n", + "pulling 369ca498f347... 100% ▕████████████████� 387 B \u001b[K\n", + "pulling 6e4c38e1172f... 100% ▕████████████████� 1.1 KB \u001b[K\n", + "pulling f4d24e9138dd... 100% ▕████████████████� 148 B \u001b[K\n", + "pulling a85fe2a2e58e... 100% ▕████████████████� 487 B \u001b[K\n", + "verifying sha256 digest ⠦ \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 100% ▕████████████████� 1.1 GB \u001b[K\n", + "pulling 369ca498f347... 100% ▕████████████████� 387 B \u001b[K\n", + "pulling 6e4c38e1172f... 100% ▕████████████████� 1.1 KB \u001b[K\n", + "pulling f4d24e9138dd... 100% ▕████████████████� 148 B \u001b[K\n", + "pulling a85fe2a2e58e... 100% ▕████████████████� 487 B \u001b[K\n", + "verifying sha256 digest ⠧ \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 100% ▕████████████████� 1.1 GB \u001b[K\n", + "pulling 369ca498f347... 100% ▕████████████████� 387 B \u001b[K\n", + "pulling 6e4c38e1172f... 100% ▕████████████████� 1.1 KB \u001b[K\n", + "pulling f4d24e9138dd... 100% ▕████████████████� 148 B \u001b[K\n", + "pulling a85fe2a2e58e... 100% ▕████████████████� 487 B \u001b[K\n", + "verifying sha256 digest ⠇ \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 100% ▕████████████████� 1.1 GB \u001b[K\n", + "pulling 369ca498f347... 100% ▕████████████████� 387 B \u001b[K\n", + "pulling 6e4c38e1172f... 100% ▕████████████████� 1.1 KB \u001b[K\n", + "pulling f4d24e9138dd... 100% ▕████████████████� 148 B \u001b[K\n", + "pulling a85fe2a2e58e... 100% ▕████████████████� 487 B \u001b[K\n", + "verifying sha256 digest � \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 100% ▕████████████████� 1.1 GB \u001b[K\n", + "pulling 369ca498f347... 100% ▕████████████████� 387 B \u001b[K\n", + "pulling 6e4c38e1172f... 100% ▕████████████████� 1.1 KB \u001b[K\n", + "pulling f4d24e9138dd... 100% ▕████████████████� 148 B \u001b[K\n", + "pulling a85fe2a2e58e... 100% ▕████████████████� 487 B \u001b[K\n", + "verifying sha256 digest ⠋ \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 100% ▕████████████████� 1.1 GB \u001b[K\n", + "pulling 369ca498f347... 100% ▕████████████████� 387 B \u001b[K\n", + "pulling 6e4c38e1172f... 100% ▕████████████████� 1.1 KB \u001b[K\n", + "pulling f4d24e9138dd... 100% ▕████████████████� 148 B \u001b[K\n", + "pulling a85fe2a2e58e... 100% ▕████████████████� 487 B \u001b[K\n", + "verifying sha256 digest ⠙ \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 100% ▕████████████████� 1.1 GB \u001b[K\n", + "pulling 369ca498f347... 100% ▕████████████████� 387 B \u001b[K\n", + "pulling 6e4c38e1172f... 100% ▕████████████████� 1.1 KB \u001b[K\n", + "pulling f4d24e9138dd... 100% ▕████████████████� 148 B \u001b[K\n", + "pulling a85fe2a2e58e... 100% ▕████████████████� 487 B \u001b[K\n", + "verifying sha256 digest ⠹ \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 100% ▕████████████████� 1.1 GB \u001b[K\n", + "pulling 369ca498f347... 100% ▕████████████████� 387 B \u001b[K\n", + "pulling 6e4c38e1172f... 100% ▕████████████████� 1.1 KB \u001b[K\n", + "pulling f4d24e9138dd... 100% ▕████████████████� 148 B \u001b[K\n", + "pulling a85fe2a2e58e... 100% ▕████████████████� 487 B \u001b[K\n", + "verifying sha256 digest ⠸ \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 100% ▕████████████████� 1.1 GB \u001b[K\n", + "pulling 369ca498f347... 100% ▕████████████████� 387 B \u001b[K\n", + "pulling 6e4c38e1172f... 100% ▕████████████████� 1.1 KB \u001b[K\n", + "pulling f4d24e9138dd... 100% ▕████████████████� 148 B \u001b[K\n", + "pulling a85fe2a2e58e... 100% ▕████████████████� 487 B \u001b[K\n", + "verifying sha256 digest ⠼ \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 100% ▕████████████████� 1.1 GB \u001b[K\n", + "pulling 369ca498f347... 100% ▕████████████████� 387 B \u001b[K\n", + "pulling 6e4c38e1172f... 100% ▕████████████████� 1.1 KB \u001b[K\n", + "pulling f4d24e9138dd... 100% ▕████████████████� 148 B \u001b[K\n", + "pulling a85fe2a2e58e... 100% ▕████████████████� 487 B \u001b[K\n", + "verifying sha256 digest ⠴ \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 100% ▕████████████████� 1.1 GB \u001b[K\n", + "pulling 369ca498f347... 100% ▕████████████████� 387 B \u001b[K\n", + "pulling 6e4c38e1172f... 100% ▕████████████████� 1.1 KB \u001b[K\n", + "pulling f4d24e9138dd... 100% ▕████████████████� 148 B \u001b[K\n", + "pulling a85fe2a2e58e... 100% ▕████████████████� 487 B \u001b[K\n", + "verifying sha256 digest ⠦ \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 100% ▕████████████████� 1.1 GB \u001b[K\n", + "pulling 369ca498f347... 100% ▕████████████████� 387 B \u001b[K\n", + "pulling 6e4c38e1172f... 100% ▕████████████████� 1.1 KB \u001b[K\n", + "pulling f4d24e9138dd... 100% ▕████████████████� 148 B \u001b[K\n", + "pulling a85fe2a2e58e... 100% ▕████████████████� 487 B \u001b[K\n", + "verifying sha256 digest ⠧ \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 100% ▕████████████████� 1.1 GB \u001b[K\n", + "pulling 369ca498f347... 100% ▕████████████████� 387 B \u001b[K\n", + "pulling 6e4c38e1172f... 100% ▕████████████████� 1.1 KB \u001b[K\n", + "pulling f4d24e9138dd... 100% ▕████████████████� 148 B \u001b[K\n", + "pulling a85fe2a2e58e... 100% ▕████████████████� 487 B \u001b[K\n", + "verifying sha256 digest ⠇ \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 100% ▕████████████████� 1.1 GB \u001b[K\n", + "pulling 369ca498f347... 100% ▕████████████████� 387 B \u001b[K\n", + "pulling 6e4c38e1172f... 100% ▕████████████████� 1.1 KB \u001b[K\n", + "pulling f4d24e9138dd... 100% ▕████████████████� 148 B \u001b[K\n", + "pulling a85fe2a2e58e... 100% ▕████████████████� 487 B \u001b[K\n", + "verifying sha256 digest � \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 100% ▕████████████████� 1.1 GB \u001b[K\n", + "pulling 369ca498f347... 100% ▕████████████████� 387 B \u001b[K\n", + "pulling 6e4c38e1172f... 100% ▕████████████████� 1.1 KB \u001b[K\n", + "pulling f4d24e9138dd... 100% ▕████████████████� 148 B \u001b[K\n", + "pulling a85fe2a2e58e... 100% ▕████████████████� 487 B \u001b[K\n", + "verifying sha256 digest ⠋ \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 100% ▕████████████████� 1.1 GB \u001b[K\n", + "pulling 369ca498f347... 100% ▕████████████████� 387 B \u001b[K\n", + "pulling 6e4c38e1172f... 100% ▕████████████████� 1.1 KB \u001b[K\n", + "pulling f4d24e9138dd... 100% ▕████████████████� 148 B \u001b[K\n", + "pulling a85fe2a2e58e... 100% ▕████████████████� 487 B \u001b[K\n", + "verifying sha256 digest ⠙ \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 100% ▕████████████████� 1.1 GB \u001b[K\n", + "pulling 369ca498f347... 100% ▕████████████████� 387 B \u001b[K\n", + "pulling 6e4c38e1172f... 100% ▕████████████████� 1.1 KB \u001b[K\n", + "pulling f4d24e9138dd... 100% ▕████████████████� 148 B \u001b[K\n", + "pulling a85fe2a2e58e... 100% ▕████████████████� 487 B \u001b[K\n", + "verifying sha256 digest ⠹ \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 100% ▕████████████████� 1.1 GB \u001b[K\n", + "pulling 369ca498f347... 100% ▕████████████████� 387 B \u001b[K\n", + "pulling 6e4c38e1172f... 100% ▕████████████████� 1.1 KB \u001b[K\n", + "pulling f4d24e9138dd... 100% ▕████████████████� 148 B \u001b[K\n", + "pulling a85fe2a2e58e... 100% ▕████████████████� 487 B \u001b[K\n", + "verifying sha256 digest ⠸ \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 100% ▕████████████████� 1.1 GB \u001b[K\n", + "pulling 369ca498f347... 100% ▕████████████████� 387 B \u001b[K\n", + "pulling 6e4c38e1172f... 100% ▕████████████████� 1.1 KB \u001b[K\n", + "pulling f4d24e9138dd... 100% ▕████████████████� 148 B \u001b[K\n", + "pulling a85fe2a2e58e... 100% ▕████████████████� 487 B \u001b[K\n", + "verifying sha256 digest ⠼ \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 100% ▕████████████████� 1.1 GB \u001b[K\n", + "pulling 369ca498f347... 100% ▕████████████████� 387 B \u001b[K\n", + "pulling 6e4c38e1172f... 100% ▕████████████████� 1.1 KB \u001b[K\n", + "pulling f4d24e9138dd... 100% ▕████████████████� 148 B \u001b[K\n", + "pulling a85fe2a2e58e... 100% ▕████████████████� 487 B \u001b[K\n", + "verifying sha256 digest ⠴ \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", + "pulling aabd4debf0c8... 100% ▕████████████████� 1.1 GB \u001b[K\n", + "pulling 369ca498f347... 100% ▕████████████████� 387 B \u001b[K\n", + "pulling 6e4c38e1172f... 100% ▕████████████████� 1.1 KB \u001b[K\n", + "pulling f4d24e9138dd... 100% ▕████████████████� 148 B \u001b[K\n", + "pulling a85fe2a2e58e... 100% ▕████████████████� 487 B \u001b[K\n", + "verifying sha256 digest \u001b[K\n", + "writing manifest \u001b[K\n", + "success \u001b[K\u001b[?25h\u001b[?2026l\n" + ] + } + ], "source": [ "!ollama pull deepseek-r1:1.5b" ] }, { "cell_type": "code", - "execution_count": null, + "execution_count": 18, "id": "1d3d554b-e00d-4c08-9300-45e073950a76", "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "\n", + "\n", + "\n", + "It seems like you mentioned \"Langgraph,\" but it's not clear what exactly you're referring to. Here are a few possibilities:\n", + "\n", + "1. **Langgraph (Language Graph v2)**: This is a library for visualizing programming languages and their syntax. It was developed by Google AI and can help in understanding the structure of various languages.\n", + "\n", + "2. **Graph Neural Networks (GNNs)**: A type of neural network designed to process graph data, which is useful in applications like social networks, chemistry, and more.\n", + "\n", + "3. **Langgraph**: If you meant \"Langgraph\" as a specific library or tool, please provide more details so I can give a more accurate response.\n", + "\n", + "Let me know how I can assist further!\n" + ] + } + ], "source": [ "# This may take a few minutes to run! You should then see a fascinating \"thinking\" trace inside tags, followed by some decent definitions\n", "\n", "response = ollama_via_openai.chat.completions.create(\n", " model=\"deepseek-r1:1.5b\",\n", - " messages=[{\"role\": \"user\", \"content\": \"Please give definitions of some core concepts behind LLMs: a neural network, attention and the transformer\"}]\n", + " messages=[{\"role\": \"user\", \"content\": \"expalin langgraph\"}]\n", ")\n", "\n", "print(response.choices[0].message.content)"