diff --git "a/tutorials_beginner/agent_rag_qa.ipynb" "b/tutorials_beginner/agent_rag_qa.ipynb" new file mode 100644--- /dev/null +++ "b/tutorials_beginner/agent_rag_qa.ipynb" @@ -0,0 +1,6014 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# RetrieveChat based FinRobot-RAG" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "In this demo, we showcase the RAG usecase of our finrobot, which inherits from autogen's RetrieveChat implementation." + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": {}, + "outputs": [], + "source": [ + "import autogen\n", + "from finrobot.agents.workflow import SingleAssistantRAG" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "for openai configuration, rename OAI_CONFIG_LIST_sample to OAI_CONFIG_LIST and replace the api keys" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": {}, + "outputs": [], + "source": [ + "# Read OpenAI API keys from a JSON file\n", + "llm_config = {\n", + " \"config_list\": autogen.config_list_from_json(\n", + " \"../OAI_CONFIG_LIST\",\n", + " filter_dict={\"model\": [\"gpt-4-0125-preview\"]},\n", + " ),\n", + " \"timeout\": 120,\n", + " \"temperature\": 0,\n", + "}" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "From `finrobot.agents.workflow` we import the `SingleAssistantRAG`, which takes a `retrieve_config` as input.\n", + "For `doc_path`, we first put our generated pdf report from [this notebook](./agent_annual_report.ipynb). \n", + "\n", + "For more configuration, refer to [autogen's documentation](https://microsoft.github.io/autogen/docs/reference/agentchat/contrib/retrieve_user_proxy_agent)\n", + "\n", + "Then, lets do a simple Q&A." + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/opt/anaconda3/envs/finrobot/lib/python3.10/site-packages/tqdm/auto.py:21: TqdmWarning: IProgress not found. Please update jupyter and ipywidgets. See https://ipywidgets.readthedocs.io/en/stable/user_install.html\n", + " from .autonotebook import tqdm as notebook_tqdm\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Trying to create collection.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2024-05-29 16:04:17,881 - autogen.agentchat.contrib.retrieve_user_proxy_agent - INFO - Found 1 chunks.\u001b[0m\n", + "2024-05-29 16:04:17,884 - autogen.agentchat.contrib.vectordb.chromadb - INFO - No content embedding is provided. Will use the VectorDB's embedding function to generate the content embedding.\u001b[0m\n", + "Number of requested results 20 is greater than number of elements in index 1, updating n_results = 1\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "VectorDB returns doc_ids: [['395fb8b9']]\n", + "\u001b[32mAdding content of doc 395fb8b9 to context.\u001b[0m\n", + "\u001b[33mUser_Proxy\u001b[0m (to Data_Analyst):\n", + "\n", + "You're a retrieve augmented chatbot. You answer user's questions based on your own knowledge and the\n", + "context provided by the user.\n", + "If you can't answer the question with or without the current context, you should reply exactly `UPDATE CONTEXT`.\n", + "You must give as short an answer as possible.\n", + "\n", + "User's question is: How's msft's 2023 income? Provide with some analysis.\n", + "\n", + "Context is: Equity Research Report: Microsoft Corporation\n", + "Income Summarization\n", + "The company experienced a 7% Year-over-Year increase in revenue, driven by\n", + "significant contributions from its Intelligent Cloud and Productivity and Business\n", + "Processes segments, indicating a strong demand for cloud-based solutions and\n", + "productivity software. Despite the revenue growth, the Cost of Goods Sold (COGS)\n", + "increased by 5%, suggesting a need for closer cost control measures to improve cost\n", + "efficiency and maintain profitability. The gross margin increased by 8%, while\n", + "operating income grew by 6%, highlighting effective cost management and\n", + "operational efficiency. However, net income slightly decreased by 1%, underscoring\n", + "challenges in sustaining net profitability against operational costs and investments.\n", + "The Diluted EPS remained stable at $9.68, reflecting a balanced investor outlook but\n", + "indicating the need for strategic initiatives to enhance shareholder value.\n", + "Business Highlights\n", + "Productivity and Business Processes segment saw a notable revenue increase,\n", + "driven by Office 365 Commercial and LinkedIn. This growth highlights the robust\n", + "demand for Microsoft's productivity tools and professional networking platform,\n", + "reflecting the company's ability to meet evolving workplace needs. More Personal\n", + "Computing segment experienced a decrease in revenue, primarily due to declines in\n", + "Windows and Devices. This downturn underscores the challenges faced by the\n", + "segment, including shifting consumer preferences and the competitive landscape in\n", + "PC and device markets.\n", + "Company Situation\n", + "Microsoft Corporation operates in the technology industry, focusing on empowering\n", + "individuals and organizations globally through a wide array of products and services.\n", + "Its core strengths lie in its diverse portfolio, including cloud-based solutions, software,\n", + "devices, and services that leverage artificial intelligence (AI) to enhance productivity\n", + "and business processes. Microsoft's competitive advantages include its innovation in\n", + "AI, cloud infrastructure, and collaboration tools, such as Microsoft Teams and Office\n", + "365. Current industry trends emphasize digital transformation, cloud computing, and\n", + "AI innovation. Opportunities for Microsoft include expanding its cloud services and\n", + "integrating AI across its product suite. Challenges involve navigating a highly\n", + "competitive technology landscape and adapting to changing consumer and business\n", + "needs. Recent strategic initiatives include investing in AI capabilities, expanding its\n", + "cloud infrastructure, and acquiring companies like Nuance to bolster its healthcare AI\n", + "solutions. Microsoft's response to market conditions includes focusing on cloud and\n", + "AI technologies to drive future growth. Microsoft's strategic focus on AI and cloud\n", + "computing, coupled with its ability to innovate and adapt, positions it well for\n", + "continued success in the dynamic technology industry.\n", + "Risk Assessment\n", + "Microsoft Corporation faces significant challenges primarily from strategic and\n", + "competitive risks due to intense competition and rapid technological changes in the\n", + "tech sector. The company's increasing focus on cloud-based services introduces\n", + "execution and competitive risks, including the need to innovate and manage costs\n", + "effectively. Additionally, Microsoft is subject to various legal, regulatory, and litigation\n", + "risks that could impact its business operations and financial performance. These\n", + "include government scrutiny under U.S. and foreign competition laws, as well as\n", + "potential liabilities from claims of intellectual property infringement.\n", + "Financial Metrics\n", + " FY (USD mn)\n", + "2019\n", + "2020\n", + "2021\n", + "2022\n", + "2023\n", + "Operating Revenue\n", + "125843.0\n", + "143015.0\n", + "168088.0\n", + "198270.0\n", + "211915.0\n", + "Adjusted Net Profit\n", + "39240.0\n", + "44281.0\n", + "61271.0\n", + "72738.0\n", + "72361.0\n", + "Adjusted EPS\n", + "5.11\n", + "5.82\n", + "8.12\n", + "9.7\n", + "9.72\n", + "EBIT Margin\n", + "0.34\n", + "0.37\n", + "0.42\n", + "0.42\n", + "0.42\n", + "ROE\n", + "0.38\n", + "0.37\n", + "0.43\n", + "0.44\n", + "0.35\n", + "PE Ratio\n", + "26.53\n", + "34.97\n", + "33.37\n", + "26.47\n", + "35.04\n", + "EV/EBITDA\n", + "19.32\n", + "23.48\n", + "25.03\n", + "19.74\n", + "24.35\n", + "PB Ratio\n", + "10.17\n", + "13.09\n", + "14.4\n", + "11.56\n", + "12.3\n", + "FinRobot\n", + "https://ai4finance.org/\n", + "https://github.com/AI4Finance-Foundation/FinRobot\n", + "Report date: 2023-07-27\n", + "Key data\n", + " Rating\n", + "strongBuy\n", + "Target Price\n", + "400 - 400 (md. 400.0)\n", + "6m avg daily vol (USDmn)\n", + "29.99\n", + "Closing Price (USD)\n", + "335.15\n", + "Market Cap (USDmn)\n", + "2456918.88\n", + "52 Week Price Range (USD)\n", + "217.07 - 349.70\n", + "BVPS (USD)\n", + "27.70\n", + "Share Performance\n", + "PE & EPS\n", + "\n", + "\n", + "\n", + "--------------------------------------------------------------------------------\n", + "\u001b[33mData_Analyst\u001b[0m (to User_Proxy):\n", + "\n", + "Microsoft's 2023 income saw a slight decrease in net income by 1% despite a 7% increase in revenue, indicating challenges in maintaining net profitability against operational costs and investments. The revenue growth was driven by its Intelligent Cloud and Productivity and Business Processes segments. Operating income grew by 6%, showing effective cost management. Diluted EPS remained stable at $9.68.\n", + "\n", + "--------------------------------------------------------------------------------\n", + "\u001b[31m\n", + ">>>>>>>> NO HUMAN INPUT RECEIVED.\u001b[0m\n", + "\u001b[31m\n", + ">>>>>>>> USING AUTO REPLY...\u001b[0m\n", + "\u001b[33mUser_Proxy\u001b[0m (to Data_Analyst):\n", + "\n", + "\n", + "\n", + "--------------------------------------------------------------------------------\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "huggingface/tokenizers: The current process just got forked, after parallelism has already been used. Disabling parallelism to avoid deadlocks...\n", + "To disable this warning, you can either:\n", + "\t- Avoid using `tokenizers` before the fork if possible\n", + "\t- Explicitly set the environment variable TOKENIZERS_PARALLELISM=(true | false)\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\u001b[33mData_Analyst\u001b[0m (to User_Proxy):\n", + "\n", + "TERMINATE\n", + "\n", + "--------------------------------------------------------------------------------\n" + ] + } + ], + "source": [ + "assitant = SingleAssistantRAG(\n", + " \"Data_Analyst\",\n", + " llm_config,\n", + " human_input_mode=\"ALWAYS\",\n", + " retrieve_config={\n", + " \"task\": \"qa\",\n", + " \"docs_path\": [\n", + " \"../report/Microsoft_Annual_Report_2023.pdf\",\n", + " ],\n", + " \"chunk_token_size\": 2000,\n", + " \"get_or_create\": True,\n", + " },\n", + ")\n", + "assitant.chat(\"How's msft's 2023 income? Provide with some analysis.\")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Here we come up with a more complex case, where we put the 10-k report of MSFT here.\n", + "\n", + "Let' see how the agent work this out." + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Trying to create collection.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t ...\n", + "Failed to split docs with must_break_at_empty_line being True, set to False.\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t0000789019falseFY--06-30P2YP5YP3YP1YP1Yhttp://fasb.org/us-gaap/2023#DerivativeAssetshttp://fasb.org/ ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t89019falseFY--06-30P2YP5YP3YP1YP1Yhttp://fasb.org/us-gaap/2023#DerivativeAssetshttp://fasb.org/us-ga ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tfalseFY--06-30P2YP5YP3YP1YP1Yhttp://fasb.org/us-gaap/2023#DerivativeAssetshttp://fasb.org/us-gaap/20 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tFY--06-30P2YP5YP3YP1YP1Yhttp://fasb.org/us-gaap/2023#DerivativeAssetshttp://fasb.org/us-gaap/2023#De ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t6-30P2YP5YP3YP1YP1Yhttp://fasb.org/us-gaap/2023#DerivativeAssetshttp://fasb.org/us-gaap/2023#Derivat ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t2YP5YP3YP1YP1Yhttp://fasb.org/us-gaap/2023#DerivativeAssetshttp://fasb.org/us-gaap/2023#DerivativeAs ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tP3YP1YP1Yhttp://fasb.org/us-gaap/2023#DerivativeAssetshttp://fasb.org/us-gaap/2023#DerivativeAssetsh ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tYP1Yhttp://fasb.org/us-gaap/2023#DerivativeAssetshttp://fasb.org/us-gaap/2023#DerivativeAssetshttp:/ ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tttp://fasb.org/us-gaap/2023#DerivativeAssetshttp://fasb.org/us-gaap/2023#DerivativeAssetshttp://fasb ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t/fasb.org/us-gaap/2023#DerivativeAssetshttp://fasb.org/us-gaap/2023#DerivativeAssetshttp://fasb.org/ ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t.org/us-gaap/2023#DerivativeAssetshttp://fasb.org/us-gaap/2023#DerivativeAssetshttp://fasb.org/us-ga ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tus-gaap/2023#DerivativeAssetshttp://fasb.org/us-gaap/2023#DerivativeAssetshttp://fasb.org/us-gaap/20 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tap/2023#DerivativeAssetshttp://fasb.org/us-gaap/2023#DerivativeAssetshttp://fasb.org/us-gaap/2023#De ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t23#DerivativeAssetshttp://fasb.org/us-gaap/2023#DerivativeAssetshttp://fasb.org/us-gaap/2023#Derivat ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\trivativeAssetshttp://fasb.org/us-gaap/2023#DerivativeAssetshttp://fasb.org/us-gaap/2023#DerivativeLi ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tiveAssetshttp://fasb.org/us-gaap/2023#DerivativeAssetshttp://fasb.org/us-gaap/2023#DerivativeLiabili ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tsetshttp://fasb.org/us-gaap/2023#DerivativeAssetshttp://fasb.org/us-gaap/2023#DerivativeLiabilitiesh ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tttp://fasb.org/us-gaap/2023#DerivativeAssetshttp://fasb.org/us-gaap/2023#DerivativeLiabilitieshttp:/ ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t/fasb.org/us-gaap/2023#DerivativeAssetshttp://fasb.org/us-gaap/2023#DerivativeLiabilitieshttp://fasb ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t.org/us-gaap/2023#DerivativeAssetshttp://fasb.org/us-gaap/2023#DerivativeLiabilitieshttp://fasb.org/ ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tus-gaap/2023#DerivativeAssetshttp://fasb.org/us-gaap/2023#DerivativeLiabilitieshttp://fasb.org/us-ga ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tap/2023#DerivativeAssetshttp://fasb.org/us-gaap/2023#DerivativeLiabilitieshttp://fasb.org/us-gaap/20 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t23#DerivativeAssetshttp://fasb.org/us-gaap/2023#DerivativeLiabilitieshttp://fasb.org/us-gaap/2023#De ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\trivativeAssetshttp://fasb.org/us-gaap/2023#DerivativeLiabilitieshttp://fasb.org/us-gaap/2023#Derivat ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tiveAssetshttp://fasb.org/us-gaap/2023#DerivativeLiabilitieshttp://fasb.org/us-gaap/2023#DerivativeLi ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tsetshttp://fasb.org/us-gaap/2023#DerivativeLiabilitieshttp://fasb.org/us-gaap/2023#DerivativeLiabili ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tttp://fasb.org/us-gaap/2023#DerivativeLiabilitieshttp://fasb.org/us-gaap/2023#DerivativeLiabilitiesh ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t/fasb.org/us-gaap/2023#DerivativeLiabilitieshttp://fasb.org/us-gaap/2023#DerivativeLiabilitieshttp:/ ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t.org/us-gaap/2023#DerivativeLiabilitieshttp://fasb.org/us-gaap/2023#DerivativeLiabilitieshttp://fasb ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tus-gaap/2023#DerivativeLiabilitieshttp://fasb.org/us-gaap/2023#DerivativeLiabilitieshttp://fasb.org/ ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tap/2023#DerivativeLiabilitieshttp://fasb.org/us-gaap/2023#DerivativeLiabilitieshttp://fasb.org/us-ga ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t23#DerivativeLiabilitieshttp://fasb.org/us-gaap/2023#DerivativeLiabilitieshttp://fasb.org/us-gaap/20 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\trivativeLiabilitieshttp://fasb.org/us-gaap/2023#DerivativeLiabilitieshttp://fasb.org/us-gaap/2023#Ot ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tiveLiabilitieshttp://fasb.org/us-gaap/2023#DerivativeLiabilitieshttp://fasb.org/us-gaap/2023#OtherAs ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tabilitieshttp://fasb.org/us-gaap/2023#DerivativeLiabilitieshttp://fasb.org/us-gaap/2023#OtherAssetsC ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\ttieshttp://fasb.org/us-gaap/2023#DerivativeLiabilitieshttp://fasb.org/us-gaap/2023#OtherAssetsCurren ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tttp://fasb.org/us-gaap/2023#DerivativeLiabilitieshttp://fasb.org/us-gaap/2023#OtherAssetsCurrenthttp ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t/fasb.org/us-gaap/2023#DerivativeLiabilitieshttp://fasb.org/us-gaap/2023#OtherAssetsCurrenthttp://fa ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t.org/us-gaap/2023#DerivativeLiabilitieshttp://fasb.org/us-gaap/2023#OtherAssetsCurrenthttp://fasb.or ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tus-gaap/2023#DerivativeLiabilitieshttp://fasb.org/us-gaap/2023#OtherAssetsCurrenthttp://fasb.org/us- ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tap/2023#DerivativeLiabilitieshttp://fasb.org/us-gaap/2023#OtherAssetsCurrenthttp://fasb.org/us-gaap/ ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t23#DerivativeLiabilitieshttp://fasb.org/us-gaap/2023#OtherAssetsCurrenthttp://fasb.org/us-gaap/2023# ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\trivativeLiabilitieshttp://fasb.org/us-gaap/2023#OtherAssetsCurrenthttp://fasb.org/us-gaap/2023#Other ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tiveLiabilitieshttp://fasb.org/us-gaap/2023#OtherAssetsCurrenthttp://fasb.org/us-gaap/2023#OtherAsset ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tabilitieshttp://fasb.org/us-gaap/2023#OtherAssetsCurrenthttp://fasb.org/us-gaap/2023#OtherAssetsCurr ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\ttieshttp://fasb.org/us-gaap/2023#OtherAssetsCurrenthttp://fasb.org/us-gaap/2023#OtherAssetsCurrentht ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tttp://fasb.org/us-gaap/2023#OtherAssetsCurrenthttp://fasb.org/us-gaap/2023#OtherAssetsCurrenthttp:// ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t/fasb.org/us-gaap/2023#OtherAssetsCurrenthttp://fasb.org/us-gaap/2023#OtherAssetsCurrenthttp://fasb. ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t.org/us-gaap/2023#OtherAssetsCurrenthttp://fasb.org/us-gaap/2023#OtherAssetsCurrenthttp://fasb.org/u ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tus-gaap/2023#OtherAssetsCurrenthttp://fasb.org/us-gaap/2023#OtherAssetsCurrenthttp://fasb.org/us-gaa ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tap/2023#OtherAssetsCurrenthttp://fasb.org/us-gaap/2023#OtherAssetsCurrenthttp://fasb.org/us-gaap/202 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t23#OtherAssetsCurrenthttp://fasb.org/us-gaap/2023#OtherAssetsCurrenthttp://fasb.org/us-gaap/2023#Oth ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\therAssetsCurrenthttp://fasb.org/us-gaap/2023#OtherAssetsCurrenthttp://fasb.org/us-gaap/2023#OtherAss ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tsetsCurrenthttp://fasb.org/us-gaap/2023#OtherAssetsCurrenthttp://fasb.org/us-gaap/2023#OtherAssetsCu ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\turrenthttp://fasb.org/us-gaap/2023#OtherAssetsCurrenthttp://fasb.org/us-gaap/2023#OtherAssetsCurrent ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tthttp://fasb.org/us-gaap/2023#OtherAssetsCurrenthttp://fasb.org/us-gaap/2023#OtherAssetsCurrenthttp: ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t://fasb.org/us-gaap/2023#OtherAssetsCurrenthttp://fasb.org/us-gaap/2023#OtherAssetsCurrenthttp://fas ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tsb.org/us-gaap/2023#OtherAssetsCurrenthttp://fasb.org/us-gaap/2023#OtherAssetsCurrenthttp://fasb.org ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tg/us-gaap/2023#OtherAssetsCurrenthttp://fasb.org/us-gaap/2023#OtherAssetsCurrenthttp://fasb.org/us-g ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tgaap/2023#OtherAssetsCurrenthttp://fasb.org/us-gaap/2023#OtherAssetsCurrenthttp://fasb.org/us-gaap/2 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t2023#OtherAssetsCurrenthttp://fasb.org/us-gaap/2023#OtherAssetsCurrenthttp://fasb.org/us-gaap/2023#O ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tOtherAssetsCurrenthttp://fasb.org/us-gaap/2023#OtherAssetsCurrenthttp://fasb.org/us-gaap/2023#OtherA ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tAssetsCurrenthttp://fasb.org/us-gaap/2023#OtherAssetsCurrenthttp://fasb.org/us-gaap/2023#OtherAssets ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tsCurrenthttp://fasb.org/us-gaap/2023#OtherAssetsCurrenthttp://fasb.org/us-gaap/2023#OtherAssetsCurre ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tenthttp://fasb.org/us-gaap/2023#OtherAssetsCurrenthttp://fasb.org/us-gaap/2023#OtherAssetsCurrenthtt ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\ttp://fasb.org/us-gaap/2023#OtherAssetsCurrenthttp://fasb.org/us-gaap/2023#OtherAssetsCurrenthttp://f ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tfasb.org/us-gaap/2023#OtherAssetsCurrenthttp://fasb.org/us-gaap/2023#OtherAssetsCurrenthttp://fasb.o ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\torg/us-gaap/2023#OtherAssetsCurrenthttp://fasb.org/us-gaap/2023#OtherAssetsCurrenthttp://fasb.org/us ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\ts-gaap/2023#OtherAssetsCurrenthttp://fasb.org/us-gaap/2023#OtherAssetsCurrenthttp://fasb.org/us-gaap ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tp/2023#OtherAssetsCurrenthttp://fasb.org/us-gaap/2023#OtherAssetsCurrenthttp://fasb.org/us-gaap/2023 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t3#OtherAssetsCurrenthttp://fasb.org/us-gaap/2023#OtherAssetsCurrenthttp://fasb.org/us-gaap/2023#Othe ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\terAssetsCurrenthttp://fasb.org/us-gaap/2023#OtherAssetsCurrenthttp://fasb.org/us-gaap/2023#OtherAsse ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tetsCurrenthttp://fasb.org/us-gaap/2023#OtherAssetsCurrenthttp://fasb.org/us-gaap/2023#OtherAssetsNon ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\trrenthttp://fasb.org/us-gaap/2023#OtherAssetsCurrenthttp://fasb.org/us-gaap/2023#OtherAssetsNoncurre ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\thttp://fasb.org/us-gaap/2023#OtherAssetsCurrenthttp://fasb.org/us-gaap/2023#OtherAssetsNoncurrenthtt ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t//fasb.org/us-gaap/2023#OtherAssetsCurrenthttp://fasb.org/us-gaap/2023#OtherAssetsNoncurrenthttp://f ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tb.org/us-gaap/2023#OtherAssetsCurrenthttp://fasb.org/us-gaap/2023#OtherAssetsNoncurrenthttp://fasb.o ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t/us-gaap/2023#OtherAssetsCurrenthttp://fasb.org/us-gaap/2023#OtherAssetsNoncurrenthttp://fasb.org/us ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\taap/2023#OtherAssetsCurrenthttp://fasb.org/us-gaap/2023#OtherAssetsNoncurrenthttp://fasb.org/us-gaap ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t023#OtherAssetsCurrenthttp://fasb.org/us-gaap/2023#OtherAssetsNoncurrenthttp://fasb.org/us-gaap/2023 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\ttherAssetsCurrenthttp://fasb.org/us-gaap/2023#OtherAssetsNoncurrenthttp://fasb.org/us-gaap/2023#Othe ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tssetsCurrenthttp://fasb.org/us-gaap/2023#OtherAssetsNoncurrenthttp://fasb.org/us-gaap/2023#OtherAsse ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tCurrenthttp://fasb.org/us-gaap/2023#OtherAssetsNoncurrenthttp://fasb.org/us-gaap/2023#OtherAssetsNon ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tnthttp://fasb.org/us-gaap/2023#OtherAssetsNoncurrenthttp://fasb.org/us-gaap/2023#OtherAssetsNoncurre ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tp://fasb.org/us-gaap/2023#OtherAssetsNoncurrenthttp://fasb.org/us-gaap/2023#OtherAssetsNoncurrenthtt ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tasb.org/us-gaap/2023#OtherAssetsNoncurrenthttp://fasb.org/us-gaap/2023#OtherAssetsNoncurrenthttp://f ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\trg/us-gaap/2023#OtherAssetsNoncurrenthttp://fasb.org/us-gaap/2023#OtherAssetsNoncurrenthttp://fasb.o ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t-gaap/2023#OtherAssetsNoncurrenthttp://fasb.org/us-gaap/2023#OtherAssetsNoncurrenthttp://fasb.org/us ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t/2023#OtherAssetsNoncurrenthttp://fasb.org/us-gaap/2023#OtherAssetsNoncurrenthttp://fasb.org/us-gaap ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t#OtherAssetsNoncurrenthttp://fasb.org/us-gaap/2023#OtherAssetsNoncurrenthttp://fasb.org/us-gaap/2023 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\trAssetsNoncurrenthttp://fasb.org/us-gaap/2023#OtherAssetsNoncurrenthttp://fasb.org/us-gaap/2023#Othe ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\ttsNoncurrenthttp://fasb.org/us-gaap/2023#OtherAssetsNoncurrenthttp://fasb.org/us-gaap/2023#OtherLiab ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tcurrenthttp://fasb.org/us-gaap/2023#OtherAssetsNoncurrenthttp://fasb.org/us-gaap/2023#OtherLiabiliti ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tnthttp://fasb.org/us-gaap/2023#OtherAssetsNoncurrenthttp://fasb.org/us-gaap/2023#OtherLiabilitiesCur ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tp://fasb.org/us-gaap/2023#OtherAssetsNoncurrenthttp://fasb.org/us-gaap/2023#OtherLiabilitiesCurrenth ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tasb.org/us-gaap/2023#OtherAssetsNoncurrenthttp://fasb.org/us-gaap/2023#OtherLiabilitiesCurrenthttp:/ ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\trg/us-gaap/2023#OtherAssetsNoncurrenthttp://fasb.org/us-gaap/2023#OtherLiabilitiesCurrenthttp://fasb ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t-gaap/2023#OtherAssetsNoncurrenthttp://fasb.org/us-gaap/2023#OtherLiabilitiesCurrenthttp://fasb.org/ ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t/2023#OtherAssetsNoncurrenthttp://fasb.org/us-gaap/2023#OtherLiabilitiesCurrenthttp://fasb.org/us-ga ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t#OtherAssetsNoncurrenthttp://fasb.org/us-gaap/2023#OtherLiabilitiesCurrenthttp://fasb.org/us-gaap/20 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\trAssetsNoncurrenthttp://fasb.org/us-gaap/2023#OtherLiabilitiesCurrenthttp://fasb.org/us-gaap/2023#Ot ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\ttsNoncurrenthttp://fasb.org/us-gaap/2023#OtherLiabilitiesCurrenthttp://fasb.org/us-gaap/2023#OtherLi ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tcurrenthttp://fasb.org/us-gaap/2023#OtherLiabilitiesCurrenthttp://fasb.org/us-gaap/2023#OtherLiabili ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tnthttp://fasb.org/us-gaap/2023#OtherLiabilitiesCurrenthttp://fasb.org/us-gaap/2023#OtherLiabilitiesC ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tp://fasb.org/us-gaap/2023#OtherLiabilitiesCurrenthttp://fasb.org/us-gaap/2023#OtherLiabilitiesCurren ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tasb.org/us-gaap/2023#OtherLiabilitiesCurrenthttp://fasb.org/us-gaap/2023#OtherLiabilitiesCurrenthttp ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\trg/us-gaap/2023#OtherLiabilitiesCurrenthttp://fasb.org/us-gaap/2023#OtherLiabilitiesCurrenthttp://fa ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t-gaap/2023#OtherLiabilitiesCurrenthttp://fasb.org/us-gaap/2023#OtherLiabilitiesCurrenthttp://fasb.or ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t/2023#OtherLiabilitiesCurrenthttp://fasb.org/us-gaap/2023#OtherLiabilitiesCurrenthttp://fasb.org/us- ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t#OtherLiabilitiesCurrenthttp://fasb.org/us-gaap/2023#OtherLiabilitiesCurrenthttp://fasb.org/us-gaap/ ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\trLiabilitiesCurrenthttp://fasb.org/us-gaap/2023#OtherLiabilitiesCurrenthttp://fasb.org/us-gaap/2023# ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tilitiesCurrenthttp://fasb.org/us-gaap/2023#OtherLiabilitiesCurrenthttp://fasb.org/us-gaap/2023#Other ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tesCurrenthttp://fasb.org/us-gaap/2023#OtherLiabilitiesCurrenthttp://fasb.org/us-gaap/2023#OtherLiabi ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\trenthttp://fasb.org/us-gaap/2023#OtherLiabilitiesCurrenthttp://fasb.org/us-gaap/2023#OtherLiabilitie ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tttp://fasb.org/us-gaap/2023#OtherLiabilitiesCurrenthttp://fasb.org/us-gaap/2023#OtherLiabilitiesNonc ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t/fasb.org/us-gaap/2023#OtherLiabilitiesCurrenthttp://fasb.org/us-gaap/2023#OtherLiabilitiesNoncurren ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t.org/us-gaap/2023#OtherLiabilitiesCurrenthttp://fasb.org/us-gaap/2023#OtherLiabilitiesNoncurrenthttp ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tus-gaap/2023#OtherLiabilitiesCurrenthttp://fasb.org/us-gaap/2023#OtherLiabilitiesNoncurrenthttp://fa ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tap/2023#OtherLiabilitiesCurrenthttp://fasb.org/us-gaap/2023#OtherLiabilitiesNoncurrenthttp://fasb.or ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t23#OtherLiabilitiesCurrenthttp://fasb.org/us-gaap/2023#OtherLiabilitiesNoncurrenthttp://fasb.org/us- ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\therLiabilitiesCurrenthttp://fasb.org/us-gaap/2023#OtherLiabilitiesNoncurrenthttp://fasb.org/us-gaap/ ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tabilitiesCurrenthttp://fasb.org/us-gaap/2023#OtherLiabilitiesNoncurrenthttp://fasb.org/us-gaap/2023# ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\ttiesCurrenthttp://fasb.org/us-gaap/2023#OtherLiabilitiesNoncurrenthttp://fasb.org/us-gaap/2023#Other ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\turrenthttp://fasb.org/us-gaap/2023#OtherLiabilitiesNoncurrenthttp://fasb.org/us-gaap/2023#OtherLiabi ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tthttp://fasb.org/us-gaap/2023#OtherLiabilitiesNoncurrenthttp://fasb.org/us-gaap/2023#OtherLiabilitie ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t://fasb.org/us-gaap/2023#OtherLiabilitiesNoncurrenthttp://fasb.org/us-gaap/2023#OtherLiabilitiesNonc ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tsb.org/us-gaap/2023#OtherLiabilitiesNoncurrenthttp://fasb.org/us-gaap/2023#OtherLiabilitiesNoncurren ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tg/us-gaap/2023#OtherLiabilitiesNoncurrenthttp://fasb.org/us-gaap/2023#OtherLiabilitiesNoncurrentfals ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tgaap/2023#OtherLiabilitiesNoncurrenthttp://fasb.org/us-gaap/2023#OtherLiabilitiesNoncurrentfalsefals ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t2023#OtherLiabilitiesNoncurrenthttp://fasb.org/us-gaap/2023#OtherLiabilitiesNoncurrentfalsefalsefals ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tOtherLiabilitiesNoncurrenthttp://fasb.org/us-gaap/2023#OtherLiabilitiesNoncurrentfalsefalsefalsefals ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tLiabilitiesNoncurrenthttp://fasb.org/us-gaap/2023#OtherLiabilitiesNoncurrentfalsefalsefalsefalse0000 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tlitiesNoncurrenthttp://fasb.org/us-gaap/2023#OtherLiabilitiesNoncurrentfalsefalsefalsefalse000078901 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tsNoncurrenthttp://fasb.org/us-gaap/2023#OtherLiabilitiesNoncurrentfalsefalsefalsefalse0000789019us-g ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\turrenthttp://fasb.org/us-gaap/2023#OtherLiabilitiesNoncurrentfalsefalsefalsefalse0000789019us-gaap:N ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tthttp://fasb.org/us-gaap/2023#OtherLiabilitiesNoncurrentfalsefalsefalsefalse0000789019us-gaap:Nonope ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t://fasb.org/us-gaap/2023#OtherLiabilitiesNoncurrentfalsefalsefalsefalse0000789019us-gaap:Nonoperatin ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tsb.org/us-gaap/2023#OtherLiabilitiesNoncurrentfalsefalsefalsefalse0000789019us-gaap:NonoperatingInco ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tg/us-gaap/2023#OtherLiabilitiesNoncurrentfalsefalsefalsefalse0000789019us-gaap:NonoperatingIncomeExp ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tgaap/2023#OtherLiabilitiesNoncurrentfalsefalsefalsefalse0000789019us-gaap:NonoperatingIncomeExpenseM ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t2023#OtherLiabilitiesNoncurrentfalsefalsefalsefalse0000789019us-gaap:NonoperatingIncomeExpenseMember ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tOtherLiabilitiesNoncurrentfalsefalsefalsefalse0000789019us-gaap:NonoperatingIncomeExpenseMemberus-ga ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tLiabilitiesNoncurrentfalsefalsefalsefalse0000789019us-gaap:NonoperatingIncomeExpenseMemberus-gaap:Fo ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tlitiesNoncurrentfalsefalsefalsefalse0000789019us-gaap:NonoperatingIncomeExpenseMemberus-gaap:Foreign ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tsNoncurrentfalsefalsefalsefalse0000789019us-gaap:NonoperatingIncomeExpenseMemberus-gaap:ForeignExcha ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\turrentfalsefalsefalsefalse0000789019us-gaap:NonoperatingIncomeExpenseMemberus-gaap:ForeignExchangeCo ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\ttfalsefalsefalsefalse0000789019us-gaap:NonoperatingIncomeExpenseMemberus-gaap:ForeignExchangeContrac ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tefalsefalsefalse0000789019us-gaap:NonoperatingIncomeExpenseMemberus-gaap:ForeignExchangeContractMemb ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tefalsefalse0000789019us-gaap:NonoperatingIncomeExpenseMemberus-gaap:ForeignExchangeContractMemberus- ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tefalse0000789019us-gaap:NonoperatingIncomeExpenseMemberus-gaap:ForeignExchangeContractMemberus-gaap: ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\te0000789019us-gaap:NonoperatingIncomeExpenseMemberus-gaap:ForeignExchangeContractMemberus-gaap:FairV ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t789019us-gaap:NonoperatingIncomeExpenseMemberus-gaap:ForeignExchangeContractMemberus-gaap:FairValueH ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t9us-gaap:NonoperatingIncomeExpenseMemberus-gaap:ForeignExchangeContractMemberus-gaap:FairValueHedgin ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\taap:NonoperatingIncomeExpenseMemberus-gaap:ForeignExchangeContractMemberus-gaap:FairValueHedgingMemb ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tonoperatingIncomeExpenseMemberus-gaap:ForeignExchangeContractMemberus-gaap:FairValueHedgingMember202 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tratingIncomeExpenseMemberus-gaap:ForeignExchangeContractMemberus-gaap:FairValueHedgingMember2021-07- ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tgIncomeExpenseMemberus-gaap:ForeignExchangeContractMemberus-gaap:FairValueHedgingMember2021-07-01202 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tmeExpenseMemberus-gaap:ForeignExchangeContractMemberus-gaap:FairValueHedgingMember2021-07-012022-06- ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tenseMemberus-gaap:ForeignExchangeContractMemberus-gaap:FairValueHedgingMember2021-07-012022-06-30000 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\temberus-gaap:ForeignExchangeContractMemberus-gaap:FairValueHedgingMember2021-07-012022-06-3000007890 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tus-gaap:ForeignExchangeContractMemberus-gaap:FairValueHedgingMember2021-07-012022-06-300000789019msf ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tap:ForeignExchangeContractMemberus-gaap:FairValueHedgingMember2021-07-012022-06-300000789019msft:Sha ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\treignExchangeContractMemberus-gaap:FairValueHedgingMember2021-07-012022-06-300000789019msft:ShareRep ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tExchangeContractMemberus-gaap:FairValueHedgingMember2021-07-012022-06-300000789019msft:ShareRepurcha ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tngeContractMemberus-gaap:FairValueHedgingMember2021-07-012022-06-300000789019msft:ShareRepurchasePro ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tntractMemberus-gaap:FairValueHedgingMember2021-07-012022-06-300000789019msft:ShareRepurchaseProgramT ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\ttMemberus-gaap:FairValueHedgingMember2021-07-012022-06-300000789019msft:ShareRepurchaseProgramTwenty ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\terus-gaap:FairValueHedgingMember2021-07-012022-06-300000789019msft:ShareRepurchaseProgramTwentyTwent ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tgaap:FairValueHedgingMember2021-07-012022-06-300000789019msft:ShareRepurchaseProgramTwentyTwentyOneM ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tFairValueHedgingMember2021-07-012022-06-300000789019msft:ShareRepurchaseProgramTwentyTwentyOneMember ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\talueHedgingMember2021-07-012022-06-300000789019msft:ShareRepurchaseProgramTwentyTwentyOneMember2022- ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tedgingMember2021-07-012022-06-300000789019msft:ShareRepurchaseProgramTwentyTwentyOneMember2022-01-01 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tgMember2021-07-012022-06-300000789019msft:ShareRepurchaseProgramTwentyTwentyOneMember2022-01-012022- ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\ter2021-07-012022-06-300000789019msft:ShareRepurchaseProgramTwentyTwentyOneMember2022-01-012022-03-31 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t1-07-012022-06-300000789019msft:ShareRepurchaseProgramTwentyTwentyOneMember2022-01-012022-03-3100007 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t012022-06-300000789019msft:ShareRepurchaseProgramTwentyTwentyOneMember2022-01-012022-03-310000789019 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t2-06-300000789019msft:ShareRepurchaseProgramTwentyTwentyOneMember2022-01-012022-03-3100007890192022- ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t300000789019msft:ShareRepurchaseProgramTwentyTwentyOneMember2022-01-012022-03-3100007890192022-07-01 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t0789019msft:ShareRepurchaseProgramTwentyTwentyOneMember2022-01-012022-03-3100007890192022-07-012022- ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t19msft:ShareRepurchaseProgramTwentyTwentyOneMember2022-01-012022-03-3100007890192022-07-012022-09-30 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tt:ShareRepurchaseProgramTwentyTwentyOneMember2022-01-012022-03-3100007890192022-07-012022-09-3000007 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\treRepurchaseProgramTwentyTwentyOneMember2022-01-012022-03-3100007890192022-07-012022-09-300000789019 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\turchaseProgramTwentyTwentyOneMember2022-01-012022-03-3100007890192022-07-012022-09-300000789019msft: ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tseProgramTwentyTwentyOneMember2022-01-012022-03-3100007890192022-07-012022-09-300000789019msft:Netwo ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tgramTwentyTwentyOneMember2022-01-012022-03-3100007890192022-07-012022-09-300000789019msft:NetworkEqu ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\twentyTwentyOneMember2022-01-012022-03-3100007890192022-07-012022-09-300000789019msft:NetworkEquipmen ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tTwentyOneMember2022-01-012022-03-3100007890192022-07-012022-09-300000789019msft:NetworkEquipmentMemb ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tyOneMember2022-01-012022-03-3100007890192022-07-012022-09-300000789019msft:NetworkEquipmentMemberus- ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tember2022-01-012022-03-3100007890192022-07-012022-09-300000789019msft:NetworkEquipmentMemberus-gaap: ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t2022-01-012022-03-3100007890192022-07-012022-09-300000789019msft:NetworkEquipmentMemberus-gaap:Servi ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t01-012022-03-3100007890192022-07-012022-09-300000789019msft:NetworkEquipmentMemberus-gaap:ServiceLif ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t2022-03-3100007890192022-07-012022-09-300000789019msft:NetworkEquipmentMemberus-gaap:ServiceLifeMemb ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t03-3100007890192022-07-012022-09-300000789019msft:NetworkEquipmentMemberus-gaap:ServiceLifeMember202 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t00007890192022-07-012022-09-300000789019msft:NetworkEquipmentMemberus-gaap:ServiceLifeMember2022-07- ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t890192022-07-012022-09-300000789019msft:NetworkEquipmentMemberus-gaap:ServiceLifeMember2022-07-01000 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t2022-07-012022-09-300000789019msft:NetworkEquipmentMemberus-gaap:ServiceLifeMember2022-07-0100007890 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t07-012022-09-300000789019msft:NetworkEquipmentMemberus-gaap:ServiceLifeMember2022-07-010000789019msf ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t2022-09-300000789019msft:NetworkEquipmentMemberus-gaap:ServiceLifeMember2022-07-010000789019msft:Oth ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t09-300000789019msft:NetworkEquipmentMemberus-gaap:ServiceLifeMember2022-07-010000789019msft:OtherCou ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t0000789019msft:NetworkEquipmentMemberus-gaap:ServiceLifeMember2022-07-010000789019msft:OtherCountrie ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t89019msft:NetworkEquipmentMemberus-gaap:ServiceLifeMember2022-07-010000789019msft:OtherCountriesMemb ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tmsft:NetworkEquipmentMemberus-gaap:ServiceLifeMember2022-07-010000789019msft:OtherCountriesMember202 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tNetworkEquipmentMemberus-gaap:ServiceLifeMember2022-07-010000789019msft:OtherCountriesMember2021-06- ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\trkEquipmentMemberus-gaap:ServiceLifeMember2022-07-010000789019msft:OtherCountriesMember2021-06-30000 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tipmentMemberus-gaap:ServiceLifeMember2022-07-010000789019msft:OtherCountriesMember2021-06-3000007890 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\ttMemberus-gaap:ServiceLifeMember2022-07-010000789019msft:OtherCountriesMember2021-06-300000789019us- ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\terus-gaap:ServiceLifeMember2022-07-010000789019msft:OtherCountriesMember2021-06-300000789019us-gaap: ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tgaap:ServiceLifeMember2022-07-010000789019msft:OtherCountriesMember2021-06-300000789019us-gaap:Lates ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tServiceLifeMember2022-07-010000789019msft:OtherCountriesMember2021-06-300000789019us-gaap:LatestTaxY ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tceLifeMember2022-07-010000789019msft:OtherCountriesMember2021-06-300000789019us-gaap:LatestTaxYearMe ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\teMember2022-07-010000789019msft:OtherCountriesMember2021-06-300000789019us-gaap:LatestTaxYearMemberu ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\ter2022-07-010000789019msft:OtherCountriesMember2021-06-300000789019us-gaap:LatestTaxYearMemberus-gaa ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t2-07-010000789019msft:OtherCountriesMember2021-06-300000789019us-gaap:LatestTaxYearMemberus-gaap:Int ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t010000789019msft:OtherCountriesMember2021-06-300000789019us-gaap:LatestTaxYearMemberus-gaap:Internal ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t0789019msft:OtherCountriesMember2021-06-300000789019us-gaap:LatestTaxYearMemberus-gaap:InternalReven ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t19msft:OtherCountriesMember2021-06-300000789019us-gaap:LatestTaxYearMemberus-gaap:InternalRevenueSer ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tt:OtherCountriesMember2021-06-300000789019us-gaap:LatestTaxYearMemberus-gaap:InternalRevenueServiceI ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\terCountriesMember2021-06-300000789019us-gaap:LatestTaxYearMemberus-gaap:InternalRevenueServiceIRSMem ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tntriesMember2021-06-300000789019us-gaap:LatestTaxYearMemberus-gaap:InternalRevenueServiceIRSMember20 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tsMember2021-06-300000789019us-gaap:LatestTaxYearMemberus-gaap:InternalRevenueServiceIRSMember2020-10 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\ter2021-06-300000789019us-gaap:LatestTaxYearMemberus-gaap:InternalRevenueServiceIRSMember2020-10-0120 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t1-06-300000789019us-gaap:LatestTaxYearMemberus-gaap:InternalRevenueServiceIRSMember2020-10-012020-12 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t300000789019us-gaap:LatestTaxYearMemberus-gaap:InternalRevenueServiceIRSMember2020-10-012020-12-3100 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t0789019us-gaap:LatestTaxYearMemberus-gaap:InternalRevenueServiceIRSMember2020-10-012020-12-310000789 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t19us-gaap:LatestTaxYearMemberus-gaap:InternalRevenueServiceIRSMember2020-10-012020-12-310000789019co ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tgaap:LatestTaxYearMemberus-gaap:InternalRevenueServiceIRSMember2020-10-012020-12-310000789019country ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tLatestTaxYearMemberus-gaap:InternalRevenueServiceIRSMember2020-10-012020-12-310000789019country:US20 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\ttTaxYearMemberus-gaap:InternalRevenueServiceIRSMember2020-10-012020-12-310000789019country:US2021-06 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tearMemberus-gaap:InternalRevenueServiceIRSMember2020-10-012020-12-310000789019country:US2021-06-3000 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tmberus-gaap:InternalRevenueServiceIRSMember2020-10-012020-12-310000789019country:US2021-06-300000789 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\ts-gaap:InternalRevenueServiceIRSMember2020-10-012020-12-310000789019country:US2021-06-300000789019us ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tp:InternalRevenueServiceIRSMember2020-10-012020-12-310000789019country:US2021-06-300000789019us-gaap ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\ternalRevenueServiceIRSMember2020-10-012020-12-310000789019country:US2021-06-300000789019us-gaap:Fair ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tRevenueServiceIRSMember2020-10-012020-12-310000789019country:US2021-06-300000789019us-gaap:FairValue ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tueServiceIRSMember2020-10-012020-12-310000789019country:US2021-06-300000789019us-gaap:FairValueInput ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tviceIRSMember2020-10-012020-12-310000789019country:US2021-06-300000789019us-gaap:FairValueInputsLeve ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tRSMember2020-10-012020-12-310000789019country:US2021-06-300000789019us-gaap:FairValueInputsLevel1Mem ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tber2020-10-012020-12-310000789019country:US2021-06-300000789019us-gaap:FairValueInputsLevel1Memberus ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t20-10-012020-12-310000789019country:US2021-06-300000789019us-gaap:FairValueInputsLevel1Memberus-gaap ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t-012020-12-310000789019country:US2021-06-300000789019us-gaap:FairValueInputsLevel1Memberus-gaap:Equi ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t20-12-310000789019country:US2021-06-300000789019us-gaap:FairValueInputsLevel1Memberus-gaap:EquitySec ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t-310000789019country:US2021-06-300000789019us-gaap:FairValueInputsLevel1Memberus-gaap:EquitySecuriti ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t00789019country:US2021-06-300000789019us-gaap:FairValueInputsLevel1Memberus-gaap:EquitySecuritiesMem ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t019country:US2021-06-300000789019us-gaap:FairValueInputsLevel1Memberus-gaap:EquitySecuritiesMember20 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tuntry:US2021-06-300000789019us-gaap:FairValueInputsLevel1Memberus-gaap:EquitySecuritiesMember2022-06 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t:US2021-06-300000789019us-gaap:FairValueInputsLevel1Memberus-gaap:EquitySecuritiesMember2022-06-3000 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t21-06-300000789019us-gaap:FairValueInputsLevel1Memberus-gaap:EquitySecuritiesMember2022-06-300000789 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t-300000789019us-gaap:FairValueInputsLevel1Memberus-gaap:EquitySecuritiesMember2022-06-300000789019us ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t00789019us-gaap:FairValueInputsLevel1Memberus-gaap:EquitySecuritiesMember2022-06-300000789019us-gaap ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t019us-gaap:FairValueInputsLevel1Memberus-gaap:EquitySecuritiesMember2022-06-300000789019us-gaap:USTr ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t-gaap:FairValueInputsLevel1Memberus-gaap:EquitySecuritiesMember2022-06-300000789019us-gaap:USTreasur ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t:FairValueInputsLevel1Memberus-gaap:EquitySecuritiesMember2022-06-300000789019us-gaap:USTreasuryAndG ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tValueInputsLevel1Memberus-gaap:EquitySecuritiesMember2022-06-300000789019us-gaap:USTreasuryAndGovern ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tInputsLevel1Memberus-gaap:EquitySecuritiesMember2022-06-300000789019us-gaap:USTreasuryAndGovernmentM ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tsLevel1Memberus-gaap:EquitySecuritiesMember2022-06-300000789019us-gaap:USTreasuryAndGovernmentMember ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tl1Memberus-gaap:EquitySecuritiesMember2022-06-300000789019us-gaap:USTreasuryAndGovernmentMember2023- ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tberus-gaap:EquitySecuritiesMember2022-06-300000789019us-gaap:USTreasuryAndGovernmentMember2023-06-30 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t-gaap:EquitySecuritiesMember2022-06-300000789019us-gaap:USTreasuryAndGovernmentMember2023-06-3000007 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t:EquitySecuritiesMember2022-06-300000789019us-gaap:USTreasuryAndGovernmentMember2023-06-300000789019 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\ttySecuritiesMember2022-06-300000789019us-gaap:USTreasuryAndGovernmentMember2023-06-300000789019us-ga ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\turitiesMember2022-06-300000789019us-gaap:USTreasuryAndGovernmentMember2023-06-300000789019us-gaap:Sh ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tesMember2022-06-300000789019us-gaap:USTreasuryAndGovernmentMember2023-06-300000789019us-gaap:ShortMe ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tber2022-06-300000789019us-gaap:USTreasuryAndGovernmentMember2023-06-300000789019us-gaap:ShortMemberu ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t22-06-300000789019us-gaap:USTreasuryAndGovernmentMember2023-06-300000789019us-gaap:ShortMemberus-gaa ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t-300000789019us-gaap:USTreasuryAndGovernmentMember2023-06-300000789019us-gaap:ShortMemberus-gaap:Non ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t00789019us-gaap:USTreasuryAndGovernmentMember2023-06-300000789019us-gaap:ShortMemberus-gaap:Nondesig ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t019us-gaap:USTreasuryAndGovernmentMember2023-06-300000789019us-gaap:ShortMemberus-gaap:Nondesignated ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t-gaap:USTreasuryAndGovernmentMember2023-06-300000789019us-gaap:ShortMemberus-gaap:NondesignatedMembe ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t:USTreasuryAndGovernmentMember2023-06-300000789019us-gaap:ShortMemberus-gaap:NondesignatedMemberus-g ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\teasuryAndGovernmentMember2023-06-300000789019us-gaap:ShortMemberus-gaap:NondesignatedMemberus-gaap:F ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tyAndGovernmentMember2023-06-300000789019us-gaap:ShortMemberus-gaap:NondesignatedMemberus-gaap:Foreig ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tovernmentMember2023-06-300000789019us-gaap:ShortMemberus-gaap:NondesignatedMemberus-gaap:ForeignExch ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tmentMember2023-06-300000789019us-gaap:ShortMemberus-gaap:NondesignatedMemberus-gaap:ForeignExchangeC ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tember2023-06-300000789019us-gaap:ShortMemberus-gaap:NondesignatedMemberus-gaap:ForeignExchangeContra ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t2023-06-300000789019us-gaap:ShortMemberus-gaap:NondesignatedMemberus-gaap:ForeignExchangeContractMem ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t06-300000789019us-gaap:ShortMemberus-gaap:NondesignatedMemberus-gaap:ForeignExchangeContractMember20 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t0000789019us-gaap:ShortMemberus-gaap:NondesignatedMemberus-gaap:ForeignExchangeContractMember2023-06 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t89019us-gaap:ShortMemberus-gaap:NondesignatedMemberus-gaap:ForeignExchangeContractMember2023-06-3000 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tus-gaap:ShortMemberus-gaap:NondesignatedMemberus-gaap:ForeignExchangeContractMember2023-06-300000789 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tap:ShortMemberus-gaap:NondesignatedMemberus-gaap:ForeignExchangeContractMember2023-06-300000789019ms ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tortMemberus-gaap:NondesignatedMemberus-gaap:ForeignExchangeContractMember2023-06-300000789019msft:Is ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tmberus-gaap:NondesignatedMemberus-gaap:ForeignExchangeContractMember2023-06-300000789019msft:Issuanc ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\ts-gaap:NondesignatedMemberus-gaap:ForeignExchangeContractMember2023-06-300000789019msft:IssuanceOfLo ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tp:NondesignatedMemberus-gaap:ForeignExchangeContractMember2023-06-300000789019msft:IssuanceOfLongTer ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tdesignatedMemberus-gaap:ForeignExchangeContractMember2023-06-300000789019msft:IssuanceOfLongTermDebt ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tnatedMemberus-gaap:ForeignExchangeContractMember2023-06-300000789019msft:IssuanceOfLongTermDebtFourM ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tMemberus-gaap:ForeignExchangeContractMember2023-06-300000789019msft:IssuanceOfLongTermDebtFourMember ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\trus-gaap:ForeignExchangeContractMember2023-06-300000789019msft:IssuanceOfLongTermDebtFourMember2023- ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\taap:ForeignExchangeContractMember2023-06-300000789019msft:IssuanceOfLongTermDebtFourMember2023-06-30 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\toreignExchangeContractMember2023-06-300000789019msft:IssuanceOfLongTermDebtFourMember2023-06-3000007 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tnExchangeContractMember2023-06-300000789019msft:IssuanceOfLongTermDebtFourMember2023-06-300000789019 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tangeContractMember2023-06-300000789019msft:IssuanceOfLongTermDebtFourMember2023-06-300000789019srt:M ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tontractMember2023-06-300000789019msft:IssuanceOfLongTermDebtFourMember2023-06-300000789019srt:Minimu ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tctMember2023-06-300000789019msft:IssuanceOfLongTermDebtFourMember2023-06-300000789019srt:MinimumMemb ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tber2023-06-300000789019msft:IssuanceOfLongTermDebtFourMember2023-06-300000789019srt:MinimumMembermsf ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t23-06-300000789019msft:IssuanceOfLongTermDebtFourMember2023-06-300000789019srt:MinimumMembermsft:Iss ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t-300000789019msft:IssuanceOfLongTermDebtFourMember2023-06-300000789019srt:MinimumMembermsft:Issuance ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t00789019msft:IssuanceOfLongTermDebtFourMember2023-06-300000789019srt:MinimumMembermsft:IssuanceOfLon ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t019msft:IssuanceOfLongTermDebtFourMember2023-06-300000789019srt:MinimumMembermsft:IssuanceOfLongTerm ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tft:IssuanceOfLongTermDebtFourMember2023-06-300000789019srt:MinimumMembermsft:IssuanceOfLongTermDebtT ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tsuanceOfLongTermDebtFourMember2023-06-300000789019srt:MinimumMembermsft:IssuanceOfLongTermDebtTenMem ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\teOfLongTermDebtFourMember2023-06-300000789019srt:MinimumMembermsft:IssuanceOfLongTermDebtTenMember20 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tngTermDebtFourMember2023-06-300000789019srt:MinimumMembermsft:IssuanceOfLongTermDebtTenMember2022-07 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tmDebtFourMember2023-06-300000789019srt:MinimumMembermsft:IssuanceOfLongTermDebtTenMember2022-07-0120 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tFourMember2023-06-300000789019srt:MinimumMembermsft:IssuanceOfLongTermDebtTenMember2022-07-012023-06 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tember2023-06-300000789019srt:MinimumMembermsft:IssuanceOfLongTermDebtTenMember2022-07-012023-06-3000 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t2023-06-300000789019srt:MinimumMembermsft:IssuanceOfLongTermDebtTenMember2022-07-012023-06-300000789 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t06-300000789019srt:MinimumMembermsft:IssuanceOfLongTermDebtTenMember2022-07-012023-06-30000078901920 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t0000789019srt:MinimumMembermsft:IssuanceOfLongTermDebtTenMember2022-07-012023-06-3000007890192022-10 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t89019srt:MinimumMembermsft:IssuanceOfLongTermDebtTenMember2022-07-012023-06-3000007890192022-10-0120 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tsrt:MinimumMembermsft:IssuanceOfLongTermDebtTenMember2022-07-012023-06-3000007890192022-10-012022-12 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tinimumMembermsft:IssuanceOfLongTermDebtTenMember2022-07-012023-06-3000007890192022-10-012022-12-3100 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tmMembermsft:IssuanceOfLongTermDebtTenMember2022-07-012023-06-3000007890192022-10-012022-12-310000789 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\termsft:IssuanceOfLongTermDebtTenMember2022-07-012023-06-3000007890192022-10-012022-12-310000789019us ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tt:IssuanceOfLongTermDebtTenMember2022-07-012023-06-3000007890192022-10-012022-12-310000789019us-gaap ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tuanceOfLongTermDebtTenMember2022-07-012023-06-3000007890192022-10-012022-12-310000789019us-gaap:Earl ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tOfLongTermDebtTenMember2022-07-012023-06-3000007890192022-10-012022-12-310000789019us-gaap:EarliestT ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tgTermDebtTenMember2022-07-012023-06-3000007890192022-10-012022-12-310000789019us-gaap:EarliestTaxYea ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tDebtTenMember2022-07-012023-06-3000007890192022-10-012022-12-310000789019us-gaap:EarliestTaxYearMemb ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tenMember2022-07-012023-06-3000007890192022-10-012022-12-310000789019us-gaap:EarliestTaxYearMemberus- ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tber2022-07-012023-06-3000007890192022-10-012022-12-310000789019us-gaap:EarliestTaxYearMemberus-gaap: ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t22-07-012023-06-3000007890192022-10-012022-12-310000789019us-gaap:EarliestTaxYearMemberus-gaap:Inter ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t-012023-06-3000007890192022-10-012022-12-310000789019us-gaap:EarliestTaxYearMemberus-gaap:InternalRe ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t23-06-3000007890192022-10-012022-12-310000789019us-gaap:EarliestTaxYearMemberus-gaap:InternalRevenue ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t-3000007890192022-10-012022-12-310000789019us-gaap:EarliestTaxYearMemberus-gaap:InternalRevenueServi ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t007890192022-10-012022-12-310000789019us-gaap:EarliestTaxYearMemberus-gaap:InternalRevenueServiceIRS ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t0192022-10-012022-12-310000789019us-gaap:EarliestTaxYearMemberus-gaap:InternalRevenueServiceIRSMembe ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t22-10-012022-12-310000789019us-gaap:EarliestTaxYearMemberus-gaap:InternalRevenueServiceIRSMember2022 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t-012022-12-310000789019us-gaap:EarliestTaxYearMemberus-gaap:InternalRevenueServiceIRSMember2022-07-0 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t22-12-310000789019us-gaap:EarliestTaxYearMemberus-gaap:InternalRevenueServiceIRSMember2022-07-012023 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t-310000789019us-gaap:EarliestTaxYearMemberus-gaap:InternalRevenueServiceIRSMember2022-07-012023-06-3 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t00789019us-gaap:EarliestTaxYearMemberus-gaap:InternalRevenueServiceIRSMember2022-07-012023-06-300000 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t019us-gaap:EarliestTaxYearMemberus-gaap:InternalRevenueServiceIRSMember2022-07-012023-06-30000078901 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t-gaap:EarliestTaxYearMemberus-gaap:InternalRevenueServiceIRSMember2022-07-012023-06-300000789019us-g ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t:EarliestTaxYearMemberus-gaap:InternalRevenueServiceIRSMember2022-07-012023-06-300000789019us-gaap:S ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tiestTaxYearMemberus-gaap:InternalRevenueServiceIRSMember2022-07-012023-06-300000789019us-gaap:ShortM ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\taxYearMemberus-gaap:InternalRevenueServiceIRSMember2022-07-012023-06-300000789019us-gaap:ShortMember ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\trMemberus-gaap:InternalRevenueServiceIRSMember2022-07-012023-06-300000789019us-gaap:ShortMemberus-ga ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\terus-gaap:InternalRevenueServiceIRSMember2022-07-012023-06-300000789019us-gaap:ShortMemberus-gaap:Ot ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tgaap:InternalRevenueServiceIRSMember2022-07-012023-06-300000789019us-gaap:ShortMemberus-gaap:OtherCo ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tInternalRevenueServiceIRSMember2022-07-012023-06-300000789019us-gaap:ShortMemberus-gaap:OtherContrac ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tnalRevenueServiceIRSMember2022-07-012023-06-300000789019us-gaap:ShortMemberus-gaap:OtherContractMemb ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tvenueServiceIRSMember2022-07-012023-06-300000789019us-gaap:ShortMemberus-gaap:OtherContractMemberus- ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tServiceIRSMember2022-07-012023-06-300000789019us-gaap:ShortMemberus-gaap:OtherContractMemberus-gaap: ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tceIRSMember2022-07-012023-06-300000789019us-gaap:ShortMemberus-gaap:OtherContractMemberus-gaap:Nonde ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tMember2022-07-012023-06-300000789019us-gaap:ShortMemberus-gaap:OtherContractMemberus-gaap:Nondesigna ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tr2022-07-012023-06-300000789019us-gaap:ShortMemberus-gaap:OtherContractMemberus-gaap:NondesignatedMe ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t-07-012023-06-300000789019us-gaap:ShortMemberus-gaap:OtherContractMemberus-gaap:NondesignatedMember2 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t12023-06-300000789019us-gaap:ShortMemberus-gaap:OtherContractMemberus-gaap:NondesignatedMember2023-0 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t-06-300000789019us-gaap:ShortMemberus-gaap:OtherContractMemberus-gaap:NondesignatedMember2023-06-300 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t00000789019us-gaap:ShortMemberus-gaap:OtherContractMemberus-gaap:NondesignatedMember2023-06-30000078 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t789019us-gaap:ShortMemberus-gaap:OtherContractMemberus-gaap:NondesignatedMember2023-06-300000789019u ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t9us-gaap:ShortMemberus-gaap:OtherContractMemberus-gaap:NondesignatedMember2023-06-300000789019us-gaa ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\taap:ShortMemberus-gaap:OtherContractMemberus-gaap:NondesignatedMember2023-06-300000789019us-gaap:Sof ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\thortMemberus-gaap:OtherContractMemberus-gaap:NondesignatedMember2023-06-300000789019us-gaap:Software ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\temberus-gaap:OtherContractMemberus-gaap:NondesignatedMember2023-06-300000789019us-gaap:SoftwareAndSo ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tus-gaap:OtherContractMemberus-gaap:NondesignatedMember2023-06-300000789019us-gaap:SoftwareAndSoftwar ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tap:OtherContractMemberus-gaap:NondesignatedMember2023-06-300000789019us-gaap:SoftwareAndSoftwareDeve ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\therContractMemberus-gaap:NondesignatedMember2023-06-300000789019us-gaap:SoftwareAndSoftwareDevelopme ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tntractMemberus-gaap:NondesignatedMember2023-06-300000789019us-gaap:SoftwareAndSoftwareDevelopmentCos ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\ttMemberus-gaap:NondesignatedMember2023-06-300000789019us-gaap:SoftwareAndSoftwareDevelopmentCostsMem ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\terus-gaap:NondesignatedMember2023-06-300000789019us-gaap:SoftwareAndSoftwareDevelopmentCostsMember20 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tgaap:NondesignatedMember2023-06-300000789019us-gaap:SoftwareAndSoftwareDevelopmentCostsMember2023-06 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tNondesignatedMember2023-06-300000789019us-gaap:SoftwareAndSoftwareDevelopmentCostsMember2023-06-3000 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tsignatedMember2023-06-300000789019us-gaap:SoftwareAndSoftwareDevelopmentCostsMember2023-06-300000789 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\ttedMember2023-06-300000789019us-gaap:SoftwareAndSoftwareDevelopmentCostsMember2023-06-300000789019us ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tmber2023-06-300000789019us-gaap:SoftwareAndSoftwareDevelopmentCostsMember2023-06-300000789019us-gaap ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t023-06-300000789019us-gaap:SoftwareAndSoftwareDevelopmentCostsMember2023-06-300000789019us-gaap:Comm ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t6-300000789019us-gaap:SoftwareAndSoftwareDevelopmentCostsMember2023-06-300000789019us-gaap:CommonSto ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t000789019us-gaap:SoftwareAndSoftwareDevelopmentCostsMember2023-06-300000789019us-gaap:CommonStockMem ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t9019us-gaap:SoftwareAndSoftwareDevelopmentCostsMember2023-06-300000789019us-gaap:CommonStockMember20 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\ts-gaap:SoftwareAndSoftwareDevelopmentCostsMember2023-06-300000789019us-gaap:CommonStockMember2022-07 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tp:SoftwareAndSoftwareDevelopmentCostsMember2023-06-300000789019us-gaap:CommonStockMember2022-07-0120 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\ttwareAndSoftwareDevelopmentCostsMember2023-06-300000789019us-gaap:CommonStockMember2022-07-012023-06 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tAndSoftwareDevelopmentCostsMember2023-06-300000789019us-gaap:CommonStockMember2022-07-012023-06-3000 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tftwareDevelopmentCostsMember2023-06-300000789019us-gaap:CommonStockMember2022-07-012023-06-300000789 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\teDevelopmentCostsMember2023-06-300000789019us-gaap:CommonStockMember2022-07-012023-06-300000789019us ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tlopmentCostsMember2023-06-300000789019us-gaap:CommonStockMember2022-07-012023-06-300000789019us-gaap ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tntCostsMember2023-06-300000789019us-gaap:CommonStockMember2022-07-012023-06-300000789019us-gaap:Othe ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\ttsMember2023-06-300000789019us-gaap:CommonStockMember2022-07-012023-06-300000789019us-gaap:OtherCurr ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tber2023-06-300000789019us-gaap:CommonStockMember2022-07-012023-06-300000789019us-gaap:OtherCurrentAs ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t23-06-300000789019us-gaap:CommonStockMember2022-07-012023-06-300000789019us-gaap:OtherCurrentAssetsM ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t-300000789019us-gaap:CommonStockMember2022-07-012023-06-300000789019us-gaap:OtherCurrentAssetsMember ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t00789019us-gaap:CommonStockMember2022-07-012023-06-300000789019us-gaap:OtherCurrentAssetsMember2023- ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t019us-gaap:CommonStockMember2022-07-012023-06-300000789019us-gaap:OtherCurrentAssetsMember2023-06-30 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t-gaap:CommonStockMember2022-07-012023-06-300000789019us-gaap:OtherCurrentAssetsMember2023-06-3000007 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t:CommonStockMember2022-07-012023-06-300000789019us-gaap:OtherCurrentAssetsMember2023-06-300000789019 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tonStockMember2022-07-012023-06-300000789019us-gaap:OtherCurrentAssetsMember2023-06-300000789019us-ga ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tckMember2022-07-012023-06-300000789019us-gaap:OtherCurrentAssetsMember2023-06-300000789019us-gaap:Ac ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tber2022-07-012023-06-300000789019us-gaap:OtherCurrentAssetsMember2023-06-300000789019us-gaap:Accumul ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t22-07-012023-06-300000789019us-gaap:OtherCurrentAssetsMember2023-06-300000789019us-gaap:AccumulatedG ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t-012023-06-300000789019us-gaap:OtherCurrentAssetsMember2023-06-300000789019us-gaap:AccumulatedGainLo ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t23-06-300000789019us-gaap:OtherCurrentAssetsMember2023-06-300000789019us-gaap:AccumulatedGainLossNet ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t-300000789019us-gaap:OtherCurrentAssetsMember2023-06-300000789019us-gaap:AccumulatedGainLossNetCashF ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t00789019us-gaap:OtherCurrentAssetsMember2023-06-300000789019us-gaap:AccumulatedGainLossNetCashFlowHe ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t019us-gaap:OtherCurrentAssetsMember2023-06-300000789019us-gaap:AccumulatedGainLossNetCashFlowHedgePa ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t-gaap:OtherCurrentAssetsMember2023-06-300000789019us-gaap:AccumulatedGainLossNetCashFlowHedgeParentM ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t:OtherCurrentAssetsMember2023-06-300000789019us-gaap:AccumulatedGainLossNetCashFlowHedgeParentMember ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\trCurrentAssetsMember2023-06-300000789019us-gaap:AccumulatedGainLossNetCashFlowHedgeParentMember2020- ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tentAssetsMember2023-06-300000789019us-gaap:AccumulatedGainLossNetCashFlowHedgeParentMember2020-06-30 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tsetsMember2023-06-300000789019us-gaap:AccumulatedGainLossNetCashFlowHedgeParentMember2020-06-3000007 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tember2023-06-300000789019us-gaap:AccumulatedGainLossNetCashFlowHedgeParentMember2020-06-300000789019 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t2023-06-300000789019us-gaap:AccumulatedGainLossNetCashFlowHedgeParentMember2020-06-300000789019us-ga ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t06-300000789019us-gaap:AccumulatedGainLossNetCashFlowHedgeParentMember2020-06-300000789019us-gaap:Ca ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t0000789019us-gaap:AccumulatedGainLossNetCashFlowHedgeParentMember2020-06-300000789019us-gaap:CashFlo ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t89019us-gaap:AccumulatedGainLossNetCashFlowHedgeParentMember2020-06-300000789019us-gaap:CashFlowHedg ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tus-gaap:AccumulatedGainLossNetCashFlowHedgeParentMember2020-06-300000789019us-gaap:CashFlowHedgingMe ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tap:AccumulatedGainLossNetCashFlowHedgeParentMember2020-06-300000789019us-gaap:CashFlowHedgingMemberu ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tcumulatedGainLossNetCashFlowHedgeParentMember2020-06-300000789019us-gaap:CashFlowHedgingMemberus-gaa ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tatedGainLossNetCashFlowHedgeParentMember2020-06-300000789019us-gaap:CashFlowHedgingMemberus-gaap:Non ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tainLossNetCashFlowHedgeParentMember2020-06-300000789019us-gaap:CashFlowHedgingMemberus-gaap:Nonopera ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tssNetCashFlowHedgeParentMember2020-06-300000789019us-gaap:CashFlowHedgingMemberus-gaap:NonoperatingI ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tCashFlowHedgeParentMember2020-06-300000789019us-gaap:CashFlowHedgingMemberus-gaap:NonoperatingIncome ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tlowHedgeParentMember2020-06-300000789019us-gaap:CashFlowHedgingMemberus-gaap:NonoperatingIncomeExpen ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tdgeParentMember2020-06-300000789019us-gaap:CashFlowHedgingMemberus-gaap:NonoperatingIncomeExpenseMem ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\trentMember2020-06-300000789019us-gaap:CashFlowHedgingMemberus-gaap:NonoperatingIncomeExpenseMemberus ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tember2020-06-300000789019us-gaap:CashFlowHedgingMemberus-gaap:NonoperatingIncomeExpenseMemberus-gaap ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t2020-06-300000789019us-gaap:CashFlowHedgingMemberus-gaap:NonoperatingIncomeExpenseMemberus-gaap:Fore ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t06-300000789019us-gaap:CashFlowHedgingMemberus-gaap:NonoperatingIncomeExpenseMemberus-gaap:ForeignEx ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t0000789019us-gaap:CashFlowHedgingMemberus-gaap:NonoperatingIncomeExpenseMemberus-gaap:ForeignExchang ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t89019us-gaap:CashFlowHedgingMemberus-gaap:NonoperatingIncomeExpenseMemberus-gaap:ForeignExchangeCont ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tus-gaap:CashFlowHedgingMemberus-gaap:NonoperatingIncomeExpenseMemberus-gaap:ForeignExchangeContractM ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tap:CashFlowHedgingMemberus-gaap:NonoperatingIncomeExpenseMemberus-gaap:ForeignExchangeContractMember ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tshFlowHedgingMemberus-gaap:NonoperatingIncomeExpenseMemberus-gaap:ForeignExchangeContractMember2020- ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\twHedgingMemberus-gaap:NonoperatingIncomeExpenseMemberus-gaap:ForeignExchangeContractMember2020-07-01 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tingMemberus-gaap:NonoperatingIncomeExpenseMemberus-gaap:ForeignExchangeContractMember2020-07-012021- ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tmberus-gaap:NonoperatingIncomeExpenseMemberus-gaap:ForeignExchangeContractMember2020-07-012021-06-30 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\ts-gaap:NonoperatingIncomeExpenseMemberus-gaap:ForeignExchangeContractMember2020-07-012021-06-3000007 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tp:NonoperatingIncomeExpenseMemberus-gaap:ForeignExchangeContractMember2020-07-012021-06-300000789019 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\toperatingIncomeExpenseMemberus-gaap:ForeignExchangeContractMember2020-07-012021-06-300000789019msft: ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\ttingIncomeExpenseMemberus-gaap:ForeignExchangeContractMember2020-07-012021-06-300000789019msft:Issua ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tncomeExpenseMemberus-gaap:ForeignExchangeContractMember2020-07-012021-06-300000789019msft:IssuanceOf ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tExpenseMemberus-gaap:ForeignExchangeContractMember2020-07-012021-06-300000789019msft:IssuanceOfLongT ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tseMemberus-gaap:ForeignExchangeContractMember2020-07-012021-06-300000789019msft:IssuanceOfLongTermDe ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tberus-gaap:ForeignExchangeContractMember2020-07-012021-06-300000789019msft:IssuanceOfLongTermDebtFou ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t-gaap:ForeignExchangeContractMember2020-07-012021-06-300000789019msft:IssuanceOfLongTermDebtFourMemb ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t:ForeignExchangeContractMember2020-07-012021-06-300000789019msft:IssuanceOfLongTermDebtFourMember202 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tignExchangeContractMember2020-07-012021-06-300000789019msft:IssuanceOfLongTermDebtFourMember2022-06- ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tchangeContractMember2020-07-012021-06-300000789019msft:IssuanceOfLongTermDebtFourMember2022-06-30000 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\teContractMember2020-07-012021-06-300000789019msft:IssuanceOfLongTermDebtFourMember2022-06-3000007890 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tractMember2020-07-012021-06-300000789019msft:IssuanceOfLongTermDebtFourMember2022-06-300000789019us- ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tember2020-07-012021-06-300000789019msft:IssuanceOfLongTermDebtFourMember2022-06-300000789019us-gaap: ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t2020-07-012021-06-300000789019msft:IssuanceOfLongTermDebtFourMember2022-06-300000789019us-gaap:Other ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t07-012021-06-300000789019msft:IssuanceOfLongTermDebtFourMember2022-06-300000789019us-gaap:OtherCurre ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t2021-06-300000789019msft:IssuanceOfLongTermDebtFourMember2022-06-300000789019us-gaap:OtherCurrentLia ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t06-300000789019msft:IssuanceOfLongTermDebtFourMember2022-06-300000789019us-gaap:OtherCurrentLiabilit ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t0000789019msft:IssuanceOfLongTermDebtFourMember2022-06-300000789019us-gaap:OtherCurrentLiabilitiesMe ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t89019msft:IssuanceOfLongTermDebtFourMember2022-06-300000789019us-gaap:OtherCurrentLiabilitiesMember2 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tmsft:IssuanceOfLongTermDebtFourMember2022-06-300000789019us-gaap:OtherCurrentLiabilitiesMember2023-0 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tIssuanceOfLongTermDebtFourMember2022-06-300000789019us-gaap:OtherCurrentLiabilitiesMember2023-06-300 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tnceOfLongTermDebtFourMember2022-06-300000789019us-gaap:OtherCurrentLiabilitiesMember2023-06-30000078 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tLongTermDebtFourMember2022-06-300000789019us-gaap:OtherCurrentLiabilitiesMember2023-06-300000789019s ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\termDebtFourMember2022-06-300000789019us-gaap:OtherCurrentLiabilitiesMember2023-06-300000789019srt:Ma ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tbtFourMember2022-06-300000789019us-gaap:OtherCurrentLiabilitiesMember2023-06-300000789019srt:Maximum ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\trMember2022-06-300000789019us-gaap:OtherCurrentLiabilitiesMember2023-06-300000789019srt:MaximumMembe ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\ter2022-06-300000789019us-gaap:OtherCurrentLiabilitiesMember2023-06-300000789019srt:MaximumMembermsft ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t2-06-300000789019us-gaap:OtherCurrentLiabilitiesMember2023-06-300000789019srt:MaximumMembermsft:Issu ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t300000789019us-gaap:OtherCurrentLiabilitiesMember2023-06-300000789019srt:MaximumMembermsft:IssuanceO ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t0789019us-gaap:OtherCurrentLiabilitiesMember2023-06-300000789019srt:MaximumMembermsft:IssuanceOfLong ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t19us-gaap:OtherCurrentLiabilitiesMember2023-06-300000789019srt:MaximumMembermsft:IssuanceOfLongTermD ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tgaap:OtherCurrentLiabilitiesMember2023-06-300000789019srt:MaximumMembermsft:IssuanceOfLongTermDebtNi ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tOtherCurrentLiabilitiesMember2023-06-300000789019srt:MaximumMembermsft:IssuanceOfLongTermDebtNineMem ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tCurrentLiabilitiesMember2023-06-300000789019srt:MaximumMembermsft:IssuanceOfLongTermDebtNineMember20 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tntLiabilitiesMember2023-06-300000789019srt:MaximumMembermsft:IssuanceOfLongTermDebtNineMember2022-07 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tbilitiesMember2023-06-300000789019srt:MaximumMembermsft:IssuanceOfLongTermDebtNineMember2022-07-0120 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tiesMember2023-06-300000789019srt:MaximumMembermsft:IssuanceOfLongTermDebtNineMember2022-07-012023-06 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tmber2023-06-300000789019srt:MaximumMembermsft:IssuanceOfLongTermDebtNineMember2022-07-012023-06-3000 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t023-06-300000789019srt:MaximumMembermsft:IssuanceOfLongTermDebtNineMember2022-07-012023-06-300000789 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t6-300000789019srt:MaximumMembermsft:IssuanceOfLongTermDebtNineMember2022-07-012023-06-300000789019ms ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t000789019srt:MaximumMembermsft:IssuanceOfLongTermDebtNineMember2022-07-012023-06-300000789019msft:Wi ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t9019srt:MaximumMembermsft:IssuanceOfLongTermDebtNineMember2022-07-012023-06-300000789019msft:Windows ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\trt:MaximumMembermsft:IssuanceOfLongTermDebtNineMember2022-07-012023-06-300000789019msft:WindowsMembe ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tximumMembermsft:IssuanceOfLongTermDebtNineMember2022-07-012023-06-300000789019msft:WindowsMember2021 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tMembermsft:IssuanceOfLongTermDebtNineMember2022-07-012023-06-300000789019msft:WindowsMember2021-07-0 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\trmsft:IssuanceOfLongTermDebtNineMember2022-07-012023-06-300000789019msft:WindowsMember2021-07-012022 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t:IssuanceOfLongTermDebtNineMember2022-07-012023-06-300000789019msft:WindowsMember2021-07-012022-06-3 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tanceOfLongTermDebtNineMember2022-07-012023-06-300000789019msft:WindowsMember2021-07-012022-06-300000 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tfLongTermDebtNineMember2022-07-012023-06-300000789019msft:WindowsMember2021-07-012022-06-30000078901 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tTermDebtNineMember2022-07-012023-06-300000789019msft:WindowsMember2021-07-012022-06-300000789019us-g ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tebtNineMember2022-07-012023-06-300000789019msft:WindowsMember2021-07-012022-06-300000789019us-gaap:U ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tneMember2022-07-012023-06-300000789019msft:WindowsMember2021-07-012022-06-300000789019us-gaap:USGove ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tber2022-07-012023-06-300000789019msft:WindowsMember2021-07-012022-06-300000789019us-gaap:USGovernmen ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t22-07-012023-06-300000789019msft:WindowsMember2021-07-012022-06-300000789019us-gaap:USGovernmentAgen ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t-012023-06-300000789019msft:WindowsMember2021-07-012022-06-300000789019us-gaap:USGovernmentAgenciesD ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t23-06-300000789019msft:WindowsMember2021-07-012022-06-300000789019us-gaap:USGovernmentAgenciesDebtSe ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t-300000789019msft:WindowsMember2021-07-012022-06-300000789019us-gaap:USGovernmentAgenciesDebtSecurit ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t00789019msft:WindowsMember2021-07-012022-06-300000789019us-gaap:USGovernmentAgenciesDebtSecuritiesMe ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t019msft:WindowsMember2021-07-012022-06-300000789019us-gaap:USGovernmentAgenciesDebtSecuritiesMemberu ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tft:WindowsMember2021-07-012022-06-300000789019us-gaap:USGovernmentAgenciesDebtSecuritiesMemberus-gaa ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tndowsMember2021-07-012022-06-300000789019us-gaap:USGovernmentAgenciesDebtSecuritiesMemberus-gaap:Fai ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tMember2021-07-012022-06-300000789019us-gaap:USGovernmentAgenciesDebtSecuritiesMemberus-gaap:FairValu ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tr2021-07-012022-06-300000789019us-gaap:USGovernmentAgenciesDebtSecuritiesMemberus-gaap:FairValueInpu ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t-07-012022-06-300000789019us-gaap:USGovernmentAgenciesDebtSecuritiesMemberus-gaap:FairValueInputsLev ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t12022-06-300000789019us-gaap:USGovernmentAgenciesDebtSecuritiesMemberus-gaap:FairValueInputsLevel2Me ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t-06-300000789019us-gaap:USGovernmentAgenciesDebtSecuritiesMemberus-gaap:FairValueInputsLevel2Memberu ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t00000789019us-gaap:USGovernmentAgenciesDebtSecuritiesMemberus-gaap:FairValueInputsLevel2Memberus-gaa ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t789019us-gaap:USGovernmentAgenciesDebtSecuritiesMemberus-gaap:FairValueInputsLevel2Memberus-gaap:Deb ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t9us-gaap:USGovernmentAgenciesDebtSecuritiesMemberus-gaap:FairValueInputsLevel2Memberus-gaap:DebtSecu ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\taap:USGovernmentAgenciesDebtSecuritiesMemberus-gaap:FairValueInputsLevel2Memberus-gaap:DebtSecuritie ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tSGovernmentAgenciesDebtSecuritiesMemberus-gaap:FairValueInputsLevel2Memberus-gaap:DebtSecuritiesMemb ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\trnmentAgenciesDebtSecuritiesMemberus-gaap:FairValueInputsLevel2Memberus-gaap:DebtSecuritiesMember202 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\ttAgenciesDebtSecuritiesMemberus-gaap:FairValueInputsLevel2Memberus-gaap:DebtSecuritiesMember2022-06- ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tciesDebtSecuritiesMemberus-gaap:FairValueInputsLevel2Memberus-gaap:DebtSecuritiesMember2022-06-30000 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tebtSecuritiesMemberus-gaap:FairValueInputsLevel2Memberus-gaap:DebtSecuritiesMember2022-06-3000007890 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tcuritiesMemberus-gaap:FairValueInputsLevel2Memberus-gaap:DebtSecuritiesMember2022-06-300000789019msf ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tiesMemberus-gaap:FairValueInputsLevel2Memberus-gaap:DebtSecuritiesMember2022-06-300000789019msft:Iss ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tmberus-gaap:FairValueInputsLevel2Memberus-gaap:DebtSecuritiesMember2022-06-300000789019msft:Issuance ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\ts-gaap:FairValueInputsLevel2Memberus-gaap:DebtSecuritiesMember2022-06-300000789019msft:IssuanceOfLon ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tp:FairValueInputsLevel2Memberus-gaap:DebtSecuritiesMember2022-06-300000789019msft:IssuanceOfLongTerm ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\trValueInputsLevel2Memberus-gaap:DebtSecuritiesMember2022-06-300000789019msft:IssuanceOfLongTermDebtO ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\teInputsLevel2Memberus-gaap:DebtSecuritiesMember2022-06-300000789019msft:IssuanceOfLongTermDebtOneMem ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\ttsLevel2Memberus-gaap:DebtSecuritiesMember2022-06-300000789019msft:IssuanceOfLongTermDebtOneMember20 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tel2Memberus-gaap:DebtSecuritiesMember2022-06-300000789019msft:IssuanceOfLongTermDebtOneMember2022-06 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tmberus-gaap:DebtSecuritiesMember2022-06-300000789019msft:IssuanceOfLongTermDebtOneMember2022-06-3000 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\ts-gaap:DebtSecuritiesMember2022-06-300000789019msft:IssuanceOfLongTermDebtOneMember2022-06-300000789 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tp:DebtSecuritiesMember2022-06-300000789019msft:IssuanceOfLongTermDebtOneMember2022-06-300000789019us ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\ttSecuritiesMember2022-06-300000789019msft:IssuanceOfLongTermDebtOneMember2022-06-300000789019us-gaap ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tritiesMember2022-06-300000789019msft:IssuanceOfLongTermDebtOneMember2022-06-300000789019us-gaap:Empl ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tsMember2022-06-300000789019msft:IssuanceOfLongTermDebtOneMember2022-06-300000789019us-gaap:EmployeeS ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\ter2022-06-300000789019msft:IssuanceOfLongTermDebtOneMember2022-06-300000789019us-gaap:EmployeeStockM ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t2-06-300000789019msft:IssuanceOfLongTermDebtOneMember2022-06-300000789019us-gaap:EmployeeStockMember ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t300000789019msft:IssuanceOfLongTermDebtOneMember2022-06-300000789019us-gaap:EmployeeStockMember2022- ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t0789019msft:IssuanceOfLongTermDebtOneMember2022-06-300000789019us-gaap:EmployeeStockMember2022-07-01 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t19msft:IssuanceOfLongTermDebtOneMember2022-06-300000789019us-gaap:EmployeeStockMember2022-07-012023- ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tt:IssuanceOfLongTermDebtOneMember2022-06-300000789019us-gaap:EmployeeStockMember2022-07-012023-06-30 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tuanceOfLongTermDebtOneMember2022-06-300000789019us-gaap:EmployeeStockMember2022-07-012023-06-3000007 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tOfLongTermDebtOneMember2022-06-300000789019us-gaap:EmployeeStockMember2022-07-012023-06-300000789019 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tgTermDebtOneMember2022-06-300000789019us-gaap:EmployeeStockMember2022-07-012023-06-300000789019srt:M ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tDebtOneMember2022-06-300000789019us-gaap:EmployeeStockMember2022-07-012023-06-300000789019srt:Maximu ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tneMember2022-06-300000789019us-gaap:EmployeeStockMember2022-07-012023-06-300000789019srt:MaximumMemb ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tber2022-06-300000789019us-gaap:EmployeeStockMember2022-07-012023-06-300000789019srt:MaximumMembermsf ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t22-06-300000789019us-gaap:EmployeeStockMember2022-07-012023-06-300000789019srt:MaximumMembermsft:Iss ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t-300000789019us-gaap:EmployeeStockMember2022-07-012023-06-300000789019srt:MaximumMembermsft:Issuance ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t00789019us-gaap:EmployeeStockMember2022-07-012023-06-300000789019srt:MaximumMembermsft:IssuanceOfLon ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t019us-gaap:EmployeeStockMember2022-07-012023-06-300000789019srt:MaximumMembermsft:IssuanceOfLongTerm ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t-gaap:EmployeeStockMember2022-07-012023-06-300000789019srt:MaximumMembermsft:IssuanceOfLongTermDebtN ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t:EmployeeStockMember2022-07-012023-06-300000789019srt:MaximumMembermsft:IssuanceOfLongTermDebtNineMe ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\toyeeStockMember2022-07-012023-06-300000789019srt:MaximumMembermsft:IssuanceOfLongTermDebtNineMember2 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\ttockMember2022-07-012023-06-300000789019srt:MaximumMembermsft:IssuanceOfLongTermDebtNineMember2023-0 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tember2022-07-012023-06-300000789019srt:MaximumMembermsft:IssuanceOfLongTermDebtNineMember2023-06-300 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t2022-07-012023-06-300000789019srt:MaximumMembermsft:IssuanceOfLongTermDebtNineMember2023-06-30000078 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t07-012023-06-300000789019srt:MaximumMembermsft:IssuanceOfLongTermDebtNineMember2023-06-300000789019m ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t2023-06-300000789019srt:MaximumMembermsft:IssuanceOfLongTermDebtNineMember2023-06-300000789019msft:S ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t06-300000789019srt:MaximumMembermsft:IssuanceOfLongTermDebtNineMember2023-06-300000789019msft:ShareR ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t0000789019srt:MaximumMembermsft:IssuanceOfLongTermDebtNineMember2023-06-300000789019msft:ShareRepurc ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t89019srt:MaximumMembermsft:IssuanceOfLongTermDebtNineMember2023-06-300000789019msft:ShareRepurchaseP ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tsrt:MaximumMembermsft:IssuanceOfLongTermDebtNineMember2023-06-300000789019msft:ShareRepurchaseProgra ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\taximumMembermsft:IssuanceOfLongTermDebtNineMember2023-06-300000789019msft:ShareRepurchaseProgramTwen ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tmMembermsft:IssuanceOfLongTermDebtNineMember2023-06-300000789019msft:ShareRepurchaseProgramTwentyTwe ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\termsft:IssuanceOfLongTermDebtNineMember2023-06-300000789019msft:ShareRepurchaseProgramTwentyTwentyOn ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tt:IssuanceOfLongTermDebtNineMember2023-06-300000789019msft:ShareRepurchaseProgramTwentyTwentyOneMemb ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tuanceOfLongTermDebtNineMember2023-06-300000789019msft:ShareRepurchaseProgramTwentyTwentyOneMember202 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tOfLongTermDebtNineMember2023-06-300000789019msft:ShareRepurchaseProgramTwentyTwentyOneMember2022-10- ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tgTermDebtNineMember2023-06-300000789019msft:ShareRepurchaseProgramTwentyTwentyOneMember2022-10-01202 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tDebtNineMember2023-06-300000789019msft:ShareRepurchaseProgramTwentyTwentyOneMember2022-10-012022-12- ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tineMember2023-06-300000789019msft:ShareRepurchaseProgramTwentyTwentyOneMember2022-10-012022-12-31000 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tmber2023-06-300000789019msft:ShareRepurchaseProgramTwentyTwentyOneMember2022-10-012022-12-3100007890 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t023-06-300000789019msft:ShareRepurchaseProgramTwentyTwentyOneMember2022-10-012022-12-310000789019us- ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t6-300000789019msft:ShareRepurchaseProgramTwentyTwentyOneMember2022-10-012022-12-310000789019us-gaap: ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t000789019msft:ShareRepurchaseProgramTwentyTwentyOneMember2022-10-012022-12-310000789019us-gaap:Other ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t9019msft:ShareRepurchaseProgramTwentyTwentyOneMember2022-10-012022-12-310000789019us-gaap:OtherNoncu ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tsft:ShareRepurchaseProgramTwentyTwentyOneMember2022-10-012022-12-310000789019us-gaap:OtherNoncurrent ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\thareRepurchaseProgramTwentyTwentyOneMember2022-10-012022-12-310000789019us-gaap:OtherNoncurrentAsset ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tepurchaseProgramTwentyTwentyOneMember2022-10-012022-12-310000789019us-gaap:OtherNoncurrentAssetsMemb ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\thaseProgramTwentyTwentyOneMember2022-10-012022-12-310000789019us-gaap:OtherNoncurrentAssetsMemberus- ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\trogramTwentyTwentyOneMember2022-10-012022-12-310000789019us-gaap:OtherNoncurrentAssetsMemberus-gaap: ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tmTwentyTwentyOneMember2022-10-012022-12-310000789019us-gaap:OtherNoncurrentAssetsMemberus-gaap:Allow ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\ttyTwentyOneMember2022-10-012022-12-310000789019us-gaap:OtherNoncurrentAssetsMemberus-gaap:AllowanceF ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tntyOneMember2022-10-012022-12-310000789019us-gaap:OtherNoncurrentAssetsMemberus-gaap:AllowanceForCre ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\teMember2022-10-012022-12-310000789019us-gaap:OtherNoncurrentAssetsMemberus-gaap:AllowanceForCreditLo ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\ter2022-10-012022-12-310000789019us-gaap:OtherNoncurrentAssetsMemberus-gaap:AllowanceForCreditLossMem ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t2-10-012022-12-310000789019us-gaap:OtherNoncurrentAssetsMemberus-gaap:AllowanceForCreditLossMember20 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t012022-12-310000789019us-gaap:OtherNoncurrentAssetsMemberus-gaap:AllowanceForCreditLossMember2021-06 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t2-12-310000789019us-gaap:OtherNoncurrentAssetsMemberus-gaap:AllowanceForCreditLossMember2021-06-3000 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t310000789019us-gaap:OtherNoncurrentAssetsMemberus-gaap:AllowanceForCreditLossMember2021-06-300000789 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t0789019us-gaap:OtherNoncurrentAssetsMemberus-gaap:AllowanceForCreditLossMember2021-06-300000789019us ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t19us-gaap:OtherNoncurrentAssetsMemberus-gaap:AllowanceForCreditLossMember2021-06-300000789019us-gaap ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tgaap:OtherNoncurrentAssetsMemberus-gaap:AllowanceForCreditLossMember2021-06-300000789019us-gaap:Fair ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tOtherNoncurrentAssetsMemberus-gaap:AllowanceForCreditLossMember2021-06-300000789019us-gaap:FairValue ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tNoncurrentAssetsMemberus-gaap:AllowanceForCreditLossMember2021-06-300000789019us-gaap:FairValueInput ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\trrentAssetsMemberus-gaap:AllowanceForCreditLossMember2021-06-300000789019us-gaap:FairValueInputsLeve ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tAssetsMemberus-gaap:AllowanceForCreditLossMember2021-06-300000789019us-gaap:FairValueInputsLevel1Mem ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tsMemberus-gaap:AllowanceForCreditLossMember2021-06-300000789019us-gaap:FairValueInputsLevel1Member20 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\terus-gaap:AllowanceForCreditLossMember2021-06-300000789019us-gaap:FairValueInputsLevel1Member2022-06 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tgaap:AllowanceForCreditLossMember2021-06-300000789019us-gaap:FairValueInputsLevel1Member2022-06-3000 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tAllowanceForCreditLossMember2021-06-300000789019us-gaap:FairValueInputsLevel1Member2022-06-300000789 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tanceForCreditLossMember2021-06-300000789019us-gaap:FairValueInputsLevel1Member2022-06-300000789019ms ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\torCreditLossMember2021-06-300000789019us-gaap:FairValueInputsLevel1Member2022-06-300000789019msft:Is ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tditLossMember2021-06-300000789019us-gaap:FairValueInputsLevel1Member2022-06-300000789019msft:Issuanc ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tssMember2021-06-300000789019us-gaap:FairValueInputsLevel1Member2022-06-300000789019msft:IssuanceOfLo ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tber2021-06-300000789019us-gaap:FairValueInputsLevel1Member2022-06-300000789019msft:IssuanceOfLongTer ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t21-06-300000789019us-gaap:FairValueInputsLevel1Member2022-06-300000789019msft:IssuanceOfLongTermDebt ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t-300000789019us-gaap:FairValueInputsLevel1Member2022-06-300000789019msft:IssuanceOfLongTermDebtNineM ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t00789019us-gaap:FairValueInputsLevel1Member2022-06-300000789019msft:IssuanceOfLongTermDebtNineMember ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t019us-gaap:FairValueInputsLevel1Member2022-06-300000789019msft:IssuanceOfLongTermDebtNineMember2022- ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t-gaap:FairValueInputsLevel1Member2022-06-300000789019msft:IssuanceOfLongTermDebtNineMember2022-07-01 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t:FairValueInputsLevel1Member2022-06-300000789019msft:IssuanceOfLongTermDebtNineMember2022-07-012023- ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tValueInputsLevel1Member2022-06-300000789019msft:IssuanceOfLongTermDebtNineMember2022-07-012023-06-30 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tInputsLevel1Member2022-06-300000789019msft:IssuanceOfLongTermDebtNineMember2022-07-012023-06-3000007 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tsLevel1Member2022-06-300000789019msft:IssuanceOfLongTermDebtNineMember2022-07-012023-06-300000789019 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tl1Member2022-06-300000789019msft:IssuanceOfLongTermDebtNineMember2022-07-012023-06-300000789019us-ga ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tber2022-06-300000789019msft:IssuanceOfLongTermDebtNineMember2022-07-012023-06-300000789019us-gaap:Lo ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t22-06-300000789019msft:IssuanceOfLongTermDebtNineMember2022-07-012023-06-300000789019us-gaap:LongMem ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t-300000789019msft:IssuanceOfLongTermDebtNineMember2022-07-012023-06-300000789019us-gaap:LongMemberus ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t00789019msft:IssuanceOfLongTermDebtNineMember2022-07-012023-06-300000789019us-gaap:LongMemberus-gaap ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t019msft:IssuanceOfLongTermDebtNineMember2022-07-012023-06-300000789019us-gaap:LongMemberus-gaap:Equi ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tft:IssuanceOfLongTermDebtNineMember2022-07-012023-06-300000789019us-gaap:LongMemberus-gaap:EquityCon ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tsuanceOfLongTermDebtNineMember2022-07-012023-06-300000789019us-gaap:LongMemberus-gaap:EquityContract ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\teOfLongTermDebtNineMember2022-07-012023-06-300000789019us-gaap:LongMemberus-gaap:EquityContractMembe ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tngTermDebtNineMember2022-07-012023-06-300000789019us-gaap:LongMemberus-gaap:EquityContractMemberus-g ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tmDebtNineMember2022-07-012023-06-300000789019us-gaap:LongMemberus-gaap:EquityContractMemberus-gaap:N ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tNineMember2022-07-012023-06-300000789019us-gaap:LongMemberus-gaap:EquityContractMemberus-gaap:Nondes ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tember2022-07-012023-06-300000789019us-gaap:LongMemberus-gaap:EquityContractMemberus-gaap:Nondesignat ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t2022-07-012023-06-300000789019us-gaap:LongMemberus-gaap:EquityContractMemberus-gaap:NondesignatedMem ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t07-012023-06-300000789019us-gaap:LongMemberus-gaap:EquityContractMemberus-gaap:NondesignatedMember20 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t2023-06-300000789019us-gaap:LongMemberus-gaap:EquityContractMemberus-gaap:NondesignatedMember2023-06 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t06-300000789019us-gaap:LongMemberus-gaap:EquityContractMemberus-gaap:NondesignatedMember2023-06-3000 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t0000789019us-gaap:LongMemberus-gaap:EquityContractMemberus-gaap:NondesignatedMember2023-06-300000789 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t89019us-gaap:LongMemberus-gaap:EquityContractMemberus-gaap:NondesignatedMember2023-06-300000789019us ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tus-gaap:LongMemberus-gaap:EquityContractMemberus-gaap:NondesignatedMember2023-06-300000789019us-gaap ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tap:LongMemberus-gaap:EquityContractMemberus-gaap:NondesignatedMember2023-06-300000789019us-gaap:Serv ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tngMemberus-gaap:EquityContractMemberus-gaap:NondesignatedMember2023-06-300000789019us-gaap:ServiceLi ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tberus-gaap:EquityContractMemberus-gaap:NondesignatedMember2023-06-300000789019us-gaap:ServiceLifeMem ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t-gaap:EquityContractMemberus-gaap:NondesignatedMember2023-06-300000789019us-gaap:ServiceLifeMember20 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t:EquityContractMemberus-gaap:NondesignatedMember2023-06-300000789019us-gaap:ServiceLifeMember2022-07 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\ttyContractMemberus-gaap:NondesignatedMember2023-06-300000789019us-gaap:ServiceLifeMember2022-07-0120 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\ttractMemberus-gaap:NondesignatedMember2023-06-300000789019us-gaap:ServiceLifeMember2022-07-012023-06 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tMemberus-gaap:NondesignatedMember2023-06-300000789019us-gaap:ServiceLifeMember2022-07-012023-06-3000 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\trus-gaap:NondesignatedMember2023-06-300000789019us-gaap:ServiceLifeMember2022-07-012023-06-300000789 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\taap:NondesignatedMember2023-06-300000789019us-gaap:ServiceLifeMember2022-07-012023-06-300000789019us ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tondesignatedMember2023-06-300000789019us-gaap:ServiceLifeMember2022-07-012023-06-300000789019us-gaap ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tignatedMember2023-06-300000789019us-gaap:ServiceLifeMember2022-07-012023-06-300000789019us-gaap:Allo ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tedMember2023-06-300000789019us-gaap:ServiceLifeMember2022-07-012023-06-300000789019us-gaap:Allowance ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tber2023-06-300000789019us-gaap:ServiceLifeMember2022-07-012023-06-300000789019us-gaap:AllowanceForCr ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t23-06-300000789019us-gaap:ServiceLifeMember2022-07-012023-06-300000789019us-gaap:AllowanceForCreditL ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t-300000789019us-gaap:ServiceLifeMember2022-07-012023-06-300000789019us-gaap:AllowanceForCreditLossMe ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t00789019us-gaap:ServiceLifeMember2022-07-012023-06-300000789019us-gaap:AllowanceForCreditLossMember2 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t019us-gaap:ServiceLifeMember2022-07-012023-06-300000789019us-gaap:AllowanceForCreditLossMember2021-0 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t-gaap:ServiceLifeMember2022-07-012023-06-300000789019us-gaap:AllowanceForCreditLossMember2021-07-012 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t:ServiceLifeMember2022-07-012023-06-300000789019us-gaap:AllowanceForCreditLossMember2021-07-012022-0 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\ticeLifeMember2022-07-012023-06-300000789019us-gaap:AllowanceForCreditLossMember2021-07-012022-06-300 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tfeMember2022-07-012023-06-300000789019us-gaap:AllowanceForCreditLossMember2021-07-012022-06-30000078 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tber2022-07-012023-06-300000789019us-gaap:AllowanceForCreditLossMember2021-07-012022-06-300000789019u ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t22-07-012023-06-300000789019us-gaap:AllowanceForCreditLossMember2021-07-012022-06-300000789019us-gaa ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t-012023-06-300000789019us-gaap:AllowanceForCreditLossMember2021-07-012022-06-300000789019us-gaap:Ear ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t23-06-300000789019us-gaap:AllowanceForCreditLossMember2021-07-012022-06-300000789019us-gaap:Earliest ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t-300000789019us-gaap:AllowanceForCreditLossMember2021-07-012022-06-300000789019us-gaap:EarliestTaxYe ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t00789019us-gaap:AllowanceForCreditLossMember2021-07-012022-06-300000789019us-gaap:EarliestTaxYearMem ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t019us-gaap:AllowanceForCreditLossMember2021-07-012022-06-300000789019us-gaap:EarliestTaxYearMemberus ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t-gaap:AllowanceForCreditLossMember2021-07-012022-06-300000789019us-gaap:EarliestTaxYearMemberus-gaap ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t:AllowanceForCreditLossMember2021-07-012022-06-300000789019us-gaap:EarliestTaxYearMemberus-gaap:Inte ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\twanceForCreditLossMember2021-07-012022-06-300000789019us-gaap:EarliestTaxYearMemberus-gaap:InternalR ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tForCreditLossMember2021-07-012022-06-300000789019us-gaap:EarliestTaxYearMemberus-gaap:InternalRevenu ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\teditLossMember2021-07-012022-06-300000789019us-gaap:EarliestTaxYearMemberus-gaap:InternalRevenueServ ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tossMember2021-07-012022-06-300000789019us-gaap:EarliestTaxYearMemberus-gaap:InternalRevenueServiceIR ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tmber2021-07-012022-06-300000789019us-gaap:EarliestTaxYearMemberus-gaap:InternalRevenueServiceIRSMemb ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t021-07-012022-06-300000789019us-gaap:EarliestTaxYearMemberus-gaap:InternalRevenueServiceIRSMember202 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t7-012022-06-300000789019us-gaap:EarliestTaxYearMemberus-gaap:InternalRevenueServiceIRSMember2020-10- ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t022-06-300000789019us-gaap:EarliestTaxYearMemberus-gaap:InternalRevenueServiceIRSMember2020-10-01202 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t6-300000789019us-gaap:EarliestTaxYearMemberus-gaap:InternalRevenueServiceIRSMember2020-10-012020-12- ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t000789019us-gaap:EarliestTaxYearMemberus-gaap:InternalRevenueServiceIRSMember2020-10-012020-12-31000 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t9019us-gaap:EarliestTaxYearMemberus-gaap:InternalRevenueServiceIRSMember2020-10-012020-12-3100007890 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\ts-gaap:EarliestTaxYearMemberus-gaap:InternalRevenueServiceIRSMember2020-10-012020-12-310000789019us- ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tp:EarliestTaxYearMemberus-gaap:InternalRevenueServiceIRSMember2020-10-012020-12-310000789019us-gaap: ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tliestTaxYearMemberus-gaap:InternalRevenueServiceIRSMember2020-10-012020-12-310000789019us-gaap:Accum ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tTaxYearMemberus-gaap:InternalRevenueServiceIRSMember2020-10-012020-12-310000789019us-gaap:Accumulate ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tarMemberus-gaap:InternalRevenueServiceIRSMember2020-10-012020-12-310000789019us-gaap:AccumulatedOthe ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tberus-gaap:InternalRevenueServiceIRSMember2020-10-012020-12-310000789019us-gaap:AccumulatedOtherComp ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t-gaap:InternalRevenueServiceIRSMember2020-10-012020-12-310000789019us-gaap:AccumulatedOtherComprehen ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t:InternalRevenueServiceIRSMember2020-10-012020-12-310000789019us-gaap:AccumulatedOtherComprehensiveI ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\trnalRevenueServiceIRSMember2020-10-012020-12-310000789019us-gaap:AccumulatedOtherComprehensiveIncome ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tevenueServiceIRSMember2020-10-012020-12-310000789019us-gaap:AccumulatedOtherComprehensiveIncomeMembe ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\teServiceIRSMember2020-10-012020-12-310000789019us-gaap:AccumulatedOtherComprehensiveIncomeMember2020 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\ticeIRSMember2020-10-012020-12-310000789019us-gaap:AccumulatedOtherComprehensiveIncomeMember2020-06-3 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tSMember2020-10-012020-12-310000789019us-gaap:AccumulatedOtherComprehensiveIncomeMember2020-06-300000 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\ter2020-10-012020-12-310000789019us-gaap:AccumulatedOtherComprehensiveIncomeMember2020-06-30000078901 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t0-10-012020-12-310000789019us-gaap:AccumulatedOtherComprehensiveIncomeMember2020-06-300000789019us-g ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t012020-12-310000789019us-gaap:AccumulatedOtherComprehensiveIncomeMember2020-06-300000789019us-gaap:E ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t0-12-310000789019us-gaap:AccumulatedOtherComprehensiveIncomeMember2020-06-300000789019us-gaap:Equity ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t310000789019us-gaap:AccumulatedOtherComprehensiveIncomeMember2020-06-300000789019us-gaap:EquityContr ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t0789019us-gaap:AccumulatedOtherComprehensiveIncomeMember2020-06-300000789019us-gaap:EquityContractMe ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t19us-gaap:AccumulatedOtherComprehensiveIncomeMember2020-06-300000789019us-gaap:EquityContractMemberu ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tgaap:AccumulatedOtherComprehensiveIncomeMember2020-06-300000789019us-gaap:EquityContractMemberus-gaa ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tAccumulatedOtherComprehensiveIncomeMember2020-06-300000789019us-gaap:EquityContractMemberus-gaap:Non ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tulatedOtherComprehensiveIncomeMember2020-06-300000789019us-gaap:EquityContractMemberus-gaap:Nonopera ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tdOtherComprehensiveIncomeMember2020-06-300000789019us-gaap:EquityContractMemberus-gaap:NonoperatingI ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\trComprehensiveIncomeMember2020-06-300000789019us-gaap:EquityContractMemberus-gaap:NonoperatingIncome ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\trehensiveIncomeMember2020-06-300000789019us-gaap:EquityContractMemberus-gaap:NonoperatingIncomeExpen ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tsiveIncomeMember2020-06-300000789019us-gaap:EquityContractMemberus-gaap:NonoperatingIncomeExpenseMem ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tncomeMember2020-06-300000789019us-gaap:EquityContractMemberus-gaap:NonoperatingIncomeExpenseMember20 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tMember2020-06-300000789019us-gaap:EquityContractMemberus-gaap:NonoperatingIncomeExpenseMember2020-07 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tr2020-06-300000789019us-gaap:EquityContractMemberus-gaap:NonoperatingIncomeExpenseMember2020-07-0120 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t-06-300000789019us-gaap:EquityContractMemberus-gaap:NonoperatingIncomeExpenseMember2020-07-012021-06 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t00000789019us-gaap:EquityContractMemberus-gaap:NonoperatingIncomeExpenseMember2020-07-012021-06-3000 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t789019us-gaap:EquityContractMemberus-gaap:NonoperatingIncomeExpenseMember2020-07-012021-06-300000789 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t9us-gaap:EquityContractMemberus-gaap:NonoperatingIncomeExpenseMember2020-07-012021-06-300000789019ms ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\taap:EquityContractMemberus-gaap:NonoperatingIncomeExpenseMember2020-07-012021-06-300000789019msft:Sh ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tquityContractMemberus-gaap:NonoperatingIncomeExpenseMember2020-07-012021-06-300000789019msft:ShareRe ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tContractMemberus-gaap:NonoperatingIncomeExpenseMember2020-07-012021-06-300000789019msft:ShareRepurch ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tactMemberus-gaap:NonoperatingIncomeExpenseMember2020-07-012021-06-300000789019msft:ShareRepurchasePr ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tmberus-gaap:NonoperatingIncomeExpenseMember2020-07-012021-06-300000789019msft:ShareRepurchaseProgram ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\ts-gaap:NonoperatingIncomeExpenseMember2020-07-012021-06-300000789019msft:ShareRepurchaseProgramTwent ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tp:NonoperatingIncomeExpenseMember2020-07-012021-06-300000789019msft:ShareRepurchaseProgramTwentyNine ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\toperatingIncomeExpenseMember2020-07-012021-06-300000789019msft:ShareRepurchaseProgramTwentyNineteenM ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\ttingIncomeExpenseMember2020-07-012021-06-300000789019msft:ShareRepurchaseProgramTwentyNineteenMember ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tncomeExpenseMember2020-07-012021-06-300000789019msft:ShareRepurchaseProgramTwentyNineteenMember2020- ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tExpenseMember2020-07-012021-06-300000789019msft:ShareRepurchaseProgramTwentyNineteenMember2020-10-01 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tseMember2020-07-012021-06-300000789019msft:ShareRepurchaseProgramTwentyNineteenMember2020-10-012020- ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tber2020-07-012021-06-300000789019msft:ShareRepurchaseProgramTwentyNineteenMember2020-10-012020-12-31 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t20-07-012021-06-300000789019msft:ShareRepurchaseProgramTwentyNineteenMember2020-10-012020-12-3100007 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t-012021-06-300000789019msft:ShareRepurchaseProgramTwentyNineteenMember2020-10-012020-12-310000789019 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t21-06-300000789019msft:ShareRepurchaseProgramTwentyNineteenMember2020-10-012020-12-310000789019us-ga ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t-300000789019msft:ShareRepurchaseProgramTwentyNineteenMember2020-10-012020-12-310000789019us-gaap:Ac ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t00789019msft:ShareRepurchaseProgramTwentyNineteenMember2020-10-012020-12-310000789019us-gaap:Accumul ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t019msft:ShareRepurchaseProgramTwentyNineteenMember2020-10-012020-12-310000789019us-gaap:AccumulatedO ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tft:ShareRepurchaseProgramTwentyNineteenMember2020-10-012020-12-310000789019us-gaap:AccumulatedOtherC ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tareRepurchaseProgramTwentyNineteenMember2020-10-012020-12-310000789019us-gaap:AccumulatedOtherCompre ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tpurchaseProgramTwentyNineteenMember2020-10-012020-12-310000789019us-gaap:AccumulatedOtherComprehensi ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\taseProgramTwentyNineteenMember2020-10-012020-12-310000789019us-gaap:AccumulatedOtherComprehensiveInc ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\togramTwentyNineteenMember2020-10-012020-12-310000789019us-gaap:AccumulatedOtherComprehensiveIncomeMe ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tTwentyNineteenMember2020-10-012020-12-310000789019us-gaap:AccumulatedOtherComprehensiveIncomeMember2 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tyNineteenMember2020-10-012020-12-310000789019us-gaap:AccumulatedOtherComprehensiveIncomeMember2023-0 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tteenMember2020-10-012020-12-310000789019us-gaap:AccumulatedOtherComprehensiveIncomeMember2023-06-300 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tember2020-10-012020-12-310000789019us-gaap:AccumulatedOtherComprehensiveIncomeMember2023-06-30000078 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t2020-10-012020-12-310000789019us-gaap:AccumulatedOtherComprehensiveIncomeMember2023-06-300000789019m ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t10-012020-12-310000789019us-gaap:AccumulatedOtherComprehensiveIncomeMember2023-06-300000789019msft:S ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t2020-12-310000789019us-gaap:AccumulatedOtherComprehensiveIncomeMember2023-06-300000789019msft:ShareR ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t12-310000789019us-gaap:AccumulatedOtherComprehensiveIncomeMember2023-06-300000789019msft:ShareRepurc ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t0000789019us-gaap:AccumulatedOtherComprehensiveIncomeMember2023-06-300000789019msft:ShareRepurchaseP ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t89019us-gaap:AccumulatedOtherComprehensiveIncomeMember2023-06-300000789019msft:ShareRepurchaseProgra ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tus-gaap:AccumulatedOtherComprehensiveIncomeMember2023-06-300000789019msft:ShareRepurchaseProgramTwen ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tap:AccumulatedOtherComprehensiveIncomeMember2023-06-300000789019msft:ShareRepurchaseProgramTwentyTwe ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tcumulatedOtherComprehensiveIncomeMember2023-06-300000789019msft:ShareRepurchaseProgramTwentyTwentyOn ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tatedOtherComprehensiveIncomeMember2023-06-300000789019msft:ShareRepurchaseProgramTwentyTwentyOneMemb ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\ttherComprehensiveIncomeMember2023-06-300000789019msft:ShareRepurchaseProgramTwentyTwentyOneMember202 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tomprehensiveIncomeMember2023-06-300000789019msft:ShareRepurchaseProgramTwentyTwentyOneMember2023-04- ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\thensiveIncomeMember2023-06-300000789019msft:ShareRepurchaseProgramTwentyTwentyOneMember2023-04-01202 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tveIncomeMember2023-06-300000789019msft:ShareRepurchaseProgramTwentyTwentyOneMember2023-04-012023-06- ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tomeMember2023-06-300000789019msft:ShareRepurchaseProgramTwentyTwentyOneMember2023-04-012023-06-30000 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tmber2023-06-300000789019msft:ShareRepurchaseProgramTwentyTwentyOneMember2023-04-012023-06-3000007890 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t023-06-300000789019msft:ShareRepurchaseProgramTwentyTwentyOneMember2023-04-012023-06-300000789019us- ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t6-300000789019msft:ShareRepurchaseProgramTwentyTwentyOneMember2023-04-012023-06-300000789019us-gaap: ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t000789019msft:ShareRepurchaseProgramTwentyTwentyOneMember2023-04-012023-06-300000789019us-gaap:Accum ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t9019msft:ShareRepurchaseProgramTwentyTwentyOneMember2023-04-012023-06-300000789019us-gaap:Accumulate ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tsft:ShareRepurchaseProgramTwentyTwentyOneMember2023-04-012023-06-300000789019us-gaap:AccumulatedNetU ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\thareRepurchaseProgramTwentyTwentyOneMember2023-04-012023-06-300000789019us-gaap:AccumulatedNetUnreal ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tepurchaseProgramTwentyTwentyOneMember2023-04-012023-06-300000789019us-gaap:AccumulatedNetUnrealizedI ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\thaseProgramTwentyTwentyOneMember2023-04-012023-06-300000789019us-gaap:AccumulatedNetUnrealizedInvest ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\trogramTwentyTwentyOneMember2023-04-012023-06-300000789019us-gaap:AccumulatedNetUnrealizedInvestmentG ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tmTwentyTwentyOneMember2023-04-012023-06-300000789019us-gaap:AccumulatedNetUnrealizedInvestmentGainLo ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\ttyTwentyOneMember2023-04-012023-06-300000789019us-gaap:AccumulatedNetUnrealizedInvestmentGainLossMem ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tntyOneMember2023-04-012023-06-300000789019us-gaap:AccumulatedNetUnrealizedInvestmentGainLossMember20 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\teMember2023-04-012023-06-300000789019us-gaap:AccumulatedNetUnrealizedInvestmentGainLossMember2021-06 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\ter2023-04-012023-06-300000789019us-gaap:AccumulatedNetUnrealizedInvestmentGainLossMember2021-06-3000 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t3-04-012023-06-300000789019us-gaap:AccumulatedNetUnrealizedInvestmentGainLossMember2021-06-300000789 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t012023-06-300000789019us-gaap:AccumulatedNetUnrealizedInvestmentGainLossMember2021-06-300000789019ms ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t3-06-300000789019us-gaap:AccumulatedNetUnrealizedInvestmentGainLossMember2021-06-300000789019msft:Ze ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t300000789019us-gaap:AccumulatedNetUnrealizedInvestmentGainLossMember2021-06-300000789019msft:ZeniMax ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t0789019us-gaap:AccumulatedNetUnrealizedInvestmentGainLossMember2021-06-300000789019msft:ZeniMaxMedia ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t19us-gaap:AccumulatedNetUnrealizedInvestmentGainLossMember2021-06-300000789019msft:ZeniMaxMediaIncMe ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tgaap:AccumulatedNetUnrealizedInvestmentGainLossMember2021-06-300000789019msft:ZeniMaxMediaIncMemberu ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tAccumulatedNetUnrealizedInvestmentGainLossMember2021-06-300000789019msft:ZeniMaxMediaIncMemberus-gaa ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tulatedNetUnrealizedInvestmentGainLossMember2021-06-300000789019msft:ZeniMaxMediaIncMemberus-gaap:Tec ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tdNetUnrealizedInvestmentGainLossMember2021-06-300000789019msft:ZeniMaxMediaIncMemberus-gaap:Technolo ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tnrealizedInvestmentGainLossMember2021-06-300000789019msft:ZeniMaxMediaIncMemberus-gaap:TechnologyBas ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tizedInvestmentGainLossMember2021-06-300000789019msft:ZeniMaxMediaIncMemberus-gaap:TechnologyBasedInt ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tnvestmentGainLossMember2021-06-300000789019msft:ZeniMaxMediaIncMemberus-gaap:TechnologyBasedIntangib ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tmentGainLossMember2021-06-300000789019msft:ZeniMaxMediaIncMemberus-gaap:TechnologyBasedIntangibleAss ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tainLossMember2021-06-300000789019msft:ZeniMaxMediaIncMemberus-gaap:TechnologyBasedIntangibleAssetsMe ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tssMember2021-06-300000789019msft:ZeniMaxMediaIncMemberus-gaap:TechnologyBasedIntangibleAssetsMember2 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tber2021-06-300000789019msft:ZeniMaxMediaIncMemberus-gaap:TechnologyBasedIntangibleAssetsMember2021-0 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t21-06-300000789019msft:ZeniMaxMediaIncMemberus-gaap:TechnologyBasedIntangibleAssetsMember2021-03-092 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t-300000789019msft:ZeniMaxMediaIncMemberus-gaap:TechnologyBasedIntangibleAssetsMember2021-03-092021-0 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t00789019msft:ZeniMaxMediaIncMemberus-gaap:TechnologyBasedIntangibleAssetsMember2021-03-092021-03-090 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t019msft:ZeniMaxMediaIncMemberus-gaap:TechnologyBasedIntangibleAssetsMember2021-03-092021-03-09000078 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tft:ZeniMaxMediaIncMemberus-gaap:TechnologyBasedIntangibleAssetsMember2021-03-092021-03-090000789019m ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tniMaxMediaIncMemberus-gaap:TechnologyBasedIntangibleAssetsMember2021-03-092021-03-090000789019msft:O ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tMediaIncMemberus-gaap:TechnologyBasedIntangibleAssetsMember2021-03-092021-03-090000789019msft:OtherP ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tIncMemberus-gaap:TechnologyBasedIntangibleAssetsMember2021-03-092021-03-090000789019msft:OtherProduc ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tmberus-gaap:TechnologyBasedIntangibleAssetsMember2021-03-092021-03-090000789019msft:OtherProductsAnd ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\ts-gaap:TechnologyBasedIntangibleAssetsMember2021-03-092021-03-090000789019msft:OtherProductsAndServi ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tp:TechnologyBasedIntangibleAssetsMember2021-03-092021-03-090000789019msft:OtherProductsAndServicesMe ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\thnologyBasedIntangibleAssetsMember2021-03-092021-03-090000789019msft:OtherProductsAndServicesMember2 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tgyBasedIntangibleAssetsMember2021-03-092021-03-090000789019msft:OtherProductsAndServicesMember2021-0 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tedIntangibleAssetsMember2021-03-092021-03-090000789019msft:OtherProductsAndServicesMember2021-07-012 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tangibleAssetsMember2021-03-092021-03-090000789019msft:OtherProductsAndServicesMember2021-07-012022-0 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tleAssetsMember2021-03-092021-03-090000789019msft:OtherProductsAndServicesMember2021-07-012022-06-300 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tetsMember2021-03-092021-03-090000789019msft:OtherProductsAndServicesMember2021-07-012022-06-30000078 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tmber2021-03-092021-03-090000789019msft:OtherProductsAndServicesMember2021-07-012022-06-300000789019c ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t021-03-092021-03-090000789019msft:OtherProductsAndServicesMember2021-07-012022-06-300000789019countr ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t3-092021-03-090000789019msft:OtherProductsAndServicesMember2021-07-012022-06-300000789019country:US2 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t021-03-090000789019msft:OtherProductsAndServicesMember2021-07-012022-06-300000789019country:US2020-0 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t3-090000789019msft:OtherProductsAndServicesMember2021-07-012022-06-300000789019country:US2020-07-012 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t000789019msft:OtherProductsAndServicesMember2021-07-012022-06-300000789019country:US2020-07-012021-0 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t9019msft:OtherProductsAndServicesMember2021-07-012022-06-300000789019country:US2020-07-012021-06-300 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tsft:OtherProductsAndServicesMember2021-07-012022-06-300000789019country:US2020-07-012021-06-30000078 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\ttherProductsAndServicesMember2021-07-012022-06-300000789019country:US2020-07-012021-06-300000789019u ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\troductsAndServicesMember2021-07-012022-06-300000789019country:US2020-07-012021-06-300000789019us-gaa ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\ttsAndServicesMember2021-07-012022-06-300000789019country:US2020-07-012021-06-300000789019us-gaap:USS ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tServicesMember2021-07-012022-06-300000789019country:US2020-07-012021-06-300000789019us-gaap:USStates ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tcesMember2021-07-012022-06-300000789019country:US2020-07-012021-06-300000789019us-gaap:USStatesAndPo ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tmber2021-07-012022-06-300000789019country:US2020-07-012021-06-300000789019us-gaap:USStatesAndPolitic ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t021-07-012022-06-300000789019country:US2020-07-012021-06-300000789019us-gaap:USStatesAndPoliticalSub ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t7-012022-06-300000789019country:US2020-07-012021-06-300000789019us-gaap:USStatesAndPoliticalSubdivis ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t022-06-300000789019country:US2020-07-012021-06-300000789019us-gaap:USStatesAndPoliticalSubdivisionsM ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t6-300000789019country:US2020-07-012021-06-300000789019us-gaap:USStatesAndPoliticalSubdivisionsMember ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t000789019country:US2020-07-012021-06-300000789019us-gaap:USStatesAndPoliticalSubdivisionsMember2022- ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t9019country:US2020-07-012021-06-300000789019us-gaap:USStatesAndPoliticalSubdivisionsMember2022-06-30 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tountry:US2020-07-012021-06-300000789019us-gaap:USStatesAndPoliticalSubdivisionsMember2022-06-3000007 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\ty:US2020-07-012021-06-300000789019us-gaap:USStatesAndPoliticalSubdivisionsMember2022-06-300000789019 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t020-07-012021-06-300000789019us-gaap:USStatesAndPoliticalSubdivisionsMember2022-06-300000789019us-ga ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t7-012021-06-300000789019us-gaap:USStatesAndPoliticalSubdivisionsMember2022-06-300000789019us-gaap:Do ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t021-06-300000789019us-gaap:USStatesAndPoliticalSubdivisionsMember2022-06-300000789019us-gaap:Domesti ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t6-300000789019us-gaap:USStatesAndPoliticalSubdivisionsMember2022-06-300000789019us-gaap:DomesticCoun ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t000789019us-gaap:USStatesAndPoliticalSubdivisionsMember2022-06-300000789019us-gaap:DomesticCountryMe ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t9019us-gaap:USStatesAndPoliticalSubdivisionsMember2022-06-300000789019us-gaap:DomesticCountryMember2 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\ts-gaap:USStatesAndPoliticalSubdivisionsMember2022-06-300000789019us-gaap:DomesticCountryMember2022-0 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tp:USStatesAndPoliticalSubdivisionsMember2022-06-300000789019us-gaap:DomesticCountryMember2022-07-012 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\ttatesAndPoliticalSubdivisionsMember2022-06-300000789019us-gaap:DomesticCountryMember2022-07-012023-0 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tAndPoliticalSubdivisionsMember2022-06-300000789019us-gaap:DomesticCountryMember2022-07-012023-06-300 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tliticalSubdivisionsMember2022-06-300000789019us-gaap:DomesticCountryMember2022-07-012023-06-30000078 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\talSubdivisionsMember2022-06-300000789019us-gaap:DomesticCountryMember2022-07-012023-06-300000789019m ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tdivisionsMember2022-06-300000789019us-gaap:DomesticCountryMember2022-07-012023-06-300000789019msft:C ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tionsMember2022-06-300000789019us-gaap:DomesticCountryMember2022-07-012023-06-300000789019msft:Commer ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tember2022-06-300000789019us-gaap:DomesticCountryMember2022-07-012023-06-300000789019msft:CommercialC ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t2022-06-300000789019us-gaap:DomesticCountryMember2022-07-012023-06-300000789019msft:CommercialCustom ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t06-300000789019us-gaap:DomesticCountryMember2022-07-012023-06-300000789019msft:CommercialCustomersMe ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t0000789019us-gaap:DomesticCountryMember2022-07-012023-06-300000789019msft:CommercialCustomersMember2 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t89019us-gaap:DomesticCountryMember2022-07-012023-06-300000789019msft:CommercialCustomersMember2023-0 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tus-gaap:DomesticCountryMember2022-07-012023-06-300000789019msft:CommercialCustomersMember2023-06-300 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tap:DomesticCountryMember2022-07-012023-06-300000789019msft:CommercialCustomersMember2023-06-30000078 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tmesticCountryMember2022-07-012023-06-300000789019msft:CommercialCustomersMember2023-06-300000789019u ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tcCountryMember2022-07-012023-06-300000789019msft:CommercialCustomersMember2023-06-300000789019us-gaa ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\ttryMember2022-07-012023-06-300000789019msft:CommercialCustomersMember2023-06-300000789019us-gaap:Non ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tmber2022-07-012023-06-300000789019msft:CommercialCustomersMember2023-06-300000789019us-gaap:NonUsMem ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t022-07-012023-06-300000789019msft:CommercialCustomersMember2023-06-300000789019us-gaap:NonUsMember20 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t7-012023-06-300000789019msft:CommercialCustomersMember2023-06-300000789019us-gaap:NonUsMember2020-07 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t023-06-300000789019msft:CommercialCustomersMember2023-06-300000789019us-gaap:NonUsMember2020-07-0120 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t6-300000789019msft:CommercialCustomersMember2023-06-300000789019us-gaap:NonUsMember2020-07-012021-06 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t000789019msft:CommercialCustomersMember2023-06-300000789019us-gaap:NonUsMember2020-07-012021-06-3000 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t9019msft:CommercialCustomersMember2023-06-300000789019us-gaap:NonUsMember2020-07-012021-06-300000789 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tsft:CommercialCustomersMember2023-06-300000789019us-gaap:NonUsMember2020-07-012021-06-300000789019ms ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tommercialCustomersMember2023-06-300000789019us-gaap:NonUsMember2020-07-012021-06-300000789019msft:No ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tcialCustomersMember2023-06-300000789019us-gaap:NonUsMember2020-07-012021-06-300000789019msft:NotesTh ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tustomersMember2023-06-300000789019us-gaap:NonUsMember2020-07-012021-06-300000789019msft:NotesThreePo ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tersMember2023-06-300000789019us-gaap:NonUsMember2020-07-012021-06-300000789019msft:NotesThreePointOn ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tmber2023-06-300000789019us-gaap:NonUsMember2020-07-012021-06-300000789019msft:NotesThreePointOneTwoF ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t023-06-300000789019us-gaap:NonUsMember2020-07-012021-06-300000789019msft:NotesThreePointOneTwoFivePe ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t6-300000789019us-gaap:NonUsMember2020-07-012021-06-300000789019msft:NotesThreePointOneTwoFivePercent ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t000789019us-gaap:NonUsMember2020-07-012021-06-300000789019msft:NotesThreePointOneTwoFivePercentDueDe ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t9019us-gaap:NonUsMember2020-07-012021-06-300000789019msft:NotesThreePointOneTwoFivePercentDueDecembe ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\ts-gaap:NonUsMember2020-07-012021-06-300000789019msft:NotesThreePointOneTwoFivePercentDueDecemberSixT ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tp:NonUsMember2020-07-012021-06-300000789019msft:NotesThreePointOneTwoFivePercentDueDecemberSixTwenty ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tUsMember2020-07-012021-06-300000789019msft:NotesThreePointOneTwoFivePercentDueDecemberSixTwentyTwent ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tber2020-07-012021-06-300000789019msft:NotesThreePointOneTwoFivePercentDueDecemberSixTwentyTwentyEigh ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t20-07-012021-06-300000789019msft:NotesThreePointOneTwoFivePercentDueDecemberSixTwentyTwentyEightMemb ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t-012021-06-300000789019msft:NotesThreePointOneTwoFivePercentDueDecemberSixTwentyTwentyEightMember202 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t21-06-300000789019msft:NotesThreePointOneTwoFivePercentDueDecemberSixTwentyTwentyEightMember2022-07- ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t-300000789019msft:NotesThreePointOneTwoFivePercentDueDecemberSixTwentyTwentyEightMember2022-07-01202 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t00789019msft:NotesThreePointOneTwoFivePercentDueDecemberSixTwentyTwentyEightMember2022-07-012023-06- ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t019msft:NotesThreePointOneTwoFivePercentDueDecemberSixTwentyTwentyEightMember2022-07-012023-06-30000 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tft:NotesThreePointOneTwoFivePercentDueDecemberSixTwentyTwentyEightMember2022-07-012023-06-3000007890 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\ttesThreePointOneTwoFivePercentDueDecemberSixTwentyTwentyEightMember2022-07-012023-06-300000789019us- ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\treePointOneTwoFivePercentDueDecemberSixTwentyTwentyEightMember2022-07-012023-06-300000789019us-gaap: ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tintOneTwoFivePercentDueDecemberSixTwentyTwentyEightMember2022-07-012023-06-300000789019us-gaap:Desig ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\teTwoFivePercentDueDecemberSixTwentyTwentyEightMember2022-07-012023-06-300000789019us-gaap:Designated ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tivePercentDueDecemberSixTwentyTwentyEightMember2022-07-012023-06-300000789019us-gaap:DesignatedAsHed ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\trcentDueDecemberSixTwentyTwentyEightMember2022-07-012023-06-300000789019us-gaap:DesignatedAsHedgingI ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tDueDecemberSixTwentyTwentyEightMember2022-07-012023-06-300000789019us-gaap:DesignatedAsHedgingInstru ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tcemberSixTwentyTwentyEightMember2022-07-012023-06-300000789019us-gaap:DesignatedAsHedgingInstrumentM ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\trSixTwentyTwentyEightMember2022-07-012023-06-300000789019us-gaap:DesignatedAsHedgingInstrumentMember ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\twentyTwentyEightMember2022-07-012023-06-300000789019us-gaap:DesignatedAsHedgingInstrumentMemberus-ga ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tTwentyEightMember2022-07-012023-06-300000789019us-gaap:DesignatedAsHedgingInstrumentMemberus-gaap:Lo ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tyEightMember2022-07-012023-06-300000789019us-gaap:DesignatedAsHedgingInstrumentMemberus-gaap:LongMem ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\ttMember2022-07-012023-06-300000789019us-gaap:DesignatedAsHedgingInstrumentMemberus-gaap:LongMemberus ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\ter2022-07-012023-06-300000789019us-gaap:DesignatedAsHedgingInstrumentMemberus-gaap:LongMemberus-gaap ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t2-07-012023-06-300000789019us-gaap:DesignatedAsHedgingInstrumentMemberus-gaap:LongMemberus-gaap:Fore ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t012023-06-300000789019us-gaap:DesignatedAsHedgingInstrumentMemberus-gaap:LongMemberus-gaap:ForeignEx ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t3-06-300000789019us-gaap:DesignatedAsHedgingInstrumentMemberus-gaap:LongMemberus-gaap:ForeignExchang ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t300000789019us-gaap:DesignatedAsHedgingInstrumentMemberus-gaap:LongMemberus-gaap:ForeignExchangeCont ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t0789019us-gaap:DesignatedAsHedgingInstrumentMemberus-gaap:LongMemberus-gaap:ForeignExchangeContractM ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t19us-gaap:DesignatedAsHedgingInstrumentMemberus-gaap:LongMemberus-gaap:ForeignExchangeContractMember ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tgaap:DesignatedAsHedgingInstrumentMemberus-gaap:LongMemberus-gaap:ForeignExchangeContractMember2022- ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tDesignatedAsHedgingInstrumentMemberus-gaap:LongMemberus-gaap:ForeignExchangeContractMember2022-06-30 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tnatedAsHedgingInstrumentMemberus-gaap:LongMemberus-gaap:ForeignExchangeContractMember2022-06-3000007 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tAsHedgingInstrumentMemberus-gaap:LongMemberus-gaap:ForeignExchangeContractMember2022-06-300000789019 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tgingInstrumentMemberus-gaap:LongMemberus-gaap:ForeignExchangeContractMember2022-06-300000789019us-ga ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tnstrumentMemberus-gaap:LongMemberus-gaap:ForeignExchangeContractMember2022-06-300000789019us-gaap:Ac ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tmentMemberus-gaap:LongMemberus-gaap:ForeignExchangeContractMember2022-06-300000789019us-gaap:Accumul ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\temberus-gaap:LongMemberus-gaap:ForeignExchangeContractMember2022-06-300000789019us-gaap:AccumulatedO ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tus-gaap:LongMemberus-gaap:ForeignExchangeContractMember2022-06-300000789019us-gaap:AccumulatedOtherC ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tap:LongMemberus-gaap:ForeignExchangeContractMember2022-06-300000789019us-gaap:AccumulatedOtherCompre ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tngMemberus-gaap:ForeignExchangeContractMember2022-06-300000789019us-gaap:AccumulatedOtherComprehensi ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tberus-gaap:ForeignExchangeContractMember2022-06-300000789019us-gaap:AccumulatedOtherComprehensiveInc ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t-gaap:ForeignExchangeContractMember2022-06-300000789019us-gaap:AccumulatedOtherComprehensiveIncomeMe ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t:ForeignExchangeContractMember2022-06-300000789019us-gaap:AccumulatedOtherComprehensiveIncomeMembers ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tignExchangeContractMember2022-06-300000789019us-gaap:AccumulatedOtherComprehensiveIncomeMembersrt:Cu ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tchangeContractMember2022-06-300000789019us-gaap:AccumulatedOtherComprehensiveIncomeMembersrt:Cumulat ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\teContractMember2022-06-300000789019us-gaap:AccumulatedOtherComprehensiveIncomeMembersrt:CumulativeEf ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tractMember2022-06-300000789019us-gaap:AccumulatedOtherComprehensiveIncomeMembersrt:CumulativeEffectP ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tember2022-06-300000789019us-gaap:AccumulatedOtherComprehensiveIncomeMembersrt:CumulativeEffectPeriod ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t2022-06-300000789019us-gaap:AccumulatedOtherComprehensiveIncomeMembersrt:CumulativeEffectPeriodOfAdo ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t06-300000789019us-gaap:AccumulatedOtherComprehensiveIncomeMembersrt:CumulativeEffectPeriodOfAdoption ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t0000789019us-gaap:AccumulatedOtherComprehensiveIncomeMembersrt:CumulativeEffectPeriodOfAdoptionAdjus ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t89019us-gaap:AccumulatedOtherComprehensiveIncomeMembersrt:CumulativeEffectPeriodOfAdoptionAdjustment ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tus-gaap:AccumulatedOtherComprehensiveIncomeMembersrt:CumulativeEffectPeriodOfAdoptionAdjustmentMembe ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tap:AccumulatedOtherComprehensiveIncomeMembersrt:CumulativeEffectPeriodOfAdoptionAdjustmentMember2020 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tcumulatedOtherComprehensiveIncomeMembersrt:CumulativeEffectPeriodOfAdoptionAdjustmentMember2020-06-3 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tatedOtherComprehensiveIncomeMembersrt:CumulativeEffectPeriodOfAdoptionAdjustmentMember2020-06-300000 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\ttherComprehensiveIncomeMembersrt:CumulativeEffectPeriodOfAdoptionAdjustmentMember2020-06-30000078901 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tomprehensiveIncomeMembersrt:CumulativeEffectPeriodOfAdoptionAdjustmentMember2020-06-300000789019us-g ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\thensiveIncomeMembersrt:CumulativeEffectPeriodOfAdoptionAdjustmentMember2020-06-300000789019us-gaap:M ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tveIncomeMembersrt:CumulativeEffectPeriodOfAdoptionAdjustmentMember2020-06-300000789019us-gaap:Market ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tomeMembersrt:CumulativeEffectPeriodOfAdoptionAdjustmentMember2020-06-300000789019us-gaap:MarketingRe ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tmbersrt:CumulativeEffectPeriodOfAdoptionAdjustmentMember2020-06-300000789019us-gaap:MarketingRelated ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\trt:CumulativeEffectPeriodOfAdoptionAdjustmentMember2020-06-300000789019us-gaap:MarketingRelatedIntan ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tmulativeEffectPeriodOfAdoptionAdjustmentMember2020-06-300000789019us-gaap:MarketingRelatedIntangible ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tiveEffectPeriodOfAdoptionAdjustmentMember2020-06-300000789019us-gaap:MarketingRelatedIntangibleAsset ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tfectPeriodOfAdoptionAdjustmentMember2020-06-300000789019us-gaap:MarketingRelatedIntangibleAssetsMemb ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\teriodOfAdoptionAdjustmentMember2020-06-300000789019us-gaap:MarketingRelatedIntangibleAssetsMember202 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tOfAdoptionAdjustmentMember2020-06-300000789019us-gaap:MarketingRelatedIntangibleAssetsMember2022-07- ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tptionAdjustmentMember2020-06-300000789019us-gaap:MarketingRelatedIntangibleAssetsMember2022-07-01202 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tAdjustmentMember2020-06-300000789019us-gaap:MarketingRelatedIntangibleAssetsMember2022-07-012023-06- ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\ttmentMember2020-06-300000789019us-gaap:MarketingRelatedIntangibleAssetsMember2022-07-012023-06-30000 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tMember2020-06-300000789019us-gaap:MarketingRelatedIntangibleAssetsMember2022-07-012023-06-3000007890 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tr2020-06-300000789019us-gaap:MarketingRelatedIntangibleAssetsMember2022-07-012023-06-300000789019202 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t-06-300000789019us-gaap:MarketingRelatedIntangibleAssetsMember2022-07-012023-06-3000007890192023-01- ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t00000789019us-gaap:MarketingRelatedIntangibleAssetsMember2022-07-012023-06-3000007890192023-01-18202 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t789019us-gaap:MarketingRelatedIntangibleAssetsMember2022-07-012023-06-3000007890192023-01-182023-01- ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t9us-gaap:MarketingRelatedIntangibleAssetsMember2022-07-012023-06-3000007890192023-01-182023-01-18000 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\taap:MarketingRelatedIntangibleAssetsMember2022-07-012023-06-3000007890192023-01-182023-01-1800007890 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tarketingRelatedIntangibleAssetsMember2022-07-012023-06-3000007890192023-01-182023-01-180000789019msf ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tingRelatedIntangibleAssetsMember2022-07-012023-06-3000007890192023-01-182023-01-180000789019msft:Iss ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tlatedIntangibleAssetsMember2022-07-012023-06-3000007890192023-01-182023-01-180000789019msft:Issuance ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tIntangibleAssetsMember2022-07-012023-06-3000007890192023-01-182023-01-180000789019msft:IssuanceOfLon ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tgibleAssetsMember2022-07-012023-06-3000007890192023-01-182023-01-180000789019msft:IssuanceOfLongTerm ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tAssetsMember2022-07-012023-06-3000007890192023-01-182023-01-180000789019msft:IssuanceOfLongTermDebtT ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tsMember2022-07-012023-06-3000007890192023-01-182023-01-180000789019msft:IssuanceOfLongTermDebtTenMem ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\ter2022-07-012023-06-3000007890192023-01-182023-01-180000789019msft:IssuanceOfLongTermDebtTenMember20 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t2-07-012023-06-3000007890192023-01-182023-01-180000789019msft:IssuanceOfLongTermDebtTenMember2023-06 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t012023-06-3000007890192023-01-182023-01-180000789019msft:IssuanceOfLongTermDebtTenMember2023-06-3000 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t3-06-3000007890192023-01-182023-01-180000789019msft:IssuanceOfLongTermDebtTenMember2023-06-300000789 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t3000007890192023-01-182023-01-180000789019msft:IssuanceOfLongTermDebtTenMember2023-06-300000789019ms ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t07890192023-01-182023-01-180000789019msft:IssuanceOfLongTermDebtTenMember2023-06-300000789019msft:In ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t192023-01-182023-01-180000789019msft:IssuanceOfLongTermDebtTenMember2023-06-300000789019msft:IndiaSu ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t3-01-182023-01-180000789019msft:IssuanceOfLongTermDebtTenMember2023-06-300000789019msft:IndiaSupreme ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t182023-01-180000789019msft:IssuanceOfLongTermDebtTenMember2023-06-300000789019msft:IndiaSupremeCourt ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t3-01-180000789019msft:IssuanceOfLongTermDebtTenMember2023-06-300000789019msft:IndiaSupremeCourtMembe ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t180000789019msft:IssuanceOfLongTermDebtTenMember2023-06-300000789019msft:IndiaSupremeCourtMember2021 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t0789019msft:IssuanceOfLongTermDebtTenMember2023-06-300000789019msft:IndiaSupremeCourtMember2021-01-0 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t19msft:IssuanceOfLongTermDebtTenMember2023-06-300000789019msft:IndiaSupremeCourtMember2021-01-012021 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tt:IssuanceOfLongTermDebtTenMember2023-06-300000789019msft:IndiaSupremeCourtMember2021-01-012021-03-3 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tuanceOfLongTermDebtTenMember2023-06-300000789019msft:IndiaSupremeCourtMember2021-01-012021-03-310000 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tOfLongTermDebtTenMember2023-06-300000789019msft:IndiaSupremeCourtMember2021-01-012021-03-31000078901 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tgTermDebtTenMember2023-06-300000789019msft:IndiaSupremeCourtMember2021-01-012021-03-310000789019msft ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tDebtTenMember2023-06-300000789019msft:IndiaSupremeCourtMember2021-01-012021-03-310000789019msft:Issu ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tenMember2023-06-300000789019msft:IndiaSupremeCourtMember2021-01-012021-03-310000789019msft:IssuanceO ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tber2023-06-300000789019msft:IndiaSupremeCourtMember2021-01-012021-03-310000789019msft:IssuanceOfLong ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t23-06-300000789019msft:IndiaSupremeCourtMember2021-01-012021-03-310000789019msft:IssuanceOfLongTermD ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t-300000789019msft:IndiaSupremeCourtMember2021-01-012021-03-310000789019msft:IssuanceOfLongTermDebtSi ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t00789019msft:IndiaSupremeCourtMember2021-01-012021-03-310000789019msft:IssuanceOfLongTermDebtSixMemb ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t019msft:IndiaSupremeCourtMember2021-01-012021-03-310000789019msft:IssuanceOfLongTermDebtSixMember202 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tft:IndiaSupremeCourtMember2021-01-012021-03-310000789019msft:IssuanceOfLongTermDebtSixMember2022-06- ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tdiaSupremeCourtMember2021-01-012021-03-310000789019msft:IssuanceOfLongTermDebtSixMember2022-06-30000 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tpremeCourtMember2021-01-012021-03-310000789019msft:IssuanceOfLongTermDebtSixMember2022-06-3000007890 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tCourtMember2021-01-012021-03-310000789019msft:IssuanceOfLongTermDebtSixMember2022-06-300000789019us- ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tMember2021-01-012021-03-310000789019msft:IssuanceOfLongTermDebtSixMember2022-06-300000789019us-gaap: ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tr2021-01-012021-03-310000789019msft:IssuanceOfLongTermDebtSixMember2022-06-300000789019us-gaap:Marke ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t-01-012021-03-310000789019msft:IssuanceOfLongTermDebtSixMember2022-06-300000789019us-gaap:MarketingR ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t12021-03-310000789019msft:IssuanceOfLongTermDebtSixMember2022-06-300000789019us-gaap:MarketingRelate ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t-03-310000789019msft:IssuanceOfLongTermDebtSixMember2022-06-300000789019us-gaap:MarketingRelatedInta ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t10000789019msft:IssuanceOfLongTermDebtSixMember2022-06-300000789019us-gaap:MarketingRelatedIntangibl ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t789019msft:IssuanceOfLongTermDebtSixMember2022-06-300000789019us-gaap:MarketingRelatedIntangibleAsse ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t9msft:IssuanceOfLongTermDebtSixMember2022-06-300000789019us-gaap:MarketingRelatedIntangibleAssetsMem ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t:IssuanceOfLongTermDebtSixMember2022-06-300000789019us-gaap:MarketingRelatedIntangibleAssetsMember20 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tanceOfLongTermDebtSixMember2022-06-300000789019us-gaap:MarketingRelatedIntangibleAssetsMember2023-06 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tfLongTermDebtSixMember2022-06-300000789019us-gaap:MarketingRelatedIntangibleAssetsMember2023-06-3000 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tTermDebtSixMember2022-06-300000789019us-gaap:MarketingRelatedIntangibleAssetsMember2023-06-300000789 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tebtSixMember2022-06-300000789019us-gaap:MarketingRelatedIntangibleAssetsMember2023-06-300000789019us ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\txMember2022-06-300000789019us-gaap:MarketingRelatedIntangibleAssetsMember2023-06-300000789019us-gaap ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\ter2022-06-300000789019us-gaap:MarketingRelatedIntangibleAssetsMember2023-06-300000789019us-gaap:Reta ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t2-06-300000789019us-gaap:MarketingRelatedIntangibleAssetsMember2023-06-300000789019us-gaap:RetainedE ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t300000789019us-gaap:MarketingRelatedIntangibleAssetsMember2023-06-300000789019us-gaap:RetainedEarnin ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t0789019us-gaap:MarketingRelatedIntangibleAssetsMember2023-06-300000789019us-gaap:RetainedEarningsMem ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t19us-gaap:MarketingRelatedIntangibleAssetsMember2023-06-300000789019us-gaap:RetainedEarningsMember20 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tgaap:MarketingRelatedIntangibleAssetsMember2023-06-300000789019us-gaap:RetainedEarningsMember2022-07 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tMarketingRelatedIntangibleAssetsMember2023-06-300000789019us-gaap:RetainedEarningsMember2022-07-0120 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\ttingRelatedIntangibleAssetsMember2023-06-300000789019us-gaap:RetainedEarningsMember2022-07-012023-06 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\telatedIntangibleAssetsMember2023-06-300000789019us-gaap:RetainedEarningsMember2022-07-012023-06-3000 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tdIntangibleAssetsMember2023-06-300000789019us-gaap:RetainedEarningsMember2022-07-012023-06-300000789 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tngibleAssetsMember2023-06-300000789019us-gaap:RetainedEarningsMember2022-07-012023-06-300000789019ms ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\teAssetsMember2023-06-300000789019us-gaap:RetainedEarningsMember2022-07-012023-06-300000789019msft:En ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\ttsMember2023-06-300000789019us-gaap:RetainedEarningsMember2022-07-012023-06-300000789019msft:Enterpr ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tber2023-06-300000789019us-gaap:RetainedEarningsMember2022-07-012023-06-300000789019msft:EnterpriseSe ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t23-06-300000789019us-gaap:RetainedEarningsMember2022-07-012023-06-300000789019msft:EnterpriseService ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t-300000789019us-gaap:RetainedEarningsMember2022-07-012023-06-300000789019msft:EnterpriseServicesMemb ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t00789019us-gaap:RetainedEarningsMember2022-07-012023-06-300000789019msft:EnterpriseServicesMember202 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t019us-gaap:RetainedEarningsMember2022-07-012023-06-300000789019msft:EnterpriseServicesMember2020-07- ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t-gaap:RetainedEarningsMember2022-07-012023-06-300000789019msft:EnterpriseServicesMember2020-07-01202 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t:RetainedEarningsMember2022-07-012023-06-300000789019msft:EnterpriseServicesMember2020-07-012021-06- ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tinedEarningsMember2022-07-012023-06-300000789019msft:EnterpriseServicesMember2020-07-012021-06-30000 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tarningsMember2022-07-012023-06-300000789019msft:EnterpriseServicesMember2020-07-012021-06-3000007890 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tgsMember2022-07-012023-06-300000789019msft:EnterpriseServicesMember2020-07-012021-06-300000789019us- ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tber2022-07-012023-06-300000789019msft:EnterpriseServicesMember2020-07-012021-06-300000789019us-gaap: ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t22-07-012023-06-300000789019msft:EnterpriseServicesMember2020-07-012021-06-300000789019us-gaap:USSta ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t-012023-06-300000789019msft:EnterpriseServicesMember2020-07-012021-06-300000789019us-gaap:USStatesAn ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t23-06-300000789019msft:EnterpriseServicesMember2020-07-012021-06-300000789019us-gaap:USStatesAndPoli ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t-300000789019msft:EnterpriseServicesMember2020-07-012021-06-300000789019us-gaap:USStatesAndPolitical ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t00789019msft:EnterpriseServicesMember2020-07-012021-06-300000789019us-gaap:USStatesAndPoliticalSubdi ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t019msft:EnterpriseServicesMember2020-07-012021-06-300000789019us-gaap:USStatesAndPoliticalSubdivisio ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tft:EnterpriseServicesMember2020-07-012021-06-300000789019us-gaap:USStatesAndPoliticalSubdivisionsMem ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tterpriseServicesMember2020-07-012021-06-300000789019us-gaap:USStatesAndPoliticalSubdivisionsMember20 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tiseServicesMember2020-07-012021-06-300000789019us-gaap:USStatesAndPoliticalSubdivisionsMember2023-06 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\trvicesMember2020-07-012021-06-300000789019us-gaap:USStatesAndPoliticalSubdivisionsMember2023-06-3000 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tsMember2020-07-012021-06-300000789019us-gaap:USStatesAndPoliticalSubdivisionsMember2023-06-300000789 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\ter2020-07-012021-06-300000789019us-gaap:USStatesAndPoliticalSubdivisionsMember2023-06-300000789019us ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t0-07-012021-06-300000789019us-gaap:USStatesAndPoliticalSubdivisionsMember2023-06-300000789019us-gaap ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t012021-06-300000789019us-gaap:USStatesAndPoliticalSubdivisionsMember2023-06-300000789019us-gaap:Earl ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t1-06-300000789019us-gaap:USStatesAndPoliticalSubdivisionsMember2023-06-300000789019us-gaap:EarliestT ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t300000789019us-gaap:USStatesAndPoliticalSubdivisionsMember2023-06-300000789019us-gaap:EarliestTaxYea ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t0789019us-gaap:USStatesAndPoliticalSubdivisionsMember2023-06-300000789019us-gaap:EarliestTaxYearMemb ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t19us-gaap:USStatesAndPoliticalSubdivisionsMember2023-06-300000789019us-gaap:EarliestTaxYearMemberus- ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tgaap:USStatesAndPoliticalSubdivisionsMember2023-06-300000789019us-gaap:EarliestTaxYearMemberus-gaap: ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tUSStatesAndPoliticalSubdivisionsMember2023-06-300000789019us-gaap:EarliestTaxYearMemberus-gaap:Inter ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\ttesAndPoliticalSubdivisionsMember2023-06-300000789019us-gaap:EarliestTaxYearMemberus-gaap:InternalRe ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tdPoliticalSubdivisionsMember2023-06-300000789019us-gaap:EarliestTaxYearMemberus-gaap:InternalRevenue ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tticalSubdivisionsMember2023-06-300000789019us-gaap:EarliestTaxYearMemberus-gaap:InternalRevenueServi ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tSubdivisionsMember2023-06-300000789019us-gaap:EarliestTaxYearMemberus-gaap:InternalRevenueServiceIRS ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tvisionsMember2023-06-300000789019us-gaap:EarliestTaxYearMemberus-gaap:InternalRevenueServiceIRSMembe ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tnsMember2023-06-300000789019us-gaap:EarliestTaxYearMemberus-gaap:InternalRevenueServiceIRSMember2017 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tber2023-06-300000789019us-gaap:EarliestTaxYearMemberus-gaap:InternalRevenueServiceIRSMember2017-07-0 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t23-06-300000789019us-gaap:EarliestTaxYearMemberus-gaap:InternalRevenueServiceIRSMember2017-07-012018 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t-300000789019us-gaap:EarliestTaxYearMemberus-gaap:InternalRevenueServiceIRSMember2017-07-012018-06-3 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t00789019us-gaap:EarliestTaxYearMemberus-gaap:InternalRevenueServiceIRSMember2017-07-012018-06-300000 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t019us-gaap:EarliestTaxYearMemberus-gaap:InternalRevenueServiceIRSMember2017-07-012018-06-30000078901 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t-gaap:EarliestTaxYearMemberus-gaap:InternalRevenueServiceIRSMember2017-07-012018-06-300000789019us-g ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t:EarliestTaxYearMemberus-gaap:InternalRevenueServiceIRSMember2017-07-012018-06-300000789019us-gaap:D ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tiestTaxYearMemberus-gaap:InternalRevenueServiceIRSMember2017-07-012018-06-300000789019us-gaap:DebtSe ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\taxYearMemberus-gaap:InternalRevenueServiceIRSMember2017-07-012018-06-300000789019us-gaap:DebtSecurit ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\trMemberus-gaap:InternalRevenueServiceIRSMember2017-07-012018-06-300000789019us-gaap:DebtSecuritiesMe ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\terus-gaap:InternalRevenueServiceIRSMember2017-07-012018-06-300000789019us-gaap:DebtSecuritiesMemberu ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tgaap:InternalRevenueServiceIRSMember2017-07-012018-06-300000789019us-gaap:DebtSecuritiesMemberus-gaa ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tInternalRevenueServiceIRSMember2017-07-012018-06-300000789019us-gaap:DebtSecuritiesMemberus-gaap:Fai ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tnalRevenueServiceIRSMember2017-07-012018-06-300000789019us-gaap:DebtSecuritiesMemberus-gaap:FairValu ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tvenueServiceIRSMember2017-07-012018-06-300000789019us-gaap:DebtSecuritiesMemberus-gaap:FairValueInpu ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tServiceIRSMember2017-07-012018-06-300000789019us-gaap:DebtSecuritiesMemberus-gaap:FairValueInputsLev ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tceIRSMember2017-07-012018-06-300000789019us-gaap:DebtSecuritiesMemberus-gaap:FairValueInputsLevel2Me ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tMember2017-07-012018-06-300000789019us-gaap:DebtSecuritiesMemberus-gaap:FairValueInputsLevel2Memberu ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tr2017-07-012018-06-300000789019us-gaap:DebtSecuritiesMemberus-gaap:FairValueInputsLevel2Memberus-gaa ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t-07-012018-06-300000789019us-gaap:DebtSecuritiesMemberus-gaap:FairValueInputsLevel2Memberus-gaap:For ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t12018-06-300000789019us-gaap:DebtSecuritiesMemberus-gaap:FairValueInputsLevel2Memberus-gaap:ForeignG ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t-06-300000789019us-gaap:DebtSecuritiesMemberus-gaap:FairValueInputsLevel2Memberus-gaap:ForeignGovern ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t00000789019us-gaap:DebtSecuritiesMemberus-gaap:FairValueInputsLevel2Memberus-gaap:ForeignGovernmentD ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t789019us-gaap:DebtSecuritiesMemberus-gaap:FairValueInputsLevel2Memberus-gaap:ForeignGovernmentDebtSe ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t9us-gaap:DebtSecuritiesMemberus-gaap:FairValueInputsLevel2Memberus-gaap:ForeignGovernmentDebtSecurit ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\taap:DebtSecuritiesMemberus-gaap:FairValueInputsLevel2Memberus-gaap:ForeignGovernmentDebtSecuritiesMe ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tebtSecuritiesMemberus-gaap:FairValueInputsLevel2Memberus-gaap:ForeignGovernmentDebtSecuritiesMember2 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tcuritiesMemberus-gaap:FairValueInputsLevel2Memberus-gaap:ForeignGovernmentDebtSecuritiesMember2022-0 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tiesMemberus-gaap:FairValueInputsLevel2Memberus-gaap:ForeignGovernmentDebtSecuritiesMember2022-06-300 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tmberus-gaap:FairValueInputsLevel2Memberus-gaap:ForeignGovernmentDebtSecuritiesMember2022-06-30000078 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\ts-gaap:FairValueInputsLevel2Memberus-gaap:ForeignGovernmentDebtSecuritiesMember2022-06-300000789019m ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tp:FairValueInputsLevel2Memberus-gaap:ForeignGovernmentDebtSecuritiesMember2022-06-300000789019msft:N ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\trValueInputsLevel2Memberus-gaap:ForeignGovernmentDebtSecuritiesMember2022-06-300000789019msft:Networ ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\teInputsLevel2Memberus-gaap:ForeignGovernmentDebtSecuritiesMember2022-06-300000789019msft:NetworkEqui ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\ttsLevel2Memberus-gaap:ForeignGovernmentDebtSecuritiesMember2022-06-300000789019msft:NetworkEquipment ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tel2Memberus-gaap:ForeignGovernmentDebtSecuritiesMember2022-06-300000789019msft:NetworkEquipmentMembe ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tmberus-gaap:ForeignGovernmentDebtSecuritiesMember2022-06-300000789019msft:NetworkEquipmentMemberus-g ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\ts-gaap:ForeignGovernmentDebtSecuritiesMember2022-06-300000789019msft:NetworkEquipmentMemberus-gaap:S ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tp:ForeignGovernmentDebtSecuritiesMember2022-06-300000789019msft:NetworkEquipmentMemberus-gaap:Servic ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\teignGovernmentDebtSecuritiesMember2022-06-300000789019msft:NetworkEquipmentMemberus-gaap:ServiceLife ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tovernmentDebtSecuritiesMember2022-06-300000789019msft:NetworkEquipmentMemberus-gaap:ServiceLifeMembe ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tmentDebtSecuritiesMember2022-06-300000789019msft:NetworkEquipmentMemberus-gaap:ServiceLifeMember2022 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tebtSecuritiesMember2022-06-300000789019msft:NetworkEquipmentMemberus-gaap:ServiceLifeMember2022-06-3 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tcuritiesMember2022-06-300000789019msft:NetworkEquipmentMemberus-gaap:ServiceLifeMember2022-06-300000 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tiesMember2022-06-300000789019msft:NetworkEquipmentMemberus-gaap:ServiceLifeMember2022-06-30000078901 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tmber2022-06-300000789019msft:NetworkEquipmentMemberus-gaap:ServiceLifeMember2022-06-3000007890192021 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t022-06-300000789019msft:NetworkEquipmentMemberus-gaap:ServiceLifeMember2022-06-3000007890192021-05-0 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t6-300000789019msft:NetworkEquipmentMemberus-gaap:ServiceLifeMember2022-06-3000007890192021-05-012021 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t000789019msft:NetworkEquipmentMemberus-gaap:ServiceLifeMember2022-06-3000007890192021-05-012021-05-0 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t9019msft:NetworkEquipmentMemberus-gaap:ServiceLifeMember2022-06-3000007890192021-05-012021-05-010000 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tsft:NetworkEquipmentMemberus-gaap:ServiceLifeMember2022-06-3000007890192021-05-012021-05-01000078901 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tetworkEquipmentMemberus-gaap:ServiceLifeMember2022-06-3000007890192021-05-012021-05-010000789019us-g ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tkEquipmentMemberus-gaap:ServiceLifeMember2022-06-3000007890192021-05-012021-05-010000789019us-gaap:F ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tpmentMemberus-gaap:ServiceLifeMember2022-06-3000007890192021-05-012021-05-010000789019us-gaap:FairVa ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tMemberus-gaap:ServiceLifeMember2022-06-3000007890192021-05-012021-05-010000789019us-gaap:FairValueIn ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\trus-gaap:ServiceLifeMember2022-06-3000007890192021-05-012021-05-010000789019us-gaap:FairValueInputsL ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\taap:ServiceLifeMember2022-06-3000007890192021-05-012021-05-010000789019us-gaap:FairValueInputsLevel1 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\terviceLifeMember2022-06-3000007890192021-05-012021-05-010000789019us-gaap:FairValueInputsLevel1Membe ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\teLifeMember2022-06-3000007890192021-05-012021-05-010000789019us-gaap:FairValueInputsLevel1Member2023 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tMember2022-06-3000007890192021-05-012021-05-010000789019us-gaap:FairValueInputsLevel1Member2023-06-3 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tr2022-06-3000007890192021-05-012021-05-010000789019us-gaap:FairValueInputsLevel1Member2023-06-300000 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t-06-3000007890192021-05-012021-05-010000789019us-gaap:FairValueInputsLevel1Member2023-06-30000078901 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t000007890192021-05-012021-05-010000789019us-gaap:FairValueInputsLevel1Member2023-06-3000007890192023 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t7890192021-05-012021-05-010000789019us-gaap:FairValueInputsLevel1Member2023-06-3000007890192023-01-0 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t92021-05-012021-05-010000789019us-gaap:FairValueInputsLevel1Member2023-06-3000007890192023-01-012023 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t-05-012021-05-010000789019us-gaap:FairValueInputsLevel1Member2023-06-3000007890192023-01-012023-03-3 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t12021-05-010000789019us-gaap:FairValueInputsLevel1Member2023-06-3000007890192023-01-012023-03-310000 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t-05-010000789019us-gaap:FairValueInputsLevel1Member2023-06-3000007890192023-01-012023-03-31000078901 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t10000789019us-gaap:FairValueInputsLevel1Member2023-06-3000007890192023-01-012023-03-310000789019us-g ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t789019us-gaap:FairValueInputsLevel1Member2023-06-3000007890192023-01-012023-03-310000789019us-gaap:C ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t9us-gaap:FairValueInputsLevel1Member2023-06-3000007890192023-01-012023-03-310000789019us-gaap:Custom ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\taap:FairValueInputsLevel1Member2023-06-3000007890192023-01-012023-03-310000789019us-gaap:CustomerRel ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tairValueInputsLevel1Member2023-06-3000007890192023-01-012023-03-310000789019us-gaap:CustomerRelation ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tlueInputsLevel1Member2023-06-3000007890192023-01-012023-03-310000789019us-gaap:CustomerRelationships ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tputsLevel1Member2023-06-3000007890192023-01-012023-03-310000789019us-gaap:CustomerRelationshipsMembe ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tevel1Member2023-06-3000007890192023-01-012023-03-310000789019us-gaap:CustomerRelationshipsMember2021 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tMember2023-06-3000007890192023-01-012023-03-310000789019us-gaap:CustomerRelationshipsMember2021-07-0 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tr2023-06-3000007890192023-01-012023-03-310000789019us-gaap:CustomerRelationshipsMember2021-07-012022 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t-06-3000007890192023-01-012023-03-310000789019us-gaap:CustomerRelationshipsMember2021-07-012022-06-3 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t000007890192023-01-012023-03-310000789019us-gaap:CustomerRelationshipsMember2021-07-012022-06-300000 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t7890192023-01-012023-03-310000789019us-gaap:CustomerRelationshipsMember2021-07-012022-06-30000078901 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t92023-01-012023-03-310000789019us-gaap:CustomerRelationshipsMember2021-07-012022-06-300000789019msft ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t-01-012023-03-310000789019us-gaap:CustomerRelationshipsMember2021-07-012022-06-300000789019msft:Micr ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t12023-03-310000789019us-gaap:CustomerRelationshipsMember2021-07-012022-06-300000789019msft:Microsoft ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t-03-310000789019us-gaap:CustomerRelationshipsMember2021-07-012022-06-300000789019msft:MicrosoftCloud ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t10000789019us-gaap:CustomerRelationshipsMember2021-07-012022-06-300000789019msft:MicrosoftCloudMembe ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t789019us-gaap:CustomerRelationshipsMember2021-07-012022-06-300000789019msft:MicrosoftCloudMember2021 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t9us-gaap:CustomerRelationshipsMember2021-07-012022-06-300000789019msft:MicrosoftCloudMember2021-07-0 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\taap:CustomerRelationshipsMember2021-07-012022-06-300000789019msft:MicrosoftCloudMember2021-07-012022 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tustomerRelationshipsMember2021-07-012022-06-300000789019msft:MicrosoftCloudMember2021-07-012022-06-3 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\terRelationshipsMember2021-07-012022-06-300000789019msft:MicrosoftCloudMember2021-07-012022-06-300000 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tationshipsMember2021-07-012022-06-300000789019msft:MicrosoftCloudMember2021-07-012022-06-30000078901 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tshipsMember2021-07-012022-06-300000789019msft:MicrosoftCloudMember2021-07-012022-06-300000789019msft ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tMember2021-07-012022-06-300000789019msft:MicrosoftCloudMember2021-07-012022-06-300000789019msft:Inte ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tr2021-07-012022-06-300000789019msft:MicrosoftCloudMember2021-07-012022-06-300000789019msft:Intellige ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t-07-012022-06-300000789019msft:MicrosoftCloudMember2021-07-012022-06-300000789019msft:IntelligentClo ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t12022-06-300000789019msft:MicrosoftCloudMember2021-07-012022-06-300000789019msft:IntelligentCloudMem ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t-06-300000789019msft:MicrosoftCloudMember2021-07-012022-06-300000789019msft:IntelligentCloudMember20 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t00000789019msft:MicrosoftCloudMember2021-07-012022-06-300000789019msft:IntelligentCloudMember2022-07 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t789019msft:MicrosoftCloudMember2021-07-012022-06-300000789019msft:IntelligentCloudMember2022-07-0120 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t9msft:MicrosoftCloudMember2021-07-012022-06-300000789019msft:IntelligentCloudMember2022-07-012023-06 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t:MicrosoftCloudMember2021-07-012022-06-300000789019msft:IntelligentCloudMember2022-07-012023-06-3000 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tosoftCloudMember2021-07-012022-06-300000789019msft:IntelligentCloudMember2022-07-012023-06-300000789 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tCloudMember2021-07-012022-06-300000789019msft:IntelligentCloudMember2022-07-012023-06-300000789019us ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tMember2021-07-012022-06-300000789019msft:IntelligentCloudMember2022-07-012023-06-300000789019us-gaap ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tr2021-07-012022-06-300000789019msft:IntelligentCloudMember2022-07-012023-06-300000789019us-gaap:Nono ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t-07-012022-06-300000789019msft:IntelligentCloudMember2022-07-012023-06-300000789019us-gaap:Nonoperat ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t12022-06-300000789019msft:IntelligentCloudMember2022-07-012023-06-300000789019us-gaap:NonoperatingIn ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t-06-300000789019msft:IntelligentCloudMember2022-07-012023-06-300000789019us-gaap:NonoperatingIncomeE ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t00000789019msft:IntelligentCloudMember2022-07-012023-06-300000789019us-gaap:NonoperatingIncomeExpens ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t789019msft:IntelligentCloudMember2022-07-012023-06-300000789019us-gaap:NonoperatingIncomeExpenseMemb ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t9msft:IntelligentCloudMember2022-07-012023-06-300000789019us-gaap:NonoperatingIncomeExpenseMemberus- ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t:IntelligentCloudMember2022-07-012023-06-300000789019us-gaap:NonoperatingIncomeExpenseMemberus-gaap: ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tlligentCloudMember2022-07-012023-06-300000789019us-gaap:NonoperatingIncomeExpenseMemberus-gaap:Accum ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tntCloudMember2022-07-012023-06-300000789019us-gaap:NonoperatingIncomeExpenseMemberus-gaap:Accumulate ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tudMember2022-07-012023-06-300000789019us-gaap:NonoperatingIncomeExpenseMemberus-gaap:AccumulatedNetU ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tber2022-07-012023-06-300000789019us-gaap:NonoperatingIncomeExpenseMemberus-gaap:AccumulatedNetUnreal ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t22-07-012023-06-300000789019us-gaap:NonoperatingIncomeExpenseMemberus-gaap:AccumulatedNetUnrealizedI ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t-012023-06-300000789019us-gaap:NonoperatingIncomeExpenseMemberus-gaap:AccumulatedNetUnrealizedInvest ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t23-06-300000789019us-gaap:NonoperatingIncomeExpenseMemberus-gaap:AccumulatedNetUnrealizedInvestmentG ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t-300000789019us-gaap:NonoperatingIncomeExpenseMemberus-gaap:AccumulatedNetUnrealizedInvestmentGainLo ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t00789019us-gaap:NonoperatingIncomeExpenseMemberus-gaap:AccumulatedNetUnrealizedInvestmentGainLossMem ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t019us-gaap:NonoperatingIncomeExpenseMemberus-gaap:AccumulatedNetUnrealizedInvestmentGainLossMember20 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t-gaap:NonoperatingIncomeExpenseMemberus-gaap:AccumulatedNetUnrealizedInvestmentGainLossMember2021-07 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t:NonoperatingIncomeExpenseMemberus-gaap:AccumulatedNetUnrealizedInvestmentGainLossMember2021-07-0120 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tperatingIncomeExpenseMemberus-gaap:AccumulatedNetUnrealizedInvestmentGainLossMember2021-07-012022-06 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tingIncomeExpenseMemberus-gaap:AccumulatedNetUnrealizedInvestmentGainLossMember2021-07-012022-06-3000 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tcomeExpenseMemberus-gaap:AccumulatedNetUnrealizedInvestmentGainLossMember2021-07-012022-06-300000789 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\txpenseMemberus-gaap:AccumulatedNetUnrealizedInvestmentGainLossMember2021-07-012022-06-300000789019us ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\teMemberus-gaap:AccumulatedNetUnrealizedInvestmentGainLossMember2021-07-012022-06-300000789019us-gaap ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\terus-gaap:AccumulatedNetUnrealizedInvestmentGainLossMember2021-07-012022-06-300000789019us-gaap:Accu ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tgaap:AccumulatedNetUnrealizedInvestmentGainLossMember2021-07-012022-06-300000789019us-gaap:Accumulat ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tAccumulatedNetUnrealizedInvestmentGainLossMember2021-07-012022-06-300000789019us-gaap:AccumulatedOth ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tulatedNetUnrealizedInvestmentGainLossMember2021-07-012022-06-300000789019us-gaap:AccumulatedOtherCom ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tdNetUnrealizedInvestmentGainLossMember2021-07-012022-06-300000789019us-gaap:AccumulatedOtherComprehe ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tnrealizedInvestmentGainLossMember2021-07-012022-06-300000789019us-gaap:AccumulatedOtherComprehensive ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tizedInvestmentGainLossMember2021-07-012022-06-300000789019us-gaap:AccumulatedOtherComprehensiveIncom ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tnvestmentGainLossMember2021-07-012022-06-300000789019us-gaap:AccumulatedOtherComprehensiveIncomeMemb ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tmentGainLossMember2021-07-012022-06-300000789019us-gaap:AccumulatedOtherComprehensiveIncomeMember202 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tainLossMember2021-07-012022-06-300000789019us-gaap:AccumulatedOtherComprehensiveIncomeMember2022-06- ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tssMember2021-07-012022-06-300000789019us-gaap:AccumulatedOtherComprehensiveIncomeMember2022-06-30000 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tber2021-07-012022-06-300000789019us-gaap:AccumulatedOtherComprehensiveIncomeMember2022-06-3000007890 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t21-07-012022-06-300000789019us-gaap:AccumulatedOtherComprehensiveIncomeMember2022-06-300000789019msf ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t-012022-06-300000789019us-gaap:AccumulatedOtherComprehensiveIncomeMember2022-06-300000789019msft:Iss ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t22-06-300000789019us-gaap:AccumulatedOtherComprehensiveIncomeMember2022-06-300000789019msft:Issuance ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t-300000789019us-gaap:AccumulatedOtherComprehensiveIncomeMember2022-06-300000789019msft:IssuanceOfLon ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t00789019us-gaap:AccumulatedOtherComprehensiveIncomeMember2022-06-300000789019msft:IssuanceOfLongTerm ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t019us-gaap:AccumulatedOtherComprehensiveIncomeMember2022-06-300000789019msft:IssuanceOfLongTermDebtS ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t-gaap:AccumulatedOtherComprehensiveIncomeMember2022-06-300000789019msft:IssuanceOfLongTermDebtSevenM ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t:AccumulatedOtherComprehensiveIncomeMember2022-06-300000789019msft:IssuanceOfLongTermDebtSevenMember ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tmulatedOtherComprehensiveIncomeMember2022-06-300000789019msft:IssuanceOfLongTermDebtSevenMember2022- ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tedOtherComprehensiveIncomeMember2022-06-300000789019msft:IssuanceOfLongTermDebtSevenMember2022-06-30 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\terComprehensiveIncomeMember2022-06-300000789019msft:IssuanceOfLongTermDebtSevenMember2022-06-3000007 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tprehensiveIncomeMember2022-06-300000789019msft:IssuanceOfLongTermDebtSevenMember2022-06-300000789019 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tnsiveIncomeMember2022-06-300000789019msft:IssuanceOfLongTermDebtSevenMember2022-06-300000789019msft: ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tIncomeMember2022-06-300000789019msft:IssuanceOfLongTermDebtSevenMember2022-06-300000789019msft:Micro ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\teMember2022-06-300000789019msft:IssuanceOfLongTermDebtSevenMember2022-06-300000789019msft:MicrosoftC ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\ter2022-06-300000789019msft:IssuanceOfLongTermDebtSevenMember2022-06-300000789019msft:MicrosoftCloudM ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t2-06-300000789019msft:IssuanceOfLongTermDebtSevenMember2022-06-300000789019msft:MicrosoftCloudMember ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t300000789019msft:IssuanceOfLongTermDebtSevenMember2022-06-300000789019msft:MicrosoftCloudMember2020- ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t0789019msft:IssuanceOfLongTermDebtSevenMember2022-06-300000789019msft:MicrosoftCloudMember2020-07-01 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t19msft:IssuanceOfLongTermDebtSevenMember2022-06-300000789019msft:MicrosoftCloudMember2020-07-012021- ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tt:IssuanceOfLongTermDebtSevenMember2022-06-300000789019msft:MicrosoftCloudMember2020-07-012021-06-30 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tuanceOfLongTermDebtSevenMember2022-06-300000789019msft:MicrosoftCloudMember2020-07-012021-06-3000007 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tOfLongTermDebtSevenMember2022-06-300000789019msft:MicrosoftCloudMember2020-07-012021-06-300000789019 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tgTermDebtSevenMember2022-06-300000789019msft:MicrosoftCloudMember2020-07-012021-06-300000789019us-ga ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tDebtSevenMember2022-06-300000789019msft:MicrosoftCloudMember2020-07-012021-06-300000789019us-gaap:La ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tevenMember2022-06-300000789019msft:MicrosoftCloudMember2020-07-012021-06-300000789019us-gaap:LatestT ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tember2022-06-300000789019msft:MicrosoftCloudMember2020-07-012021-06-300000789019us-gaap:LatestTaxYea ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t2022-06-300000789019msft:MicrosoftCloudMember2020-07-012021-06-300000789019us-gaap:LatestTaxYearMemb ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t06-300000789019msft:MicrosoftCloudMember2020-07-012021-06-300000789019us-gaap:LatestTaxYearMember202 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t0000789019msft:MicrosoftCloudMember2020-07-012021-06-300000789019us-gaap:LatestTaxYearMember2021-01- ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t89019msft:MicrosoftCloudMember2020-07-012021-06-300000789019us-gaap:LatestTaxYearMember2021-01-01202 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tmsft:MicrosoftCloudMember2020-07-012021-06-300000789019us-gaap:LatestTaxYearMember2021-01-012021-03- ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tMicrosoftCloudMember2020-07-012021-06-300000789019us-gaap:LatestTaxYearMember2021-01-012021-03-31000 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tsoftCloudMember2020-07-012021-06-300000789019us-gaap:LatestTaxYearMember2021-01-012021-03-3100007890 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tloudMember2020-07-012021-06-300000789019us-gaap:LatestTaxYearMember2021-01-012021-03-310000789019msf ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tember2020-07-012021-06-300000789019us-gaap:LatestTaxYearMember2021-01-012021-03-310000789019msft:Acc ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t2020-07-012021-06-300000789019us-gaap:LatestTaxYearMember2021-01-012021-03-310000789019msft:Accumula ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t07-012021-06-300000789019us-gaap:LatestTaxYearMember2021-01-012021-03-310000789019msft:AccumulatedTr ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t2021-06-300000789019us-gaap:LatestTaxYearMember2021-01-012021-03-310000789019msft:AccumulatedTransla ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t06-300000789019us-gaap:LatestTaxYearMember2021-01-012021-03-310000789019msft:AccumulatedTranslationA ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t0000789019us-gaap:LatestTaxYearMember2021-01-012021-03-310000789019msft:AccumulatedTranslationAdjust ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t89019us-gaap:LatestTaxYearMember2021-01-012021-03-310000789019msft:AccumulatedTranslationAdjustmentA ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tus-gaap:LatestTaxYearMember2021-01-012021-03-310000789019msft:AccumulatedTranslationAdjustmentAndOth ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tap:LatestTaxYearMember2021-01-012021-03-310000789019msft:AccumulatedTranslationAdjustmentAndOtherMem ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\ttestTaxYearMember2021-01-012021-03-310000789019msft:AccumulatedTranslationAdjustmentAndOtherMember20 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\taxYearMember2021-01-012021-03-310000789019msft:AccumulatedTranslationAdjustmentAndOtherMember2022-06 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\trMember2021-01-012021-03-310000789019msft:AccumulatedTranslationAdjustmentAndOtherMember2022-06-3000 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\ter2021-01-012021-03-310000789019msft:AccumulatedTranslationAdjustmentAndOtherMember2022-06-300000789 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t1-01-012021-03-310000789019msft:AccumulatedTranslationAdjustmentAndOtherMember2022-06-300000789019ms ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t012021-03-310000789019msft:AccumulatedTranslationAdjustmentAndOtherMember2022-06-300000789019msft:Se ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t1-03-310000789019msft:AccumulatedTranslationAdjustmentAndOtherMember2022-06-300000789019msft:SearchA ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t310000789019msft:AccumulatedTranslationAdjustmentAndOtherMember2022-06-300000789019msft:SearchAndNew ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t0789019msft:AccumulatedTranslationAdjustmentAndOtherMember2022-06-300000789019msft:SearchAndNewsAdve ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t19msft:AccumulatedTranslationAdjustmentAndOtherMember2022-06-300000789019msft:SearchAndNewsAdvertisi ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tt:AccumulatedTranslationAdjustmentAndOtherMember2022-06-300000789019msft:SearchAndNewsAdvertisingMem ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tumulatedTranslationAdjustmentAndOtherMember2022-06-300000789019msft:SearchAndNewsAdvertisingMember20 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\ttedTranslationAdjustmentAndOtherMember2022-06-300000789019msft:SearchAndNewsAdvertisingMember2021-07 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tanslationAdjustmentAndOtherMember2022-06-300000789019msft:SearchAndNewsAdvertisingMember2021-07-0120 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\ttionAdjustmentAndOtherMember2022-06-300000789019msft:SearchAndNewsAdvertisingMember2021-07-012022-06 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tdjustmentAndOtherMember2022-06-300000789019msft:SearchAndNewsAdvertisingMember2021-07-012022-06-3000 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tmentAndOtherMember2022-06-300000789019msft:SearchAndNewsAdvertisingMember2021-07-012022-06-300000789 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tndOtherMember2022-06-300000789019msft:SearchAndNewsAdvertisingMember2021-07-012022-06-300000789019us ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\terMember2022-06-300000789019msft:SearchAndNewsAdvertisingMember2021-07-012022-06-300000789019us-gaap ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tber2022-06-300000789019msft:SearchAndNewsAdvertisingMember2021-07-012022-06-300000789019us-gaap:Othe ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t22-06-300000789019msft:SearchAndNewsAdvertisingMember2021-07-012022-06-300000789019us-gaap:OtherNonc ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t-300000789019msft:SearchAndNewsAdvertisingMember2021-07-012022-06-300000789019us-gaap:OtherNoncurren ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t00789019msft:SearchAndNewsAdvertisingMember2021-07-012022-06-300000789019us-gaap:OtherNoncurrentAsse ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t019msft:SearchAndNewsAdvertisingMember2021-07-012022-06-300000789019us-gaap:OtherNoncurrentAssetsMem ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tft:SearchAndNewsAdvertisingMember2021-07-012022-06-300000789019us-gaap:OtherNoncurrentAssetsMember20 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tarchAndNewsAdvertisingMember2021-07-012022-06-300000789019us-gaap:OtherNoncurrentAssetsMember2022-06 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tndNewsAdvertisingMember2021-07-012022-06-300000789019us-gaap:OtherNoncurrentAssetsMember2022-06-3000 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tsAdvertisingMember2021-07-012022-06-300000789019us-gaap:OtherNoncurrentAssetsMember2022-06-300000789 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\trtisingMember2021-07-012022-06-300000789019us-gaap:OtherNoncurrentAssetsMember2022-06-300000789019us ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tngMember2021-07-012022-06-300000789019us-gaap:OtherNoncurrentAssetsMember2022-06-300000789019us-gaap ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tber2021-07-012022-06-300000789019us-gaap:OtherNoncurrentAssetsMember2022-06-300000789019us-gaap:Fore ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t21-07-012022-06-300000789019us-gaap:OtherNoncurrentAssetsMember2022-06-300000789019us-gaap:ForeignGo ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t-012022-06-300000789019us-gaap:OtherNoncurrentAssetsMember2022-06-300000789019us-gaap:ForeignGovernm ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t22-06-300000789019us-gaap:OtherNoncurrentAssetsMember2022-06-300000789019us-gaap:ForeignGovernmentDe ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t-300000789019us-gaap:OtherNoncurrentAssetsMember2022-06-300000789019us-gaap:ForeignGovernmentDebtSec ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t00789019us-gaap:OtherNoncurrentAssetsMember2022-06-300000789019us-gaap:ForeignGovernmentDebtSecuriti ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t019us-gaap:OtherNoncurrentAssetsMember2022-06-300000789019us-gaap:ForeignGovernmentDebtSecuritiesMem ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t-gaap:OtherNoncurrentAssetsMember2022-06-300000789019us-gaap:ForeignGovernmentDebtSecuritiesMember20 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t:OtherNoncurrentAssetsMember2022-06-300000789019us-gaap:ForeignGovernmentDebtSecuritiesMember2023-06 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\trNoncurrentAssetsMember2022-06-300000789019us-gaap:ForeignGovernmentDebtSecuritiesMember2023-06-3000 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\turrentAssetsMember2022-06-300000789019us-gaap:ForeignGovernmentDebtSecuritiesMember2023-06-300000789 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\ttAssetsMember2022-06-300000789019us-gaap:ForeignGovernmentDebtSecuritiesMember2023-06-300000789019us ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\ttsMember2022-06-300000789019us-gaap:ForeignGovernmentDebtSecuritiesMember2023-06-300000789019us-gaap ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tber2022-06-300000789019us-gaap:ForeignGovernmentDebtSecuritiesMember2023-06-300000789019us-gaap:Allo ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t22-06-300000789019us-gaap:ForeignGovernmentDebtSecuritiesMember2023-06-300000789019us-gaap:Allowance ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t-300000789019us-gaap:ForeignGovernmentDebtSecuritiesMember2023-06-300000789019us-gaap:AllowanceForCr ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t00789019us-gaap:ForeignGovernmentDebtSecuritiesMember2023-06-300000789019us-gaap:AllowanceForCreditL ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t019us-gaap:ForeignGovernmentDebtSecuritiesMember2023-06-300000789019us-gaap:AllowanceForCreditLossMe ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t-gaap:ForeignGovernmentDebtSecuritiesMember2023-06-300000789019us-gaap:AllowanceForCreditLossMember2 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t:ForeignGovernmentDebtSecuritiesMember2023-06-300000789019us-gaap:AllowanceForCreditLossMember2021-0 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tignGovernmentDebtSecuritiesMember2023-06-300000789019us-gaap:AllowanceForCreditLossMember2021-06-300 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tvernmentDebtSecuritiesMember2023-06-300000789019us-gaap:AllowanceForCreditLossMember2021-06-30000078 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tentDebtSecuritiesMember2023-06-300000789019us-gaap:AllowanceForCreditLossMember2021-06-300000789019s ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tbtSecuritiesMember2023-06-300000789019us-gaap:AllowanceForCreditLossMember2021-06-300000789019srt:Ma ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\turitiesMember2023-06-300000789019us-gaap:AllowanceForCreditLossMember2021-06-300000789019srt:Maximum ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tesMember2023-06-300000789019us-gaap:AllowanceForCreditLossMember2021-06-300000789019srt:MaximumMembe ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tber2023-06-300000789019us-gaap:AllowanceForCreditLossMember2021-06-300000789019srt:MaximumMember2023 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t23-06-300000789019us-gaap:AllowanceForCreditLossMember2021-06-300000789019srt:MaximumMember2023-06-3 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t-300000789019us-gaap:AllowanceForCreditLossMember2021-06-300000789019srt:MaximumMember2023-06-300000 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t00789019us-gaap:AllowanceForCreditLossMember2021-06-300000789019srt:MaximumMember2023-06-30000078901 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t019us-gaap:AllowanceForCreditLossMember2021-06-300000789019srt:MaximumMember2023-06-3000007890192021 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t-gaap:AllowanceForCreditLossMember2021-06-300000789019srt:MaximumMember2023-06-3000007890192021-07-0 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t:AllowanceForCreditLossMember2021-06-300000789019srt:MaximumMember2023-06-3000007890192021-07-012021 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\twanceForCreditLossMember2021-06-300000789019srt:MaximumMember2023-06-3000007890192021-07-012021-09-3 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tForCreditLossMember2021-06-300000789019srt:MaximumMember2023-06-3000007890192021-07-012021-09-300000 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\teditLossMember2021-06-300000789019srt:MaximumMember2023-06-3000007890192021-07-012021-09-30000078901 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tossMember2021-06-300000789019srt:MaximumMember2023-06-3000007890192021-07-012021-09-300000789019srt: ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tmber2021-06-300000789019srt:MaximumMember2023-06-3000007890192021-07-012021-09-300000789019srt:Minim ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t021-06-300000789019srt:MaximumMember2023-06-3000007890192021-07-012021-09-300000789019srt:MinimumMem ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t6-300000789019srt:MaximumMember2023-06-3000007890192021-07-012021-09-300000789019srt:MinimumMemberms ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t000789019srt:MaximumMember2023-06-3000007890192021-07-012021-09-300000789019srt:MinimumMembermsft:Is ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t9019srt:MaximumMember2023-06-3000007890192021-07-012021-09-300000789019srt:MinimumMembermsft:Issuanc ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\trt:MaximumMember2023-06-3000007890192021-07-012021-09-300000789019srt:MinimumMembermsft:IssuanceOfLo ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tximumMember2023-06-3000007890192021-07-012021-09-300000789019srt:MinimumMembermsft:IssuanceOfLongTer ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tMember2023-06-3000007890192021-07-012021-09-300000789019srt:MinimumMembermsft:IssuanceOfLongTermDebt ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tr2023-06-3000007890192021-07-012021-09-300000789019srt:MinimumMembermsft:IssuanceOfLongTermDebtSeven ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t-06-3000007890192021-07-012021-09-300000789019srt:MinimumMembermsft:IssuanceOfLongTermDebtSevenMembe ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t000007890192021-07-012021-09-300000789019srt:MinimumMembermsft:IssuanceOfLongTermDebtSevenMember2023 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t7890192021-07-012021-09-300000789019srt:MinimumMembermsft:IssuanceOfLongTermDebtSevenMember2023-06-3 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t92021-07-012021-09-300000789019srt:MinimumMembermsft:IssuanceOfLongTermDebtSevenMember2023-06-300000 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t-07-012021-09-300000789019srt:MinimumMembermsft:IssuanceOfLongTermDebtSevenMember2023-06-30000078901 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t12021-09-300000789019srt:MinimumMembermsft:IssuanceOfLongTermDebtSevenMember2023-06-300000789019us-g ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t-09-300000789019srt:MinimumMembermsft:IssuanceOfLongTermDebtSevenMember2023-06-300000789019us-gaap:E ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t00000789019srt:MinimumMembermsft:IssuanceOfLongTermDebtSevenMember2023-06-300000789019us-gaap:Employ ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t789019srt:MinimumMembermsft:IssuanceOfLongTermDebtSevenMember2023-06-300000789019us-gaap:EmployeeSto ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t9srt:MinimumMembermsft:IssuanceOfLongTermDebtSevenMember2023-06-300000789019us-gaap:EmployeeStockMem ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tMinimumMembermsft:IssuanceOfLongTermDebtSevenMember2023-06-300000789019us-gaap:EmployeeStockMember20 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tumMembermsft:IssuanceOfLongTermDebtSevenMember2023-06-300000789019us-gaap:EmployeeStockMember2021-06 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tbermsft:IssuanceOfLongTermDebtSevenMember2023-06-300000789019us-gaap:EmployeeStockMember2021-06-3000 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tft:IssuanceOfLongTermDebtSevenMember2023-06-300000789019us-gaap:EmployeeStockMember2021-06-300000789 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tsuanceOfLongTermDebtSevenMember2023-06-300000789019us-gaap:EmployeeStockMember2021-06-300000789019us ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\teOfLongTermDebtSevenMember2023-06-300000789019us-gaap:EmployeeStockMember2021-06-300000789019us-gaap ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tngTermDebtSevenMember2023-06-300000789019us-gaap:EmployeeStockMember2021-06-300000789019us-gaap:Cust ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tmDebtSevenMember2023-06-300000789019us-gaap:EmployeeStockMember2021-06-300000789019us-gaap:CustomerR ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tSevenMember2023-06-300000789019us-gaap:EmployeeStockMember2021-06-300000789019us-gaap:CustomerRelati ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tMember2023-06-300000789019us-gaap:EmployeeStockMember2021-06-300000789019us-gaap:CustomerRelationshi ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tr2023-06-300000789019us-gaap:EmployeeStockMember2021-06-300000789019us-gaap:CustomerRelationshipsMem ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t-06-300000789019us-gaap:EmployeeStockMember2021-06-300000789019us-gaap:CustomerRelationshipsMemberms ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t00000789019us-gaap:EmployeeStockMember2021-06-300000789019us-gaap:CustomerRelationshipsMembermsft:Nu ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t789019us-gaap:EmployeeStockMember2021-06-300000789019us-gaap:CustomerRelationshipsMembermsft:NuanceC ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t9us-gaap:EmployeeStockMember2021-06-300000789019us-gaap:CustomerRelationshipsMembermsft:NuanceCommun ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\taap:EmployeeStockMember2021-06-300000789019us-gaap:CustomerRelationshipsMembermsft:NuanceCommunicati ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tmployeeStockMember2021-06-300000789019us-gaap:CustomerRelationshipsMembermsft:NuanceCommunicationsIn ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\teeStockMember2021-06-300000789019us-gaap:CustomerRelationshipsMembermsft:NuanceCommunicationsIncMemb ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tckMember2021-06-300000789019us-gaap:CustomerRelationshipsMembermsft:NuanceCommunicationsIncMember202 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tber2021-06-300000789019us-gaap:CustomerRelationshipsMembermsft:NuanceCommunicationsIncMember2022-03- ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t21-06-300000789019us-gaap:CustomerRelationshipsMembermsft:NuanceCommunicationsIncMember2022-03-04000 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t-300000789019us-gaap:CustomerRelationshipsMembermsft:NuanceCommunicationsIncMember2022-03-0400007890 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t00789019us-gaap:CustomerRelationshipsMembermsft:NuanceCommunicationsIncMember2022-03-040000789019us- ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t019us-gaap:CustomerRelationshipsMembermsft:NuanceCommunicationsIncMember2022-03-040000789019us-gaap: ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t-gaap:CustomerRelationshipsMembermsft:NuanceCommunicationsIncMember2022-03-040000789019us-gaap:Accum ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t:CustomerRelationshipsMembermsft:NuanceCommunicationsIncMember2022-03-040000789019us-gaap:Accumulate ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tomerRelationshipsMembermsft:NuanceCommunicationsIncMember2022-03-040000789019us-gaap:AccumulatedOthe ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\telationshipsMembermsft:NuanceCommunicationsIncMember2022-03-040000789019us-gaap:AccumulatedOtherComp ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tonshipsMembermsft:NuanceCommunicationsIncMember2022-03-040000789019us-gaap:AccumulatedOtherComprehen ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tpsMembermsft:NuanceCommunicationsIncMember2022-03-040000789019us-gaap:AccumulatedOtherComprehensiveI ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tbermsft:NuanceCommunicationsIncMember2022-03-040000789019us-gaap:AccumulatedOtherComprehensiveIncome ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tft:NuanceCommunicationsIncMember2022-03-040000789019us-gaap:AccumulatedOtherComprehensiveIncomeMembe ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tanceCommunicationsIncMember2022-03-040000789019us-gaap:AccumulatedOtherComprehensiveIncomeMember2022 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tommunicationsIncMember2022-03-040000789019us-gaap:AccumulatedOtherComprehensiveIncomeMember2022-07-0 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\ticationsIncMember2022-03-040000789019us-gaap:AccumulatedOtherComprehensiveIncomeMember2022-07-012023 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tonsIncMember2022-03-040000789019us-gaap:AccumulatedOtherComprehensiveIncomeMember2022-07-012023-06-3 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tcMember2022-03-040000789019us-gaap:AccumulatedOtherComprehensiveIncomeMember2022-07-012023-06-300000 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\ter2022-03-040000789019us-gaap:AccumulatedOtherComprehensiveIncomeMember2022-07-012023-06-30000078901 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t2-03-040000789019us-gaap:AccumulatedOtherComprehensiveIncomeMember2022-07-012023-06-300000789019us-g ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t040000789019us-gaap:AccumulatedOtherComprehensiveIncomeMember2022-07-012023-06-300000789019us-gaap:A ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t0789019us-gaap:AccumulatedOtherComprehensiveIncomeMember2022-07-012023-06-300000789019us-gaap:Accumu ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t19us-gaap:AccumulatedOtherComprehensiveIncomeMember2022-07-012023-06-300000789019us-gaap:Accumulated ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tgaap:AccumulatedOtherComprehensiveIncomeMember2022-07-012023-06-300000789019us-gaap:AccumulatedNetUn ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tAccumulatedOtherComprehensiveIncomeMember2022-07-012023-06-300000789019us-gaap:AccumulatedNetUnreali ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tulatedOtherComprehensiveIncomeMember2022-07-012023-06-300000789019us-gaap:AccumulatedNetUnrealizedIn ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tdOtherComprehensiveIncomeMember2022-07-012023-06-300000789019us-gaap:AccumulatedNetUnrealizedInvestm ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\trComprehensiveIncomeMember2022-07-012023-06-300000789019us-gaap:AccumulatedNetUnrealizedInvestmentGa ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\trehensiveIncomeMember2022-07-012023-06-300000789019us-gaap:AccumulatedNetUnrealizedInvestmentGainLos ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tsiveIncomeMember2022-07-012023-06-300000789019us-gaap:AccumulatedNetUnrealizedInvestmentGainLossMemb ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tncomeMember2022-07-012023-06-300000789019us-gaap:AccumulatedNetUnrealizedInvestmentGainLossMember202 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tMember2022-07-012023-06-300000789019us-gaap:AccumulatedNetUnrealizedInvestmentGainLossMember2023-06- ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tr2022-07-012023-06-300000789019us-gaap:AccumulatedNetUnrealizedInvestmentGainLossMember2023-06-30000 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t-07-012023-06-300000789019us-gaap:AccumulatedNetUnrealizedInvestmentGainLossMember2023-06-3000007890 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t12023-06-300000789019us-gaap:AccumulatedNetUnrealizedInvestmentGainLossMember2023-06-300000789019us- ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t-06-300000789019us-gaap:AccumulatedNetUnrealizedInvestmentGainLossMember2023-06-300000789019us-gaap: ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t00000789019us-gaap:AccumulatedNetUnrealizedInvestmentGainLossMember2023-06-300000789019us-gaap:CashM ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t789019us-gaap:AccumulatedNetUnrealizedInvestmentGainLossMember2023-06-300000789019us-gaap:CashMember ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t9us-gaap:AccumulatedNetUnrealizedInvestmentGainLossMember2023-06-300000789019us-gaap:CashMember2022- ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\taap:AccumulatedNetUnrealizedInvestmentGainLossMember2023-06-300000789019us-gaap:CashMember2022-06-30 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tccumulatedNetUnrealizedInvestmentGainLossMember2023-06-300000789019us-gaap:CashMember2022-06-3000007 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tlatedNetUnrealizedInvestmentGainLossMember2023-06-300000789019us-gaap:CashMember2022-06-300000789019 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tNetUnrealizedInvestmentGainLossMember2023-06-300000789019us-gaap:CashMember2022-06-300000789019us-ga ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\trealizedInvestmentGainLossMember2023-06-300000789019us-gaap:CashMember2022-06-300000789019us-gaap:In ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tzedInvestmentGainLossMember2023-06-300000789019us-gaap:CashMember2022-06-300000789019us-gaap:Interna ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tvestmentGainLossMember2023-06-300000789019us-gaap:CashMember2022-06-300000789019us-gaap:InternalReve ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tentGainLossMember2023-06-300000789019us-gaap:CashMember2022-06-300000789019us-gaap:InternalRevenueSe ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tinLossMember2023-06-300000789019us-gaap:CashMember2022-06-300000789019us-gaap:InternalRevenueService ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tsMember2023-06-300000789019us-gaap:CashMember2022-06-300000789019us-gaap:InternalRevenueServiceIRSMe ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\ter2023-06-300000789019us-gaap:CashMember2022-06-300000789019us-gaap:InternalRevenueServiceIRSMember2 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t3-06-300000789019us-gaap:CashMember2022-06-300000789019us-gaap:InternalRevenueServiceIRSMember2020-1 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t300000789019us-gaap:CashMember2022-06-300000789019us-gaap:InternalRevenueServiceIRSMember2020-10-012 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t0789019us-gaap:CashMember2022-06-300000789019us-gaap:InternalRevenueServiceIRSMember2020-10-012020-1 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t19us-gaap:CashMember2022-06-300000789019us-gaap:InternalRevenueServiceIRSMember2020-10-012020-12-310 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tgaap:CashMember2022-06-300000789019us-gaap:InternalRevenueServiceIRSMember2020-10-012020-12-31000078 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tCashMember2022-06-300000789019us-gaap:InternalRevenueServiceIRSMember2020-10-012020-12-310000789019m ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tember2022-06-300000789019us-gaap:InternalRevenueServiceIRSMember2020-10-012020-12-310000789019msft:R ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t2022-06-300000789019us-gaap:InternalRevenueServiceIRSMember2020-10-012020-12-310000789019msft:Region ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t06-300000789019us-gaap:InternalRevenueServiceIRSMember2020-10-012020-12-310000789019msft:RegionalOpe ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t0000789019us-gaap:InternalRevenueServiceIRSMember2020-10-012020-12-310000789019msft:RegionalOperatin ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t89019us-gaap:InternalRevenueServiceIRSMember2020-10-012020-12-310000789019msft:RegionalOperatingCent ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tus-gaap:InternalRevenueServiceIRSMember2020-10-012020-12-310000789019msft:RegionalOperatingCentersMe ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tap:InternalRevenueServiceIRSMember2020-10-012020-12-310000789019msft:RegionalOperatingCentersMember2 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tternalRevenueServiceIRSMember2020-10-012020-12-310000789019msft:RegionalOperatingCentersMember2020-0 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tlRevenueServiceIRSMember2020-10-012020-12-310000789019msft:RegionalOperatingCentersMember2020-07-012 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tnueServiceIRSMember2020-10-012020-12-310000789019msft:RegionalOperatingCentersMember2020-07-012021-0 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\trviceIRSMember2020-10-012020-12-310000789019msft:RegionalOperatingCentersMember2020-07-012021-06-300 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tIRSMember2020-10-012020-12-310000789019msft:RegionalOperatingCentersMember2020-07-012021-06-30000078 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tmber2020-10-012020-12-310000789019msft:RegionalOperatingCentersMember2020-07-012021-06-300000789019m ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t020-10-012020-12-310000789019msft:RegionalOperatingCentersMember2020-07-012021-06-300000789019msft:M ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t0-012020-12-310000789019msft:RegionalOperatingCentersMember2020-07-012021-06-300000789019msft:MorePe ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t020-12-310000789019msft:RegionalOperatingCentersMember2020-07-012021-06-300000789019msft:MorePersona ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t2-310000789019msft:RegionalOperatingCentersMember2020-07-012021-06-300000789019msft:MorePersonalComp ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t000789019msft:RegionalOperatingCentersMember2020-07-012021-06-300000789019msft:MorePersonalComputing ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t9019msft:RegionalOperatingCentersMember2020-07-012021-06-300000789019msft:MorePersonalComputingMembe ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tsft:RegionalOperatingCentersMember2020-07-012021-06-300000789019msft:MorePersonalComputingMember2022 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tegionalOperatingCentersMember2020-07-012021-06-300000789019msft:MorePersonalComputingMember2022-06-3 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\talOperatingCentersMember2020-07-012021-06-300000789019msft:MorePersonalComputingMember2022-06-300000 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tratingCentersMember2020-07-012021-06-300000789019msft:MorePersonalComputingMember2022-06-30000078901 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tgCentersMember2020-07-012021-06-300000789019msft:MorePersonalComputingMember2022-06-3000007890192023 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tersMember2020-07-012021-06-300000789019msft:MorePersonalComputingMember2022-06-3000007890192023-05-0 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tmber2020-07-012021-06-300000789019msft:MorePersonalComputingMember2022-06-3000007890192023-05-012023 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t020-07-012021-06-300000789019msft:MorePersonalComputingMember2022-06-3000007890192023-05-012023-05-0 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t7-012021-06-300000789019msft:MorePersonalComputingMember2022-06-3000007890192023-05-012023-05-010000 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t021-06-300000789019msft:MorePersonalComputingMember2022-06-3000007890192023-05-012023-05-01000078901 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t6-300000789019msft:MorePersonalComputingMember2022-06-3000007890192023-05-012023-05-010000789019us-g ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t000789019msft:MorePersonalComputingMember2022-06-3000007890192023-05-012023-05-010000789019us-gaap:D ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t9019msft:MorePersonalComputingMember2022-06-3000007890192023-05-012023-05-010000789019us-gaap:DebtSe ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tsft:MorePersonalComputingMember2022-06-3000007890192023-05-012023-05-010000789019us-gaap:DebtSecurit ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\torePersonalComputingMember2022-06-3000007890192023-05-012023-05-010000789019us-gaap:DebtSecuritiesMe ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\trsonalComputingMember2022-06-3000007890192023-05-012023-05-010000789019us-gaap:DebtSecuritiesMemberu ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tlComputingMember2022-06-3000007890192023-05-012023-05-010000789019us-gaap:DebtSecuritiesMemberus-gaa ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tutingMember2022-06-3000007890192023-05-012023-05-010000789019us-gaap:DebtSecuritiesMemberus-gaap:Cor ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tMember2022-06-3000007890192023-05-012023-05-010000789019us-gaap:DebtSecuritiesMemberus-gaap:Corporat ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tr2022-06-3000007890192023-05-012023-05-010000789019us-gaap:DebtSecuritiesMemberus-gaap:CorporateDebt ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t-06-3000007890192023-05-012023-05-010000789019us-gaap:DebtSecuritiesMemberus-gaap:CorporateDebtSecur ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t000007890192023-05-012023-05-010000789019us-gaap:DebtSecuritiesMemberus-gaap:CorporateDebtSecurities ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t7890192023-05-012023-05-010000789019us-gaap:DebtSecuritiesMemberus-gaap:CorporateDebtSecuritiesMembe ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t92023-05-012023-05-010000789019us-gaap:DebtSecuritiesMemberus-gaap:CorporateDebtSecuritiesMemberus-g ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t-05-012023-05-010000789019us-gaap:DebtSecuritiesMemberus-gaap:CorporateDebtSecuritiesMemberus-gaap:F ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t12023-05-010000789019us-gaap:DebtSecuritiesMemberus-gaap:CorporateDebtSecuritiesMemberus-gaap:FairVa ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t-05-010000789019us-gaap:DebtSecuritiesMemberus-gaap:CorporateDebtSecuritiesMemberus-gaap:FairValueIn ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t10000789019us-gaap:DebtSecuritiesMemberus-gaap:CorporateDebtSecuritiesMemberus-gaap:FairValueInputsL ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t789019us-gaap:DebtSecuritiesMemberus-gaap:CorporateDebtSecuritiesMemberus-gaap:FairValueInputsLevel3 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t9us-gaap:DebtSecuritiesMemberus-gaap:CorporateDebtSecuritiesMemberus-gaap:FairValueInputsLevel3Membe ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\taap:DebtSecuritiesMemberus-gaap:CorporateDebtSecuritiesMemberus-gaap:FairValueInputsLevel3Member2023 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tebtSecuritiesMemberus-gaap:CorporateDebtSecuritiesMemberus-gaap:FairValueInputsLevel3Member2023-06-3 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tcuritiesMemberus-gaap:CorporateDebtSecuritiesMemberus-gaap:FairValueInputsLevel3Member2023-06-300000 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tiesMemberus-gaap:CorporateDebtSecuritiesMemberus-gaap:FairValueInputsLevel3Member2023-06-30000078901 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tmberus-gaap:CorporateDebtSecuritiesMemberus-gaap:FairValueInputsLevel3Member2023-06-300000789019us-g ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\ts-gaap:CorporateDebtSecuritiesMemberus-gaap:FairValueInputsLevel3Member2023-06-300000789019us-gaap:D ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tp:CorporateDebtSecuritiesMemberus-gaap:FairValueInputsLevel3Member2023-06-300000789019us-gaap:DebtSe ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tporateDebtSecuritiesMemberus-gaap:FairValueInputsLevel3Member2023-06-300000789019us-gaap:DebtSecurit ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\teDebtSecuritiesMemberus-gaap:FairValueInputsLevel3Member2023-06-300000789019us-gaap:DebtSecuritiesMe ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tSecuritiesMemberus-gaap:FairValueInputsLevel3Member2023-06-300000789019us-gaap:DebtSecuritiesMember2 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\titiesMemberus-gaap:FairValueInputsLevel3Member2023-06-300000789019us-gaap:DebtSecuritiesMember2022-0 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tMemberus-gaap:FairValueInputsLevel3Member2023-06-300000789019us-gaap:DebtSecuritiesMember2022-07-012 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\trus-gaap:FairValueInputsLevel3Member2023-06-300000789019us-gaap:DebtSecuritiesMember2022-07-012023-0 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\taap:FairValueInputsLevel3Member2023-06-300000789019us-gaap:DebtSecuritiesMember2022-07-012023-06-300 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tairValueInputsLevel3Member2023-06-300000789019us-gaap:DebtSecuritiesMember2022-07-012023-06-30000078 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tlueInputsLevel3Member2023-06-300000789019us-gaap:DebtSecuritiesMember2022-07-012023-06-300000789019u ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tputsLevel3Member2023-06-300000789019us-gaap:DebtSecuritiesMember2022-07-012023-06-300000789019us-gaa ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tevel3Member2023-06-300000789019us-gaap:DebtSecuritiesMember2022-07-012023-06-300000789019us-gaap:Deb ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tMember2023-06-300000789019us-gaap:DebtSecuritiesMember2022-07-012023-06-300000789019us-gaap:DebtSecu ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tr2023-06-300000789019us-gaap:DebtSecuritiesMember2022-07-012023-06-300000789019us-gaap:DebtSecuritie ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t-06-300000789019us-gaap:DebtSecuritiesMember2022-07-012023-06-300000789019us-gaap:DebtSecuritiesMemb ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t00000789019us-gaap:DebtSecuritiesMember2022-07-012023-06-300000789019us-gaap:DebtSecuritiesMember202 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t789019us-gaap:DebtSecuritiesMember2022-07-012023-06-300000789019us-gaap:DebtSecuritiesMember2022-06- ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t9us-gaap:DebtSecuritiesMember2022-07-012023-06-300000789019us-gaap:DebtSecuritiesMember2022-06-30000 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\taap:DebtSecuritiesMember2022-07-012023-06-300000789019us-gaap:DebtSecuritiesMember2022-06-3000007890 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tebtSecuritiesMember2022-07-012023-06-300000789019us-gaap:DebtSecuritiesMember2022-06-300000789019msf ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tcuritiesMember2022-07-012023-06-300000789019us-gaap:DebtSecuritiesMember2022-06-300000789019msft:Sha ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tiesMember2022-07-012023-06-300000789019us-gaap:DebtSecuritiesMember2022-06-300000789019msft:ShareRep ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tmber2022-07-012023-06-300000789019us-gaap:DebtSecuritiesMember2022-06-300000789019msft:ShareRepurcha ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t022-07-012023-06-300000789019us-gaap:DebtSecuritiesMember2022-06-300000789019msft:ShareRepurchasePro ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t7-012023-06-300000789019us-gaap:DebtSecuritiesMember2022-06-300000789019msft:ShareRepurchaseProgramT ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t023-06-300000789019us-gaap:DebtSecuritiesMember2022-06-300000789019msft:ShareRepurchaseProgramTwenty ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t6-300000789019us-gaap:DebtSecuritiesMember2022-06-300000789019msft:ShareRepurchaseProgramTwentyTwent ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t000789019us-gaap:DebtSecuritiesMember2022-06-300000789019msft:ShareRepurchaseProgramTwentyTwentyOneM ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t9019us-gaap:DebtSecuritiesMember2022-06-300000789019msft:ShareRepurchaseProgramTwentyTwentyOneMember ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\ts-gaap:DebtSecuritiesMember2022-06-300000789019msft:ShareRepurchaseProgramTwentyTwentyOneMember2023- ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tp:DebtSecuritiesMember2022-06-300000789019msft:ShareRepurchaseProgramTwentyTwentyOneMember2023-06-30 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\ttSecuritiesMember2022-06-300000789019msft:ShareRepurchaseProgramTwentyTwentyOneMember2023-06-3000007 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tritiesMember2022-06-300000789019msft:ShareRepurchaseProgramTwentyTwentyOneMember2023-06-300000789019 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tsMember2022-06-300000789019msft:ShareRepurchaseProgramTwentyTwentyOneMember2023-06-300000789019us-ga ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\ter2022-06-300000789019msft:ShareRepurchaseProgramTwentyTwentyOneMember2023-06-300000789019us-gaap:In ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t2-06-300000789019msft:ShareRepurchaseProgramTwentyTwentyOneMember2023-06-300000789019us-gaap:Interes ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t300000789019msft:ShareRepurchaseProgramTwentyTwentyOneMember2023-06-300000789019us-gaap:InterestRate ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t0789019msft:ShareRepurchaseProgramTwentyTwentyOneMember2023-06-300000789019us-gaap:InterestRateContr ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t19msft:ShareRepurchaseProgramTwentyTwentyOneMember2023-06-300000789019us-gaap:InterestRateContractMe ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tt:ShareRepurchaseProgramTwentyTwentyOneMember2023-06-300000789019us-gaap:InterestRateContractMemberu ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\treRepurchaseProgramTwentyTwentyOneMember2023-06-300000789019us-gaap:InterestRateContractMemberus-gaa ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\turchaseProgramTwentyTwentyOneMember2023-06-300000789019us-gaap:InterestRateContractMemberus-gaap:Non ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tseProgramTwentyTwentyOneMember2023-06-300000789019us-gaap:InterestRateContractMemberus-gaap:Nonopera ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tgramTwentyTwentyOneMember2023-06-300000789019us-gaap:InterestRateContractMemberus-gaap:NonoperatingI ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\twentyTwentyOneMember2023-06-300000789019us-gaap:InterestRateContractMemberus-gaap:NonoperatingIncome ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tTwentyOneMember2023-06-300000789019us-gaap:InterestRateContractMemberus-gaap:NonoperatingIncomeExpen ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tyOneMember2023-06-300000789019us-gaap:InterestRateContractMemberus-gaap:NonoperatingIncomeExpenseMem ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tember2023-06-300000789019us-gaap:InterestRateContractMemberus-gaap:NonoperatingIncomeExpenseMemberus ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t2023-06-300000789019us-gaap:InterestRateContractMemberus-gaap:NonoperatingIncomeExpenseMemberus-gaap ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t06-300000789019us-gaap:InterestRateContractMemberus-gaap:NonoperatingIncomeExpenseMemberus-gaap:Fair ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t0000789019us-gaap:InterestRateContractMemberus-gaap:NonoperatingIncomeExpenseMemberus-gaap:FairValue ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t89019us-gaap:InterestRateContractMemberus-gaap:NonoperatingIncomeExpenseMemberus-gaap:FairValueHedgi ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tus-gaap:InterestRateContractMemberus-gaap:NonoperatingIncomeExpenseMemberus-gaap:FairValueHedgingMem ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tap:InterestRateContractMemberus-gaap:NonoperatingIncomeExpenseMemberus-gaap:FairValueHedgingMember20 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tterestRateContractMemberus-gaap:NonoperatingIncomeExpenseMemberus-gaap:FairValueHedgingMember2022-07 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\ttRateContractMemberus-gaap:NonoperatingIncomeExpenseMemberus-gaap:FairValueHedgingMember2022-07-0120 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tContractMemberus-gaap:NonoperatingIncomeExpenseMemberus-gaap:FairValueHedgingMember2022-07-012023-06 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tactMemberus-gaap:NonoperatingIncomeExpenseMemberus-gaap:FairValueHedgingMember2022-07-012023-06-3000 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tmberus-gaap:NonoperatingIncomeExpenseMemberus-gaap:FairValueHedgingMember2022-07-012023-06-300000789 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\ts-gaap:NonoperatingIncomeExpenseMemberus-gaap:FairValueHedgingMember2022-07-012023-06-300000789019ms ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tp:NonoperatingIncomeExpenseMemberus-gaap:FairValueHedgingMember2022-07-012023-06-300000789019msft:Ga ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\toperatingIncomeExpenseMemberus-gaap:FairValueHedgingMember2022-07-012023-06-300000789019msft:GamingM ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\ttingIncomeExpenseMemberus-gaap:FairValueHedgingMember2022-07-012023-06-300000789019msft:GamingMember ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tncomeExpenseMemberus-gaap:FairValueHedgingMember2022-07-012023-06-300000789019msft:GamingMember2021- ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tExpenseMemberus-gaap:FairValueHedgingMember2022-07-012023-06-300000789019msft:GamingMember2021-07-01 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tseMemberus-gaap:FairValueHedgingMember2022-07-012023-06-300000789019msft:GamingMember2021-07-012022- ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tberus-gaap:FairValueHedgingMember2022-07-012023-06-300000789019msft:GamingMember2021-07-012022-06-30 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t-gaap:FairValueHedgingMember2022-07-012023-06-300000789019msft:GamingMember2021-07-012022-06-3000007 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t:FairValueHedgingMember2022-07-012023-06-300000789019msft:GamingMember2021-07-012022-06-300000789019 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tValueHedgingMember2022-07-012023-06-300000789019msft:GamingMember2021-07-012022-06-300000789019msft: ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tHedgingMember2022-07-012023-06-300000789019msft:GamingMember2021-07-012022-06-300000789019msft:ZeniM ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tngMember2022-07-012023-06-300000789019msft:GamingMember2021-07-012022-06-300000789019msft:ZeniMaxMed ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tber2022-07-012023-06-300000789019msft:GamingMember2021-07-012022-06-300000789019msft:ZeniMaxMediaInc ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t22-07-012023-06-300000789019msft:GamingMember2021-07-012022-06-300000789019msft:ZeniMaxMediaIncMembe ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t-012023-06-300000789019msft:GamingMember2021-07-012022-06-300000789019msft:ZeniMaxMediaIncMemberus-g ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t23-06-300000789019msft:GamingMember2021-07-012022-06-300000789019msft:ZeniMaxMediaIncMemberus-gaap:T ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t-300000789019msft:GamingMember2021-07-012022-06-300000789019msft:ZeniMaxMediaIncMemberus-gaap:Techno ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t00789019msft:GamingMember2021-07-012022-06-300000789019msft:ZeniMaxMediaIncMemberus-gaap:TechnologyB ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t019msft:GamingMember2021-07-012022-06-300000789019msft:ZeniMaxMediaIncMemberus-gaap:TechnologyBasedI ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tft:GamingMember2021-07-012022-06-300000789019msft:ZeniMaxMediaIncMemberus-gaap:TechnologyBasedIntang ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tmingMember2021-07-012022-06-300000789019msft:ZeniMaxMediaIncMemberus-gaap:TechnologyBasedIntangibleA ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tember2021-07-012022-06-300000789019msft:ZeniMaxMediaIncMemberus-gaap:TechnologyBasedIntangibleAssets ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t2021-07-012022-06-300000789019msft:ZeniMaxMediaIncMemberus-gaap:TechnologyBasedIntangibleAssetsMembe ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t07-012022-06-300000789019msft:ZeniMaxMediaIncMemberus-gaap:TechnologyBasedIntangibleAssetsMember2021 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t2022-06-300000789019msft:ZeniMaxMediaIncMemberus-gaap:TechnologyBasedIntangibleAssetsMember2021-03-0 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t06-300000789019msft:ZeniMaxMediaIncMemberus-gaap:TechnologyBasedIntangibleAssetsMember2021-03-090000 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t0000789019msft:ZeniMaxMediaIncMemberus-gaap:TechnologyBasedIntangibleAssetsMember2021-03-09000078901 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t89019msft:ZeniMaxMediaIncMemberus-gaap:TechnologyBasedIntangibleAssetsMember2021-03-090000789019us-g ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tmsft:ZeniMaxMediaIncMemberus-gaap:TechnologyBasedIntangibleAssetsMember2021-03-090000789019us-gaap:T ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tZeniMaxMediaIncMemberus-gaap:TechnologyBasedIntangibleAssetsMember2021-03-090000789019us-gaap:Techno ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\taxMediaIncMemberus-gaap:TechnologyBasedIntangibleAssetsMember2021-03-090000789019us-gaap:TechnologyB ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tiaIncMemberus-gaap:TechnologyBasedIntangibleAssetsMember2021-03-090000789019us-gaap:TechnologyBasedI ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tMemberus-gaap:TechnologyBasedIntangibleAssetsMember2021-03-090000789019us-gaap:TechnologyBasedIntang ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\trus-gaap:TechnologyBasedIntangibleAssetsMember2021-03-090000789019us-gaap:TechnologyBasedIntangibleA ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\taap:TechnologyBasedIntangibleAssetsMember2021-03-090000789019us-gaap:TechnologyBasedIntangibleAssets ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\technologyBasedIntangibleAssetsMember2021-03-090000789019us-gaap:TechnologyBasedIntangibleAssetsMembe ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tlogyBasedIntangibleAssetsMember2021-03-090000789019us-gaap:TechnologyBasedIntangibleAssetsMember2022 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tasedIntangibleAssetsMember2021-03-090000789019us-gaap:TechnologyBasedIntangibleAssetsMember2022-07-0 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tntangibleAssetsMember2021-03-090000789019us-gaap:TechnologyBasedIntangibleAssetsMember2022-07-012023 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tibleAssetsMember2021-03-090000789019us-gaap:TechnologyBasedIntangibleAssetsMember2022-07-012023-06-3 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tssetsMember2021-03-090000789019us-gaap:TechnologyBasedIntangibleAssetsMember2022-07-012023-06-300000 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tMember2021-03-090000789019us-gaap:TechnologyBasedIntangibleAssetsMember2022-07-012023-06-30000078901 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tr2021-03-090000789019us-gaap:TechnologyBasedIntangibleAssetsMember2022-07-012023-06-300000789019us-g ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t-03-090000789019us-gaap:TechnologyBasedIntangibleAssetsMember2022-07-012023-06-300000789019us-gaap:C ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t90000789019us-gaap:TechnologyBasedIntangibleAssetsMember2022-07-012023-06-300000789019us-gaap:CashMe ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t789019us-gaap:TechnologyBasedIntangibleAssetsMember2022-07-012023-06-300000789019us-gaap:CashMember2 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t9us-gaap:TechnologyBasedIntangibleAssetsMember2022-07-012023-06-300000789019us-gaap:CashMember2023-0 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\taap:TechnologyBasedIntangibleAssetsMember2022-07-012023-06-300000789019us-gaap:CashMember2023-06-300 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\technologyBasedIntangibleAssetsMember2022-07-012023-06-300000789019us-gaap:CashMember2023-06-30000078 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tlogyBasedIntangibleAssetsMember2022-07-012023-06-300000789019us-gaap:CashMember2023-06-300000789019u ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tasedIntangibleAssetsMember2022-07-012023-06-300000789019us-gaap:CashMember2023-06-300000789019us-gaa ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tntangibleAssetsMember2022-07-012023-06-300000789019us-gaap:CashMember2023-06-300000789019us-gaap:Acc ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tibleAssetsMember2022-07-012023-06-300000789019us-gaap:CashMember2023-06-300000789019us-gaap:Accumula ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tssetsMember2022-07-012023-06-300000789019us-gaap:CashMember2023-06-300000789019us-gaap:AccumulatedOt ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tMember2022-07-012023-06-300000789019us-gaap:CashMember2023-06-300000789019us-gaap:AccumulatedOtherCo ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tr2022-07-012023-06-300000789019us-gaap:CashMember2023-06-300000789019us-gaap:AccumulatedOtherCompreh ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t-07-012023-06-300000789019us-gaap:CashMember2023-06-300000789019us-gaap:AccumulatedOtherComprehensiv ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t12023-06-300000789019us-gaap:CashMember2023-06-300000789019us-gaap:AccumulatedOtherComprehensiveInco ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t-06-300000789019us-gaap:CashMember2023-06-300000789019us-gaap:AccumulatedOtherComprehensiveIncomeMem ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t00000789019us-gaap:CashMember2023-06-300000789019us-gaap:AccumulatedOtherComprehensiveIncomeMember20 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t789019us-gaap:CashMember2023-06-300000789019us-gaap:AccumulatedOtherComprehensiveIncomeMember2021-07 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t9us-gaap:CashMember2023-06-300000789019us-gaap:AccumulatedOtherComprehensiveIncomeMember2021-07-0120 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\taap:CashMember2023-06-300000789019us-gaap:AccumulatedOtherComprehensiveIncomeMember2021-07-012022-06 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tashMember2023-06-300000789019us-gaap:AccumulatedOtherComprehensiveIncomeMember2021-07-012022-06-3000 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tmber2023-06-300000789019us-gaap:AccumulatedOtherComprehensiveIncomeMember2021-07-012022-06-300000789 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t023-06-300000789019us-gaap:AccumulatedOtherComprehensiveIncomeMember2021-07-012022-06-300000789019us ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t6-300000789019us-gaap:AccumulatedOtherComprehensiveIncomeMember2021-07-012022-06-300000789019us-gaap ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t000789019us-gaap:AccumulatedOtherComprehensiveIncomeMember2021-07-012022-06-300000789019us-gaap:Empl ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t9019us-gaap:AccumulatedOtherComprehensiveIncomeMember2021-07-012022-06-300000789019us-gaap:EmployeeS ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\ts-gaap:AccumulatedOtherComprehensiveIncomeMember2021-07-012022-06-300000789019us-gaap:EmployeeStockM ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tp:AccumulatedOtherComprehensiveIncomeMember2021-07-012022-06-300000789019us-gaap:EmployeeStockMember ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tumulatedOtherComprehensiveIncomeMember2021-07-012022-06-300000789019us-gaap:EmployeeStockMember2023- ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\ttedOtherComprehensiveIncomeMember2021-07-012022-06-300000789019us-gaap:EmployeeStockMember2023-06-30 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\therComprehensiveIncomeMember2021-07-012022-06-300000789019us-gaap:EmployeeStockMember2023-06-3000007 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tmprehensiveIncomeMember2021-07-012022-06-300000789019us-gaap:EmployeeStockMember2023-06-300000789019 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tensiveIncomeMember2021-07-012022-06-300000789019us-gaap:EmployeeStockMember2023-06-300000789019us-ga ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\teIncomeMember2021-07-012022-06-300000789019us-gaap:EmployeeStockMember2023-06-300000789019us-gaap:Al ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tmeMember2021-07-012022-06-300000789019us-gaap:EmployeeStockMember2023-06-300000789019us-gaap:Allowan ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tber2021-07-012022-06-300000789019us-gaap:EmployeeStockMember2023-06-300000789019us-gaap:AllowanceFor ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t21-07-012022-06-300000789019us-gaap:EmployeeStockMember2023-06-300000789019us-gaap:AllowanceForCredi ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t-012022-06-300000789019us-gaap:EmployeeStockMember2023-06-300000789019us-gaap:AllowanceForCreditLoss ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t22-06-300000789019us-gaap:EmployeeStockMember2023-06-300000789019us-gaap:AllowanceForCreditLossMembe ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t-300000789019us-gaap:EmployeeStockMember2023-06-300000789019us-gaap:AllowanceForCreditLossMember2022 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t00789019us-gaap:EmployeeStockMember2023-06-300000789019us-gaap:AllowanceForCreditLossMember2022-07-0 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t019us-gaap:EmployeeStockMember2023-06-300000789019us-gaap:AllowanceForCreditLossMember2022-07-012023 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t-gaap:EmployeeStockMember2023-06-300000789019us-gaap:AllowanceForCreditLossMember2022-07-012023-06-3 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t:EmployeeStockMember2023-06-300000789019us-gaap:AllowanceForCreditLossMember2022-07-012023-06-300000 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\toyeeStockMember2023-06-300000789019us-gaap:AllowanceForCreditLossMember2022-07-012023-06-30000078901 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\ttockMember2023-06-300000789019us-gaap:AllowanceForCreditLossMember2022-07-012023-06-300000789019msft ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tember2023-06-300000789019us-gaap:AllowanceForCreditLossMember2022-07-012023-06-300000789019msft:Othe ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t2023-06-300000789019us-gaap:AllowanceForCreditLossMember2022-07-012023-06-300000789019msft:OtherCoun ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t06-300000789019us-gaap:AllowanceForCreditLossMember2022-07-012023-06-300000789019msft:OtherCountries ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t0000789019us-gaap:AllowanceForCreditLossMember2022-07-012023-06-300000789019msft:OtherCountriesMembe ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t89019us-gaap:AllowanceForCreditLossMember2022-07-012023-06-300000789019msft:OtherCountriesMember2022 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tus-gaap:AllowanceForCreditLossMember2022-07-012023-06-300000789019msft:OtherCountriesMember2022-06-3 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tap:AllowanceForCreditLossMember2022-07-012023-06-300000789019msft:OtherCountriesMember2022-06-300000 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tlowanceForCreditLossMember2022-07-012023-06-300000789019msft:OtherCountriesMember2022-06-30000078901 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tceForCreditLossMember2022-07-012023-06-300000789019msft:OtherCountriesMember2022-06-300000789019us-g ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tCreditLossMember2022-07-012023-06-300000789019msft:OtherCountriesMember2022-06-300000789019us-gaap:C ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\ttLossMember2022-07-012023-06-300000789019msft:OtherCountriesMember2022-06-300000789019us-gaap:Corpor ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tMember2022-07-012023-06-300000789019msft:OtherCountriesMember2022-06-300000789019us-gaap:CorporateDe ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tr2022-07-012023-06-300000789019msft:OtherCountriesMember2022-06-300000789019us-gaap:CorporateDebtSec ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t-07-012023-06-300000789019msft:OtherCountriesMember2022-06-300000789019us-gaap:CorporateDebtSecuriti ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t12023-06-300000789019msft:OtherCountriesMember2022-06-300000789019us-gaap:CorporateDebtSecuritiesMem ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t-06-300000789019msft:OtherCountriesMember2022-06-300000789019us-gaap:CorporateDebtSecuritiesMember20 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t00000789019msft:OtherCountriesMember2022-06-300000789019us-gaap:CorporateDebtSecuritiesMember2022-06 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t789019msft:OtherCountriesMember2022-06-300000789019us-gaap:CorporateDebtSecuritiesMember2022-06-3000 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t9msft:OtherCountriesMember2022-06-300000789019us-gaap:CorporateDebtSecuritiesMember2022-06-300000789 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t:OtherCountriesMember2022-06-300000789019us-gaap:CorporateDebtSecuritiesMember2022-06-300000789019ms ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\trCountriesMember2022-06-300000789019us-gaap:CorporateDebtSecuritiesMember2022-06-300000789019msft:Nu ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\ttriesMember2022-06-300000789019us-gaap:CorporateDebtSecuritiesMember2022-06-300000789019msft:NuanceC ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tMember2022-06-300000789019us-gaap:CorporateDebtSecuritiesMember2022-06-300000789019msft:NuanceCommun ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tr2022-06-300000789019us-gaap:CorporateDebtSecuritiesMember2022-06-300000789019msft:NuanceCommunicati ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t-06-300000789019us-gaap:CorporateDebtSecuritiesMember2022-06-300000789019msft:NuanceCommunicationsIn ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t00000789019us-gaap:CorporateDebtSecuritiesMember2022-06-300000789019msft:NuanceCommunicationsIncMemb ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t789019us-gaap:CorporateDebtSecuritiesMember2022-06-300000789019msft:NuanceCommunicationsIncMember202 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t9us-gaap:CorporateDebtSecuritiesMember2022-06-300000789019msft:NuanceCommunicationsIncMember2022-03- ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\taap:CorporateDebtSecuritiesMember2022-06-300000789019msft:NuanceCommunicationsIncMember2022-03-04202 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\torporateDebtSecuritiesMember2022-06-300000789019msft:NuanceCommunicationsIncMember2022-03-042022-03- ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tateDebtSecuritiesMember2022-06-300000789019msft:NuanceCommunicationsIncMember2022-03-042022-03-04000 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tbtSecuritiesMember2022-06-300000789019msft:NuanceCommunicationsIncMember2022-03-042022-03-0400007890 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\turitiesMember2022-06-300000789019msft:NuanceCommunicationsIncMember2022-03-042022-03-040000789019us- ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tesMember2022-06-300000789019msft:NuanceCommunicationsIncMember2022-03-042022-03-040000789019us-gaap: ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tber2022-06-300000789019msft:NuanceCommunicationsIncMember2022-03-042022-03-040000789019us-gaap:LongM ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t22-06-300000789019msft:NuanceCommunicationsIncMember2022-03-042022-03-040000789019us-gaap:LongMember ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t-300000789019msft:NuanceCommunicationsIncMember2022-03-042022-03-040000789019us-gaap:LongMemberus-ga ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t00789019msft:NuanceCommunicationsIncMember2022-03-042022-03-040000789019us-gaap:LongMemberus-gaap:No ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t019msft:NuanceCommunicationsIncMember2022-03-042022-03-040000789019us-gaap:LongMemberus-gaap:Nondesi ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tft:NuanceCommunicationsIncMember2022-03-042022-03-040000789019us-gaap:LongMemberus-gaap:Nondesignate ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tanceCommunicationsIncMember2022-03-042022-03-040000789019us-gaap:LongMemberus-gaap:NondesignatedMemb ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tommunicationsIncMember2022-03-042022-03-040000789019us-gaap:LongMemberus-gaap:NondesignatedMemberus- ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\ticationsIncMember2022-03-042022-03-040000789019us-gaap:LongMemberus-gaap:NondesignatedMemberus-gaap: ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tonsIncMember2022-03-042022-03-040000789019us-gaap:LongMemberus-gaap:NondesignatedMemberus-gaap:Forei ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tcMember2022-03-042022-03-040000789019us-gaap:LongMemberus-gaap:NondesignatedMemberus-gaap:ForeignExc ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\ter2022-03-042022-03-040000789019us-gaap:LongMemberus-gaap:NondesignatedMemberus-gaap:ForeignExchange ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t2-03-042022-03-040000789019us-gaap:LongMemberus-gaap:NondesignatedMemberus-gaap:ForeignExchangeContr ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t042022-03-040000789019us-gaap:LongMemberus-gaap:NondesignatedMemberus-gaap:ForeignExchangeContractMe ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t2-03-040000789019us-gaap:LongMemberus-gaap:NondesignatedMemberus-gaap:ForeignExchangeContractMember2 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t040000789019us-gaap:LongMemberus-gaap:NondesignatedMemberus-gaap:ForeignExchangeContractMember2022-0 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t0789019us-gaap:LongMemberus-gaap:NondesignatedMemberus-gaap:ForeignExchangeContractMember2022-06-300 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t19us-gaap:LongMemberus-gaap:NondesignatedMemberus-gaap:ForeignExchangeContractMember2022-06-30000078 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tgaap:LongMemberus-gaap:NondesignatedMemberus-gaap:ForeignExchangeContractMember2022-06-3000007890192 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tLongMemberus-gaap:NondesignatedMemberus-gaap:ForeignExchangeContractMember2022-06-3000007890192023-0 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\temberus-gaap:NondesignatedMemberus-gaap:ForeignExchangeContractMember2022-06-3000007890192023-04-012 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tus-gaap:NondesignatedMemberus-gaap:ForeignExchangeContractMember2022-06-3000007890192023-04-012023-0 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tap:NondesignatedMemberus-gaap:ForeignExchangeContractMember2022-06-3000007890192023-04-012023-06-300 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tndesignatedMemberus-gaap:ForeignExchangeContractMember2022-06-3000007890192023-04-012023-06-30000078 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tgnatedMemberus-gaap:ForeignExchangeContractMember2022-06-3000007890192023-04-012023-06-300000789019u ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tdMemberus-gaap:ForeignExchangeContractMember2022-06-3000007890192023-04-012023-06-300000789019us-gaa ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\terus-gaap:ForeignExchangeContractMember2022-06-3000007890192023-04-012023-06-300000789019us-gaap:Non ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tgaap:ForeignExchangeContractMember2022-06-3000007890192023-04-012023-06-300000789019us-gaap:NonUsMem ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tForeignExchangeContractMember2022-06-3000007890192023-04-012023-06-300000789019us-gaap:NonUsMember20 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tgnExchangeContractMember2022-06-3000007890192023-04-012023-06-300000789019us-gaap:NonUsMember2022-07 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\thangeContractMember2022-06-3000007890192023-04-012023-06-300000789019us-gaap:NonUsMember2022-07-0120 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tContractMember2022-06-3000007890192023-04-012023-06-300000789019us-gaap:NonUsMember2022-07-012023-06 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tactMember2022-06-3000007890192023-04-012023-06-300000789019us-gaap:NonUsMember2022-07-012023-06-3000 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tmber2022-06-3000007890192023-04-012023-06-300000789019us-gaap:NonUsMember2022-07-012023-06-300000789 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t022-06-3000007890192023-04-012023-06-300000789019us-gaap:NonUsMember2022-07-012023-06-300000789019ms ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t6-3000007890192023-04-012023-06-300000789019us-gaap:NonUsMember2022-07-012023-06-300000789019msft:Sh ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t0007890192023-04-012023-06-300000789019us-gaap:NonUsMember2022-07-012023-06-300000789019msft:ShareRe ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t90192023-04-012023-06-300000789019us-gaap:NonUsMember2022-07-012023-06-300000789019msft:ShareRepurch ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t023-04-012023-06-300000789019us-gaap:NonUsMember2022-07-012023-06-300000789019msft:ShareRepurchasePr ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t4-012023-06-300000789019us-gaap:NonUsMember2022-07-012023-06-300000789019msft:ShareRepurchaseProgram ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t023-06-300000789019us-gaap:NonUsMember2022-07-012023-06-300000789019msft:ShareRepurchaseProgramTwent ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t6-300000789019us-gaap:NonUsMember2022-07-012023-06-300000789019msft:ShareRepurchaseProgramTwentyNine ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t000789019us-gaap:NonUsMember2022-07-012023-06-300000789019msft:ShareRepurchaseProgramTwentyNineteenM ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t9019us-gaap:NonUsMember2022-07-012023-06-300000789019msft:ShareRepurchaseProgramTwentyNineteenMember ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\ts-gaap:NonUsMember2022-07-012023-06-300000789019msft:ShareRepurchaseProgramTwentyNineteenMember2020- ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tp:NonUsMember2022-07-012023-06-300000789019msft:ShareRepurchaseProgramTwentyNineteenMember2020-07-01 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tUsMember2022-07-012023-06-300000789019msft:ShareRepurchaseProgramTwentyNineteenMember2020-07-012020- ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tber2022-07-012023-06-300000789019msft:ShareRepurchaseProgramTwentyNineteenMember2020-07-012020-09-30 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t22-07-012023-06-300000789019msft:ShareRepurchaseProgramTwentyNineteenMember2020-07-012020-09-3000007 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t-012023-06-300000789019msft:ShareRepurchaseProgramTwentyNineteenMember2020-07-012020-09-300000789019 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t23-06-300000789019msft:ShareRepurchaseProgramTwentyNineteenMember2020-07-012020-09-300000789019msft: ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t-300000789019msft:ShareRepurchaseProgramTwentyNineteenMember2020-07-012020-09-300000789019msft:Nuanc ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t00789019msft:ShareRepurchaseProgramTwentyNineteenMember2020-07-012020-09-300000789019msft:NuanceComm ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t019msft:ShareRepurchaseProgramTwentyNineteenMember2020-07-012020-09-300000789019msft:NuanceCommunica ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tft:ShareRepurchaseProgramTwentyNineteenMember2020-07-012020-09-300000789019msft:NuanceCommunications ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tareRepurchaseProgramTwentyNineteenMember2020-07-012020-09-300000789019msft:NuanceCommunicationsIncMe ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tpurchaseProgramTwentyNineteenMember2020-07-012020-09-300000789019msft:NuanceCommunicationsIncMember2 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\taseProgramTwentyNineteenMember2020-07-012020-09-300000789019msft:NuanceCommunicationsIncMember2022-0 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\togramTwentyNineteenMember2020-07-012020-09-300000789019msft:NuanceCommunicationsIncMember2022-07-012 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tTwentyNineteenMember2020-07-012020-09-300000789019msft:NuanceCommunicationsIncMember2022-07-012023-0 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tyNineteenMember2020-07-012020-09-300000789019msft:NuanceCommunicationsIncMember2022-07-012023-06-300 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tteenMember2020-07-012020-09-300000789019msft:NuanceCommunicationsIncMember2022-07-012023-06-30000078 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tember2020-07-012020-09-300000789019msft:NuanceCommunicationsIncMember2022-07-012023-06-300000789019s ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t2020-07-012020-09-300000789019msft:NuanceCommunicationsIncMember2022-07-012023-06-300000789019srt:Mi ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t07-012020-09-300000789019msft:NuanceCommunicationsIncMember2022-07-012023-06-300000789019srt:Minimum ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t2020-09-300000789019msft:NuanceCommunicationsIncMember2022-07-012023-06-300000789019srt:MinimumMembe ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t09-300000789019msft:NuanceCommunicationsIncMember2022-07-012023-06-300000789019srt:MinimumMemberus-g ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t0000789019msft:NuanceCommunicationsIncMember2022-07-012023-06-300000789019srt:MinimumMemberus-gaap:B ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t89019msft:NuanceCommunicationsIncMember2022-07-012023-06-300000789019srt:MinimumMemberus-gaap:Buildi ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tmsft:NuanceCommunicationsIncMember2022-07-012023-06-300000789019srt:MinimumMemberus-gaap:BuildingAnd ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tNuanceCommunicationsIncMember2022-07-012023-06-300000789019srt:MinimumMemberus-gaap:BuildingAndBuild ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\teCommunicationsIncMember2022-07-012023-06-300000789019srt:MinimumMemberus-gaap:BuildingAndBuildingIm ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tunicationsIncMember2022-07-012023-06-300000789019srt:MinimumMemberus-gaap:BuildingAndBuildingImprove ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\ttionsIncMember2022-07-012023-06-300000789019srt:MinimumMemberus-gaap:BuildingAndBuildingImprovements ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tIncMember2022-07-012023-06-300000789019srt:MinimumMemberus-gaap:BuildingAndBuildingImprovementsMembe ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tmber2022-07-012023-06-300000789019srt:MinimumMemberus-gaap:BuildingAndBuildingImprovementsMember2023 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t022-07-012023-06-300000789019srt:MinimumMemberus-gaap:BuildingAndBuildingImprovementsMember2023-06-3 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t7-012023-06-300000789019srt:MinimumMemberus-gaap:BuildingAndBuildingImprovementsMember2023-06-300000 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t023-06-300000789019srt:MinimumMemberus-gaap:BuildingAndBuildingImprovementsMember2023-06-30000078901 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t6-300000789019srt:MinimumMemberus-gaap:BuildingAndBuildingImprovementsMember2023-06-300000789019us-g ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t000789019srt:MinimumMemberus-gaap:BuildingAndBuildingImprovementsMember2023-06-300000789019us-gaap:R ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t9019srt:MinimumMemberus-gaap:BuildingAndBuildingImprovementsMember2023-06-300000789019us-gaap:Retain ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\trt:MinimumMemberus-gaap:BuildingAndBuildingImprovementsMember2023-06-300000789019us-gaap:RetainedEar ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tnimumMemberus-gaap:BuildingAndBuildingImprovementsMember2023-06-300000789019us-gaap:RetainedEarnings ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tMemberus-gaap:BuildingAndBuildingImprovementsMember2023-06-300000789019us-gaap:RetainedEarningsMembe ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\trus-gaap:BuildingAndBuildingImprovementsMember2023-06-300000789019us-gaap:RetainedEarningsMembersrt: ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\taap:BuildingAndBuildingImprovementsMember2023-06-300000789019us-gaap:RetainedEarningsMembersrt:Cumul ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tuildingAndBuildingImprovementsMember2023-06-300000789019us-gaap:RetainedEarningsMembersrt:Cumulative ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tngAndBuildingImprovementsMember2023-06-300000789019us-gaap:RetainedEarningsMembersrt:CumulativeEffec ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tBuildingImprovementsMember2023-06-300000789019us-gaap:RetainedEarningsMembersrt:CumulativeEffectPeri ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tingImprovementsMember2023-06-300000789019us-gaap:RetainedEarningsMembersrt:CumulativeEffectPeriodOfA ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tprovementsMember2023-06-300000789019us-gaap:RetainedEarningsMembersrt:CumulativeEffectPeriodOfAdopti ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tmentsMember2023-06-300000789019us-gaap:RetainedEarningsMembersrt:CumulativeEffectPeriodOfAdoptionAdj ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tMember2023-06-300000789019us-gaap:RetainedEarningsMembersrt:CumulativeEffectPeriodOfAdoptionAdjustme ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tr2023-06-300000789019us-gaap:RetainedEarningsMembersrt:CumulativeEffectPeriodOfAdoptionAdjustmentMem ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t-06-300000789019us-gaap:RetainedEarningsMembersrt:CumulativeEffectPeriodOfAdoptionAdjustmentMember20 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t00000789019us-gaap:RetainedEarningsMembersrt:CumulativeEffectPeriodOfAdoptionAdjustmentMember2020-06 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t789019us-gaap:RetainedEarningsMembersrt:CumulativeEffectPeriodOfAdoptionAdjustmentMember2020-06-3000 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t9us-gaap:RetainedEarningsMembersrt:CumulativeEffectPeriodOfAdoptionAdjustmentMember2020-06-300000789 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\taap:RetainedEarningsMembersrt:CumulativeEffectPeriodOfAdoptionAdjustmentMember2020-06-300000789019us ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tetainedEarningsMembersrt:CumulativeEffectPeriodOfAdoptionAdjustmentMember2020-06-300000789019us-gaap ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tedEarningsMembersrt:CumulativeEffectPeriodOfAdoptionAdjustmentMember2020-06-300000789019us-gaap:Equi ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tningsMembersrt:CumulativeEffectPeriodOfAdoptionAdjustmentMember2020-06-300000789019us-gaap:EquitySec ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tMembersrt:CumulativeEffectPeriodOfAdoptionAdjustmentMember2020-06-300000789019us-gaap:EquitySecuriti ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\trsrt:CumulativeEffectPeriodOfAdoptionAdjustmentMember2020-06-300000789019us-gaap:EquitySecuritiesMem ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tCumulativeEffectPeriodOfAdoptionAdjustmentMember2020-06-300000789019us-gaap:EquitySecuritiesMember20 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tativeEffectPeriodOfAdoptionAdjustmentMember2020-06-300000789019us-gaap:EquitySecuritiesMember2023-06 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tEffectPeriodOfAdoptionAdjustmentMember2020-06-300000789019us-gaap:EquitySecuritiesMember2023-06-3000 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\ttPeriodOfAdoptionAdjustmentMember2020-06-300000789019us-gaap:EquitySecuritiesMember2023-06-300000789 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\todOfAdoptionAdjustmentMember2020-06-300000789019us-gaap:EquitySecuritiesMember2023-06-30000078901920 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tdoptionAdjustmentMember2020-06-300000789019us-gaap:EquitySecuritiesMember2023-06-3000007890192020-06 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tonAdjustmentMember2020-06-300000789019us-gaap:EquitySecuritiesMember2023-06-3000007890192020-06-3000 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tustmentMember2020-06-300000789019us-gaap:EquitySecuritiesMember2023-06-3000007890192020-06-300000789 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tntMember2020-06-300000789019us-gaap:EquitySecuritiesMember2023-06-3000007890192020-06-300000789019ms ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tber2020-06-300000789019us-gaap:EquitySecuritiesMember2023-06-3000007890192020-06-300000789019msft:Ac ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t20-06-300000789019us-gaap:EquitySecuritiesMember2023-06-3000007890192020-06-300000789019msft:Account ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t-300000789019us-gaap:EquitySecuritiesMember2023-06-3000007890192020-06-300000789019msft:AccountsRece ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t00789019us-gaap:EquitySecuritiesMember2023-06-3000007890192020-06-300000789019msft:AccountsReceivabl ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t019us-gaap:EquitySecuritiesMember2023-06-3000007890192020-06-300000789019msft:AccountsReceivableNetM ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t-gaap:EquitySecuritiesMember2023-06-3000007890192020-06-300000789019msft:AccountsReceivableNetMember ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t:EquitySecuritiesMember2023-06-3000007890192020-06-300000789019msft:AccountsReceivableNetMemberus-ga ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\ttySecuritiesMember2023-06-3000007890192020-06-300000789019msft:AccountsReceivableNetMemberus-gaap:Al ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\turitiesMember2023-06-3000007890192020-06-300000789019msft:AccountsReceivableNetMemberus-gaap:Allowan ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tesMember2023-06-3000007890192020-06-300000789019msft:AccountsReceivableNetMemberus-gaap:AllowanceFor ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tber2023-06-3000007890192020-06-300000789019msft:AccountsReceivableNetMemberus-gaap:AllowanceForCredi ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t23-06-3000007890192020-06-300000789019msft:AccountsReceivableNetMemberus-gaap:AllowanceForCreditLoss ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t-3000007890192020-06-300000789019msft:AccountsReceivableNetMemberus-gaap:AllowanceForCreditLossMembe ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t007890192020-06-300000789019msft:AccountsReceivableNetMemberus-gaap:AllowanceForCreditLossMember2021 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t0192020-06-300000789019msft:AccountsReceivableNetMemberus-gaap:AllowanceForCreditLossMember2021-06-3 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t20-06-300000789019msft:AccountsReceivableNetMemberus-gaap:AllowanceForCreditLossMember2021-06-300000 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t-300000789019msft:AccountsReceivableNetMemberus-gaap:AllowanceForCreditLossMember2021-06-30000078901 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t00789019msft:AccountsReceivableNetMemberus-gaap:AllowanceForCreditLossMember2021-06-300000789019us-g ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t019msft:AccountsReceivableNetMemberus-gaap:AllowanceForCreditLossMember2021-06-300000789019us-gaap:F ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tft:AccountsReceivableNetMemberus-gaap:AllowanceForCreditLossMember2021-06-300000789019us-gaap:FairVa ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tcountsReceivableNetMemberus-gaap:AllowanceForCreditLossMember2021-06-300000789019us-gaap:FairValueIn ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tsReceivableNetMemberus-gaap:AllowanceForCreditLossMember2021-06-300000789019us-gaap:FairValueInputsL ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tivableNetMemberus-gaap:AllowanceForCreditLossMember2021-06-300000789019us-gaap:FairValueInputsLevel2 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\teNetMemberus-gaap:AllowanceForCreditLossMember2021-06-300000789019us-gaap:FairValueInputsLevel2Membe ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\temberus-gaap:AllowanceForCreditLossMember2021-06-300000789019us-gaap:FairValueInputsLevel2Memberus-g ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tus-gaap:AllowanceForCreditLossMember2021-06-300000789019us-gaap:FairValueInputsLevel2Memberus-gaap:D ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tap:AllowanceForCreditLossMember2021-06-300000789019us-gaap:FairValueInputsLevel2Memberus-gaap:DebtSe ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tlowanceForCreditLossMember2021-06-300000789019us-gaap:FairValueInputsLevel2Memberus-gaap:DebtSecurit ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tceForCreditLossMember2021-06-300000789019us-gaap:FairValueInputsLevel2Memberus-gaap:DebtSecuritiesMe ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tCreditLossMember2021-06-300000789019us-gaap:FairValueInputsLevel2Memberus-gaap:DebtSecuritiesMemberu ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\ttLossMember2021-06-300000789019us-gaap:FairValueInputsLevel2Memberus-gaap:DebtSecuritiesMemberus-gaa ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tMember2021-06-300000789019us-gaap:FairValueInputsLevel2Memberus-gaap:DebtSecuritiesMemberus-gaap:Com ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tr2021-06-300000789019us-gaap:FairValueInputsLevel2Memberus-gaap:DebtSecuritiesMemberus-gaap:Commerci ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t-06-300000789019us-gaap:FairValueInputsLevel2Memberus-gaap:DebtSecuritiesMemberus-gaap:CommercialPap ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t00000789019us-gaap:FairValueInputsLevel2Memberus-gaap:DebtSecuritiesMemberus-gaap:CommercialPaperMem ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t789019us-gaap:FairValueInputsLevel2Memberus-gaap:DebtSecuritiesMemberus-gaap:CommercialPaperMember20 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t9us-gaap:FairValueInputsLevel2Memberus-gaap:DebtSecuritiesMemberus-gaap:CommercialPaperMember2023-06 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\taap:FairValueInputsLevel2Memberus-gaap:DebtSecuritiesMemberus-gaap:CommercialPaperMember2023-06-3000 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tairValueInputsLevel2Memberus-gaap:DebtSecuritiesMemberus-gaap:CommercialPaperMember2023-06-300000789 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tlueInputsLevel2Memberus-gaap:DebtSecuritiesMemberus-gaap:CommercialPaperMember2023-06-300000789019sr ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tputsLevel2Memberus-gaap:DebtSecuritiesMemberus-gaap:CommercialPaperMember2023-06-300000789019srt:Max ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tevel2Memberus-gaap:DebtSecuritiesMemberus-gaap:CommercialPaperMember2023-06-300000789019srt:MaximumM ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tMemberus-gaap:DebtSecuritiesMemberus-gaap:CommercialPaperMember2023-06-300000789019srt:MaximumMember ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\trus-gaap:DebtSecuritiesMemberus-gaap:CommercialPaperMember2023-06-300000789019srt:MaximumMembermsft: ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\taap:DebtSecuritiesMemberus-gaap:CommercialPaperMember2023-06-300000789019srt:MaximumMembermsft:Issua ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tebtSecuritiesMemberus-gaap:CommercialPaperMember2023-06-300000789019srt:MaximumMembermsft:IssuanceOf ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tcuritiesMemberus-gaap:CommercialPaperMember2023-06-300000789019srt:MaximumMembermsft:IssuanceOfLongT ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tiesMemberus-gaap:CommercialPaperMember2023-06-300000789019srt:MaximumMembermsft:IssuanceOfLongTermDe ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tmberus-gaap:CommercialPaperMember2023-06-300000789019srt:MaximumMembermsft:IssuanceOfLongTermDebtFiv ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\ts-gaap:CommercialPaperMember2023-06-300000789019srt:MaximumMembermsft:IssuanceOfLongTermDebtFiveMemb ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tp:CommercialPaperMember2023-06-300000789019srt:MaximumMembermsft:IssuanceOfLongTermDebtFiveMember202 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tmercialPaperMember2023-06-300000789019srt:MaximumMembermsft:IssuanceOfLongTermDebtFiveMember2022-07- ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\talPaperMember2023-06-300000789019srt:MaximumMembermsft:IssuanceOfLongTermDebtFiveMember2022-07-01202 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\terMember2023-06-300000789019srt:MaximumMembermsft:IssuanceOfLongTermDebtFiveMember2022-07-012023-06- ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tber2023-06-300000789019srt:MaximumMembermsft:IssuanceOfLongTermDebtFiveMember2022-07-012023-06-30000 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t23-06-300000789019srt:MaximumMembermsft:IssuanceOfLongTermDebtFiveMember2022-07-012023-06-3000007890 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t-300000789019srt:MaximumMembermsft:IssuanceOfLongTermDebtFiveMember2022-07-012023-06-300000789019msf ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t00789019srt:MaximumMembermsft:IssuanceOfLongTermDebtFiveMember2022-07-012023-06-300000789019msft:Pro ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t019srt:MaximumMembermsft:IssuanceOfLongTermDebtFiveMember2022-07-012023-06-300000789019msft:Producti ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tt:MaximumMembermsft:IssuanceOfLongTermDebtFiveMember2022-07-012023-06-300000789019msft:ProductivityA ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\timumMembermsft:IssuanceOfLongTermDebtFiveMember2022-07-012023-06-300000789019msft:ProductivityAndBus ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tembermsft:IssuanceOfLongTermDebtFiveMember2022-07-012023-06-300000789019msft:ProductivityAndBusiness ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tmsft:IssuanceOfLongTermDebtFiveMember2022-07-012023-06-300000789019msft:ProductivityAndBusinessProce ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tIssuanceOfLongTermDebtFiveMember2022-07-012023-06-300000789019msft:ProductivityAndBusinessProcessesM ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tnceOfLongTermDebtFiveMember2022-07-012023-06-300000789019msft:ProductivityAndBusinessProcessesMember ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tLongTermDebtFiveMember2022-07-012023-06-300000789019msft:ProductivityAndBusinessProcessesMember2023- ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\termDebtFiveMember2022-07-012023-06-300000789019msft:ProductivityAndBusinessProcessesMember2023-06-30 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tbtFiveMember2022-07-012023-06-300000789019msft:ProductivityAndBusinessProcessesMember2023-06-3000007 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\teMember2022-07-012023-06-300000789019msft:ProductivityAndBusinessProcessesMember2023-06-300000789019 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\ter2022-07-012023-06-300000789019msft:ProductivityAndBusinessProcessesMember2023-06-300000789019us-ga ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t2-07-012023-06-300000789019msft:ProductivityAndBusinessProcessesMember2023-06-300000789019us-gaap:De ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t012023-06-300000789019msft:ProductivityAndBusinessProcessesMember2023-06-300000789019us-gaap:DebtSec ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t3-06-300000789019msft:ProductivityAndBusinessProcessesMember2023-06-300000789019us-gaap:DebtSecuriti ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t300000789019msft:ProductivityAndBusinessProcessesMember2023-06-300000789019us-gaap:DebtSecuritiesMem ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t0789019msft:ProductivityAndBusinessProcessesMember2023-06-300000789019us-gaap:DebtSecuritiesMember20 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t19msft:ProductivityAndBusinessProcessesMember2023-06-300000789019us-gaap:DebtSecuritiesMember2022-07 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tt:ProductivityAndBusinessProcessesMember2023-06-300000789019us-gaap:DebtSecuritiesMember2022-07-0120 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tductivityAndBusinessProcessesMember2023-06-300000789019us-gaap:DebtSecuritiesMember2022-07-012023-06 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tvityAndBusinessProcessesMember2023-06-300000789019us-gaap:DebtSecuritiesMember2022-07-012023-06-3000 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tndBusinessProcessesMember2023-06-300000789019us-gaap:DebtSecuritiesMember2022-07-012023-06-300000789 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tinessProcessesMember2023-06-300000789019us-gaap:DebtSecuritiesMember2022-07-012023-06-300000789019sr ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tProcessesMember2023-06-300000789019us-gaap:DebtSecuritiesMember2022-07-012023-06-300000789019srt:Max ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tssesMember2023-06-300000789019us-gaap:DebtSecuritiesMember2022-07-012023-06-300000789019srt:MaximumM ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tember2023-06-300000789019us-gaap:DebtSecuritiesMember2022-07-012023-06-300000789019srt:MaximumMember ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t2023-06-300000789019us-gaap:DebtSecuritiesMember2022-07-012023-06-300000789019srt:MaximumMembermsft: ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t06-300000789019us-gaap:DebtSecuritiesMember2022-07-012023-06-300000789019srt:MaximumMembermsft:Issua ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t0000789019us-gaap:DebtSecuritiesMember2022-07-012023-06-300000789019srt:MaximumMembermsft:IssuanceOf ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t89019us-gaap:DebtSecuritiesMember2022-07-012023-06-300000789019srt:MaximumMembermsft:IssuanceOfLongT ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tus-gaap:DebtSecuritiesMember2022-07-012023-06-300000789019srt:MaximumMembermsft:IssuanceOfLongTermDe ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tap:DebtSecuritiesMember2022-07-012023-06-300000789019srt:MaximumMembermsft:IssuanceOfLongTermDebtTen ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tbtSecuritiesMember2022-07-012023-06-300000789019srt:MaximumMembermsft:IssuanceOfLongTermDebtTenMembe ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\turitiesMember2022-07-012023-06-300000789019srt:MaximumMembermsft:IssuanceOfLongTermDebtTenMember2023 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tesMember2022-07-012023-06-300000789019srt:MaximumMembermsft:IssuanceOfLongTermDebtTenMember2023-06-3 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tber2022-07-012023-06-300000789019srt:MaximumMembermsft:IssuanceOfLongTermDebtTenMember2023-06-300000 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t22-07-012023-06-300000789019srt:MaximumMembermsft:IssuanceOfLongTermDebtTenMember2023-06-30000078901 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t-012023-06-300000789019srt:MaximumMembermsft:IssuanceOfLongTermDebtTenMember2023-06-300000789019us-g ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t23-06-300000789019srt:MaximumMembermsft:IssuanceOfLongTermDebtTenMember2023-06-300000789019us-gaap:F ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t-300000789019srt:MaximumMembermsft:IssuanceOfLongTermDebtTenMember2023-06-300000789019us-gaap:FairVa ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t00789019srt:MaximumMembermsft:IssuanceOfLongTermDebtTenMember2023-06-300000789019us-gaap:FairValueIn ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t019srt:MaximumMembermsft:IssuanceOfLongTermDebtTenMember2023-06-300000789019us-gaap:FairValueInputsL ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tt:MaximumMembermsft:IssuanceOfLongTermDebtTenMember2023-06-300000789019us-gaap:FairValueInputsLevel2 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\timumMembermsft:IssuanceOfLongTermDebtTenMember2023-06-300000789019us-gaap:FairValueInputsLevel2Membe ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tembermsft:IssuanceOfLongTermDebtTenMember2023-06-300000789019us-gaap:FairValueInputsLevel2Memberus-g ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tmsft:IssuanceOfLongTermDebtTenMember2023-06-300000789019us-gaap:FairValueInputsLevel2Memberus-gaap:D ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tIssuanceOfLongTermDebtTenMember2023-06-300000789019us-gaap:FairValueInputsLevel2Memberus-gaap:DebtSe ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tnceOfLongTermDebtTenMember2023-06-300000789019us-gaap:FairValueInputsLevel2Memberus-gaap:DebtSecurit ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tLongTermDebtTenMember2023-06-300000789019us-gaap:FairValueInputsLevel2Memberus-gaap:DebtSecuritiesMe ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\termDebtTenMember2023-06-300000789019us-gaap:FairValueInputsLevel2Memberus-gaap:DebtSecuritiesMemberu ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tbtTenMember2023-06-300000789019us-gaap:FairValueInputsLevel2Memberus-gaap:DebtSecuritiesMemberus-gaa ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tMember2023-06-300000789019us-gaap:FairValueInputsLevel2Memberus-gaap:DebtSecuritiesMemberus-gaap:Cor ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tr2023-06-300000789019us-gaap:FairValueInputsLevel2Memberus-gaap:DebtSecuritiesMemberus-gaap:Corporat ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t-06-300000789019us-gaap:FairValueInputsLevel2Memberus-gaap:DebtSecuritiesMemberus-gaap:CorporateDebt ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t00000789019us-gaap:FairValueInputsLevel2Memberus-gaap:DebtSecuritiesMemberus-gaap:CorporateDebtSecur ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t789019us-gaap:FairValueInputsLevel2Memberus-gaap:DebtSecuritiesMemberus-gaap:CorporateDebtSecurities ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t9us-gaap:FairValueInputsLevel2Memberus-gaap:DebtSecuritiesMemberus-gaap:CorporateDebtSecuritiesMembe ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\taap:FairValueInputsLevel2Memberus-gaap:DebtSecuritiesMemberus-gaap:CorporateDebtSecuritiesMember2023 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tairValueInputsLevel2Memberus-gaap:DebtSecuritiesMemberus-gaap:CorporateDebtSecuritiesMember2023-06-3 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tlueInputsLevel2Memberus-gaap:DebtSecuritiesMemberus-gaap:CorporateDebtSecuritiesMember2023-06-300000 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tputsLevel2Memberus-gaap:DebtSecuritiesMemberus-gaap:CorporateDebtSecuritiesMember2023-06-30000078901 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tevel2Memberus-gaap:DebtSecuritiesMemberus-gaap:CorporateDebtSecuritiesMember2023-06-300000789019us-g ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tMemberus-gaap:DebtSecuritiesMemberus-gaap:CorporateDebtSecuritiesMember2023-06-300000789019us-gaap:E ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\trus-gaap:DebtSecuritiesMemberus-gaap:CorporateDebtSecuritiesMember2023-06-300000789019us-gaap:Earlie ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\taap:DebtSecuritiesMemberus-gaap:CorporateDebtSecuritiesMember2023-06-300000789019us-gaap:EarliestTax ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tebtSecuritiesMemberus-gaap:CorporateDebtSecuritiesMember2023-06-300000789019us-gaap:EarliestTaxYearM ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tcuritiesMemberus-gaap:CorporateDebtSecuritiesMember2023-06-300000789019us-gaap:EarliestTaxYearMember ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tiesMemberus-gaap:CorporateDebtSecuritiesMember2023-06-300000789019us-gaap:EarliestTaxYearMemberus-ga ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tmberus-gaap:CorporateDebtSecuritiesMember2023-06-300000789019us-gaap:EarliestTaxYearMemberus-gaap:In ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\ts-gaap:CorporateDebtSecuritiesMember2023-06-300000789019us-gaap:EarliestTaxYearMemberus-gaap:Interna ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tp:CorporateDebtSecuritiesMember2023-06-300000789019us-gaap:EarliestTaxYearMemberus-gaap:InternalReve ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tporateDebtSecuritiesMember2023-06-300000789019us-gaap:EarliestTaxYearMemberus-gaap:InternalRevenueSe ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\teDebtSecuritiesMember2023-06-300000789019us-gaap:EarliestTaxYearMemberus-gaap:InternalRevenueService ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tSecuritiesMember2023-06-300000789019us-gaap:EarliestTaxYearMemberus-gaap:InternalRevenueServiceIRSMe ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\titiesMember2023-06-300000789019us-gaap:EarliestTaxYearMemberus-gaap:InternalRevenueServiceIRSMember2 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tMember2023-06-300000789019us-gaap:EarliestTaxYearMemberus-gaap:InternalRevenueServiceIRSMember2010-0 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tr2023-06-300000789019us-gaap:EarliestTaxYearMemberus-gaap:InternalRevenueServiceIRSMember2010-07-012 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t-06-300000789019us-gaap:EarliestTaxYearMemberus-gaap:InternalRevenueServiceIRSMember2010-07-012011-0 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t00000789019us-gaap:EarliestTaxYearMemberus-gaap:InternalRevenueServiceIRSMember2010-07-012011-06-300 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t789019us-gaap:EarliestTaxYearMemberus-gaap:InternalRevenueServiceIRSMember2010-07-012011-06-30000078 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t9us-gaap:EarliestTaxYearMemberus-gaap:InternalRevenueServiceIRSMember2010-07-012011-06-300000789019m ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\taap:EarliestTaxYearMemberus-gaap:InternalRevenueServiceIRSMember2010-07-012011-06-300000789019msft:I ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tarliestTaxYearMemberus-gaap:InternalRevenueServiceIRSMember2010-07-012011-06-300000789019msft:Intell ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tstTaxYearMemberus-gaap:InternalRevenueServiceIRSMember2010-07-012011-06-300000789019msft:Intelligent ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tYearMemberus-gaap:InternalRevenueServiceIRSMember2010-07-012011-06-300000789019msft:IntelligentCloud ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\temberus-gaap:InternalRevenueServiceIRSMember2010-07-012011-06-300000789019msft:IntelligentCloudMembe ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tus-gaap:InternalRevenueServiceIRSMember2010-07-012011-06-300000789019msft:IntelligentCloudMember2021 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tap:InternalRevenueServiceIRSMember2010-07-012011-06-300000789019msft:IntelligentCloudMember2021-07-0 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tternalRevenueServiceIRSMember2010-07-012011-06-300000789019msft:IntelligentCloudMember2021-07-012022 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tlRevenueServiceIRSMember2010-07-012011-06-300000789019msft:IntelligentCloudMember2021-07-012022-06-3 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tnueServiceIRSMember2010-07-012011-06-300000789019msft:IntelligentCloudMember2021-07-012022-06-300000 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\trviceIRSMember2010-07-012011-06-300000789019msft:IntelligentCloudMember2021-07-012022-06-30000078901 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tIRSMember2010-07-012011-06-300000789019msft:IntelligentCloudMember2021-07-012022-06-300000789019us-g ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tmber2010-07-012011-06-300000789019msft:IntelligentCloudMember2021-07-012022-06-300000789019us-gaap:C ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t010-07-012011-06-300000789019msft:IntelligentCloudMember2021-07-012022-06-300000789019us-gaap:Contra ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t7-012011-06-300000789019msft:IntelligentCloudMember2021-07-012022-06-300000789019us-gaap:Contractual ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t011-06-300000789019msft:IntelligentCloudMember2021-07-012022-06-300000789019us-gaap:ContractualRight ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t6-300000789019msft:IntelligentCloudMember2021-07-012022-06-300000789019us-gaap:ContractualRightsMemb ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t000789019msft:IntelligentCloudMember2021-07-012022-06-300000789019us-gaap:ContractualRightsMember202 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t9019msft:IntelligentCloudMember2021-07-012022-06-300000789019us-gaap:ContractualRightsMember2021-07- ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tsft:IntelligentCloudMember2021-07-012022-06-300000789019us-gaap:ContractualRightsMember2021-07-01202 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tntelligentCloudMember2021-07-012022-06-300000789019us-gaap:ContractualRightsMember2021-07-012022-06- ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tigentCloudMember2021-07-012022-06-300000789019us-gaap:ContractualRightsMember2021-07-012022-06-30000 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tCloudMember2021-07-012022-06-300000789019us-gaap:ContractualRightsMember2021-07-012022-06-3000007890 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tMember2021-07-012022-06-300000789019us-gaap:ContractualRightsMember2021-07-012022-06-300000789019us- ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tr2021-07-012022-06-300000789019us-gaap:ContractualRightsMember2021-07-012022-06-300000789019us-gaap: ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t-07-012022-06-300000789019us-gaap:ContractualRightsMember2021-07-012022-06-300000789019us-gaap:Nonop ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t12022-06-300000789019us-gaap:ContractualRightsMember2021-07-012022-06-300000789019us-gaap:Nonoperati ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t-06-300000789019us-gaap:ContractualRightsMember2021-07-012022-06-300000789019us-gaap:NonoperatingInc ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t00000789019us-gaap:ContractualRightsMember2021-07-012022-06-300000789019us-gaap:NonoperatingIncomeEx ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t789019us-gaap:ContractualRightsMember2021-07-012022-06-300000789019us-gaap:NonoperatingIncomeExpense ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t9us-gaap:ContractualRightsMember2021-07-012022-06-300000789019us-gaap:NonoperatingIncomeExpenseMembe ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\taap:ContractualRightsMember2021-07-012022-06-300000789019us-gaap:NonoperatingIncomeExpenseMemberus-g ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tontractualRightsMember2021-07-012022-06-300000789019us-gaap:NonoperatingIncomeExpenseMemberus-gaap:F ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tctualRightsMember2021-07-012022-06-300000789019us-gaap:NonoperatingIncomeExpenseMemberus-gaap:Foreig ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tRightsMember2021-07-012022-06-300000789019us-gaap:NonoperatingIncomeExpenseMemberus-gaap:ForeignExch ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tsMember2021-07-012022-06-300000789019us-gaap:NonoperatingIncomeExpenseMemberus-gaap:ForeignExchangeC ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\ter2021-07-012022-06-300000789019us-gaap:NonoperatingIncomeExpenseMemberus-gaap:ForeignExchangeContra ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t1-07-012022-06-300000789019us-gaap:NonoperatingIncomeExpenseMemberus-gaap:ForeignExchangeContractMem ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t012022-06-300000789019us-gaap:NonoperatingIncomeExpenseMemberus-gaap:ForeignExchangeContractMember20 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t2-06-300000789019us-gaap:NonoperatingIncomeExpenseMemberus-gaap:ForeignExchangeContractMember2021-07 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t300000789019us-gaap:NonoperatingIncomeExpenseMemberus-gaap:ForeignExchangeContractMember2021-07-0120 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t0789019us-gaap:NonoperatingIncomeExpenseMemberus-gaap:ForeignExchangeContractMember2021-07-012022-06 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t19us-gaap:NonoperatingIncomeExpenseMemberus-gaap:ForeignExchangeContractMember2021-07-012022-06-3000 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tgaap:NonoperatingIncomeExpenseMemberus-gaap:ForeignExchangeContractMember2021-07-012022-06-300000789 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tNonoperatingIncomeExpenseMemberus-gaap:ForeignExchangeContractMember2021-07-012022-06-300000789019ms ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\teratingIncomeExpenseMemberus-gaap:ForeignExchangeContractMember2021-07-012022-06-300000789019msft:Mo ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tngIncomeExpenseMemberus-gaap:ForeignExchangeContractMember2021-07-012022-06-300000789019msft:MorePer ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tomeExpenseMemberus-gaap:ForeignExchangeContractMember2021-07-012022-06-300000789019msft:MorePersonal ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tpenseMemberus-gaap:ForeignExchangeContractMember2021-07-012022-06-300000789019msft:MorePersonalCompu ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tMemberus-gaap:ForeignExchangeContractMember2021-07-012022-06-300000789019msft:MorePersonalComputingM ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\trus-gaap:ForeignExchangeContractMember2021-07-012022-06-300000789019msft:MorePersonalComputingMember ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\taap:ForeignExchangeContractMember2021-07-012022-06-300000789019msft:MorePersonalComputingMember2023- ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\toreignExchangeContractMember2021-07-012022-06-300000789019msft:MorePersonalComputingMember2023-06-30 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tnExchangeContractMember2021-07-012022-06-300000789019msft:MorePersonalComputingMember2023-06-3000007 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tangeContractMember2021-07-012022-06-300000789019msft:MorePersonalComputingMember2023-06-300000789019 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tontractMember2021-07-012022-06-300000789019msft:MorePersonalComputingMember2023-06-300000789019us-ga ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tctMember2021-07-012022-06-300000789019msft:MorePersonalComputingMember2023-06-300000789019us-gaap:No ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tber2021-07-012022-06-300000789019msft:MorePersonalComputingMember2023-06-300000789019us-gaap:Nonoper ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t21-07-012022-06-300000789019msft:MorePersonalComputingMember2023-06-300000789019us-gaap:Nonoperating ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t-012022-06-300000789019msft:MorePersonalComputingMember2023-06-300000789019us-gaap:NonoperatingIncom ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t22-06-300000789019msft:MorePersonalComputingMember2023-06-300000789019us-gaap:NonoperatingIncomeExpe ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t-300000789019msft:MorePersonalComputingMember2023-06-300000789019us-gaap:NonoperatingIncomeExpenseMe ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t00789019msft:MorePersonalComputingMember2023-06-300000789019us-gaap:NonoperatingIncomeExpenseMemberu ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t019msft:MorePersonalComputingMember2023-06-300000789019us-gaap:NonoperatingIncomeExpenseMemberus-gaa ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tft:MorePersonalComputingMember2023-06-300000789019us-gaap:NonoperatingIncomeExpenseMemberus-gaap:Equ ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\trePersonalComputingMember2023-06-300000789019us-gaap:NonoperatingIncomeExpenseMemberus-gaap:EquityCo ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tsonalComputingMember2023-06-300000789019us-gaap:NonoperatingIncomeExpenseMemberus-gaap:EquityContrac ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tComputingMember2023-06-300000789019us-gaap:NonoperatingIncomeExpenseMemberus-gaap:EquityContractMemb ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\ttingMember2023-06-300000789019us-gaap:NonoperatingIncomeExpenseMemberus-gaap:EquityContractMember202 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tember2023-06-300000789019us-gaap:NonoperatingIncomeExpenseMemberus-gaap:EquityContractMember2021-07- ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t2023-06-300000789019us-gaap:NonoperatingIncomeExpenseMemberus-gaap:EquityContractMember2021-07-01202 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t06-300000789019us-gaap:NonoperatingIncomeExpenseMemberus-gaap:EquityContractMember2021-07-012022-06- ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t0000789019us-gaap:NonoperatingIncomeExpenseMemberus-gaap:EquityContractMember2021-07-012022-06-30000 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t89019us-gaap:NonoperatingIncomeExpenseMemberus-gaap:EquityContractMember2021-07-012022-06-3000007890 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tus-gaap:NonoperatingIncomeExpenseMemberus-gaap:EquityContractMember2021-07-012022-06-300000789019msf ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tap:NonoperatingIncomeExpenseMemberus-gaap:EquityContractMember2021-07-012022-06-300000789019msft:Ent ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tnoperatingIncomeExpenseMemberus-gaap:EquityContractMember2021-07-012022-06-300000789019msft:Enterpri ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tatingIncomeExpenseMemberus-gaap:EquityContractMember2021-07-012022-06-300000789019msft:EnterpriseSer ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tIncomeExpenseMemberus-gaap:EquityContractMember2021-07-012022-06-300000789019msft:EnterpriseServices ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\teExpenseMemberus-gaap:EquityContractMember2021-07-012022-06-300000789019msft:EnterpriseServicesMembe ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tnseMemberus-gaap:EquityContractMember2021-07-012022-06-300000789019msft:EnterpriseServicesMember2021 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tmberus-gaap:EquityContractMember2021-07-012022-06-300000789019msft:EnterpriseServicesMember2021-07-0 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\ts-gaap:EquityContractMember2021-07-012022-06-300000789019msft:EnterpriseServicesMember2021-07-012022 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tp:EquityContractMember2021-07-012022-06-300000789019msft:EnterpriseServicesMember2021-07-012022-06-3 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tityContractMember2021-07-012022-06-300000789019msft:EnterpriseServicesMember2021-07-012022-06-300000 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tntractMember2021-07-012022-06-300000789019msft:EnterpriseServicesMember2021-07-012022-06-30000078901 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\ttMember2021-07-012022-06-300000789019msft:EnterpriseServicesMember2021-07-012022-06-300000789019us-g ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\ter2021-07-012022-06-300000789019msft:EnterpriseServicesMember2021-07-012022-06-300000789019us-gaap:F ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t1-07-012022-06-300000789019msft:EnterpriseServicesMember2021-07-012022-06-300000789019us-gaap:FairVa ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t012022-06-300000789019msft:EnterpriseServicesMember2021-07-012022-06-300000789019us-gaap:FairValueIn ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t2-06-300000789019msft:EnterpriseServicesMember2021-07-012022-06-300000789019us-gaap:FairValueInputsL ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t300000789019msft:EnterpriseServicesMember2021-07-012022-06-300000789019us-gaap:FairValueInputsLevel2 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t0789019msft:EnterpriseServicesMember2021-07-012022-06-300000789019us-gaap:FairValueInputsLevel2Membe ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t19msft:EnterpriseServicesMember2021-07-012022-06-300000789019us-gaap:FairValueInputsLevel2Memberus-g ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tt:EnterpriseServicesMember2021-07-012022-06-300000789019us-gaap:FairValueInputsLevel2Memberus-gaap:D ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\terpriseServicesMember2021-07-012022-06-300000789019us-gaap:FairValueInputsLevel2Memberus-gaap:DebtSe ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tseServicesMember2021-07-012022-06-300000789019us-gaap:FairValueInputsLevel2Memberus-gaap:DebtSecurit ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tvicesMember2021-07-012022-06-300000789019us-gaap:FairValueInputsLevel2Memberus-gaap:DebtSecuritiesMe ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tMember2021-07-012022-06-300000789019us-gaap:FairValueInputsLevel2Memberus-gaap:DebtSecuritiesMemberu ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tr2021-07-012022-06-300000789019us-gaap:FairValueInputsLevel2Memberus-gaap:DebtSecuritiesMemberus-gaa ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t-07-012022-06-300000789019us-gaap:FairValueInputsLevel2Memberus-gaap:DebtSecuritiesMemberus-gaap:Cor ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t12022-06-300000789019us-gaap:FairValueInputsLevel2Memberus-gaap:DebtSecuritiesMemberus-gaap:Corporat ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t-06-300000789019us-gaap:FairValueInputsLevel2Memberus-gaap:DebtSecuritiesMemberus-gaap:CorporateDebt ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t00000789019us-gaap:FairValueInputsLevel2Memberus-gaap:DebtSecuritiesMemberus-gaap:CorporateDebtSecur ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t789019us-gaap:FairValueInputsLevel2Memberus-gaap:DebtSecuritiesMemberus-gaap:CorporateDebtSecurities ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t9us-gaap:FairValueInputsLevel2Memberus-gaap:DebtSecuritiesMemberus-gaap:CorporateDebtSecuritiesMembe ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\taap:FairValueInputsLevel2Memberus-gaap:DebtSecuritiesMemberus-gaap:CorporateDebtSecuritiesMember2022 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tairValueInputsLevel2Memberus-gaap:DebtSecuritiesMemberus-gaap:CorporateDebtSecuritiesMember2022-06-3 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tlueInputsLevel2Memberus-gaap:DebtSecuritiesMemberus-gaap:CorporateDebtSecuritiesMember2022-06-300000 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tputsLevel2Memberus-gaap:DebtSecuritiesMemberus-gaap:CorporateDebtSecuritiesMember2022-06-30000078901 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tevel2Memberus-gaap:DebtSecuritiesMemberus-gaap:CorporateDebtSecuritiesMember2022-06-300000789019us-g ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tMemberus-gaap:DebtSecuritiesMemberus-gaap:CorporateDebtSecuritiesMember2022-06-300000789019us-gaap:R ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\trus-gaap:DebtSecuritiesMemberus-gaap:CorporateDebtSecuritiesMember2022-06-300000789019us-gaap:Restri ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\taap:DebtSecuritiesMemberus-gaap:CorporateDebtSecuritiesMember2022-06-300000789019us-gaap:RestrictedS ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tebtSecuritiesMemberus-gaap:CorporateDebtSecuritiesMember2022-06-300000789019us-gaap:RestrictedStockM ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tcuritiesMemberus-gaap:CorporateDebtSecuritiesMember2022-06-300000789019us-gaap:RestrictedStockMember ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tiesMemberus-gaap:CorporateDebtSecuritiesMember2022-06-300000789019us-gaap:RestrictedStockMember2022- ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tmberus-gaap:CorporateDebtSecuritiesMember2022-06-300000789019us-gaap:RestrictedStockMember2022-06-30 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\ts-gaap:CorporateDebtSecuritiesMember2022-06-300000789019us-gaap:RestrictedStockMember2022-06-3000007 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tp:CorporateDebtSecuritiesMember2022-06-300000789019us-gaap:RestrictedStockMember2022-06-300000789019 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tporateDebtSecuritiesMember2022-06-300000789019us-gaap:RestrictedStockMember2022-06-300000789019srt:M ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\teDebtSecuritiesMember2022-06-300000789019us-gaap:RestrictedStockMember2022-06-300000789019srt:Maximu ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tSecuritiesMember2022-06-300000789019us-gaap:RestrictedStockMember2022-06-300000789019srt:MaximumMemb ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\titiesMember2022-06-300000789019us-gaap:RestrictedStockMember2022-06-300000789019srt:MaximumMembermsf ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tMember2022-06-300000789019us-gaap:RestrictedStockMember2022-06-300000789019srt:MaximumMembermsft:Iss ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tr2022-06-300000789019us-gaap:RestrictedStockMember2022-06-300000789019srt:MaximumMembermsft:Issuance ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t-06-300000789019us-gaap:RestrictedStockMember2022-06-300000789019srt:MaximumMembermsft:IssuanceOfLon ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t00000789019us-gaap:RestrictedStockMember2022-06-300000789019srt:MaximumMembermsft:IssuanceOfLongTerm ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t789019us-gaap:RestrictedStockMember2022-06-300000789019srt:MaximumMembermsft:IssuanceOfLongTermDebtS ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t9us-gaap:RestrictedStockMember2022-06-300000789019srt:MaximumMembermsft:IssuanceOfLongTermDebtSixMem ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\taap:RestrictedStockMember2022-06-300000789019srt:MaximumMembermsft:IssuanceOfLongTermDebtSixMember20 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\testrictedStockMember2022-06-300000789019srt:MaximumMembermsft:IssuanceOfLongTermDebtSixMember2023-06 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tctedStockMember2022-06-300000789019srt:MaximumMembermsft:IssuanceOfLongTermDebtSixMember2023-06-3000 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\ttockMember2022-06-300000789019srt:MaximumMembermsft:IssuanceOfLongTermDebtSixMember2023-06-300000789 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tember2022-06-300000789019srt:MaximumMembermsft:IssuanceOfLongTermDebtSixMember2023-06-300000789019us ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t2022-06-300000789019srt:MaximumMembermsft:IssuanceOfLongTermDebtSixMember2023-06-300000789019us-gaap ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t06-300000789019srt:MaximumMembermsft:IssuanceOfLongTermDebtSixMember2023-06-300000789019us-gaap:Late ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t0000789019srt:MaximumMembermsft:IssuanceOfLongTermDebtSixMember2023-06-300000789019us-gaap:LatestTax ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t89019srt:MaximumMembermsft:IssuanceOfLongTermDebtSixMember2023-06-300000789019us-gaap:LatestTaxYearM ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tsrt:MaximumMembermsft:IssuanceOfLongTermDebtSixMember2023-06-300000789019us-gaap:LatestTaxYearMember ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\taximumMembermsft:IssuanceOfLongTermDebtSixMember2023-06-300000789019us-gaap:LatestTaxYearMemberus-ga ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tmMembermsft:IssuanceOfLongTermDebtSixMember2023-06-300000789019us-gaap:LatestTaxYearMemberus-gaap:In ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\termsft:IssuanceOfLongTermDebtSixMember2023-06-300000789019us-gaap:LatestTaxYearMemberus-gaap:Interna ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tt:IssuanceOfLongTermDebtSixMember2023-06-300000789019us-gaap:LatestTaxYearMemberus-gaap:InternalReve ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tuanceOfLongTermDebtSixMember2023-06-300000789019us-gaap:LatestTaxYearMemberus-gaap:InternalRevenueSe ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tOfLongTermDebtSixMember2023-06-300000789019us-gaap:LatestTaxYearMemberus-gaap:InternalRevenueService ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tgTermDebtSixMember2023-06-300000789019us-gaap:LatestTaxYearMemberus-gaap:InternalRevenueServiceIRSMe ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tDebtSixMember2023-06-300000789019us-gaap:LatestTaxYearMemberus-gaap:InternalRevenueServiceIRSMember2 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tixMember2023-06-300000789019us-gaap:LatestTaxYearMemberus-gaap:InternalRevenueServiceIRSMember2017-0 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tber2023-06-300000789019us-gaap:LatestTaxYearMemberus-gaap:InternalRevenueServiceIRSMember2017-07-012 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t23-06-300000789019us-gaap:LatestTaxYearMemberus-gaap:InternalRevenueServiceIRSMember2017-07-012018-0 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t-300000789019us-gaap:LatestTaxYearMemberus-gaap:InternalRevenueServiceIRSMember2017-07-012018-06-300 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t00789019us-gaap:LatestTaxYearMemberus-gaap:InternalRevenueServiceIRSMember2017-07-012018-06-30000078 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t019us-gaap:LatestTaxYearMemberus-gaap:InternalRevenueServiceIRSMember2017-07-012018-06-300000789019u ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t-gaap:LatestTaxYearMemberus-gaap:InternalRevenueServiceIRSMember2017-07-012018-06-300000789019us-gaa ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t:LatestTaxYearMemberus-gaap:InternalRevenueServiceIRSMember2017-07-012018-06-300000789019us-gaap:Acc ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tstTaxYearMemberus-gaap:InternalRevenueServiceIRSMember2017-07-012018-06-300000789019us-gaap:Accumula ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tYearMemberus-gaap:InternalRevenueServiceIRSMember2017-07-012018-06-300000789019us-gaap:AccumulatedOt ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\temberus-gaap:InternalRevenueServiceIRSMember2017-07-012018-06-300000789019us-gaap:AccumulatedOtherCo ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tus-gaap:InternalRevenueServiceIRSMember2017-07-012018-06-300000789019us-gaap:AccumulatedOtherCompreh ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tap:InternalRevenueServiceIRSMember2017-07-012018-06-300000789019us-gaap:AccumulatedOtherComprehensiv ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tternalRevenueServiceIRSMember2017-07-012018-06-300000789019us-gaap:AccumulatedOtherComprehensiveInco ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tlRevenueServiceIRSMember2017-07-012018-06-300000789019us-gaap:AccumulatedOtherComprehensiveIncomeMem ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tnueServiceIRSMember2017-07-012018-06-300000789019us-gaap:AccumulatedOtherComprehensiveIncomeMembersr ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\trviceIRSMember2017-07-012018-06-300000789019us-gaap:AccumulatedOtherComprehensiveIncomeMembersrt:Cum ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tIRSMember2017-07-012018-06-300000789019us-gaap:AccumulatedOtherComprehensiveIncomeMembersrt:Cumulati ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tmber2017-07-012018-06-300000789019us-gaap:AccumulatedOtherComprehensiveIncomeMembersrt:CumulativeEff ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t017-07-012018-06-300000789019us-gaap:AccumulatedOtherComprehensiveIncomeMembersrt:CumulativeEffectPe ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t7-012018-06-300000789019us-gaap:AccumulatedOtherComprehensiveIncomeMembersrt:CumulativeEffectPeriodO ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t018-06-300000789019us-gaap:AccumulatedOtherComprehensiveIncomeMembersrt:CumulativeEffectPeriodOfAdop ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t6-300000789019us-gaap:AccumulatedOtherComprehensiveIncomeMembersrt:CumulativeEffectPeriodOfAdoptionA ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t000789019us-gaap:AccumulatedOtherComprehensiveIncomeMembersrt:CumulativeEffectPeriodOfAdoptionAdjust ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t9019us-gaap:AccumulatedOtherComprehensiveIncomeMembersrt:CumulativeEffectPeriodOfAdoptionAdjustmentM ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\ts-gaap:AccumulatedOtherComprehensiveIncomeMembersrt:CumulativeEffectPeriodOfAdoptionAdjustmentMember ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tp:AccumulatedOtherComprehensiveIncomeMembersrt:CumulativeEffectPeriodOfAdoptionAdjustmentMember2022- ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tumulatedOtherComprehensiveIncomeMembersrt:CumulativeEffectPeriodOfAdoptionAdjustmentMember2022-06-30 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\ttedOtherComprehensiveIncomeMembersrt:CumulativeEffectPeriodOfAdoptionAdjustmentMember2022-06-3000007 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\therComprehensiveIncomeMembersrt:CumulativeEffectPeriodOfAdoptionAdjustmentMember2022-06-300000789019 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tmprehensiveIncomeMembersrt:CumulativeEffectPeriodOfAdoptionAdjustmentMember2022-06-300000789019msft: ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tensiveIncomeMembersrt:CumulativeEffectPeriodOfAdoptionAdjustmentMember2022-06-300000789019msft:Devic ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\teIncomeMembersrt:CumulativeEffectPeriodOfAdoptionAdjustmentMember2022-06-300000789019msft:DevicesMem ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tmeMembersrt:CumulativeEffectPeriodOfAdoptionAdjustmentMember2022-06-300000789019msft:DevicesMember20 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tbersrt:CumulativeEffectPeriodOfAdoptionAdjustmentMember2022-06-300000789019msft:DevicesMember2020-07 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tt:CumulativeEffectPeriodOfAdoptionAdjustmentMember2022-06-300000789019msft:DevicesMember2020-07-0120 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tulativeEffectPeriodOfAdoptionAdjustmentMember2022-06-300000789019msft:DevicesMember2020-07-012021-06 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tveEffectPeriodOfAdoptionAdjustmentMember2022-06-300000789019msft:DevicesMember2020-07-012021-06-3000 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tectPeriodOfAdoptionAdjustmentMember2022-06-300000789019msft:DevicesMember2020-07-012021-06-300000789 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\triodOfAdoptionAdjustmentMember2022-06-300000789019msft:DevicesMember2020-07-012021-06-30000078901920 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tfAdoptionAdjustmentMember2022-06-300000789019msft:DevicesMember2020-07-012021-06-3000007890192022-05 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\ttionAdjustmentMember2022-06-300000789019msft:DevicesMember2020-07-012021-06-3000007890192022-05-0120 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tdjustmentMember2022-06-300000789019msft:DevicesMember2020-07-012021-06-3000007890192022-05-012022-05 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tmentMember2022-06-300000789019msft:DevicesMember2020-07-012021-06-3000007890192022-05-012022-05-0100 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tember2022-06-300000789019msft:DevicesMember2020-07-012021-06-3000007890192022-05-012022-05-010000789 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t2022-06-300000789019msft:DevicesMember2020-07-012021-06-3000007890192022-05-012022-05-010000789019ms ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t06-300000789019msft:DevicesMember2020-07-012021-06-3000007890192022-05-012022-05-010000789019msft:Pr ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t0000789019msft:DevicesMember2020-07-012021-06-3000007890192022-05-012022-05-010000789019msft:Product ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t89019msft:DevicesMember2020-07-012021-06-3000007890192022-05-012022-05-010000789019msft:Productivity ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tmsft:DevicesMember2020-07-012021-06-3000007890192022-05-012022-05-010000789019msft:ProductivityAndBu ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tDevicesMember2020-07-012021-06-3000007890192022-05-012022-05-010000789019msft:ProductivityAndBusines ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tesMember2020-07-012021-06-3000007890192022-05-012022-05-010000789019msft:ProductivityAndBusinessProc ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tber2020-07-012021-06-3000007890192022-05-012022-05-010000789019msft:ProductivityAndBusinessProcesses ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t20-07-012021-06-3000007890192022-05-012022-05-010000789019msft:ProductivityAndBusinessProcessesMembe ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t-012021-06-3000007890192022-05-012022-05-010000789019msft:ProductivityAndBusinessProcessesMember2022 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t21-06-3000007890192022-05-012022-05-010000789019msft:ProductivityAndBusinessProcessesMember2022-06-3 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t-3000007890192022-05-012022-05-010000789019msft:ProductivityAndBusinessProcessesMember2022-06-300000 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t007890192022-05-012022-05-010000789019msft:ProductivityAndBusinessProcessesMember2022-06-30000078901 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t0192022-05-012022-05-010000789019msft:ProductivityAndBusinessProcessesMember2022-06-300000789019us-g ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t22-05-012022-05-010000789019msft:ProductivityAndBusinessProcessesMember2022-06-300000789019us-gaap:N ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t-012022-05-010000789019msft:ProductivityAndBusinessProcessesMember2022-06-300000789019us-gaap:NonUsM ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t22-05-010000789019msft:ProductivityAndBusinessProcessesMember2022-06-300000789019us-gaap:NonUsMember ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t-010000789019msft:ProductivityAndBusinessProcessesMember2022-06-300000789019us-gaap:NonUsMember2021- ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t00789019msft:ProductivityAndBusinessProcessesMember2022-06-300000789019us-gaap:NonUsMember2021-07-01 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t019msft:ProductivityAndBusinessProcessesMember2022-06-300000789019us-gaap:NonUsMember2021-07-012022- ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tft:ProductivityAndBusinessProcessesMember2022-06-300000789019us-gaap:NonUsMember2021-07-012022-06-30 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\toductivityAndBusinessProcessesMember2022-06-300000789019us-gaap:NonUsMember2021-07-012022-06-3000007 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tivityAndBusinessProcessesMember2022-06-300000789019us-gaap:NonUsMember2021-07-012022-06-300000789019 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tAndBusinessProcessesMember2022-06-300000789019us-gaap:NonUsMember2021-07-012022-06-300000789019us-ga ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tsinessProcessesMember2022-06-300000789019us-gaap:NonUsMember2021-07-012022-06-300000789019us-gaap:Co ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tsProcessesMember2022-06-300000789019us-gaap:NonUsMember2021-07-012022-06-300000789019us-gaap:CommonS ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tessesMember2022-06-300000789019us-gaap:NonUsMember2021-07-012022-06-300000789019us-gaap:CommonStockI ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tMember2022-06-300000789019us-gaap:NonUsMember2021-07-012022-06-300000789019us-gaap:CommonStockInclud ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tr2022-06-300000789019us-gaap:NonUsMember2021-07-012022-06-300000789019us-gaap:CommonStockIncludingAd ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t-06-300000789019us-gaap:NonUsMember2021-07-012022-06-300000789019us-gaap:CommonStockIncludingAdditio ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t00000789019us-gaap:NonUsMember2021-07-012022-06-300000789019us-gaap:CommonStockIncludingAdditionalPa ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t789019us-gaap:NonUsMember2021-07-012022-06-300000789019us-gaap:CommonStockIncludingAdditionalPaidInC ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t9us-gaap:NonUsMember2021-07-012022-06-300000789019us-gaap:CommonStockIncludingAdditionalPaidInCapita ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\taap:NonUsMember2021-07-012022-06-300000789019us-gaap:CommonStockIncludingAdditionalPaidInCapitalMemb ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tonUsMember2021-07-012022-06-300000789019us-gaap:CommonStockIncludingAdditionalPaidInCapitalMember202 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tember2021-07-012022-06-300000789019us-gaap:CommonStockIncludingAdditionalPaidInCapitalMember2021-07- ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t2021-07-012022-06-300000789019us-gaap:CommonStockIncludingAdditionalPaidInCapitalMember2021-07-01202 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t07-012022-06-300000789019us-gaap:CommonStockIncludingAdditionalPaidInCapitalMember2021-07-012022-06- ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t2022-06-300000789019us-gaap:CommonStockIncludingAdditionalPaidInCapitalMember2021-07-012022-06-30000 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t06-300000789019us-gaap:CommonStockIncludingAdditionalPaidInCapitalMember2021-07-012022-06-3000007890 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t0000789019us-gaap:CommonStockIncludingAdditionalPaidInCapitalMember2021-07-012022-06-300000789019msf ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t89019us-gaap:CommonStockIncludingAdditionalPaidInCapitalMember2021-07-012022-06-300000789019msft:Gam ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tus-gaap:CommonStockIncludingAdditionalPaidInCapitalMember2021-07-012022-06-300000789019msft:GamingMe ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tap:CommonStockIncludingAdditionalPaidInCapitalMember2021-07-012022-06-300000789019msft:GamingMember2 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tmmonStockIncludingAdditionalPaidInCapitalMember2021-07-012022-06-300000789019msft:GamingMember2022-0 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\ttockIncludingAdditionalPaidInCapitalMember2021-07-012022-06-300000789019msft:GamingMember2022-07-012 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tncludingAdditionalPaidInCapitalMember2021-07-012022-06-300000789019msft:GamingMember2022-07-012023-0 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tingAdditionalPaidInCapitalMember2021-07-012022-06-300000789019msft:GamingMember2022-07-012023-06-300 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tditionalPaidInCapitalMember2021-07-012022-06-300000789019msft:GamingMember2022-07-012023-06-30000078 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tnalPaidInCapitalMember2021-07-012022-06-300000789019msft:GamingMember2022-07-012023-06-300000789019u ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tidInCapitalMember2021-07-012022-06-300000789019msft:GamingMember2022-07-012023-06-300000789019us-gaa ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tapitalMember2021-07-012022-06-300000789019msft:GamingMember2022-07-012023-06-300000789019us-gaap:Cas ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tlMember2021-07-012022-06-300000789019msft:GamingMember2022-07-012023-06-300000789019us-gaap:CashFlow ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\ter2021-07-012022-06-300000789019msft:GamingMember2022-07-012023-06-300000789019us-gaap:CashFlowHedgi ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t1-07-012022-06-300000789019msft:GamingMember2022-07-012023-06-300000789019us-gaap:CashFlowHedgingMem ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t012022-06-300000789019msft:GamingMember2022-07-012023-06-300000789019us-gaap:CashFlowHedgingMemberus ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t2-06-300000789019msft:GamingMember2022-07-012023-06-300000789019us-gaap:CashFlowHedgingMemberus-gaap ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t300000789019msft:GamingMember2022-07-012023-06-300000789019us-gaap:CashFlowHedgingMemberus-gaap:Nono ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t0789019msft:GamingMember2022-07-012023-06-300000789019us-gaap:CashFlowHedgingMemberus-gaap:Nonoperat ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t19msft:GamingMember2022-07-012023-06-300000789019us-gaap:CashFlowHedgingMemberus-gaap:NonoperatingIn ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tt:GamingMember2022-07-012023-06-300000789019us-gaap:CashFlowHedgingMemberus-gaap:NonoperatingIncomeE ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tingMember2022-07-012023-06-300000789019us-gaap:CashFlowHedgingMemberus-gaap:NonoperatingIncomeExpens ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tmber2022-07-012023-06-300000789019us-gaap:CashFlowHedgingMemberus-gaap:NonoperatingIncomeExpenseMemb ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t022-07-012023-06-300000789019us-gaap:CashFlowHedgingMemberus-gaap:NonoperatingIncomeExpenseMemberus- ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t7-012023-06-300000789019us-gaap:CashFlowHedgingMemberus-gaap:NonoperatingIncomeExpenseMemberus-gaap: ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t023-06-300000789019us-gaap:CashFlowHedgingMemberus-gaap:NonoperatingIncomeExpenseMemberus-gaap:Forei ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t6-300000789019us-gaap:CashFlowHedgingMemberus-gaap:NonoperatingIncomeExpenseMemberus-gaap:ForeignExc ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t000789019us-gaap:CashFlowHedgingMemberus-gaap:NonoperatingIncomeExpenseMemberus-gaap:ForeignExchange ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t9019us-gaap:CashFlowHedgingMemberus-gaap:NonoperatingIncomeExpenseMemberus-gaap:ForeignExchangeContr ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\ts-gaap:CashFlowHedgingMemberus-gaap:NonoperatingIncomeExpenseMemberus-gaap:ForeignExchangeContractMe ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tp:CashFlowHedgingMemberus-gaap:NonoperatingIncomeExpenseMemberus-gaap:ForeignExchangeContractMember2 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\thFlowHedgingMemberus-gaap:NonoperatingIncomeExpenseMemberus-gaap:ForeignExchangeContractMember2021-0 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tHedgingMemberus-gaap:NonoperatingIncomeExpenseMemberus-gaap:ForeignExchangeContractMember2021-07-012 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tngMemberus-gaap:NonoperatingIncomeExpenseMemberus-gaap:ForeignExchangeContractMember2021-07-012022-0 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tberus-gaap:NonoperatingIncomeExpenseMemberus-gaap:ForeignExchangeContractMember2021-07-012022-06-300 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t-gaap:NonoperatingIncomeExpenseMemberus-gaap:ForeignExchangeContractMember2021-07-012022-06-30000078 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t:NonoperatingIncomeExpenseMemberus-gaap:ForeignExchangeContractMember2021-07-012022-06-300000789019u ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tperatingIncomeExpenseMemberus-gaap:ForeignExchangeContractMember2021-07-012022-06-300000789019us-gaa ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tingIncomeExpenseMemberus-gaap:ForeignExchangeContractMember2021-07-012022-06-300000789019us-gaap:Per ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tcomeExpenseMemberus-gaap:ForeignExchangeContractMember2021-07-012022-06-300000789019us-gaap:Performa ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\txpenseMemberus-gaap:ForeignExchangeContractMember2021-07-012022-06-300000789019us-gaap:PerformanceSh ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\teMemberus-gaap:ForeignExchangeContractMember2021-07-012022-06-300000789019us-gaap:PerformanceSharesM ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\terus-gaap:ForeignExchangeContractMember2021-07-012022-06-300000789019us-gaap:PerformanceSharesMember ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tgaap:ForeignExchangeContractMember2021-07-012022-06-300000789019us-gaap:PerformanceSharesMember2021- ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tForeignExchangeContractMember2021-07-012022-06-300000789019us-gaap:PerformanceSharesMember2021-07-01 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tgnExchangeContractMember2021-07-012022-06-300000789019us-gaap:PerformanceSharesMember2021-07-012022- ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\thangeContractMember2021-07-012022-06-300000789019us-gaap:PerformanceSharesMember2021-07-012022-06-30 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tContractMember2021-07-012022-06-300000789019us-gaap:PerformanceSharesMember2021-07-012022-06-3000007 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tactMember2021-07-012022-06-300000789019us-gaap:PerformanceSharesMember2021-07-012022-06-300000789019 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tmber2021-07-012022-06-300000789019us-gaap:PerformanceSharesMember2021-07-012022-06-300000789019us-ga ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t021-07-012022-06-300000789019us-gaap:PerformanceSharesMember2021-07-012022-06-300000789019us-gaap:De ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t7-012022-06-300000789019us-gaap:PerformanceSharesMember2021-07-012022-06-300000789019us-gaap:DebtSec ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t022-06-300000789019us-gaap:PerformanceSharesMember2021-07-012022-06-300000789019us-gaap:DebtSecuriti ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t6-300000789019us-gaap:PerformanceSharesMember2021-07-012022-06-300000789019us-gaap:DebtSecuritiesMem ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t000789019us-gaap:PerformanceSharesMember2021-07-012022-06-300000789019us-gaap:DebtSecuritiesMemberus ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t9019us-gaap:PerformanceSharesMember2021-07-012022-06-300000789019us-gaap:DebtSecuritiesMemberus-gaap ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\ts-gaap:PerformanceSharesMember2021-07-012022-06-300000789019us-gaap:DebtSecuritiesMemberus-gaap:Fair ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tp:PerformanceSharesMember2021-07-012022-06-300000789019us-gaap:DebtSecuritiesMemberus-gaap:FairValue ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tformanceSharesMember2021-07-012022-06-300000789019us-gaap:DebtSecuritiesMemberus-gaap:FairValueInput ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tnceSharesMember2021-07-012022-06-300000789019us-gaap:DebtSecuritiesMemberus-gaap:FairValueInputsLeve ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\taresMember2021-07-012022-06-300000789019us-gaap:DebtSecuritiesMemberus-gaap:FairValueInputsLevel2Mem ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tember2021-07-012022-06-300000789019us-gaap:DebtSecuritiesMemberus-gaap:FairValueInputsLevel2Memberus ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t2021-07-012022-06-300000789019us-gaap:DebtSecuritiesMemberus-gaap:FairValueInputsLevel2Memberus-gaap ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t07-012022-06-300000789019us-gaap:DebtSecuritiesMemberus-gaap:FairValueInputsLevel2Memberus-gaap:Fore ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t2022-06-300000789019us-gaap:DebtSecuritiesMemberus-gaap:FairValueInputsLevel2Memberus-gaap:ForeignGo ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t06-300000789019us-gaap:DebtSecuritiesMemberus-gaap:FairValueInputsLevel2Memberus-gaap:ForeignGovernm ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t0000789019us-gaap:DebtSecuritiesMemberus-gaap:FairValueInputsLevel2Memberus-gaap:ForeignGovernmentDe ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t89019us-gaap:DebtSecuritiesMemberus-gaap:FairValueInputsLevel2Memberus-gaap:ForeignGovernmentDebtSec ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tus-gaap:DebtSecuritiesMemberus-gaap:FairValueInputsLevel2Memberus-gaap:ForeignGovernmentDebtSecuriti ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tap:DebtSecuritiesMemberus-gaap:FairValueInputsLevel2Memberus-gaap:ForeignGovernmentDebtSecuritiesMem ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tbtSecuritiesMemberus-gaap:FairValueInputsLevel2Memberus-gaap:ForeignGovernmentDebtSecuritiesMember20 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\turitiesMemberus-gaap:FairValueInputsLevel2Memberus-gaap:ForeignGovernmentDebtSecuritiesMember2023-06 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tesMemberus-gaap:FairValueInputsLevel2Memberus-gaap:ForeignGovernmentDebtSecuritiesMember2023-06-3000 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tberus-gaap:FairValueInputsLevel2Memberus-gaap:ForeignGovernmentDebtSecuritiesMember2023-06-300000789 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t-gaap:FairValueInputsLevel2Memberus-gaap:ForeignGovernmentDebtSecuritiesMember2023-06-300000789019ms ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t:FairValueInputsLevel2Memberus-gaap:ForeignGovernmentDebtSecuritiesMember2023-06-300000789019msft:De ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tValueInputsLevel2Memberus-gaap:ForeignGovernmentDebtSecuritiesMember2023-06-300000789019msft:Devices ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tInputsLevel2Memberus-gaap:ForeignGovernmentDebtSecuritiesMember2023-06-300000789019msft:DevicesMembe ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tsLevel2Memberus-gaap:ForeignGovernmentDebtSecuritiesMember2023-06-300000789019msft:DevicesMember2021 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tl2Memberus-gaap:ForeignGovernmentDebtSecuritiesMember2023-06-300000789019msft:DevicesMember2021-07-0 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tberus-gaap:ForeignGovernmentDebtSecuritiesMember2023-06-300000789019msft:DevicesMember2021-07-012022 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t-gaap:ForeignGovernmentDebtSecuritiesMember2023-06-300000789019msft:DevicesMember2021-07-012022-06-3 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t:ForeignGovernmentDebtSecuritiesMember2023-06-300000789019msft:DevicesMember2021-07-012022-06-300000 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tignGovernmentDebtSecuritiesMember2023-06-300000789019msft:DevicesMember2021-07-012022-06-30000078901 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tvernmentDebtSecuritiesMember2023-06-300000789019msft:DevicesMember2021-07-012022-06-300000789019coun ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tentDebtSecuritiesMember2023-06-300000789019msft:DevicesMember2021-07-012022-06-300000789019country:U ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tbtSecuritiesMember2023-06-300000789019msft:DevicesMember2021-07-012022-06-300000789019country:US2022 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\turitiesMember2023-06-300000789019msft:DevicesMember2021-07-012022-06-300000789019country:US2022-06-3 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tesMember2023-06-300000789019msft:DevicesMember2021-07-012022-06-300000789019country:US2022-06-300000 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tber2023-06-300000789019msft:DevicesMember2021-07-012022-06-300000789019country:US2022-06-30000078901 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t23-06-300000789019msft:DevicesMember2021-07-012022-06-300000789019country:US2022-06-300000789019msft ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t-300000789019msft:DevicesMember2021-07-012022-06-300000789019country:US2022-06-300000789019msft:Issu ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t00789019msft:DevicesMember2021-07-012022-06-300000789019country:US2022-06-300000789019msft:IssuanceO ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t019msft:DevicesMember2021-07-012022-06-300000789019country:US2022-06-300000789019msft:IssuanceOfLong ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tft:DevicesMember2021-07-012022-06-300000789019country:US2022-06-300000789019msft:IssuanceOfLongTermD ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tvicesMember2021-07-012022-06-300000789019country:US2022-06-300000789019msft:IssuanceOfLongTermDebtEi ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tMember2021-07-012022-06-300000789019country:US2022-06-300000789019msft:IssuanceOfLongTermDebtEightMe ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tr2021-07-012022-06-300000789019country:US2022-06-300000789019msft:IssuanceOfLongTermDebtEightMembers ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t-07-012022-06-300000789019country:US2022-06-300000789019msft:IssuanceOfLongTermDebtEightMembersrt:Ma ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t12022-06-300000789019country:US2022-06-300000789019msft:IssuanceOfLongTermDebtEightMembersrt:Maximum ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t-06-300000789019country:US2022-06-300000789019msft:IssuanceOfLongTermDebtEightMembersrt:MaximumMembe ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t00000789019country:US2022-06-300000789019msft:IssuanceOfLongTermDebtEightMembersrt:MaximumMember2022 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t789019country:US2022-06-300000789019msft:IssuanceOfLongTermDebtEightMembersrt:MaximumMember2022-07-0 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t9country:US2022-06-300000789019msft:IssuanceOfLongTermDebtEightMembersrt:MaximumMember2022-07-012023 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\ttry:US2022-06-300000789019msft:IssuanceOfLongTermDebtEightMembersrt:MaximumMember2022-07-012023-06-3 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tS2022-06-300000789019msft:IssuanceOfLongTermDebtEightMembersrt:MaximumMember2022-07-012023-06-300000 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t-06-300000789019msft:IssuanceOfLongTermDebtEightMembersrt:MaximumMember2022-07-012023-06-30000078901 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t00000789019msft:IssuanceOfLongTermDebtEightMembersrt:MaximumMember2022-07-012023-06-300000789019us-g ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t789019msft:IssuanceOfLongTermDebtEightMembersrt:MaximumMember2022-07-012023-06-300000789019us-gaap:C ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t9msft:IssuanceOfLongTermDebtEightMembersrt:MaximumMember2022-07-012023-06-300000789019us-gaap:CashFl ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t:IssuanceOfLongTermDebtEightMembersrt:MaximumMember2022-07-012023-06-300000789019us-gaap:CashFlowHed ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tanceOfLongTermDebtEightMembersrt:MaximumMember2022-07-012023-06-300000789019us-gaap:CashFlowHedgingM ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tfLongTermDebtEightMembersrt:MaximumMember2022-07-012023-06-300000789019us-gaap:CashFlowHedgingMember ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tTermDebtEightMembersrt:MaximumMember2022-07-012023-06-300000789019us-gaap:CashFlowHedgingMemberus-ga ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tebtEightMembersrt:MaximumMember2022-07-012023-06-300000789019us-gaap:CashFlowHedgingMemberus-gaap:Fo ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tghtMembersrt:MaximumMember2022-07-012023-06-300000789019us-gaap:CashFlowHedgingMemberus-gaap:Foreign ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tmbersrt:MaximumMember2022-07-012023-06-300000789019us-gaap:CashFlowHedgingMemberus-gaap:ForeignExcha ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\trt:MaximumMember2022-07-012023-06-300000789019us-gaap:CashFlowHedgingMemberus-gaap:ForeignExchangeCo ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tximumMember2022-07-012023-06-300000789019us-gaap:CashFlowHedgingMemberus-gaap:ForeignExchangeContrac ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tMember2022-07-012023-06-300000789019us-gaap:CashFlowHedgingMemberus-gaap:ForeignExchangeContractMemb ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tr2022-07-012023-06-300000789019us-gaap:CashFlowHedgingMemberus-gaap:ForeignExchangeContractMember202 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t-07-012023-06-300000789019us-gaap:CashFlowHedgingMemberus-gaap:ForeignExchangeContractMember2022-07- ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t12023-06-300000789019us-gaap:CashFlowHedgingMemberus-gaap:ForeignExchangeContractMember2022-07-01202 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t-06-300000789019us-gaap:CashFlowHedgingMemberus-gaap:ForeignExchangeContractMember2022-07-012023-06- ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t00000789019us-gaap:CashFlowHedgingMemberus-gaap:ForeignExchangeContractMember2022-07-012023-06-30000 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t789019us-gaap:CashFlowHedgingMemberus-gaap:ForeignExchangeContractMember2022-07-012023-06-3000007890 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t9us-gaap:CashFlowHedgingMemberus-gaap:ForeignExchangeContractMember2022-07-012023-06-300000789019msf ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\taap:CashFlowHedgingMemberus-gaap:ForeignExchangeContractMember2022-07-012023-06-300000789019msft:Int ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tashFlowHedgingMemberus-gaap:ForeignExchangeContractMember2022-07-012023-06-300000789019msft:Intellig ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\towHedgingMemberus-gaap:ForeignExchangeContractMember2022-07-012023-06-300000789019msft:IntelligentCl ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tgingMemberus-gaap:ForeignExchangeContractMember2022-07-012023-06-300000789019msft:IntelligentCloudMe ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\temberus-gaap:ForeignExchangeContractMember2022-07-012023-06-300000789019msft:IntelligentCloudMember2 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tus-gaap:ForeignExchangeContractMember2022-07-012023-06-300000789019msft:IntelligentCloudMember2022-0 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tap:ForeignExchangeContractMember2022-07-012023-06-300000789019msft:IntelligentCloudMember2022-06-300 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\treignExchangeContractMember2022-07-012023-06-300000789019msft:IntelligentCloudMember2022-06-30000078 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tExchangeContractMember2022-07-012023-06-300000789019msft:IntelligentCloudMember2022-06-300000789019m ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tngeContractMember2022-07-012023-06-300000789019msft:IntelligentCloudMember2022-06-300000789019msft:M ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tntractMember2022-07-012023-06-300000789019msft:IntelligentCloudMember2022-06-300000789019msft:MorePe ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\ttMember2022-07-012023-06-300000789019msft:IntelligentCloudMember2022-06-300000789019msft:MorePersona ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\ter2022-07-012023-06-300000789019msft:IntelligentCloudMember2022-06-300000789019msft:MorePersonalComp ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t2-07-012023-06-300000789019msft:IntelligentCloudMember2022-06-300000789019msft:MorePersonalComputing ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t012023-06-300000789019msft:IntelligentCloudMember2022-06-300000789019msft:MorePersonalComputingMembe ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t3-06-300000789019msft:IntelligentCloudMember2022-06-300000789019msft:MorePersonalComputingMember2020 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t300000789019msft:IntelligentCloudMember2022-06-300000789019msft:MorePersonalComputingMember2020-07-0 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t0789019msft:IntelligentCloudMember2022-06-300000789019msft:MorePersonalComputingMember2020-07-012021 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t19msft:IntelligentCloudMember2022-06-300000789019msft:MorePersonalComputingMember2020-07-012021-06-3 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tt:IntelligentCloudMember2022-06-300000789019msft:MorePersonalComputingMember2020-07-012021-06-300000 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\telligentCloudMember2022-06-300000789019msft:MorePersonalComputingMember2020-07-012021-06-30000078901 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tentCloudMember2022-06-300000789019msft:MorePersonalComputingMember2020-07-012021-06-300000789019us-g ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\toudMember2022-06-300000789019msft:MorePersonalComputingMember2020-07-012021-06-300000789019us-gaap:D ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tmber2022-06-300000789019msft:MorePersonalComputingMember2020-07-012021-06-300000789019us-gaap:DebtSe ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t022-06-300000789019msft:MorePersonalComputingMember2020-07-012021-06-300000789019us-gaap:DebtSecurit ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t6-300000789019msft:MorePersonalComputingMember2020-07-012021-06-300000789019us-gaap:DebtSecuritiesMe ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t000789019msft:MorePersonalComputingMember2020-07-012021-06-300000789019us-gaap:DebtSecuritiesMemberu ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t9019msft:MorePersonalComputingMember2020-07-012021-06-300000789019us-gaap:DebtSecuritiesMemberus-gaa ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tsft:MorePersonalComputingMember2020-07-012021-06-300000789019us-gaap:DebtSecuritiesMemberus-gaap:USG ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\torePersonalComputingMember2020-07-012021-06-300000789019us-gaap:DebtSecuritiesMemberus-gaap:USGovern ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\trsonalComputingMember2020-07-012021-06-300000789019us-gaap:DebtSecuritiesMemberus-gaap:USGovernmentA ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tlComputingMember2020-07-012021-06-300000789019us-gaap:DebtSecuritiesMemberus-gaap:USGovernmentAgenci ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tutingMember2020-07-012021-06-300000789019us-gaap:DebtSecuritiesMemberus-gaap:USGovernmentAgenciesDeb ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tMember2020-07-012021-06-300000789019us-gaap:DebtSecuritiesMemberus-gaap:USGovernmentAgenciesDebtSecu ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tr2020-07-012021-06-300000789019us-gaap:DebtSecuritiesMemberus-gaap:USGovernmentAgenciesDebtSecuritie ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t-07-012021-06-300000789019us-gaap:DebtSecuritiesMemberus-gaap:USGovernmentAgenciesDebtSecuritiesMemb ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t12021-06-300000789019us-gaap:DebtSecuritiesMemberus-gaap:USGovernmentAgenciesDebtSecuritiesMemberus- ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t-06-300000789019us-gaap:DebtSecuritiesMemberus-gaap:USGovernmentAgenciesDebtSecuritiesMemberus-gaap: ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t00000789019us-gaap:DebtSecuritiesMemberus-gaap:USGovernmentAgenciesDebtSecuritiesMemberus-gaap:FairV ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t789019us-gaap:DebtSecuritiesMemberus-gaap:USGovernmentAgenciesDebtSecuritiesMemberus-gaap:FairValueI ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t9us-gaap:DebtSecuritiesMemberus-gaap:USGovernmentAgenciesDebtSecuritiesMemberus-gaap:FairValueInputs ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\taap:DebtSecuritiesMemberus-gaap:USGovernmentAgenciesDebtSecuritiesMemberus-gaap:FairValueInputsLevel ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tebtSecuritiesMemberus-gaap:USGovernmentAgenciesDebtSecuritiesMemberus-gaap:FairValueInputsLevel2Memb ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tcuritiesMemberus-gaap:USGovernmentAgenciesDebtSecuritiesMemberus-gaap:FairValueInputsLevel2Member202 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tiesMemberus-gaap:USGovernmentAgenciesDebtSecuritiesMemberus-gaap:FairValueInputsLevel2Member2023-06- ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tmberus-gaap:USGovernmentAgenciesDebtSecuritiesMemberus-gaap:FairValueInputsLevel2Member2023-06-30000 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\ts-gaap:USGovernmentAgenciesDebtSecuritiesMemberus-gaap:FairValueInputsLevel2Member2023-06-3000007890 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tp:USGovernmentAgenciesDebtSecuritiesMemberus-gaap:FairValueInputsLevel2Member2023-06-300000789019us- ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tovernmentAgenciesDebtSecuritiesMemberus-gaap:FairValueInputsLevel2Member2023-06-300000789019us-gaap: ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tmentAgenciesDebtSecuritiesMemberus-gaap:FairValueInputsLevel2Member2023-06-300000789019us-gaap:Desig ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tgenciesDebtSecuritiesMemberus-gaap:FairValueInputsLevel2Member2023-06-300000789019us-gaap:Designated ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tesDebtSecuritiesMemberus-gaap:FairValueInputsLevel2Member2023-06-300000789019us-gaap:DesignatedAsHed ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\ttSecuritiesMemberus-gaap:FairValueInputsLevel2Member2023-06-300000789019us-gaap:DesignatedAsHedgingI ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tritiesMemberus-gaap:FairValueInputsLevel2Member2023-06-300000789019us-gaap:DesignatedAsHedgingInstru ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tsMemberus-gaap:FairValueInputsLevel2Member2023-06-300000789019us-gaap:DesignatedAsHedgingInstrumentM ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\terus-gaap:FairValueInputsLevel2Member2023-06-300000789019us-gaap:DesignatedAsHedgingInstrumentMember ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tgaap:FairValueInputsLevel2Member2023-06-300000789019us-gaap:DesignatedAsHedgingInstrumentMemberus-ga ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tFairValueInputsLevel2Member2023-06-300000789019us-gaap:DesignatedAsHedgingInstrumentMemberus-gaap:Lo ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\talueInputsLevel2Member2023-06-300000789019us-gaap:DesignatedAsHedgingInstrumentMemberus-gaap:LongMem ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tnputsLevel2Member2023-06-300000789019us-gaap:DesignatedAsHedgingInstrumentMemberus-gaap:LongMemberus ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tLevel2Member2023-06-300000789019us-gaap:DesignatedAsHedgingInstrumentMemberus-gaap:LongMemberus-gaap ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t2Member2023-06-300000789019us-gaap:DesignatedAsHedgingInstrumentMemberus-gaap:LongMemberus-gaap:Fore ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\ter2023-06-300000789019us-gaap:DesignatedAsHedgingInstrumentMemberus-gaap:LongMemberus-gaap:ForeignEx ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t3-06-300000789019us-gaap:DesignatedAsHedgingInstrumentMemberus-gaap:LongMemberus-gaap:ForeignExchang ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t300000789019us-gaap:DesignatedAsHedgingInstrumentMemberus-gaap:LongMemberus-gaap:ForeignExchangeCont ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t0789019us-gaap:DesignatedAsHedgingInstrumentMemberus-gaap:LongMemberus-gaap:ForeignExchangeContractM ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t19us-gaap:DesignatedAsHedgingInstrumentMemberus-gaap:LongMemberus-gaap:ForeignExchangeContractMember ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tgaap:DesignatedAsHedgingInstrumentMemberus-gaap:LongMemberus-gaap:ForeignExchangeContractMember2023- ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tDesignatedAsHedgingInstrumentMemberus-gaap:LongMemberus-gaap:ForeignExchangeContractMember2023-06-30 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tnatedAsHedgingInstrumentMemberus-gaap:LongMemberus-gaap:ForeignExchangeContractMember2023-06-3000007 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tAsHedgingInstrumentMemberus-gaap:LongMemberus-gaap:ForeignExchangeContractMember2023-06-300000789019 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tgingInstrumentMemberus-gaap:LongMemberus-gaap:ForeignExchangeContractMember2023-06-300000789019msft: ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tnstrumentMemberus-gaap:LongMemberus-gaap:ForeignExchangeContractMember2023-06-300000789019msft:Accum ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tmentMemberus-gaap:LongMemberus-gaap:ForeignExchangeContractMember2023-06-300000789019msft:Accumulate ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\temberus-gaap:LongMemberus-gaap:ForeignExchangeContractMember2023-06-300000789019msft:AccumulatedTran ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tus-gaap:LongMemberus-gaap:ForeignExchangeContractMember2023-06-300000789019msft:AccumulatedTranslati ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tap:LongMemberus-gaap:ForeignExchangeContractMember2023-06-300000789019msft:AccumulatedTranslationAdj ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tngMemberus-gaap:ForeignExchangeContractMember2023-06-300000789019msft:AccumulatedTranslationAdjustme ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tberus-gaap:ForeignExchangeContractMember2023-06-300000789019msft:AccumulatedTranslationAdjustmentAnd ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t-gaap:ForeignExchangeContractMember2023-06-300000789019msft:AccumulatedTranslationAdjustmentAndOther ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t:ForeignExchangeContractMember2023-06-300000789019msft:AccumulatedTranslationAdjustmentAndOtherMembe ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tignExchangeContractMember2023-06-300000789019msft:AccumulatedTranslationAdjustmentAndOtherMember2021 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tchangeContractMember2023-06-300000789019msft:AccumulatedTranslationAdjustmentAndOtherMember2021-06-3 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\teContractMember2023-06-300000789019msft:AccumulatedTranslationAdjustmentAndOtherMember2021-06-300000 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tractMember2023-06-300000789019msft:AccumulatedTranslationAdjustmentAndOtherMember2021-06-30000078901 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tember2023-06-300000789019msft:AccumulatedTranslationAdjustmentAndOtherMember2021-06-300000789019msft ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t2023-06-300000789019msft:AccumulatedTranslationAdjustmentAndOtherMember2021-06-300000789019msft:Acti ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t06-300000789019msft:AccumulatedTranslationAdjustmentAndOtherMember2021-06-300000789019msft:Activisio ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t0000789019msft:AccumulatedTranslationAdjustmentAndOtherMember2021-06-300000789019msft:ActivisionBliz ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t89019msft:AccumulatedTranslationAdjustmentAndOtherMember2021-06-300000789019msft:ActivisionBlizzardI ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tmsft:AccumulatedTranslationAdjustmentAndOtherMember2021-06-300000789019msft:ActivisionBlizzardIncMem ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tAccumulatedTranslationAdjustmentAndOtherMember2021-06-300000789019msft:ActivisionBlizzardIncMember20 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tulatedTranslationAdjustmentAndOtherMember2021-06-300000789019msft:ActivisionBlizzardIncMember2022-01 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tdTranslationAdjustmentAndOtherMember2021-06-300000789019msft:ActivisionBlizzardIncMember2022-01-1800 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tslationAdjustmentAndOtherMember2021-06-300000789019msft:ActivisionBlizzardIncMember2022-01-180000789 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tonAdjustmentAndOtherMember2021-06-300000789019msft:ActivisionBlizzardIncMember2022-01-180000789019ms ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tustmentAndOtherMember2021-06-300000789019msft:ActivisionBlizzardIncMember2022-01-180000789019msft:Is ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tntAndOtherMember2021-06-300000789019msft:ActivisionBlizzardIncMember2022-01-180000789019msft:Issuanc ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tOtherMember2021-06-300000789019msft:ActivisionBlizzardIncMember2022-01-180000789019msft:IssuanceOfLo ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tMember2021-06-300000789019msft:ActivisionBlizzardIncMember2022-01-180000789019msft:IssuanceOfLongTer ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tr2021-06-300000789019msft:ActivisionBlizzardIncMember2022-01-180000789019msft:IssuanceOfLongTermDebt ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t-06-300000789019msft:ActivisionBlizzardIncMember2022-01-180000789019msft:IssuanceOfLongTermDebtThree ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t00000789019msft:ActivisionBlizzardIncMember2022-01-180000789019msft:IssuanceOfLongTermDebtThreeMembe ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t789019msft:ActivisionBlizzardIncMember2022-01-180000789019msft:IssuanceOfLongTermDebtThreeMember2022 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t9msft:ActivisionBlizzardIncMember2022-01-180000789019msft:IssuanceOfLongTermDebtThreeMember2022-06-3 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t:ActivisionBlizzardIncMember2022-01-180000789019msft:IssuanceOfLongTermDebtThreeMember2022-06-300000 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tvisionBlizzardIncMember2022-01-180000789019msft:IssuanceOfLongTermDebtThreeMember2022-06-30000078901 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tnBlizzardIncMember2022-01-180000789019msft:IssuanceOfLongTermDebtThreeMember2022-06-300000789019us-g ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tzardIncMember2022-01-180000789019msft:IssuanceOfLongTermDebtThreeMember2022-06-300000789019us-gaap:U ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tncMember2022-01-180000789019msft:IssuanceOfLongTermDebtThreeMember2022-06-300000789019us-gaap:Unsecu ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tber2022-01-180000789019msft:IssuanceOfLongTermDebtThreeMember2022-06-300000789019us-gaap:UnsecuredDe ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t22-01-180000789019msft:IssuanceOfLongTermDebtThreeMember2022-06-300000789019us-gaap:UnsecuredDebtMem ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t-180000789019msft:IssuanceOfLongTermDebtThreeMember2022-06-300000789019us-gaap:UnsecuredDebtMember20 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t00789019msft:IssuanceOfLongTermDebtThreeMember2022-06-300000789019us-gaap:UnsecuredDebtMember2022-07 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t019msft:IssuanceOfLongTermDebtThreeMember2022-06-300000789019us-gaap:UnsecuredDebtMember2022-07-0120 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tft:IssuanceOfLongTermDebtThreeMember2022-06-300000789019us-gaap:UnsecuredDebtMember2022-07-012023-06 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tsuanceOfLongTermDebtThreeMember2022-06-300000789019us-gaap:UnsecuredDebtMember2022-07-012023-06-3000 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\teOfLongTermDebtThreeMember2022-06-300000789019us-gaap:UnsecuredDebtMember2022-07-012023-06-300000789 ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tngTermDebtThreeMember2022-06-300000789019us-gaap:UnsecuredDebtMember2022-07-012023-06-300000789019ms ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tmDebtThreeMember2022-06-300000789019us-gaap:UnsecuredDebtMember2022-07-012023-06-300000789019msft:Se ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tThreeMember2022-06-300000789019us-gaap:UnsecuredDebtMember2022-07-012023-06-300000789019msft:ServerP ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tMember2022-06-300000789019us-gaap:UnsecuredDebtMember2022-07-012023-06-300000789019msft:ServerProduc ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\tr2022-06-300000789019us-gaap:UnsecuredDebtMember2022-07-012023-06-300000789019msft:ServerProductsAnd ...\n", + "max_tokens is too small to fit a single line of text. Breaking this line:\n", + "\t-06-300000789019us-gaap:UnsecuredDebtMember2022-07-012023-06-300000789019msft:ServerProductsAndCloud ...\n", + "2024-05-29 16:07:22,382 - autogen.agentchat.contrib.retrieve_user_proxy_agent - INFO - Found 2370 chunks.\u001b[0m\n", + "2024-05-29 16:07:22,396 - autogen.agentchat.contrib.vectordb.chromadb - INFO - No content embedding is provided. Will use the VectorDB's embedding function to generate the content embedding.\u001b[0m\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "VectorDB returns doc_ids: [['eea01a55', '740b762b', '66d1c800', 'fbf08d25', '4192dee7', '84c5d64c', '66f0b48d', '9887b38f', 'd7c05c64', '965f6567', '5af22498', '25347883', '73ecd3b8', 'f926aed7', 'ffd75c82', '09235865', '31b1bc84', '86497d1b', '698a4f6f', '90cab907']]\n", + "\u001b[32mAdding content of doc eea01a55 to context.\u001b[0m\n", + "\u001b[32mSkip doc_id 740b762b as it is too long to fit in the context.\u001b[0m\n", + "\u001b[32mAdding content of doc 66d1c800 to context.\u001b[0m\n", + "\u001b[33mUser_Proxy\u001b[0m (to Data_Analyst):\n", + "\n", + "You're a retrieve augmented chatbot. You answer user's questions based on your own knowledge and the\n", + "context provided by the user.\n", + "If you can't answer the question with or without the current context, you should reply exactly `UPDATE CONTEXT`.\n", + "You must give as short an answer as possible.\n", + "\n", + "User's question is: How's msft's 2023 income? Provide with some analysis.\n", + "\n", + "Context is: msft:\n", + "| 10.19\\* | | [Microsoft Corporation Executive Incentive Plan](https://www.sec.gov/Archives/edgar/data/789019/000119312516742796/d245252dex1017.htm) | | | | | 10-Q | | | | 9/30/2016 | | | | 10.17 | | | | 10/20/2016 | |\n", + "| | | | | | | | | | | | | | | | | | | | | |\n", + "| 10.20\\* | | [Form of Executive Incentive Plan (Executive Officer SAs) Stock Award Agreement under the Microsoft Corporation 2001 Stock Plan](https://www.sec.gov/Archives/edgar/data/789019/000119312516742796/d245252dex1018.htm) | | | | | 10-Q | | | | 9/30/2016 | | | | 10.18 | | | | 10/20/2016 | |\n", + "| | | | | | | | | | | | | | | | | | | | | |\n", + "| 10.21\\* | | [Form of Executive Incentive Plan Performance Stock Award Agreement under the Microsoft Corporation 2001 Stock Plan](https://www.sec.gov/Archives/edgar/data/789019/000119312516742796/d245252dex1025.htm) | | | | | 10-Q | | | | 9/30/2016 | | | | 10.25 | | | | 10/20/2016 | |\n", + "| | | | | | | | | | | | | | | | | | | | | |\n", + "| 10.22\\* | | [Senior Executive Severance Benefit Plan](https://www.sec.gov/Archives/edgar/data/789019/000119312516742796/d245252dex1022.htm) | | | | | 10-Q | | | | 9/30/2016 | | | | 10.22 | | | | 10/20/2016 | |\n", + "| | | | | | | | | | | | | | | | | | | | | |\n", + "| 10.23\\* | | [Offer Letter, dated February 3, 2014, between Microsoft Corporation and Satya Nadella](https://www.sec.gov/Archives/edgar/data/789019/000119312514035080/d669538dex101.htm) | | | | | 8-K | | | | | | | | 10.1 | | | | 2/4/2014 | |\n", + "\n", + "106\n", + "\n", + "---\n", + "\n", + "PART IV\n", + "\n", + "Item 15\n", + "\n", + " \n", + "\n", + "| | | | | | | | | | | | | | | | | | | | | |\n", + "| --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- |\n", + "| | | | | | Incorporated by Reference | | | | | | | | | | | | | | | |\n", + "| ExhibitNumber | | Exhibit Description | | FiledHerewith | | Form | | | | PeriodEnding | | | | Exhibit | | | | Filing Date | | |\n", + "| | | | | | | | | | | | | | | | | | | | | |\n", + "| 10.24\\* | | [Long-Term Performance Stock Award Agreement between Microsoft Corporation and Satya Nadella](https://www.sec.gov/Archives/edgar/data/789019/000119312515020351/d827041dex1024.htm) | | | | | 10-Q | | | | 12/31/2014 | | | | 10.24 | | | | 1/26/2015 | |\n", + "| | | | | | | | | | | | | | | | | | | | | |\n", + "| 10.25\\* | | [Offer Letter, dated October 25, 2020, between Microsoft Corporation and Christopher Young](https://www.sec.gov/Archives/edgar/data/789019/000156459021051992/msft-ex1027_334.htm) | | | | | 10-Q | | | | 9/30/2021 | | | | 10.27 | | | | 10/26/2021 | |\n", + "| | | | | | | | | | | | | | | | | | | | | |\n", + "| 21 | | [Subsidiaries of Registrant](msft-ex21.htm) | | X | | | | | | | | | | | | | | | | |\n", + "| | | | | | | | | | | | | | | | | | | | | |\n", + "| 23.1 | | [Consent of Independent Registered Public Accounting Firm](msft-ex23_1.htm) | | X | | | | | | | | | | | | | | | | |\n", + "| | | | | | | | | | | | | | | | | | | | | |\n", + "| 31.1 | | [Certification of Chief Executive Officer Pursuant to Section 302 of the Sarbanes-Oxley Act of 2002](msft-ex31_1.htm) | | X | | | | | | | | | | | | | | | | |\n", + "| | | | | | | | | | | | | | | | | | | | | |\n", + "| 31.2 | | [Certification of Chief Financial Officer Pursuant to Section 302 of the Sarbanes-Oxley Act of 2002](msft-ex31_2.htm) | | X | | | | | | | | | | | | | | | | |\n", + "| | | | | | | | | | | | | | | | | | | | | |\n", + "| 32.1\\*\\* | | [Certification of Chief Executive Officer Pursuant to Section 906 of the Sarbanes-Oxley Act of 2002](msft-ex32_1.htm) | | X | | | | | | | | | | | | | | | | |\n", + "| | | | | | | | | | | | | | | | | | | | | |\n", + "| 32.2\\*\\* | | [Certification of Chief Financial Officer Pursuant to Section 906 of the Sarbanes-Oxley Act of 2002](msft-ex32_2.htm) | | X | | | | | | | | | | | | | | | | |\n", + "| | | | | | | | | | | | | | | | | | | | | |\n", + "| 101.INS | | Inline XBRL Instance Document—the instance document does not appear in the Interactive Data File as its XBRL tags are embedded within the Inline XBRL document | | X | | | | | | | | | | | | | | | | |\n", + "| | | | | | | | | | | | | | | | | | | | | |\n", + "| 101.SCH | | Inline XBRL Taxonomy Extension Schema | | X | | | | | | | | | | | | | | | | |\n", + "| | | | | | | | | | | | | | | | | | | | | |\n", + "| 101.CAL | | Inline XBRL Taxonomy Extension Calculation Linkbase | | X | | | | | | | | | | | | | | | | |\n", + "| | | | | | | | | | | | | | | | | | | | | |\n", + "| 101.DEF | | Inline XBRL Taxonomy Extension Definition Linkbase | | X | | | | | | | | | | | | | | | | |\n", + "| | | | | | | | | | | | | | | | | | | | | |\n", + "| 101.LAB | | Inline XBRL Taxonomy Extension Label Linkbase | | X | | | | | | | | | | | | | | | | |\n", + "| | | | | | | | | | | | | | | | | | | | | |\n", + "| 101.PRE | | Inline XBRL Taxonomy Extension Presentation Linkbase | | X | | | | | | | | | | | | | | | | |\n", + "| | | | | | | | | | | | | | | | | | | | | |\n", + "| 104 | | Cover page formatted as Inline XBRL and contained in Exhibit 101 | | X | | | | | | | | | | | | | | | | |\n", + "\n", + " \n", + "\n", + "\\* Indicates a management contract or compensatory plan or arrangement.\n", + "\n", + "\\*\\* Furnished, not filed.\n", + "\n", + "107\n", + "\n", + "---\n", + "\n", + "PART IV\n", + "\n", + "Item 16\n", + "\n", + " \n", + "\n", + "ITEM 16. FORM 10-K SUMMARY\n", + "\n", + "None.\n", + "\n", + "108\n", + "\n", + "---\n", + "\n", + " \n", + "\n", + "SIGNATURES\n", + "\n", + "Pursuant to the requirements of Section 13 or 15(d) of the Securities Exchange Act of 1934, the Registrant has duly caused this report to be signed on its behalf by the undersigned; thereunto duly authorized, in the City of Redmond, State of Washington, on July 27, 2023. \n", + "\n", + " \n", + "\n", + "| |\n", + "| --- |\n", + "| MICROSOFT CORPORATION |\n", + "| |\n", + "| /s/ ALICE L. JOLLA |\n", + "| Alice L. Jolla |\n", + "| Corporate Vice President and Chief Accounting Officer (Principal Accounting Officer) |\n", + "\n", + " \n", + "\n", + "Pursuant to the requirements of the Securities Exchange Act of 1934, this report has been signed below by the following persons on behalf of Registrant and in the capacities indicated on July 27, 2023. \n", + "\n", + " \n", + "\n", + "| | | |\n", + "| --- | --- | --- |\n", + "| Signature | | Title |\n", + "| | | |\n", + "| | | |\n", + "| /s/ SATYA NADELLA | | Chairman and Chief Executive Officer(Principal Executive Officer) |\n", + "| Satya Nadella | |\n", + "| | | |\n", + "| /s/ REID HOFFMAN | | Director |\n", + "| Reid Hoffman | |\n", + "| | | |\n", + "| /s/ HUGH F. JOHNSTON | | Director |\n", + "| Hugh F. Johnston | |\n", + "| | | |\n", + "| /s/ TERI L. LIST | | Director |\n", + "| Teri L. List | |\n", + "| | | |\n", + "| /s/ SANDRA E. PETERSON | | Lead Independent Director |\n", + "| Sandra E. Peterson | |\n", + "| | | |\n", + "| /s/ PENNY S. PRITZKER | | Director |\n", + "| Penny S. Pritzker | | |\n", + "| | | |\n", + "| /s/ CARLOS A. RODRIGUEZ | | Director |\n", + "| Carlos A. Rodriguez | |\n", + "| | | |\n", + "| /s/ CHARLES W. SCHARF | | Director |\n", + "| Charles W. Scharf | |\n", + "| | | |\n", + "| /s/ JOHN W. STANTON | | Director |\n", + "| John W. Stanton | |\n", + "| | | |\n", + "| /s/ JOHN W. THOMPSON | | Director |\n", + "| John W. Thompson | |\n", + "| | | |\n", + "| /s/ EMMA N. WALMSLEY | | Director |\n", + "| Emma N. Walmsley | |\n", + "| | | |\n", + "| /s/ PADMASREE WARRIOR | | Director |\n", + "| Padmasree Warrior | |\n", + "| | | |\n", + "| /s/ AMY E. HOOD | | Executive Vice President and Chief Financial Officer(Principal Financial Officer) |\n", + "| Amy E. Hood | |\n", + "| | | |\n", + "| /s/ ALICE L. JOLLA | | Corporate Vice President and Chief Accounting Officer(Principal Accounting Officer) |\n", + "| Alice L. Jolla | |\n", + "\n", + " \n", + "\n", + "109\n", + "\n", + "---\n", + "\n", + "\n", + "\n", + "--------------------------------------------------------------------------------\n", + "\u001b[33mData_Analyst\u001b[0m (to User_Proxy):\n", + "\n", + "UPDATE CONTEXT\n", + "\n", + "--------------------------------------------------------------------------------\n", + "\u001b[31m\n", + ">>>>>>>> NO HUMAN INPUT RECEIVED.\u001b[0m\n", + "\u001b[31m\n", + ">>>>>>>> USING AUTO REPLY...\u001b[0m\n", + "\u001b[32mUpdating context and resetting conversation.\u001b[0m\n", + "\u001b[32mAdding content of doc fbf08d25 to context.\u001b[0m\n", + "\u001b[33mUser_Proxy\u001b[0m (to Data_Analyst):\n", + "\n", + "You're a retrieve augmented chatbot. You answer user's questions based on your own knowledge and the\n", + "context provided by the user.\n", + "If you can't answer the question with or without the current context, you should reply exactly `UPDATE CONTEXT`.\n", + "You must give as short an answer as possible.\n", + "\n", + "User's question is: How's msft's 2023 income? Provide with some analysis.\n", + "\n", + "Context is: | | | | | | | | | | | | | | | | (In millions) | |\n", + "| | | | | | | | | | | | | | | | | |\n", + "| June 13, 2023 | | | August 17, 2023 | | | | September 14, 2023 | | | $ | 0.68 | | | $ | 5,054 | |\n", + "| | | | | | | | | | | | | | | | | |\n", + "\n", + " \n", + "\n", + "We returned $9.7 billion to shareholders in the form of share repurchases and dividends in the fourth quarter of fiscal year 2023. Refer to Note 16 – Stockholders’ Equity of the Notes to Financial Statements (Part II, Item 8 of this Form 10-K) for further discussion regarding share repurchases and dividends.\n", + "\n", + "38\n", + "\n", + "---\n", + "\n", + "PART II\n", + "\n", + "Item 6\n", + "\n", + " \n", + "\n", + "ITEM 6. [RESERVED]\n", + "\n", + " \n", + "\n", + "39\n", + "\n", + "---\n", + "\n", + "PART II\n", + "\n", + "Item 7\n", + "\n", + " \n", + "\n", + "ITEM 7. MANAGEMENT’S DISCUSSION AND ANALYSIS OF FINANCIAL CONDITION AND RESULTS OF OPERATIONS\n", + "\n", + "The following Management’s Discussion and Analysis of Financial Condition and Results of Operations (“MD&A”) is intended to help the reader understand the results of operations and financial condition of Microsoft Corporation. MD&A is provided as a supplement to, and should be read in conjunction with, our consolidated financial statements and the accompanying Notes to Financial Statements (Part II, Item 8 of this Form 10-K). This section generally discusses the results of our operations for the year ended June 30, 2023 compared to the year ended June 30, 2022. For a discussion of the year ended June 30, 2022 compared to the year ended June 30, 2021, please refer to Part II, Item 7, “Management’s Discussion and Analysis of Financial Condition and Results of Operations” in our Annual Report on Form 10-K for the year ended June 30, 2022.\n", + "\n", + "OVERVIEW\n", + "\n", + "Microsoft is a technology company whose mission is to empower every person and every organization on the planet to achieve more. We strive to create local opportunity, growth, and impact in every country around the world. We are creating the platforms and tools, powered by artificial intelligence (“AI”), that deliver better, faster, and more effective solutions to support small and large business competitiveness, improve educational and health outcomes, grow public-sector efficiency, and empower human ingenuity. \n", + "\n", + "We generate revenue by offering a wide range of cloud-based solutions, content, and other services to people and businesses; licensing and supporting an array of software products; delivering relevant online advertising to a global audience; and designing and selling devices. Our most significant expenses are related to compensating employees; supporting and investing in our cloud-based services, including datacenter operations; designing, manufacturing, marketing, and selling our other products and services; and income taxes.\n", + "\n", + "Highlights from fiscal year 2023 compared with fiscal year 2022 included:\n", + "\n", + "•Microsoft Cloud revenue increased 22% to $111.6 billion.\n", + "•Office Commercial products and cloud services revenue increased 10% driven by Office 365 Commercial growth of 13%.\n", + "•Office Consumer products and cloud services revenue increased 2% and Microsoft 365 Consumer subscribers increased to 67.0 million.\n", + "•LinkedIn revenue increased 10%.\n", + "•Dynamics products and cloud services revenue increased 16% driven by Dynamics 365 growth of 24%.\n", + "•Server products and cloud services revenue increased 19% driven by Azure and other cloud services growth of 29%.\n", + "•Windows original equipment manufacturer licensing (“Windows OEM”) revenue decreased 25%.\n", + "•Devices revenue decreased 24%.\n", + "•Windows Commercial products and cloud services revenue increased 5%.\n", + "•Xbox content and services revenue decreased 3%. \n", + "•Search and news advertising revenue excluding traffic acquisition costs increased 11%.\n", + "Industry Trends \n", + "\n", + "Our industry is dynamic and highly competitive, with frequent changes in both technologies and business models. Each industry shift is an opportunity to conceive new products, new technologies, or new ideas that can further transform the industry and our business. At Microsoft, we push the boundaries of what is possible through a broad range of research and development activities that seek to identify and address the changing demands of customers and users, industry trends, and competitive forces.\n", + "\n", + "40\n", + "\n", + "---\n", + "\n", + "PART II\n", + "\n", + "Item 7\n", + "\n", + " \n", + "\n", + "Economic Conditions, Challenges, and Risks\n", + "\n", + "The markets for software, devices, and cloud-based services are dynamic and highly competitive. Our competitors are developing new software and devices, while also deploying competing cloud-based services for consumers and businesses. The devices and form factors customers prefer evolve rapidly, influencing how users access services in the cloud and, in some cases, the user’s choice of which suite of cloud-based services to use. Aggregate demand for our software, services, and devices is also correlated to global macroeconomic and geopolitical factors, which remain dynamic. We must continue to evolve and adapt over an extended time in pace with this changing environment. \n", + "\n", + "The investments we are making in cloud and AI infrastructure and devices will continue to increase our operating costs and may decrease our operating margins. We continue to identify and evaluate opportunities to expand our datacenter locations and increase our server capacity to meet the evolving needs of our customers, particularly given the growing demand for AI services. Our datacenters depend on the availability of permitted and buildable land, predictable energy, networking supplies, and servers, including graphics processing units (“GPUs”) and other components. Our devices are primarily manufactured by third-party contract manufacturers. For the majority of our products, we have the ability to use other manufacturers if a current vendor becomes unavailable or unable to meet our requirements. However, some of our products contain certain components for which there are very few qualified suppliers. Extended disruptions at these suppliers could impact our ability to manufacture devices on time to meet consumer demand. \n", + "\n", + "Our success is highly dependent on our ability to attract and retain qualified employees. We hire a mix of university and industry talent worldwide. We compete for talented individuals globally by offering an exceptional working environment, broad customer reach, scale in resources, the ability to grow one’s career across many different products and businesses, and competitive compensation and benefits.\n", + "\n", + "Our international operations provide a significant portion of our total revenue and expenses. Many of these revenue and expenses are denominated in currencies other than the U.S. dollar. As a result, changes in foreign exchange rates may significantly affect revenue and expenses. Fluctuations in the U.S. dollar relative to certain foreign currencies reduced reported revenue and expenses from our international operations in fiscal year 2023.\n", + "\n", + "On January 18, 2023, we announced decisions we made to align our cost structure with our revenue and customer demand, prioritize our investments in strategic areas, and consolidate office space. As a result, we recorded a $1.2 billion charge in the second quarter of fiscal year 2023 (“Q2 charge”), which included employee severance expenses of $800 million, impairment charges resulting from changes to our hardware portfolio, and costs related to lease consolidation activities. First, we reduced our overall workforce by approximately 10,000 jobs through the third quarter of fiscal year 2023 related to the Q2 charge, which represents less than 5% of our total employee base. While we eliminated roles in some areas, we will continue to hire in key strategic areas. Second, we are allocating both our capital and talent to areas of secular growth and long-term competitiveness, while divesting in other areas. Third, we are consolidating our leases to create higher density across our workspaces, which impacted our financial results through the remainder of fiscal year 2023, and we may make similar decisions in future periods as we continue to evaluate our real estate needs.\n", + "\n", + "Refer to Risk Factors (Part I, Item 1A of this Form 10-K) for a discussion of these factors and other risks.\n", + "\n", + "Seasonality\n", + "\n", + "Our revenue fluctuates quarterly and is generally higher in the second and fourth quarters of our fiscal year. Second quarter revenue is driven by corporate year-end spending trends in our major markets and holiday season spending by consumers, and fourth quarter revenue is driven by the volume of multi-year on-premises contracts executed during the period. \n", + "\n", + "Change in Accounting Estimate\n", + "\n", + "In July 2022, we completed an assessment of the useful lives of our server and network equipment. Due to investments in software that increased efficiencies in how we operate our server and network equipment, as well as advances in technology, we determined we should increase the estimated useful lives of both server and network equipment from four years to six years. This change in accounting estimate was effective beginning fiscal year 2023. Based on the carrying amount of server and network equipment included in property and equipment, net as of June 30, 2022, the effect of this change in estimate for fiscal year 2023 was an increase in operating income of $3.7 billion and net income of $3.0 billion, or $0.40 per both basic and diluted share.\n", + "\n", + "41\n", + "\n", + "---\n", + "\n", + "PART II\n", + "\n", + "Item 7\n", + "\n", + " \n", + "\n", + "Reportable Segments\n", + "\n", + "We report our financial performance based on the following segments: Productivity and Business Processes, Intelligent Cloud, and More Personal Computing. The segment amounts included in MD&A are presented on a basis consistent with our internal management reporting. We have recast certain prior period amounts to conform to the way we internally manage and monitor our business.\n", + "\n", + "Additional information on our reportable segments is contained in Note 19 – Segment Information and Geographic Data of the Notes to Financial Statements (Part II, Item 8 of this Form 10-K). \n", + "\n", + "Metrics\n", + "\n", + "We use metrics in assessing the performance of our business and to make informed decisions regarding the allocation of resources. We disclose metrics to enable investors to evaluate progress against our ambitions, provide transparency into performance trends, and reflect the continued evolution of our products and services. Our commercial and other business metrics are fundamentally connected based on how customers use our products and services. The metrics are disclosed in the MD&A or the Notes to Financial Statements (Part II, Item 8 of this Form 10-K). Financial metrics are calculated based on financial results prepared in accordance with accounting principles generally accepted in the United States of America (“GAAP”), and growth comparisons relate to the corresponding period of last fiscal year.\n", + "\n", + "In the first quarter of fiscal year 2023, we made updates to the presentation and method of calculation for certain metrics, most notably expanding our Surface metric into a broader Devices metric to incorporate additional revenue streams, along with other minor changes to align with how we manage our businesses. \n", + "\n", + "Commercial\n", + "\n", + "Our commercial business primarily consists of Server products and cloud services, Office Commercial, Windows Commercial, the commercial portion of LinkedIn, Enterprise Services, and Dynamics. Our commercial metrics allow management and investors to assess the overall health of our commercial business and include leading indicators of future performance.\n", + "\n", + " \n", + "\n", + "| | | |\n", + "| --- | --- | --- |\n", + "| Commercial remaining performance obligation | | Commercial portion of revenue allocated to remaining performance obligations, which includes unearned revenue and amounts that will be invoiced and recognized as revenue in future periods |\n", + "| | | |\n", + "| Microsoft Cloud revenue | | Revenue from Azure and other cloud services, Office 365 Commercial, the commercial portion of LinkedIn, Dynamics 365, and other commercial cloud properties |\n", + "| | | |\n", + "| Microsoft Cloud gross margin percentage | | Gross margin percentage for our Microsoft Cloud business |\n", + "\n", + " \n", + "\n", + "42\n", + "\n", + "---\n", + "\n", + "PART II\n", + "\n", + "Item 7\n", + "\n", + " \n", + "\n", + "Productivity and Business Processes and Intelligent Cloud\n", + "\n", + "Metrics related to our Productivity and Business Processes and Intelligent Cloud segments assess the health of our core businesses within these segments. The metrics reflect our cloud and on-premises product strategies and trends.\n", + "\n", + " \n", + "\n", + "| | | |\n", + "| --- | --- | --- |\n", + "| Office Commercial products and cloud services revenue growth | | Revenue from Office Commercial products and cloud services (Office 365 subscriptions, the Office 365 portion of Microsoft 365 Commercial subscriptions, and Office licensed on-premises), comprising Office, Exchange, SharePoint, Microsoft Teams, Office 365 Security and Compliance, Microsoft Viva, and Microsoft 365 Copilot |\n", + "| | | |\n", + "| Office Consumer products and cloud services revenue growth | | Revenue from Office Consumer products and cloud services, including Microsoft 365 Consumer subscriptions, Office licensed on-premises, and other Office services |\n", + "| | | |\n", + "| Office 365 Commercial seat growth | | The number of Office 365 Commercial seats at end of period where seats are paid users covered by an Office 365 Commercial subscription |\n", + "| | | |\n", + "| Microsoft 365 Consumer subscribers | | The number of Microsoft 365 Consumer subscribers at end of period |\n", + "| | | |\n", + "| Dynamics products and cloud services revenue growth | | Revenue from Dynamics products and cloud services, including Dynamics 365, comprising a set of intelligent, cloud-based applications across ERP, CRM (including Customer Insights), Power Apps, and Power Automate; and on-premises ERP and CRM applications |\n", + "| | | |\n", + "| LinkedIn revenue growth | | Revenue from LinkedIn, including Talent Solutions, Marketing Solutions, Premium Subscriptions, and Sales Solutions |\n", + "| | | |\n", + "| Server products and cloud services revenue growth | | Revenue from Server products and cloud services, including Azure and other cloud services; SQL Server, Windows Server, Visual Studio, System Center, and related Client Access Licenses (“CALs”); and Nuance and GitHub |\n", + "\n", + " \n", + "\n", + "More Personal Computing\n", + "\n", + "Metrics related to our More Personal Computing segment assess the performance of key lines of business within this segment. These metrics provide strategic product insights which allow us to assess the performance across our commercial and consumer businesses. As we have diversity of target audiences and sales motions within the Windows business, we monitor metrics that are reflective of those varying motions.\n", + "\n", + " \n", + "\n", + "| | | |\n", + "| --- | --- | --- |\n", + "| Windows OEM revenue growth | | Revenue from sales of Windows Pro and non-Pro licenses sold through the OEM channel |\n", + "| | | |\n", + "| Windows Commercial products and cloud services revenue growth | | Revenue from Windows Commercial products and cloud services, comprising volume licensing of the Windows operating system, Windows cloud services, and other Windows commercial offerings |\n", + "| | | |\n", + "| Devices revenue growth | | Revenue from Devices, including Surface, HoloLens, and PC accessories |\n", + "| | | |\n", + "| Xbox content and services revenue growth | | Revenue from Xbox content and services, comprising first- and third-party content (including games and in-game content), Xbox Game Pass and other subscriptions, Xbox Cloud Gaming, advertising, third-party disc royalties, and other cloud services |\n", + "| | | |\n", + "| Search and news advertising revenue (ex TAC) growth | | Revenue from search and news advertising excluding traffic acquisition costs (“TAC”) paid to Bing Ads network publishers and news partners |\n", + "\n", + " \n", + "\n", + "43\n", + "\n", + "---\n", + "\n", + "PART II\n", + "\n", + "Item 7\n", + "\n", + " \n", + "\n", + "SUMMARY RESULTS OF OPERATIONS\n", + "\n", + " \n", + "\n", + "| | | | | | | | | | | | | |\n", + "| --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- |\n", + "| (In millions, except percentages and per share amounts) | | 2023 | | | | 2022 | | | | PercentageChange | | |\n", + "| | | | | | | | | | | | | |\n", + "| | | | | | | | | | | | | |\n", + "| Revenue | | $ | 211,915 | | | $ | 198,270 | | | | 7% | |\n", + "| Gross margin | | | 146,052 | | | | 135,620 | | | | 8% | |\n", + "| Operating income | | | 88,523 | | | | 83,383 | | | | 6% | |\n", + "| Net income | | | 72,361 | | | | 72,738 | | | | (1)% | |\n", + "| Diluted earnings per share | | | 9.68 | | | | 9.65 | | | | 0% | |\n", + "| | | | | | | | | | | | | |\n", + "| Adjusted gross margin (non-GAAP) | | | 146,204 | | | | 135,620 | | | | 8% | |\n", + "| Adjusted operating income (non-GAAP) | | | 89,694 | | | | 83,383 | | | | 8% | |\n", + "| Adjusted net income (non-GAAP) | | | 73,307 | | | | 69,447 | | | | 6% | |\n", + "| Adjusted diluted earnings per share (non-GAAP) | | | 9.81 | | | | 9.21 | | | | 7% | |\n", + "| | | | | | | | | | | | | |\n", + "\n", + " \n", + "\n", + "Adjusted gross margin, operating income, net income, and diluted earnings per share (“EPS”) are non-GAAP financial measures. Current year non-GAAP financial measures exclude the impact of the Q2 charge, which includes employee severance expenses, impairment charges resulting from changes to our hardware portfolio, and costs related to lease consolidation activities. Prior year non-GAAP financial measures exclude the net income tax benefit related to transfer of intangible properties in the first quarter of fiscal year 2022. Refer to Note 12 – Income Taxes of the Notes to Financial Statements (Part II, Item 8 of this Form 10-K) for further discussion. Refer to the Non-GAAP Financial Measures section below for a reconciliation of our financial results reported in accordance with GAAP to non-GAAP financial results.\n", + "\n", + "Fiscal Year 2023 Compared with Fiscal Year 2022\n", + "\n", + "Revenue increased $13.6 billion or 7% driven by growth in Intelligent Cloud and Productivity and Business Processes, offset in part by a decline in More Personal Computing. Intelligent Cloud revenue increased driven by Azure and other cloud services. Productivity and Business Processes revenue increased driven by Office 365 Commercial and LinkedIn. More Personal Computing revenue decreased driven by Windows and Devices. \n", + "\n", + "Cost of revenue increased $3.2 billion or 5% driven by growth in Microsoft Cloud, offset in part by the change in accounting estimate.\n", + "\n", + "Gross margin increased $10.4 billion or 8% driven by growth in Intelligent Cloud and Productivity and Business Processes and the change in accounting estimate, offset in part by a decline in More Personal Computing. \n", + "\n", + "•Gross margin percentage increased slightly. Excluding the impact of the change in accounting estimate, gross margin percentage decreased 1 point driven by declines in Intelligent Cloud and More Personal Computing, offset in part by sales mix shift between our segments.\n", + "•Microsoft Cloud gross margin percentage increased 2 points to 72%. Excluding the impact of the change in accounting estimate, Microsoft Cloud gross margin percentage decreased slightly driven by a decline in Azure and other cloud services and sales mix shift to Azure and other cloud services, offset in part by improvement in Office 365 Commercial.\n", + "Operating expenses increased $5.3 billion or 10% driven by employee severance expenses, 2 points of growth from the Nuance and Xandr acquisitions, investments in cloud engineering, and LinkedIn.\n", + "\n", + "Operating income increased $5.1 billion or 6% driven by growth in Productivity and Business Processes and Intelligent Cloud and the change in accounting estimate, offset in part by a decline in More Personal Computing.\n", + "\n", + "Revenue, gross margin, and operating income included an unfavorable foreign currency impact of 4%, 4%, and 6%, respectively. Cost of revenue and operating expenses both included a favorable foreign currency impact of 2%.\n", + "\n", + "Current year gross margin, operating income, net income, and diluted EPS were negatively impacted by the Q2 charge, which resulted in decreases of $152 million, $1.2 billion, $946 million, and $0.13, respectively. Prior year net income and diluted EPS were positively impacted by the net tax benefit related to the transfer of intangible properties, which resulted in an increase to net income and diluted EPS of $3.3 billion and $0.44, respectively.\n", + "\n", + "44\n", + "\n", + "---\n", + "\n", + "PART II\n", + "\n", + "Item 7\n", + "\n", + " \n", + "\n", + "SEGMENT RESULTS OF OPERATIONS\n", + "\n", + " \n", + "\n", + "| | | | | | | | | | | | | |\n", + "| --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- |\n", + "| (In millions, except percentages) | | 2023 | | | | 2022 | | | | PercentageChange | | |\n", + "| | | | | | | | | | | | | |\n", + "| | | | | | | | | | | | | |\n", + "| Revenue | | | | | | | | | | | | |\n", + "| | | | | | | | | | | | | |\n", + "| Productivity and Business Processes | | $ | 69,274 | | | $ | 63,364 | | | | 9% | |\n", + "| Intelligent Cloud | | | 87,907 | | | | 74,965 | | | | 17% | |\n", + "| More Personal Computing | | | 54,734 | | | | 59,941 | | | | (9)% | |\n", + "| | | | | | | | | | | | | |\n", + "| | | | | | | | | | | | | |\n", + "| Total | | $ | 211,915 | | | $ | 198,270 | | | | 7% | |\n", + "| | | | | | | | | | | | | |\n", + "| | | | | | | | | | | | | |\n", + "| Operating Income | | | | | | | | | | | | |\n", + "| | | | | | | | | | | | | |\n", + "| Productivity and Business Processes | | $ | 34,189 | | | $ | 29,690 | | | | 15% | |\n", + "| Intelligent Cloud | | | 37,884 | | | | 33,203 | | | | 14% | |\n", + "| More Personal Computing | | | 16,450 | | | | 20,490 | | | | (20)% | |\n", + "| | | | | | | | | | | | | |\n", + "| | | | | | | | | | | | | |\n", + "| Total | | $ | 88,523 | | | $ | 83,383 | | | | 6% | |\n", + "| | | | | | | | | | | | | |\n", + "\n", + " \n", + "\n", + "Reportable Segments\n", + "\n", + "Fiscal Year 2023 Compared with Fiscal Year 2022 \n", + "\n", + "Productivity and Business Processes \n", + "\n", + "Revenue increased $5.9 billion or 9%. \n", + "\n", + "•Office Commercial products and cloud services revenue increased $3.7 billion or 10%. Office 365 Commercial revenue grew 13% with seat growth of 11%, driven by small and medium business and frontline worker offerings, as well as growth in revenue per user. Office Commercial products revenue declined 21% driven by continued customer shift to cloud offerings. \n", + "•Office Consumer products and cloud services revenue increased $140 million or 2%. Microsoft 365 Consumer subscribers grew 12% to 67.0 million. \n", + "•LinkedIn revenue increased $1.3 billion or 10% driven by Talent Solutions.\n", + "•Dynamics products and cloud services revenue increased $750 million or 16% driven by Dynamics 365 growth of 24%. \n", + "Operating income increased $4.5 billion or 15%.\n", + "\n", + "•Gross margin increased $5.8 billion or 12% driven by growth in Office 365 Commercial and LinkedIn, as well as the change in accounting estimate. Gross margin percentage increased. Excluding the impact of the change in accounting estimate, gross margin percentage increased slightly driven by improvement in Office 365 Commercial, offset in part by sales mix shift to cloud offerings.\n", + "•Operating expenses increased $1.3 billion or 7% driven by investment in LinkedIn and employee severance expenses. \n", + "Revenue, gross margin, and operating income included an unfavorable foreign currency impact of 5%, 5%, and 8%, respectively.\n", + "\n", + "Intelligent Cloud \n", + "\n", + "Revenue increased $12.9 billion or 17%. \n", + "\n", + "•Server products and cloud services revenue increased $12.6 billion or 19% driven by Azure and other cloud services. Azure and other cloud services revenue grew 29% driven by growth in our consumption-based services. Server products revenue decreased 1%.\n", + "•Enterprise Services revenue increased $315 million or 4% driven by growth in Enterprise Support Services, offset in part by a decline in Industry Solutions (formerly Microsoft Consulting Services).\n", + "45\n", + "\n", + "---\n", + "\n", + "PART II\n", + "\n", + "Item 7\n", + "\n", + " \n", + "\n", + "Operating income increased $4.7 billion or 14%.\n", + "\n", + "•Gross margin increased $8.9 billion or 17% driven by growth in Azure and other cloud services and the change in accounting estimate. Gross margin percentage decreased slightly. Excluding the impact of the change in accounting estimate, gross margin percentage decreased 3 points driven by sales mix shift to Azure and other cloud services and a decline in Azure and other cloud services.\n", + "•Operating expenses increased $4.2 billion or 21% driven by investments in Azure, 4 points of growth from the Nuance acquisition, and employee severance expenses.\n", + "Revenue, gross margin, and operating income included an unfavorable foreign currency impact of 4%, 4%, and 6%, respectively. Operating expenses included a favorable foreign currency impact of 2%.\n", + "\n", + "More Personal Computing \n", + "\n", + "Revenue decreased $5.2 billion or 9%.\n", + "\n", + "•Windows revenue decreased $3.2 billion or 13% driven by a decrease in Windows OEM. Windows OEM revenue decreased 25% as elevated channel inventory levels continued to drive additional weakness beyond declining PC demand. Windows Commercial products and cloud services revenue increased 5% driven by demand for Microsoft 365.\n", + "•Devices revenue decreased $1.8 billion or 24% as elevated channel inventory levels continued to drive additional weakness beyond declining PC demand.\n", + "•Gaming revenue decreased $764 million or 5% driven by declines in Xbox hardware and Xbox content and services. Xbox hardware revenue decreased 11% driven by lower volume and price of consoles sold. Xbox content and services revenue decreased 3% driven by a decline in first-party content, offset in part by growth in Xbox Game Pass.\n", + "•Search and news advertising revenue increased $617 million or 5%. Search and news advertising revenue excluding traffic acquisition costs increased 11% driven by higher search volume and the Xandr acquisition.\n", + "Operating income decreased $4.0 billion or 20%.\n", + "\n", + "•Gross margin decreased $4.2 billion or 13% driven by declines in Windows and Devices. Gross margin percentage decreased driven by a decline in Devices.\n", + "•Operating expenses decreased $195 million or 2% driven by a decline in Devices, offset in part by investments in Search and news advertising, including 2 points of growth from the Xandr acquisition.\n", + "Revenue, gross margin, and operating income included an unfavorable foreign currency impact of 3%, 4%, and 6%, respectively. Operating expenses included a favorable foreign currency impact of 2%.\n", + "\n", + "46\n", + "\n", + "---\n", + "\n", + "PART II\n", + "\n", + "Item 7\n", + "\n", + " \n", + "\n", + "OPERATING EXPENSES\n", + "\n", + "Research and Development\n", + "\n", + " \n", + "\n", + "| | | | | | | | | | | | | |\n", + "| --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- |\n", + "| (In millions, except percentages) | | 2023 | | | | 2022 | | | | PercentageChange | | |\n", + "| | | | | | | | | | | | | |\n", + "| | | | | | | | | | | | | |\n", + "| Research and development | | $ | 27,195 | | | $ | 24,512 | | | | 11% | |\n", + "| As a percent of revenue | | | 13% | | | | 12% | | | | 1ppt | |\n", + "| | | | | | | | | | | | | |\n", + "\n", + " \n", + "\n", + "Research and development expenses include payroll, employee benefits, stock-based compensation expense, and other headcount-related expenses associated with product development. Research and development expenses also include third-party development and programming costs and the amortization of purchased software code and services content. \n", + "\n", + "Fiscal Year 2023 Compared with Fiscal Year 2022\n", + "\n", + "Research and development expenses increased $2.7 billion or 11% driven by investments in cloud engineering and LinkedIn.\n", + "\n", + "\n", + "\n", + "\n", + "--------------------------------------------------------------------------------\n", + "\u001b[33mData_Analyst\u001b[0m (to User_Proxy):\n", + "\n", + "UPDATE CONTEXT\n", + "\n", + "--------------------------------------------------------------------------------\n", + "\u001b[31m\n", + ">>>>>>>> NO HUMAN INPUT RECEIVED.\u001b[0m\n", + "\u001b[31m\n", + ">>>>>>>> USING AUTO REPLY...\u001b[0m\n", + "\u001b[32mUpdating context and resetting conversation.\u001b[0m\n", + "\u001b[32mAdding content of doc 4192dee7 to context.\u001b[0m\n", + "\u001b[32mSkip doc_id 84c5d64c as it is too long to fit in the context.\u001b[0m\n", + "\u001b[32mSkip doc_id 66f0b48d as it is too long to fit in the context.\u001b[0m\n", + "\u001b[32mSkip doc_id 9887b38f as it is too long to fit in the context.\u001b[0m\n", + "\u001b[32mSkip doc_id d7c05c64 as it is too long to fit in the context.\u001b[0m\n", + "\u001b[32mAdding content of doc 965f6567 to context.\u001b[0m\n", + "\u001b[32mAdding content of doc 5af22498 to context.\u001b[0m\n", + "\u001b[32mAdding content of doc 25347883 to context.\u001b[0m\n", + "\u001b[32mAdding content of doc 73ecd3b8 to context.\u001b[0m\n", + "\u001b[32mAdding content of doc f926aed7 to context.\u001b[0m\n", + "\u001b[32mSkip doc_id ffd75c82 as it is too long to fit in the context.\u001b[0m\n", + "\u001b[32mAdding content of doc 09235865 to context.\u001b[0m\n", + "\u001b[33mUser_Proxy\u001b[0m (to Data_Analyst):\n", + "\n", + "You're a retrieve augmented chatbot. You answer user's questions based on your own knowledge and the\n", + "context provided by the user.\n", + "If you can't answer the question with or without the current context, you should reply exactly `UPDATE CONTEXT`.\n", + "You must give as short an answer as possible.\n", + "\n", + "User's question is: How's msft's 2023 income? Provide with some analysis.\n", + "\n", + "Context is: | Shares purchased | | | 7 | | | | 7 | | | | 8 | |\n", + "| Average price per share | | $ | 245.59 | | | $ | 259.55 | | | $ | 207.88 | |\n", + "| | | | | | | | | | | | | |\n", + "\n", + " \n", + "\n", + "As of June 30, 2023, 74 million shares of our common stock were reserved for future issuance through the ESPP. \n", + "\n", + "92\n", + "\n", + "---\n", + "\n", + "PART II\n", + "\n", + "Item 8\n", + "\n", + " \n", + "\n", + "Savings Plans \n", + "\n", + "We have savings plans in the U.S. that qualify under Section 401(k) of the Internal Revenue Code, and a number of savings plans in international locations. Eligible U.S. employees may contribute a portion of their salary into the savings plans, subject to certain limitations. We match a portion of each dollar a participant contributes into the plans. Employer-funded retirement benefits for all plans were $1.6 billion, $1.4 billion, and $1.2 billion in fiscal years 2023, 2022, and 2021, respectively, and were expensed as contributed.\n", + "\n", + "NOTE 19 — SEGMENT INFORMATION AND GEOGRAPHIC DATA\n", + "\n", + "In its operation of the business, management, including our chief operating decision maker, who is also our Chief Executive Officer, reviews certain financial information, including segmented internal profit and loss statements prepared on a basis not consistent with GAAP. During the periods presented, we reported our financial performance based on the following segments: Productivity and Business Processes, Intelligent Cloud, and More Personal Computing. \n", + "\n", + "We have recast certain prior period amounts to conform to the way we internally manage and monitor our business.\n", + "\n", + "Our reportable segments are described below. \n", + "\n", + "Productivity and Business Processes \n", + "\n", + "Our Productivity and Business Processes segment consists of products and services in our portfolio of productivity, communication, and information services, spanning a variety of devices and platforms. This segment primarily comprises:\n", + "\n", + "•Office Commercial (Office 365 subscriptions, the Office 365 portion of Microsoft 365 Commercial subscriptions, and Office licensed on-premises), comprising Office, Exchange, SharePoint, Microsoft Teams, Office 365 Security and Compliance, Microsoft Viva, and Microsoft 365 Copilot.•Office Consumer, including Microsoft 365 Consumer subscriptions, Office licensed on-premises, and other Office services.•LinkedIn, including Talent Solutions, Marketing Solutions, Premium Subscriptions, and Sales Solutions.•Dynamics business solutions, including Dynamics 365, comprising a set of intelligent, cloud-based applications across ERP, CRM (including Customer Insights), Power Apps, and Power Automate; and on-premises ERP and CRM applications.Intelligent Cloud \n", + "\n", + "Our Intelligent Cloud segment consists of our public, private, and hybrid server products and cloud services that can power modern business and developers. This segment primarily comprises: \n", + "\n", + "•Server products and cloud services, including Azure and other cloud services; SQL Server, Windows Server, Visual Studio, System Center, and related Client Access Licenses (“CALs”); and Nuance and GitHub. •Enterprise Services, including Enterprise Support Services, Industry Solutions (formerly Microsoft Consulting Services), and Nuance professional services. More Personal Computing\n", + "\n", + "Our More Personal Computing segment consists of products and services that put customers at the center of the experience with our technology. This segment primarily comprises:\n", + "\n", + "•Windows, including Windows OEM licensing and other non-volume licensing of the Windows operating system; Windows Commercial, comprising volume licensing of the Windows operating system, Windows cloud services, and other Windows commercial offerings; patent licensing; and Windows Internet of Things.•Devices, including Surface, HoloLens, and PC accessories.93\n", + "\n", + "---\n", + "\n", + "PART II\n", + "\n", + "Item 8\n", + "\n", + " \n", + "\n", + "•Gaming, including Xbox hardware and Xbox content and services, comprising first- and third-party content (including games and in-game content), Xbox Game Pass and other subscriptions, Xbox Cloud Gaming, advertising, third-party disc royalties, and other cloud services.•Search and news advertising, comprising Bing (including Bing Chat), Microsoft News, Microsoft Edge, and third-party affiliates.Revenue and costs are generally directly attributed to our segments. However, due to the integrated structure of our business, certain revenue recognized and costs incurred by one segment may benefit other segments. Revenue from certain contracts is allocated among the segments based on the relative value of the underlying products and services, which can include allocation based on actual prices charged, prices when sold separately, or estimated costs plus a profit margin. Cost of revenue is allocated in certain cases based on a relative revenue methodology. Operating expenses that are allocated primarily include those relating to marketing of products and services from which multiple segments benefit and are generally allocated based on relative gross margin.\n", + "\n", + "In addition, certain costs are incurred at a corporate level and allocated to our segments. These allocated costs generally include legal, including settlements and fines, information technology, human resources, finance, excise taxes, field selling, shared facilities services, customer service and support, and severance incurred as part of a corporate program. Each allocation is measured differently based on the specific facts and circumstances of the costs being allocated and is generally based on relative gross margin or relative headcount.\n", + "\n", + "Segment revenue and operating income were as follows during the periods presented:\n", + "\n", + " \n", + "\n", + "| | | | | | | | | | | | | |\n", + "| --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- |\n", + "| (In millions) | | | | | | | | | | | | |\n", + "| | | | | | | | | | | | | |\n", + "| | | | | | | | | | | | | |\n", + "| Year Ended June 30, | | | 2023 | | | | 2022 | | | | 2021 | |\n", + "| | | | | | | | | | | | | |\n", + "| Revenue | | | | | | | | | | | | |\n", + "| | | | | | | | | | | | | |\n", + "| Productivity and Business Processes | | $ | 69,274 | | | $ | 63,364 | | | $ | 53,915 | |\n", + "| Intelligent Cloud | | | 87,907 | | | | 74,965 | | | | 59,728 | |\n", + "| More Personal Computing | | | 54,734 | | | | 59,941 | | | | 54,445 | |\n", + "| | | | | | | | | | | | | |\n", + "| | | | | | | | | | | | | |\n", + "| Total | | $ | 211,915 | | | $ | 198,270 | | | $ | 168,088 | |\n", + "| | | | | | | | | | | | | |\n", + "| | | | | | | | | | | | | |\n", + "| Operating Income | | | | | | | | | | | | |\n", + "| | | | | | | | | | | | | |\n", + "| Productivity and Business Processes | | $ | 34,189 | | | $ | 29,690 | | | $ | 24,351 | |\n", + "| Intelligent Cloud | | | 37,884 | | | | 33,203 | | | | 26,471 | |\n", + "| More Personal Computing | | | 16,450 | | | | 20,490 | | | | 19,094 | |\n", + "| | | | | | | | | | | | | |\n", + "| | | | | | | | | | | | | |\n", + "| Total | | $ | 88,523 | | | $ | 83,383 | | | $ | 69,916 | |\n", + "| | | | | | | | | | | | | |\n", + "\n", + " \n", + "\n", + "No sales to an individual customer or country other than the United States accounted for more than 10% of revenue for fiscal years 2023, 2022, or 2021. Revenue, classified by the major geographic areas in which our customers were located, was as follows:\n", + "\n", + " \n", + "\n", + "| | | | | | | | | | | | | |\n", + "| --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- |\n", + "| (In millions) | | | | | | | | | | | | |\n", + "| | | | | | | | | | | | | |\n", + "| | | | | | | | | | | | | |\n", + "| Year Ended June 30, | | 2023 | | | | 2022 | | | | 2021 | | |\n", + "| | | | | | | | | | | | | |\n", + "| United States (a) | | $ | 106,744 | | | $ | 100,218 | | | $ | 83,953 | |\n", + "| Other countries | | | 105,171 | | | | 98,052 | | | | 84,135 | |\n", + "| | | | | | | | | | | | | |\n", + "| | | | | | | | | | | | | |\n", + "| Total | | $ | 211,915 | | | $ | 198,270 | | | $ | 168,088 | |\n", + "| | | | | | | | | | | | | |\n", + "\n", + " \n", + "\n", + "(a)Includes billings to OEMs and certain multinational organizations because of the nature of these businesses and the impracticability of determining the geographic source of the revenue. 94\n", + "\n", + "---\n", + "\n", + "PART II\n", + "\n", + "Item 8\n", + "\n", + " \n", + "\n", + "Revenue, classified by significant product and service offerings, was as follows: \n", + "\n", + " \n", + "\n", + "| | | | | | | | | | | | | |\n", + "| --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- |\n", + "| (In millions) | | | | | | | | | | | | |\n", + "| | | | | | | | | | | | | |\n", + "| | | | | | | | | | | | | |\n", + "| Year Ended June 30, | | 2023 | | | | 2022 | | | | 2021 | | |\n", + "| | | | | | | | | | | | | |\n", + "| Server products and cloud services | | $ | 79,970 | | | $ | 67,350 | | | $ | 52,589 | |\n", + "| Office products and cloud services | | | 48,728 | | | | 44,862 | | | | 39,872 | |\n", + "| Windows | | | 21,507 | | | | 24,732 | | | | 22,488 | |\n", + "| Gaming | | | 15,466 | | | | 16,230 | | | | 15,370 | |\n", + "| LinkedIn | | | 15,145 | | | | 13,816 | | | | 10,289 | |\n", + "| Search and news advertising | | | 12,208 | | | | 11,591 | | | | 9,267 | |\n", + "| Enterprise Services | | | 7,722 | | | | 7,407 | | | | 6,943 | |\n", + "| Devices | | | 5,521 | | | | 7,306 | | | | 7,143 | |\n", + "| Dynamics | | | 5,437 | | | | 4,687 | | | | 3,754 | |\n", + "| Other | | | 211 | | | | 289 | | | | 373 | |\n", + "| | | | | | | | | | | | | |\n", + "| | | | | | | | | | | | | |\n", + "| Total | | $ | 211,915 | | | $ | 198,270 | | | $ | 168,088 | |\n", + "| | | | | | | | | | | | | |\n", + "\n", + " \n", + "\n", + "Our Microsoft Cloud revenue, which includes Azure and other cloud services, Office 365 Commercial, the commercial portion of LinkedIn, Dynamics 365, and other commercial cloud properties, was $111.6 billion, $91.4 billion, and $69.1 billion in fiscal years 2023, 2022, and 2021, respectively. These amounts are primarily included in Server products and cloud services, Office products and cloud services, LinkedIn, and Dynamics in the table above.\n", + "\n", + "Assets are not allocated to segments for internal reporting presentations. A portion of amortization and depreciation is included with various other costs in an overhead allocation to each segment. It is impracticable for us to separately identify the amount of amortization and depreciation by segment that is included in the measure of segment profit or loss.\n", + "\n", + "Long-lived assets, excluding financial instruments and tax assets, classified by the location of the controlling statutory company and with countries over 10% of the total shown separately, were as follows:\n", + "\n", + " \n", + "\n", + "| | | | | | | | | | | | | |\n", + "| --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- |\n", + "| (In millions) | | | | | | | | | | | | |\n", + "| | | | | | | | | | | | | |\n", + "| | | | | | | | | | | | | |\n", + "| June 30, | | 2023 | | | | 2022 | | | | 2021 | | |\n", + "| | | | | | | | | | | | | |\n", + "| United States | | $ | 114,380 | | | $ | 106,430 | | | $ | 76,153 | |\n", + "| Ireland | | | 16,359 | | | | 15,505 | | | | 13,303 | |\n", + "| Other countries | | | 56,500 | | | | 44,433 | | | | 38,858 | |\n", + "| | | | | | | | | | | | | |\n", + "| | | | | | | | | | | | | |\n", + "| Total | | $ | 187,239 | | | $ | 166,368 | | | $ | 128,314 | |\n", + "| | | | | | | | | | | | | |\n", + "\n", + " \n", + "\n", + "95\n", + "\n", + "---\n", + "\n", + "PART II\n", + "\n", + "Item 8\n", + "\n", + " \n", + "\n", + "REPORT OF INDEPENDENT REGISTERED PUBLIC ACCOUNTING FIRM\n", + "\n", + "To the Stockholders and the Board of Directors of Microsoft Corporation \n", + "\n", + "Opinion on the Financial Statements\n", + "\n", + "We have audited the accompanying consolidated balance sheets of Microsoft Corporation and subsidiaries (the \"Company\") as of June 30, 2023 and 2022, the related consolidated statements of income, comprehensive income, cash flows, and stockholders' equity, for each of the three years in the period ended June 30, 2023, and the related notes (collectively referred to as the \"financial statements\"). In our opinion, the financial statements present fairly, in all material respects, the financial position of the Company as of June 30, 2023 and 2022, and the results of its operations and its cash flows for each of the three years in the period ended June 30, 2023, in conformity with accounting principles generally accepted in the United States of America.\n", + "\n", + "We have also audited, in accordance with the standards of the Public Company Accounting Oversight Board (United States) (PCAOB), the Company's internal control over financial reporting as of June 30, 2023, based on criteria established in Internal Control — Integrated Framework (2013) issued by the Committee of Sponsoring Organizations of the Treadway Commission and our report dated July 27, 2023, expressed an unqualified opinion on the Company's internal control over financial reporting.\n", + "\n", + "Basis for Opinion\n", + "\n", + "These financial statements are the responsibility of the Company's management. Our responsibility is to express an opinion on the Company's financial statements based on our audits. We are a public accounting firm registered with the PCAOB and are required to be independent with respect to the Company in accordance with the U.S. federal securities laws and the applicable rules and regulations of the Securities and Exchange Commission and the PCAOB.\n", + "\n", + "We conducted our audits in accordance with the standards of the PCAOB. Those standards require that we plan and perform the audit to obtain reasonable assurance about whether the financial statements are free of material misstatement, whether due to error or fraud. Our audits included performing procedures to assess the risks of material misstatement of the financial statements, whether due to error or fraud, and performing procedures that respond to those risks. Such procedures included examining, on a test basis, evidence regarding the amounts and disclosures in the financial statements. Our audits also included evaluating the accounting principles used and significant estimates made by management, as well as evaluating the overall presentation of the financial statements. We believe that our audits provide a reasonable basis for our opinion.\n", + "\n", + "Critical Audit Matters\n", + "\n", + "The critical audit matters communicated below are matters arising from the current-period audit of the financial statements that were communicated or required to be communicated to the audit committee and that (1) relate to accounts or disclosures that are material to the financial statements and (2) involved our especially challenging, subjective, or complex judgments. The communication of critical audit matters does not alter in any way our opinion on the financial statements, taken as a whole, and we are not, by communicating the critical audit matters below, providing separate opinions on the critical audit matters or on the accounts or disclosures to which they relate.\n", + "\n", + "Revenue Recognition – Refer to Note 1 to the financial statements\n", + "\n", + "Critical Audit Matter Description\n", + "\n", + "The Company recognizes revenue upon transfer of control of promised products or services to customers in an amount that reflects the consideration the Company expects to receive in exchange for those products or services. The Company offers customers the ability to acquire multiple licenses of software products and services, including cloud-based services, in its customer agreements through its volume licensing programs.\n", + "\n", + "96\n", + "\n", + "---\n", + "\n", + "PART II\n", + "\n", + "Item 8\n", + "\n", + " \n", + "\n", + "Significant judgment is exercised by the Company in determining revenue recognition for these customer agreements, and includes the following:\n", + "\n", + "•Determination of whether products and services are considered distinct performance obligations that should be accounted for separately versus together, such as software licenses and related services that are sold with cloud-based services.\n", + "•The pattern of delivery (i.e., timing of when revenue is recognized) for each distinct performance obligation.\n", + "•Identification and treatment of contract terms that may impact the timing and amount of revenue recognized (e.g., variable consideration, optional purchases, and free services). \n", + "•Determination of stand-alone selling prices for each distinct performance obligation and for products and services that are not sold separately.\n", + "Given these factors and due to the volume of transactions, the related audit effort in evaluating management's judgments in determining revenue recognition for these customer agreements was extensive and required a high degree of auditor judgment.\n", + "\n", + "How the Critical Audit Matter Was Addressed in the Audit\n", + "\n", + "Our principal audit procedures related to the Company's revenue recognition for these customer agreements included the following:\n", + "\n", + "| | |\n", + "| --- | --- |\n", + "| • | We tested the effectiveness of controls related to the identification of distinct performance obligations, the determination of the timing of revenue recognition, and the estimation of variable consideration. |\n", + "| | |\n", + "| • | We evaluated management's significant accounting policies related to these customer agreements for reasonableness. |\n", + "| | |\n", + "| • | We selected a sample of customer agreements and performed the following procedures: |\n", + "| | |\n", + "| - | Obtained and read contract source documents for each selection, including master agreements, and other documents that were part of the agreement. |\n", + "| | |\n", + "| - | Tested management's identification and treatment of contract terms. |\n", + "| | |\n", + "| - | Assessed the terms in the customer agreement and evaluated the appropriateness of management's application of their accounting policies, along with their use of estimates, in the determination of revenue recognition conclusions. |\n", + "| | |\n", + "| • | We evaluated the reasonableness of management's estimate of stand-alone selling prices for products and services that are not sold separately. |\n", + "| | |\n", + "| • | We tested the mathematical accuracy of management's calculations of revenue and the associated timing of revenue recognized in the financial statements. |\n", + "\n", + "Income Taxes – Uncertain Tax Positions – Refer to Note 12 to the financial statements\n", + "\n", + "Critical Audit Matter Description\n", + "\n", + "The Company's long-term income taxes liability includes uncertain tax positions related to transfer pricing issues that remain unresolved with the Internal Revenue Service (\"IRS\"). The Company remains under IRS audit, or subject to IRS audit, for tax years subsequent to 2003. While the Company has settled a portion of the IRS audits, resolution of the remaining matters could have a material impact on the Company's financial statements. \n", + "\n", + "Conclusions on recognizing and measuring uncertain tax positions involve significant estimates and management judgment and include complex considerations of the Internal Revenue Code, related regulations, tax case laws, and prior-year audit settlements. Given the complexity and the subjective nature of the transfer pricing issues that remain unresolved with the IRS, evaluating management's estimates relating to their determination of uncertain tax positions required extensive audit effort and a high degree of auditor judgment, including involvement of our tax specialists.\n", + "\n", + "97\n", + "\n", + "---\n", + "\n", + "PART II\n", + "\n", + "Item 8\n", + "\n", + " \n", + "\n", + "How the Critical Audit Matter Was Addressed in the Audit\n", + "\n", + "Our principal audit procedures to evaluate management's estimates of uncertain tax positions related to unresolved transfer pricing issues included the following:\n", + "\n", + "•We evaluated the appropriateness and consistency of management's methods and assumptions used in the identification, recognition, measurement, and disclosure of uncertain tax positions, which included testing the effectiveness of the related internal controls.\n", + "•We read and evaluated management's documentation, including relevant accounting policies and information obtained by management from outside tax specialists, that detailed the basis of the uncertain tax positions.\n", + "•We tested the reasonableness of management's judgments regarding the future resolution of the uncertain tax positions, including an evaluation of the technical merits of the uncertain tax positions.\n", + "•For those uncertain tax positions that had not been effectively settled, we evaluated whether management had appropriately considered new information that could significantly change the recognition, measurement or disclosure of the uncertain tax positions.\n", + "•We evaluated the reasonableness of management's estimates by considering how tax law, including statutes, regulations and case law, impacted management's judgments.\n", + " \n", + "\n", + "/s/ DELOITTE & TOUCHE LLP\n", + "\n", + " \n", + "\n", + "Seattle, Washington\n", + "\n", + "July 27, 2023\n", + "\n", + " \n", + "\n", + "We have served as the Company's auditor since 1983.\n", + "\n", + "98\n", + "\n", + "---\n", + "\n", + "PART II\n", + "\n", + "Item 9, 9A\n", + "\n", + " \n", + "\n", + "ITEM 9. CHANGES IN AND DISAGREEMENTS WITH ACCOUNTANTS ON ACCOUNTING AND FINANCIAL DISCLOSURE \n", + "\n", + "Not applicable. \n", + "\n", + "ITEM 9A. CONTROLS AND PROCEDURES \n", + "\n", + "Under the supervision and with the participation of our management, including the Chief Executive Officer and Chief Financial Officer, we have evaluated the effectiveness of our disclosure controls and procedures as required by Exchange Act Rule 13a-15(b) as of the end of the period covered by this report. Based on that evaluation, the Chief Executive Officer and Chief Financial Officer have concluded that these disclosure controls and procedures are effective. \n", + "\n", + "REPORT OF MANAGEMENT ON INTERNAL CONTROL OVER FINANCIAL REPORTING \n", + "\n", + "Our management is responsible for establishing and maintaining adequate internal control over financial reporting for the Company. Internal control over financial reporting is a process to provide reasonable assurance regarding the reliability of our financial reporting for external purposes in accordance with accounting principles generally accepted in the United States of America. Internal control over financial reporting includes maintaining records that in reasonable detail accurately and fairly reflect our transactions; providing reasonable assurance that transactions are recorded as necessary for preparation of our consolidated financial statements; providing reasonable assurance that receipts and expenditures of company assets are made in accordance with management authorization; and providing reasonable assurance that unauthorized acquisition, use, or disposition of company assets that could have a material effect on our consolidated financial statements would be prevented or detected on a timely basis. Because of its inherent limitations, internal control over financial reporting is not intended to provide absolute assurance that a misstatement of our consolidated financial statements would be prevented or detected. \n", + "\n", + "Management conducted an evaluation of the effectiveness of our internal control over financial reporting based on the framework in Internal Control – Integrated Framework (2013) issued by the Committee of Sponsoring Organizations of the Treadway Commission. Based on this evaluation, management concluded that the Company’s internal control over financial reporting was effective as of June 30, 2023. There were no changes in our internal control over financial reporting during the quarter ended June 30, 2023 that have materially affected, or are reasonably likely to materially affect, our internal control over financial reporting. Deloitte & Touche LLP has audited our internal control over financial reporting as of June 30, 2023; their report is included in Item 9A. \n", + "\n", + "99\n", + "\n", + "---\n", + "\n", + "PART II\n", + "\n", + "Item 9A\n", + "\n", + " \n", + "\n", + "REPORT OF INDEPENDENT REGISTERED PUBLIC ACCOUNTING FIRM \n", + "\n", + "To the Stockholders and the Board of Directors of Microsoft Corporation\n", + "\n", + "Opinion on Internal Control over Financial Reporting\n", + "\n", + "We have audited the internal control over financial reporting of Microsoft Corporation and subsidiaries (the \"Company\") as of June 30, 2023, based on criteria established in Internal Control — Integrated Framework (2013) issued by the Committee of Sponsoring Organizations of the Treadway Commission (COSO). In our opinion, the Company maintained, in all material respects, effective internal control over financial reporting as of June 30, 2023, based on criteria established in Internal Control — Integrated Framework (2013) issued by COSO.\n", + "\n", + "We have also audited, in accordance with the standards of the Public Company Accounting Oversight Board (United States) (PCAOB), the consolidated financial statements as of and for the year ended June 30, 2023, of the Company and our report dated July 27, 2023, expressed an unqualified opinion on those financial statements.\n", + "\n", + "Basis for Opinion \n", + "\n", + "2023-\n", + "2023#\n", + "/2023\n", + "p/202\n", + "90000\n", + "30000\n", + "\n", + "\n", + "\n", + "--------------------------------------------------------------------------------\n", + "\u001b[33mData_Analyst\u001b[0m (to User_Proxy):\n", + "\n", + "Microsoft's income in 2023 showed growth. Total revenue increased to $211.915 billion from $198.270 billion in 2022, and operating income rose to $88.523 billion from $83.383 billion. The Intelligent Cloud segment was a significant growth driver, with revenue up from $74.965 billion in 2022 to $87.907 billion in 2023. Productivity and Business Processes also saw an increase, from $63.364 billion to $69.274 billion. However, More Personal Computing experienced a slight decline in revenue, from $59.941 billion to $54.734 billion. Microsoft Cloud revenue, including Azure and other cloud services, grew significantly to $111.6 billion in 2023 from $91.4 billion in 2022. Overall, Microsoft demonstrated strong financial performance in 2023, with notable growth in cloud services and productivity applications.\n", + "\n", + "--------------------------------------------------------------------------------\n" + ] + } + ], + "source": [ + "assitant = SingleAssistantRAG(\n", + " \"Data_Analyst\",\n", + " llm_config,\n", + " human_input_mode=\"ALWAYS\",\n", + " retrieve_config={\n", + " \"task\": \"qa\",\n", + " \"docs_path\": [\n", + " # \"../report/Microsoft_Annual_Report_2023.pdf\",\n", + " \"https://www.sec.gov/Archives/edgar/data/789019/000095017023035122/msft-20230630.htm\",\n", + " ],\n", + " \"chunk_token_size\": 2000,\n", + " \"overwrite\": True,\n", + " },\n", + ")\n", + "assitant.chat(\"How's msft's 2023 income? Provide with some analysis.\")" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "finrobot", + "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.10.14" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +}